timer_sp804.hh (9235:5aa4896ed55a) timer_sp804.hh (9421:b43a56850757)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 69 unchanged lines hidden (view full) ---

78
79 protected:
80 std::string _name;
81
82 /** Pointer to parent class */
83 Sp804 *parent;
84
85 /** Number of interrupt to cause/clear */
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 69 unchanged lines hidden (view full) ---

78
79 protected:
80 std::string _name;
81
82 /** Pointer to parent class */
83 Sp804 *parent;
84
85 /** Number of interrupt to cause/clear */
86 uint32_t intNum;
86 const uint32_t intNum;
87
88 /** Number of ticks in a clock input */
87
88 /** Number of ticks in a clock input */
89 Tick clock;
89 const Tick clock;
90
91 /** Control register as specified above */
92 CTRL control;
93
94 /** If timer has caused an interrupt. This is irrespective of
95 * interrupt enable */
96 bool rawInt;
97

--- 73 unchanged lines hidden ---
90
91 /** Control register as specified above */
92 CTRL control;
93
94 /** If timer has caused an interrupt. This is irrespective of
95 * interrupt enable */
96 bool rawInt;
97

--- 73 unchanged lines hidden ---