1 // SPDX-License-Identifier: GPL-2.0-only
3 * Apple Onboard Audio feature call GPIO control
5 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
7 * This file contains the GPIO control routines for
8 * direct (through feature calls) access to the GPIO
12 #include <linux/of_irq.h>
13 #include <linux/interrupt.h>
14 #include <asm/pmac_feature.h>
17 /* TODO: these are lots of global variables
18 * that aren't used on most machines...
19 * Move them into a dynamically allocated
20 * structure and use that.
23 /* these are the GPIO numbers (register addresses as offsets into
25 static int headphone_mute_gpio
;
26 static int master_mute_gpio
;
27 static int amp_mute_gpio
;
28 static int lineout_mute_gpio
;
29 static int hw_reset_gpio
;
30 static int lineout_detect_gpio
;
31 static int headphone_detect_gpio
;
32 static int linein_detect_gpio
;
34 /* see the SWITCH_GPIO macro */
35 static int headphone_mute_gpio_activestate
;
36 static int master_mute_gpio_activestate
;
37 static int amp_mute_gpio_activestate
;
38 static int lineout_mute_gpio_activestate
;
39 static int hw_reset_gpio_activestate
;
40 static int lineout_detect_gpio_activestate
;
41 static int headphone_detect_gpio_activestate
;
42 static int linein_detect_gpio_activestate
;
44 /* node pointers that we save when getting the GPIO number
45 * to get the interrupt later */
46 static struct device_node
*lineout_detect_node
;
47 static struct device_node
*linein_detect_node
;
48 static struct device_node
*headphone_detect_node
;
50 static int lineout_detect_irq
;
51 static int linein_detect_irq
;
52 static int headphone_detect_irq
;
54 static struct device_node
*get_gpio(char *name
,
59 struct device_node
*np
, *gpio
;
61 const char *audio_gpio
;
65 /* check if we can get it the easy way ... */
66 np
= of_find_node_by_name(NULL
, name
);
68 /* some machines have only gpioX/extint-gpioX nodes,
69 * and an audio-gpio property saying what it is ...
70 * So what we have to do is enumerate all children
71 * of the gpio node and check them all. */
72 gpio
= of_find_node_by_name(NULL
, "gpio");
75 while ((np
= of_get_next_child(gpio
, np
))) {
76 audio_gpio
= of_get_property(np
, "audio-gpio", NULL
);
79 if (strcmp(audio_gpio
, name
) == 0)
81 if (altname
&& (strcmp(audio_gpio
, altname
) == 0))
85 /* still not found, assume not there */
90 reg
= of_get_property(np
, "reg", NULL
);
98 /* this is a hack, usually the GPIOs 'reg' property
99 * should have the offset based from the GPIO space
100 * which is at 0x50, but apparently not always... */
104 reg
= of_get_property(np
, "audio-gpio-active-state", NULL
);
106 /* Apple seems to default to 1, but
107 * that doesn't seem right at least on most
108 * machines. So until proven that the opposite
109 * is necessary, we default to 0
110 * (which, incidentally, snd-powermac also does...) */
113 *gpioactiveptr
= *reg
;
118 static void get_irq(struct device_node
* np
, int *irqptr
)
121 *irqptr
= irq_of_parse_and_map(np
, 0);
126 /* 0x4 is outenable, 0x1 is out, thus 4 or 5 */
127 #define SWITCH_GPIO(name, v, on) \
129 (name##_gpio_activestate==0?4:5): \
130 (name##_gpio_activestate==0?5:4)))
132 #define FTR_GPIO(name, bit) \
133 static void ftr_gpio_set_##name(struct gpio_runtime *rt, int on)\
137 if (unlikely(!rt)) return; \
139 if (name##_mute_gpio < 0) \
142 v = pmac_call_feature(PMAC_FTR_READ_GPIO, NULL, \
146 /* muted = !on... */ \
147 v = SWITCH_GPIO(name##_mute, v, !on); \
149 pmac_call_feature(PMAC_FTR_WRITE_GPIO, NULL, \
150 name##_mute_gpio, v); \
152 rt->implementation_private &= ~(1<<bit); \
153 rt->implementation_private |= (!!on << bit); \
155 static int ftr_gpio_get_##name(struct gpio_runtime *rt) \
157 if (unlikely(!rt)) return 0; \
158 return (rt->implementation_private>>bit)&1; \
161 FTR_GPIO(headphone
, 0);
163 FTR_GPIO(lineout
, 2);
166 static void ftr_gpio_set_hw_reset(struct gpio_runtime
*rt
, int on
)
170 if (unlikely(!rt
)) return;
171 if (hw_reset_gpio
< 0)
174 v
= pmac_call_feature(PMAC_FTR_READ_GPIO
, NULL
,
176 v
= SWITCH_GPIO(hw_reset
, v
, on
);
177 pmac_call_feature(PMAC_FTR_WRITE_GPIO
, NULL
,
181 static struct gpio_methods methods
;
183 static void ftr_gpio_all_amps_off(struct gpio_runtime
*rt
)
187 if (unlikely(!rt
)) return;
188 saved
= rt
->implementation_private
;
189 ftr_gpio_set_headphone(rt
, 0);
190 ftr_gpio_set_amp(rt
, 0);
191 ftr_gpio_set_lineout(rt
, 0);
192 if (methods
.set_master
)
193 ftr_gpio_set_master(rt
, 0);
194 rt
->implementation_private
= saved
;
197 static void ftr_gpio_all_amps_restore(struct gpio_runtime
*rt
)
201 if (unlikely(!rt
)) return;
202 s
= rt
->implementation_private
;
203 ftr_gpio_set_headphone(rt
, (s
>>0)&1);
204 ftr_gpio_set_amp(rt
, (s
>>1)&1);
205 ftr_gpio_set_lineout(rt
, (s
>>2)&1);
206 if (methods
.set_master
)
207 ftr_gpio_set_master(rt
, (s
>>3)&1);
210 static void ftr_handle_notify(struct work_struct
*work
)
212 struct gpio_notification
*notif
=
213 container_of(work
, struct gpio_notification
, work
.work
);
215 mutex_lock(¬if
->mutex
);
217 notif
->notify(notif
->data
);
218 mutex_unlock(¬if
->mutex
);
221 static void gpio_enable_dual_edge(int gpio
)
227 v
= pmac_call_feature(PMAC_FTR_READ_GPIO
, NULL
, gpio
, 0);
228 v
|= 0x80; /* enable dual edge */
229 pmac_call_feature(PMAC_FTR_WRITE_GPIO
, NULL
, gpio
, v
);
232 static void ftr_gpio_init(struct gpio_runtime
*rt
)
234 get_gpio("headphone-mute", NULL
,
235 &headphone_mute_gpio
,
236 &headphone_mute_gpio_activestate
);
237 get_gpio("amp-mute", NULL
,
239 &_mute_gpio_activestate
);
240 get_gpio("lineout-mute", NULL
,
242 &lineout_mute_gpio_activestate
);
243 get_gpio("hw-reset", "audio-hw-reset",
245 &hw_reset_gpio_activestate
);
246 if (get_gpio("master-mute", NULL
,
248 &master_mute_gpio_activestate
)) {
249 methods
.set_master
= ftr_gpio_set_master
;
250 methods
.get_master
= ftr_gpio_get_master
;
253 headphone_detect_node
= get_gpio("headphone-detect", NULL
,
254 &headphone_detect_gpio
,
255 &headphone_detect_gpio_activestate
);
256 /* go Apple, and thanks for giving these different names
257 * across the board... */
258 lineout_detect_node
= get_gpio("lineout-detect", "line-output-detect",
259 &lineout_detect_gpio
,
260 &lineout_detect_gpio_activestate
);
261 linein_detect_node
= get_gpio("linein-detect", "line-input-detect",
263 &linein_detect_gpio_activestate
);
265 gpio_enable_dual_edge(headphone_detect_gpio
);
266 gpio_enable_dual_edge(lineout_detect_gpio
);
267 gpio_enable_dual_edge(linein_detect_gpio
);
269 get_irq(headphone_detect_node
, &headphone_detect_irq
);
270 get_irq(lineout_detect_node
, &lineout_detect_irq
);
271 get_irq(linein_detect_node
, &linein_detect_irq
);
273 ftr_gpio_all_amps_off(rt
);
274 rt
->implementation_private
= 0;
275 INIT_DELAYED_WORK(&rt
->headphone_notify
.work
, ftr_handle_notify
);
276 INIT_DELAYED_WORK(&rt
->line_in_notify
.work
, ftr_handle_notify
);
277 INIT_DELAYED_WORK(&rt
->line_out_notify
.work
, ftr_handle_notify
);
278 mutex_init(&rt
->headphone_notify
.mutex
);
279 mutex_init(&rt
->line_in_notify
.mutex
);
280 mutex_init(&rt
->line_out_notify
.mutex
);
283 static void ftr_gpio_exit(struct gpio_runtime
*rt
)
285 ftr_gpio_all_amps_off(rt
);
286 rt
->implementation_private
= 0;
287 if (rt
->headphone_notify
.notify
)
288 free_irq(headphone_detect_irq
, &rt
->headphone_notify
);
289 if (rt
->line_in_notify
.gpio_private
)
290 free_irq(linein_detect_irq
, &rt
->line_in_notify
);
291 if (rt
->line_out_notify
.gpio_private
)
292 free_irq(lineout_detect_irq
, &rt
->line_out_notify
);
293 cancel_delayed_work_sync(&rt
->headphone_notify
.work
);
294 cancel_delayed_work_sync(&rt
->line_in_notify
.work
);
295 cancel_delayed_work_sync(&rt
->line_out_notify
.work
);
296 mutex_destroy(&rt
->headphone_notify
.mutex
);
297 mutex_destroy(&rt
->line_in_notify
.mutex
);
298 mutex_destroy(&rt
->line_out_notify
.mutex
);
301 static irqreturn_t
ftr_handle_notify_irq(int xx
, void *data
)
303 struct gpio_notification
*notif
= data
;
305 schedule_delayed_work(¬if
->work
, 0);
310 static int ftr_set_notify(struct gpio_runtime
*rt
,
311 enum notify_type type
,
312 notify_func_t notify
,
315 struct gpio_notification
*notif
;
322 case AOA_NOTIFY_HEADPHONE
:
323 notif
= &rt
->headphone_notify
;
324 name
= "headphone-detect";
325 irq
= headphone_detect_irq
;
327 case AOA_NOTIFY_LINE_IN
:
328 notif
= &rt
->line_in_notify
;
329 name
= "linein-detect";
330 irq
= linein_detect_irq
;
332 case AOA_NOTIFY_LINE_OUT
:
333 notif
= &rt
->line_out_notify
;
334 name
= "lineout-detect";
335 irq
= lineout_detect_irq
;
344 mutex_lock(¬if
->mutex
);
348 if (!old
&& !notify
) {
354 if (old
== notify
&& notif
->data
== data
)
360 free_irq(irq
, notif
);
362 if (!old
&& notify
) {
363 err
= request_irq(irq
, ftr_handle_notify_irq
, 0, name
, notif
);
368 notif
->notify
= notify
;
373 mutex_unlock(¬if
->mutex
);
377 static int ftr_get_detect(struct gpio_runtime
*rt
,
378 enum notify_type type
)
380 int gpio
, ret
, active
;
383 case AOA_NOTIFY_HEADPHONE
:
384 gpio
= headphone_detect_gpio
;
385 active
= headphone_detect_gpio_activestate
;
387 case AOA_NOTIFY_LINE_IN
:
388 gpio
= linein_detect_gpio
;
389 active
= linein_detect_gpio_activestate
;
391 case AOA_NOTIFY_LINE_OUT
:
392 gpio
= lineout_detect_gpio
;
393 active
= lineout_detect_gpio_activestate
;
402 ret
= pmac_call_feature(PMAC_FTR_READ_GPIO
, NULL
, gpio
, 0);
405 return ((ret
>> 1) & 1) == active
;
408 static struct gpio_methods methods
= {
409 .init
= ftr_gpio_init
,
410 .exit
= ftr_gpio_exit
,
411 .all_amps_off
= ftr_gpio_all_amps_off
,
412 .all_amps_restore
= ftr_gpio_all_amps_restore
,
413 .set_headphone
= ftr_gpio_set_headphone
,
414 .set_speakers
= ftr_gpio_set_amp
,
415 .set_lineout
= ftr_gpio_set_lineout
,
416 .set_hw_reset
= ftr_gpio_set_hw_reset
,
417 .get_headphone
= ftr_gpio_get_headphone
,
418 .get_speakers
= ftr_gpio_get_amp
,
419 .get_lineout
= ftr_gpio_get_lineout
,
420 .set_notify
= ftr_set_notify
,
421 .get_detect
= ftr_get_detect
,
424 struct gpio_methods
*ftr_gpio_methods
= &methods
;
425 EXPORT_SYMBOL_GPL(ftr_gpio_methods
);