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