diff options
Diffstat (limited to 'arch/mips/sgi-ip22/ip22-reset.c')
-rw-r--r-- | arch/mips/sgi-ip22/ip22-reset.c | 51 |
1 files changed, 2 insertions, 49 deletions
diff --git a/arch/mips/sgi-ip22/ip22-reset.c b/arch/mips/sgi-ip22/ip22-reset.c index a435b31cf031..4ad5c3393fd3 100644 --- a/arch/mips/sgi-ip22/ip22-reset.c +++ b/arch/mips/sgi-ip22/ip22-reset.c | |||
@@ -39,7 +39,7 @@ | |||
39 | #define POWERDOWN_FREQ (HZ / 4) | 39 | #define POWERDOWN_FREQ (HZ / 4) |
40 | #define PANIC_FREQ (HZ / 8) | 40 | #define PANIC_FREQ (HZ / 8) |
41 | 41 | ||
42 | static struct timer_list power_timer, blink_timer, debounce_timer, volume_timer; | 42 | static struct timer_list power_timer, blink_timer, debounce_timer; |
43 | 43 | ||
44 | #define MACHINE_PANICED 1 | 44 | #define MACHINE_PANICED 1 |
45 | #define MACHINE_SHUTTING_DOWN 2 | 45 | #define MACHINE_SHUTTING_DOWN 2 |
@@ -139,36 +139,6 @@ static inline void power_button(void) | |||
139 | add_timer(&power_timer); | 139 | add_timer(&power_timer); |
140 | } | 140 | } |
141 | 141 | ||
142 | void (*indy_volume_button)(int) = NULL; | ||
143 | |||
144 | EXPORT_SYMBOL(indy_volume_button); | ||
145 | |||
146 | static inline void volume_up_button(unsigned long data) | ||
147 | { | ||
148 | del_timer(&volume_timer); | ||
149 | |||
150 | if (indy_volume_button) | ||
151 | indy_volume_button(1); | ||
152 | |||
153 | if (sgint->istat1 & SGINT_ISTAT1_PWR) { | ||
154 | volume_timer.expires = jiffies + (HZ / 100); | ||
155 | add_timer(&volume_timer); | ||
156 | } | ||
157 | } | ||
158 | |||
159 | static inline void volume_down_button(unsigned long data) | ||
160 | { | ||
161 | del_timer(&volume_timer); | ||
162 | |||
163 | if (indy_volume_button) | ||
164 | indy_volume_button(-1); | ||
165 | |||
166 | if (sgint->istat1 & SGINT_ISTAT1_PWR) { | ||
167 | volume_timer.expires = jiffies + (HZ / 100); | ||
168 | add_timer(&volume_timer); | ||
169 | } | ||
170 | } | ||
171 | |||
172 | static irqreturn_t panel_int(int irq, void *dev_id) | 142 | static irqreturn_t panel_int(int irq, void *dev_id) |
173 | { | 143 | { |
174 | unsigned int buttons; | 144 | unsigned int buttons; |
@@ -190,25 +160,8 @@ static irqreturn_t panel_int(int irq, void *dev_id) | |||
190 | * House. Only lowest 2 bits are used. Guiness uses upper four bits | 160 | * House. Only lowest 2 bits are used. Guiness uses upper four bits |
191 | * for volume control". This is not true, all bits are pulled high | 161 | * for volume control". This is not true, all bits are pulled high |
192 | * on fullhouse */ | 162 | * on fullhouse */ |
193 | if (ip22_is_fullhouse() || !(buttons & SGIOC_PANEL_POWERINTR)) { | 163 | if (!(buttons & SGIOC_PANEL_POWERINTR)) |
194 | power_button(); | 164 | power_button(); |
195 | return IRQ_HANDLED; | ||
196 | } | ||
197 | /* TODO: mute/unmute */ | ||
198 | /* Volume up button was pressed */ | ||
199 | if (!(buttons & SGIOC_PANEL_VOLUPINTR)) { | ||
200 | init_timer(&volume_timer); | ||
201 | volume_timer.function = volume_up_button; | ||
202 | volume_timer.expires = jiffies + (HZ / 100); | ||
203 | add_timer(&volume_timer); | ||
204 | } | ||
205 | /* Volume down button was pressed */ | ||
206 | if (!(buttons & SGIOC_PANEL_VOLDNINTR)) { | ||
207 | init_timer(&volume_timer); | ||
208 | volume_timer.function = volume_down_button; | ||
209 | volume_timer.expires = jiffies + (HZ / 100); | ||
210 | add_timer(&volume_timer); | ||
211 | } | ||
212 | 165 | ||
213 | return IRQ_HANDLED; | 166 | return IRQ_HANDLED; |
214 | } | 167 | } |