FSConfig.py (5330:a1db38b0d8e8) FSConfig.py (5357:eecb5fd0be62)
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright
9# notice, this list of conditions and the following disclaimer in the
10# documentation and/or other materials provided with the distribution;
11# neither the name of the copyright holders nor the names of its
12# contributors may be used to endorse or promote products derived from
13# this software without specific prior written permission.
14#
15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Kevin Lim
28
29import m5
30from m5 import makeList
31from m5.objects import *
32from Benchmarks import *
33
34class CowIdeDisk(IdeDisk):
35 image = CowDiskImage(child=RawDiskImage(read_only=True),
36 read_only=False)
37
38 def childImage(self, ci):
39 self.image.child.image_file = ci
40
41def makeLinuxAlphaSystem(mem_mode, mdesc = None):
42 class BaseTsunami(Tsunami):
43 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
44 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
45 pci_func=0, pci_dev=0, pci_bus=0)
46
47 self = LinuxAlphaSystem()
48 if not mdesc:
49 # generic system
50 mdesc = SysConfig()
51 self.readfile = mdesc.script()
52 self.iobus = Bus(bus_id=0)
53 self.membus = Bus(bus_id=1)
54 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
55 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
56 self.bridge.side_a = self.iobus.port
57 self.bridge.side_b = self.membus.port
58 self.physmem.port = self.membus.port
59 self.disk0 = CowIdeDisk(driveID='master')
60 self.disk2 = CowIdeDisk(driveID='master')
61 self.disk0.childImage(mdesc.disk())
62 self.disk2.childImage(disk('linux-bigswap2.img'))
63 self.tsunami = BaseTsunami()
64 self.tsunami.attachIO(self.iobus)
65 self.tsunami.ide.pio = self.iobus.port
66 self.tsunami.ethernet.pio = self.iobus.port
67 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
68 read_only = True))
69 self.intrctrl = IntrControl()
70 self.mem_mode = mem_mode
71 self.sim_console = SimConsole()
72 self.kernel = binary('vmlinux')
73 self.pal = binary('ts_osfpal')
74 self.console = binary('console')
75 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
76
77 return self
78
79def makeSparcSystem(mem_mode, mdesc = None):
80 class CowMmDisk(MmDisk):
81 image = CowDiskImage(child=RawDiskImage(read_only=True),
82 read_only=False)
83
84 def childImage(self, ci):
85 self.image.child.image_file = ci
86
87 self = SparcSystem()
88 if not mdesc:
89 # generic system
90 mdesc = SysConfig()
91 self.readfile = mdesc.script()
92 self.iobus = Bus(bus_id=0)
93 self.membus = Bus(bus_id=1)
94 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
95 self.t1000 = T1000()
96 self.t1000.attachOnChipIO(self.membus)
97 self.t1000.attachIO(self.iobus)
98 self.physmem = PhysicalMemory(range = AddrRange(Addr('1MB'), size = '64MB'), zero = True)
99 self.physmem2 = PhysicalMemory(range = AddrRange(Addr('2GB'), size ='256MB'), zero = True)
100 self.bridge.side_a = self.iobus.port
101 self.bridge.side_b = self.membus.port
102 self.physmem.port = self.membus.port
103 self.physmem2.port = self.membus.port
104 self.rom.port = self.membus.port
105 self.nvram.port = self.membus.port
106 self.hypervisor_desc.port = self.membus.port
107 self.partition_desc.port = self.membus.port
108 self.intrctrl = IntrControl()
109 self.disk0 = CowMmDisk()
110 self.disk0.childImage(disk('disk.s10hw2'))
111 self.disk0.pio = self.iobus.port
112 self.reset_bin = binary('reset_new.bin')
113 self.hypervisor_bin = binary('q_new.bin')
114 self.openboot_bin = binary('openboot_new.bin')
115 self.nvram_bin = binary('nvram1')
116 self.hypervisor_desc_bin = binary('1up-hv.bin')
117 self.partition_desc_bin = binary('1up-md.bin')
118
119 return self
120
121def makeLinuxMipsSystem(mem_mode, mdesc = None):
122 class BaseMalta(Malta):
123 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
124 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
125 pci_func=0, pci_dev=0, pci_bus=0)
126
127 self = LinuxMipsSystem()
128 if not mdesc:
129 # generic system
130 mdesc = SysConfig()
131 self.readfile = mdesc.script()
132 self.iobus = Bus(bus_id=0)
133 self.membus = Bus(bus_id=1)
134 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
135 self.physmem = PhysicalMemory(range = AddrRange('1GB'))
136 self.bridge.side_a = self.iobus.port
137 self.bridge.side_b = self.membus.port
138 self.physmem.port = self.membus.port
139 self.disk0 = CowIdeDisk(driveID='master')
140 self.disk2 = CowIdeDisk(driveID='master')
141 self.disk0.childImage(mdesc.disk())
142 self.disk2.childImage(disk('linux-bigswap2.img'))
143 self.malta = BaseMalta()
144 self.malta.attachIO(self.iobus)
145 self.malta.ide.pio = self.iobus.port
146 self.malta.ethernet.pio = self.iobus.port
147 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
148 read_only = True))
149 self.intrctrl = IntrControl()
150 self.mem_mode = mem_mode
151 self.sim_console = SimConsole()
152 self.kernel = binary('mips/vmlinux')
153 self.console = binary('mips/console')
154 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
155
156 return self
157
158def x86IOAddress(port):
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright
9# notice, this list of conditions and the following disclaimer in the
10# documentation and/or other materials provided with the distribution;
11# neither the name of the copyright holders nor the names of its
12# contributors may be used to endorse or promote products derived from
13# this software without specific prior written permission.
14#
15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# Authors: Kevin Lim
28
29import m5
30from m5 import makeList
31from m5.objects import *
32from Benchmarks import *
33
34class CowIdeDisk(IdeDisk):
35 image = CowDiskImage(child=RawDiskImage(read_only=True),
36 read_only=False)
37
38 def childImage(self, ci):
39 self.image.child.image_file = ci
40
41def makeLinuxAlphaSystem(mem_mode, mdesc = None):
42 class BaseTsunami(Tsunami):
43 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
44 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
45 pci_func=0, pci_dev=0, pci_bus=0)
46
47 self = LinuxAlphaSystem()
48 if not mdesc:
49 # generic system
50 mdesc = SysConfig()
51 self.readfile = mdesc.script()
52 self.iobus = Bus(bus_id=0)
53 self.membus = Bus(bus_id=1)
54 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
55 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
56 self.bridge.side_a = self.iobus.port
57 self.bridge.side_b = self.membus.port
58 self.physmem.port = self.membus.port
59 self.disk0 = CowIdeDisk(driveID='master')
60 self.disk2 = CowIdeDisk(driveID='master')
61 self.disk0.childImage(mdesc.disk())
62 self.disk2.childImage(disk('linux-bigswap2.img'))
63 self.tsunami = BaseTsunami()
64 self.tsunami.attachIO(self.iobus)
65 self.tsunami.ide.pio = self.iobus.port
66 self.tsunami.ethernet.pio = self.iobus.port
67 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
68 read_only = True))
69 self.intrctrl = IntrControl()
70 self.mem_mode = mem_mode
71 self.sim_console = SimConsole()
72 self.kernel = binary('vmlinux')
73 self.pal = binary('ts_osfpal')
74 self.console = binary('console')
75 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
76
77 return self
78
79def makeSparcSystem(mem_mode, mdesc = None):
80 class CowMmDisk(MmDisk):
81 image = CowDiskImage(child=RawDiskImage(read_only=True),
82 read_only=False)
83
84 def childImage(self, ci):
85 self.image.child.image_file = ci
86
87 self = SparcSystem()
88 if not mdesc:
89 # generic system
90 mdesc = SysConfig()
91 self.readfile = mdesc.script()
92 self.iobus = Bus(bus_id=0)
93 self.membus = Bus(bus_id=1)
94 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
95 self.t1000 = T1000()
96 self.t1000.attachOnChipIO(self.membus)
97 self.t1000.attachIO(self.iobus)
98 self.physmem = PhysicalMemory(range = AddrRange(Addr('1MB'), size = '64MB'), zero = True)
99 self.physmem2 = PhysicalMemory(range = AddrRange(Addr('2GB'), size ='256MB'), zero = True)
100 self.bridge.side_a = self.iobus.port
101 self.bridge.side_b = self.membus.port
102 self.physmem.port = self.membus.port
103 self.physmem2.port = self.membus.port
104 self.rom.port = self.membus.port
105 self.nvram.port = self.membus.port
106 self.hypervisor_desc.port = self.membus.port
107 self.partition_desc.port = self.membus.port
108 self.intrctrl = IntrControl()
109 self.disk0 = CowMmDisk()
110 self.disk0.childImage(disk('disk.s10hw2'))
111 self.disk0.pio = self.iobus.port
112 self.reset_bin = binary('reset_new.bin')
113 self.hypervisor_bin = binary('q_new.bin')
114 self.openboot_bin = binary('openboot_new.bin')
115 self.nvram_bin = binary('nvram1')
116 self.hypervisor_desc_bin = binary('1up-hv.bin')
117 self.partition_desc_bin = binary('1up-md.bin')
118
119 return self
120
121def makeLinuxMipsSystem(mem_mode, mdesc = None):
122 class BaseMalta(Malta):
123 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
124 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
125 pci_func=0, pci_dev=0, pci_bus=0)
126
127 self = LinuxMipsSystem()
128 if not mdesc:
129 # generic system
130 mdesc = SysConfig()
131 self.readfile = mdesc.script()
132 self.iobus = Bus(bus_id=0)
133 self.membus = Bus(bus_id=1)
134 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
135 self.physmem = PhysicalMemory(range = AddrRange('1GB'))
136 self.bridge.side_a = self.iobus.port
137 self.bridge.side_b = self.membus.port
138 self.physmem.port = self.membus.port
139 self.disk0 = CowIdeDisk(driveID='master')
140 self.disk2 = CowIdeDisk(driveID='master')
141 self.disk0.childImage(mdesc.disk())
142 self.disk2.childImage(disk('linux-bigswap2.img'))
143 self.malta = BaseMalta()
144 self.malta.attachIO(self.iobus)
145 self.malta.ide.pio = self.iobus.port
146 self.malta.ethernet.pio = self.iobus.port
147 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
148 read_only = True))
149 self.intrctrl = IntrControl()
150 self.mem_mode = mem_mode
151 self.sim_console = SimConsole()
152 self.kernel = binary('mips/vmlinux')
153 self.console = binary('mips/console')
154 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
155
156 return self
157
158def x86IOAddress(port):
159 IO_address_space_base = 0x1000000000000000
159 IO_address_space_base = 0x8000000000000000
160 return IO_address_space_base + port;
161
162def makeLinuxX86System(mem_mode, mdesc = None):
163 self = LinuxX86System()
164 if not mdesc:
165 # generic system
166 mdesc = SysConfig()
167 self.readfile = mdesc.script()
168
169 # Physical memory
170 self.membus = Bus(bus_id=1)
171 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
172 self.physmem.port = self.membus.port
173
174 # North Bridge
175 self.iobus = Bus(bus_id=0)
176 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
177 self.bridge.side_a = self.iobus.port
178 self.bridge.side_b = self.membus.port
179
180 # Serial port and console
181 self.console = SimConsole()
182 self.com_1 = Uart8250()
183 self.com_1.pio_addr = x86IOAddress(0x3f8)
184 self.com_1.pio = self.iobus.port
185 self.com_1.sim_console = self.console
186
187 # Command line
188 self.boot_osflags = 'earlyprintk=ttyS0'
189
190 # Platform
191 self.opteron = Opteron()
160 return IO_address_space_base + port;
161
162def makeLinuxX86System(mem_mode, mdesc = None):
163 self = LinuxX86System()
164 if not mdesc:
165 # generic system
166 mdesc = SysConfig()
167 self.readfile = mdesc.script()
168
169 # Physical memory
170 self.membus = Bus(bus_id=1)
171 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
172 self.physmem.port = self.membus.port
173
174 # North Bridge
175 self.iobus = Bus(bus_id=0)
176 self.bridge = Bridge(delay='50ns', nack_delay='4ns')
177 self.bridge.side_a = self.iobus.port
178 self.bridge.side_b = self.membus.port
179
180 # Serial port and console
181 self.console = SimConsole()
182 self.com_1 = Uart8250()
183 self.com_1.pio_addr = x86IOAddress(0x3f8)
184 self.com_1.pio = self.iobus.port
185 self.com_1.sim_console = self.console
186
187 # Command line
188 self.boot_osflags = 'earlyprintk=ttyS0'
189
190 # Platform
191 self.opteron = Opteron()
192 self.opteron.attachIO(self.iobus)
192
193 self.intrctrl = IntrControl()
194
195 return self
196
197
198def makeDualRoot(testSystem, driveSystem, dumpfile):
199 self = Root()
200 self.testsys = testSystem
201 self.drivesys = driveSystem
202 self.etherlink = EtherLink()
203 self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
204 self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
205
206 if dumpfile:
207 self.etherdump = EtherDump(file=dumpfile)
208 self.etherlink.dump = Parent.etherdump
209
210 return self
211
212def setMipsOptions(TestCPUClass):
213 #CP0 Configuration
214 TestCPUClass.CoreParams.CP0_PRId_CompanyOptions = 0
215 TestCPUClass.CoreParams.CP0_PRId_CompanyID = 1
216 TestCPUClass.CoreParams.CP0_PRId_ProcessorID = 147
217 TestCPUClass.CoreParams.CP0_PRId_Revision = 0
218
219 #CP0 Interrupt Control
220 TestCPUClass.CoreParams.CP0_IntCtl_IPTI = 7
221 TestCPUClass.CoreParams.CP0_IntCtl_IPPCI = 7
222
223 # Config Register
224 #TestCPUClass.CoreParams.CP0_Config_K23 = 0 # Since TLB
225 #TestCPUClass.CoreParams.CP0_Config_KU = 0 # Since TLB
226 TestCPUClass.CoreParams.CP0_Config_BE = 0 # Little Endian
227 TestCPUClass.CoreParams.CP0_Config_AR = 1 # Architecture Revision 2
228 TestCPUClass.CoreParams.CP0_Config_AT = 0 # MIPS32
229 TestCPUClass.CoreParams.CP0_Config_MT = 1 # TLB MMU
230 #TestCPUClass.CoreParams.CP0_Config_K0 = 2 # Uncached
231
232 #Config 1 Register
233 TestCPUClass.CoreParams.CP0_Config1_M = 1 # Config2 Implemented
234 TestCPUClass.CoreParams.CP0_Config1_MMU = 63 # TLB Size
235 # ***VERY IMPORTANT***
236 # Remember to modify CP0_Config1 according to cache specs
237 # Examine file ../common/Cache.py
238 TestCPUClass.CoreParams.CP0_Config1_IS = 1 # I-Cache Sets Per Way, 16KB cache, i.e., 1 (128)
239 TestCPUClass.CoreParams.CP0_Config1_IL = 5 # I-Cache Line Size, default in Cache.py is 64, i.e 5
240 TestCPUClass.CoreParams.CP0_Config1_IA = 1 # I-Cache Associativity, default in Cache.py is 2, i.e, a value of 1
241 TestCPUClass.CoreParams.CP0_Config1_DS = 2 # D-Cache Sets Per Way (see below), 32KB cache, i.e., 2
242 TestCPUClass.CoreParams.CP0_Config1_DL = 5 # D-Cache Line Size, default is 64, i.e., 5
243 TestCPUClass.CoreParams.CP0_Config1_DA = 1 # D-Cache Associativity, default is 2, i.e. 1
244 TestCPUClass.CoreParams.CP0_Config1_C2 = 0 # Coprocessor 2 not implemented(?)
245 TestCPUClass.CoreParams.CP0_Config1_MD = 0 # MDMX ASE not implemented in Mips32
246 TestCPUClass.CoreParams.CP0_Config1_PC = 1 # Performance Counters Implemented
247 TestCPUClass.CoreParams.CP0_Config1_WR = 0 # Watch Registers Implemented
248 TestCPUClass.CoreParams.CP0_Config1_CA = 0 # Mips16e NOT implemented
249 TestCPUClass.CoreParams.CP0_Config1_EP = 0 # EJTag Not Implemented
250 TestCPUClass.CoreParams.CP0_Config1_FP = 0 # FPU Implemented
251
252 #Config 2 Register
253 TestCPUClass.CoreParams.CP0_Config2_M = 1 # Config3 Implemented
254 TestCPUClass.CoreParams.CP0_Config2_TU = 0 # Tertiary Cache Control
255 TestCPUClass.CoreParams.CP0_Config2_TS = 0 # Tertiary Cache Sets Per Way
256 TestCPUClass.CoreParams.CP0_Config2_TL = 0 # Tertiary Cache Line Size
257 TestCPUClass.CoreParams.CP0_Config2_TA = 0 # Tertiary Cache Associativity
258 TestCPUClass.CoreParams.CP0_Config2_SU = 0 # Secondary Cache Control
259 TestCPUClass.CoreParams.CP0_Config2_SS = 0 # Secondary Cache Sets Per Way
260 TestCPUClass.CoreParams.CP0_Config2_SL = 0 # Secondary Cache Line Size
261 TestCPUClass.CoreParams.CP0_Config2_SA = 0 # Secondary Cache Associativity
262
263
264 #Config 3 Register
265 TestCPUClass.CoreParams.CP0_Config3_M = 0 # Config4 Not Implemented
266 TestCPUClass.CoreParams.CP0_Config3_DSPP = 1 # DSP ASE Present
267 TestCPUClass.CoreParams.CP0_Config3_LPA = 0 # Large Physical Addresses Not supported in Mips32
268 TestCPUClass.CoreParams.CP0_Config3_VEIC = 0 # EIC Supported
269 TestCPUClass.CoreParams.CP0_Config3_VInt = 0 # Vectored Interrupts Implemented
270 TestCPUClass.CoreParams.CP0_Config3_SP = 0 # Small Pages Supported (PageGrain reg. exists)
271 TestCPUClass.CoreParams.CP0_Config3_MT = 0 # MT Not present
272 TestCPUClass.CoreParams.CP0_Config3_SM = 0 # SmartMIPS ASE Not implemented
273 TestCPUClass.CoreParams.CP0_Config3_TL = 0 # TraceLogic Not implemented
274
275 #SRS Ctl - HSS
276 TestCPUClass.CoreParams.CP0_SrsCtl_HSS = 3 # Four shadow register sets implemented
277
278
279 #TestCPUClass.CoreParams.tlb = TLB()
280 #TestCPUClass.CoreParams.UnifiedTLB = 1
193
194 self.intrctrl = IntrControl()
195
196 return self
197
198
199def makeDualRoot(testSystem, driveSystem, dumpfile):
200 self = Root()
201 self.testsys = testSystem
202 self.drivesys = driveSystem
203 self.etherlink = EtherLink()
204 self.etherlink.int0 = Parent.testsys.tsunami.ethernet.interface
205 self.etherlink.int1 = Parent.drivesys.tsunami.ethernet.interface
206
207 if dumpfile:
208 self.etherdump = EtherDump(file=dumpfile)
209 self.etherlink.dump = Parent.etherdump
210
211 return self
212
213def setMipsOptions(TestCPUClass):
214 #CP0 Configuration
215 TestCPUClass.CoreParams.CP0_PRId_CompanyOptions = 0
216 TestCPUClass.CoreParams.CP0_PRId_CompanyID = 1
217 TestCPUClass.CoreParams.CP0_PRId_ProcessorID = 147
218 TestCPUClass.CoreParams.CP0_PRId_Revision = 0
219
220 #CP0 Interrupt Control
221 TestCPUClass.CoreParams.CP0_IntCtl_IPTI = 7
222 TestCPUClass.CoreParams.CP0_IntCtl_IPPCI = 7
223
224 # Config Register
225 #TestCPUClass.CoreParams.CP0_Config_K23 = 0 # Since TLB
226 #TestCPUClass.CoreParams.CP0_Config_KU = 0 # Since TLB
227 TestCPUClass.CoreParams.CP0_Config_BE = 0 # Little Endian
228 TestCPUClass.CoreParams.CP0_Config_AR = 1 # Architecture Revision 2
229 TestCPUClass.CoreParams.CP0_Config_AT = 0 # MIPS32
230 TestCPUClass.CoreParams.CP0_Config_MT = 1 # TLB MMU
231 #TestCPUClass.CoreParams.CP0_Config_K0 = 2 # Uncached
232
233 #Config 1 Register
234 TestCPUClass.CoreParams.CP0_Config1_M = 1 # Config2 Implemented
235 TestCPUClass.CoreParams.CP0_Config1_MMU = 63 # TLB Size
236 # ***VERY IMPORTANT***
237 # Remember to modify CP0_Config1 according to cache specs
238 # Examine file ../common/Cache.py
239 TestCPUClass.CoreParams.CP0_Config1_IS = 1 # I-Cache Sets Per Way, 16KB cache, i.e., 1 (128)
240 TestCPUClass.CoreParams.CP0_Config1_IL = 5 # I-Cache Line Size, default in Cache.py is 64, i.e 5
241 TestCPUClass.CoreParams.CP0_Config1_IA = 1 # I-Cache Associativity, default in Cache.py is 2, i.e, a value of 1
242 TestCPUClass.CoreParams.CP0_Config1_DS = 2 # D-Cache Sets Per Way (see below), 32KB cache, i.e., 2
243 TestCPUClass.CoreParams.CP0_Config1_DL = 5 # D-Cache Line Size, default is 64, i.e., 5
244 TestCPUClass.CoreParams.CP0_Config1_DA = 1 # D-Cache Associativity, default is 2, i.e. 1
245 TestCPUClass.CoreParams.CP0_Config1_C2 = 0 # Coprocessor 2 not implemented(?)
246 TestCPUClass.CoreParams.CP0_Config1_MD = 0 # MDMX ASE not implemented in Mips32
247 TestCPUClass.CoreParams.CP0_Config1_PC = 1 # Performance Counters Implemented
248 TestCPUClass.CoreParams.CP0_Config1_WR = 0 # Watch Registers Implemented
249 TestCPUClass.CoreParams.CP0_Config1_CA = 0 # Mips16e NOT implemented
250 TestCPUClass.CoreParams.CP0_Config1_EP = 0 # EJTag Not Implemented
251 TestCPUClass.CoreParams.CP0_Config1_FP = 0 # FPU Implemented
252
253 #Config 2 Register
254 TestCPUClass.CoreParams.CP0_Config2_M = 1 # Config3 Implemented
255 TestCPUClass.CoreParams.CP0_Config2_TU = 0 # Tertiary Cache Control
256 TestCPUClass.CoreParams.CP0_Config2_TS = 0 # Tertiary Cache Sets Per Way
257 TestCPUClass.CoreParams.CP0_Config2_TL = 0 # Tertiary Cache Line Size
258 TestCPUClass.CoreParams.CP0_Config2_TA = 0 # Tertiary Cache Associativity
259 TestCPUClass.CoreParams.CP0_Config2_SU = 0 # Secondary Cache Control
260 TestCPUClass.CoreParams.CP0_Config2_SS = 0 # Secondary Cache Sets Per Way
261 TestCPUClass.CoreParams.CP0_Config2_SL = 0 # Secondary Cache Line Size
262 TestCPUClass.CoreParams.CP0_Config2_SA = 0 # Secondary Cache Associativity
263
264
265 #Config 3 Register
266 TestCPUClass.CoreParams.CP0_Config3_M = 0 # Config4 Not Implemented
267 TestCPUClass.CoreParams.CP0_Config3_DSPP = 1 # DSP ASE Present
268 TestCPUClass.CoreParams.CP0_Config3_LPA = 0 # Large Physical Addresses Not supported in Mips32
269 TestCPUClass.CoreParams.CP0_Config3_VEIC = 0 # EIC Supported
270 TestCPUClass.CoreParams.CP0_Config3_VInt = 0 # Vectored Interrupts Implemented
271 TestCPUClass.CoreParams.CP0_Config3_SP = 0 # Small Pages Supported (PageGrain reg. exists)
272 TestCPUClass.CoreParams.CP0_Config3_MT = 0 # MT Not present
273 TestCPUClass.CoreParams.CP0_Config3_SM = 0 # SmartMIPS ASE Not implemented
274 TestCPUClass.CoreParams.CP0_Config3_TL = 0 # TraceLogic Not implemented
275
276 #SRS Ctl - HSS
277 TestCPUClass.CoreParams.CP0_SrsCtl_HSS = 3 # Four shadow register sets implemented
278
279
280 #TestCPUClass.CoreParams.tlb = TLB()
281 #TestCPUClass.CoreParams.UnifiedTLB = 1