diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-03-08 14:20:15 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-03-08 14:20:15 +0000 |
commit | 871b0d6feda6b8b975def158527d2d755fe09549 (patch) | |
tree | 226764a4cfc1530e90b2ca82fcd2d2c30ae054e4 /target/linux | |
parent | 1bcf5d0de611bb8cbacdc6c6c474f3a336406cb1 (diff) | |
download | upstream-871b0d6feda6b8b975def158527d2d755fe09549.tar.gz upstream-871b0d6feda6b8b975def158527d2d755fe09549.tar.bz2 upstream-871b0d6feda6b8b975def158527d2d755fe09549.zip |
fix SPI accessors
SVN-Revision: 14792
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h b/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h index af98611152..5331c25f7b 100644 --- a/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h +++ b/target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx/bcm63xx_io.h @@ -65,12 +65,6 @@ bcm63xx_regset_address(s) + (o)) #define bcm_rset_writel(s,v,o) bcm_writel((v), \ bcm63xx_regset_address(s) + (o)) -#define bcm_reg_spi_readb(s,o) bcm_readb(bcm63xx_spireg(s) + (o)) -#define bcm_reg_spi_readw(s,o) bcm_readw(bcm63xx_spireg(s) + (o)) -#define bcm_reg_spi_writeb(s,v,o) bcm_writeb((v), \ - bcm63xx_spireg(s) + (o)) -#define bcm_reg_spi_writew(s,v,o) bcm_writew((v), \ - bcm63xx_spireg(s) + (o)) /* * helpers for frequently used register sets @@ -95,9 +89,19 @@ #define bcm_memc_writel(v,o) bcm_rset_writel(RSET_MEMC, (v), (o)) #define bcm_ddr_readl(o) bcm_rset_readl(RSET_DDR, (o)) #define bcm_ddr_writel(v,o) bcm_rset_writel(RSET_DDR, (v), (o)) -#define bcm_spi_readb(o) bcm_reg_spi_readb(RSET_SPI, (o)) -#define bcm_spi_readw(o) bcm_reg_spi_readw(RSET_SPI, (o)) -#define bcm_spi_writeb(v,o) bcm_reg_spi_writeb(RSET_SPI, (v), (o)) -#define bcm_spi_writew(v,o) bcm_reg_spi_writew(RSET_SPI, (v), (o)) + +/* + * helpers for the SPI register sets + */ +#define bcm_spi_readb(o) bcm_readb(bcm63xx_regset_address(RSET_SPI) + \ + bcm63xx_spireg(o)) +#define bcm_spi_readw(o) bcm_readw(bcm63xx_regset_address(RSET_SPI) + \ + bcm63xx_spireg(o)) +#define bcm_spi_writeb(v,o) bcm_writeb((v), \ + bcm63xx_regset_address(RSET_SPI) + \ + bcm63xx_spireg(o)) +#define bcm_spi_writew(v,o) bcm_writew((v), \ + bcm63xx_regset_address(RSET_SPI) + \ + bcm63xx_spireg(o)) #endif /* ! BCM63XX_IO_H_ */ |