Commit 111c7751 authored by Russell King's avatar Russell King

ARM: omap1: convert to using readl/writel instead of volatile struct

Tested-by: default avatarTony Lindgren <tony@atomide.com>
Cc: linux-omap@vger.kernel.org
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 29d668d2
...@@ -68,49 +68,50 @@ typedef struct { ...@@ -68,49 +68,50 @@ typedef struct {
} omap_mpu_timer_regs_t; } omap_mpu_timer_regs_t;
#define omap_mpu_timer_base(n) \ #define omap_mpu_timer_base(n) \
((volatile omap_mpu_timer_regs_t*)OMAP1_IO_ADDRESS(OMAP_MPU_TIMER_BASE + \ ((omap_mpu_timer_regs_t __iomem *)OMAP1_IO_ADDRESS(OMAP_MPU_TIMER_BASE + \
(n)*OMAP_MPU_TIMER_OFFSET)) (n)*OMAP_MPU_TIMER_OFFSET))
static inline unsigned long notrace omap_mpu_timer_read(int nr) static inline unsigned long notrace omap_mpu_timer_read(int nr)
{ {
volatile omap_mpu_timer_regs_t* timer = omap_mpu_timer_base(nr); omap_mpu_timer_regs_t __iomem *timer = omap_mpu_timer_base(nr);
return timer->read_tim; return readl(&timer->read_tim);
} }
static inline void omap_mpu_set_autoreset(int nr) static inline void omap_mpu_set_autoreset(int nr)
{ {
volatile omap_mpu_timer_regs_t* timer = omap_mpu_timer_base(nr); omap_mpu_timer_regs_t __iomem *timer = omap_mpu_timer_base(nr);
timer->cntl = timer->cntl | MPU_TIMER_AR; writel(readl(&timer->cntl) | MPU_TIMER_AR, &timer->cntl);
} }
static inline void omap_mpu_remove_autoreset(int nr) static inline void omap_mpu_remove_autoreset(int nr)
{ {
volatile omap_mpu_timer_regs_t* timer = omap_mpu_timer_base(nr); omap_mpu_timer_regs_t __iomem *timer = omap_mpu_timer_base(nr);
timer->cntl = timer->cntl & ~MPU_TIMER_AR; writel(readl(&timer->cntl) & ~MPU_TIMER_AR, &timer->cntl);
} }
static inline void omap_mpu_timer_start(int nr, unsigned long load_val, static inline void omap_mpu_timer_start(int nr, unsigned long load_val,
int autoreset) int autoreset)
{ {
volatile omap_mpu_timer_regs_t* timer = omap_mpu_timer_base(nr); omap_mpu_timer_regs_t __iomem *timer = omap_mpu_timer_base(nr);
unsigned int timerflags = (MPU_TIMER_CLOCK_ENABLE | MPU_TIMER_ST); unsigned int timerflags = MPU_TIMER_CLOCK_ENABLE | MPU_TIMER_ST;
if (autoreset) timerflags |= MPU_TIMER_AR; if (autoreset)
timerflags |= MPU_TIMER_AR;
timer->cntl = MPU_TIMER_CLOCK_ENABLE; writel(MPU_TIMER_CLOCK_ENABLE, &timer->cntl);
udelay(1); udelay(1);
timer->load_tim = load_val; writel(load_val, &timer->load_tim);
udelay(1); udelay(1);
timer->cntl = timerflags; writel(timerflags, &timer->cntl);
} }
static inline void omap_mpu_timer_stop(int nr) static inline void omap_mpu_timer_stop(int nr)
{ {
volatile omap_mpu_timer_regs_t* timer = omap_mpu_timer_base(nr); omap_mpu_timer_regs_t __iomem *timer = omap_mpu_timer_base(nr);
timer->cntl &= ~MPU_TIMER_ST; writel(readl(&timer->cntl) & ~MPU_TIMER_ST, &timer->cntl);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment