Re: [PATCH v2 04/11] MIPS: BCM63XX: introduce bcm_readll & bcm_writell.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello.

On 04.11.2011 20:09, Maxime Bizon wrote:

Needed for upcoming 6368 CPU support.

Signed-off-by: Maxime Bizon<mbizon@xxxxxxxxxx>
---
  arch/mips/include/asm/mach-bcm63xx/bcm63xx_io.h |    2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_io.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_io.h
index 91180fa..8bf4a67 100644
--- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_io.h
+++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_io.h
@@ -49,9 +49,11 @@
  #define bcm_readb(a)	(*(volatile unsigned char *)	BCM_REGS_VA(a))
  #define bcm_readw(a)	(*(volatile unsigned short *)	BCM_REGS_VA(a))
  #define bcm_readl(a)	(*(volatile unsigned int *)	BCM_REGS_VA(a))
+#define bcm_readll(a)	(*(volatile u64 *)		BCM_REGS_VA(a))
  #define bcm_writeb(v, a) (*(volatile unsigned char *) BCM_REGS_VA((a)) = (v))
  #define bcm_writew(v, a) (*(volatile unsigned short *) BCM_REGS_VA((a)) = (v))
  #define bcm_writel(v, a) (*(volatile unsigned int *) BCM_REGS_VA((a)) = (v))
+#define bcm_writell(v, a) (*(volatile u64 *) BCM_REGS_VA((a)) = (v))

   64-bit accessors are generally called readq()/writeq().

WBR, Sergei




[Index of Archives]     [Linux MIPS Home]     [LKML Archive]     [Linux ARM Kernel]     [Linux ARM]     [Linux]     [Git]     [Yosemite News]     [Linux SCSI]     [Linux Hams]

  Powered by Linux