Changeset d36c457 in rtems
- Timestamp:
- 08/21/03 17:09:26 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 46d6d648
- Parents:
- fe235a1
- Location:
- cpukit/score/cpu/powerpc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/cpu/powerpc/ChangeLog
rfe235a1 rd36c457 1 2003-08-21 Till Straumann <strauman@slac.stanford.edu> 2 3 PR 457/bsps 4 * rtems/powerpc/registers.h: Add a few definitions for the PowerPC 5 thermal assistance unit. 6 1 7 2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
cpukit/score/cpu/powerpc/rtems/powerpc/registers.h
rfe235a1 rd36c457 149 149 #define THRM2 1021 150 150 #define THRM3 1022 151 #define THRM1_TIN 0x1 152 #define THRM1_TIV 0x2 153 #define THRM1_THRES (0x7f<<2) 154 #define THRM1_TID (1<<29) 155 #define THRM1_TIE (1<<30) 156 #define THRM1_V (1<<31) 157 #define THRM3_E (1<<31) 151 #define THRM1_TIN (1<<(31-0)) 152 #define THRM1_TIV (1<<(31-1)) 153 #define THRM1_THRES (0x7f<<(31-8)) 154 #define THRM1_TID (1<<(31-29)) 155 #define THRM1_TIE (1<<(31-30)) 156 #define THRM1_V (1<<(31-31)) 157 #define THRM3_SITV (0x1fff << (31-30)) 158 #define THRM3_E (1<<(31-31)) 158 159 159 160 /* Segment Registers */
Note: See TracChangeset
for help on using the changeset viewer.