1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * ALSA interface to cx18 PCM capture streams
5 * Copyright (C) 2009 Andy Walls <awalls@md.metrocast.net>
6 * Copyright (C) 2009 Devin Heitmueller <dheitmueller@kernellabs.com>
8 * Portions of this work were sponsored by ONELAN Limited.
11 #include <linux/init.h>
12 #include <linux/slab.h>
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/device.h>
16 #include <linux/spinlock.h>
18 #include <media/v4l2-device.h>
20 #include <sound/core.h>
21 #include <sound/initval.h>
23 #include "cx18-driver.h"
24 #include "cx18-version.h"
25 #include "cx18-alsa.h"
26 #include "cx18-alsa-pcm.h"
30 #define CX18_DEBUG_ALSA_INFO(fmt, arg...) \
32 if (cx18_alsa_debug & 2) \
33 printk(KERN_INFO "%s: " fmt, "cx18-alsa", ## arg); \
36 module_param_named(debug
, cx18_alsa_debug
, int, 0644);
37 MODULE_PARM_DESC(debug
,
38 "Debug level (bitmask). Default: 0\n"
39 "\t\t\t 1/0x0001: warning\n"
40 "\t\t\t 2/0x0002: info\n");
42 MODULE_AUTHOR("Andy Walls");
43 MODULE_DESCRIPTION("CX23418 ALSA Interface");
44 MODULE_LICENSE("GPL");
46 MODULE_VERSION(CX18_VERSION
);
49 struct snd_cx18_card
*to_snd_cx18_card(struct v4l2_device
*v4l2_dev
)
51 return to_cx18(v4l2_dev
)->alsa
;
54 static void snd_cx18_card_free(struct snd_cx18_card
*cxsc
)
59 if (cxsc
->v4l2_dev
!= NULL
)
60 to_cx18(cxsc
->v4l2_dev
)->alsa
= NULL
;
62 /* FIXME - take any other stopping actions needed */
67 static void snd_cx18_card_private_free(struct snd_card
*sc
)
71 snd_cx18_card_free(sc
->private_data
);
72 sc
->private_data
= NULL
;
73 sc
->private_free
= NULL
;
76 static int snd_cx18_card_create(struct v4l2_device
*v4l2_dev
,
78 struct snd_cx18_card
**cxsc
)
80 *cxsc
= kzalloc(sizeof(struct snd_cx18_card
), GFP_KERNEL
);
84 (*cxsc
)->v4l2_dev
= v4l2_dev
;
87 sc
->private_data
= *cxsc
;
88 sc
->private_free
= snd_cx18_card_private_free
;
93 static int snd_cx18_card_set_names(struct snd_cx18_card
*cxsc
)
95 struct cx18
*cx
= to_cx18(cxsc
->v4l2_dev
);
96 struct snd_card
*sc
= cxsc
->sc
;
98 /* sc->driver is used by alsa-lib's configurator: simple, unique */
99 strscpy(sc
->driver
, "CX23418", sizeof(sc
->driver
));
101 /* sc->shortname is a symlink in /proc/asound: CX18-M -> cardN */
102 snprintf(sc
->shortname
, sizeof(sc
->shortname
), "CX18-%d",
105 /* sc->longname is read from /proc/asound/cards */
106 snprintf(sc
->longname
, sizeof(sc
->longname
),
107 "CX23418 #%d %s TV/FM Radio/Line-In Capture",
108 cx
->instance
, cx
->card_name
);
113 static int snd_cx18_init(struct v4l2_device
*v4l2_dev
)
115 struct cx18
*cx
= to_cx18(v4l2_dev
);
116 struct snd_card
*sc
= NULL
;
117 struct snd_cx18_card
*cxsc
;
120 /* Numbrs steps from "Writing an ALSA Driver" by Takashi Iwai */
122 /* (1) Check and increment the device index */
123 /* This is a no-op for us. We'll use the cx->instance */
125 /* (2) Create a card instance */
126 ret
= snd_card_new(&cx
->pci_dev
->dev
,
127 SNDRV_DEFAULT_IDX1
, /* use first available id */
128 SNDRV_DEFAULT_STR1
, /* xid from end of shortname*/
129 THIS_MODULE
, 0, &sc
);
131 CX18_ALSA_ERR("%s: snd_card_new() failed with err %d\n",
136 /* (3) Create a main component */
137 ret
= snd_cx18_card_create(v4l2_dev
, sc
, &cxsc
);
139 CX18_ALSA_ERR("%s: snd_cx18_card_create() failed with err %d\n",
144 /* (4) Set the driver ID and name strings */
145 snd_cx18_card_set_names(cxsc
);
148 ret
= snd_cx18_pcm_create(cxsc
);
150 CX18_ALSA_ERR("%s: snd_cx18_pcm_create() failed with err %d\n",
154 /* FIXME - proc files */
156 /* (7) Set the driver data and return 0 */
157 /* We do this out of normal order for PCI drivers to avoid races */
160 /* (6) Register the card instance */
161 ret
= snd_card_register(sc
);
164 CX18_ALSA_ERR("%s: snd_card_register() failed with err %d\n",
179 static int cx18_alsa_load(struct cx18
*cx
)
181 struct v4l2_device
*v4l2_dev
= &cx
->v4l2_dev
;
182 struct cx18_stream
*s
;
184 if (v4l2_dev
== NULL
) {
185 printk(KERN_ERR
"cx18-alsa: %s: struct v4l2_device * is NULL\n",
190 cx
= to_cx18(v4l2_dev
);
192 printk(KERN_ERR
"cx18-alsa cx is NULL\n");
196 s
= &cx
->streams
[CX18_ENC_STREAM_TYPE_PCM
];
197 if (s
->video_dev
.v4l2_dev
== NULL
) {
198 CX18_DEBUG_ALSA_INFO("%s: PCM stream for card is disabled - skipping\n",
203 if (cx
->alsa
!= NULL
) {
204 CX18_ALSA_ERR("%s: struct snd_cx18_card * already exists\n",
209 if (snd_cx18_init(v4l2_dev
)) {
210 CX18_ALSA_ERR("%s: failed to create struct snd_cx18_card\n",
213 CX18_DEBUG_ALSA_INFO("%s: created cx18 ALSA interface instance\n",
219 static int __init
cx18_alsa_init(void)
221 printk(KERN_INFO
"cx18-alsa: module loading...\n");
222 cx18_ext_init
= &cx18_alsa_load
;
226 static void __exit
snd_cx18_exit(struct snd_cx18_card
*cxsc
)
228 struct cx18
*cx
= to_cx18(cxsc
->v4l2_dev
);
230 /* FIXME - pointer checks & shutdown cxsc */
232 snd_card_free(cxsc
->sc
);
236 static int __exit
cx18_alsa_exit_callback(struct device
*dev
, void *data
)
238 struct v4l2_device
*v4l2_dev
= dev_get_drvdata(dev
);
239 struct snd_cx18_card
*cxsc
;
241 if (v4l2_dev
== NULL
) {
242 printk(KERN_ERR
"cx18-alsa: %s: struct v4l2_device * is NULL\n",
247 cxsc
= to_snd_cx18_card(v4l2_dev
);
249 CX18_ALSA_WARN("%s: struct snd_cx18_card * is NULL\n",
258 static void __exit
cx18_alsa_exit(void)
260 struct device_driver
*drv
;
263 printk(KERN_INFO
"cx18-alsa: module unloading...\n");
265 drv
= driver_find("cx18", &pci_bus_type
);
266 ret
= driver_for_each_device(drv
, NULL
, NULL
, cx18_alsa_exit_callback
);
267 (void)ret
; /* suppress compiler warning */
269 cx18_ext_init
= NULL
;
270 printk(KERN_INFO
"cx18-alsa: module unload complete\n");
273 module_init(cx18_alsa_init
);
274 module_exit(cx18_alsa_exit
);