interwave.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963
  1. /*
  2. * Driver for AMD InterWave soundcard
  3. * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
  4. *
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. * 1999/07/22 Erik Inge Bolso <knan@mo.himolde.no>
  21. * * mixer group handlers
  22. *
  23. */
  24. #include <sound/driver.h>
  25. #include <linux/init.h>
  26. #include <linux/err.h>
  27. #include <linux/platform_device.h>
  28. #include <linux/delay.h>
  29. #include <linux/slab.h>
  30. #include <linux/pnp.h>
  31. #include <linux/moduleparam.h>
  32. #include <asm/dma.h>
  33. #include <sound/core.h>
  34. #include <sound/gus.h>
  35. #include <sound/cs4231.h>
  36. #ifdef SNDRV_STB
  37. #include <sound/tea6330t.h>
  38. #endif
  39. #define SNDRV_LEGACY_FIND_FREE_IRQ
  40. #define SNDRV_LEGACY_FIND_FREE_DMA
  41. #include <sound/initval.h>
  42. MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
  43. MODULE_LICENSE("GPL");
  44. #ifndef SNDRV_STB
  45. MODULE_DESCRIPTION("AMD InterWave");
  46. MODULE_SUPPORTED_DEVICE("{{Gravis,UltraSound Plug & Play},"
  47. "{STB,SoundRage32},"
  48. "{MED,MED3210},"
  49. "{Dynasonix,Dynasonix Pro},"
  50. "{Panasonic,PCA761AW}}");
  51. #else
  52. MODULE_DESCRIPTION("AMD InterWave STB with TEA6330T");
  53. MODULE_SUPPORTED_DEVICE("{{AMD,InterWave STB with TEA6330T}}");
  54. #endif
  55. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
  56. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
  57. static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */
  58. #ifdef CONFIG_PNP
  59. static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
  60. #endif
  61. static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x210,0x220,0x230,0x240,0x250,0x260 */
  62. #ifdef SNDRV_STB
  63. static long port_tc[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x350,0x360,0x370,0x380 */
  64. #endif
  65. static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */
  66. static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */
  67. static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */
  68. static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};
  69. /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */
  70. static int midi[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};
  71. static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
  72. static int effect[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};
  73. #ifdef SNDRV_STB
  74. #define PFX "interwave-stb: "
  75. #define INTERWAVE_DRIVER "snd_interwave_stb"
  76. #define INTERWAVE_PNP_DRIVER "interwave-stb"
  77. #else
  78. #define PFX "interwave: "
  79. #define INTERWAVE_DRIVER "snd_interwave"
  80. #define INTERWAVE_PNP_DRIVER "interwave"
  81. #endif
  82. module_param_array(index, int, NULL, 0444);
  83. MODULE_PARM_DESC(index, "Index value for InterWave soundcard.");
  84. module_param_array(id, charp, NULL, 0444);
  85. MODULE_PARM_DESC(id, "ID string for InterWave soundcard.");
  86. module_param_array(enable, bool, NULL, 0444);
  87. MODULE_PARM_DESC(enable, "Enable InterWave soundcard.");
  88. #ifdef CONFIG_PNP
  89. module_param_array(isapnp, bool, NULL, 0444);
  90. MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard.");
  91. #endif
  92. module_param_array(port, long, NULL, 0444);
  93. MODULE_PARM_DESC(port, "Port # for InterWave driver.");
  94. #ifdef SNDRV_STB
  95. module_param_array(port_tc, long, NULL, 0444);
  96. MODULE_PARM_DESC(port_tc, "Tone control (TEA6330T - i2c bus) port # for InterWave driver.");
  97. #endif
  98. module_param_array(irq, int, NULL, 0444);
  99. MODULE_PARM_DESC(irq, "IRQ # for InterWave driver.");
  100. module_param_array(dma1, int, NULL, 0444);
  101. MODULE_PARM_DESC(dma1, "DMA1 # for InterWave driver.");
  102. module_param_array(dma2, int, NULL, 0444);
  103. MODULE_PARM_DESC(dma2, "DMA2 # for InterWave driver.");
  104. module_param_array(joystick_dac, int, NULL, 0444);
  105. MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for InterWave driver.");
  106. module_param_array(midi, int, NULL, 0444);
  107. MODULE_PARM_DESC(midi, "MIDI UART enable for InterWave driver.");
  108. module_param_array(pcm_channels, int, NULL, 0444);
  109. MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for InterWave driver.");
  110. module_param_array(effect, int, NULL, 0444);
  111. MODULE_PARM_DESC(effect, "Effects enable for InterWave driver.");
  112. struct snd_interwave {
  113. int irq;
  114. struct snd_card *card;
  115. struct snd_gus_card *gus;
  116. struct snd_cs4231 *cs4231;
  117. #ifdef SNDRV_STB
  118. struct resource *i2c_res;
  119. #endif
  120. unsigned short gus_status_reg;
  121. unsigned short pcm_status_reg;
  122. #ifdef CONFIG_PNP
  123. struct pnp_dev *dev;
  124. #ifdef SNDRV_STB
  125. struct pnp_dev *devtc;
  126. #endif
  127. #endif
  128. };
  129. #ifdef CONFIG_PNP
  130. static struct pnp_card_device_id snd_interwave_pnpids[] = {
  131. #ifndef SNDRV_STB
  132. /* Gravis UltraSound Plug & Play */
  133. { .id = "GRV0001", .devs = { { .id = "GRV0000" } } },
  134. /* STB SoundRage32 */
  135. { .id = "STB011a", .devs = { { .id = "STB0010" } } },
  136. /* MED3210 */
  137. { .id = "DXP3201", .devs = { { .id = "DXP0010" } } },
  138. /* Dynasonic Pro */
  139. /* This device also have CDC1117:DynaSonix Pro Audio Effects Processor */
  140. { .id = "CDC1111", .devs = { { .id = "CDC1112" } } },
  141. /* Panasonic PCA761AW Audio Card */
  142. { .id = "ADV55ff", .devs = { { .id = "ADV0010" } } },
  143. /* InterWave STB without TEA6330T */
  144. { .id = "ADV550a", .devs = { { .id = "ADV0010" } } },
  145. #else
  146. /* InterWave STB with TEA6330T */
  147. { .id = "ADV550a", .devs = { { .id = "ADV0010" }, { .id = "ADV0015" } } },
  148. #endif
  149. { .id = "" }
  150. };
  151. MODULE_DEVICE_TABLE(pnp_card, snd_interwave_pnpids);
  152. #endif /* CONFIG_PNP */
  153. #ifdef SNDRV_STB
  154. static void snd_interwave_i2c_setlines(struct snd_i2c_bus *bus, int ctrl, int data)
  155. {
  156. unsigned long port = bus->private_value;
  157. #if 0
  158. printk("i2c_setlines - 0x%lx <- %i,%i\n", port, ctrl, data);
  159. #endif
  160. outb((data << 1) | ctrl, port);
  161. udelay(10);
  162. }
  163. static int snd_interwave_i2c_getclockline(struct snd_i2c_bus *bus)
  164. {
  165. unsigned long port = bus->private_value;
  166. unsigned char res;
  167. res = inb(port) & 1;
  168. #if 0
  169. printk("i2c_getclockline - 0x%lx -> %i\n", port, res);
  170. #endif
  171. return res;
  172. }
  173. static int snd_interwave_i2c_getdataline(struct snd_i2c_bus *bus, int ack)
  174. {
  175. unsigned long port = bus->private_value;
  176. unsigned char res;
  177. if (ack)
  178. udelay(10);
  179. res = (inb(port) & 2) >> 1;
  180. #if 0
  181. printk("i2c_getdataline - 0x%lx -> %i\n", port, res);
  182. #endif
  183. return res;
  184. }
  185. static struct snd_i2c_bit_ops snd_interwave_i2c_bit_ops = {
  186. .setlines = snd_interwave_i2c_setlines,
  187. .getclock = snd_interwave_i2c_getclockline,
  188. .getdata = snd_interwave_i2c_getdataline,
  189. };
  190. static int __devinit snd_interwave_detect_stb(struct snd_interwave *iwcard,
  191. struct snd_gus_card * gus, int dev,
  192. struct snd_i2c_bus **rbus)
  193. {
  194. unsigned long port;
  195. struct snd_i2c_bus *bus;
  196. struct snd_card *card = iwcard->card;
  197. char name[32];
  198. int err;
  199. *rbus = NULL;
  200. port = port_tc[dev];
  201. if (port == SNDRV_AUTO_PORT) {
  202. port = 0x350;
  203. if (gus->gf1.port == 0x250) {
  204. port = 0x360;
  205. }
  206. while (port <= 0x380) {
  207. if ((iwcard->i2c_res = request_region(port, 1, "InterWave (I2C bus)")) != NULL)
  208. break;
  209. port += 0x10;
  210. }
  211. } else {
  212. iwcard->i2c_res = request_region(port, 1, "InterWave (I2C bus)");
  213. }
  214. if (iwcard->i2c_res == NULL) {
  215. snd_printk(KERN_ERR "interwave: can't grab i2c bus port\n");
  216. return -ENODEV;
  217. }
  218. sprintf(name, "InterWave-%i", card->number);
  219. if ((err = snd_i2c_bus_create(card, name, NULL, &bus)) < 0)
  220. return err;
  221. bus->private_value = port;
  222. bus->hw_ops.bit = &snd_interwave_i2c_bit_ops;
  223. if ((err = snd_tea6330t_detect(bus, 0)) < 0)
  224. return err;
  225. *rbus = bus;
  226. return 0;
  227. }
  228. #endif
  229. static int __devinit snd_interwave_detect(struct snd_interwave *iwcard,
  230. struct snd_gus_card * gus,
  231. int dev
  232. #ifdef SNDRV_STB
  233. , struct snd_i2c_bus **rbus
  234. #endif
  235. )
  236. {
  237. unsigned long flags;
  238. unsigned char rev1, rev2;
  239. int d;
  240. snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 0); /* reset GF1 */
  241. if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 0) {
  242. snd_printdd("[0x%lx] check 1 failed - 0x%x\n", gus->gf1.port, d);
  243. return -ENODEV;
  244. }
  245. udelay(160);
  246. snd_gf1_i_write8(gus, SNDRV_GF1_GB_RESET, 1); /* release reset */
  247. udelay(160);
  248. if (((d = snd_gf1_i_look8(gus, SNDRV_GF1_GB_RESET)) & 0x07) != 1) {
  249. snd_printdd("[0x%lx] check 2 failed - 0x%x\n", gus->gf1.port, d);
  250. return -ENODEV;
  251. }
  252. spin_lock_irqsave(&gus->reg_lock, flags);
  253. rev1 = snd_gf1_look8(gus, SNDRV_GF1_GB_VERSION_NUMBER);
  254. snd_gf1_write8(gus, SNDRV_GF1_GB_VERSION_NUMBER, ~rev1);
  255. rev2 = snd_gf1_look8(gus, SNDRV_GF1_GB_VERSION_NUMBER);
  256. snd_gf1_write8(gus, SNDRV_GF1_GB_VERSION_NUMBER, rev1);
  257. spin_unlock_irqrestore(&gus->reg_lock, flags);
  258. snd_printdd("[0x%lx] InterWave check - rev1=0x%x, rev2=0x%x\n", gus->gf1.port, rev1, rev2);
  259. if ((rev1 & 0xf0) == (rev2 & 0xf0) &&
  260. (rev1 & 0x0f) != (rev2 & 0x0f)) {
  261. snd_printdd("[0x%lx] InterWave check - passed\n", gus->gf1.port);
  262. gus->interwave = 1;
  263. strcpy(gus->card->shortname, "AMD InterWave");
  264. gus->revision = rev1 >> 4;
  265. #ifndef SNDRV_STB
  266. return 0; /* ok.. We have an InterWave board */
  267. #else
  268. return snd_interwave_detect_stb(iwcard, gus, dev, rbus);
  269. #endif
  270. }
  271. snd_printdd("[0x%lx] InterWave check - failed\n", gus->gf1.port);
  272. return -ENODEV;
  273. }
  274. static irqreturn_t snd_interwave_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  275. {
  276. struct snd_interwave *iwcard = (struct snd_interwave *) dev_id;
  277. int loop, max = 5;
  278. int handled = 0;
  279. do {
  280. loop = 0;
  281. if (inb(iwcard->gus_status_reg)) {
  282. handled = 1;
  283. snd_gus_interrupt(irq, iwcard->gus, regs);
  284. loop++;
  285. }
  286. if (inb(iwcard->pcm_status_reg) & 0x01) { /* IRQ bit is set? */
  287. handled = 1;
  288. snd_cs4231_interrupt(irq, iwcard->cs4231, regs);
  289. loop++;
  290. }
  291. } while (loop && --max > 0);
  292. return IRQ_RETVAL(handled);
  293. }
  294. static void __devinit snd_interwave_reset(struct snd_gus_card * gus)
  295. {
  296. snd_gf1_write8(gus, SNDRV_GF1_GB_RESET, 0x00);
  297. udelay(160);
  298. snd_gf1_write8(gus, SNDRV_GF1_GB_RESET, 0x01);
  299. udelay(160);
  300. }
  301. static void __devinit snd_interwave_bank_sizes(struct snd_gus_card * gus, int *sizes)
  302. {
  303. unsigned int idx;
  304. unsigned int local;
  305. unsigned char d;
  306. for (idx = 0; idx < 4; idx++) {
  307. sizes[idx] = 0;
  308. d = 0x55;
  309. for (local = idx << 22;
  310. local < (idx << 22) + 0x400000;
  311. local += 0x40000, d++) {
  312. snd_gf1_poke(gus, local, d);
  313. snd_gf1_poke(gus, local + 1, d + 1);
  314. #if 0
  315. printk("d = 0x%x, local = 0x%x, local + 1 = 0x%x, idx << 22 = 0x%x\n",
  316. d,
  317. snd_gf1_peek(gus, local),
  318. snd_gf1_peek(gus, local + 1),
  319. snd_gf1_peek(gus, idx << 22));
  320. #endif
  321. if (snd_gf1_peek(gus, local) != d ||
  322. snd_gf1_peek(gus, local + 1) != d + 1 ||
  323. snd_gf1_peek(gus, idx << 22) != 0x55)
  324. break;
  325. sizes[idx]++;
  326. }
  327. }
  328. #if 0
  329. printk("sizes: %i %i %i %i\n", sizes[0], sizes[1], sizes[2], sizes[3]);
  330. #endif
  331. }
  332. struct rom_hdr {
  333. /* 000 */ unsigned char iwave[8];
  334. /* 008 */ unsigned char rom_hdr_revision;
  335. /* 009 */ unsigned char series_number;
  336. /* 010 */ unsigned char series_name[16];
  337. /* 026 */ unsigned char date[10];
  338. /* 036 */ unsigned short vendor_revision_major;
  339. /* 038 */ unsigned short vendor_revision_minor;
  340. /* 040 */ unsigned int rom_size;
  341. /* 044 */ unsigned char copyright[128];
  342. /* 172 */ unsigned char vendor_name[64];
  343. /* 236 */ unsigned char rom_description[128];
  344. /* 364 */ unsigned char pad[147];
  345. /* 511 */ unsigned char csum;
  346. };
  347. static void __devinit snd_interwave_detect_memory(struct snd_gus_card * gus)
  348. {
  349. static unsigned int lmc[13] =
  350. {
  351. 0x00000001, 0x00000101, 0x01010101, 0x00000401,
  352. 0x04040401, 0x00040101, 0x04040101, 0x00000004,
  353. 0x00000404, 0x04040404, 0x00000010, 0x00001010,
  354. 0x10101010
  355. };
  356. int bank_pos, pages;
  357. unsigned int i, lmct;
  358. int psizes[4];
  359. unsigned char iwave[8];
  360. unsigned char csum;
  361. snd_interwave_reset(gus);
  362. snd_gf1_write8(gus, SNDRV_GF1_GB_GLOBAL_MODE, snd_gf1_read8(gus, SNDRV_GF1_GB_GLOBAL_MODE) | 0x01); /* enhanced mode */
  363. snd_gf1_write8(gus, SNDRV_GF1_GB_MEMORY_CONTROL, 0x01); /* DRAM I/O cycles selected */
  364. snd_gf1_write16(gus, SNDRV_GF1_GW_MEMORY_CONFIG, (snd_gf1_look16(gus, SNDRV_GF1_GW_MEMORY_CONFIG) & 0xff10) | 0x004c);
  365. /* ok.. simple test of memory size */
  366. pages = 0;
  367. snd_gf1_poke(gus, 0, 0x55);
  368. snd_gf1_poke(gus, 1, 0xaa);
  369. #if 1
  370. if (snd_gf1_peek(gus, 0) == 0x55 && snd_gf1_peek(gus, 1) == 0xaa)
  371. #else
  372. if (0) /* ok.. for testing of 0k RAM */
  373. #endif
  374. {
  375. snd_interwave_bank_sizes(gus, psizes);
  376. lmct = (psizes[3] << 24) | (psizes[2] << 16) |
  377. (psizes[1] << 8) | psizes[0];
  378. #if 0
  379. printk("lmct = 0x%08x\n", lmct);
  380. #endif
  381. for (i = 0; i < ARRAY_SIZE(lmc); i++)
  382. if (lmct == lmc[i]) {
  383. #if 0
  384. printk("found !!! %i\n", i);
  385. #endif
  386. snd_gf1_write16(gus, SNDRV_GF1_GW_MEMORY_CONFIG, (snd_gf1_look16(gus, SNDRV_GF1_GW_MEMORY_CONFIG) & 0xfff0) | i);
  387. snd_interwave_bank_sizes(gus, psizes);
  388. break;
  389. }
  390. if (i >= ARRAY_SIZE(lmc) && !gus->gf1.enh_mode)
  391. snd_gf1_write16(gus, SNDRV_GF1_GW_MEMORY_CONFIG, (snd_gf1_look16(gus, SNDRV_GF1_GW_MEMORY_CONFIG) & 0xfff0) | 2);
  392. for (i = 0; i < 4; i++) {
  393. gus->gf1.mem_alloc.banks_8[i].address =
  394. gus->gf1.mem_alloc.banks_16[i].address = i << 22;
  395. gus->gf1.mem_alloc.banks_8[i].size =
  396. gus->gf1.mem_alloc.banks_16[i].size = psizes[i] << 18;
  397. pages += psizes[i];
  398. }
  399. }
  400. pages <<= 18;
  401. gus->gf1.memory = pages;
  402. snd_gf1_write8(gus, SNDRV_GF1_GB_MEMORY_CONTROL, 0x03); /* select ROM */
  403. snd_gf1_write16(gus, SNDRV_GF1_GW_MEMORY_CONFIG, (snd_gf1_look16(gus, SNDRV_GF1_GW_MEMORY_CONFIG) & 0xff1f) | (4 << 5));
  404. gus->gf1.rom_banks = 0;
  405. gus->gf1.rom_memory = 0;
  406. for (bank_pos = 0; bank_pos < 16L * 1024L * 1024L; bank_pos += 4L * 1024L * 1024L) {
  407. for (i = 0; i < 8; ++i)
  408. iwave[i] = snd_gf1_peek(gus, bank_pos + i);
  409. #ifdef CONFIG_SND_DEBUG_ROM
  410. printk(KERN_DEBUG "ROM at 0x%06x = %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n", bank_pos,
  411. iwave[0], iwave[1], iwave[2], iwave[3],
  412. iwave[4], iwave[5], iwave[6], iwave[7]);
  413. #endif
  414. if (strncmp(iwave, "INTRWAVE", 8))
  415. continue; /* first check */
  416. csum = 0;
  417. for (i = 0; i < sizeof(struct rom_hdr); i++)
  418. csum += snd_gf1_peek(gus, bank_pos + i);
  419. #ifdef CONFIG_SND_DEBUG_ROM
  420. printk(KERN_DEBUG "ROM checksum = 0x%x (computed)\n", csum);
  421. #endif
  422. if (csum != 0)
  423. continue; /* not valid rom */
  424. gus->gf1.rom_banks++;
  425. gus->gf1.rom_present |= 1 << (bank_pos >> 22);
  426. gus->gf1.rom_memory = snd_gf1_peek(gus, bank_pos + 40) |
  427. (snd_gf1_peek(gus, bank_pos + 41) << 8) |
  428. (snd_gf1_peek(gus, bank_pos + 42) << 16) |
  429. (snd_gf1_peek(gus, bank_pos + 43) << 24);
  430. }
  431. #if 0
  432. if (gus->gf1.rom_memory > 0) {
  433. if (gus->gf1.rom_banks == 1 && gus->gf1.rom_present == 8)
  434. gus->card->type = SNDRV_CARD_TYPE_IW_DYNASONIC;
  435. }
  436. #endif
  437. snd_gf1_write8(gus, SNDRV_GF1_GB_MEMORY_CONTROL, 0x00); /* select RAM */
  438. if (!gus->gf1.enh_mode)
  439. snd_interwave_reset(gus);
  440. }
  441. static void __devinit snd_interwave_init(int dev, struct snd_gus_card * gus)
  442. {
  443. unsigned long flags;
  444. /* ok.. some InterWave specific initialization */
  445. spin_lock_irqsave(&gus->reg_lock, flags);
  446. snd_gf1_write8(gus, SNDRV_GF1_GB_SOUND_BLASTER_CONTROL, 0x00);
  447. snd_gf1_write8(gus, SNDRV_GF1_GB_COMPATIBILITY, 0x1f);
  448. snd_gf1_write8(gus, SNDRV_GF1_GB_DECODE_CONTROL, 0x49);
  449. snd_gf1_write8(gus, SNDRV_GF1_GB_VERSION_NUMBER, 0x11);
  450. snd_gf1_write8(gus, SNDRV_GF1_GB_MPU401_CONTROL_A, 0x00);
  451. snd_gf1_write8(gus, SNDRV_GF1_GB_MPU401_CONTROL_B, 0x30);
  452. snd_gf1_write8(gus, SNDRV_GF1_GB_EMULATION_IRQ, 0x00);
  453. spin_unlock_irqrestore(&gus->reg_lock, flags);
  454. gus->equal_irq = 1;
  455. gus->codec_flag = 1;
  456. gus->interwave = 1;
  457. gus->max_flag = 1;
  458. gus->joystick_dac = joystick_dac[dev];
  459. }
  460. static struct snd_kcontrol_new snd_interwave_controls[] = {
  461. CS4231_DOUBLE("Master Playback Switch", 0, CS4231_LINE_LEFT_OUTPUT, CS4231_LINE_RIGHT_OUTPUT, 7, 7, 1, 1),
  462. CS4231_DOUBLE("Master Playback Volume", 0, CS4231_LINE_LEFT_OUTPUT, CS4231_LINE_RIGHT_OUTPUT, 0, 0, 31, 1),
  463. CS4231_DOUBLE("Mic Playback Switch", 0, CS4231_LEFT_MIC_INPUT, CS4231_RIGHT_MIC_INPUT, 7, 7, 1, 1),
  464. CS4231_DOUBLE("Mic Playback Volume", 0, CS4231_LEFT_MIC_INPUT, CS4231_RIGHT_MIC_INPUT, 0, 0, 31, 1)
  465. };
  466. static int __devinit snd_interwave_mixer(struct snd_cs4231 *chip)
  467. {
  468. struct snd_card *card = chip->card;
  469. struct snd_ctl_elem_id id1, id2;
  470. unsigned int idx;
  471. int err;
  472. memset(&id1, 0, sizeof(id1));
  473. memset(&id2, 0, sizeof(id2));
  474. id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  475. #if 0
  476. /* remove mono microphone controls */
  477. strcpy(id1.name, "Mic Playback Switch");
  478. if ((err = snd_ctl_remove_id(card, &id1)) < 0)
  479. return err;
  480. strcpy(id1.name, "Mic Playback Volume");
  481. if ((err = snd_ctl_remove_id(card, &id1)) < 0)
  482. return err;
  483. #endif
  484. /* add new master and mic controls */
  485. for (idx = 0; idx < ARRAY_SIZE(snd_interwave_controls); idx++)
  486. if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_interwave_controls[idx], chip))) < 0)
  487. return err;
  488. snd_cs4231_out(chip, CS4231_LINE_LEFT_OUTPUT, 0x9f);
  489. snd_cs4231_out(chip, CS4231_LINE_RIGHT_OUTPUT, 0x9f);
  490. snd_cs4231_out(chip, CS4231_LEFT_MIC_INPUT, 0x9f);
  491. snd_cs4231_out(chip, CS4231_RIGHT_MIC_INPUT, 0x9f);
  492. /* reassign AUXA to SYNTHESIZER */
  493. strcpy(id1.name, "Aux Playback Switch");
  494. strcpy(id2.name, "Synth Playback Switch");
  495. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  496. return err;
  497. strcpy(id1.name, "Aux Playback Volume");
  498. strcpy(id2.name, "Synth Playback Volume");
  499. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  500. return err;
  501. /* reassign AUXB to CD */
  502. strcpy(id1.name, "Aux Playback Switch"); id1.index = 1;
  503. strcpy(id2.name, "CD Playback Switch");
  504. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  505. return err;
  506. strcpy(id1.name, "Aux Playback Volume");
  507. strcpy(id2.name, "CD Playback Volume");
  508. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  509. return err;
  510. return 0;
  511. }
  512. #ifdef CONFIG_PNP
  513. static int __devinit snd_interwave_pnp(int dev, struct snd_interwave *iwcard,
  514. struct pnp_card_link *card,
  515. const struct pnp_card_device_id *id)
  516. {
  517. struct pnp_dev *pdev;
  518. struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
  519. int err;
  520. iwcard->dev = pnp_request_card_device(card, id->devs[0].id, NULL);
  521. if (iwcard->dev == NULL) {
  522. kfree(cfg);
  523. return -EBUSY;
  524. }
  525. #ifdef SNDRV_STB
  526. iwcard->devtc = pnp_request_card_device(card, id->devs[1].id, NULL);
  527. if (iwcard->devtc == NULL) {
  528. kfree(cfg);
  529. return -EBUSY;
  530. }
  531. #endif
  532. /* Synth & Codec initialization */
  533. pdev = iwcard->dev;
  534. pnp_init_resource_table(cfg);
  535. if (port[dev] != SNDRV_AUTO_PORT) {
  536. pnp_resource_change(&cfg->port_resource[0], port[dev], 16);
  537. pnp_resource_change(&cfg->port_resource[1], port[dev] + 0x100, 12);
  538. pnp_resource_change(&cfg->port_resource[2], port[dev] + 0x10c, 4);
  539. }
  540. if (dma1[dev] != SNDRV_AUTO_DMA)
  541. pnp_resource_change(&cfg->dma_resource[0], dma1[dev], 1);
  542. if (dma2[dev] != SNDRV_AUTO_DMA)
  543. pnp_resource_change(&cfg->dma_resource[1], dma2[dev], 1);
  544. if (dma2[dev] < 0)
  545. pnp_resource_change(&cfg->dma_resource[1], 4, 1);
  546. if (irq[dev] != SNDRV_AUTO_IRQ)
  547. pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
  548. if (pnp_manual_config_dev(pdev, cfg, 0) < 0)
  549. snd_printk(KERN_ERR "InterWave - Synth - the requested resources are invalid, using auto config\n");
  550. err = pnp_activate_dev(pdev);
  551. if (err < 0) {
  552. kfree(cfg);
  553. snd_printk(KERN_ERR "InterWave PnP configure failure (out of resources?)\n");
  554. return err;
  555. }
  556. if (pnp_port_start(pdev, 0) + 0x100 != pnp_port_start(pdev, 1) ||
  557. pnp_port_start(pdev, 0) + 0x10c != pnp_port_start(pdev, 2)) {
  558. kfree(cfg);
  559. snd_printk(KERN_ERR "PnP configure failure (wrong ports)\n");
  560. return -ENOENT;
  561. }
  562. port[dev] = pnp_port_start(pdev, 0);
  563. dma1[dev] = pnp_dma(pdev, 0);
  564. if (dma2[dev] >= 0)
  565. dma2[dev] = pnp_dma(pdev, 1);
  566. irq[dev] = pnp_irq(pdev, 0);
  567. snd_printdd("isapnp IW: sb port=0x%lx, gf1 port=0x%lx, codec port=0x%lx\n",
  568. pnp_port_start(pdev, 0),
  569. pnp_port_start(pdev, 1),
  570. pnp_port_start(pdev, 2));
  571. snd_printdd("isapnp IW: dma1=%i, dma2=%i, irq=%i\n", dma1[dev], dma2[dev], irq[dev]);
  572. #ifdef SNDRV_STB
  573. /* Tone Control initialization */
  574. pdev = iwcard->devtc;
  575. pnp_init_resource_table(cfg);
  576. if (port_tc[dev] != SNDRV_AUTO_PORT)
  577. pnp_resource_change(&cfg->port_resource[0], port_tc[dev], 1);
  578. if (pnp_manual_config_dev(pdev, cfg, 0) < 0)
  579. snd_printk(KERN_ERR "InterWave - ToneControl - the requested resources are invalid, using auto config\n");
  580. err = pnp_activate_dev(pdev);
  581. if (err < 0) {
  582. kfree(cfg);
  583. snd_printk(KERN_ERR "InterWave ToneControl PnP configure failure (out of resources?)\n");
  584. return err;
  585. }
  586. port_tc[dev] = pnp_port_start(pdev, 0);
  587. snd_printdd("isapnp IW: tone control port=0x%lx\n", port_tc[dev]);
  588. #endif
  589. kfree(cfg);
  590. return 0;
  591. }
  592. #endif /* CONFIG_PNP */
  593. static void snd_interwave_free(struct snd_card *card)
  594. {
  595. struct snd_interwave *iwcard = card->private_data;
  596. if (iwcard == NULL)
  597. return;
  598. #ifdef SNDRV_STB
  599. release_and_free_resource(iwcard->i2c_res);
  600. #endif
  601. if (iwcard->irq >= 0)
  602. free_irq(iwcard->irq, (void *)iwcard);
  603. }
  604. static struct snd_card *snd_interwave_card_new(int dev)
  605. {
  606. struct snd_card *card;
  607. struct snd_interwave *iwcard;
  608. card = snd_card_new(index[dev], id[dev], THIS_MODULE,
  609. sizeof(struct snd_interwave));
  610. if (card == NULL)
  611. return NULL;
  612. iwcard = card->private_data;
  613. iwcard->card = card;
  614. iwcard->irq = -1;
  615. card->private_free = snd_interwave_free;
  616. return card;
  617. }
  618. static int __devinit snd_interwave_probe(struct snd_card *card, int dev)
  619. {
  620. int xirq, xdma1, xdma2;
  621. struct snd_interwave *iwcard = card->private_data;
  622. struct snd_cs4231 *cs4231;
  623. struct snd_gus_card *gus;
  624. #ifdef SNDRV_STB
  625. struct snd_i2c_bus *i2c_bus;
  626. #endif
  627. struct snd_pcm *pcm;
  628. char *str;
  629. int err;
  630. xirq = irq[dev];
  631. xdma1 = dma1[dev];
  632. xdma2 = dma2[dev];
  633. if ((err = snd_gus_create(card,
  634. port[dev],
  635. -xirq, xdma1, xdma2,
  636. 0, 32,
  637. pcm_channels[dev], effect[dev], &gus)) < 0)
  638. return err;
  639. if ((err = snd_interwave_detect(iwcard, gus, dev
  640. #ifdef SNDRV_STB
  641. , &i2c_bus
  642. #endif
  643. )) < 0)
  644. return err;
  645. iwcard->gus_status_reg = gus->gf1.reg_irqstat;
  646. iwcard->pcm_status_reg = gus->gf1.port + 0x10c + 2;
  647. snd_interwave_init(dev, gus);
  648. snd_interwave_detect_memory(gus);
  649. if ((err = snd_gus_initialize(gus)) < 0)
  650. return err;
  651. if (request_irq(xirq, snd_interwave_interrupt, SA_INTERRUPT,
  652. "InterWave", iwcard)) {
  653. snd_printk(KERN_ERR PFX "unable to grab IRQ %d\n", xirq);
  654. return -EBUSY;
  655. }
  656. iwcard->irq = xirq;
  657. if ((err = snd_cs4231_create(card,
  658. gus->gf1.port + 0x10c, -1, xirq,
  659. xdma2 < 0 ? xdma1 : xdma2, xdma1,
  660. CS4231_HW_INTERWAVE,
  661. CS4231_HWSHARE_IRQ |
  662. CS4231_HWSHARE_DMA1 |
  663. CS4231_HWSHARE_DMA2,
  664. &cs4231)) < 0)
  665. return err;
  666. if ((err = snd_cs4231_pcm(cs4231, 0, &pcm)) < 0)
  667. return err;
  668. sprintf(pcm->name + strlen(pcm->name), " rev %c", gus->revision + 'A');
  669. strcat(pcm->name, " (codec)");
  670. if ((err = snd_cs4231_timer(cs4231, 2, NULL)) < 0)
  671. return err;
  672. if ((err = snd_cs4231_mixer(cs4231)) < 0)
  673. return err;
  674. if (pcm_channels[dev] > 0) {
  675. if ((err = snd_gf1_pcm_new(gus, 1, 1, NULL)) < 0)
  676. return err;
  677. }
  678. if ((err = snd_interwave_mixer(cs4231)) < 0)
  679. return err;
  680. #ifdef SNDRV_STB
  681. {
  682. struct snd_ctl_elem_id id1, id2;
  683. memset(&id1, 0, sizeof(id1));
  684. memset(&id2, 0, sizeof(id2));
  685. id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  686. strcpy(id1.name, "Master Playback Switch");
  687. strcpy(id2.name, id1.name);
  688. id2.index = 1;
  689. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  690. return err;
  691. strcpy(id1.name, "Master Playback Volume");
  692. strcpy(id2.name, id1.name);
  693. if ((err = snd_ctl_rename_id(card, &id1, &id2)) < 0)
  694. return err;
  695. if ((err = snd_tea6330t_update_mixer(card, i2c_bus, 0, 1)) < 0)
  696. return err;
  697. }
  698. #endif
  699. gus->uart_enable = midi[dev];
  700. if ((err = snd_gf1_rawmidi_new(gus, 0, NULL)) < 0)
  701. return err;
  702. #ifndef SNDRV_STB
  703. str = "AMD InterWave";
  704. if (gus->gf1.rom_banks == 1 && gus->gf1.rom_present == 8)
  705. str = "Dynasonic 3-D";
  706. #else
  707. str = "InterWave STB";
  708. #endif
  709. strcpy(card->driver, str);
  710. strcpy(card->shortname, str);
  711. sprintf(card->longname, "%s at 0x%lx, irq %i, dma %d",
  712. str,
  713. gus->gf1.port,
  714. xirq,
  715. xdma1);
  716. if (xdma2 >= 0)
  717. sprintf(card->longname + strlen(card->longname), "&%d", xdma2);
  718. if ((err = snd_card_register(card)) < 0)
  719. return err;
  720. iwcard->cs4231 = cs4231;
  721. iwcard->gus = gus;
  722. return 0;
  723. }
  724. static int __init snd_interwave_nonpnp_probe1(int dev, struct platform_device *devptr)
  725. {
  726. struct snd_card *card;
  727. int err;
  728. card = snd_interwave_card_new(dev);
  729. if (! card)
  730. return -ENOMEM;
  731. snd_card_set_dev(card, &devptr->dev);
  732. if ((err = snd_interwave_probe(card, dev)) < 0) {
  733. snd_card_free(card);
  734. return err;
  735. }
  736. platform_set_drvdata(devptr, card);
  737. return 0;
  738. }
  739. static int __init snd_interwave_nonpnp_probe(struct platform_device *pdev)
  740. {
  741. int dev = pdev->id;
  742. int err;
  743. static int possible_irqs[] = {5, 11, 12, 9, 7, 15, 3, -1};
  744. static int possible_dmas[] = {0, 1, 3, 5, 6, 7, -1};
  745. if (irq[dev] == SNDRV_AUTO_IRQ) {
  746. if ((irq[dev] = snd_legacy_find_free_irq(possible_irqs)) < 0) {
  747. snd_printk(KERN_ERR PFX "unable to find a free IRQ\n");
  748. return -EBUSY;
  749. }
  750. }
  751. if (dma1[dev] == SNDRV_AUTO_DMA) {
  752. if ((dma1[dev] = snd_legacy_find_free_dma(possible_dmas)) < 0) {
  753. snd_printk(KERN_ERR PFX "unable to find a free DMA1\n");
  754. return -EBUSY;
  755. }
  756. }
  757. if (dma2[dev] == SNDRV_AUTO_DMA) {
  758. if ((dma2[dev] = snd_legacy_find_free_dma(possible_dmas)) < 0) {
  759. snd_printk(KERN_ERR PFX "unable to find a free DMA2\n");
  760. return -EBUSY;
  761. }
  762. }
  763. if (port[dev] != SNDRV_AUTO_PORT)
  764. return snd_interwave_nonpnp_probe1(dev, pdev);
  765. else {
  766. static long possible_ports[] = {0x210, 0x220, 0x230, 0x240, 0x250, 0x260};
  767. int i;
  768. for (i = 0; i < ARRAY_SIZE(possible_ports); i++) {
  769. port[dev] = possible_ports[i];
  770. err = snd_interwave_nonpnp_probe1(dev, pdev);
  771. if (! err)
  772. return 0;
  773. }
  774. return err;
  775. }
  776. }
  777. static int __devexit snd_interwave_nonpnp_remove(struct platform_device *devptr)
  778. {
  779. snd_card_free(platform_get_drvdata(devptr));
  780. platform_set_drvdata(devptr, NULL);
  781. return 0;
  782. }
  783. static struct platform_driver snd_interwave_driver = {
  784. .probe = snd_interwave_nonpnp_probe,
  785. .remove = __devexit_p(snd_interwave_nonpnp_remove),
  786. /* FIXME: suspend,resume */
  787. .driver = {
  788. .name = INTERWAVE_DRIVER
  789. },
  790. };
  791. #ifdef CONFIG_PNP
  792. static int __devinit snd_interwave_pnp_detect(struct pnp_card_link *pcard,
  793. const struct pnp_card_device_id *pid)
  794. {
  795. static int dev;
  796. struct snd_card *card;
  797. int res;
  798. for ( ; dev < SNDRV_CARDS; dev++) {
  799. if (enable[dev] && isapnp[dev])
  800. break;
  801. }
  802. if (dev >= SNDRV_CARDS)
  803. return -ENODEV;
  804. card = snd_interwave_card_new(dev);
  805. if (! card)
  806. return -ENOMEM;
  807. if ((res = snd_interwave_pnp(dev, card->private_data, pcard, pid)) < 0) {
  808. snd_card_free(card);
  809. return res;
  810. }
  811. snd_card_set_dev(card, &pcard->card->dev);
  812. if ((res = snd_interwave_probe(card, dev)) < 0) {
  813. snd_card_free(card);
  814. return res;
  815. }
  816. pnp_set_card_drvdata(pcard, card);
  817. dev++;
  818. return 0;
  819. }
  820. static void __devexit snd_interwave_pnp_remove(struct pnp_card_link * pcard)
  821. {
  822. snd_card_free(pnp_get_card_drvdata(pcard));
  823. pnp_set_card_drvdata(pcard, NULL);
  824. }
  825. static struct pnp_card_driver interwave_pnpc_driver = {
  826. .flags = PNP_DRIVER_RES_DISABLE,
  827. .name = INTERWAVE_PNP_DRIVER,
  828. .id_table = snd_interwave_pnpids,
  829. .probe = snd_interwave_pnp_detect,
  830. .remove = __devexit_p(snd_interwave_pnp_remove),
  831. /* FIXME: suspend,resume */
  832. };
  833. #endif /* CONFIG_PNP */
  834. static int __init alsa_card_interwave_init(void)
  835. {
  836. int i, err, cards = 0;
  837. if ((err = platform_driver_register(&snd_interwave_driver)) < 0)
  838. return err;
  839. for (i = 0; i < SNDRV_CARDS && enable[i]; i++) {
  840. struct platform_device *device;
  841. #ifdef CONFIG_PNP
  842. if (isapnp[i])
  843. continue;
  844. #endif
  845. device = platform_device_register_simple(INTERWAVE_DRIVER,
  846. i, NULL, 0);
  847. if (IS_ERR(device)) {
  848. err = PTR_ERR(device);
  849. platform_driver_unregister(&snd_interwave_driver);
  850. return err;
  851. }
  852. cards++;
  853. }
  854. /* ISA PnP cards */
  855. i = pnp_register_card_driver(&interwave_pnpc_driver);
  856. if (i > 0)
  857. cards += i;
  858. if (!cards) {
  859. pnp_unregister_card_driver(&interwave_pnpc_driver);
  860. platform_driver_unregister(&snd_interwave_driver);
  861. #ifdef MODULE
  862. printk(KERN_ERR "InterWave soundcard not found or device busy\n");
  863. #endif
  864. return -ENODEV;
  865. }
  866. return 0;
  867. }
  868. static void __exit alsa_card_interwave_exit(void)
  869. {
  870. pnp_unregister_card_driver(&interwave_pnpc_driver);
  871. platform_driver_unregister(&snd_interwave_driver);
  872. }
  873. module_init(alsa_card_interwave_init)
  874. module_exit(alsa_card_interwave_exit)