sb_card.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:32k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * sound/sb_card.c
  3.  *
  4.  * Detection routine for the Sound Blaster cards.
  5.  *
  6.  *
  7.  * Copyright (C) by Hannu Savolainen 1993-1997
  8.  *
  9.  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  10.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  11.  * for more info.
  12.  *
  13.  * 26-11-1999 Patched to compile without ISA PnP support in the
  14.  * kernel - Daniel Stone (tamriel@ductape.net) 
  15.  *
  16.  * 06-01-2000 Refined and bugfixed ISA PnP support, added
  17.  *  CMI 8330 support - Alessandro Zummo <azummo@ita.flashnet.it>
  18.  *
  19.  * 18-01-2000 Separated sb_card and sb_common
  20.  *  Jeff Garzik <jgarzik@mandrakesoft.com>
  21.  *
  22.  * 04-02-2000 Added Soundblaster AWE 64 PnP support, isapnpjump
  23.  *  Alessandro Zummo <azummo@ita.flashnet.it>
  24.  *
  25.  * 11-02-2000 Added Soundblaster AWE 32 PnP support, refined PnP code
  26.  *  Alessandro Zummo <azummo@ita.flashnet.it>
  27.  *
  28.  * 13-02-2000 Hopefully fixed awe/sb16 related bugs, code cleanup
  29.  *  Alessandro Zummo <azummo@ita.flashnet.it>
  30.  *
  31.  * 13-03-2000 Added some more cards, thanks to Torsten Werner.
  32.  *  Removed joystick and wavetable code, there are better places for them.
  33.  *  Code cleanup plus some fixes. 
  34.  *  Alessandro Zummo <azummo@ita.flashnet.it>
  35.  * 
  36.  * 26-03-2000 Fixed acer, esstype and sm_games module options.
  37.  *  Alessandro Zummo <azummo@ita.flashnet.it>
  38.  *
  39.  * 12-04-2000 ISAPnP cleanup, reorg, fixes, and multiple card support.
  40.  *  Thanks to Ga雔 Qu閞i and Alessandro Zummo for testing and fixes.
  41.  *  Paul E. Laufer <pelaufer@csupomona.edu>
  42.  *
  43.  * 06-05-2000 added another card. Daniel M. Newman <dmnewman@pobox.com>
  44.  *
  45.  * 25-05-2000 Added Creative SB AWE64 Gold (CTL00B2). 
  46.  *  P錶-Kristian Engstad <engstad@att.net>
  47.  *
  48.  * 12-08-2000 Added Creative SB32 PnP (CTL009F).
  49.  *  Kasatenko Ivan Alex. <skywriter@rnc.ru>
  50.  *
  51.  * 21-09-2000 Got rid of attach_sbmpu
  52.  *  Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  53.  *
  54.  * 28-10-2000 Added pnplegacy support
  55.  *  Daniel Church <dchurch@mbhs.edu>
  56.  *
  57.  * 01-10-2001 Added a new flavor of Creative SB AWE64 PnP (CTL00E9).
  58.  *      Jerome Cornet <jcornet@free.fr>
  59.  */
  60. #include <linux/config.h>
  61. #include <linux/mca.h>
  62. #include <linux/module.h>
  63. #include <linux/init.h>
  64. #include <linux/isapnp.h>
  65. #include "sound_config.h"
  66. #include "sb_mixer.h"
  67. #include "sb.h"
  68. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  69. #define SB_CARDS_MAX 5
  70. #else
  71. #define SB_CARDS_MAX 1
  72. #endif
  73. static int sbmpu[SB_CARDS_MAX] = {0};
  74. static int sb_cards_num = 0;
  75. extern void *smw_free;
  76. /*
  77.  *    Note DMA2 of -1 has the right meaning in the SB16 driver as well
  78.  *    as here. It will cause either an error if it is needed or a fallback
  79.  *    to the 8bit channel.
  80.  */
  81. static int __initdata mpu_io = 0;
  82. static int __initdata io = -1;
  83. static int __initdata irq = -1;
  84. static int __initdata dma = -1;
  85. static int __initdata dma16 = -1;   /* Set this for modules that need it */
  86. static int __initdata type = 0;    /* Can set this to a specific card type */
  87. static int __initdata esstype   = 0; /* ESS chip type */
  88. static int __initdata acer  = 0; /* Do acer notebook init? */
  89. static int __initdata sm_games  = 0; /* Logitech soundman games? */
  90. static void __init attach_sb_card(struct address_info *hw_config)
  91. {
  92. if(!sb_dsp_init(hw_config, THIS_MODULE))
  93. hw_config->slots[0] = -1;
  94. }
  95. static int __init probe_sb(struct address_info *hw_config)
  96. {
  97. struct sb_module_options sbmo;
  98. if (hw_config->io_base == -1 || hw_config->dma == -1 || hw_config->irq == -1)
  99. {
  100. printk(KERN_ERR "sb: I/O, IRQ, and DMA are mandatoryn");
  101. return -EINVAL;
  102. }
  103. #ifdef CONFIG_MCA
  104. /* MCA code added by ZP Gu (zpg@castle.net) */
  105. if (MCA_bus) {               /* no multiple REPLY card probing */
  106. int slot;
  107. u8 pos2, pos3, pos4;
  108. slot = mca_find_adapter( 0x5138, 0 );
  109. if( slot == MCA_NOTFOUND ) 
  110. {
  111. slot = mca_find_adapter( 0x5137, 0 );
  112. if (slot != MCA_NOTFOUND)
  113. mca_set_adapter_name( slot, "REPLY SB16 & SCSI Adapter" );
  114. }
  115. else
  116. {
  117. mca_set_adapter_name( slot, "REPLY SB16 Adapter" );
  118. }
  119. if (slot != MCA_NOTFOUND) 
  120. {
  121. mca_mark_as_used(slot);
  122. pos2 = mca_read_stored_pos( slot, 2 );
  123. pos3 = mca_read_stored_pos( slot, 3 );
  124. pos4 = mca_read_stored_pos( slot, 4 );
  125. if (pos2 & 0x4) 
  126. {
  127. /* enabled? */
  128. static unsigned short irq[] = { 0, 5, 7, 10 };
  129. /*
  130. static unsigned short midiaddr[] = {0, 0x330, 0, 0x300 };
  131.         */
  132. hw_config->io_base = 0x220 + 0x20 * (pos2 >> 6);
  133. hw_config->irq = irq[(pos4 >> 5) & 0x3];
  134. hw_config->dma = pos3 & 0xf;
  135. /* Reply ADF wrong on High DMA, pos[1] should start w/ 00 */
  136. hw_config->dma2 = (pos3 >> 4) & 0x3;
  137. if (hw_config->dma2 == 0)
  138. hw_config->dma2 = hw_config->dma;
  139. else
  140. hw_config->dma2 += 4;
  141. /*
  142. hw_config->driver_use_2 = midiaddr[(pos2 >> 3) & 0x3];
  143. */
  144. printk(KERN_INFO "sb: Reply MCA SB at slot=%d 
  145. iobase=0x%x irq=%d lo_dma=%d hi_dma=%dn",
  146. slot+1,
  147.          hw_config->io_base, hw_config->irq,
  148.          hw_config->dma, hw_config->dma2);
  149. }
  150. else
  151. {
  152. printk (KERN_INFO "sb: Reply SB Base I/O address disabledn");
  153. }
  154. }
  155. }
  156. #endif
  157. /* Setup extra module options */
  158. sbmo.acer  = acer;
  159. sbmo.sm_games = sm_games;
  160. sbmo.esstype = esstype;
  161. return sb_dsp_detect(hw_config, 0, 0, &sbmo);
  162. }
  163. static void __exit unload_sb(struct address_info *hw_config, int card)
  164. {
  165. if(hw_config->slots[0]!=-1)
  166. sb_dsp_unload(hw_config, sbmpu[card]);
  167. }
  168. static struct address_info cfg[SB_CARDS_MAX];
  169. static struct address_info cfg_mpu[SB_CARDS_MAX];
  170. struct pci_dev  *sb_dev[SB_CARDS_MAX]  = {NULL}, 
  171. *mpu_dev[SB_CARDS_MAX] = {NULL},
  172. *opl_dev[SB_CARDS_MAX] = {NULL};
  173. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  174. static int isapnp = 1;
  175. static int isapnpjump = 0;
  176. static int multiple = 1;
  177. static int pnplegacy = 0;
  178. static int reverse = 0;
  179. static int uart401 = 0;
  180. static int audio_activated[SB_CARDS_MAX] = {0};
  181. static int mpu_activated[SB_CARDS_MAX]   = {0};
  182. static int opl_activated[SB_CARDS_MAX]   = {0};
  183. #else
  184. static int isapnp = 0;
  185. static int multiple = 0;
  186. static int pnplegacy = 0;
  187. #endif
  188. MODULE_DESCRIPTION("Soundblaster driver");
  189. MODULE_LICENSE("GPL");
  190. MODULE_PARM(io, "i");
  191. MODULE_PARM(irq, "i");
  192. MODULE_PARM(dma, "i");
  193. MODULE_PARM(dma16, "i");
  194. MODULE_PARM(mpu_io, "i");
  195. MODULE_PARM(type, "i");
  196. MODULE_PARM(sm_games, "i");
  197. MODULE_PARM(esstype, "i");
  198. MODULE_PARM(acer, "i");
  199. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  200. MODULE_PARM(isapnp, "i");
  201. MODULE_PARM(isapnpjump, "i");
  202. MODULE_PARM(multiple, "i");
  203. MODULE_PARM(pnplegacy, "i");
  204. MODULE_PARM(reverse, "i");
  205. MODULE_PARM(uart401, "i");
  206. MODULE_PARM_DESC(isapnp, "When set to 0, Plug & Play support will be disabled");
  207. MODULE_PARM_DESC(isapnpjump, "Jumps to a specific slot in the driver's PnP table. Use the source, Luke.");
  208. MODULE_PARM_DESC(multiple, "When set to 0, will not search for multiple cards");
  209. MODULE_PARM_DESC(pnplegacy, "When set to 1, will search for a legacy SB card along with any PnP cards.");
  210. MODULE_PARM_DESC(reverse, "When set to 1, will reverse ISAPnP search order");
  211. MODULE_PARM_DESC(uart401, "When set to 1, will attempt to detect and enable the mpu on some clones");
  212. #endif
  213. MODULE_PARM_DESC(io, "Soundblaster i/o base address (0x220,0x240,0x260,0x280)");
  214. MODULE_PARM_DESC(irq, "IRQ (5,7,9,10)");
  215. MODULE_PARM_DESC(dma, "8-bit DMA channel (0,1,3)");
  216. MODULE_PARM_DESC(dma16, "16-bit DMA channel (5,6,7)");
  217. MODULE_PARM_DESC(mpu_io, "Mpu base address");
  218. MODULE_PARM_DESC(type, "You can set this to specific card type");
  219. MODULE_PARM_DESC(sm_games, "Enable support for Logitech soundman games");
  220. MODULE_PARM_DESC(esstype, "ESS chip type");
  221. MODULE_PARM_DESC(acer, "Set this to detect cards in some ACER notebooks");
  222. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  223. /* Please add new entries at the end of the table */
  224. static struct {
  225. char *name; 
  226. unsigned short card_vendor, card_device, 
  227. audio_vendor, audio_function,
  228. mpu_vendor, mpu_function,
  229. opl_vendor, opl_function;
  230. short dma, dma2, mpu_io, mpu_irq; /* see sb_init() */
  231. } sb_isapnp_list[] __initdata = {
  232. {"Sound Blaster 16", 
  233. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0024),
  234. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  235. 0,0,0,0,
  236. 0,1,1,-1},
  237. {"Sound Blaster 16",
  238. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0025),
  239. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  240. 0,0,0,0,
  241. 0,1,1,-1},
  242. {"Sound Blaster 16", 
  243. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0026), 
  244. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  245. 0,0,0,0,
  246. 0,1,1,-1},
  247. {"Sound Blaster 16", 
  248. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0027), 
  249. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  250. 0,0,0,0,
  251. 0,1,1,-1},
  252. {"Sound Blaster 16", 
  253. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0028), 
  254. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  255. 0,0,0,0,
  256. 0,1,1,-1},
  257. {"Sound Blaster 16", 
  258. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0029), 
  259. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  260. 0,0,0,0,
  261. 0,1,1,-1},
  262. {"Sound Blaster 16",
  263. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002a),
  264. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  265. 0,0,0,0,
  266. 0,1,1,-1},
  267. {"Sound Blaster 16", 
  268. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002b), 
  269. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  270. 0,0,0,0,
  271. 0,1,1,-1},
  272. {"Sound Blaster 16", 
  273. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002c), 
  274. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  275. 0,0,0,0,
  276. 0,1,1,-1},
  277. {"Sound Blaster 16", 
  278. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002c), 
  279. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  280. 0,0,0,0,
  281. 0,1,1,-1},
  282. {"Sound Blaster 16", 
  283. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00ed), 
  284. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041),
  285. 0,0,0,0,
  286. 0,1,1,-1},
  287. {"Sound Blaster 16", 
  288. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0086), 
  289. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041),
  290. 0,0,0,0,
  291. 0,1,1,-1},
  292. {"Sound Blaster 16", 
  293. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0086), 
  294. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041),
  295. 0,0,0,0,
  296. 0,1,1,-1},
  297. {"Sound Blaster Vibra16S", 
  298. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0051), 
  299. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0001),
  300. 0,0,0,0,
  301. 0,1,1,-1},
  302. {"Sound Blaster Vibra16C", 
  303. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0070), 
  304. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0001),
  305. 0,0,0,0,
  306. 0,1,1,-1},
  307. {"Sound Blaster Vibra16CL", 
  308. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0080), 
  309. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041),
  310. 0,0,0,0,
  311. 0,1,1,-1},
  312. {"Sound Blaster Vibra16X", 
  313. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00F0), 
  314. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0043),
  315. 0,0,0,0,
  316. 0,1,1,-1},
  317. {"Sound Blaster AWE 32", 
  318. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0039), 
  319. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  320. 0,0,0,0,
  321. 0,1,1,-1},
  322. {"Sound Blaster AWE 32",
  323. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0042), 
  324. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  325. 0,0,0,0,
  326. 0,1,1,-1},
  327. {"Sound Blaster AWE 32",
  328. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0043), 
  329. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  330. 0,0,0,0,
  331. 0,1,1,-1},
  332. {"Sound Blaster AWE 32",
  333. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0044),
  334. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  335. 0,0,0,0,
  336. 0,1,1,-1},
  337.         {"Sound Blaster AWE 32",
  338. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0045),
  339. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  340. 0,0,0,0,
  341. 0,1,1,-1},
  342. {"Sound Blaster AWE 32",
  343. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0046),
  344. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  345. 0,0,0,0,
  346. 0,1,1,-1},
  347. {"Sound Blaster AWE 32",
  348. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0047),
  349. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  350. 0,0,0,0,
  351. 0,1,1,-1},
  352. {"Sound Blaster AWE 32",
  353. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0048), 
  354. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  355. 0,0,0,0,
  356. 0,1,1,-1},
  357. {"Sound Blaster AWE 32",
  358. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0054), 
  359. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031),
  360. 0,0,0,0,
  361. 0,1,1,-1},
  362. {"Sound Blaster AWE 32",
  363. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009C), 
  364. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041),
  365. 0,0,0,0,
  366. 0,1,1,-1},
  367. {"Creative SB32 PnP",
  368. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009F),
  369. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041),
  370. 0,0,0,0,
  371. 0,1,1,-1},
  372. {"Sound Blaster AWE 64",
  373. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009D), 
  374. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0042),
  375. 0,0,0,0,
  376. 0,1,1,-1},
  377. {"Sound Blaster AWE 64 Gold",
  378. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009E), 
  379. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0044),
  380. 0,0,0,0,
  381. 0,1,1,-1},
  382. {"Sound Blaster AWE 64 Gold",
  383. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00B2),
  384. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0044),
  385. 0,0,0,0,
  386. 0,1,1,-1},
  387. {"Sound Blaster AWE 64",
  388. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C1), 
  389. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0042),
  390. 0,0,0,0,
  391. 0,1,1,-1},
  392. {"Sound Blaster AWE 64",
  393. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C3), 
  394. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045),
  395. 0,0,0,0,
  396. 0,1,1,-1},
  397. {"Sound Blaster AWE 64",
  398. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C5), 
  399. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045),
  400. 0,0,0,0,
  401. 0,1,1,-1},
  402. {"Sound Blaster AWE 64",
  403. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C7), 
  404. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045),
  405. 0,0,0,0,
  406. 0,1,1,-1},
  407. {"Sound Blaster AWE 64",
  408. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00E4), 
  409. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045),
  410. 0,0,0,0,
  411. 0,1,1,-1},
  412. {"Sound Blaster AWE 64",
  413. ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00E9), 
  414. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045),
  415. 0,0,0,0,
  416. 0,1,1,-1},
  417. {"ESS 1688",
  418. ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x0968), 
  419. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x0968),
  420. 0,0,0,0,
  421. 0,1,2,-1},
  422. {"ESS 1868",
  423. ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1868), 
  424. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1868),
  425. 0,0,0,0,
  426. 0,1,2,-1},
  427. {"ESS 1868",
  428. ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1868), 
  429. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x8611),
  430. 0,0,0,0,
  431. 0,1,2,-1},
  432. {"ESS 1869 PnP AudioDrive", 
  433. ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x0003), 
  434. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1869),
  435. 0,0,0,0,
  436. 0,1,2,-1},
  437. {"ESS 1869",
  438. ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1869), 
  439. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1869),
  440. 0,0,0,0,
  441. 0,1,2,-1},
  442. {"ESS 1878",
  443. ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1878), 
  444. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1878),
  445. 0,0,0,0,
  446. 0,1,2,-1},
  447. {"ESS 1879",
  448. ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1879), 
  449. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1879),
  450. 0,0,0,0,
  451. 0,1,2,-1},
  452. {"CMI 8330 SoundPRO",
  453. ISAPNP_VENDOR('C','M','I'), ISAPNP_DEVICE(0x0001), 
  454. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001),
  455. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  456. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001),
  457. 0,1,0,-1},
  458. {"Diamond DT0197H",
  459. ISAPNP_VENDOR('R','W','B'), ISAPNP_DEVICE(0x1688), 
  460. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001),
  461. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001),
  462. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  463. 0,-1,0,0},
  464. {"ALS007",
  465. ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0007),
  466. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001),
  467. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001),
  468. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  469. 0,-1,0,0},
  470. {"ALS100",
  471. ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0001), 
  472. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001),
  473. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001),
  474. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  475. 1,0,0,0},
  476. {"ALS110",
  477. ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0110),
  478. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x1001),
  479. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x1001),
  480. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  481. 1,0,0,0},
  482. {"ALS120",
  483. ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0120),
  484. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x2001),
  485. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x2001),
  486. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  487. 1,0,0,0},
  488. {"ALS200",
  489. ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0200),
  490. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0020),
  491. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0020),
  492. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  493. 1,0,0,0},
  494. {"RTL3000",
  495. ISAPNP_VENDOR('R','T','L'), ISAPNP_DEVICE(0x3000),
  496. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x2001),
  497. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x2001),
  498. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001),
  499. 1,0,0,0},
  500. {0}
  501. };
  502. static struct isapnp_device_id id_table[] __devinitdata = {
  503. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0024),
  504. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  505. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0025),
  506. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  507. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0026), 
  508. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  509. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0027), 
  510. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  511. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0028), 
  512. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  513. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0029), 
  514. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  515. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002a),
  516. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  517. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002b), 
  518. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  519. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002c), 
  520. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  521. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x002c), 
  522. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  523. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00ed), 
  524. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041), 0 },
  525. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0086), 
  526. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041), 0 },
  527. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0086), 
  528. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041), 0 },
  529. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0051), 
  530. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0001), 0 },
  531. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0070), 
  532. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0001), 0 },
  533. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0080), 
  534. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041), 0 },
  535. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00F0), 
  536. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0043), 0 },
  537. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0039), 
  538. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  539. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0042), 
  540. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  541. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0043), 
  542. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  543. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0044),
  544. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  545. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0045),
  546. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  547. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0048), 
  548. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  549. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x0054), 
  550. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0031), 0 },
  551. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009C), 
  552. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041), 0 },
  553. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009F),
  554. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0041), 0 },
  555. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009D), 
  556. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0042), 0 },
  557. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x009E), 
  558. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0044), 0 },
  559. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00B2),
  560. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0044), 0 },
  561. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C1), 
  562. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0042), 0 },
  563. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C3), 
  564. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045), 0 },
  565. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C5), 
  566. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045), 0 },
  567. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00C7), 
  568. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045), 0 },
  569. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00E4), 
  570. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045), 0 },
  571. { ISAPNP_VENDOR('C','T','L'), ISAPNP_DEVICE(0x00E9),
  572. ISAPNP_VENDOR('C','T','L'), ISAPNP_FUNCTION(0x0045), 0 },
  573. { ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x0968), 
  574. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x0968), 0 },
  575. { ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1868), 
  576. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1868), 0 },
  577. { ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1868), 
  578. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x8611), 0 },
  579. { ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x0003), 
  580. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1869), 0 },
  581. { ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1869), 
  582. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1869), 0 },
  583. { ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1878), 
  584. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1878), 0 },
  585. { ISAPNP_VENDOR('E','S','S'), ISAPNP_DEVICE(0x1879), 
  586. ISAPNP_VENDOR('E','S','S'), ISAPNP_FUNCTION(0x1879), 0 },
  587. { ISAPNP_VENDOR('C','M','I'), ISAPNP_DEVICE(0x0001), 
  588. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001), 0 },
  589. { ISAPNP_VENDOR('C','M','I'), ISAPNP_DEVICE(0x0001), 
  590. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  591. { ISAPNP_VENDOR('C','M','I'), ISAPNP_DEVICE(0x0001), 
  592. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001), 0 },
  593. { ISAPNP_VENDOR('R','W','B'), ISAPNP_DEVICE(0x1688), 
  594. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001), 0 },
  595. { ISAPNP_VENDOR('R','W','B'), ISAPNP_DEVICE(0x1688), 
  596. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001), 0 },
  597. { ISAPNP_VENDOR('R','W','B'), ISAPNP_DEVICE(0x1688), 
  598. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  599. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0007),
  600. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001), 0 },
  601. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0007),
  602. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001), 0 },
  603. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0007),
  604. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  605. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0001), 
  606. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0001), 0 },
  607. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0001), 
  608. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0001), 0 },
  609. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0001), 
  610. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  611. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0110),
  612. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x1001), 0 },
  613. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0110),
  614. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x1001), 0 },
  615. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0110),
  616. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  617. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0120),
  618. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x2001), 0 },
  619. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0120),
  620. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x2001), 0 },
  621. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0120),
  622. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  623. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0200),
  624. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x0020), 0 },
  625. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0200),
  626. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x0020), 0 },
  627. { ISAPNP_VENDOR('A','L','S'), ISAPNP_DEVICE(0x0200),
  628. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  629. { ISAPNP_VENDOR('R','T','L'), ISAPNP_DEVICE(0x3000),
  630. ISAPNP_VENDOR('@','@','@'), ISAPNP_FUNCTION(0x2001), 0 },
  631. { ISAPNP_VENDOR('R','T','L'), ISAPNP_DEVICE(0x3000),
  632. ISAPNP_VENDOR('@','X','@'), ISAPNP_FUNCTION(0x2001), 0 },
  633. { ISAPNP_VENDOR('R','T','L'), ISAPNP_DEVICE(0x3000),
  634. ISAPNP_VENDOR('@','H','@'), ISAPNP_FUNCTION(0x0001), 0 },
  635. {0}
  636. };
  637. MODULE_DEVICE_TABLE(isapnp, id_table);
  638. static struct pci_dev *activate_dev(char *devname, char *resname, struct pci_dev *dev)
  639. {
  640. int err;
  641. /* Device already active? Let's use it */
  642. if(dev->active)
  643. return(dev);
  644. if((err = dev->activate(dev)) < 0) {
  645. printk(KERN_ERR "sb: %s %s config failed (out of resources?)[%d]n", devname, resname, err);
  646. dev->deactivate(dev);
  647. return(NULL);
  648. }
  649. return(dev);
  650. }
  651. static struct pci_dev *sb_init(struct pci_bus *bus, struct address_info *hw_config, struct address_info *mpu_config, int slot, int card)
  652. {
  653. /* Configure Audio device */
  654. if((sb_dev[card] = isapnp_find_dev(bus, sb_isapnp_list[slot].audio_vendor, sb_isapnp_list[slot].audio_function, NULL)))
  655. {
  656. int ret;
  657. ret = sb_dev[card]->prepare(sb_dev[card]);
  658. /* If device is active, assume configured with /proc/isapnp
  659.  * and use anyway. Some other way to check this? */
  660. if(ret && ret != -EBUSY) {
  661. printk(KERN_ERR "sb: ISAPnP found device that could not be autoconfigured.n");
  662. return(NULL);
  663. }
  664. if(ret == -EBUSY)
  665. audio_activated[card] = 1;
  666. if((sb_dev[card] = activate_dev(sb_isapnp_list[slot].name, "sb", sb_dev[card])))
  667. {
  668. hw_config->io_base  = sb_dev[card]->resource[0].start;
  669. hw_config->irq  = sb_dev[card]->irq_resource[0].start;
  670. hw_config->dma  = sb_dev[card]->dma_resource[sb_isapnp_list[slot].dma].start;
  671. if(sb_isapnp_list[slot].dma2 != -1)
  672. hw_config->dma2 = sb_dev[card]->dma_resource[sb_isapnp_list[slot].dma2].start;
  673. else
  674. hw_config->dma2 = -1;
  675. } else
  676. return(NULL);
  677. } else
  678. return(NULL);
  679. /* Cards with separate OPL3 device (ALS, CMI, etc.)
  680.  * This is just to activate the device so the OPL module can use it */
  681. if(sb_isapnp_list[slot].opl_vendor || sb_isapnp_list[slot].opl_function) {
  682. if((opl_dev[card] = isapnp_find_dev(bus, sb_isapnp_list[slot].opl_vendor, sb_isapnp_list[slot].opl_function, NULL))) {
  683. int ret = opl_dev[card]->prepare(opl_dev[card]);
  684. /* If device is active, assume configured with
  685.  * /proc/isapnp and use anyway */
  686. if(ret && ret != -EBUSY) {
  687. printk(KERN_ERR "sb: OPL device could not be autoconfigured.n");
  688. return(sb_dev[card]);
  689. }
  690. if(ret == -EBUSY)
  691. opl_activated[card] = 1;
  692. /* Some have irq and dma for opl. the opl3 driver wont
  693.  * use 'em so don't configure 'em and hope it works -PEL */
  694. opl_dev[card]->irq_resource[0].flags = 0;
  695. opl_dev[card]->dma_resource[0].flags = 0;
  696. opl_dev[card] = activate_dev(sb_isapnp_list[slot].name, "opl3", opl_dev[card]);
  697. } else
  698. printk(KERN_ERR "sb: %s isapnp panic: opl3 device not foundn", sb_isapnp_list[slot].name);
  699. }
  700. /* Cards with MPU as part of Audio device (CTL and ESS) */
  701. if(!sb_isapnp_list[slot].mpu_vendor) {
  702. mpu_config->io_base = sb_dev[card]->resource[sb_isapnp_list[slot].mpu_io].start;
  703. return(sb_dev[card]);
  704. }
  705. /* Cards with separate MPU device (ALS, CMI, etc.) */
  706. if(!uart401)
  707. return(sb_dev[card]);
  708. if((mpu_dev[card] = isapnp_find_dev(bus, sb_isapnp_list[slot].mpu_vendor, sb_isapnp_list[slot].mpu_function, NULL)))
  709. {
  710. int ret = mpu_dev[card]->prepare(mpu_dev[card]);
  711. /* If device is active, assume configured with /proc/isapnp
  712.  * and use anyway */
  713. if(ret && ret != -EBUSY) {
  714. printk(KERN_ERR "sb: MPU device could not be autoconfigured.n");
  715. return(sb_dev[card]);
  716. }
  717. if(ret == -EBUSY)
  718. mpu_activated[card] = 1;
  719. /* Some cards ask for irq but don't need them - azummo */
  720. if(sb_isapnp_list[slot].mpu_irq == -1)
  721. mpu_dev[card]->irq_resource[0].flags = 0;
  722. if((mpu_dev[card] = activate_dev(sb_isapnp_list[slot].name, "mpu", mpu_dev[card]))) {
  723. mpu_config->io_base = mpu_dev[card]->resource[sb_isapnp_list[slot].mpu_io].start;
  724. if(sb_isapnp_list[slot].mpu_irq != -1)
  725. mpu_config->irq = mpu_dev[card]->irq_resource[sb_isapnp_list[slot].mpu_irq].start;
  726. }
  727. }
  728. else
  729. printk(KERN_ERR "sb: %s isapnp panic: mpu not foundn", sb_isapnp_list[slot].name);
  730. return(sb_dev[card]);
  731. }
  732. static int __init sb_isapnp_init(struct address_info *hw_config, struct address_info *mpu_config, struct pci_bus *bus, int slot, int card)
  733. {
  734. char *busname = bus->name[0] ? bus->name : sb_isapnp_list[slot].name;
  735. printk(KERN_INFO "sb: %s detectedn", busname); 
  736. /* Initialize this baby. */
  737. if(sb_init(bus, hw_config, mpu_config, slot, card)) {
  738. /* We got it. */
  739. printk(KERN_NOTICE "sb: ISAPnP reports '%s' at i/o %#x, irq %d, dma %d, %dn",
  740.        busname,
  741.        hw_config->io_base, hw_config->irq, hw_config->dma,
  742.        hw_config->dma2);
  743. return 1;
  744. }
  745. else
  746. printk(KERN_INFO "sb: Failed to initialize %sn", busname);
  747. return 0;
  748. }
  749. static int __init sb_isapnp_probe(struct address_info *hw_config, struct address_info *mpu_config, int card)
  750. {
  751. static int first = 1;
  752. int i;
  753. /* Count entries in sb_isapnp_list */
  754. for (i = 0; sb_isapnp_list[i].card_vendor != 0; i++);
  755. i--;
  756. /* Check and adjust isapnpjump */
  757. if( isapnpjump < 0 || isapnpjump > i) {
  758. isapnpjump = reverse ? i : 0;
  759. printk(KERN_ERR "sb: Valid range for isapnpjump is 0-%d. Adjusted to %d.n", i, isapnpjump);
  760. }
  761. if(!first || !reverse)
  762. i = isapnpjump;
  763. first = 0;
  764. while(sb_isapnp_list[i].card_vendor != 0) {
  765. static struct pci_bus *bus = NULL;
  766. while ((bus = isapnp_find_card(
  767. sb_isapnp_list[i].card_vendor,
  768. sb_isapnp_list[i].card_device,
  769. bus))) {
  770. if(sb_isapnp_init(hw_config, mpu_config, bus, i, card)) {
  771. isapnpjump = i; /* start next search from here */
  772. return 0;
  773. }
  774. }
  775. i += reverse ? -1 : 1;
  776. }
  777. return -ENODEV;
  778. }
  779. #endif
  780. static int __init init_sb(void)
  781. {
  782. int card, max = (multiple && isapnp) ? SB_CARDS_MAX : 1;
  783. printk(KERN_INFO "Soundblaster audio driver Copyright (C) by Hannu Savolainen 1993-1996n");
  784. for(card = 0; card < max; card++, sb_cards_num++) {
  785. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  786. /* Please remember that even with CONFIG_ISAPNP defined one
  787.  * should still be able to disable PNP support for this 
  788.  * single driver! */
  789. if((!pnplegacy||card>0) && isapnp && (sb_isapnp_probe(&cfg[card], &cfg_mpu[card], card) < 0) ) {
  790. if(!sb_cards_num) {
  791. /* Found no ISAPnP cards, so check for a non-pnp
  792.  * card and set the detection loop for 1 cycle
  793.  */
  794. printk(KERN_NOTICE "sb: No ISAPnP cards found, trying standard ones...n");
  795. isapnp = 0;
  796. max = 1;
  797. } else
  798. /* found all the ISAPnP cards so exit the
  799.  * detection loop. */
  800. break;
  801. }
  802. #endif
  803. if(!isapnp || (pnplegacy&&card==0)) {
  804. cfg[card].io_base = io;
  805. cfg[card].irq = irq;
  806. cfg[card].dma = dma;
  807. cfg[card].dma2 = dma16;
  808. }
  809. cfg[card].card_subtype = type;
  810. if (!probe_sb(&cfg[card])) {
  811. /* if one or more cards already registered, don't
  812.  * return an error but print a warning. Note, this
  813.  * should never really happen unless the hardware
  814.  * or ISAPnP screwed up. */
  815. if (sb_cards_num) {
  816. printk(KERN_WARNING "sb.c: There was a " 
  817.   "problem probing one of your SoundBlaster " 
  818.   "ISAPnP soundcards. Continuing.n");
  819. card--;
  820. sb_cards_num--;
  821. continue;
  822. } else if(pnplegacy && isapnp) {
  823. printk(KERN_NOTICE "sb: No legacy SoundBlaster cards " 
  824.   "found.  Continuing with PnP detection.n");
  825. pnplegacy=0;
  826. card--;
  827. continue;
  828. } else
  829. return -ENODEV;
  830. }
  831. attach_sb_card(&cfg[card]);
  832. if(cfg[card].slots[0]==-1) {
  833. if(card==0 && pnplegacy && isapnp) {
  834. printk(KERN_NOTICE "sb: No legacy SoundBlaster cards " 
  835.   "found.  Continuing with PnP detection.n");
  836. pnplegacy=0;
  837. card--;
  838. continue;
  839. } else
  840. return -ENODEV;
  841. }
  842. if (!isapnp||(pnplegacy&&card==0))
  843. cfg_mpu[card].io_base = mpu_io;
  844. if (probe_sbmpu(&cfg_mpu[card], THIS_MODULE))
  845. sbmpu[card] = 1;
  846. }
  847. if(isapnp)
  848. printk(KERN_NOTICE "sb: %d Soundblaster PnP card(s) found.n", sb_cards_num);
  849. return 0;
  850. }
  851. static void __exit cleanup_sb(void)
  852. {
  853. int i;
  854. if (smw_free) {
  855. vfree(smw_free);
  856. smw_free = NULL;
  857. }
  858. for(i = 0; i < sb_cards_num; i++) {
  859. unload_sb(&cfg[i], i);
  860. if (sbmpu[i])
  861. unload_sbmpu(&cfg_mpu[i]);
  862. #if defined CONFIG_ISAPNP || defined CONFIG_ISAPNP_MODULE
  863. if(!audio_activated[i] && sb_dev[i])
  864. sb_dev[i]->deactivate(sb_dev[i]);
  865. if(!mpu_activated[i] && mpu_dev[i])
  866. mpu_dev[i]->deactivate(mpu_dev[i]);
  867. if(!opl_activated[i] && opl_dev[i])
  868. opl_dev[i]->deactivate(opl_dev[i]);
  869. #endif
  870. }
  871. }
  872. module_init(init_sb);
  873. module_exit(cleanup_sb);
  874. #ifndef MODULE
  875. static int __init setup_sb(char *str)
  876. {
  877. /* io, irq, dma, dma2 - just the basics */
  878. int ints[5];
  879. str = get_options(str, ARRAY_SIZE(ints), ints);
  880. io = ints[1];
  881. irq = ints[2];
  882. dma = ints[3];
  883. dma16 = ints[4];
  884. return 1;
  885. }
  886. __setup("sb=", setup_sb);
  887. #endif