Changeset 1018 for trunk/platforms/tsar_generic_iob/arch.py
- Timestamp:
- Oct 1, 2015, 11:17:10 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/tsar_generic_iob/arch.py
r1005 r1018 62 62 nb_ttys = 1, 63 63 fbf_width = 128, 64 ioc_type = ' HBA' ):64 ioc_type = 'BDV' ): 65 65 66 66 ### define architecture constants 67 67 68 68 nb_nics = 1 69 nb_cmas = 269 nb_cmas = 4 70 70 x_io = 0 71 71 y_io = 0 … … 76 76 irq_per_proc = 4 77 77 peri_increment = 0x10000 78 mwr_type = ' CPY'78 mwr_type = 'GCD' 79 79 80 80 ### constructor parameters checking … … 105 105 106 106 ram_base = 0x0000000000 107 ram_size = 0x 1000000 # 16Mbytes107 ram_size = 0x4000000 # 64 Mbytes 108 108 109 109 xcu_base = 0x00B0000000 … … 129 129 130 130 cma_base = 0x00B6000000 131 cma_size = 0x1000 * 2 * nb_nics # 4 kbytes * 2 * nb_nics131 cma_size = 0x1000 * nb_cmas # 4 kbytes * nb_cmas 132 132 133 133 fbf_base = 0x00B7000000 134 fbf_size = fbf_width * fbf_width # fbf_width * fbf_width bytes134 fbf_size = fbf_width * fbf_width # fbf_width * fbf_width bytes 135 135 136 136 pic_base = 0x00B8000000 … … 176 176 177 177 kernel_heap_vbase = 0xD0000000 178 kernel_heap_size = 0x00 200000 # 2Mbytes per cluster178 kernel_heap_size = 0x00400000 # 4 Mbytes per cluster 179 179 180 180 kernel_sched_vbase = 0xA0000000
Note: See TracChangeset
for help on using the changeset viewer.