ccwgroup: move attributes to attribute group
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / sound / core / jack.c
blobf705eec7372a32aad6187651cc393c69c2ce7e78
1 /*
2 * Jack abstraction layer
4 * Copyright 2008 Wolfson Microelectronics
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <linux/input.h>
23 #include <sound/jack.h>
24 #include <sound/core.h>
26 static int jack_types[] = {
27 SW_HEADPHONE_INSERT,
28 SW_MICROPHONE_INSERT,
29 SW_LINEOUT_INSERT,
30 SW_JACK_PHYSICAL_INSERT,
31 SW_VIDEOOUT_INSERT,
34 static int snd_jack_dev_free(struct snd_device *device)
36 struct snd_jack *jack = device->device_data;
38 if (jack->private_free)
39 jack->private_free(jack);
41 /* If the input device is registered with the input subsystem
42 * then we need to use a different deallocator. */
43 if (jack->registered)
44 input_unregister_device(jack->input_dev);
45 else
46 input_free_device(jack->input_dev);
48 kfree(jack->id);
49 kfree(jack);
51 return 0;
54 static int snd_jack_dev_register(struct snd_device *device)
56 struct snd_jack *jack = device->device_data;
57 struct snd_card *card = device->card;
58 int err;
60 snprintf(jack->name, sizeof(jack->name), "%s %s",
61 card->shortname, jack->id);
62 jack->input_dev->name = jack->name;
64 /* Default to the sound card device. */
65 if (!jack->input_dev->dev.parent)
66 jack->input_dev->dev.parent = snd_card_get_device_link(card);
68 err = input_register_device(jack->input_dev);
69 if (err == 0)
70 jack->registered = 1;
72 return err;
75 /**
76 * snd_jack_new - Create a new jack
77 * @card: the card instance
78 * @id: an identifying string for this jack
79 * @type: a bitmask of enum snd_jack_type values that can be detected by
80 * this jack
81 * @jjack: Used to provide the allocated jack object to the caller.
83 * Creates a new jack object.
85 * Returns zero if successful, or a negative error code on failure.
86 * On success jjack will be initialised.
88 int snd_jack_new(struct snd_card *card, const char *id, int type,
89 struct snd_jack **jjack)
91 struct snd_jack *jack;
92 int err;
93 int i;
94 static struct snd_device_ops ops = {
95 .dev_free = snd_jack_dev_free,
96 .dev_register = snd_jack_dev_register,
99 jack = kzalloc(sizeof(struct snd_jack), GFP_KERNEL);
100 if (jack == NULL)
101 return -ENOMEM;
103 jack->id = kstrdup(id, GFP_KERNEL);
105 jack->input_dev = input_allocate_device();
106 if (jack->input_dev == NULL) {
107 err = -ENOMEM;
108 goto fail_input;
111 jack->input_dev->phys = "ALSA";
113 jack->type = type;
115 for (i = 0; i < ARRAY_SIZE(jack_types); i++)
116 if (type & (1 << i))
117 input_set_capability(jack->input_dev, EV_SW,
118 jack_types[i]);
120 err = snd_device_new(card, SNDRV_DEV_JACK, jack, &ops);
121 if (err < 0)
122 goto fail_input;
124 *jjack = jack;
126 return 0;
128 fail_input:
129 input_free_device(jack->input_dev);
130 kfree(jack);
131 return err;
133 EXPORT_SYMBOL(snd_jack_new);
136 * snd_jack_set_parent - Set the parent device for a jack
138 * @jack: The jack to configure
139 * @parent: The device to set as parent for the jack.
141 * Set the parent for the jack input device in the device tree. This
142 * function is only valid prior to registration of the jack. If no
143 * parent is configured then the parent device will be the sound card.
145 void snd_jack_set_parent(struct snd_jack *jack, struct device *parent)
147 WARN_ON(jack->registered);
149 jack->input_dev->dev.parent = parent;
151 EXPORT_SYMBOL(snd_jack_set_parent);
154 * snd_jack_report - Report the current status of a jack
156 * @jack: The jack to report status for
157 * @status: The current status of the jack
159 void snd_jack_report(struct snd_jack *jack, int status)
161 int i;
163 if (!jack)
164 return;
166 for (i = 0; i < ARRAY_SIZE(jack_types); i++) {
167 int testbit = 1 << i;
168 if (jack->type & testbit)
169 input_report_switch(jack->input_dev, jack_types[i],
170 status & testbit);
173 input_sync(jack->input_dev);
175 EXPORT_SYMBOL(snd_jack_report);
177 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
178 MODULE_DESCRIPTION("Jack detection support for ALSA");
179 MODULE_LICENSE("GPL");