timer_cpulocal.hh (8512:a508c2d92d63) timer_cpulocal.hh (9193:e2c5da9e28cc)
1/*
2 * Copyright (c) 2010-2011 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

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

72 WatchdogDisableReg = 0x34,
73 Size = 0x38
74 };
75
76 BitUnion32(TimerCtrl)
77 Bitfield<0> enable;
78 Bitfield<1> autoReload;
79 Bitfield<2> intEnable;
1/*
2 * Copyright (c) 2010-2011 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

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

72 WatchdogDisableReg = 0x34,
73 Size = 0x38
74 };
75
76 BitUnion32(TimerCtrl)
77 Bitfield<0> enable;
78 Bitfield<1> autoReload;
79 Bitfield<2> intEnable;
80 Bitfield<3,7> reserved;
81 Bitfield<8,15> prescalar;
80 Bitfield<7,3> reserved;
81 Bitfield<15,8> prescalar;
82 EndBitUnion(TimerCtrl)
83
84 BitUnion32(WatchdogCtrl)
85 Bitfield<0> enable;
86 Bitfield<1> autoReload;
87 Bitfield<2> intEnable;
88 Bitfield<3> watchdogMode;
82 EndBitUnion(TimerCtrl)
83
84 BitUnion32(WatchdogCtrl)
85 Bitfield<0> enable;
86 Bitfield<1> autoReload;
87 Bitfield<2> intEnable;
88 Bitfield<3> watchdogMode;
89 Bitfield<4,7> reserved;
90 Bitfield<8,15> prescalar;
89 Bitfield<7,4> reserved;
90 Bitfield<15,8> prescalar;
91 EndBitUnion(WatchdogCtrl)
92
93 protected:
94 std::string _name;
95
96 /** Pointer to parent class */
97 CpuLocalTimer *parent;
98

--- 101 unchanged lines hidden ---
91 EndBitUnion(WatchdogCtrl)
92
93 protected:
94 std::string _name;
95
96 /** Pointer to parent class */
97 CpuLocalTimer *parent;
98

--- 101 unchanged lines hidden ---