Changeset 553
- Timestamp:
- Sep 21, 2018, 10:24:58 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r548 r553 131 131 --ioc_type=$(IOC_TYPE) \ 132 132 --sys_clk=$(SYS_CLK) \ 133 --segs_set=$(SEGS_SET) \ 133 134 --hard=. \ 134 135 --bin=. \ -
trunk/params-hard-real.mk
r548 r553 9 9 IOC_TYPE = IOC_SPI 10 10 SYS_CLK = 600000 11 SEGS_SET = REAL -
trunk/params-hard-simu.mk
r548 r553 9 9 IOC_TYPE = IOC_BDV 10 10 SYS_CLK = 25000 11 SEGS_SET = SIMU -
trunk/tools/arch_info/genarch.py
r548 r553 83 83 help = 'define system clock frequency (25MHz for FPGA, 600MHz for TSARLET)' ) 84 84 85 parser.add_option( '--segs_set', type = 'string', dest = 'segs_set', 86 default = 'SIMU', 87 help = 'define which set of base addresses to use (may differ between simulation and real machine' ) 88 85 89 parser.add_option( '--hard', type = 'string', dest = 'hard_path', 86 90 help = 'define pathname to directory for the hard_config.h file ' ) … … 110 114 ioc_type = options.ioc_type # ioc controller type 111 115 sys_clk = options.sys_clk # system clock frequency in kHz 116 segs_set = options.segs_set # Set of base addresses used (simu or real) 112 117 113 118 hard_path = options.hard_path # path for hard_config.h file … … 139 144 nb_nics, 140 145 fbf_size, 141 ioc_type ) 146 ioc_type, 147 segs_set ) 142 148 143 149 print '[genarch] archinfo build for %s' % archinfo.name
Note: See TracChangeset
for help on using the changeset viewer.