aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorLennert Buytenhek <buytenh@wantstofly.org>2006-09-18 18:21:38 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-09-25 05:25:45 -0400
commit38ce73ebd74a9a1738b73619557f2397c59ba628 (patch)
tree02c812c665d0bb9c6872f81ad64328306fa3157f /arch
parent0b29de4a6ac0936f56b974a3c19bd9c24ac5b5d7 (diff)
[ARM] 3825/1: iop3xx: use cp6 enable/disable macros
Add CP6 enable/disable sequences to the timekeeping code and the IRQ code. As a result, we can't depend on CP6 access being enabled when we enter get_irqnr_and_base anymore, so switch the latter over to using memory-mapped accesses for now. Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-iop32x/irq.c23
-rw-r--r--arch/arm/mach-iop33x/irq.c27
-rw-r--r--arch/arm/plat-iop/time.c4
3 files changed, 18 insertions, 36 deletions
diff --git a/arch/arm/mach-iop32x/irq.c b/arch/arm/mach-iop32x/irq.c
index 76f2d561dbc1..cdd6943ce768 100644
--- a/arch/arm/mach-iop32x/irq.c
+++ b/arch/arm/mach-iop32x/irq.c
@@ -27,12 +27,16 @@ static u32 iop321_mask /* = 0 */;
27 27
28static inline void intctl_write(u32 val) 28static inline void intctl_write(u32 val)
29{ 29{
30 iop3xx_cp6_enable();
30 asm volatile("mcr p6,0,%0,c0,c0,0"::"r" (val)); 31 asm volatile("mcr p6,0,%0,c0,c0,0"::"r" (val));
32 iop3xx_cp6_disable();
31} 33}
32 34
33static inline void intstr_write(u32 val) 35static inline void intstr_write(u32 val)
34{ 36{
37 iop3xx_cp6_enable();
35 asm volatile("mcr p6,0,%0,c4,c0,0"::"r" (val)); 38 asm volatile("mcr p6,0,%0,c4,c0,0"::"r" (val));
39 iop3xx_cp6_disable();
36} 40}
37 41
38static void 42static void
@@ -61,24 +65,7 @@ struct irq_chip ext_chip = {
61 65
62void __init iop321_init_irq(void) 66void __init iop321_init_irq(void)
63{ 67{
64 unsigned int i, tmp; 68 unsigned int i;
65
66 /* Enable access to coprocessor 6 for dealing with IRQs.
67 * From RMK:
68 * Basically, the Intel documentation here is poor. It appears that
69 * you need to set the bit to be able to access the coprocessor from
70 * SVC mode. Whether that allows access from user space or not is
71 * unclear.
72 */
73 asm volatile (
74 "mrc p15, 0, %0, c15, c1, 0\n\t"
75 "orr %0, %0, %1\n\t"
76 "mcr p15, 0, %0, c15, c1, 0\n\t"
77 /* The action is delayed, so we have to do this: */
78 "mrc p15, 0, %0, c15, c1, 0\n\t"
79 "mov %0, %0\n\t"
80 "sub pc, pc, #4"
81 : "=r" (tmp) : "i" (1 << 6) );
82 69
83 intctl_write(0); // disable all interrupts 70 intctl_write(0); // disable all interrupts
84 intstr_write(0); // treat all as IRQ 71 intstr_write(0); // treat all as IRQ
diff --git a/arch/arm/mach-iop33x/irq.c b/arch/arm/mach-iop33x/irq.c
index bcffc33a5be8..d667439c8573 100644
--- a/arch/arm/mach-iop33x/irq.c
+++ b/arch/arm/mach-iop33x/irq.c
@@ -28,25 +28,33 @@ static u32 iop331_mask1 = 0;
28static inline void intctl_write0(u32 val) 28static inline void intctl_write0(u32 val)
29{ 29{
30 // INTCTL0 30 // INTCTL0
31 iop3xx_cp6_enable();
31 asm volatile("mcr p6,0,%0,c0,c0,0"::"r" (val)); 32 asm volatile("mcr p6,0,%0,c0,c0,0"::"r" (val));
33 iop3xx_cp6_disable();
32} 34}
33 35
34static inline void intctl_write1(u32 val) 36static inline void intctl_write1(u32 val)
35{ 37{
36 // INTCTL1 38 // INTCTL1
39 iop3xx_cp6_enable();
37 asm volatile("mcr p6,0,%0,c1,c0,0"::"r" (val)); 40 asm volatile("mcr p6,0,%0,c1,c0,0"::"r" (val));
41 iop3xx_cp6_disable();
38} 42}
39 43
40static inline void intstr_write0(u32 val) 44static inline void intstr_write0(u32 val)
41{ 45{
42 // INTSTR0 46 // INTSTR0
47 iop3xx_cp6_enable();
43 asm volatile("mcr p6,0,%0,c2,c0,0"::"r" (val)); 48 asm volatile("mcr p6,0,%0,c2,c0,0"::"r" (val));
49 iop3xx_cp6_disable();
44} 50}
45 51
46static inline void intstr_write1(u32 val) 52static inline void intstr_write1(u32 val)
47{ 53{
48 // INTSTR1 54 // INTSTR1
55 iop3xx_cp6_enable();
49 asm volatile("mcr p6,0,%0,c3,c0,0"::"r" (val)); 56 asm volatile("mcr p6,0,%0,c3,c0,0"::"r" (val));
57 iop3xx_cp6_disable();
50} 58}
51 59
52static void 60static void
@@ -93,24 +101,7 @@ struct irq_chip iop331_irqchip2 = {
93 101
94void __init iop331_init_irq(void) 102void __init iop331_init_irq(void)
95{ 103{
96 unsigned int i, tmp; 104 unsigned int i;
97
98 /* Enable access to coprocessor 6 for dealing with IRQs.
99 * From RMK:
100 * Basically, the Intel documentation here is poor. It appears that
101 * you need to set the bit to be able to access the coprocessor from
102 * SVC mode. Whether that allows access from user space or not is
103 * unclear.
104 */
105 asm volatile (
106 "mrc p15, 0, %0, c15, c1, 0\n\t"
107 "orr %0, %0, %1\n\t"
108 "mcr p15, 0, %0, c15, c1, 0\n\t"
109 /* The action is delayed, so we have to do this: */
110 "mrc p15, 0, %0, c15, c1, 0\n\t"
111 "mov %0, %0\n\t"
112 "sub pc, pc, #4"
113 : "=r" (tmp) : "i" (1 << 6) );
114 105
115 intctl_write0(0); // disable all interrupts 106 intctl_write0(0); // disable all interrupts
116 intctl_write1(0); 107 intctl_write1(0);
diff --git a/arch/arm/plat-iop/time.c b/arch/arm/plat-iop/time.c
index 5730a0d7ed67..bed20f3669f4 100644
--- a/arch/arm/plat-iop/time.c
+++ b/arch/arm/plat-iop/time.c
@@ -51,7 +51,9 @@ iop3xx_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
51{ 51{
52 write_seqlock(&xtime_lock); 52 write_seqlock(&xtime_lock);
53 53
54 iop3xx_cp6_enable();
54 asm volatile("mcr p6, 0, %0, c6, c1, 0" : : "r" (1)); 55 asm volatile("mcr p6, 0, %0, c6, c1, 0" : : "r" (1));
56 iop3xx_cp6_disable();
55 57
56 while ((signed long)(next_jiffy_time - *IOP3XX_TU_TCR1) 58 while ((signed long)(next_jiffy_time - *IOP3XX_TU_TCR1)
57 >= ticks_per_jiffy) { 59 >= ticks_per_jiffy) {
@@ -85,10 +87,12 @@ void __init iop3xx_init_time(unsigned long tick_rate)
85 * We use timer 0 for our timer interrupt, and timer 1 as 87 * We use timer 0 for our timer interrupt, and timer 1 as
86 * monotonic counter for tracking missed jiffies. 88 * monotonic counter for tracking missed jiffies.
87 */ 89 */
90 iop3xx_cp6_enable();
88 asm volatile("mcr p6, 0, %0, c4, c1, 0" : : "r" (ticks_per_jiffy - 1)); 91 asm volatile("mcr p6, 0, %0, c4, c1, 0" : : "r" (ticks_per_jiffy - 1));
89 asm volatile("mcr p6, 0, %0, c0, c1, 0" : : "r" (timer_ctl)); 92 asm volatile("mcr p6, 0, %0, c0, c1, 0" : : "r" (timer_ctl));
90 asm volatile("mcr p6, 0, %0, c5, c1, 0" : : "r" (0xffffffff)); 93 asm volatile("mcr p6, 0, %0, c5, c1, 0" : : "r" (0xffffffff));
91 asm volatile("mcr p6, 0, %0, c1, c1, 0" : : "r" (timer_ctl)); 94 asm volatile("mcr p6, 0, %0, c1, c1, 0" : : "r" (timer_ctl));
95 iop3xx_cp6_disable();
92 96
93 setup_irq(IRQ_IOP3XX_TIMER0, &iop3xx_timer_irq); 97 setup_irq(IRQ_IOP3XX_TIMER0, &iop3xx_timer_irq);
94} 98}