1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Generic driver for CS4231 chips
4 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
5 * Originally the CS4232/CS4232A driver, modified for use on CS4231 by
6 * Tugrul Galatali <galatalt@stuy.edu>
9 #include <linux/init.h>
10 #include <linux/err.h>
11 #include <linux/isa.h>
12 #include <linux/time.h>
13 #include <linux/wait.h>
14 #include <linux/module.h>
15 #include <sound/core.h>
16 #include <sound/wss.h>
17 #include <sound/mpu401.h>
18 #include <sound/initval.h>
20 #define CRD_NAME "Generic CS4231"
21 #define DEV_NAME "cs4231"
23 MODULE_DESCRIPTION(CRD_NAME
);
24 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
25 MODULE_LICENSE("GPL");
26 MODULE_SUPPORTED_DEVICE("{{Crystal Semiconductors,CS4231}}");
28 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
29 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
30 static bool enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE
; /* Enable this card */
31 static long port
[SNDRV_CARDS
] = SNDRV_DEFAULT_PORT
; /* PnP setup */
32 static long mpu_port
[SNDRV_CARDS
] = SNDRV_DEFAULT_PORT
; /* PnP setup */
33 static int irq
[SNDRV_CARDS
] = SNDRV_DEFAULT_IRQ
; /* 5,7,9,11,12,15 */
34 static int mpu_irq
[SNDRV_CARDS
] = SNDRV_DEFAULT_IRQ
; /* 9,11,12,15 */
35 static int dma1
[SNDRV_CARDS
] = SNDRV_DEFAULT_DMA
; /* 0,1,3,5,6,7 */
36 static int dma2
[SNDRV_CARDS
] = SNDRV_DEFAULT_DMA
; /* 0,1,3,5,6,7 */
38 module_param_array(index
, int, NULL
, 0444);
39 MODULE_PARM_DESC(index
, "Index value for " CRD_NAME
" soundcard.");
40 module_param_array(id
, charp
, NULL
, 0444);
41 MODULE_PARM_DESC(id
, "ID string for " CRD_NAME
" soundcard.");
42 module_param_array(enable
, bool, NULL
, 0444);
43 MODULE_PARM_DESC(enable
, "Enable " CRD_NAME
" soundcard.");
44 module_param_hw_array(port
, long, ioport
, NULL
, 0444);
45 MODULE_PARM_DESC(port
, "Port # for " CRD_NAME
" driver.");
46 module_param_hw_array(mpu_port
, long, ioport
, NULL
, 0444);
47 MODULE_PARM_DESC(mpu_port
, "MPU-401 port # for " CRD_NAME
" driver.");
48 module_param_hw_array(irq
, int, irq
, NULL
, 0444);
49 MODULE_PARM_DESC(irq
, "IRQ # for " CRD_NAME
" driver.");
50 module_param_hw_array(mpu_irq
, int, irq
, NULL
, 0444);
51 MODULE_PARM_DESC(mpu_irq
, "MPU-401 IRQ # for " CRD_NAME
" driver.");
52 module_param_hw_array(dma1
, int, dma
, NULL
, 0444);
53 MODULE_PARM_DESC(dma1
, "DMA1 # for " CRD_NAME
" driver.");
54 module_param_hw_array(dma2
, int, dma
, NULL
, 0444);
55 MODULE_PARM_DESC(dma2
, "DMA2 # for " CRD_NAME
" driver.");
57 static int snd_cs4231_match(struct device
*dev
, unsigned int n
)
62 if (port
[n
] == SNDRV_AUTO_PORT
) {
63 dev_err(dev
, "please specify port\n");
66 if (irq
[n
] == SNDRV_AUTO_IRQ
) {
67 dev_err(dev
, "please specify irq\n");
70 if (dma1
[n
] == SNDRV_AUTO_DMA
) {
71 dev_err(dev
, "please specify dma1\n");
77 static int snd_cs4231_probe(struct device
*dev
, unsigned int n
)
79 struct snd_card
*card
;
83 error
= snd_card_new(dev
, index
[n
], id
[n
], THIS_MODULE
, 0, &card
);
87 error
= snd_wss_create(card
, port
[n
], -1, irq
[n
], dma1
[n
], dma2
[n
],
88 WSS_HW_DETECT
, 0, &chip
);
92 card
->private_data
= chip
;
94 error
= snd_wss_pcm(chip
, 0);
98 strlcpy(card
->driver
, "CS4231", sizeof(card
->driver
));
99 strlcpy(card
->shortname
, chip
->pcm
->name
, sizeof(card
->shortname
));
102 snprintf(card
->longname
, sizeof(card
->longname
),
103 "%s at 0x%lx, irq %d, dma %d",
104 chip
->pcm
->name
, chip
->port
, irq
[n
], dma1
[n
]);
106 snprintf(card
->longname
, sizeof(card
->longname
),
107 "%s at 0x%lx, irq %d, dma %d&%d",
108 chip
->pcm
->name
, chip
->port
, irq
[n
], dma1
[n
], dma2
[n
]);
110 error
= snd_wss_mixer(chip
);
114 error
= snd_wss_timer(chip
, 0);
118 if (mpu_port
[n
] > 0 && mpu_port
[n
] != SNDRV_AUTO_PORT
) {
119 if (mpu_irq
[n
] == SNDRV_AUTO_IRQ
)
121 if (snd_mpu401_uart_new(card
, 0, MPU401_HW_CS4232
,
122 mpu_port
[n
], 0, mpu_irq
[n
],
124 dev_warn(dev
, "MPU401 not detected\n");
127 error
= snd_card_register(card
);
131 dev_set_drvdata(dev
, card
);
134 out
: snd_card_free(card
);
138 static int snd_cs4231_remove(struct device
*dev
, unsigned int n
)
140 snd_card_free(dev_get_drvdata(dev
));
145 static int snd_cs4231_suspend(struct device
*dev
, unsigned int n
, pm_message_t state
)
147 struct snd_card
*card
= dev_get_drvdata(dev
);
148 struct snd_wss
*chip
= card
->private_data
;
150 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
155 static int snd_cs4231_resume(struct device
*dev
, unsigned int n
)
157 struct snd_card
*card
= dev_get_drvdata(dev
);
158 struct snd_wss
*chip
= card
->private_data
;
161 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
166 static struct isa_driver snd_cs4231_driver
= {
167 .match
= snd_cs4231_match
,
168 .probe
= snd_cs4231_probe
,
169 .remove
= snd_cs4231_remove
,
171 .suspend
= snd_cs4231_suspend
,
172 .resume
= snd_cs4231_resume
,
179 module_isa_driver(snd_cs4231_driver
, SNDRV_CARDS
);