tsunami_cchip.hh revision 1290
1/*
2 * Copyright (c) 2004 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
29/* @file
30 * Emulation of the Tsunami CChip CSRs
31 */
32
33#ifndef __TSUNAMI_CCHIP_HH__
34#define __TSUNAMI_CCHIP_HH__
35
36#include "dev/tsunami.hh"
37#include "base/range.hh"
38#include "dev/io_device.hh"
39
40/*
41 * Tsunami CChip
42 */
43class TsunamiCChip : public PioDevice
44{
45  private:
46    /** The base address of this device */
47    Addr addr;
48
49    /** The size of mappad from the above address */
50    static const Addr size = 0xfffffff;
51
52  protected:
53    /**
54     * pointer to the tsunami object.
55     * This is our access to all the other tsunami
56     * devices.
57     */
58    Tsunami *tsunami;
59
60    /**
61     * The dims are device interrupt mask registers.
62     * One exists for each CPU, the DRIR X DIM = DIR
63     */
64    uint64_t dim[Tsunami::Max_CPUs];
65
66    /**
67     * The dirs are device interrupt registers.
68     * One exists for each CPU, the DRIR X DIM = DIR
69     */
70    uint64_t dir[Tsunami::Max_CPUs];
71
72    /**
73     * This register contains bits for each PCI interrupt
74     * that can occur.
75     */
76    uint64_t drir;
77
78    /** Indicator of which CPUs have an IPI interrupt */
79    uint64_t ipint;
80
81    /** Indicator of which CPUs have an RTC interrupt */
82    uint64_t itint;
83
84  public:
85    /**
86     * Initialize the Tsunami CChip by setting all of the
87     * device register to 0.
88     * @param name name of this device.
89     * @param t pointer back to the Tsunami object that we belong to.
90     * @param a address we are mapped at.
91     * @param mmu pointer to the memory controller that sends us events.
92     * @param hier object to store parameters universal the device hierarchy
93     * @param bus The bus that this device is attached to
94     */
95    TsunamiCChip(const std::string &name, Tsunami *t, Addr a,
96                 MemoryController *mmu, HierParams *hier, Bus *bus,
97                 Tick pio_latency);
98
99    /**
100      * Process a read to the CChip.
101      * @param req Contains the address to read from.
102      * @param data A pointer to write the read data to.
103      * @return The fault condition of the access.
104      */
105    virtual Fault read(MemReqPtr &req, uint8_t *data);
106
107
108    /**
109      * Process a write to the CChip.
110      * @param req Contains the address to write to.
111      * @param data The data to write.
112      * @return The fault condition of the access.
113      */
114    virtual Fault write(MemReqPtr &req, const uint8_t *data);
115
116    /**
117     * post an RTC interrupt to the CPU
118     */
119    void postRTC();
120
121    /**
122     * post an interrupt to the CPU.
123     * @param interrupt the interrupt number to post (0-64)
124     */
125    void postDRIR(uint32_t interrupt);
126
127    /**
128     * clear an interrupt previously posted to the CPU.
129     * @param interrupt the interrupt number to post (0-64)
130     */
131    void clearDRIR(uint32_t interrupt);
132
133    /**
134     * post an ipi interrupt  to the CPU.
135     * @param ipintr the cpu number to clear(bitvector)
136     */
137    void clearIPI(uint64_t ipintr);
138
139    /**
140     * clear a timer interrupt previously posted to the CPU.
141     * @param interrupt the cpu number to clear(bitvector)
142     */
143    void clearITI(uint64_t itintr);
144
145    /**
146     * request an interrupt be posted to the CPU.
147     * @param ipreq the cpu number to interrupt(bitvector)
148     */
149    void reqIPI(uint64_t ipreq);
150
151
152    /**
153     * Serialize this object to the given output stream.
154     * @param os The stream to serialize to.
155     */
156    virtual void serialize(std::ostream &os);
157
158    /**
159     * Reconstruct the state of this object from a checkpoint.
160     * @param cp The checkpoint use.
161     * @param section The section name of this object
162     */
163    virtual void unserialize(Checkpoint *cp, const std::string &section);
164
165    /**
166     * Return how long this access will take.
167     * @param req the memory request to calcuate
168     * @return Tick when the request is done
169     */
170    Tick cacheAccess(MemReqPtr &req);
171};
172
173#endif // __TSUNAMI_CCHIP_HH__
174