diff options
author | Wolfgang Denk <wd@denx.de> | 2008-10-12 23:25:50 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-10-12 23:25:50 +0200 |
commit | 1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe (patch) | |
tree | e649f78027dcb8432d90f99aed284d711b36582d /include/asm-ppc | |
parent | 33af3e6656e84660d397b5dd95abab2dccc36f83 (diff) | |
parent | 72c55878ecb1f0fdc8bc13516e5cb18fbae505e7 (diff) | |
download | u-boot-imx-1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe.zip u-boot-imx-1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe.tar.gz u-boot-imx-1e841086df55d6b8f2efcf0e5dfb5fc52a0c7bbe.tar.bz2 |
Merge branch 'master' of ssh://10.10.0.7/home/wd/git/u-boot/master
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/immap_85xx.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index 559d6ea..50c9dde 100644 --- a/include/asm-ppc/immap_85xx.h +++ b/include/asm-ppc/immap_85xx.h @@ -1552,6 +1552,13 @@ typedef struct par_io { */ typedef struct ccsr_gur { uint porpllsr; /* 0xe0000 - POR PLL ratio status register */ +#ifdef CONFIG_MPC8536 +#define MPC85xx_PORPLLSR_DDR_RATIO 0x3e000000 +#define MPC85xx_PORPLLSR_DDR_RATIO_SHIFT 25 +#else +#define MPC85xx_PORPLLSR_DDR_RATIO 0x00003e00 +#define MPC85xx_PORPLLSR_DDR_RATIO_SHIFT 9 +#endif uint porbmsr; /* 0xe0004 - POR boot mode status register */ #define MPC85xx_PORBMSR_HA 0x00070000 uint porimpscr; /* 0xe0008 - POR I/O impedance status and control register */ |