1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * cs5530.c - Initialisation code for Cyrix/NatSemi VSA1 softaudio
5 * (C) Copyright 2007 Ash Willis <ashwillis@programmer.net>
6 * (C) Copyright 2003 Red Hat Inc <alan@lxorguk.ukuu.org.uk>
8 * This driver was ported (shamelessly ripped ;) from oss/kahlua.c but I did
9 * mess with it a bit. The chip seems to have to have trouble with full duplex
10 * mode. If we're recording in 8bit 8000kHz, say, and we then attempt to
11 * simultaneously play back audio at 16bit 44100kHz, the device actually plays
12 * back in the same format in which it is capturing. By forcing the chip to
13 * always play/capture in 16/44100, we can let alsa-lib convert the samples and
14 * that way we can hack up some full duplex audio.
16 * XpressAudio(tm) is used on the Cyrix MediaGX (now NatSemi Geode) systems.
17 * The older version (VSA1) provides fairly good soundblaster emulation
18 * although there are a couple of bugs: large DMA buffers break record,
19 * and the MPU event handling seems suspect. VSA2 allows the native driver
20 * to control the AC97 audio engine directly and requires a different driver.
22 * Thanks to National Semiconductor for providing the needed information
23 * on the XpressAudio(tm) internals.
26 * Investigate whether we can portably support Cognac (5520) in the
30 #include <linux/delay.h>
31 #include <linux/module.h>
32 #include <linux/pci.h>
33 #include <linux/slab.h>
34 #include <sound/core.h>
36 #include <sound/initval.h>
38 MODULE_AUTHOR("Ash Willis");
39 MODULE_DESCRIPTION("CS5530 Audio");
40 MODULE_LICENSE("GPL");
42 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
43 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
44 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
46 module_param_array(index, int, NULL, 0444);
47 MODULE_PARM_DESC(index, "Index value for CS5530 Audio driver.");
48 module_param_array(id, charp, NULL, 0444);
49 MODULE_PARM_DESC(id, "ID string for CS5530 Audio driver.");
50 module_param_array(enable, bool, NULL, 0444);
51 MODULE_PARM_DESC(enable, "Enable CS5530 Audio driver.");
54 struct snd_card *card;
57 unsigned long pci_base;
60 static const struct pci_device_id snd_cs5530_ids[] = {
61 {PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5530_AUDIO, PCI_ANY_ID,
66 MODULE_DEVICE_TABLE(pci, snd_cs5530_ids);
68 static u8 snd_cs5530_mixer_read(unsigned long io, u8 reg)
77 static int snd_cs5530_create(struct snd_card *card,
80 struct snd_cs5530 *chip = card->private_data;
81 unsigned long sb_base;
82 u8 irq, dma8, dma16 = 0;
87 err = pcim_enable_device(pci);
94 err = pcim_iomap_regions(pci, 1 << 0, "CS5530");
97 chip->pci_base = pci_resource_start(pci, 0);
98 mem = pcim_iomap_table(pci)[0];
99 map = readw(mem + 0x18);
102 0:1 * 0x20 + 0x200 = sb base
108 The other bits may be used internally so must be masked */
110 sb_base = 0x220 + 0x20 * (map & 3);
113 dev_info(card->dev, "XpressAudio at 0x%lx\n", sb_base);
115 dev_err(card->dev, "Could not find XpressAudio!\n");
120 dev_info(card->dev, "MPU at 0x300\n");
121 else if (map & (1<<6))
122 dev_info(card->dev, "MPU at 0x330\n");
124 irq = snd_cs5530_mixer_read(sb_base, 0x80) & 0x0F;
125 dma8 = snd_cs5530_mixer_read(sb_base, 0x81);
129 else if (dma8 & 0x40)
131 else if (dma8 & 0x80)
134 dev_err(card->dev, "No 16bit DMA enabled\n");
142 else if (dma8 & 0x08)
145 dev_err(card->dev, "No 8bit DMA enabled\n");
158 dev_err(card->dev, "SoundBlaster IRQ not set\n");
162 dev_info(card->dev, "IRQ: %d DMA8: %d DMA16: %d\n", irq, dma8, dma16);
164 err = snd_sbdsp_create(card, sb_base, irq, snd_sb16dsp_interrupt, dma8,
165 dma16, SB_HW_CS5530, &chip->sb);
167 dev_err(card->dev, "Could not create SoundBlaster\n");
171 err = snd_sb16dsp_pcm(chip->sb, 0);
173 dev_err(card->dev, "Could not create PCM\n");
177 err = snd_sbmixer_new(chip->sb);
179 dev_err(card->dev, "Could not create Mixer\n");
186 static int snd_cs5530_probe(struct pci_dev *pci,
187 const struct pci_device_id *pci_id)
190 struct snd_card *card;
191 struct snd_cs5530 *chip;
194 if (dev >= SNDRV_CARDS)
201 err = snd_devm_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
202 sizeof(*chip), &card);
205 chip = card->private_data;
207 err = snd_cs5530_create(card, pci);
211 strcpy(card->driver, "CS5530");
212 strcpy(card->shortname, "CS5530 Audio");
213 sprintf(card->longname, "%s at 0x%lx", card->shortname, chip->pci_base);
215 err = snd_card_register(card);
218 pci_set_drvdata(pci, card);
223 static struct pci_driver cs5530_driver = {
224 .name = KBUILD_MODNAME,
225 .id_table = snd_cs5530_ids,
226 .probe = snd_cs5530_probe,
229 module_pci_driver(cs5530_driver);