blob: 93ff029e6583a0ba064dbf001f61136f9f733bae [file] [log] [blame]
Thomas Gleixner3e0a4e82019-05-23 11:14:55 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Takashi Iwai621887a2007-05-24 18:46:54 +02002/*
3 * cs5530.c - Initialisation code for Cyrix/NatSemi VSA1 softaudio
4 *
5 * (C) Copyright 2007 Ash Willis <ashwillis@programmer.net>
Alan Cox2f1e5932008-10-27 15:21:19 +00006 * (C) Copyright 2003 Red Hat Inc <alan@lxorguk.ukuu.org.uk>
Takashi Iwai621887a2007-05-24 18:46:54 +02007 *
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.
15 *
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.
21 *
22 * Thanks to National Semiconductor for providing the needed information
23 * on the XpressAudio(tm) internals.
24 *
Takashi Iwai621887a2007-05-24 18:46:54 +020025 * TO DO:
26 * Investigate whether we can portably support Cognac (5520) in the
27 * same manner.
28 */
29
Takashi Iwai621887a2007-05-24 18:46:54 +020030#include <linux/delay.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040031#include <linux/module.h>
Takashi Iwai621887a2007-05-24 18:46:54 +020032#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Takashi Iwai621887a2007-05-24 18:46:54 +020034#include <sound/core.h>
35#include <sound/sb.h>
36#include <sound/initval.h>
37
38MODULE_AUTHOR("Ash Willis");
39MODULE_DESCRIPTION("CS5530 Audio");
40MODULE_LICENSE("GPL");
41
42static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
43static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
Takashi Iwaicde94482011-12-19 10:32:48 +010044static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
45
46module_param_array(index, int, NULL, 0444);
47MODULE_PARM_DESC(index, "Index value for CS5530 Audio driver.");
48module_param_array(id, charp, NULL, 0444);
49MODULE_PARM_DESC(id, "ID string for CS5530 Audio driver.");
50module_param_array(enable, bool, NULL, 0444);
51MODULE_PARM_DESC(enable, "Enable CS5530 Audio driver.");
Takashi Iwai621887a2007-05-24 18:46:54 +020052
53struct snd_cs5530 {
54 struct snd_card *card;
55 struct pci_dev *pci;
56 struct snd_sb *sb;
57 unsigned long pci_base;
58};
59
Benoit Taine9baa3c32014-08-08 15:56:03 +020060static const struct pci_device_id snd_cs5530_ids[] = {
Takashi Iwai621887a2007-05-24 18:46:54 +020061 {PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5530_AUDIO, PCI_ANY_ID,
62 PCI_ANY_ID, 0, 0},
63 {0,}
64};
65
66MODULE_DEVICE_TABLE(pci, snd_cs5530_ids);
67
Bill Pembertone23e7a12012-12-06 12:35:10 -050068static u8 snd_cs5530_mixer_read(unsigned long io, u8 reg)
Takashi Iwai621887a2007-05-24 18:46:54 +020069{
70 outb(reg, io + 4);
71 udelay(20);
72 reg = inb(io + 5);
73 udelay(20);
74 return reg;
75}
76
Bill Pembertone23e7a12012-12-06 12:35:10 -050077static int snd_cs5530_create(struct snd_card *card,
Takashi Iwai2e11e3f2021-07-15 09:58:37 +020078 struct pci_dev *pci)
Takashi Iwai621887a2007-05-24 18:46:54 +020079{
Takashi Iwai2e11e3f2021-07-15 09:58:37 +020080 struct snd_cs5530 *chip = card->private_data;
Takashi Iwai621887a2007-05-24 18:46:54 +020081 unsigned long sb_base;
82 u8 irq, dma8, dma16 = 0;
83 u16 map;
84 void __iomem *mem;
85 int err;
86
Takashi Iwai2e11e3f2021-07-15 09:58:37 +020087 err = pcim_enable_device(pci);
Takashi Iwai621887a2007-05-24 18:46:54 +020088 if (err < 0)
89 return err;
90
Takashi Iwai621887a2007-05-24 18:46:54 +020091 chip->card = card;
92 chip->pci = pci;
93
Takashi Iwai2e11e3f2021-07-15 09:58:37 +020094 err = pcim_iomap_regions(pci, 1 << 0, "CS5530");
95 if (err < 0)
Takashi Iwai621887a2007-05-24 18:46:54 +020096 return err;
Takashi Iwai621887a2007-05-24 18:46:54 +020097 chip->pci_base = pci_resource_start(pci, 0);
Takashi Iwai2e11e3f2021-07-15 09:58:37 +020098 mem = pcim_iomap_table(pci)[0];
Takashi Iwai621887a2007-05-24 18:46:54 +020099 map = readw(mem + 0x18);
Takashi Iwai621887a2007-05-24 18:46:54 +0200100
101 /* Map bits
102 0:1 * 0x20 + 0x200 = sb base
103 2 sb enable
104 3 adlib enable
105 5 MPU enable 0x330
106 6 MPU enable 0x300
107
108 The other bits may be used internally so must be masked */
109
110 sb_base = 0x220 + 0x20 * (map & 3);
111
112 if (map & (1<<2))
Takashi Iwai132b3872014-02-25 14:13:16 +0100113 dev_info(card->dev, "XpressAudio at 0x%lx\n", sb_base);
Takashi Iwai621887a2007-05-24 18:46:54 +0200114 else {
Takashi Iwai132b3872014-02-25 14:13:16 +0100115 dev_err(card->dev, "Could not find XpressAudio!\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200116 return -ENODEV;
117 }
118
119 if (map & (1<<5))
Takashi Iwai132b3872014-02-25 14:13:16 +0100120 dev_info(card->dev, "MPU at 0x300\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200121 else if (map & (1<<6))
Takashi Iwai132b3872014-02-25 14:13:16 +0100122 dev_info(card->dev, "MPU at 0x330\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200123
124 irq = snd_cs5530_mixer_read(sb_base, 0x80) & 0x0F;
125 dma8 = snd_cs5530_mixer_read(sb_base, 0x81);
126
127 if (dma8 & 0x20)
128 dma16 = 5;
129 else if (dma8 & 0x40)
130 dma16 = 6;
131 else if (dma8 & 0x80)
132 dma16 = 7;
133 else {
Takashi Iwai132b3872014-02-25 14:13:16 +0100134 dev_err(card->dev, "No 16bit DMA enabled\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200135 return -ENODEV;
136 }
137
138 if (dma8 & 0x01)
139 dma8 = 0;
140 else if (dma8 & 02)
141 dma8 = 1;
142 else if (dma8 & 0x08)
143 dma8 = 3;
144 else {
Takashi Iwai132b3872014-02-25 14:13:16 +0100145 dev_err(card->dev, "No 8bit DMA enabled\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200146 return -ENODEV;
147 }
148
149 if (irq & 1)
150 irq = 9;
151 else if (irq & 2)
152 irq = 5;
153 else if (irq & 4)
154 irq = 7;
155 else if (irq & 8)
156 irq = 10;
157 else {
Takashi Iwai132b3872014-02-25 14:13:16 +0100158 dev_err(card->dev, "SoundBlaster IRQ not set\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200159 return -ENODEV;
160 }
161
Takashi Iwai132b3872014-02-25 14:13:16 +0100162 dev_info(card->dev, "IRQ: %d DMA8: %d DMA16: %d\n", irq, dma8, dma16);
Takashi Iwai621887a2007-05-24 18:46:54 +0200163
164 err = snd_sbdsp_create(card, sb_base, irq, snd_sb16dsp_interrupt, dma8,
165 dma16, SB_HW_CS5530, &chip->sb);
166 if (err < 0) {
Takashi Iwai132b3872014-02-25 14:13:16 +0100167 dev_err(card->dev, "Could not create SoundBlaster\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200168 return err;
169 }
170
Lars-Peter Clausen92533f12015-01-02 12:24:42 +0100171 err = snd_sb16dsp_pcm(chip->sb, 0);
Takashi Iwai621887a2007-05-24 18:46:54 +0200172 if (err < 0) {
Takashi Iwai132b3872014-02-25 14:13:16 +0100173 dev_err(card->dev, "Could not create PCM\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200174 return err;
175 }
176
177 err = snd_sbmixer_new(chip->sb);
178 if (err < 0) {
Takashi Iwai132b3872014-02-25 14:13:16 +0100179 dev_err(card->dev, "Could not create Mixer\n");
Takashi Iwai621887a2007-05-24 18:46:54 +0200180 return err;
181 }
182
Takashi Iwai621887a2007-05-24 18:46:54 +0200183 return 0;
184}
185
Bill Pembertone23e7a12012-12-06 12:35:10 -0500186static int snd_cs5530_probe(struct pci_dev *pci,
187 const struct pci_device_id *pci_id)
Takashi Iwai621887a2007-05-24 18:46:54 +0200188{
189 static int dev;
190 struct snd_card *card;
Takashi Iwai2e11e3f2021-07-15 09:58:37 +0200191 struct snd_cs5530 *chip;
Takashi Iwai621887a2007-05-24 18:46:54 +0200192 int err;
193
194 if (dev >= SNDRV_CARDS)
195 return -ENODEV;
196 if (!enable[dev]) {
197 dev++;
198 return -ENOENT;
199 }
200
Takashi Iwai2e11e3f2021-07-15 09:58:37 +0200201 err = snd_devm_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
202 sizeof(*chip), &card);
Takashi Iwaie58de7b2008-12-28 16:44:30 +0100203 if (err < 0)
204 return err;
Takashi Iwai2e11e3f2021-07-15 09:58:37 +0200205 chip = card->private_data;
Takashi Iwai621887a2007-05-24 18:46:54 +0200206
Takashi Iwai2e11e3f2021-07-15 09:58:37 +0200207 err = snd_cs5530_create(card, pci);
208 if (err < 0)
Takashi Iwai621887a2007-05-24 18:46:54 +0200209 return err;
Takashi Iwai621887a2007-05-24 18:46:54 +0200210
211 strcpy(card->driver, "CS5530");
212 strcpy(card->shortname, "CS5530 Audio");
213 sprintf(card->longname, "%s at 0x%lx", card->shortname, chip->pci_base);
214
215 err = snd_card_register(card);
Takashi Iwai2e11e3f2021-07-15 09:58:37 +0200216 if (err < 0)
Takashi Iwai621887a2007-05-24 18:46:54 +0200217 return err;
Takashi Iwai621887a2007-05-24 18:46:54 +0200218 pci_set_drvdata(pci, card);
219 dev++;
220 return 0;
221}
222
Takashi Iwaie9f66d92012-04-24 12:25:00 +0200223static struct pci_driver cs5530_driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +0200224 .name = KBUILD_MODNAME,
Takashi Iwai621887a2007-05-24 18:46:54 +0200225 .id_table = snd_cs5530_ids,
226 .probe = snd_cs5530_probe,
Takashi Iwai621887a2007-05-24 18:46:54 +0200227};
228
Takashi Iwaie9f66d92012-04-24 12:25:00 +0200229module_pci_driver(cs5530_driver);