ALSA: hda - Add pin configs for ASUS mobo with IDT 92HD73XX codec
[deliverable/linux.git] / sound / firewire / oxfw / oxfw.c
CommitLineData
31ef9134 1/*
8832c5a7 2 * oxfw.c - a part of driver for OXFW970/971 based devices
31ef9134
CL
3 *
4 * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
5 * Licensed under the terms of the GNU General Public License, version 2.
6 */
7
e2786ca6 8#include "oxfw.h"
31ef9134
CL
9
10#define OXFORD_FIRMWARE_ID_ADDRESS (CSR_REGISTER_BASE + 0x50000)
11/* 0x970?vvvv or 0x971?vvvv, where vvvv = firmware version */
12
13#define OXFORD_HARDWARE_ID_ADDRESS (CSR_REGISTER_BASE + 0x90020)
14#define OXFORD_HARDWARE_ID_OXFW970 0x39443841
15#define OXFORD_HARDWARE_ID_OXFW971 0x39373100
16
ec4dba50 17#define VENDOR_LOUD 0x000ff2
31ef9134 18#define VENDOR_GRIFFIN 0x001292
ec4dba50 19#define VENDOR_BEHRINGER 0x001564
31ef9134
CL
20#define VENDOR_LACIE 0x00d04b
21
22#define SPECIFIER_1394TA 0x00a02d
23#define VERSION_AVC 0x010001
24
8832c5a7 25MODULE_DESCRIPTION("Oxford Semiconductor FW970/971 driver");
31ef9134
CL
26MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
27MODULE_LICENSE("GPL v2");
8832c5a7 28MODULE_ALIAS("snd-firewire-speakers");
31ef9134 29
ec4dba50
TS
30static bool detect_loud_models(struct fw_unit *unit)
31{
32 const char *const models[] = {
33 "Onyxi",
34 "Onyx-i",
35 "d.Pro",
36 "Mackie Onyx Satellite",
37 "Tapco LINK.firewire 4x6",
38 "U.420"};
39 char model[32];
40 unsigned int i;
41 int err;
42
43 err = fw_csr_string(unit->directory, CSR_MODEL,
44 model, sizeof(model));
45 if (err < 0)
0d3aba30 46 return false;
ec4dba50
TS
47
48 for (i = 0; i < ARRAY_SIZE(models); i++) {
49 if (strcmp(models[i], model) == 0)
50 break;
51 }
52
53 return (i < ARRAY_SIZE(models));
54}
55
fec7b753 56static int name_card(struct snd_oxfw *oxfw)
31ef9134 57{
fec7b753 58 struct fw_device *fw_dev = fw_parent_device(oxfw->unit);
ec4dba50
TS
59 char vendor[24];
60 char model[32];
fec7b753
TS
61 const char *d, *v, *m;
62 u32 firmware;
31ef9134
CL
63 int err;
64
ec4dba50
TS
65 /* get vendor name from root directory */
66 err = fw_csr_string(fw_dev->config_rom + 5, CSR_VENDOR,
67 vendor, sizeof(vendor));
68 if (err < 0)
69 goto end;
70
71 /* get model name from unit directory */
72 err = fw_csr_string(oxfw->unit->directory, CSR_MODEL,
73 model, sizeof(model));
74 if (err < 0)
75 goto end;
76
fec7b753
TS
77 err = snd_fw_transaction(oxfw->unit, TCODE_READ_QUADLET_REQUEST,
78 OXFORD_FIRMWARE_ID_ADDRESS, &firmware, 4, 0);
79 if (err < 0)
80 goto end;
81 be32_to_cpus(&firmware);
82
ec4dba50
TS
83 /* to apply card definitions */
84 if (oxfw->device_info) {
85 d = oxfw->device_info->driver_name;
86 v = oxfw->device_info->vendor_name;
87 m = oxfw->device_info->model_name;
88 } else {
89 d = "OXFW";
90 v = vendor;
91 m = model;
92 }
fec7b753
TS
93
94 strcpy(oxfw->card->driver, d);
95 strcpy(oxfw->card->mixername, m);
96 strcpy(oxfw->card->shortname, m);
97
98 snprintf(oxfw->card->longname, sizeof(oxfw->card->longname),
99 "%s %s (OXFW%x %04x), GUID %08x%08x at %s, S%d",
100 v, m, firmware >> 20, firmware & 0xffff,
101 fw_dev->config_rom[3], fw_dev->config_rom[4],
102 dev_name(&oxfw->unit->device), 100 << fw_dev->max_speed);
103end:
104 return err;
31ef9134
CL
105}
106
8832c5a7 107static void oxfw_card_free(struct snd_card *card)
31ef9134 108{
8832c5a7 109 struct snd_oxfw *oxfw = card->private_data;
5cd1d3f4
TS
110 unsigned int i;
111
b0ac0009
TS
112 for (i = 0; i < SND_OXFW_STREAM_FORMAT_ENTRIES; i++) {
113 kfree(oxfw->tx_stream_formats[i]);
5cd1d3f4 114 kfree(oxfw->rx_stream_formats[i]);
b0ac0009 115 }
31ef9134 116
8832c5a7 117 mutex_destroy(&oxfw->mutex);
31ef9134
CL
118}
119
8832c5a7 120static int oxfw_probe(struct fw_unit *unit,
94a87157 121 const struct ieee1394_device_id *id)
31ef9134 122{
31ef9134 123 struct snd_card *card;
8832c5a7 124 struct snd_oxfw *oxfw;
31ef9134
CL
125 int err;
126
ec4dba50
TS
127 if ((id->vendor_id == VENDOR_LOUD) && !detect_loud_models(unit))
128 return -ENODEV;
129
06b45f00 130 err = snd_card_new(&unit->device, -1, NULL, THIS_MODULE,
8832c5a7 131 sizeof(*oxfw), &card);
31ef9134
CL
132 if (err < 0)
133 return err;
31ef9134 134
e2786ca6 135 card->private_free = oxfw_card_free;
8832c5a7
TS
136 oxfw = card->private_data;
137 oxfw->card = card;
138 mutex_init(&oxfw->mutex);
e2786ca6 139 oxfw->unit = unit;
8832c5a7 140 oxfw->device_info = (const struct device_info *)id->driver_data;
05588d34 141 spin_lock_init(&oxfw->lock);
8985f4ac 142 init_waitqueue_head(&oxfw->hwdep_wait);
31ef9134 143
5cd1d3f4
TS
144 err = snd_oxfw_stream_discover(oxfw);
145 if (err < 0)
146 goto error;
147
fec7b753
TS
148 err = name_card(oxfw);
149 if (err < 0)
150 goto error;
31ef9134 151
3713d93a 152 err = snd_oxfw_create_pcm(oxfw);
31ef9134
CL
153 if (err < 0)
154 goto error;
155
ec4dba50
TS
156 if (oxfw->device_info) {
157 err = snd_oxfw_create_mixer(oxfw);
158 if (err < 0)
159 goto error;
160 }
31ef9134 161
3c96101f
TS
162 snd_oxfw_proc_init(oxfw);
163
05588d34
TS
164 err = snd_oxfw_create_midi(oxfw);
165 if (err < 0)
166 goto error;
167
8985f4ac
TS
168 err = snd_oxfw_create_hwdep(oxfw);
169 if (err < 0)
170 goto error;
171
b0ac0009 172 err = snd_oxfw_stream_init_simplex(oxfw, &oxfw->rx_stream);
31ef9134
CL
173 if (err < 0)
174 goto error;
b0ac0009
TS
175 if (oxfw->has_output) {
176 err = snd_oxfw_stream_init_simplex(oxfw, &oxfw->tx_stream);
177 if (err < 0)
178 goto error;
179 }
31ef9134 180
e2786ca6
TS
181 err = snd_card_register(card);
182 if (err < 0) {
b0ac0009
TS
183 snd_oxfw_stream_destroy_simplex(oxfw, &oxfw->rx_stream);
184 if (oxfw->has_output)
185 snd_oxfw_stream_destroy_simplex(oxfw, &oxfw->tx_stream);
e2786ca6
TS
186 goto error;
187 }
8832c5a7 188 dev_set_drvdata(&unit->device, oxfw);
31ef9134
CL
189
190 return 0;
31ef9134
CL
191error:
192 snd_card_free(card);
193 return err;
194}
195
8832c5a7 196static void oxfw_bus_reset(struct fw_unit *unit)
31ef9134 197{
8832c5a7 198 struct snd_oxfw *oxfw = dev_get_drvdata(&unit->device);
31ef9134 199
8832c5a7 200 fcp_bus_reset(oxfw->unit);
31ef9134 201
e2786ca6 202 mutex_lock(&oxfw->mutex);
b0ac0009
TS
203
204 snd_oxfw_stream_update_simplex(oxfw, &oxfw->rx_stream);
205 if (oxfw->has_output)
206 snd_oxfw_stream_update_simplex(oxfw, &oxfw->tx_stream);
207
e2786ca6 208 mutex_unlock(&oxfw->mutex);
31ef9134
CL
209}
210
8832c5a7 211static void oxfw_remove(struct fw_unit *unit)
94a87157 212{
8832c5a7 213 struct snd_oxfw *oxfw = dev_get_drvdata(&unit->device);
94a87157 214
8832c5a7 215 snd_card_disconnect(oxfw->card);
94a87157 216
b0ac0009
TS
217 snd_oxfw_stream_destroy_simplex(oxfw, &oxfw->rx_stream);
218 if (oxfw->has_output)
219 snd_oxfw_stream_destroy_simplex(oxfw, &oxfw->tx_stream);
94a87157 220
8832c5a7 221 snd_card_free_when_closed(oxfw->card);
94a87157
SR
222}
223
224static const struct device_info griffin_firewave = {
225 .driver_name = "FireWave",
fec7b753
TS
226 .vendor_name = "Griffin",
227 .model_name = "FireWave",
94a87157
SR
228 .mixer_channels = 6,
229 .mute_fb_id = 0x01,
230 .volume_fb_id = 0x02,
231};
232
233static const struct device_info lacie_speakers = {
234 .driver_name = "FWSpeakers",
fec7b753
TS
235 .vendor_name = "LaCie",
236 .model_name = "FireWire Speakers",
94a87157
SR
237 .mixer_channels = 1,
238 .mute_fb_id = 0x01,
239 .volume_fb_id = 0x01,
240};
241
8832c5a7 242static const struct ieee1394_device_id oxfw_id_table[] = {
31ef9134
CL
243 {
244 .match_flags = IEEE1394_MATCH_VENDOR_ID |
245 IEEE1394_MATCH_MODEL_ID |
246 IEEE1394_MATCH_SPECIFIER_ID |
247 IEEE1394_MATCH_VERSION,
248 .vendor_id = VENDOR_GRIFFIN,
249 .model_id = 0x00f970,
250 .specifier_id = SPECIFIER_1394TA,
251 .version = VERSION_AVC,
94a87157 252 .driver_data = (kernel_ulong_t)&griffin_firewave,
31ef9134
CL
253 },
254 {
255 .match_flags = IEEE1394_MATCH_VENDOR_ID |
256 IEEE1394_MATCH_MODEL_ID |
257 IEEE1394_MATCH_SPECIFIER_ID |
258 IEEE1394_MATCH_VERSION,
259 .vendor_id = VENDOR_LACIE,
260 .model_id = 0x00f970,
261 .specifier_id = SPECIFIER_1394TA,
262 .version = VERSION_AVC,
94a87157 263 .driver_data = (kernel_ulong_t)&lacie_speakers,
31ef9134 264 },
ec4dba50
TS
265 /* Behringer,F-Control Audio 202 */
266 {
267 .match_flags = IEEE1394_MATCH_VENDOR_ID |
268 IEEE1394_MATCH_MODEL_ID,
269 .vendor_id = VENDOR_BEHRINGER,
270 .model_id = 0x00fc22,
271 },
272 /*
273 * Any Mackie(Loud) models (name string/model id):
274 * Onyx-i series (former models): 0x081216
275 * Mackie Onyx Satellite: 0x00200f
276 * Tapco LINK.firewire 4x6: 0x000460
277 * d.2 pro: Unknown
278 * d.4 pro: Unknown
279 * U.420: Unknown
280 * U.420d: Unknown
281 */
282 {
283 .match_flags = IEEE1394_MATCH_VENDOR_ID |
284 IEEE1394_MATCH_SPECIFIER_ID |
285 IEEE1394_MATCH_VERSION,
286 .vendor_id = VENDOR_LOUD,
287 .specifier_id = SPECIFIER_1394TA,
288 .version = VERSION_AVC,
289 },
31ef9134
CL
290 { }
291};
8832c5a7 292MODULE_DEVICE_TABLE(ieee1394, oxfw_id_table);
31ef9134 293
8832c5a7 294static struct fw_driver oxfw_driver = {
31ef9134
CL
295 .driver = {
296 .owner = THIS_MODULE,
297 .name = KBUILD_MODNAME,
298 .bus = &fw_bus_type,
31ef9134 299 },
8832c5a7
TS
300 .probe = oxfw_probe,
301 .update = oxfw_bus_reset,
302 .remove = oxfw_remove,
303 .id_table = oxfw_id_table,
31ef9134
CL
304};
305
8832c5a7 306static int __init snd_oxfw_init(void)
31ef9134 307{
8832c5a7 308 return driver_register(&oxfw_driver.driver);
31ef9134
CL
309}
310
8832c5a7 311static void __exit snd_oxfw_exit(void)
31ef9134 312{
8832c5a7 313 driver_unregister(&oxfw_driver.driver);
31ef9134
CL
314}
315
8832c5a7
TS
316module_init(snd_oxfw_init);
317module_exit(snd_oxfw_exit);
This page took 0.245666 seconds and 5 git commands to generate.