2 * Apple Onboard Audio driver -- layout fabric
4 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
6 * GPL v2, can be found in COPYING.
9 * This fabric module looks for sound codecs
10 * based on the layout-id property in the device tree.
15 #include <linux/list.h>
16 #include <linux/module.h>
18 #include "../soundbus/soundbus.h"
20 MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");
21 MODULE_LICENSE("GPL");
22 MODULE_DESCRIPTION("Layout-ID fabric for snd-aoa");
24 #define MAX_CODECS_PER_BUS 2
26 /* These are the connections the layout fabric
27 * knows about. It doesn't really care about the
28 * input ones, but I thought I'd separate them
29 * to give them proper names. The thing is that
30 * Apple usually will distinguish the active output
31 * by GPIOs, while the active input is set directly
32 * on the codec. Hence we here tell the codec what
33 * we think is connected. This information is hard-
35 #define CC_SPEAKERS (1<<0)
36 #define CC_HEADPHONE (1<<1)
37 #define CC_LINEOUT (1<<2)
38 #define CC_DIGITALOUT (1<<3)
39 #define CC_LINEIN (1<<4)
40 #define CC_MICROPHONE (1<<5)
41 #define CC_DIGITALIN (1<<6)
42 /* pretty bogus but users complain...
43 * This is a flag saying that the LINEOUT
44 * should be renamed to HEADPHONE.
45 * be careful with input detection! */
46 #define CC_LINEOUT_LABELLED_HEADPHONE (1<<7)
48 struct codec_connection
{
49 /* CC_ flags from above */
51 /* codec dependent bit to be set in the aoa_codec.connected field.
52 * This intentionally doesn't have any generic flags because the
53 * fabric has to know the codec anyway and all codecs might have
54 * different connectors */
58 struct codec_connect_info
{
60 struct codec_connection
*connections
;
63 #define LAYOUT_FLAG_COMBO_LINEOUT_SPDIF (1<<0)
66 unsigned int layout_id
;
67 struct codec_connect_info codecs
[MAX_CODECS_PER_BUS
];
70 /* if busname is not assigned, we use 'Master' below,
71 * so that our layout table doesn't need to be filled
73 * We only assign these two if we expect to find more
74 * than one soundbus, i.e. on those machines with
75 * multiple layout-ids */
80 MODULE_ALIAS("sound-layout-36");
81 MODULE_ALIAS("sound-layout-41");
82 MODULE_ALIAS("sound-layout-45");
83 MODULE_ALIAS("sound-layout-47");
84 MODULE_ALIAS("sound-layout-48");
85 MODULE_ALIAS("sound-layout-49");
86 MODULE_ALIAS("sound-layout-50");
87 MODULE_ALIAS("sound-layout-51");
88 MODULE_ALIAS("sound-layout-56");
89 MODULE_ALIAS("sound-layout-57");
90 MODULE_ALIAS("sound-layout-58");
91 MODULE_ALIAS("sound-layout-60");
92 MODULE_ALIAS("sound-layout-61");
93 MODULE_ALIAS("sound-layout-62");
94 MODULE_ALIAS("sound-layout-64");
95 MODULE_ALIAS("sound-layout-65");
96 MODULE_ALIAS("sound-layout-66");
97 MODULE_ALIAS("sound-layout-67");
98 MODULE_ALIAS("sound-layout-68");
99 MODULE_ALIAS("sound-layout-69");
100 MODULE_ALIAS("sound-layout-70");
101 MODULE_ALIAS("sound-layout-72");
102 MODULE_ALIAS("sound-layout-76");
103 MODULE_ALIAS("sound-layout-80");
104 MODULE_ALIAS("sound-layout-82");
105 MODULE_ALIAS("sound-layout-84");
106 MODULE_ALIAS("sound-layout-86");
107 MODULE_ALIAS("sound-layout-90");
108 MODULE_ALIAS("sound-layout-92");
109 MODULE_ALIAS("sound-layout-94");
110 MODULE_ALIAS("sound-layout-96");
111 MODULE_ALIAS("sound-layout-98");
112 MODULE_ALIAS("sound-layout-100");
114 /* onyx with all but microphone connected */
115 static struct codec_connection onyx_connections_nomic
[] = {
117 .connected
= CC_SPEAKERS
| CC_HEADPHONE
| CC_LINEOUT
,
121 .connected
= CC_DIGITALOUT
,
125 .connected
= CC_LINEIN
,
128 {} /* terminate array by .connected == 0 */
131 /* onyx on machines without headphone */
132 static struct codec_connection onyx_connections_noheadphones
[] = {
134 .connected
= CC_SPEAKERS
| CC_LINEOUT
|
135 CC_LINEOUT_LABELLED_HEADPHONE
,
139 .connected
= CC_DIGITALOUT
,
142 /* FIXME: are these correct? probably not for all the machines
143 * below ... If not this will need separating. */
145 .connected
= CC_LINEIN
,
149 .connected
= CC_MICROPHONE
,
152 {} /* terminate array by .connected == 0 */
155 /* onyx on machines with real line-out */
156 static struct codec_connection onyx_connections_reallineout
[] = {
158 .connected
= CC_SPEAKERS
| CC_LINEOUT
| CC_HEADPHONE
,
162 .connected
= CC_DIGITALOUT
,
166 .connected
= CC_LINEIN
,
169 {} /* terminate array by .connected == 0 */
172 /* tas on machines without line out */
173 static struct codec_connection tas_connections_nolineout
[] = {
175 .connected
= CC_SPEAKERS
| CC_HEADPHONE
,
179 .connected
= CC_LINEIN
,
183 .connected
= CC_MICROPHONE
,
186 {} /* terminate array by .connected == 0 */
189 /* tas on machines with neither line out nor line in */
190 static struct codec_connection tas_connections_noline
[] = {
192 .connected
= CC_SPEAKERS
| CC_HEADPHONE
,
196 .connected
= CC_MICROPHONE
,
199 {} /* terminate array by .connected == 0 */
202 /* tas on machines without microphone */
203 static struct codec_connection tas_connections_nomic
[] = {
205 .connected
= CC_SPEAKERS
| CC_HEADPHONE
| CC_LINEOUT
,
209 .connected
= CC_LINEIN
,
212 {} /* terminate array by .connected == 0 */
215 /* tas on machines with everything connected */
216 static struct codec_connection tas_connections_all
[] = {
218 .connected
= CC_SPEAKERS
| CC_HEADPHONE
| CC_LINEOUT
,
222 .connected
= CC_LINEIN
,
226 .connected
= CC_MICROPHONE
,
229 {} /* terminate array by .connected == 0 */
232 static struct codec_connection toonie_connections
[] = {
234 .connected
= CC_SPEAKERS
| CC_HEADPHONE
,
237 {} /* terminate array by .connected == 0 */
240 static struct codec_connection topaz_input
[] = {
242 .connected
= CC_DIGITALIN
,
245 {} /* terminate array by .connected == 0 */
248 static struct codec_connection topaz_output
[] = {
250 .connected
= CC_DIGITALOUT
,
253 {} /* terminate array by .connected == 0 */
256 static struct codec_connection topaz_inout
[] = {
258 .connected
= CC_DIGITALIN
,
262 .connected
= CC_DIGITALOUT
,
265 {} /* terminate array by .connected == 0 */
268 static struct layout layouts
[] = {
269 /* last PowerBooks (15" Oct 2005) */
271 .flags
= LAYOUT_FLAG_COMBO_LINEOUT_SPDIF
,
274 .connections
= onyx_connections_noheadphones
,
278 .connections
= topaz_input
,
285 .connections
= onyx_connections_reallineout
,
292 .connections
= topaz_input
,
297 .flags
= LAYOUT_FLAG_COMBO_LINEOUT_SPDIF
,
300 .connections
= onyx_connections_noheadphones
,
307 .connections
= topaz_input
,
310 /* PowerBook5,9 [17" Oct 2005] */
312 .flags
= LAYOUT_FLAG_COMBO_LINEOUT_SPDIF
,
315 .connections
= onyx_connections_noheadphones
,
319 .connections
= topaz_input
,
326 .connections
= onyx_connections_noheadphones
,
330 .connections
= topaz_input
,
333 /* Quad PowerMac (analog in, analog/digital out) */
337 .connections
= onyx_connections_nomic
,
340 /* Quad PowerMac (digital in) */
344 .connections
= topaz_input
,
346 .busname
= "digital in", .pcmid
= 1 },
347 /* Early 2005 PowerBook (PowerBook 5,6) */
351 .connections
= tas_connections_nolineout
,
358 .connections
= tas_connections_nolineout
,
365 .connections
= tas_connections_noline
,
372 .connections
= tas_connections_nolineout
,
379 .connections
= onyx_connections_nomic
,
383 .connections
= topaz_input
,
390 .connections
= tas_connections_nolineout
,
393 /* PowerMac10,1 (Mac Mini) */
397 .connections
= toonie_connections
,
404 .connections
= onyx_connections_noheadphones
,
407 /* unknown, untested, but this comes from Apple */
411 .connections
= tas_connections_all
,
417 .connections
= tas_connections_nomic
,
421 .connections
= topaz_inout
,
427 .connections
= onyx_connections_noheadphones
,
433 .connections
= topaz_input
,
439 .connections
= onyx_connections_nomic
,
445 .connections
= topaz_input
,
451 .connections
= onyx_connections_noheadphones
,
457 .connections
= topaz_input
,
463 .connections
= onyx_connections_noheadphones
,
467 .connections
= topaz_output
,
473 .connections
= onyx_connections_noheadphones
,
479 .connections
= topaz_input
,
485 .connections
= tas_connections_nomic
,
489 .connections
= topaz_inout
,
495 .connections
= tas_connections_noline
,
501 /* but it has an external mic?? how to select? */
502 .connections
= onyx_connections_noheadphones
,
508 .connections
= toonie_connections
,
514 .connections
= topaz_input
,
518 .connections
= onyx_connections_noheadphones
,
524 static struct layout
*find_layout_by_id(unsigned int id
)
529 while (l
->layout_id
) {
530 if (l
->layout_id
== id
)
537 static void use_layout(struct layout
*l
)
541 for (i
=0; i
<MAX_CODECS_PER_BUS
; i
++) {
542 if (l
->codecs
[i
].name
) {
543 request_module("snd-aoa-codec-%s", l
->codecs
[i
].name
);
546 /* now we wait for the codecs to call us back */
551 struct layout_dev_ptr
{
552 struct layout_dev
*ptr
;
556 struct list_head list
;
557 struct soundbus_dev
*sdev
;
558 struct device_node
*sound
;
559 struct aoa_codec
*codecs
[MAX_CODECS_PER_BUS
];
560 struct layout
*layout
;
561 struct gpio_runtime gpio
;
563 /* we need these for headphone/lineout detection */
564 struct snd_kcontrol
*headphone_ctrl
;
565 struct snd_kcontrol
*lineout_ctrl
;
566 struct snd_kcontrol
*speaker_ctrl
;
567 struct snd_kcontrol
*headphone_detected_ctrl
;
568 struct snd_kcontrol
*lineout_detected_ctrl
;
570 struct layout_dev_ptr selfptr_headphone
;
571 struct layout_dev_ptr selfptr_lineout
;
573 u32 have_lineout_detect
:1,
574 have_headphone_detect
:1,
575 switch_on_headphone
:1,
579 static LIST_HEAD(layouts_list
);
580 static int layouts_list_items
;
581 /* this can go away but only if we allow multiple cards,
582 * make the fabric handle all the card stuff, etc... */
583 static struct layout_dev
*layout_device
;
585 static int control_info(struct snd_kcontrol
*kcontrol
,
586 struct snd_ctl_elem_info
*uinfo
)
588 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
590 uinfo
->value
.integer
.min
= 0;
591 uinfo
->value
.integer
.max
= 1;
595 #define AMP_CONTROL(n, description) \
596 static int n##_control_get(struct snd_kcontrol *kcontrol, \
597 struct snd_ctl_elem_value *ucontrol) \
599 struct gpio_runtime *gpio = snd_kcontrol_chip(kcontrol); \
600 if (gpio->methods && gpio->methods->get_##n) \
601 ucontrol->value.integer.value[0] = \
602 gpio->methods->get_##n(gpio); \
605 static int n##_control_put(struct snd_kcontrol *kcontrol, \
606 struct snd_ctl_elem_value *ucontrol) \
608 struct gpio_runtime *gpio = snd_kcontrol_chip(kcontrol); \
609 if (gpio->methods && gpio->methods->get_##n) \
610 gpio->methods->set_##n(gpio, \
611 ucontrol->value.integer.value[0]); \
614 static struct snd_kcontrol_new n##_ctl = { \
615 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
616 .name = description, \
617 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
618 .info = control_info, \
619 .get = n##_control_get, \
620 .put = n##_control_put, \
623 AMP_CONTROL(headphone
, "Headphone Switch");
624 AMP_CONTROL(speakers
, "Speakers Switch");
625 AMP_CONTROL(lineout
, "Line-Out Switch");
627 static int detect_choice_get(struct snd_kcontrol
*kcontrol
,
628 struct snd_ctl_elem_value
*ucontrol
)
630 struct layout_dev
*ldev
= snd_kcontrol_chip(kcontrol
);
632 switch (kcontrol
->private_value
) {
634 ucontrol
->value
.integer
.value
[0] = ldev
->switch_on_headphone
;
637 ucontrol
->value
.integer
.value
[0] = ldev
->switch_on_lineout
;
645 static int detect_choice_put(struct snd_kcontrol
*kcontrol
,
646 struct snd_ctl_elem_value
*ucontrol
)
648 struct layout_dev
*ldev
= snd_kcontrol_chip(kcontrol
);
650 switch (kcontrol
->private_value
) {
652 ldev
->switch_on_headphone
= !!ucontrol
->value
.integer
.value
[0];
655 ldev
->switch_on_lineout
= !!ucontrol
->value
.integer
.value
[0];
663 static struct snd_kcontrol_new headphone_detect_choice
= {
664 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
665 .name
= "Headphone Detect Autoswitch",
666 .info
= control_info
,
667 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
668 .get
= detect_choice_get
,
669 .put
= detect_choice_put
,
673 static struct snd_kcontrol_new lineout_detect_choice
= {
674 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
675 .name
= "Line-Out Detect Autoswitch",
676 .info
= control_info
,
677 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
678 .get
= detect_choice_get
,
679 .put
= detect_choice_put
,
683 static int detected_get(struct snd_kcontrol
*kcontrol
,
684 struct snd_ctl_elem_value
*ucontrol
)
686 struct layout_dev
*ldev
= snd_kcontrol_chip(kcontrol
);
689 switch (kcontrol
->private_value
) {
691 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
,
692 AOA_NOTIFY_HEADPHONE
);
695 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
,
696 AOA_NOTIFY_LINE_OUT
);
701 ucontrol
->value
.integer
.value
[0] = v
;
705 static struct snd_kcontrol_new headphone_detected
= {
706 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
707 .name
= "Headphone Detected",
708 .info
= control_info
,
709 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
714 static struct snd_kcontrol_new lineout_detected
= {
715 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
716 .name
= "Line-Out Detected",
717 .info
= control_info
,
718 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
723 static int check_codec(struct aoa_codec
*codec
,
724 struct layout_dev
*ldev
,
725 struct codec_connect_info
*cci
)
729 struct codec_connection
*cc
;
731 /* if the codec has a 'codec' node, we require a reference */
732 if (codec
->node
&& (strcmp(codec
->node
->name
, "codec") == 0)) {
733 snprintf(propname
, sizeof(propname
),
734 "platform-%s-codec-ref", codec
->name
);
735 ref
= of_get_property(ldev
->sound
, propname
, NULL
);
737 printk(KERN_INFO
"snd-aoa-fabric-layout: "
738 "required property %s not present\n", propname
);
741 if (*ref
!= codec
->node
->linux_phandle
) {
742 printk(KERN_INFO
"snd-aoa-fabric-layout: "
743 "%s doesn't match!\n", propname
);
747 if (layouts_list_items
!= 1) {
748 printk(KERN_INFO
"snd-aoa-fabric-layout: "
749 "more than one soundbus, but no references.\n");
753 codec
->soundbus_dev
= ldev
->sdev
;
754 codec
->gpio
= &ldev
->gpio
;
756 cc
= cci
->connections
;
760 printk(KERN_INFO
"snd-aoa-fabric-layout: can use this codec\n");
762 codec
->connected
= 0;
763 codec
->fabric_data
= cc
;
765 while (cc
->connected
) {
766 codec
->connected
|= 1<<cc
->codec_bit
;
773 static int layout_found_codec(struct aoa_codec
*codec
)
775 struct layout_dev
*ldev
;
778 list_for_each_entry(ldev
, &layouts_list
, list
) {
779 for (i
=0; i
<MAX_CODECS_PER_BUS
; i
++) {
780 if (!ldev
->layout
->codecs
[i
].name
)
782 if (strcmp(ldev
->layout
->codecs
[i
].name
, codec
->name
) == 0) {
783 if (check_codec(codec
,
785 &ldev
->layout
->codecs
[i
]) == 0)
793 static void layout_remove_codec(struct aoa_codec
*codec
)
796 /* here remove the codec from the layout dev's
799 codec
->soundbus_dev
= NULL
;
801 for (i
=0; i
<MAX_CODECS_PER_BUS
; i
++) {
805 static void layout_notify(void *data
)
807 struct layout_dev_ptr
*dptr
= data
;
808 struct layout_dev
*ldev
;
810 struct snd_kcontrol
*detected
, *c
;
811 struct snd_card
*card
= aoa_get_card();
814 if (data
== &ldev
->selfptr_headphone
) {
815 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
, AOA_NOTIFY_HEADPHONE
);
816 detected
= ldev
->headphone_detected_ctrl
;
817 update
= ldev
->switch_on_headphone
;
819 ldev
->gpio
.methods
->set_speakers(&ldev
->gpio
, !v
);
820 ldev
->gpio
.methods
->set_headphone(&ldev
->gpio
, v
);
821 ldev
->gpio
.methods
->set_lineout(&ldev
->gpio
, 0);
823 } else if (data
== &ldev
->selfptr_lineout
) {
824 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
, AOA_NOTIFY_LINE_OUT
);
825 detected
= ldev
->lineout_detected_ctrl
;
826 update
= ldev
->switch_on_lineout
;
828 ldev
->gpio
.methods
->set_speakers(&ldev
->gpio
, !v
);
829 ldev
->gpio
.methods
->set_headphone(&ldev
->gpio
, 0);
830 ldev
->gpio
.methods
->set_lineout(&ldev
->gpio
, v
);
836 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &detected
->id
);
838 c
= ldev
->headphone_ctrl
;
840 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &c
->id
);
841 c
= ldev
->speaker_ctrl
;
843 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &c
->id
);
844 c
= ldev
->lineout_ctrl
;
846 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &c
->id
);
850 static void layout_attached_codec(struct aoa_codec
*codec
)
852 struct codec_connection
*cc
;
853 struct snd_kcontrol
*ctl
;
854 int headphones
, lineout
;
855 struct layout_dev
*ldev
= layout_device
;
857 /* need to add this codec to our codec array! */
859 cc
= codec
->fabric_data
;
861 headphones
= codec
->gpio
->methods
->get_detect(codec
->gpio
,
862 AOA_NOTIFY_HEADPHONE
);
863 lineout
= codec
->gpio
->methods
->get_detect(codec
->gpio
,
864 AOA_NOTIFY_LINE_OUT
);
866 while (cc
->connected
) {
867 if (cc
->connected
& CC_SPEAKERS
) {
868 if (headphones
<= 0 && lineout
<= 0)
869 ldev
->gpio
.methods
->set_speakers(codec
->gpio
, 1);
870 ctl
= snd_ctl_new1(&speakers_ctl
, codec
->gpio
);
871 ldev
->speaker_ctrl
= ctl
;
872 aoa_snd_ctl_add(ctl
);
874 if (cc
->connected
& CC_HEADPHONE
) {
876 ldev
->gpio
.methods
->set_headphone(codec
->gpio
, 1);
877 ctl
= snd_ctl_new1(&headphone_ctl
, codec
->gpio
);
878 ldev
->headphone_ctrl
= ctl
;
879 aoa_snd_ctl_add(ctl
);
880 ldev
->have_headphone_detect
=
882 ->set_notify(&ldev
->gpio
,
883 AOA_NOTIFY_HEADPHONE
,
885 &ldev
->selfptr_headphone
);
886 if (ldev
->have_headphone_detect
) {
887 ctl
= snd_ctl_new1(&headphone_detect_choice
,
889 aoa_snd_ctl_add(ctl
);
890 ctl
= snd_ctl_new1(&headphone_detected
,
892 ldev
->headphone_detected_ctrl
= ctl
;
893 aoa_snd_ctl_add(ctl
);
896 if (cc
->connected
& CC_LINEOUT
) {
898 ldev
->gpio
.methods
->set_lineout(codec
->gpio
, 1);
899 ctl
= snd_ctl_new1(&lineout_ctl
, codec
->gpio
);
900 if (cc
->connected
& CC_LINEOUT_LABELLED_HEADPHONE
)
901 strlcpy(ctl
->id
.name
,
902 "Headphone Switch", sizeof(ctl
->id
.name
));
903 ldev
->lineout_ctrl
= ctl
;
904 aoa_snd_ctl_add(ctl
);
905 ldev
->have_lineout_detect
=
907 ->set_notify(&ldev
->gpio
,
910 &ldev
->selfptr_lineout
);
911 if (ldev
->have_lineout_detect
) {
912 ctl
= snd_ctl_new1(&lineout_detect_choice
,
914 if (cc
->connected
& CC_LINEOUT_LABELLED_HEADPHONE
)
915 strlcpy(ctl
->id
.name
,
916 "Headphone Detect Autoswitch",
917 sizeof(ctl
->id
.name
));
918 aoa_snd_ctl_add(ctl
);
919 ctl
= snd_ctl_new1(&lineout_detected
,
921 if (cc
->connected
& CC_LINEOUT_LABELLED_HEADPHONE
)
922 strlcpy(ctl
->id
.name
,
923 "Headphone Detected",
924 sizeof(ctl
->id
.name
));
925 ldev
->lineout_detected_ctrl
= ctl
;
926 aoa_snd_ctl_add(ctl
);
931 /* now update initial state */
932 if (ldev
->have_headphone_detect
)
933 layout_notify(&ldev
->selfptr_headphone
);
934 if (ldev
->have_lineout_detect
)
935 layout_notify(&ldev
->selfptr_lineout
);
938 static struct aoa_fabric layout_fabric
= {
939 .name
= "SoundByLayout",
940 .owner
= THIS_MODULE
,
941 .found_codec
= layout_found_codec
,
942 .remove_codec
= layout_remove_codec
,
943 .attached_codec
= layout_attached_codec
,
946 static int aoa_fabric_layout_probe(struct soundbus_dev
*sdev
)
948 struct device_node
*sound
= NULL
;
949 const unsigned int *layout_id
;
950 struct layout
*layout
;
951 struct layout_dev
*ldev
= NULL
;
954 /* hm, currently we can only have one ... */
958 /* by breaking out we keep a reference */
959 while ((sound
= of_get_next_child(sdev
->ofdev
.node
, sound
))) {
960 if (sound
->type
&& strcasecmp(sound
->type
, "soundchip") == 0)
963 if (!sound
) return -ENODEV
;
965 layout_id
= of_get_property(sound
, "layout-id", NULL
);
968 printk(KERN_INFO
"snd-aoa-fabric-layout: found bus with layout %d\n",
971 layout
= find_layout_by_id(*layout_id
);
973 printk(KERN_ERR
"snd-aoa-fabric-layout: unknown layout\n");
977 ldev
= kzalloc(sizeof(struct layout_dev
), GFP_KERNEL
);
981 layout_device
= ldev
;
984 ldev
->layout
= layout
;
985 ldev
->gpio
.node
= sound
->parent
;
986 switch (layout
->layout_id
) {
987 case 41: /* that unknown machine no one seems to have */
988 case 51: /* PowerBook5,4 */
989 case 58: /* Mac Mini */
990 ldev
->gpio
.methods
= ftr_gpio_methods
;
992 "snd-aoa-fabric-layout: Using direct GPIOs\n");
995 ldev
->gpio
.methods
= pmf_gpio_methods
;
997 "snd-aoa-fabric-layout: Using PMF GPIOs\n");
999 ldev
->selfptr_headphone
.ptr
= ldev
;
1000 ldev
->selfptr_lineout
.ptr
= ldev
;
1001 sdev
->ofdev
.dev
.driver_data
= ldev
;
1002 list_add(&ldev
->list
, &layouts_list
);
1003 layouts_list_items
++;
1005 /* assign these before registering ourselves, so
1006 * callbacks that are done during registration
1007 * already have the values */
1008 sdev
->pcmid
= ldev
->layout
->pcmid
;
1009 if (ldev
->layout
->busname
) {
1010 sdev
->pcmname
= ldev
->layout
->busname
;
1012 sdev
->pcmname
= "Master";
1015 ldev
->gpio
.methods
->init(&ldev
->gpio
);
1017 err
= aoa_fabric_register(&layout_fabric
, &sdev
->ofdev
.dev
);
1018 if (err
&& err
!= -EALREADY
) {
1019 printk(KERN_INFO
"snd-aoa-fabric-layout: can't use,"
1020 " another fabric is active!\n");
1025 ldev
->switch_on_headphone
= 1;
1026 ldev
->switch_on_lineout
= 1;
1029 /* we won't be using these then... */
1030 ldev
->gpio
.methods
->exit(&ldev
->gpio
);
1031 /* reset if we didn't use it */
1032 sdev
->pcmname
= NULL
;
1034 list_del(&ldev
->list
);
1035 layouts_list_items
--;
1038 layout_device
= NULL
;
1043 static int aoa_fabric_layout_remove(struct soundbus_dev
*sdev
)
1045 struct layout_dev
*ldev
= sdev
->ofdev
.dev
.driver_data
;
1048 for (i
=0; i
<MAX_CODECS_PER_BUS
; i
++) {
1049 if (ldev
->codecs
[i
]) {
1050 aoa_fabric_unlink_codec(ldev
->codecs
[i
]);
1052 ldev
->codecs
[i
] = NULL
;
1054 list_del(&ldev
->list
);
1055 layouts_list_items
--;
1056 of_node_put(ldev
->sound
);
1058 ldev
->gpio
.methods
->set_notify(&ldev
->gpio
,
1059 AOA_NOTIFY_HEADPHONE
,
1062 ldev
->gpio
.methods
->set_notify(&ldev
->gpio
,
1063 AOA_NOTIFY_LINE_OUT
,
1067 ldev
->gpio
.methods
->exit(&ldev
->gpio
);
1068 layout_device
= NULL
;
1071 sdev
->pcmname
= NULL
;
1076 static int aoa_fabric_layout_suspend(struct soundbus_dev
*sdev
, pm_message_t state
)
1078 struct layout_dev
*ldev
= sdev
->ofdev
.dev
.driver_data
;
1080 if (ldev
->gpio
.methods
&& ldev
->gpio
.methods
->all_amps_off
)
1081 ldev
->gpio
.methods
->all_amps_off(&ldev
->gpio
);
1086 static int aoa_fabric_layout_resume(struct soundbus_dev
*sdev
)
1088 struct layout_dev
*ldev
= sdev
->ofdev
.dev
.driver_data
;
1090 if (ldev
->gpio
.methods
&& ldev
->gpio
.methods
->all_amps_off
)
1091 ldev
->gpio
.methods
->all_amps_restore(&ldev
->gpio
);
1097 static struct soundbus_driver aoa_soundbus_driver
= {
1098 .name
= "snd_aoa_soundbus_drv",
1099 .owner
= THIS_MODULE
,
1100 .probe
= aoa_fabric_layout_probe
,
1101 .remove
= aoa_fabric_layout_remove
,
1103 .suspend
= aoa_fabric_layout_suspend
,
1104 .resume
= aoa_fabric_layout_resume
,
1107 .owner
= THIS_MODULE
,
1111 static int __init
aoa_fabric_layout_init(void)
1115 err
= soundbus_register_driver(&aoa_soundbus_driver
);
1121 static void __exit
aoa_fabric_layout_exit(void)
1123 soundbus_unregister_driver(&aoa_soundbus_driver
);
1124 aoa_fabric_unregister(&layout_fabric
);
1127 module_init(aoa_fabric_layout_init
);
1128 module_exit(aoa_fabric_layout_exit
);