diff options
| author | Timur Tabi <timur@freescale.com> | 2010-05-20 12:45:39 -0500 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2010-05-30 11:10:32 -0500 | 
| commit | 6e37a044076896ba88b0d6316fadd492032c5193 (patch) | |
| tree | 9be83febd1b6218f35a68159ef1154b358ca00d9 | |
| parent | bd7bb6f8a3278caff0ac6eeaf08b188b9bb05dfc (diff) | |
| download | olio-uboot-2014.01-6e37a044076896ba88b0d6316fadd492032c5193.tar.xz olio-uboot-2014.01-6e37a044076896ba88b0d6316fadd492032c5193.zip | |
fsl/85xx: add clkdvdr and pmuxcr2 to global utilities structure definition
Add the 'clkdvdr' and 'pmuxcr2' registers to the 85xx definition of
struct ccsr_gur.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
| -rw-r--r-- | arch/powerpc/include/asm/immap_85xx.h | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/arch/powerpc/include/asm/immap_85xx.h b/arch/powerpc/include/asm/immap_85xx.h index e7954e657..5b205d1c2 100644 --- a/arch/powerpc/include/asm/immap_85xx.h +++ b/arch/powerpc/include/asm/immap_85xx.h @@ -1912,7 +1912,8 @@ typedef struct ccsr_gur {  #define MPC85xx_PMUXCR_SD_DATA		0x80000000  #define MPC85xx_PMUXCR_SDHC_CD		0x40000000  #define MPC85xx_PMUXCR_SDHC_WP		0x20000000 -	u8	res6[12]; +	u32	pmuxcr2;	/* Alt. function signal multiplex control 2 */ +	u8	res6[8];  	u32	devdisr;	/* Device disable control */  #define MPC85xx_DEVDISR_PCI1		0x80000000  #define MPC85xx_DEVDISR_PCI2		0x40000000 @@ -1949,10 +1950,12 @@ typedef struct ccsr_gur {  #if defined(CONFIG_MPC8568)||defined(CONFIG_MPC8569)  	u8	res10b[76];  	par_io_t qe_par_io[7]; -	u8	res10c[3136]; +	u8	res10c[1600];  #else -	u8	res10b[3404]; +	u8	res10b[1868];  #endif +	u32	clkdvdr;	/* Clock Divide register */ +	u8	res10d[1532];  	u32	clkocr;		/* Clock out select */  	u8	res11[12];  	u32	ddrdllcr;	/* DDR DLL control */ |