Changeset 526 for soft/giet_vm/giet_python
- Timestamp:
- Mar 26, 2015, 3:46:52 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/mapping.py
r520 r526 1238 1238 sys.exit(1) 1239 1239 1240 s += ' tty: tty {\n'1240 s += ' tty: tty@0x%x {\n' % (periph.pseg.base) 1241 1241 s += ' compatible = "soclib,vci_multi_tty";\n' 1242 1242 s += ' interrupt-parent = <&%s>;\n' % (irq_ctrl_name) … … 1260 1260 sys.exit(1) 1261 1261 1262 s += ' bdv: bdv {\n'1262 s += ' bdv: bdv@0x%x {\n' % (periph.pseg.base) 1263 1263 s += ' compatible = "tsar,vci_block_device";\n' 1264 1264 s += ' interrupt-parent = <&%s>;\n' % (irq_ctrl_name) … … 1267 1267 s += ' };\n\n' 1268 1268 1269 elif ( periph.subtype == 'HBA' ): 1270 1271 print '[genmap error] in linux_dts()' 1272 print ' HBA peripheral not supported by LINUX' 1273 sys.exit(1) 1274 1275 elif ( periph.subtype == 'SPI' ): 1276 1277 print '[genmap error] in linux_dts()' 1278 print ' SPI peripheral not supported by LINUX' 1279 sys.exit(1) 1269 else: 1270 print '[genmap warning] in linux_dts() : %s' % (periph.subtype), 1271 print 'peripheral not supported by LINUX' 1280 1272 1281 1273 # XCU or PIC have been already parsed
Note: See TracChangeset
for help on using the changeset viewer.