Changeset 249 for soft/giet_vm/boot
- Timestamp:
- Jul 18, 2013, 6:33:38 PM (11 years ago)
- Location:
- soft/giet_vm/boot
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/boot/boot_init.c
r246 r249 109 109 { [0 ... GIET_NB_VSPACE_MAX - 1] = 0 }; 110 110 111 // lock protecting TTY0 112 __attribute__((section (".wdata"))) 113 unsigned int boot_tty0_lock = 0; 114 111 115 112 116 ////////////////////////////////////////////////////////////////////////////// … … 504 508 boot_puts("\n[BOOT ERROR] in boot_add_pte() function\n"); 505 509 boot_puts("the length of the ptab vobj is too small\n"); 510 511 boot_puts(" max_pt2 = "); 512 boot_putd( max_pt2 ); 513 boot_puts("\n"); 514 boot_puts(" pt2_id = "); 515 boot_putd( pt2_id ); 516 boot_puts("\n"); 517 506 518 boot_exit(); 507 519 } … … 899 911 if (periph[periph_id].type == PERIPH_TYPE_DMA) 900 912 { 901 if (periph[periph_id].channels !=NB_DMA_CHANNELS)913 if (periph[periph_id].channels > NB_DMA_CHANNELS) 902 914 { 903 915 boot_puts("\n[BOOT ERROR] Too much DMA channels in cluster "); … … 1328 1340 break; 1329 1341 case PERIPH_TYPE_IOB: // vci_io_bridge component 1330 if ( IOMMU_ACTIVE)1342 if (USE_IOB) 1331 1343 { 1332 1344 // TODO -
soft/giet_vm/boot/reset.S
r246 r249 220 220 boot_lf_string: .asciiz "\n" 221 221 222 boot_tty0_lock: .word 0223 224 222 .set reorder 225 223
Note: See TracChangeset
for help on using the changeset viewer.