Changeset 557 for trunk/boot/tsar_mips32/boot.c
- Timestamp:
- Sep 21, 2018, 10:26:00 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/boot/tsar_mips32/boot.c
r556 r557 78 78 #include <boot_info.h> 79 79 80 #include <cluster_info.h> 81 80 82 #include <boot_utils.h> 81 83 #include <boot_fat32.h> … … 140 142 case DEV_TYPE_TIM_SCL: return "TIM_SCL"; 141 143 case DEV_TYPE_TXT_TTY: return "TXT_TTY"; 144 case DEV_TYPE_TXT_MTY: return "TXT_MTY"; 142 145 case DEV_TYPE_ICU_XCU: return "ICU_XCU"; 143 146 case DEV_TYPE_PIC_TSR: return "PIC_TSR"; … … 415 418 boot_info->kentry_size = seg_kentry_size; 416 419 420 /* Initialize all clusters as empty for now */ 421 int x, y; 422 for ( x = 0; x < CONFIG_MAX_CLUSTERS_X; x++) 423 { 424 for ( x = 0; x < CONFIG_MAX_CLUSTERS_X; x++) 425 { 426 boot_info->cluster_info[x][y] = 0x0; 427 } 428 } 429 417 430 // loop on arch_info clusters to get relevant pointers 418 431 for (cluster = cluster_base; … … 420 433 cluster++) 421 434 { 435 int x = cluster->cxy >> Y_WIDTH; 436 int y = cluster->cxy & ((1 << Y_WIDTH) - 1); 437 422 438 if( cluster->cxy == cxy ) my_cluster = cluster; 423 if( cluster->cxy == header->io_cxy ) io_cluster = cluster; 439 if( cluster->cxy == header->io_cxy ) { 440 io_cluster = cluster; 441 boot_info->cluster_info[x][y] |= CINFO_IS_IO; 442 } 443 if ( cluster->cores > 0 ) { 444 boot_info->cluster_info[x][y] |= CINFO_ACTIVE; 445 } 424 446 } 425 447
Note: See TracChangeset
for help on using the changeset viewer.