tsunami_pchip.cc revision 8853
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"
416658Snate@binkert.org#include "config/the_isa.hh"
428232Snate@binkert.org#include "debug/Tsunami.hh"
438229Snate@binkert.org#include "dev/alpha/tsunami.hh"
443540Sgblack@eecs.umich.edu#include "dev/alpha/tsunami_pchip.hh"
453540Sgblack@eecs.umich.edu#include "dev/alpha/tsunamireg.h"
462542SN/A#include "mem/packet.hh"
473348SN/A#include "mem/packet_access.hh"
48768SN/A#include "sim/system.hh"
49768SN/A
50768SN/Ausing namespace std;
512107SN/A//Should this be AlphaISA?
522107SN/Ausing namespace TheISA;
53768SN/A
544762Snate@binkert.orgTsunamiPChip::TsunamiPChip(const Params *p)
552542SN/A: BasicPioDevice(p)
56768SN/A{
573846Shsul@eecs.umich.edu    pioSize = 0x1000;
58809SN/A
59835SN/A    for (int i = 0; i < 4; i++) {
60835SN/A        wsba[i] = 0;
61835SN/A        wsm[i] = 0;
62835SN/A        tba[i] = 0;
63835SN/A    }
64768SN/A
65896SN/A    // initialize pchip control register
66896SN/A    pctl = (ULL(0x1) << 20) | (ULL(0x1) << 32) | (ULL(0x2) << 36);
67896SN/A
68775SN/A    //Set back pointer in tsunami
692539SN/A    p->tsunami->pchip = this;
702539SN/A}
712539SN/A
722539SN/ATick
733349SN/ATsunamiPChip::read(PacketPtr pkt)
742539SN/A{
752641SN/A    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
762539SN/A
772630SN/A    pkt->allocate();
782641SN/A    Addr daddr = (pkt->getAddr() - pioAddr) >> 6;;
792641SN/A    assert(pkt->getSize() == sizeof(uint64_t));
802539SN/A
812539SN/A
822641SN/A    DPRINTF(Tsunami, "read  va=%#x size=%d\n", pkt->getAddr(), pkt->getSize());
832539SN/A
842539SN/A    switch(daddr) {
852539SN/A      case TSDEV_PC_WSBA0:
862630SN/A            pkt->set(wsba[0]);
872539SN/A            break;
882539SN/A      case TSDEV_PC_WSBA1:
892630SN/A            pkt->set(wsba[1]);
902539SN/A            break;
912539SN/A      case TSDEV_PC_WSBA2:
922630SN/A            pkt->set(wsba[2]);
932539SN/A            break;
942539SN/A      case TSDEV_PC_WSBA3:
952630SN/A            pkt->set(wsba[3]);
962539SN/A            break;
972539SN/A      case TSDEV_PC_WSM0:
982630SN/A            pkt->set(wsm[0]);
992539SN/A            break;
1002539SN/A      case TSDEV_PC_WSM1:
1012630SN/A            pkt->set(wsm[1]);
1022539SN/A            break;
1032539SN/A      case TSDEV_PC_WSM2:
1042630SN/A            pkt->set(wsm[2]);
1052539SN/A            break;
1062539SN/A      case TSDEV_PC_WSM3:
1072630SN/A            pkt->set(wsm[3]);
1082539SN/A            break;
1092539SN/A      case TSDEV_PC_TBA0:
1102630SN/A            pkt->set(tba[0]);
1112539SN/A            break;
1122539SN/A      case TSDEV_PC_TBA1:
1132630SN/A            pkt->set(tba[1]);
1142539SN/A            break;
1152539SN/A      case TSDEV_PC_TBA2:
1162630SN/A            pkt->set(tba[2]);
1172539SN/A            break;
1182542SN/A      case TSDEV_PC_TBA3:
1192630SN/A            pkt->set(tba[3]);
1202539SN/A            break;
1212539SN/A      case TSDEV_PC_PCTL:
1222630SN/A            pkt->set(pctl);
1232539SN/A            break;
1242539SN/A      case TSDEV_PC_PLAT:
1252539SN/A            panic("PC_PLAT not implemented\n");
1262539SN/A      case TSDEV_PC_RES:
1272539SN/A            panic("PC_RES not implemented\n");
1282539SN/A      case TSDEV_PC_PERROR:
1292630SN/A            pkt->set((uint64_t)0x00);
1302539SN/A            break;
1312539SN/A      case TSDEV_PC_PERRMASK:
1322630SN/A            pkt->set((uint64_t)0x00);
1332539SN/A            break;
1342539SN/A      case TSDEV_PC_PERRSET:
1352539SN/A            panic("PC_PERRSET not implemented\n");
1362539SN/A      case TSDEV_PC_TLBIV:
1372539SN/A            panic("PC_TLBIV not implemented\n");
1382539SN/A      case TSDEV_PC_TLBIA:
1392630SN/A            pkt->set((uint64_t)0x00); // shouldn't be readable, but linux
1402539SN/A            break;
1412539SN/A      case TSDEV_PC_PMONCTL:
1422539SN/A            panic("PC_PMONCTL not implemented\n");
1432539SN/A      case TSDEV_PC_PMONCNT:
1442539SN/A            panic("PC_PMONCTN not implemented\n");
1452539SN/A      default:
1462539SN/A          panic("Default in PChip Read reached reading 0x%x\n", daddr);
1472539SN/A    }
1484870Sstever@eecs.umich.edu    pkt->makeAtomicResponse();
1492539SN/A    return pioDelay;
1502539SN/A
151768SN/A}
152768SN/A
1532542SN/ATick
1543349SN/ATsunamiPChip::write(PacketPtr pkt)
155768SN/A{
1562641SN/A    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
1572641SN/A    Addr daddr = (pkt->getAddr() - pioAddr) >> 6;
158768SN/A
1592641SN/A    assert(pkt->getSize() == sizeof(uint64_t));
160768SN/A
1612641SN/A    DPRINTF(Tsunami, "write - va=%#x size=%d \n", pkt->getAddr(), pkt->getSize());
162768SN/A
1632539SN/A    switch(daddr) {
1642539SN/A        case TSDEV_PC_WSBA0:
1652630SN/A              wsba[0] = pkt->get<uint64_t>();
1662539SN/A              break;
1672539SN/A        case TSDEV_PC_WSBA1:
1682630SN/A              wsba[1] = pkt->get<uint64_t>();
1692539SN/A              break;
1702539SN/A        case TSDEV_PC_WSBA2:
1712630SN/A              wsba[2] = pkt->get<uint64_t>();
1722539SN/A              break;
1732539SN/A        case TSDEV_PC_WSBA3:
1742630SN/A              wsba[3] = pkt->get<uint64_t>();
1752539SN/A              break;
1762539SN/A        case TSDEV_PC_WSM0:
1772630SN/A              wsm[0] = pkt->get<uint64_t>();
1782539SN/A              break;
1792539SN/A        case TSDEV_PC_WSM1:
1802630SN/A              wsm[1] = pkt->get<uint64_t>();
1812539SN/A              break;
1822539SN/A        case TSDEV_PC_WSM2:
1832630SN/A              wsm[2] = pkt->get<uint64_t>();
1842539SN/A              break;
1852539SN/A        case TSDEV_PC_WSM3:
1862630SN/A              wsm[3] = pkt->get<uint64_t>();
1872539SN/A              break;
1882539SN/A        case TSDEV_PC_TBA0:
1892630SN/A              tba[0] = pkt->get<uint64_t>();
1902539SN/A              break;
1912539SN/A        case TSDEV_PC_TBA1:
1922630SN/A              tba[1] = pkt->get<uint64_t>();
1932539SN/A              break;
1942539SN/A        case TSDEV_PC_TBA2:
1952630SN/A              tba[2] = pkt->get<uint64_t>();
1962539SN/A              break;
1972539SN/A        case TSDEV_PC_TBA3:
1982630SN/A              tba[3] = pkt->get<uint64_t>();
1992539SN/A              break;
2002539SN/A        case TSDEV_PC_PCTL:
2012630SN/A              pctl = pkt->get<uint64_t>();
2022539SN/A              break;
2032539SN/A        case TSDEV_PC_PLAT:
2042539SN/A              panic("PC_PLAT not implemented\n");
2052539SN/A        case TSDEV_PC_RES:
2062539SN/A              panic("PC_RES not implemented\n");
2072539SN/A        case TSDEV_PC_PERROR:
2082539SN/A              break;
2092539SN/A        case TSDEV_PC_PERRMASK:
2102539SN/A              panic("PC_PERRMASK not implemented\n");
2112539SN/A        case TSDEV_PC_PERRSET:
2122539SN/A              panic("PC_PERRSET not implemented\n");
2132539SN/A        case TSDEV_PC_TLBIV:
2142539SN/A              panic("PC_TLBIV not implemented\n");
2152539SN/A        case TSDEV_PC_TLBIA:
2162539SN/A              break; // value ignored, supposted to invalidate SG TLB
2172539SN/A        case TSDEV_PC_PMONCTL:
2182539SN/A              panic("PC_PMONCTL not implemented\n");
2192539SN/A        case TSDEV_PC_PMONCNT:
2202539SN/A              panic("PC_PMONCTN not implemented\n");
2212539SN/A        default:
2222549SN/A            panic("Default in PChip write reached reading 0x%x\n", daddr);
223768SN/A
2242539SN/A    } // uint64_t
225768SN/A
2264870Sstever@eecs.umich.edu    pkt->makeAtomicResponse();
2272539SN/A    return pioDelay;
228768SN/A}
229768SN/A
230857SN/A#define DMA_ADDR_MASK ULL(0x3ffffffff)
231857SN/A
232835SN/AAddr
233835SN/ATsunamiPChip::translatePciToDma(Addr busAddr)
234835SN/A{
235835SN/A    // compare the address to the window base registers
236857SN/A    uint64_t tbaMask = 0;
237857SN/A    uint64_t baMask = 0;
238857SN/A
239835SN/A    uint64_t windowMask = 0;
240835SN/A    uint64_t windowBase = 0;
241857SN/A
242857SN/A    uint64_t pteEntry = 0;
243857SN/A
244857SN/A    Addr pteAddr;
245835SN/A    Addr dmaAddr;
246835SN/A
247896SN/A#if 0
248896SN/A    DPRINTF(IdeDisk, "Translation for bus address: %#x\n", busAddr);
249835SN/A    for (int i = 0; i < 4; i++) {
250896SN/A        DPRINTF(IdeDisk, "(%d) base:%#x mask:%#x\n",
251896SN/A                i, wsba[i], wsm[i]);
252896SN/A
253835SN/A        windowBase = wsba[i];
254896SN/A        windowMask = ~wsm[i] & (ULL(0xfff) << 20);
255835SN/A
256835SN/A        if ((busAddr & windowMask) == (windowBase & windowMask)) {
257896SN/A            DPRINTF(IdeDisk, "Would have matched %d (wb:%#x wm:%#x --> ba&wm:%#x wb&wm:%#x)\n",
258896SN/A                    i, windowBase, windowMask, (busAddr & windowMask),
259896SN/A                    (windowBase & windowMask));
260896SN/A        }
261896SN/A    }
262896SN/A#endif
263857SN/A
264896SN/A    for (int i = 0; i < 4; i++) {
265896SN/A
266896SN/A        windowBase = wsba[i];
267896SN/A        windowMask = ~wsm[i] & (ULL(0xfff) << 20);
268896SN/A
269896SN/A        if ((busAddr & windowMask) == (windowBase & windowMask)) {
270835SN/A
271835SN/A            if (wsba[i] & 0x1) {   // see if enabled
272857SN/A                if (wsba[i] & 0x2) { // see if SG bit is set
273857SN/A                    /** @todo
274857SN/A                        This currently is faked by just doing a direct
275857SN/A                        read from memory, however, to be realistic, this
276857SN/A                        needs to actually do a bus transaction.  The process
277857SN/A                        is explained in the tsunami documentation on page
278857SN/A                        10-12 and basically munges the address to look up a
279857SN/A                        PTE from a table in memory and then uses that mapping
280857SN/A                        to create an address for the SG page
281857SN/A                    */
282835SN/A
283896SN/A                    tbaMask = ~(((wsm[i] & (ULL(0xfff) << 20)) >> 10) | ULL(0x3ff));
284896SN/A                    baMask = (wsm[i] & (ULL(0xfff) << 20)) | (ULL(0x7f) << 13);
285857SN/A                    pteAddr = (tba[i] & tbaMask) | ((busAddr & baMask) >> 10);
286857SN/A
2878853Sandreas.hansson@arm.com                    sys->physProxy.readBlob(pteAddr, (uint8_t*)&pteEntry,
2888853Sandreas.hansson@arm.com                                            sizeof(uint64_t));
289857SN/A
290896SN/A                    dmaAddr = ((pteEntry & ~ULL(0x1)) << 12) | (busAddr & ULL(0x1fff));
291857SN/A
292857SN/A                } else {
293896SN/A                    baMask = (wsm[i] & (ULL(0xfff) << 20)) | ULL(0xfffff);
294857SN/A                    tbaMask = ~baMask;
295857SN/A                    dmaAddr = (tba[i] & tbaMask) | (busAddr & baMask);
296857SN/A                }
297857SN/A
298857SN/A                return (dmaAddr & DMA_ADDR_MASK);
299835SN/A            }
300835SN/A        }
301835SN/A    }
302835SN/A
303896SN/A    // if no match was found, then return the original address
304896SN/A    return busAddr;
305835SN/A}
3065834Sgblack@eecs.umich.edu
3072846SN/AAddr
3082846SN/ATsunamiPChip::calcConfigAddr(int bus, int dev, int func)
3092846SN/A{
3102846SN/A    assert(func < 8);
3112846SN/A    assert(dev < 32);
3122846SN/A    assert(bus == 0);
3132846SN/A
3142846SN/A    return TsunamiPciBus0Config | (func << 8) | (dev << 11);
3152846SN/A}
3162846SN/A
3175834Sgblack@eecs.umich.eduAddr
3185834Sgblack@eecs.umich.eduTsunamiPChip::calcIOAddr(Addr addr)
3195834Sgblack@eecs.umich.edu{
3205834Sgblack@eecs.umich.edu    return TSUNAMI_PCI0_IO + addr;
3215834Sgblack@eecs.umich.edu}
3222846SN/A
3235834Sgblack@eecs.umich.eduAddr
3245834Sgblack@eecs.umich.eduTsunamiPChip::calcMemAddr(Addr addr)
3255834Sgblack@eecs.umich.edu{
3265834Sgblack@eecs.umich.edu    return TSUNAMI_PCI0_MEMORY + addr;
3275834Sgblack@eecs.umich.edu}
328835SN/A
329768SN/Avoid
330768SN/ATsunamiPChip::serialize(std::ostream &os)
331768SN/A{
332896SN/A    SERIALIZE_SCALAR(pctl);
333835SN/A    SERIALIZE_ARRAY(wsba, 4);
334835SN/A    SERIALIZE_ARRAY(wsm, 4);
335835SN/A    SERIALIZE_ARRAY(tba, 4);
336768SN/A}
337768SN/A
338768SN/Avoid
339768SN/ATsunamiPChip::unserialize(Checkpoint *cp, const std::string &section)
340768SN/A{
341896SN/A    UNSERIALIZE_SCALAR(pctl);
342835SN/A    UNSERIALIZE_ARRAY(wsba, 4);
343835SN/A    UNSERIALIZE_ARRAY(wsm, 4);
344835SN/A    UNSERIALIZE_ARRAY(tba, 4);
345768SN/A}
346768SN/A
347909SN/A
3484762Snate@binkert.orgTsunamiPChip *
3494762Snate@binkert.orgTsunamiPChipParams::create()
350768SN/A{
3514762Snate@binkert.org    return new TsunamiPChip(this);
352768SN/A}
353