diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-06-27 20:32:43 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-06-27 20:32:43 +0000 |
commit | ca5de76ed31cab9c83cfeaaa3452acdd2ae14157 (patch) | |
tree | 1cfb46ab86da8652451b16621d956d32bd71ae6d /target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_regs.h | |
parent | 5899460ebfd34caa757767cdcb1ac5264045f891 (diff) | |
download | mtk-20170518-ca5de76ed31cab9c83cfeaaa3452acdd2ae14157.zip mtk-20170518-ca5de76ed31cab9c83cfeaaa3452acdd2ae14157.tar.gz mtk-20170518-ca5de76ed31cab9c83cfeaaa3452acdd2ae14157.tar.bz2 |
more fixes for bcm6338, no need not to prevent reads from MPI registers now that we have it defined correctly
SVN-Revision: 16589
Diffstat (limited to 'target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_regs.h')
-rw-r--r-- | target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_regs.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_regs.h b/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_regs.h index 0b150db..7e215a5 100644 --- a/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_regs.h +++ b/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_regs.h @@ -15,12 +15,17 @@ /* Clock Control register */ #define PERF_CKCTL_REG 0x4 +#define CKCTL_6338_ADSLPHY_EN (1 << 0) +#define CKCTL_6338_MPI_EN (1 << 1) +#define CKCTL_6338_DRAM_EN (1 << 2) #define CKCTL_6338_ENET_EN (1 << 4) #define CKCTL_6338_USBS_EN (1 << 4) #define CKCTL_6338_SAR_EN (1 << 5) #define CKCTL_6338_SPI_EN (1 << 9) -#define CKCTL_6338_ALL_SAFE_EN (CKCTL_6338_ENET_EN | \ +#define CKCTL_6338_ALL_SAFE_EN (CKCTL_6338_ADSLPHY_EN | \ + CKCTL_6338_MPI_EN | \ + CKCTL_6338_ENET_EN | \ CKCTL_6338_SAR_EN | \ CKCTL_6338_SPI_EN) |