tsunami_io.cc revision 10642:9d3b6e7dd205
1/*
2 * Copyright (c) 2004-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 * Authors: Ali Saidi
29 *          Andrew Schultz
30 *          Miguel Serrano
31 */
32
33/** @file
34 * Tsunami I/O including PIC, PIT, RTC, DMA
35 */
36
37#include <sys/time.h>
38
39#include <deque>
40#include <string>
41#include <vector>
42
43#include "base/time.hh"
44#include "base/trace.hh"
45#include "config/the_isa.hh"
46#include "debug/Tsunami.hh"
47#include "dev/alpha/tsunami.hh"
48#include "dev/alpha/tsunami_cchip.hh"
49#include "dev/alpha/tsunami_io.hh"
50#include "dev/alpha/tsunamireg.h"
51#include "dev/rtcreg.h"
52#include "mem/packet.hh"
53#include "mem/packet_access.hh"
54#include "mem/port.hh"
55#include "sim/system.hh"
56
57// clang complains about std::set being overloaded with Packet::set if
58// we open up the entire namespace std
59using std::string;
60using std::ostream;
61
62//Should this be AlphaISA?
63using namespace TheISA;
64
65TsunamiIO::RTC::RTC(const string &n, const TsunamiIOParams *p)
66    : MC146818(p->tsunami, n, p->time, p->year_is_bcd, p->frequency),
67      tsunami(p->tsunami)
68{
69}
70
71TsunamiIO::TsunamiIO(const Params *p)
72    : BasicPioDevice(p, 0x100), tsunami(p->tsunami),
73      pitimer(this, p->name + "pitimer"), rtc(p->name + ".rtc", p)
74{
75    // set the back pointer from tsunami to myself
76    tsunami->io = this;
77
78    timerData = 0;
79    picr = 0;
80    picInterrupting = false;
81}
82
83Tick
84TsunamiIO::frequency() const
85{
86    return SimClock::Frequency / params()->frequency;
87}
88
89Tick
90TsunamiIO::read(PacketPtr pkt)
91{
92    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
93
94    Addr daddr = pkt->getAddr() - pioAddr;
95
96    DPRINTF(Tsunami, "io read  va=%#x size=%d IOPorrt=%#x\n", pkt->getAddr(),
97            pkt->getSize(), daddr);
98
99    if (pkt->getSize() == sizeof(uint8_t)) {
100        switch(daddr) {
101          // PIC1 mask read
102          case TSDEV_PIC1_MASK:
103            pkt->set(~mask1);
104            break;
105          case TSDEV_PIC2_MASK:
106            pkt->set(~mask2);
107            break;
108          case TSDEV_PIC1_ISR:
109              // !!! If this is modified 64bit case needs to be too
110              // Pal code has to do a 64 bit physical read because there is
111              // no load physical byte instruction
112              pkt->set(picr);
113              break;
114          case TSDEV_PIC2_ISR:
115              // PIC2 not implemnted... just return 0
116              pkt->set(0x00);
117              break;
118          case TSDEV_TMR0_DATA:
119            pkt->set(pitimer.readCounter(0));
120            break;
121          case TSDEV_TMR1_DATA:
122            pkt->set(pitimer.readCounter(1));
123            break;
124          case TSDEV_TMR2_DATA:
125            pkt->set(pitimer.readCounter(2));
126            break;
127          case TSDEV_RTC_DATA:
128            pkt->set(rtc.readData(rtcAddr));
129            break;
130          case TSDEV_CTRL_PORTB:
131            if (pitimer.outputHigh(2))
132                pkt->set(PORTB_SPKR_HIGH);
133            else
134                pkt->set(0x00);
135            break;
136          default:
137            panic("I/O Read - va%#x size %d\n", pkt->getAddr(), pkt->getSize());
138        }
139    } else if (pkt->getSize() == sizeof(uint64_t)) {
140        if (daddr == TSDEV_PIC1_ISR)
141            pkt->set<uint64_t>(picr);
142        else
143           panic("I/O Read - invalid addr - va %#x size %d\n",
144                   pkt->getAddr(), pkt->getSize());
145    } else {
146       panic("I/O Read - invalid size - va %#x size %d\n", pkt->getAddr(), pkt->getSize());
147    }
148    pkt->makeAtomicResponse();
149    return pioDelay;
150}
151
152Tick
153TsunamiIO::write(PacketPtr pkt)
154{
155    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
156    Addr daddr = pkt->getAddr() - pioAddr;
157
158    DPRINTF(Tsunami, "io write - va=%#x size=%d IOPort=%#x Data=%#x\n",
159            pkt->getAddr(), pkt->getSize(), pkt->getAddr() & 0xfff, (uint32_t)pkt->get<uint8_t>());
160
161    assert(pkt->getSize() == sizeof(uint8_t));
162
163    switch(daddr) {
164      case TSDEV_PIC1_MASK:
165        mask1 = ~(pkt->get<uint8_t>());
166        if ((picr & mask1) && !picInterrupting) {
167            picInterrupting = true;
168            tsunami->cchip->postDRIR(55);
169            DPRINTF(Tsunami, "posting pic interrupt to cchip\n");
170        }
171        if ((!(picr & mask1)) && picInterrupting) {
172            picInterrupting = false;
173            tsunami->cchip->clearDRIR(55);
174            DPRINTF(Tsunami, "clearing pic interrupt\n");
175        }
176        break;
177      case TSDEV_PIC2_MASK:
178        mask2 = pkt->get<uint8_t>();
179        //PIC2 Not implemented to interrupt
180        break;
181      case TSDEV_PIC1_ACK:
182        // clear the interrupt on the PIC
183        picr &= ~(1 << (pkt->get<uint8_t>() & 0xF));
184        if (!(picr & mask1))
185            tsunami->cchip->clearDRIR(55);
186        break;
187      case TSDEV_DMA1_MODE:
188        mode1 = pkt->get<uint8_t>();
189        break;
190      case TSDEV_DMA2_MODE:
191        mode2 = pkt->get<uint8_t>();
192        break;
193      case TSDEV_TMR0_DATA:
194        pitimer.writeCounter(0, pkt->get<uint8_t>());
195        break;
196      case TSDEV_TMR1_DATA:
197        pitimer.writeCounter(1, pkt->get<uint8_t>());
198        break;
199      case TSDEV_TMR2_DATA:
200        pitimer.writeCounter(2, pkt->get<uint8_t>());
201        break;
202      case TSDEV_TMR_CTRL:
203        pitimer.writeControl(pkt->get<uint8_t>());
204        break;
205      case TSDEV_RTC_ADDR:
206        rtcAddr = pkt->get<uint8_t>();
207        break;
208      case TSDEV_RTC_DATA:
209        rtc.writeData(rtcAddr, pkt->get<uint8_t>());
210        break;
211      case TSDEV_KBD:
212      case TSDEV_DMA1_CMND:
213      case TSDEV_DMA2_CMND:
214      case TSDEV_DMA1_MMASK:
215      case TSDEV_DMA2_MMASK:
216      case TSDEV_PIC2_ACK:
217      case TSDEV_DMA1_RESET:
218      case TSDEV_DMA2_RESET:
219      case TSDEV_DMA1_MASK:
220      case TSDEV_DMA2_MASK:
221      case TSDEV_CTRL_PORTB:
222        break;
223      default:
224        panic("I/O Write - va%#x size %d data %#x\n", pkt->getAddr(), pkt->getSize(), pkt->get<uint8_t>());
225    }
226
227    pkt->makeAtomicResponse();
228    return pioDelay;
229}
230
231void
232TsunamiIO::postPIC(uint8_t bitvector)
233{
234    //PIC2 Is not implemented, because nothing of interest there
235    picr |= bitvector;
236    if (picr & mask1) {
237        tsunami->cchip->postDRIR(55);
238        DPRINTF(Tsunami, "posting pic interrupt to cchip\n");
239    }
240}
241
242void
243TsunamiIO::clearPIC(uint8_t bitvector)
244{
245    //PIC2 Is not implemented, because nothing of interest there
246    picr &= ~bitvector;
247    if (!(picr & mask1)) {
248        tsunami->cchip->clearDRIR(55);
249        DPRINTF(Tsunami, "clearing pic interrupt to cchip\n");
250    }
251}
252
253void
254TsunamiIO::serialize(ostream &os)
255{
256    SERIALIZE_SCALAR(rtcAddr);
257    SERIALIZE_SCALAR(timerData);
258    SERIALIZE_SCALAR(mask1);
259    SERIALIZE_SCALAR(mask2);
260    SERIALIZE_SCALAR(mode1);
261    SERIALIZE_SCALAR(mode2);
262    SERIALIZE_SCALAR(picr);
263    SERIALIZE_SCALAR(picInterrupting);
264
265    // Serialize the timers
266    pitimer.serialize("pitimer", os);
267    rtc.serialize("rtc", os);
268}
269
270void
271TsunamiIO::unserialize(Checkpoint *cp, const string &section)
272{
273    UNSERIALIZE_SCALAR(rtcAddr);
274    UNSERIALIZE_SCALAR(timerData);
275    UNSERIALIZE_SCALAR(mask1);
276    UNSERIALIZE_SCALAR(mask2);
277    UNSERIALIZE_SCALAR(mode1);
278    UNSERIALIZE_SCALAR(mode2);
279    UNSERIALIZE_SCALAR(picr);
280    UNSERIALIZE_SCALAR(picInterrupting);
281
282    // Unserialize the timers
283    pitimer.unserialize("pitimer", cp, section);
284    rtc.unserialize("rtc", cp, section);
285}
286
287void
288TsunamiIO::startup()
289{
290    rtc.startup();
291    pitimer.startup();
292}
293
294TsunamiIO *
295TsunamiIOParams::create()
296{
297    return new TsunamiIO(this);
298}
299