Merge gblack@m5.eecs.umich.edu:/bk/multiarch
[gem5.git] / dev / alpha_console.cc
1 /*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 /** @file
30 * Alpha Console Definition
31 */
32
33 #include <cstddef>
34 #include <cstdio>
35 #include <string>
36
37 #include "base/inifile.hh"
38 #include "base/str.hh"
39 #include "base/trace.hh"
40 #include "cpu/base.hh"
41 #include "cpu/exec_context.hh"
42 #include "dev/alpha_console.hh"
43 #include "dev/simconsole.hh"
44 #include "dev/simple_disk.hh"
45 #include "dev/tsunami_io.hh"
46 #include "mem/bus/bus.hh"
47 #include "mem/bus/pio_interface.hh"
48 #include "mem/bus/pio_interface_impl.hh"
49 #include "mem/functional/memory_control.hh"
50 #include "mem/functional/physical.hh"
51 #include "sim/builder.hh"
52 #include "sim/sim_object.hh"
53 #include "sim/system.hh"
54
55 using namespace std;
56 using namespace AlphaISA;
57
58 AlphaConsole::AlphaConsole(const string &name, SimConsole *cons, SimpleDisk *d,
59 System *s, BaseCPU *c, Platform *p,
60 MemoryController *mmu, Addr a,
61 HierParams *hier, Bus *pio_bus)
62 : PioDevice(name, p), disk(d), console(cons), system(s), cpu(c), addr(a)
63 {
64 mmu->add_child(this, RangeSize(addr, size));
65
66 if (pio_bus) {
67 pioInterface = newPioInterface(name + ".pio", hier, pio_bus, this,
68 &AlphaConsole::cacheAccess);
69 pioInterface->addAddrRange(RangeSize(addr, size));
70 }
71
72 alphaAccess = new Access;
73 alphaAccess->last_offset = size - 1;
74
75 alphaAccess->version = ALPHA_ACCESS_VERSION;
76 alphaAccess->diskUnit = 1;
77
78 alphaAccess->diskCount = 0;
79 alphaAccess->diskPAddr = 0;
80 alphaAccess->diskBlock = 0;
81 alphaAccess->diskOperation = 0;
82 alphaAccess->outputChar = 0;
83 alphaAccess->inputChar = 0;
84 alphaAccess->bootStrapImpure = 0;
85 alphaAccess->bootStrapCPU = 0;
86 alphaAccess->align2 = 0;
87
88 system->setAlphaAccess(addr);
89 }
90
91 void
92 AlphaConsole::startup()
93 {
94 alphaAccess->numCPUs = system->getNumCPUs();
95 alphaAccess->kernStart = system->getKernelStart();
96 alphaAccess->kernEnd = system->getKernelEnd();
97 alphaAccess->entryPoint = system->getKernelEntry();
98 alphaAccess->mem_size = system->physmem->size();
99 alphaAccess->cpuClock = cpu->frequency() / 1000000; // In MHz
100 alphaAccess->intrClockFrequency = platform->intrFrequency();
101 }
102
103 Fault *
104 AlphaConsole::read(MemReqPtr &req, uint8_t *data)
105 {
106 memset(data, 0, req->size);
107
108 Addr daddr = req->paddr - (addr & EV5::PAddrImplMask);
109
110 switch (req->size)
111 {
112 case sizeof(uint32_t):
113 DPRINTF(AlphaConsole, "read: offset=%#x val=%#x\n", daddr,
114 *(uint32_t*)data);
115 switch (daddr)
116 {
117 case offsetof(AlphaAccess, last_offset):
118 *(uint32_t*)data = alphaAccess->last_offset;
119 break;
120 case offsetof(AlphaAccess, version):
121 *(uint32_t*)data = alphaAccess->version;
122 break;
123 case offsetof(AlphaAccess, numCPUs):
124 *(uint32_t*)data = alphaAccess->numCPUs;
125 break;
126 case offsetof(AlphaAccess, bootStrapCPU):
127 *(uint32_t*)data = alphaAccess->bootStrapCPU;
128 break;
129 case offsetof(AlphaAccess, intrClockFrequency):
130 *(uint32_t*)data = alphaAccess->intrClockFrequency;
131 break;
132 default:
133 // Old console code read in everyting as a 32bit int
134 *(uint32_t*)data = *(uint32_t*)(consoleData + daddr);
135
136 }
137 break;
138 case sizeof(uint64_t):
139 DPRINTF(AlphaConsole, "read: offset=%#x val=%#x\n", daddr,
140 *(uint64_t*)data);
141 switch (daddr)
142 {
143 case offsetof(AlphaAccess, inputChar):
144 *(uint64_t*)data = console->console_in();
145 break;
146 case offsetof(AlphaAccess, cpuClock):
147 *(uint64_t*)data = alphaAccess->cpuClock;
148 break;
149 case offsetof(AlphaAccess, mem_size):
150 *(uint64_t*)data = alphaAccess->mem_size;
151 break;
152 case offsetof(AlphaAccess, kernStart):
153 *(uint64_t*)data = alphaAccess->kernStart;
154 break;
155 case offsetof(AlphaAccess, kernEnd):
156 *(uint64_t*)data = alphaAccess->kernEnd;
157 break;
158 case offsetof(AlphaAccess, entryPoint):
159 *(uint64_t*)data = alphaAccess->entryPoint;
160 break;
161 case offsetof(AlphaAccess, diskUnit):
162 *(uint64_t*)data = alphaAccess->diskUnit;
163 break;
164 case offsetof(AlphaAccess, diskCount):
165 *(uint64_t*)data = alphaAccess->diskCount;
166 break;
167 case offsetof(AlphaAccess, diskPAddr):
168 *(uint64_t*)data = alphaAccess->diskPAddr;
169 break;
170 case offsetof(AlphaAccess, diskBlock):
171 *(uint64_t*)data = alphaAccess->diskBlock;
172 break;
173 case offsetof(AlphaAccess, diskOperation):
174 *(uint64_t*)data = alphaAccess->diskOperation;
175 break;
176 case offsetof(AlphaAccess, outputChar):
177 *(uint64_t*)data = alphaAccess->outputChar;
178 break;
179 case offsetof(AlphaAccess, bootStrapImpure):
180 *(uint64_t*)data = alphaAccess->bootStrapImpure;
181 break;
182 default:
183 panic("Unknown 64bit access, %#x\n", daddr);
184 }
185 break;
186 default:
187 return MachineCheckFault;
188 }
189
190 return NoFault;
191 }
192
193 Fault *
194 AlphaConsole::write(MemReqPtr &req, const uint8_t *data)
195 {
196 uint64_t val;
197
198 switch (req->size) {
199 case sizeof(uint32_t):
200 val = *(uint32_t *)data;
201 break;
202
203 case sizeof(uint64_t):
204 val = *(uint64_t *)data;
205 break;
206 default:
207 return MachineCheckFault;
208 }
209
210 Addr daddr = req->paddr - (addr & EV5::PAddrImplMask);
211 ExecContext *other_xc;
212
213 switch (daddr) {
214 case offsetof(AlphaAccess, diskUnit):
215 alphaAccess->diskUnit = val;
216 break;
217
218 case offsetof(AlphaAccess, diskCount):
219 alphaAccess->diskCount = val;
220 break;
221
222 case offsetof(AlphaAccess, diskPAddr):
223 alphaAccess->diskPAddr = val;
224 break;
225
226 case offsetof(AlphaAccess, diskBlock):
227 alphaAccess->diskBlock = val;
228 break;
229
230 case offsetof(AlphaAccess, diskOperation):
231 if (val == 0x13)
232 disk->read(alphaAccess->diskPAddr, alphaAccess->diskBlock,
233 alphaAccess->diskCount);
234 else
235 panic("Invalid disk operation!");
236
237 break;
238
239 case offsetof(AlphaAccess, outputChar):
240 console->out((char)(val & 0xff));
241 break;
242
243 case offsetof(AlphaAccess, bootStrapImpure):
244 alphaAccess->bootStrapImpure = val;
245 break;
246
247 case offsetof(AlphaAccess, bootStrapCPU):
248 warn("%d: Trying to launch another CPU!", curTick);
249 assert(val > 0 && "Must not access primary cpu");
250
251 other_xc = req->xc->system->execContexts[val];
252 other_xc->regs.intRegFile[16] = val;
253 other_xc->regs.ipr[TheISA::IPR_PALtemp16] = val;
254 other_xc->regs.intRegFile[0] = val;
255 other_xc->regs.intRegFile[30] = alphaAccess->bootStrapImpure;
256 other_xc->activate(); //Start the cpu
257 break;
258
259 default:
260 return MachineCheckFault;
261 }
262
263 return NoFault;
264 }
265
266 Tick
267 AlphaConsole::cacheAccess(MemReqPtr &req)
268 {
269 return curTick + 1000;
270 }
271
272 void
273 AlphaConsole::Access::serialize(ostream &os)
274 {
275 SERIALIZE_SCALAR(last_offset);
276 SERIALIZE_SCALAR(version);
277 SERIALIZE_SCALAR(numCPUs);
278 SERIALIZE_SCALAR(mem_size);
279 SERIALIZE_SCALAR(cpuClock);
280 SERIALIZE_SCALAR(intrClockFrequency);
281 SERIALIZE_SCALAR(kernStart);
282 SERIALIZE_SCALAR(kernEnd);
283 SERIALIZE_SCALAR(entryPoint);
284 SERIALIZE_SCALAR(diskUnit);
285 SERIALIZE_SCALAR(diskCount);
286 SERIALIZE_SCALAR(diskPAddr);
287 SERIALIZE_SCALAR(diskBlock);
288 SERIALIZE_SCALAR(diskOperation);
289 SERIALIZE_SCALAR(outputChar);
290 SERIALIZE_SCALAR(inputChar);
291 SERIALIZE_SCALAR(bootStrapImpure);
292 SERIALIZE_SCALAR(bootStrapCPU);
293 }
294
295 void
296 AlphaConsole::Access::unserialize(Checkpoint *cp, const std::string &section)
297 {
298 UNSERIALIZE_SCALAR(last_offset);
299 UNSERIALIZE_SCALAR(version);
300 UNSERIALIZE_SCALAR(numCPUs);
301 UNSERIALIZE_SCALAR(mem_size);
302 UNSERIALIZE_SCALAR(cpuClock);
303 UNSERIALIZE_SCALAR(intrClockFrequency);
304 UNSERIALIZE_SCALAR(kernStart);
305 UNSERIALIZE_SCALAR(kernEnd);
306 UNSERIALIZE_SCALAR(entryPoint);
307 UNSERIALIZE_SCALAR(diskUnit);
308 UNSERIALIZE_SCALAR(diskCount);
309 UNSERIALIZE_SCALAR(diskPAddr);
310 UNSERIALIZE_SCALAR(diskBlock);
311 UNSERIALIZE_SCALAR(diskOperation);
312 UNSERIALIZE_SCALAR(outputChar);
313 UNSERIALIZE_SCALAR(inputChar);
314 UNSERIALIZE_SCALAR(bootStrapImpure);
315 UNSERIALIZE_SCALAR(bootStrapCPU);
316 }
317
318 void
319 AlphaConsole::serialize(ostream &os)
320 {
321 alphaAccess->serialize(os);
322 }
323
324 void
325 AlphaConsole::unserialize(Checkpoint *cp, const std::string &section)
326 {
327 alphaAccess->unserialize(cp, section);
328 }
329
330 BEGIN_DECLARE_SIM_OBJECT_PARAMS(AlphaConsole)
331
332 SimObjectParam<SimConsole *> sim_console;
333 SimObjectParam<SimpleDisk *> disk;
334 SimObjectParam<MemoryController *> mmu;
335 Param<Addr> addr;
336 SimObjectParam<System *> system;
337 SimObjectParam<BaseCPU *> cpu;
338 SimObjectParam<Platform *> platform;
339 SimObjectParam<Bus*> pio_bus;
340 Param<Tick> pio_latency;
341 SimObjectParam<HierParams *> hier;
342
343 END_DECLARE_SIM_OBJECT_PARAMS(AlphaConsole)
344
345 BEGIN_INIT_SIM_OBJECT_PARAMS(AlphaConsole)
346
347 INIT_PARAM(sim_console, "The Simulator Console"),
348 INIT_PARAM(disk, "Simple Disk"),
349 INIT_PARAM(mmu, "Memory Controller"),
350 INIT_PARAM(addr, "Device Address"),
351 INIT_PARAM(system, "system object"),
352 INIT_PARAM(cpu, "Processor"),
353 INIT_PARAM(platform, "platform"),
354 INIT_PARAM(pio_bus, "The IO Bus to attach to"),
355 INIT_PARAM_DFLT(pio_latency, "Programmed IO latency", 1000),
356 INIT_PARAM_DFLT(hier, "Hierarchy global variables", &defaultHierParams)
357
358 END_INIT_SIM_OBJECT_PARAMS(AlphaConsole)
359
360 CREATE_SIM_OBJECT(AlphaConsole)
361 {
362 return new AlphaConsole(getInstanceName(), sim_console, disk,
363 system, cpu, platform, mmu, addr, hier, pio_bus);
364 }
365
366 REGISTER_SIM_OBJECT("AlphaConsole", AlphaConsole)