aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-09-02 04:17:41 -0400
committerDavid S. Miller <davem@davemloft.net>2008-09-08 18:40:45 -0400
commit7b1af32f52077402157f8bb8fc22d8da17606095 (patch)
tree892fea67b0775b1d87319b092e93e206e293a911 /arch
parent365b50f0f09c1a24f1a60e0c027f300ed423c192 (diff)
sparc32: Move sun4d show_leds() out of asm/obio.h
Put it, as well as cpu_leds[] array, into sun4d_irq.c Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r--arch/sparc/include/asm/obio.h11
-rw-r--r--arch/sparc/kernel/sun4d_irq.c1
-rw-r--r--arch/sparc/kernel/sun4d_smp.c11
3 files changed, 11 insertions, 12 deletions
diff --git a/arch/sparc/include/asm/obio.h b/arch/sparc/include/asm/obio.h
index 1a7544ceb574..4ade0c8a2c79 100644
--- a/arch/sparc/include/asm/obio.h
+++ b/arch/sparc/include/asm/obio.h
@@ -155,17 +155,6 @@ static inline void bw_set_ctrl(int cpu, unsigned ctrl)
155 "i" (ASI_M_CTL)); 155 "i" (ASI_M_CTL));
156} 156}
157 157
158extern unsigned char cpu_leds[32];
159
160static inline void show_leds(int cpuid)
161{
162 cpuid &= 0x1e;
163 __asm__ __volatile__ ("stba %0, [%1] %2" : :
164 "r" ((cpu_leds[cpuid] << 4) | cpu_leds[cpuid+1]),
165 "r" (ECSR_BASE(cpuid) | BB_LEDS),
166 "i" (ASI_M_CTL));
167}
168
169static inline unsigned cc_get_ipen(void) 158static inline unsigned cc_get_ipen(void)
170{ 159{
171 unsigned pending; 160 unsigned pending;
diff --git a/arch/sparc/kernel/sun4d_irq.c b/arch/sparc/kernel/sun4d_irq.c
index c4a2bfb750a4..12541f51fcfc 100644
--- a/arch/sparc/kernel/sun4d_irq.c
+++ b/arch/sparc/kernel/sun4d_irq.c
@@ -51,7 +51,6 @@ struct sun4d_timer_regs *sun4d_timers;
51#define MAX_STATIC_ALLOC 4 51#define MAX_STATIC_ALLOC 4
52extern struct irqaction static_irqaction[MAX_STATIC_ALLOC]; 52extern struct irqaction static_irqaction[MAX_STATIC_ALLOC];
53extern int static_irq_count; 53extern int static_irq_count;
54unsigned char cpu_leds[32];
55#ifdef CONFIG_SMP 54#ifdef CONFIG_SMP
56static unsigned char sbus_tid[32]; 55static unsigned char sbus_tid[32];
57#endif 56#endif
diff --git a/arch/sparc/kernel/sun4d_smp.c b/arch/sparc/kernel/sun4d_smp.c
index 72fa8daab60b..49a08b487ca7 100644
--- a/arch/sparc/kernel/sun4d_smp.c
+++ b/arch/sparc/kernel/sun4d_smp.c
@@ -71,6 +71,17 @@ static void smp_setup_percpu_timer(void);
71extern void cpu_probe(void); 71extern void cpu_probe(void);
72extern void sun4d_distribute_irqs(void); 72extern void sun4d_distribute_irqs(void);
73 73
74static unsigned char cpu_leds[32];
75
76static inline void show_leds(int cpuid)
77{
78 cpuid &= 0x1e;
79 __asm__ __volatile__ ("stba %0, [%1] %2" : :
80 "r" ((cpu_leds[cpuid] << 4) | cpu_leds[cpuid+1]),
81 "r" (ECSR_BASE(cpuid) | BB_LEDS),
82 "i" (ASI_M_CTL));
83}
84
74void __init smp4d_callin(void) 85void __init smp4d_callin(void)
75{ 86{
76 int cpuid = hard_smp4d_processor_id(); 87 int cpuid = hard_smp4d_processor_id();