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 #define control_info snd_ctl_boolean_mono_info
587 #define AMP_CONTROL(n, description) \
588 static int n##_control_get(struct snd_kcontrol *kcontrol, \
589 struct snd_ctl_elem_value *ucontrol) \
591 struct gpio_runtime *gpio = snd_kcontrol_chip(kcontrol); \
592 if (gpio->methods && gpio->methods->get_##n) \
593 ucontrol->value.integer.value[0] = \
594 gpio->methods->get_##n(gpio); \
597 static int n##_control_put(struct snd_kcontrol *kcontrol, \
598 struct snd_ctl_elem_value *ucontrol) \
600 struct gpio_runtime *gpio = snd_kcontrol_chip(kcontrol); \
601 if (gpio->methods && gpio->methods->get_##n) \
602 gpio->methods->set_##n(gpio, \
603 !!ucontrol->value.integer.value[0]); \
606 static struct snd_kcontrol_new n##_ctl = { \
607 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
608 .name = description, \
609 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
610 .info = control_info, \
611 .get = n##_control_get, \
612 .put = n##_control_put, \
615 AMP_CONTROL(headphone
, "Headphone Switch");
616 AMP_CONTROL(speakers
, "Speakers Switch");
617 AMP_CONTROL(lineout
, "Line-Out Switch");
619 static int detect_choice_get(struct snd_kcontrol
*kcontrol
,
620 struct snd_ctl_elem_value
*ucontrol
)
622 struct layout_dev
*ldev
= snd_kcontrol_chip(kcontrol
);
624 switch (kcontrol
->private_value
) {
626 ucontrol
->value
.integer
.value
[0] = ldev
->switch_on_headphone
;
629 ucontrol
->value
.integer
.value
[0] = ldev
->switch_on_lineout
;
637 static int detect_choice_put(struct snd_kcontrol
*kcontrol
,
638 struct snd_ctl_elem_value
*ucontrol
)
640 struct layout_dev
*ldev
= snd_kcontrol_chip(kcontrol
);
642 switch (kcontrol
->private_value
) {
644 ldev
->switch_on_headphone
= !!ucontrol
->value
.integer
.value
[0];
647 ldev
->switch_on_lineout
= !!ucontrol
->value
.integer
.value
[0];
655 static struct snd_kcontrol_new headphone_detect_choice
= {
656 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
657 .name
= "Headphone Detect Autoswitch",
658 .info
= control_info
,
659 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
660 .get
= detect_choice_get
,
661 .put
= detect_choice_put
,
665 static struct snd_kcontrol_new lineout_detect_choice
= {
666 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
667 .name
= "Line-Out Detect Autoswitch",
668 .info
= control_info
,
669 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
,
670 .get
= detect_choice_get
,
671 .put
= detect_choice_put
,
675 static int detected_get(struct snd_kcontrol
*kcontrol
,
676 struct snd_ctl_elem_value
*ucontrol
)
678 struct layout_dev
*ldev
= snd_kcontrol_chip(kcontrol
);
681 switch (kcontrol
->private_value
) {
683 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
,
684 AOA_NOTIFY_HEADPHONE
);
687 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
,
688 AOA_NOTIFY_LINE_OUT
);
693 ucontrol
->value
.integer
.value
[0] = v
;
697 static struct snd_kcontrol_new headphone_detected
= {
698 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
699 .name
= "Headphone Detected",
700 .info
= control_info
,
701 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
706 static struct snd_kcontrol_new lineout_detected
= {
707 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
708 .name
= "Line-Out Detected",
709 .info
= control_info
,
710 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
715 static int check_codec(struct aoa_codec
*codec
,
716 struct layout_dev
*ldev
,
717 struct codec_connect_info
*cci
)
721 struct codec_connection
*cc
;
723 /* if the codec has a 'codec' node, we require a reference */
724 if (codec
->node
&& (strcmp(codec
->node
->name
, "codec") == 0)) {
725 snprintf(propname
, sizeof(propname
),
726 "platform-%s-codec-ref", codec
->name
);
727 ref
= of_get_property(ldev
->sound
, propname
, NULL
);
729 printk(KERN_INFO
"snd-aoa-fabric-layout: "
730 "required property %s not present\n", propname
);
733 if (*ref
!= codec
->node
->linux_phandle
) {
734 printk(KERN_INFO
"snd-aoa-fabric-layout: "
735 "%s doesn't match!\n", propname
);
739 if (layouts_list_items
!= 1) {
740 printk(KERN_INFO
"snd-aoa-fabric-layout: "
741 "more than one soundbus, but no references.\n");
745 codec
->soundbus_dev
= ldev
->sdev
;
746 codec
->gpio
= &ldev
->gpio
;
748 cc
= cci
->connections
;
752 printk(KERN_INFO
"snd-aoa-fabric-layout: can use this codec\n");
754 codec
->connected
= 0;
755 codec
->fabric_data
= cc
;
757 while (cc
->connected
) {
758 codec
->connected
|= 1<<cc
->codec_bit
;
765 static int layout_found_codec(struct aoa_codec
*codec
)
767 struct layout_dev
*ldev
;
770 list_for_each_entry(ldev
, &layouts_list
, list
) {
771 for (i
=0; i
<MAX_CODECS_PER_BUS
; i
++) {
772 if (!ldev
->layout
->codecs
[i
].name
)
774 if (strcmp(ldev
->layout
->codecs
[i
].name
, codec
->name
) == 0) {
775 if (check_codec(codec
,
777 &ldev
->layout
->codecs
[i
]) == 0)
785 static void layout_remove_codec(struct aoa_codec
*codec
)
788 /* here remove the codec from the layout dev's
791 codec
->soundbus_dev
= NULL
;
793 for (i
=0; i
<MAX_CODECS_PER_BUS
; i
++) {
797 static void layout_notify(void *data
)
799 struct layout_dev_ptr
*dptr
= data
;
800 struct layout_dev
*ldev
;
802 struct snd_kcontrol
*detected
, *c
;
803 struct snd_card
*card
= aoa_get_card();
806 if (data
== &ldev
->selfptr_headphone
) {
807 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
, AOA_NOTIFY_HEADPHONE
);
808 detected
= ldev
->headphone_detected_ctrl
;
809 update
= ldev
->switch_on_headphone
;
811 ldev
->gpio
.methods
->set_speakers(&ldev
->gpio
, !v
);
812 ldev
->gpio
.methods
->set_headphone(&ldev
->gpio
, v
);
813 ldev
->gpio
.methods
->set_lineout(&ldev
->gpio
, 0);
815 } else if (data
== &ldev
->selfptr_lineout
) {
816 v
= ldev
->gpio
.methods
->get_detect(&ldev
->gpio
, AOA_NOTIFY_LINE_OUT
);
817 detected
= ldev
->lineout_detected_ctrl
;
818 update
= ldev
->switch_on_lineout
;
820 ldev
->gpio
.methods
->set_speakers(&ldev
->gpio
, !v
);
821 ldev
->gpio
.methods
->set_headphone(&ldev
->gpio
, 0);
822 ldev
->gpio
.methods
->set_lineout(&ldev
->gpio
, v
);
828 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &detected
->id
);
830 c
= ldev
->headphone_ctrl
;
832 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &c
->id
);
833 c
= ldev
->speaker_ctrl
;
835 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &c
->id
);
836 c
= ldev
->lineout_ctrl
;
838 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
, &c
->id
);
842 static void layout_attached_codec(struct aoa_codec
*codec
)
844 struct codec_connection
*cc
;
845 struct snd_kcontrol
*ctl
;
846 int headphones
, lineout
;
847 struct layout_dev
*ldev
= layout_device
;
849 /* need to add this codec to our codec array! */
851 cc
= codec
->fabric_data
;
853 headphones
= codec
->gpio
->methods
->get_detect(codec
->gpio
,
854 AOA_NOTIFY_HEADPHONE
);
855 lineout
= codec
->gpio
->methods
->get_detect(codec
->gpio
,
856 AOA_NOTIFY_LINE_OUT
);
858 while (cc
->connected
) {
859 if (cc
->connected
& CC_SPEAKERS
) {
860 if (headphones
<= 0 && lineout
<= 0)
861 ldev
->gpio
.methods
->set_speakers(codec
->gpio
, 1);
862 ctl
= snd_ctl_new1(&speakers_ctl
, codec
->gpio
);
863 ldev
->speaker_ctrl
= ctl
;
864 aoa_snd_ctl_add(ctl
);
866 if (cc
->connected
& CC_HEADPHONE
) {
868 ldev
->gpio
.methods
->set_headphone(codec
->gpio
, 1);
869 ctl
= snd_ctl_new1(&headphone_ctl
, codec
->gpio
);
870 ldev
->headphone_ctrl
= ctl
;
871 aoa_snd_ctl_add(ctl
);
872 ldev
->have_headphone_detect
=
874 ->set_notify(&ldev
->gpio
,
875 AOA_NOTIFY_HEADPHONE
,
877 &ldev
->selfptr_headphone
);
878 if (ldev
->have_headphone_detect
) {
879 ctl
= snd_ctl_new1(&headphone_detect_choice
,
881 aoa_snd_ctl_add(ctl
);
882 ctl
= snd_ctl_new1(&headphone_detected
,
884 ldev
->headphone_detected_ctrl
= ctl
;
885 aoa_snd_ctl_add(ctl
);
888 if (cc
->connected
& CC_LINEOUT
) {
890 ldev
->gpio
.methods
->set_lineout(codec
->gpio
, 1);
891 ctl
= snd_ctl_new1(&lineout_ctl
, codec
->gpio
);
892 if (cc
->connected
& CC_LINEOUT_LABELLED_HEADPHONE
)
893 strlcpy(ctl
->id
.name
,
894 "Headphone Switch", sizeof(ctl
->id
.name
));
895 ldev
->lineout_ctrl
= ctl
;
896 aoa_snd_ctl_add(ctl
);
897 ldev
->have_lineout_detect
=
899 ->set_notify(&ldev
->gpio
,
902 &ldev
->selfptr_lineout
);
903 if (ldev
->have_lineout_detect
) {
904 ctl
= snd_ctl_new1(&lineout_detect_choice
,
906 if (cc
->connected
& CC_LINEOUT_LABELLED_HEADPHONE
)
907 strlcpy(ctl
->id
.name
,
908 "Headphone Detect Autoswitch",
909 sizeof(ctl
->id
.name
));
910 aoa_snd_ctl_add(ctl
);
911 ctl
= snd_ctl_new1(&lineout_detected
,
913 if (cc
->connected
& CC_LINEOUT_LABELLED_HEADPHONE
)
914 strlcpy(ctl
->id
.name
,
915 "Headphone Detected",
916 sizeof(ctl
->id
.name
));
917 ldev
->lineout_detected_ctrl
= ctl
;
918 aoa_snd_ctl_add(ctl
);
923 /* now update initial state */
924 if (ldev
->have_headphone_detect
)
925 layout_notify(&ldev
->selfptr_headphone
);
926 if (ldev
->have_lineout_detect
)
927 layout_notify(&ldev
->selfptr_lineout
);
930 static struct aoa_fabric layout_fabric
= {
931 .name
= "SoundByLayout",
932 .owner
= THIS_MODULE
,
933 .found_codec
= layout_found_codec
,
934 .remove_codec
= layout_remove_codec
,
935 .attached_codec
= layout_attached_codec
,
938 static int aoa_fabric_layout_probe(struct soundbus_dev
*sdev
)
940 struct device_node
*sound
= NULL
;
941 const unsigned int *layout_id
;
942 struct layout
*layout
;
943 struct layout_dev
*ldev
= NULL
;
946 /* hm, currently we can only have one ... */
950 /* by breaking out we keep a reference */
951 while ((sound
= of_get_next_child(sdev
->ofdev
.node
, sound
))) {
952 if (sound
->type
&& strcasecmp(sound
->type
, "soundchip") == 0)
955 if (!sound
) return -ENODEV
;
957 layout_id
= of_get_property(sound
, "layout-id", NULL
);
960 printk(KERN_INFO
"snd-aoa-fabric-layout: found bus with layout %d\n",
963 layout
= find_layout_by_id(*layout_id
);
965 printk(KERN_ERR
"snd-aoa-fabric-layout: unknown layout\n");
969 ldev
= kzalloc(sizeof(struct layout_dev
), GFP_KERNEL
);
973 layout_device
= ldev
;
976 ldev
->layout
= layout
;
977 ldev
->gpio
.node
= sound
->parent
;
978 switch (layout
->layout_id
) {
979 case 41: /* that unknown machine no one seems to have */
980 case 51: /* PowerBook5,4 */
981 case 58: /* Mac Mini */
982 ldev
->gpio
.methods
= ftr_gpio_methods
;
984 "snd-aoa-fabric-layout: Using direct GPIOs\n");
987 ldev
->gpio
.methods
= pmf_gpio_methods
;
989 "snd-aoa-fabric-layout: Using PMF GPIOs\n");
991 ldev
->selfptr_headphone
.ptr
= ldev
;
992 ldev
->selfptr_lineout
.ptr
= ldev
;
993 sdev
->ofdev
.dev
.driver_data
= ldev
;
994 list_add(&ldev
->list
, &layouts_list
);
995 layouts_list_items
++;
997 /* assign these before registering ourselves, so
998 * callbacks that are done during registration
999 * already have the values */
1000 sdev
->pcmid
= ldev
->layout
->pcmid
;
1001 if (ldev
->layout
->busname
) {
1002 sdev
->pcmname
= ldev
->layout
->busname
;
1004 sdev
->pcmname
= "Master";
1007 ldev
->gpio
.methods
->init(&ldev
->gpio
);
1009 err
= aoa_fabric_register(&layout_fabric
, &sdev
->ofdev
.dev
);
1010 if (err
&& err
!= -EALREADY
) {
1011 printk(KERN_INFO
"snd-aoa-fabric-layout: can't use,"
1012 " another fabric is active!\n");
1017 ldev
->switch_on_headphone
= 1;
1018 ldev
->switch_on_lineout
= 1;
1021 /* we won't be using these then... */
1022 ldev
->gpio
.methods
->exit(&ldev
->gpio
);
1023 /* reset if we didn't use it */
1024 sdev
->pcmname
= NULL
;
1026 list_del(&ldev
->list
);
1027 layouts_list_items
--;
1030 layout_device
= NULL
;
1035 static int aoa_fabric_layout_remove(struct soundbus_dev
*sdev
)
1037 struct layout_dev
*ldev
= sdev
->ofdev
.dev
.driver_data
;
1040 for (i
=0; i
<MAX_CODECS_PER_BUS
; i
++) {
1041 if (ldev
->codecs
[i
]) {
1042 aoa_fabric_unlink_codec(ldev
->codecs
[i
]);
1044 ldev
->codecs
[i
] = NULL
;
1046 list_del(&ldev
->list
);
1047 layouts_list_items
--;
1048 of_node_put(ldev
->sound
);
1050 ldev
->gpio
.methods
->set_notify(&ldev
->gpio
,
1051 AOA_NOTIFY_HEADPHONE
,
1054 ldev
->gpio
.methods
->set_notify(&ldev
->gpio
,
1055 AOA_NOTIFY_LINE_OUT
,
1059 ldev
->gpio
.methods
->exit(&ldev
->gpio
);
1060 layout_device
= NULL
;
1063 sdev
->pcmname
= NULL
;
1068 static int aoa_fabric_layout_suspend(struct soundbus_dev
*sdev
, pm_message_t state
)
1070 struct layout_dev
*ldev
= sdev
->ofdev
.dev
.driver_data
;
1072 if (ldev
->gpio
.methods
&& ldev
->gpio
.methods
->all_amps_off
)
1073 ldev
->gpio
.methods
->all_amps_off(&ldev
->gpio
);
1078 static int aoa_fabric_layout_resume(struct soundbus_dev
*sdev
)
1080 struct layout_dev
*ldev
= sdev
->ofdev
.dev
.driver_data
;
1082 if (ldev
->gpio
.methods
&& ldev
->gpio
.methods
->all_amps_off
)
1083 ldev
->gpio
.methods
->all_amps_restore(&ldev
->gpio
);
1089 static struct soundbus_driver aoa_soundbus_driver
= {
1090 .name
= "snd_aoa_soundbus_drv",
1091 .owner
= THIS_MODULE
,
1092 .probe
= aoa_fabric_layout_probe
,
1093 .remove
= aoa_fabric_layout_remove
,
1095 .suspend
= aoa_fabric_layout_suspend
,
1096 .resume
= aoa_fabric_layout_resume
,
1099 .owner
= THIS_MODULE
,
1103 static int __init
aoa_fabric_layout_init(void)
1107 err
= soundbus_register_driver(&aoa_soundbus_driver
);
1113 static void __exit
aoa_fabric_layout_exit(void)
1115 soundbus_unregister_driver(&aoa_soundbus_driver
);
1116 aoa_fabric_unregister(&layout_fabric
);
1119 module_init(aoa_fabric_layout_init
);
1120 module_exit(aoa_fabric_layout_exit
);