tsunami_io.hh revision 3943:68e673d2db04
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 Space mapping including RTC/timer interrupts
35 */
36
37#ifndef __DEV_TSUNAMI_IO_HH__
38#define __DEV_TSUNAMI_IO_HH__
39
40#include "dev/io_device.hh"
41#include "base/range.hh"
42#include "dev/alpha/tsunami.hh"
43#include "sim/eventq.hh"
44
45/**
46 * Tsunami I/O device is a catch all for all the south bridge stuff we care
47 * to implement.
48 */
49class TsunamiIO : public BasicPioDevice
50{
51  private:
52    struct tm tm;
53
54  protected:
55    /** Real-Time Clock (MC146818) */
56    class RTC
57    {
58      private:
59        /** Event for RTC periodic interrupt */
60        struct RTCEvent : public Event
61        {
62            /** A pointer back to tsunami to create interrupt the processor. */
63            Tsunami* tsunami;
64            Tick interval;
65
66            RTCEvent(Tsunami* t, Tick i);
67
68            /** Schedule the RTC periodic interrupt */
69            void scheduleIntr();
70
71            /** Event process to occur at interrupt*/
72            virtual void process();
73
74            /** Event description */
75            virtual const char *description();
76        };
77
78      private:
79        std::string _name;
80        const std::string &name() const { return _name; }
81
82        /** RTC periodic interrupt event */
83        RTCEvent event;
84
85        /** Current RTC register address/index */
86        int addr;
87
88        /** should the year be interpreted as BCD? */
89        bool year_is_bcd;
90
91        /** Data for real-time clock function */
92        union {
93            uint8_t clock_data[10];
94
95            struct {
96                uint8_t sec;
97                uint8_t sec_alrm;
98                uint8_t min;
99                uint8_t min_alrm;
100                uint8_t hour;
101                uint8_t hour_alrm;
102                uint8_t wday;
103                uint8_t mday;
104                uint8_t mon;
105                uint8_t year;
106            };
107        };
108
109        /** RTC status register A */
110        uint8_t stat_regA;
111
112        /** RTC status register B */
113        uint8_t stat_regB;
114
115      public:
116        RTC(const std::string &name, Tsunami* tsunami,
117            const std::vector<int> &t, bool bcd, Tick i);
118
119        /** RTC address port: write address of RTC RAM data to access */
120        void writeAddr(const uint8_t data);
121
122        /** RTC write data */
123        void writeData(const uint8_t data);
124
125        /** RTC read data */
126        uint8_t readData();
127
128        /**
129          * Serialize this object to the given output stream.
130          * @param base The base name of the counter object.
131          * @param os The stream to serialize to.
132          */
133        void serialize(const std::string &base, std::ostream &os);
134
135        /**
136         * Reconstruct the state of this object from a checkpoint.
137          * @param base The base name of the counter object.
138         * @param cp The checkpoint use.
139         * @param section The section name of this object
140         */
141        void unserialize(const std::string &base, Checkpoint *cp,
142                         const std::string &section);
143    };
144
145    /** Programmable Interval Timer (Intel 8254) */
146    class PITimer
147    {
148        /** Counter element for PIT */
149        class Counter
150        {
151            /** Event for counter interrupt */
152            class CounterEvent : public Event
153            {
154              private:
155                /** Pointer back to Counter */
156                Counter* counter;
157                Tick interval;
158
159              public:
160                CounterEvent(Counter*);
161
162                /** Event process */
163                virtual void process();
164
165                /** Event description */
166                virtual const char *description();
167
168                friend class Counter;
169            };
170
171          private:
172            std::string _name;
173            const std::string &name() const { return _name; }
174
175            CounterEvent event;
176
177            /** Current count value */
178            uint16_t count;
179
180            /** Latched count */
181            uint16_t latched_count;
182
183            /** Interrupt period */
184            uint16_t period;
185
186            /** Current mode of operation */
187            uint8_t mode;
188
189            /** Output goes high when the counter reaches zero */
190            bool output_high;
191
192            /** State of the count latch */
193            bool latch_on;
194
195            /** Set of values for read_byte and write_byte */
196            enum {LSB, MSB};
197
198            /** Determine which byte of a 16-bit count value to read/write */
199            uint8_t read_byte, write_byte;
200
201          public:
202            Counter(const std::string &name);
203
204            /** Latch the current count (if one is not already latched) */
205            void latchCount();
206
207            /** Set the read/write mode */
208            void setRW(int rw_val);
209
210            /** Set operational mode */
211            void setMode(int mode_val);
212
213            /** Set count encoding */
214            void setBCD(int bcd_val);
215
216            /** Read a count byte */
217            uint8_t read();
218
219            /** Write a count byte */
220            void write(const uint8_t data);
221
222            /** Is the output high? */
223            bool outputHigh();
224
225            /**
226             * Serialize this object to the given output stream.
227             * @param base The base name of the counter object.
228             * @param os   The stream to serialize to.
229             */
230            void serialize(const std::string &base, std::ostream &os);
231
232            /**
233             * Reconstruct the state of this object from a checkpoint.
234             * @param base The base name of the counter object.
235             * @param cp The checkpoint use.
236             * @param section The section name of this object
237             */
238            void unserialize(const std::string &base, Checkpoint *cp,
239                             const std::string &section);
240        };
241
242      private:
243        std::string _name;
244        const std::string &name() const { return _name; }
245
246        /** PIT has three seperate counters */
247        Counter *counter[3];
248
249      public:
250        /** Public way to access individual counters (avoid array accesses) */
251        Counter counter0;
252        Counter counter1;
253        Counter counter2;
254
255        PITimer(const std::string &name);
256
257        /** Write control word */
258        void writeControl(const uint8_t data);
259
260        /**
261         * Serialize this object to the given output stream.
262         * @param base The base name of the counter object.
263         * @param os The stream to serialize to.
264         */
265        void serialize(const std::string &base, std::ostream &os);
266
267        /**
268         * Reconstruct the state of this object from a checkpoint.
269         * @param base The base name of the counter object.
270         * @param cp The checkpoint use.
271         * @param section The section name of this object
272         */
273        void unserialize(const std::string &base, Checkpoint *cp,
274                         const std::string &section);
275    };
276
277    /** Mask of the PIC1 */
278    uint8_t mask1;
279
280    /** Mask of the PIC2 */
281    uint8_t mask2;
282
283    /** Mode of PIC1. Not used for anything */
284    uint8_t mode1;
285
286    /** Mode of PIC2. Not used for anything */
287    uint8_t mode2;
288
289    /** Raw PIC interrupt register before masking */
290    uint8_t picr; //Raw PIC interrput register
291
292    /** Is the pic interrupting right now or not. */
293    bool picInterrupting;
294
295    /** A pointer to the Tsunami device which be belong to */
296    Tsunami *tsunami;
297
298    /** Intel 8253 Periodic Interval Timer */
299    PITimer pitimer;
300
301    RTC rtc;
302
303    /** The interval is set via two writes to the PIT.
304     * This variable contains a flag as to how many writes have happened, and
305     * the time so far.
306     */
307    uint16_t timerData;
308
309  public:
310    /**
311     * Return the freqency of the RTC
312     * @return interrupt rate of the RTC
313     */
314    Tick frequency() const;
315
316    struct Params : public BasicPioDevice::Params
317    {
318        Tick frequency;
319        Tsunami *tsunami;
320        std::vector<int> init_time;
321        bool year_is_bcd;
322    };
323
324  protected:
325    const Params *params() const { return (const Params*)_params; }
326
327  public:
328    /**
329     * Initialize all the data for devices supported by Tsunami I/O.
330     * @param p pointer to Params struct
331     */
332    TsunamiIO(Params *p);
333
334    virtual Tick read(PacketPtr pkt);
335    virtual Tick write(PacketPtr pkt);
336
337    /**
338     * Post an PIC interrupt to the CPU via the CChip
339     * @param bitvector interrupt to post.
340     */
341    void postPIC(uint8_t bitvector);
342
343    /**
344     * Clear a posted interrupt
345     * @param bitvector interrupt to clear
346     */
347    void clearPIC(uint8_t bitvector);
348
349    /**
350     * Serialize this object to the given output stream.
351     * @param os The stream to serialize to.
352     */
353    virtual void serialize(std::ostream &os);
354
355    /**
356     * Reconstruct the state of this object from a checkpoint.
357     * @param cp The checkpoint use.
358     * @param section The section name of this object
359     */
360    virtual void unserialize(Checkpoint *cp, const std::string &section);
361
362};
363
364#endif // __DEV_TSUNAMI_IO_HH__
365