diff options
author | Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de> | 2007-03-28 17:54:22 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-04-21 20:51:05 +0100 |
commit | 940089e007e8ed33295ef408b39a53e5ad518ebd (patch) | |
tree | 96d5d26f1c1f8f3a9918412a9e4856a79c4b069d /include | |
parent | fee64d1b55af57d7dba41f554769db83d7a32fde (diff) | |
download | linux-940089e007e8ed33295ef408b39a53e5ad518ebd.tar.gz linux-940089e007e8ed33295ef408b39a53e5ad518ebd.tar.bz2 linux-940089e007e8ed33295ef408b39a53e5ad518ebd.zip |
[ARM] 4293/1: ns9xxx: Add bit fields FS and ND to the definition of
SYS_PLL register
Signed-off-by: Uwe Kleine-König <ukleinek@informatik.uni-freiburg.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-ns9xxx/regs-sys.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/asm-arm/arch-ns9xxx/regs-sys.h b/include/asm-arm/arch-ns9xxx/regs-sys.h index 8162a50bb273..a42546aeb92a 100644 --- a/include/asm-arm/arch-ns9xxx/regs-sys.h +++ b/include/asm-arm/arch-ns9xxx/regs-sys.h @@ -48,6 +48,12 @@ /* PLL Configuration register */ #define SYS_PLL __REG(0xa0900188) +/* PLL FS status */ +#define SYS_PLL_FS __REGBITS(24, 23) + +/* PLL ND status */ +#define SYS_PLL_ND __REGBITS(20, 16) + /* PLL Configuration register: PLL SW change */ #define SYS_PLL_SWC __REGBIT(15) #define SYS_PLL_SWC_NO __REGVAL(SYS_PLL_SWC, 0) |