tsunami_pchip.hh revision 11169:44b5c183c3cd
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 */
30
31/** @file
32 * Tsunami PCI interface CSRs
33 */
34
35#ifndef __TSUNAMI_PCHIP_HH__
36#define __TSUNAMI_PCHIP_HH__
37
38#include "dev/alpha/tsunami.hh"
39#include "dev/io_device.hh"
40#include "params/TsunamiPChip.hh"
41
42/**
43 * A very simple implementation of the Tsunami PCI interface chips.
44 */
45class TsunamiPChip : public BasicPioDevice
46{
47  protected:
48
49    static const Addr TsunamiPciBus0Config = ULL(0x801fe000000);
50
51    /** Pchip control register */
52    uint64_t pctl;
53
54    /** Window Base addresses */
55    uint64_t wsba[4];
56
57    /** Window masks */
58    uint64_t wsm[4];
59
60    /** Translated Base Addresses */
61    uint64_t tba[4];
62
63  public:
64    typedef TsunamiPChipParams Params;
65    /**
66     * Register the PChip with the mmu and init all wsba, wsm, and tba to 0
67     * @param p pointer to the parameters struct
68     */
69    TsunamiPChip(const Params *p);
70
71    const Params *
72    params() const
73    {
74        return dynamic_cast<const Params *>(_params);
75    }
76
77    /**
78     * Translate a PCI bus address to a memory address for DMA.
79     * @todo Andrew says this needs to be fixed. What's wrong with it?
80     * @param busAddr PCI address to translate.
81     * @return memory system address
82     */
83    Addr translatePciToDma(Addr busAddr);
84
85    Addr calcConfigAddr(int bus, int dev, int func);
86    Addr calcIOAddr(Addr addr);
87    Addr calcMemAddr(Addr addr);
88
89    Tick read(PacketPtr pkt) override;
90    Tick write(PacketPtr pkt) override;
91
92    void serialize(CheckpointOut &cp) const override;
93    void unserialize(CheckpointIn &cp) override;
94};
95
96#endif // __TSUNAMI_PCHIP_HH__
97