tsunami_pchip.cc revision 5834
1892SN/A/*
21762SN/A * Copyright (c) 2004-2005 The Regents of The University of Michigan
3892SN/A * All rights reserved.
4892SN/A *
5892SN/A * Redistribution and use in source and binary forms, with or without
6892SN/A * modification, are permitted provided that the following conditions are
7892SN/A * met: redistributions of source code must retain the above copyright
8892SN/A * notice, this list of conditions and the following disclaimer;
9892SN/A * redistributions in binary form must reproduce the above copyright
10892SN/A * notice, this list of conditions and the following disclaimer in the
11892SN/A * documentation and/or other materials provided with the distribution;
12892SN/A * neither the name of the copyright holders nor the names of its
13892SN/A * contributors may be used to endorse or promote products derived from
14892SN/A * this software without specific prior written permission.
15892SN/A *
16892SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17892SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18892SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19892SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20892SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21892SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22892SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23892SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24892SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25892SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26892SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665SN/A *
282665SN/A * Authors: Ali Saidi
292665SN/A *          Andrew Schultz
30892SN/A */
31768SN/A
321730SN/A/** @file
33768SN/A * Tsunami PChip (pci)
34768SN/A */
35768SN/A
36768SN/A#include <deque>
37768SN/A#include <string>
38768SN/A#include <vector>
39768SN/A
40768SN/A#include "base/trace.hh"
413540Sgblack@eecs.umich.edu#include "dev/alpha/tsunami_pchip.hh"
423540Sgblack@eecs.umich.edu#include "dev/alpha/tsunamireg.h"
433540Sgblack@eecs.umich.edu#include "dev/alpha/tsunami.hh"
442542SN/A#include "mem/packet.hh"
453348SN/A#include "mem/packet_access.hh"
46768SN/A#include "sim/system.hh"
47768SN/A
48768SN/Ausing namespace std;
492107SN/A//Should this be AlphaISA?
502107SN/Ausing namespace TheISA;
51768SN/A
524762Snate@binkert.orgTsunamiPChip::TsunamiPChip(const Params *p)
532542SN/A: BasicPioDevice(p)
54768SN/A{
553846Shsul@eecs.umich.edu    pioSize = 0x1000;
56809SN/A
57835SN/A    for (int i = 0; i < 4; i++) {
58835SN/A        wsba[i] = 0;
59835SN/A        wsm[i] = 0;
60835SN/A        tba[i] = 0;
61835SN/A    }
62768SN/A
63896SN/A    // initialize pchip control register
64896SN/A    pctl = (ULL(0x1) << 20) | (ULL(0x1) << 32) | (ULL(0x2) << 36);
65896SN/A
66775SN/A    //Set back pointer in tsunami
672539SN/A    p->tsunami->pchip = this;
682539SN/A}
692539SN/A
702539SN/ATick
713349SN/ATsunamiPChip::read(PacketPtr pkt)
722539SN/A{
732641SN/A    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
742539SN/A
752630SN/A    pkt->allocate();
762641SN/A    Addr daddr = (pkt->getAddr() - pioAddr) >> 6;;
772641SN/A    assert(pkt->getSize() == sizeof(uint64_t));
782539SN/A
792539SN/A
802641SN/A    DPRINTF(Tsunami, "read  va=%#x size=%d\n", pkt->getAddr(), pkt->getSize());
812539SN/A
822539SN/A    switch(daddr) {
832539SN/A      case TSDEV_PC_WSBA0:
842630SN/A            pkt->set(wsba[0]);
852539SN/A            break;
862539SN/A      case TSDEV_PC_WSBA1:
872630SN/A            pkt->set(wsba[1]);
882539SN/A            break;
892539SN/A      case TSDEV_PC_WSBA2:
902630SN/A            pkt->set(wsba[2]);
912539SN/A            break;
922539SN/A      case TSDEV_PC_WSBA3:
932630SN/A            pkt->set(wsba[3]);
942539SN/A            break;
952539SN/A      case TSDEV_PC_WSM0:
962630SN/A            pkt->set(wsm[0]);
972539SN/A            break;
982539SN/A      case TSDEV_PC_WSM1:
992630SN/A            pkt->set(wsm[1]);
1002539SN/A            break;
1012539SN/A      case TSDEV_PC_WSM2:
1022630SN/A            pkt->set(wsm[2]);
1032539SN/A            break;
1042539SN/A      case TSDEV_PC_WSM3:
1052630SN/A            pkt->set(wsm[3]);
1062539SN/A            break;
1072539SN/A      case TSDEV_PC_TBA0:
1082630SN/A            pkt->set(tba[0]);
1092539SN/A            break;
1102539SN/A      case TSDEV_PC_TBA1:
1112630SN/A            pkt->set(tba[1]);
1122539SN/A            break;
1132539SN/A      case TSDEV_PC_TBA2:
1142630SN/A            pkt->set(tba[2]);
1152539SN/A            break;
1162542SN/A      case TSDEV_PC_TBA3:
1172630SN/A            pkt->set(tba[3]);
1182539SN/A            break;
1192539SN/A      case TSDEV_PC_PCTL:
1202630SN/A            pkt->set(pctl);
1212539SN/A            break;
1222539SN/A      case TSDEV_PC_PLAT:
1232539SN/A            panic("PC_PLAT not implemented\n");
1242539SN/A      case TSDEV_PC_RES:
1252539SN/A            panic("PC_RES not implemented\n");
1262539SN/A      case TSDEV_PC_PERROR:
1272630SN/A            pkt->set((uint64_t)0x00);
1282539SN/A            break;
1292539SN/A      case TSDEV_PC_PERRMASK:
1302630SN/A            pkt->set((uint64_t)0x00);
1312539SN/A            break;
1322539SN/A      case TSDEV_PC_PERRSET:
1332539SN/A            panic("PC_PERRSET not implemented\n");
1342539SN/A      case TSDEV_PC_TLBIV:
1352539SN/A            panic("PC_TLBIV not implemented\n");
1362539SN/A      case TSDEV_PC_TLBIA:
1372630SN/A            pkt->set((uint64_t)0x00); // shouldn't be readable, but linux
1382539SN/A            break;
1392539SN/A      case TSDEV_PC_PMONCTL:
1402539SN/A            panic("PC_PMONCTL not implemented\n");
1412539SN/A      case TSDEV_PC_PMONCNT:
1422539SN/A            panic("PC_PMONCTN not implemented\n");
1432539SN/A      default:
1442539SN/A          panic("Default in PChip Read reached reading 0x%x\n", daddr);
1452539SN/A    }
1464870Sstever@eecs.umich.edu    pkt->makeAtomicResponse();
1472539SN/A    return pioDelay;
1482539SN/A
149768SN/A}
150768SN/A
1512542SN/ATick
1523349SN/ATsunamiPChip::write(PacketPtr pkt)
153768SN/A{
1542641SN/A    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
1552641SN/A    Addr daddr = (pkt->getAddr() - pioAddr) >> 6;
156768SN/A
1572641SN/A    assert(pkt->getSize() == sizeof(uint64_t));
158768SN/A
1592641SN/A    DPRINTF(Tsunami, "write - va=%#x size=%d \n", pkt->getAddr(), pkt->getSize());
160768SN/A
1612539SN/A    switch(daddr) {
1622539SN/A        case TSDEV_PC_WSBA0:
1632630SN/A              wsba[0] = pkt->get<uint64_t>();
1642539SN/A              break;
1652539SN/A        case TSDEV_PC_WSBA1:
1662630SN/A              wsba[1] = pkt->get<uint64_t>();
1672539SN/A              break;
1682539SN/A        case TSDEV_PC_WSBA2:
1692630SN/A              wsba[2] = pkt->get<uint64_t>();
1702539SN/A              break;
1712539SN/A        case TSDEV_PC_WSBA3:
1722630SN/A              wsba[3] = pkt->get<uint64_t>();
1732539SN/A              break;
1742539SN/A        case TSDEV_PC_WSM0:
1752630SN/A              wsm[0] = pkt->get<uint64_t>();
1762539SN/A              break;
1772539SN/A        case TSDEV_PC_WSM1:
1782630SN/A              wsm[1] = pkt->get<uint64_t>();
1792539SN/A              break;
1802539SN/A        case TSDEV_PC_WSM2:
1812630SN/A              wsm[2] = pkt->get<uint64_t>();
1822539SN/A              break;
1832539SN/A        case TSDEV_PC_WSM3:
1842630SN/A              wsm[3] = pkt->get<uint64_t>();
1852539SN/A              break;
1862539SN/A        case TSDEV_PC_TBA0:
1872630SN/A              tba[0] = pkt->get<uint64_t>();
1882539SN/A              break;
1892539SN/A        case TSDEV_PC_TBA1:
1902630SN/A              tba[1] = pkt->get<uint64_t>();
1912539SN/A              break;
1922539SN/A        case TSDEV_PC_TBA2:
1932630SN/A              tba[2] = pkt->get<uint64_t>();
1942539SN/A              break;
1952539SN/A        case TSDEV_PC_TBA3:
1962630SN/A              tba[3] = pkt->get<uint64_t>();
1972539SN/A              break;
1982539SN/A        case TSDEV_PC_PCTL:
1992630SN/A              pctl = pkt->get<uint64_t>();
2002539SN/A              break;
2012539SN/A        case TSDEV_PC_PLAT:
2022539SN/A              panic("PC_PLAT not implemented\n");
2032539SN/A        case TSDEV_PC_RES:
2042539SN/A              panic("PC_RES not implemented\n");
2052539SN/A        case TSDEV_PC_PERROR:
2062539SN/A              break;
2072539SN/A        case TSDEV_PC_PERRMASK:
2082539SN/A              panic("PC_PERRMASK not implemented\n");
2092539SN/A        case TSDEV_PC_PERRSET:
2102539SN/A              panic("PC_PERRSET not implemented\n");
2112539SN/A        case TSDEV_PC_TLBIV:
2122539SN/A              panic("PC_TLBIV not implemented\n");
2132539SN/A        case TSDEV_PC_TLBIA:
2142539SN/A              break; // value ignored, supposted to invalidate SG TLB
2152539SN/A        case TSDEV_PC_PMONCTL:
2162539SN/A              panic("PC_PMONCTL not implemented\n");
2172539SN/A        case TSDEV_PC_PMONCNT:
2182539SN/A              panic("PC_PMONCTN not implemented\n");
2192539SN/A        default:
2202549SN/A            panic("Default in PChip write reached reading 0x%x\n", daddr);
221768SN/A
2222539SN/A    } // uint64_t
223768SN/A
2244870Sstever@eecs.umich.edu    pkt->makeAtomicResponse();
2252539SN/A    return pioDelay;
226768SN/A}
227768SN/A
228857SN/A#define DMA_ADDR_MASK ULL(0x3ffffffff)
229857SN/A
230835SN/AAddr
231835SN/ATsunamiPChip::translatePciToDma(Addr busAddr)
232835SN/A{
233835SN/A    // compare the address to the window base registers
234857SN/A    uint64_t tbaMask = 0;
235857SN/A    uint64_t baMask = 0;
236857SN/A
237835SN/A    uint64_t windowMask = 0;
238835SN/A    uint64_t windowBase = 0;
239857SN/A
240857SN/A    uint64_t pteEntry = 0;
241857SN/A
242857SN/A    Addr pteAddr;
243835SN/A    Addr dmaAddr;
244835SN/A
245896SN/A#if 0
246896SN/A    DPRINTF(IdeDisk, "Translation for bus address: %#x\n", busAddr);
247835SN/A    for (int i = 0; i < 4; i++) {
248896SN/A        DPRINTF(IdeDisk, "(%d) base:%#x mask:%#x\n",
249896SN/A                i, wsba[i], wsm[i]);
250896SN/A
251835SN/A        windowBase = wsba[i];
252896SN/A        windowMask = ~wsm[i] & (ULL(0xfff) << 20);
253835SN/A
254835SN/A        if ((busAddr & windowMask) == (windowBase & windowMask)) {
255896SN/A            DPRINTF(IdeDisk, "Would have matched %d (wb:%#x wm:%#x --> ba&wm:%#x wb&wm:%#x)\n",
256896SN/A                    i, windowBase, windowMask, (busAddr & windowMask),
257896SN/A                    (windowBase & windowMask));
258896SN/A        }
259896SN/A    }
260896SN/A#endif
261857SN/A
262896SN/A    for (int i = 0; i < 4; i++) {
263896SN/A
264896SN/A        windowBase = wsba[i];
265896SN/A        windowMask = ~wsm[i] & (ULL(0xfff) << 20);
266896SN/A
267896SN/A        if ((busAddr & windowMask) == (windowBase & windowMask)) {
268835SN/A
269835SN/A            if (wsba[i] & 0x1) {   // see if enabled
270857SN/A                if (wsba[i] & 0x2) { // see if SG bit is set
271857SN/A                    /** @todo
272857SN/A                        This currently is faked by just doing a direct
273857SN/A                        read from memory, however, to be realistic, this
274857SN/A                        needs to actually do a bus transaction.  The process
275857SN/A                        is explained in the tsunami documentation on page
276857SN/A                        10-12 and basically munges the address to look up a
277857SN/A                        PTE from a table in memory and then uses that mapping
278857SN/A                        to create an address for the SG page
279857SN/A                    */
280835SN/A
281896SN/A                    tbaMask = ~(((wsm[i] & (ULL(0xfff) << 20)) >> 10) | ULL(0x3ff));
282896SN/A                    baMask = (wsm[i] & (ULL(0xfff) << 20)) | (ULL(0x7f) << 13);
283857SN/A                    pteAddr = (tba[i] & tbaMask) | ((busAddr & baMask) >> 10);
284857SN/A
2852542SN/A                    pioPort->readBlob(pteAddr, (uint8_t*)&pteEntry, sizeof(uint64_t));
286857SN/A
287896SN/A                    dmaAddr = ((pteEntry & ~ULL(0x1)) << 12) | (busAddr & ULL(0x1fff));
288857SN/A
289857SN/A                } else {
290896SN/A                    baMask = (wsm[i] & (ULL(0xfff) << 20)) | ULL(0xfffff);
291857SN/A                    tbaMask = ~baMask;
292857SN/A                    dmaAddr = (tba[i] & tbaMask) | (busAddr & baMask);
293857SN/A                }
294857SN/A
295857SN/A                return (dmaAddr & DMA_ADDR_MASK);
296835SN/A            }
297835SN/A        }
298835SN/A    }
299835SN/A
300896SN/A    // if no match was found, then return the original address
301896SN/A    return busAddr;
302835SN/A}
3035834Sgblack@eecs.umich.edu
3042846SN/AAddr
3052846SN/ATsunamiPChip::calcConfigAddr(int bus, int dev, int func)
3062846SN/A{
3072846SN/A    assert(func < 8);
3082846SN/A    assert(dev < 32);
3092846SN/A    assert(bus == 0);
3102846SN/A
3112846SN/A    return TsunamiPciBus0Config | (func << 8) | (dev << 11);
3122846SN/A}
3132846SN/A
3145834Sgblack@eecs.umich.eduAddr
3155834Sgblack@eecs.umich.eduTsunamiPChip::calcIOAddr(Addr addr)
3165834Sgblack@eecs.umich.edu{
3175834Sgblack@eecs.umich.edu    return TSUNAMI_PCI0_IO + addr;
3185834Sgblack@eecs.umich.edu}
3192846SN/A
3205834Sgblack@eecs.umich.eduAddr
3215834Sgblack@eecs.umich.eduTsunamiPChip::calcMemAddr(Addr addr)
3225834Sgblack@eecs.umich.edu{
3235834Sgblack@eecs.umich.edu    return TSUNAMI_PCI0_MEMORY + addr;
3245834Sgblack@eecs.umich.edu}
325835SN/A
326768SN/Avoid
327768SN/ATsunamiPChip::serialize(std::ostream &os)
328768SN/A{
329896SN/A    SERIALIZE_SCALAR(pctl);
330835SN/A    SERIALIZE_ARRAY(wsba, 4);
331835SN/A    SERIALIZE_ARRAY(wsm, 4);
332835SN/A    SERIALIZE_ARRAY(tba, 4);
333768SN/A}
334768SN/A
335768SN/Avoid
336768SN/ATsunamiPChip::unserialize(Checkpoint *cp, const std::string &section)
337768SN/A{
338896SN/A    UNSERIALIZE_SCALAR(pctl);
339835SN/A    UNSERIALIZE_ARRAY(wsba, 4);
340835SN/A    UNSERIALIZE_ARRAY(wsm, 4);
341835SN/A    UNSERIALIZE_ARRAY(tba, 4);
342768SN/A}
343768SN/A
344909SN/A
3454762Snate@binkert.orgTsunamiPChip *
3464762Snate@binkert.orgTsunamiPChipParams::create()
347768SN/A{
3484762Snate@binkert.org    return new TsunamiPChip(this);
349768SN/A}
350