2 * ALSA interface to cx18 PCM capture streams
4 * Copyright (C) 2009 Andy Walls <awalls@md.metrocast.net>
5 * Copyright (C) 2009 Devin Heitmueller <dheitmueller@kernellabs.com>
7 * Portions of this work were sponsored by ONELAN Limited.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include <linux/init.h>
21 #include <linux/slab.h>
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/device.h>
25 #include <linux/spinlock.h>
27 #include <media/v4l2-device.h>
29 #include <sound/core.h>
30 #include <sound/initval.h>
32 #include "cx18-driver.h"
33 #include "cx18-version.h"
34 #include "cx18-alsa.h"
35 #include "cx18-alsa-pcm.h"
39 #define CX18_DEBUG_ALSA_INFO(fmt, arg...) \
41 if (cx18_alsa_debug & 2) \
42 printk(KERN_INFO "%s: " fmt, "cx18-alsa", ## arg); \
45 module_param_named(debug
, cx18_alsa_debug
, int, 0644);
46 MODULE_PARM_DESC(debug
,
47 "Debug level (bitmask). Default: 0\n"
48 "\t\t\t 1/0x0001: warning\n"
49 "\t\t\t 2/0x0002: info\n");
51 MODULE_AUTHOR("Andy Walls");
52 MODULE_DESCRIPTION("CX23418 ALSA Interface");
53 MODULE_SUPPORTED_DEVICE("CX23418 MPEG2 encoder");
54 MODULE_LICENSE("GPL");
56 MODULE_VERSION(CX18_VERSION
);
59 struct snd_cx18_card
*to_snd_cx18_card(struct v4l2_device
*v4l2_dev
)
61 return to_cx18(v4l2_dev
)->alsa
;
65 struct snd_cx18_card
*p_to_snd_cx18_card(struct v4l2_device
**v4l2_dev
)
67 return container_of(v4l2_dev
, struct snd_cx18_card
, v4l2_dev
);
70 static void snd_cx18_card_free(struct snd_cx18_card
*cxsc
)
75 if (cxsc
->v4l2_dev
!= NULL
)
76 to_cx18(cxsc
->v4l2_dev
)->alsa
= NULL
;
78 /* FIXME - take any other stopping actions needed */
83 static void snd_cx18_card_private_free(struct snd_card
*sc
)
87 snd_cx18_card_free(sc
->private_data
);
88 sc
->private_data
= NULL
;
89 sc
->private_free
= NULL
;
92 static int snd_cx18_card_create(struct v4l2_device
*v4l2_dev
,
94 struct snd_cx18_card
**cxsc
)
96 *cxsc
= kzalloc(sizeof(struct snd_cx18_card
), GFP_KERNEL
);
100 (*cxsc
)->v4l2_dev
= v4l2_dev
;
103 sc
->private_data
= *cxsc
;
104 sc
->private_free
= snd_cx18_card_private_free
;
109 static int snd_cx18_card_set_names(struct snd_cx18_card
*cxsc
)
111 struct cx18
*cx
= to_cx18(cxsc
->v4l2_dev
);
112 struct snd_card
*sc
= cxsc
->sc
;
114 /* sc->driver is used by alsa-lib's configurator: simple, unique */
115 strlcpy(sc
->driver
, "CX23418", sizeof(sc
->driver
));
117 /* sc->shortname is a symlink in /proc/asound: CX18-M -> cardN */
118 snprintf(sc
->shortname
, sizeof(sc
->shortname
), "CX18-%d",
121 /* sc->longname is read from /proc/asound/cards */
122 snprintf(sc
->longname
, sizeof(sc
->longname
),
123 "CX23418 #%d %s TV/FM Radio/Line-In Capture",
124 cx
->instance
, cx
->card_name
);
129 static int snd_cx18_init(struct v4l2_device
*v4l2_dev
)
131 struct cx18
*cx
= to_cx18(v4l2_dev
);
132 struct snd_card
*sc
= NULL
;
133 struct snd_cx18_card
*cxsc
;
136 /* Numbrs steps from "Writing an ALSA Driver" by Takashi Iwai */
138 /* (1) Check and increment the device index */
139 /* This is a no-op for us. We'll use the cx->instance */
141 /* (2) Create a card instance */
142 ret
= snd_card_new(&cx
->pci_dev
->dev
,
143 SNDRV_DEFAULT_IDX1
, /* use first available id */
144 SNDRV_DEFAULT_STR1
, /* xid from end of shortname*/
145 THIS_MODULE
, 0, &sc
);
147 CX18_ALSA_ERR("%s: snd_card_new() failed with err %d\n",
152 /* (3) Create a main component */
153 ret
= snd_cx18_card_create(v4l2_dev
, sc
, &cxsc
);
155 CX18_ALSA_ERR("%s: snd_cx18_card_create() failed with err %d\n",
160 /* (4) Set the driver ID and name strings */
161 snd_cx18_card_set_names(cxsc
);
164 ret
= snd_cx18_pcm_create(cxsc
);
166 CX18_ALSA_ERR("%s: snd_cx18_pcm_create() failed with err %d\n",
170 /* FIXME - proc files */
172 /* (7) Set the driver data and return 0 */
173 /* We do this out of normal order for PCI drivers to avoid races */
176 /* (6) Register the card instance */
177 ret
= snd_card_register(sc
);
180 CX18_ALSA_ERR("%s: snd_card_register() failed with err %d\n",
195 static int cx18_alsa_load(struct cx18
*cx
)
197 struct v4l2_device
*v4l2_dev
= &cx
->v4l2_dev
;
198 struct cx18_stream
*s
;
200 if (v4l2_dev
== NULL
) {
201 printk(KERN_ERR
"cx18-alsa: %s: struct v4l2_device * is NULL\n",
206 cx
= to_cx18(v4l2_dev
);
208 printk(KERN_ERR
"cx18-alsa cx is NULL\n");
212 s
= &cx
->streams
[CX18_ENC_STREAM_TYPE_PCM
];
213 if (s
->video_dev
.v4l2_dev
== NULL
) {
214 CX18_DEBUG_ALSA_INFO("%s: PCM stream for card is disabled - skipping\n",
219 if (cx
->alsa
!= NULL
) {
220 CX18_ALSA_ERR("%s: struct snd_cx18_card * already exists\n",
225 if (snd_cx18_init(v4l2_dev
)) {
226 CX18_ALSA_ERR("%s: failed to create struct snd_cx18_card\n",
229 CX18_DEBUG_ALSA_INFO("%s: created cx18 ALSA interface instance\n",
235 static int __init
cx18_alsa_init(void)
237 printk(KERN_INFO
"cx18-alsa: module loading...\n");
238 cx18_ext_init
= &cx18_alsa_load
;
242 static void __exit
snd_cx18_exit(struct snd_cx18_card
*cxsc
)
244 struct cx18
*cx
= to_cx18(cxsc
->v4l2_dev
);
246 /* FIXME - pointer checks & shutdown cxsc */
248 snd_card_free(cxsc
->sc
);
252 static int __exit
cx18_alsa_exit_callback(struct device
*dev
, void *data
)
254 struct v4l2_device
*v4l2_dev
= dev_get_drvdata(dev
);
255 struct snd_cx18_card
*cxsc
;
257 if (v4l2_dev
== NULL
) {
258 printk(KERN_ERR
"cx18-alsa: %s: struct v4l2_device * is NULL\n",
263 cxsc
= to_snd_cx18_card(v4l2_dev
);
265 CX18_ALSA_WARN("%s: struct snd_cx18_card * is NULL\n",
274 static void __exit
cx18_alsa_exit(void)
276 struct device_driver
*drv
;
279 printk(KERN_INFO
"cx18-alsa: module unloading...\n");
281 drv
= driver_find("cx18", &pci_bus_type
);
282 ret
= driver_for_each_device(drv
, NULL
, NULL
, cx18_alsa_exit_callback
);
283 (void)ret
; /* suppress compiler warning */
285 cx18_ext_init
= NULL
;
286 printk(KERN_INFO
"cx18-alsa: module unload complete\n");
289 module_init(cx18_alsa_init
);
290 module_exit(cx18_alsa_exit
);