Changeset 212
- Timestamp:
- Jul 14, 2007, 7:13:46 AM (18 years ago)
- Location:
- GPL/branches/alsa-resync1/alsa-kernel
- Files:
-
- 12 added
- 51 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/core/isadma.c ¶
r210 r212 30 30 #include <sound/core.h> 31 31 #include <asm/dma.h> 32 33 #ifdef CONFIG_ISA34 32 35 33 /* … … 79 77 return result; 80 78 } 81 82 #endif /* CONFIG_ISA */ -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/core/pcm_sgbuf.c ¶
r32 r212 111 111 /* release unsed pages */ 112 112 sgbuf_shrink(sgbuf, pages); 113 if (substream->runtime) 113 114 substream->runtime->dma_bytes = size; 114 115 return 1; /* changed */ … … 137 138 } 138 139 sgbuf->size = size; 140 if (substream->runtime) 139 141 substream->runtime->dma_bytes = size; 140 142 return changed; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/core/wrappers.c ¶
r32 r212 16 16 * You should have received a copy of the GNU General Public License 17 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 19 * 20 20 */ 21 21 22 #ifdef ALSA_BUILD23 #include <sound/config.h>24 #endif25 26 22 #include <linux/version.h> 27 23 #include <linux/config.h> 28 #ifdef ALSA_BUILD29 #if defined(CONFIG_MODVERSIONS) && !defined(__GENKSYMS__) && !defined(__DEPEND__)30 #define MODVERSIONS31 #include <linux/modversions.h>32 #include <sound/sndversions.h>33 #endif34 #endif35 24 #include <linux/module.h> 36 25 #include <linux/slab.h> 37 26 #include <linux/ioport.h> 38 27 #include <linux/vmalloc.h> 39 40 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 3, 0) 41 void snd_wrapper_request_region(unsigned long from, unsigned long extent, const char *name) 42 { 43 return request_region(from, extent, name); 44 } 45 #endif 28 #include <linux/fs.h> 46 29 47 30 #ifdef CONFIG_SND_DEBUG_MEMORY … … 66 49 } 67 50 #endif 51 52 53 /* check the condition in <sound/core.h> !! */ 54 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 4, 0) 55 #if defined(__i386__) || defined(__ppc__) || defined(__x86_64__) 56 57 #include <linux/pci.h> 58 59 /* to be sure... */ 60 #ifdef HACK_PCI_ALLOC_CONSISTENT 61 #error pci_alloc_consistent hack is already defined!! 62 #endif 63 64 /* 65 * A dirty hack... when the kernel code is fixed this should be removed. 66 * 67 * since pci_alloc_consistent always tries GFP_DMA when the requested 68 * pci memory region is below 32bit, it happens quite often that even 69 * 2 order of pages cannot be allocated. 70 * 71 * so in the following, we allocate at first without dma_mask, so that 72 * allocation will be done without GFP_DMA. if the area doesn't match 73 * with the requested region, then realloate with the original dma_mask 74 * again. 75 */ 76 77 void *snd_pci_hack_alloc_consistent(struct pci_dev *hwdev, size_t size, 78 dma_addr_t *dma_handle) 79 { 80 void *ret; 81 u64 dma_mask; 82 unsigned long rmask; 83 84 if (hwdev == NULL) 85 return pci_alloc_consistent(hwdev, size, dma_handle); 86 dma_mask = hwdev->dma_mask; 87 rmask = ~((unsigned long)dma_mask); 88 hwdev->dma_mask = 0xffffffff; /* do without masking */ 89 ret = pci_alloc_consistent(hwdev, size, dma_handle); 90 hwdev->dma_mask = dma_mask; /* restore */ 91 if (ret) { 92 /* obtained address is out of range? */ 93 if (((unsigned long)*dma_handle + size - 1) & rmask) { 94 /* reallocate with the proper mask */ 95 pci_free_consistent(hwdev, size, ret, *dma_handle); 96 ret = pci_alloc_consistent(hwdev, size, dma_handle); 97 } 98 } else { 99 /* wish to success now with the proper mask... */ 100 if (dma_mask != 0xffffffff) 101 ret = pci_alloc_consistent(hwdev, size, dma_handle); 102 } 103 return ret; 104 } 105 106 #endif 107 #endif -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/drivers/dummy.c ¶
r207 r212 647 647 #ifndef MODULE 648 648 649 /* format is: snd-dummy= snd_enable,snd_index,snd_id,650 snd_pcm_devs,snd_pcm_substreams */649 /* format is: snd-dummy=enable,index,id, 650 pcm_devs,pcm_substreams */ 651 651 652 652 static int __init alsa_card_dummy_setup(char *str) -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/drivers/mpu401/mpu401.c ¶
r207 r212 144 144 #ifndef MODULE 145 145 146 /* format is: snd-mpu401= snd_enable,snd_index,snd_id,snd_port,snd_irq */146 /* format is: snd-mpu401=enable,index,id,port,irq */ 147 147 148 148 static int __init alsa_card_mpu401_setup(char *str) -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/drivers/mtpav.c ¶
r207 r212 2 2 * MOTU Midi Timepiece ALSA Main routines 3 3 * Copyright by Michael T. Mayers (c) Jan 09, 2000 4 * mail: tweakoz@pacbell.net4 * mail: michael@tweakoz.com 5 5 * Thanks to John Galbraith 6 6 * … … 45 45 * - Recoded & debugged 46 46 * - Added timer interrupt for midi outputs 47 * - snd_hwports is between 1 and 8, which specifies the number of hardware ports.47 * - hwports is between 1 and 8, which specifies the number of hardware ports. 48 48 * The three global ports, computer, adat and broadcast ports, are created 49 49 * always after h/w and remote ports. … … 55 55 #include <linux/init.h> 56 56 #include <linux/slab.h> 57 #include <linux/ioport.h> 57 58 #include <sound/core.h> 58 59 #define SNDRV_GET_ID … … 75 76 #define MTPAV_MAX_PORTS 8 76 77 77 static int snd_index = SNDRV_DEFAULT_IDX1;78 static char * snd_id = SNDRV_DEFAULT_STR1;79 static long snd_port = MTPAV_IOBASE; /* 0x378, 0x278 */80 static int snd_irq = MTPAV_IRQ; /* 7, 5 */81 static int snd_hwports = MTPAV_MAX_PORTS; /* use hardware ports 1-8 */82 83 MODULE_PARM( snd_index, "i");84 MODULE_PARM_DESC( snd_index, "Index value for MotuMTPAV MIDI.");85 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);86 MODULE_PARM( snd_id, "s");87 MODULE_PARM_DESC( snd_id, "ID string for MotuMTPAV MIDI.");88 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);89 MODULE_PARM( snd_port, "l");90 MODULE_PARM_DESC( snd_port, "Parallel port # for MotuMTPAV MIDI.");91 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0x378},{0x278}},dialog:list");92 MODULE_PARM( snd_irq, "i");93 MODULE_PARM_DESC( snd_irq, "Parallel IRQ # for MotuMTPAV MIDI.");94 MODULE_PARM_SYNTAX( snd_irq, SNDRV_ENABLED ",allows:{{7},{5}},dialog:list");95 MODULE_PARM( snd_hwports, "i");96 MODULE_PARM_DESC( snd_hwports, "Hardware ports # for MotuMTPAV MIDI.");97 MODULE_PARM_SYNTAX( snd_hwports, SNDRV_ENABLED ",allows:{{1,8}},dialog:list");78 static int index = SNDRV_DEFAULT_IDX1; 79 static char *id = SNDRV_DEFAULT_STR1; 80 static long port = MTPAV_IOBASE; /* 0x378, 0x278 */ 81 static int irq = MTPAV_IRQ; /* 7, 5 */ 82 static int hwports = MTPAV_MAX_PORTS; /* use hardware ports 1-8 */ 83 84 MODULE_PARM(index, "i"); 85 MODULE_PARM_DESC(index, "Index value for MotuMTPAV MIDI."); 86 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 87 MODULE_PARM(id, "s"); 88 MODULE_PARM_DESC(id, "ID string for MotuMTPAV MIDI."); 89 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 90 MODULE_PARM(port, "l"); 91 MODULE_PARM_DESC(port, "Parallel port # for MotuMTPAV MIDI."); 92 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0x378},{0x278}},dialog:list"); 93 MODULE_PARM(irq, "i"); 94 MODULE_PARM_DESC(irq, "Parallel IRQ # for MotuMTPAV MIDI."); 95 MODULE_PARM_SYNTAX(irq, SNDRV_ENABLED ",allows:{{7},{5}},dialog:list"); 96 MODULE_PARM(hwports, "i"); 97 MODULE_PARM_DESC(hwports, "Hardware ports # for MotuMTPAV MIDI."); 98 MODULE_PARM_SYNTAX(hwports, SNDRV_ENABLED ",allows:{{1,8}},dialog:list"); 98 99 99 100 /* … … 421 422 } 422 423 424 /* spinlock held! */ 423 425 static void snd_mtpav_add_output_timer(mtpav_t *chip) 424 426 { 425 unsigned long flags;426 427 spin_lock_irqsave(&chip->spinlock, flags);428 427 chip->timer.function = snd_mtpav_output_timer; 429 428 chip->timer.data = (unsigned long) mtp_card; 430 429 chip->timer.expires = 1 + jiffies; 431 430 add_timer(&chip->timer); 432 spin_unlock_irqrestore(&chip->spinlock, flags); 433 } 434 431 } 432 433 /* spinlock held! */ 435 434 static void snd_mtpav_remove_output_timer(mtpav_t *chip) 436 435 { 437 unsigned long flags;438 439 spin_lock_irqsave(&chip->spinlock, flags);440 436 del_timer(&chip->timer); 441 spin_unlock_irqrestore(&chip->spinlock, flags);442 437 } 443 438 … … 510 505 511 506 port = &mcrd->ports[mcrd->inmidiport]; 512 if (port->mode & MTPAV_MODE_INPUT_TRIGGERED) 507 if (port->mode & MTPAV_MODE_INPUT_TRIGGERED) { 508 spin_unlock(&mcrd->spinlock); 513 509 snd_rawmidi_receive(port->input, &inbyte, 1); 510 spin_lock(&mcrd->spinlock); 511 } 514 512 } 515 513 … … 589 587 static int snd_mtpav_get_ISA(mtpav_t * mcard) 590 588 { 591 if ((mcard->res_port = request_region( snd_port, 3, "MotuMTPAV MIDI")) == NULL) {592 snd_printk("MTVAP port 0x%lx is busy\n", snd_port);589 if ((mcard->res_port = request_region(port, 3, "MotuMTPAV MIDI")) == NULL) { 590 snd_printk("MTVAP port 0x%lx is busy\n", port); 593 591 return -EBUSY; 594 592 } 595 mcard->port = snd_port;596 if (request_irq( snd_irq, snd_mtpav_irqh, SA_INTERRUPT, "MOTU MTPAV", (void *)mcard)) {597 snd_printk("MTVAP IRQ %d busy\n", snd_irq);593 mcard->port = port; 594 if (request_irq(irq, snd_mtpav_irqh, SA_INTERRUPT, "MOTU MTPAV", (void *)mcard)) { 595 snd_printk("MTVAP IRQ %d busy\n", irq); 598 596 return -EBUSY; 599 597 } 600 mcard->irq = snd_irq;598 mcard->irq = irq; 601 599 return 0; 602 600 } … … 606 604 */ 607 605 608 #ifdef TARGET_OS2609 606 static snd_rawmidi_ops_t snd_mtpav_output = { 610 snd_mtpav_output_open, 611 snd_mtpav_output_close, 612 snd_mtpav_output_trigger, 613 0 607 .open = snd_mtpav_output_open, 608 .close = snd_mtpav_output_close, 609 .trigger = snd_mtpav_output_trigger, 614 610 }; 615 611 616 612 static snd_rawmidi_ops_t snd_mtpav_input = { 617 snd_mtpav_input_open, 618 snd_mtpav_input_close, 619 snd_mtpav_input_trigger, 620 0 613 .open = snd_mtpav_input_open, 614 .close = snd_mtpav_input_close, 615 .trigger = snd_mtpav_input_trigger, 621 616 }; 622 #else 623 static snd_rawmidi_ops_t snd_mtpav_output = { 624 open: snd_mtpav_output_open, 625 close: snd_mtpav_output_close, 626 trigger: snd_mtpav_output_trigger, 627 }; 628 629 static snd_rawmidi_ops_t snd_mtpav_input = { 630 open: snd_mtpav_input_open, 631 close: snd_mtpav_input_close, 632 trigger: snd_mtpav_input_trigger, 633 }; 634 #endif 617 635 618 636 619 /* … … 661 644 //printk("entering snd_mtpav_get_RAWMIDI\n"); 662 645 663 if ( snd_hwports < 1)646 if (hwports < 1) 664 647 mcard->num_ports = 1; 665 else if ( snd_hwports > 8)648 else if (hwports > 8) 666 649 mcard->num_ports = 8; 667 650 else 668 mcard->num_ports = snd_hwports;651 mcard->num_ports = hwports; 669 652 670 653 if ((rval = snd_rawmidi_new(mcard->card, "MotuMIDI", 0, … … 746 729 return -ENOMEM; 747 730 748 mtp_card->card = snd_card_new( snd_index, snd_id, THIS_MODULE, 0);731 mtp_card->card = snd_card_new(index, id, THIS_MODULE, 0); 749 732 if (mtp_card->card == NULL) { 750 733 free_mtpav(mtp_card); … … 776 759 snd_mtpav_portscan(mtp_card); 777 760 778 printk(KERN_INFO "Motu MidiTimePiece on parallel port irq: %d ioport: 0x%lx\n", snd_irq, snd_port);761 printk(KERN_INFO "Motu MidiTimePiece on parallel port irq: %d ioport: 0x%lx\n", irq, port); 779 762 780 763 return 0; … … 806 789 #ifndef MODULE 807 790 808 /* format is: snd-mtpav=snd_enable, snd_index,snd_id,809 snd_port,snd_irq,snd_hwports */791 /* format is: snd-mtpav=snd_enable,index,id, 792 port,irq,hwports */ 810 793 811 794 static int __init alsa_card_mtpav_setup(char *str) … … 814 797 815 798 (void)(get_option(&str,&enable) == 2 && 816 get_option(&str,& snd_index) == 2 &&817 get_id(&str,& snd_id) == 2 &&818 get_option(&str,(int *)& snd_port) == 2 &&819 get_option(&str,& snd_irq) == 2 &&820 get_option(&str,& snd_hwports) == 2);799 get_option(&str,&index) == 2 && 800 get_id(&str,&id) == 2 && 801 get_option(&str,(int *)&port) == 2 && 802 get_option(&str,&irq) == 2 && 803 get_option(&str,&hwports) == 2); 821 804 return 1; 822 805 } -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/drivers/serial-u16550.c ¶
r210 r212 133 133 }; 134 134 135 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */136 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */137 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE;/* Enable this card */138 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x3f8,0x2f8,0x3e8,0x2e8 */139 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;/* 3,4,5,7,9,10,11,14,15 */135 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 136 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 137 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 138 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x3f8,0x2f8,0x3e8,0x2e8 */ 139 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 3,4,5,7,9,10,11,14,15 */ 140 140 #ifdef TARGET_OS2 141 static int s nd_speed[SNDRV_CARDS] = {REPEAT_SNDRV(38400)}; /* 9600,19200,38400,57600,115200 */142 static int snd_base[SNDRV_CARDS] = {REPEAT_SNDRV(115200)}; /* baud base */143 static int snd_outs[SNDRV_CARDS] = {REPEAT_SNDRV(1)}; /* 1 to 16 */144 static int snd_ins[SNDRV_CARDS] = {REPEAT_SNDRV(1)}; /* 1 to 16 */145 static int snd_adaptor[SNDRV_CARDS] = {REPEAT_SNDRV(SNDRV_SERIAL_SOUNDCANVAS)};141 static int speed[SNDRV_CARDS] = {REPEAT_SNDRV(38400)}; /* 9600,19200,38400,57600,115200 */ 142 static int base[SNDRV_CARDS] = {REPEAT_SNDRV(115200)}; /* baud base */ 143 static int outs[SNDRV_CARDS] = {REPEAT_SNDRV(1)}; /* 1 to 16 */ 144 static int ins[SNDRV_CARDS] = {REPEAT_SNDRV(1)}; /* 1 to 16 */ 145 static int adaptor[SNDRV_CARDS] = {REPEAT_SNDRV(SNDRV_SERIAL_SOUNDCANVAS)}; 146 146 #else 147 static int s nd_speed[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 38400}; /* 9600,19200,38400,57600,115200 */148 static int snd_base[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 115200}; /* baud base */149 static int snd_outs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; /* 1 to 16 */150 static int snd_ins[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; /* 1 to 16 */151 static int snd_adaptor[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = SNDRV_SERIAL_SOUNDCANVAS};147 static int speed[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 38400}; /* 9600,19200,38400,57600,115200 */ 148 static int base[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 115200}; /* baud base */ 149 static int outs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; /* 1 to 16 */ 150 static int ins[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; /* 1 to 16 */ 151 static int adaptor[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = SNDRV_SERIAL_SOUNDCANVAS}; 152 152 #endif 153 153 154 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");155 MODULE_PARM_DESC( snd_index, "Index value for Serial MIDI.");156 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);157 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");158 MODULE_PARM_DESC( snd_id, "ID string for Serial MIDI.");159 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);160 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "l");161 MODULE_PARM_DESC( snd_enable, "Enable UART16550A chip.");162 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);163 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");164 MODULE_PARM_DESC( snd_port, "Port # for UART16550A chip.");165 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);166 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");167 MODULE_PARM_DESC( snd_irq, "IRQ # for UART16550A chip.");168 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);169 MODULE_PARM(s nd_speed, "1-" __MODULE_STRING(SNDRV_CARDS) "i");170 MODULE_PARM_DESC(s nd_speed, "Speed in bauds.");171 MODULE_PARM_SYNTAX(s nd_speed, SNDRV_ENABLED ",allows:{9600,19200,38400,57600,115200},dialog:list");172 MODULE_PARM( snd_base, "1-" __MODULE_STRING(SNDRV_CARDS) "i");173 MODULE_PARM_DESC( snd_base, "Base for divisor in bauds.");174 MODULE_PARM_SYNTAX( snd_base, SNDRV_ENABLED ",allows:{57600,115200,230400,460800},dialog:list");175 MODULE_PARM( snd_outs, "1-" __MODULE_STRING(SNDRV_CARDS) "i");176 MODULE_PARM_DESC( snd_outs, "Number of MIDI outputs.");177 MODULE_PARM( snd_ins, "1-" __MODULE_STRING(SNDRV_CARDS) "i");178 MODULE_PARM_DESC( snd_ins, "Number of MIDI inputs.");179 180 MODULE_PARM_SYNTAX( snd_outs, SNDRV_ENABLED ",allows:{{1,16}},dialog:list");181 MODULE_PARM_SYNTAX( snd_ins, SNDRV_ENABLED ",allows:{{1,16}},dialog:list");182 MODULE_PARM( snd_adaptor, "1-" __MODULE_STRING(SNDRV_CARDS) "i");183 MODULE_PARM_DESC( snd_adaptor, "Type of adaptor.");184 MODULE_PARM_SYNTAX( snd_adaptor, SNDRV_ENABLED ",allows:{{0=Soundcanvas,1=MS-124T,2=MS-124W S/A,3=MS-124W M/B,4=Generic}},dialog:list");154 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 155 MODULE_PARM_DESC(index, "Index value for Serial MIDI."); 156 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 157 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 158 MODULE_PARM_DESC(id, "ID string for Serial MIDI."); 159 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 160 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 161 MODULE_PARM_DESC(enable, "Enable UART16550A chip."); 162 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 163 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 164 MODULE_PARM_DESC(port, "Port # for UART16550A chip."); 165 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 166 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 167 MODULE_PARM_DESC(irq, "IRQ # for UART16550A chip."); 168 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 169 MODULE_PARM(speed, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 170 MODULE_PARM_DESC(speed, "Speed in bauds."); 171 MODULE_PARM_SYNTAX(speed, SNDRV_ENABLED ",allows:{9600,19200,38400,57600,115200},dialog:list"); 172 MODULE_PARM(base, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 173 MODULE_PARM_DESC(base, "Base for divisor in bauds."); 174 MODULE_PARM_SYNTAX(base, SNDRV_ENABLED ",allows:{57600,115200,230400,460800},dialog:list"); 175 MODULE_PARM(outs, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 176 MODULE_PARM_DESC(outs, "Number of MIDI outputs."); 177 MODULE_PARM(ins, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 178 MODULE_PARM_DESC(ins, "Number of MIDI inputs."); 179 180 MODULE_PARM_SYNTAX(outs, SNDRV_ENABLED ",allows:{{1,16}},dialog:list"); 181 MODULE_PARM_SYNTAX(ins, SNDRV_ENABLED ",allows:{{1,16}},dialog:list"); 182 MODULE_PARM(adaptor, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 183 MODULE_PARM_DESC(adaptor, "Type of adaptor."); 184 MODULE_PARM_SYNTAX(adaptor, SNDRV_ENABLED ",allows:{{0=Soundcanvas,1=MS-124T,2=MS-124W S/A,3=MS-124W M/B,4=Generic}},dialog:list"); 185 185 186 186 /*#define SNDRV_SERIAL_MS124W_MB_NOCOMBO 1*/ /* Address outs as 0-3 instead of bitmap */ … … 945 945 int err; 946 946 947 if (!snd_enable[dev])947 if (!enable[dev]) 948 948 return -ENOENT; 949 949 950 switch (snd_adaptor[dev]) {950 switch (adaptor[dev]) { 951 951 case SNDRV_SERIAL_SOUNDCANVAS: 952 snd_ins[dev] = 1;952 ins[dev] = 1; 953 953 break; 954 954 case SNDRV_SERIAL_MS124T: 955 955 case SNDRV_SERIAL_MS124W_SA: 956 snd_outs[dev] = 1;957 snd_ins[dev] = 1;956 outs[dev] = 1; 957 ins[dev] = 1; 958 958 break; 959 959 case SNDRV_SERIAL_MS124W_MB: 960 snd_outs[dev] = 16;961 snd_ins[dev] = 1;960 outs[dev] = 16; 961 ins[dev] = 1; 962 962 break; 963 963 case SNDRV_SERIAL_GENERIC: … … 965 965 default: 966 966 snd_printk("Adaptor type is out of range 0-%d (%d)\n", 967 SNDRV_SERIAL_MAX_ADAPTOR, snd_adaptor[dev]);967 SNDRV_SERIAL_MAX_ADAPTOR, adaptor[dev]); 968 968 return -ENODEV; 969 969 } 970 970 971 if (snd_outs[dev] < 1 || snd_outs[dev] > SNDRV_SERIAL_MAX_OUTS) {971 if (outs[dev] < 1 || outs[dev] > SNDRV_SERIAL_MAX_OUTS) { 972 972 snd_printk("Count of outputs is out of range 1-%d (%d)\n", 973 SNDRV_SERIAL_MAX_OUTS, snd_outs[dev]);973 SNDRV_SERIAL_MAX_OUTS, outs[dev]); 974 974 return -ENODEV; 975 975 } 976 976 977 if ( snd_ins[dev] < 1 || snd_ins[dev] > SNDRV_SERIAL_MAX_INS) {977 if (ins[dev] < 1 || ins[dev] > SNDRV_SERIAL_MAX_INS) { 978 978 snd_printk("Count of inputs is out of range 1-%d (%d)\n", 979 SNDRV_SERIAL_MAX_INS, snd_ins[dev]);979 SNDRV_SERIAL_MAX_INS, ins[dev]); 980 980 return -ENODEV; 981 981 } 982 982 983 card = snd_card_new(snd_index[dev], snd_id[dev], THIS_MODULE, 0);983 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 984 984 if (card == NULL) 985 985 return -ENOMEM; … … 988 988 strcpy(card->shortname, "Serial midi (uart16550A)"); 989 989 990 if ((err = snd_uart16550_detect(snd_port[dev])) <= 0) {990 if ((err = snd_uart16550_detect(port[dev])) <= 0) { 991 991 snd_card_free(card); 992 printk(KERN_ERR "no UART detected at 0x%lx\n", (long) snd_port[dev]);992 printk(KERN_ERR "no UART detected at 0x%lx\n", (long)port[dev]); 993 993 return err; 994 994 } 995 995 996 996 if ((err = snd_uart16550_create(card, 997 snd_port[dev],998 snd_irq[dev],999 snd_speed[dev],1000 snd_base[dev],1001 snd_adaptor[dev],997 port[dev], 998 irq[dev], 999 speed[dev], 1000 base[dev], 1001 adaptor[dev], 1002 1002 &uart)) < 0) { 1003 1003 snd_card_free(card); … … 1005 1005 } 1006 1006 1007 if ((err = snd_uart16550_rmidi(uart, 0, snd_outs[dev], snd_ins[dev], &uart->rmidi)) < 0) {1007 if ((err = snd_uart16550_rmidi(uart, 0, outs[dev], ins[dev], &uart->rmidi)) < 0) { 1008 1008 snd_card_free(card); 1009 1009 return err; … … 1016 1016 uart->speed, 1017 1017 (int)uart->divisor, 1018 snd_outs[dev],1019 snd_ins[dev],1018 outs[dev], 1019 ins[dev], 1020 1020 adaptor_names[uart->adaptor]); 1021 1021 … … 1062 1062 #ifndef MODULE 1063 1063 1064 /* format is: snd-serial= snd_enable,snd_index,snd_id,1065 snd_port,snd_irq,snd_speed,snd_base,snd_outs,1066 snd_ins,snd_adaptor */1064 /* format is: snd-serial=enable,index,id, 1065 port,irq,speed,base,outs, 1066 ins,adaptor */ 1067 1067 1068 1068 static int __init alsa_card_serial_setup(char *str) … … 1072 1072 if (nr_dev >= SNDRV_CARDS) 1073 1073 return 0; 1074 (void)(get_option(&str,&snd_enable[nr_dev]) == 2 &&1075 get_option(&str,&snd_index[nr_dev]) == 2 &&1076 get_id(&str,&snd_id[nr_dev]) == 2 &&1077 get_option(&str,(int *)&snd_port[nr_dev]) == 2 &&1078 get_option(&str,&snd_irq[nr_dev]) == 2 &&1079 get_option(&str,&snd_speed[nr_dev]) == 2 &&1080 get_option(&str,&snd_base[nr_dev]) == 2 &&1081 get_option(&str,&snd_outs[nr_dev]) == 2 &&1082 get_option(&str,& snd_ins[nr_dev]) == 2 &&1083 get_option(&str,&snd_adaptor[nr_dev]) == 2);1074 (void)(get_option(&str,&enable[nr_dev]) == 2 && 1075 get_option(&str,&index[nr_dev]) == 2 && 1076 get_id(&str,&id[nr_dev]) == 2 && 1077 get_option(&str,(int *)&port[nr_dev]) == 2 && 1078 get_option(&str,&irq[nr_dev]) == 2 && 1079 get_option(&str,&speed[nr_dev]) == 2 && 1080 get_option(&str,&base[nr_dev]) == 2 && 1081 get_option(&str,&outs[nr_dev]) == 2 && 1082 get_option(&str,&ins[nr_dev]) == 2 && 1083 get_option(&str,&adaptor[nr_dev]) == 2); 1084 1084 nr_dev++; 1085 1085 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/drivers/virmidi.c ¶
r207 r212 31 31 * Typical usage is like following: 32 32 * - Load snd-virmidi module. 33 * # modprobe snd-virmidi snd_index=233 * # modprobe snd-virmidi index=2 34 34 * Then, sequencer clients 72:0 to 75:0 will be created, which are 35 35 * mapped from /dev/snd/midiC1D0 to /dev/snd/midiC1D3, respectively. … … 60 60 #define MAX_MIDI_DEVICES 8 61 61 62 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */63 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */62 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 63 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 64 64 #ifdef TARGET_OS2 65 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE;66 static int snd_midi_devs[SNDRV_CARDS] = SNDDRV_DEFAULT_MIDI_DEVS65 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; 66 static int midi_devs[SNDRV_CARDS] = SNDDRV_DEFAULT_MIDI_DEVS 67 67 #else 68 static int snd_enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};69 static int snd_midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4};68 static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0}; 69 static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4}; 70 70 #endif 71 71 72 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");73 MODULE_PARM_DESC( snd_index, "Index value for virmidi soundcard.");74 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);75 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");76 MODULE_PARM_DESC( snd_id, "ID string for virmidi soundcard.");77 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);78 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");79 MODULE_PARM_DESC( snd_enable, "Enable this soundcard.");80 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);81 MODULE_PARM( snd_midi_devs, "1-" __MODULE_STRING(SNDRV_CARDS) "i");82 MODULE_PARM_DESC( snd_midi_devs, "MIDI devices # (1-8)");83 MODULE_PARM_SYNTAX( snd_midi_devs, SNDRV_ENABLED ",allows:{{1,8}}");72 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 73 MODULE_PARM_DESC(index, "Index value for virmidi soundcard."); 74 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 75 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 76 MODULE_PARM_DESC(id, "ID string for virmidi soundcard."); 77 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 78 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 79 MODULE_PARM_DESC(enable, "Enable this soundcard."); 80 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 81 MODULE_PARM(midi_devs, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 82 MODULE_PARM_DESC(midi_devs, "MIDI devices # (1-8)"); 83 MODULE_PARM_SYNTAX(midi_devs, SNDRV_ENABLED ",allows:{{1,8}}"); 84 84 85 85 typedef struct snd_card_virmidi { … … 97 97 int idx, err; 98 98 99 if (!snd_enable[dev])99 if (!enable[dev]) 100 100 return -ENODEV; 101 card = snd_card_new(snd_index[dev], snd_id[dev], THIS_MODULE,101 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 102 102 sizeof(struct snd_card_virmidi)); 103 103 if (card == NULL) … … 106 106 vmidi->card = card; 107 107 108 if (snd_midi_devs[dev] > MAX_MIDI_DEVICES) {108 if (midi_devs[dev] > MAX_MIDI_DEVICES) { 109 109 snd_printk("too much midi devices for virmidi %d: force to use %d\n", dev, MAX_MIDI_DEVICES); 110 snd_midi_devs[dev] = MAX_MIDI_DEVICES;110 midi_devs[dev] = MAX_MIDI_DEVICES; 111 111 } 112 for (idx = 0; idx < snd_midi_devs[dev]; idx++) {112 for (idx = 0; idx < midi_devs[dev]; idx++) { 113 113 snd_rawmidi_t *rmidi; 114 114 snd_virmidi_dev_t *rdev; 115 115 if ((err = snd_virmidi_new(card, idx, &rmidi)) < 0) 116 116 goto __nodev; 117 rdev = rmidi->private_data;117 rdev = snd_magic_cast(snd_virmidi_dev_t, rmidi->private_data, continue); 118 118 vmidi->midi[idx] = rmidi; 119 119 strcpy(rmidi->name, "Virtual Raw MIDI"); … … 137 137 int dev, cards; 138 138 139 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev]; dev++) {139 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) { 140 140 if (snd_card_virmidi_probe(dev) < 0) { 141 141 #ifdef MODULE … … 168 168 #ifndef MODULE 169 169 170 /* format is: snd-virmidi= snd_enable,snd_index,snd_id,snd_midi_devs */170 /* format is: snd-virmidi=enable,index,id,midi_devs */ 171 171 172 172 static int __init alsa_card_virmidi_setup(char *str) … … 176 176 if (nr_dev >= SNDRV_CARDS) 177 177 return 0; 178 (void)(get_option(&str,&snd_enable[nr_dev]) == 2 &&179 get_option(&str,&snd_index[nr_dev]) == 2 &&180 get_id(&str,&snd_id[nr_dev]) == 2 &&181 get_option(&str,&snd_midi_devs[nr_dev]) == 2);178 (void)(get_option(&str,&enable[nr_dev]) == 2 && 179 get_option(&str,&index[nr_dev]) == 2 && 180 get_id(&str,&id[nr_dev]) == 2 && 181 get_option(&str,&midi_devs[nr_dev]) == 2); 182 182 nr_dev++; 183 183 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/include/sound/core.h ¶
r210 r212 218 218 219 219 extern int snd_ecards_limit; 220 extern int snd_device_mode;221 extern int snd_device_gid;222 extern int snd_device_uid;220 extern int device_mode; 221 extern int device_gid; 222 extern int device_uid; 223 223 224 224 void snd_request_card(int card); … … 243 243 244 244 int snd_oss_init_module(void); 245 void snd_oss_cleanup_module(void);246 245 247 246 #endif -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/include/sound/cs4231.h ¶
r210 r212 55 55 #define CS4231_PLY_LWR_CNT 0x0f /* playback lower base count */ 56 56 #define CS4231_ALT_FEATURE_1 0x10 /* alternate #1 feature enable */ 57 #define AD1845_AF1_MIC_LEFT 0x10 /* alternate #1 feature + MIC left */ 57 58 #define CS4231_ALT_FEATURE_2 0x11 /* alternate #2 feature enable */ 59 #define AD1845_AF2_MIC_RIGHT 0x11 /* alternate #2 feature + MIC right */ 58 60 #define CS4231_LEFT_LINE_IN 0x12 /* left line input control */ 59 61 #define CS4231_RIGHT_LINE_IN 0x13 /* right line input control */ … … 61 63 #define CS4231_TIMER_HIGH 0x15 /* timer high byte */ 62 64 #define CS4231_LEFT_MIC_INPUT 0x16 /* left MIC input control register (InterWave only) */ 65 #define AD1845_UPR_FREQ_SEL 0x16 /* upper byte of frequency select */ 63 66 #define CS4231_RIGHT_MIC_INPUT 0x17 /* right MIC input control register (InterWave only) */ 67 #define AD1845_LWR_FREQ_SEL 0x17 /* lower byte of frequency select */ 64 68 #define CS4236_EXT_REG 0x17 /* extended register access */ 65 69 #define CS4231_IRQ_STATUS 0x18 /* irq status register */ … … 68 72 #define CS4231_MONO_CTRL 0x1a /* mono input/output control */ 69 73 #define CS4231_LINE_RIGHT_OUTPUT 0x1b /* right line output control register (InterWave only) */ 74 #define AD1845_PWR_DOWN 0x1b /* power down control */ 70 75 #define CS4235_LEFT_MASTER 0x1b /* left master output control */ 71 76 #define CS4231_REC_FORMAT 0x1c /* clock and data format - record - bits 7-0 MCE */ 72 77 #define CS4231_PLY_VAR_FREQ 0x1d /* playback variable frequency */ 78 #define AD1845_CLOCK 0x1d /* crystal clock select and total power down */ 73 79 #define CS4235_RIGHT_MASTER 0x1d /* right master output control */ 74 80 #define CS4231_REC_UPR_CNT 0x1e /* record upper count */ … … 192 198 #define CS4231_HW_CS4231 0x0100 /* CS4231 chip */ 193 199 #define CS4231_HW_CS4231A 0x0101 /* CS4231A chip */ 200 #define CS4231_HW_AD1845 0x0102 /* AD1845 chip */ 194 201 #define CS4231_HW_CS4232_MASK 0x0200 /* CS4232 serie (has control ports) */ 195 202 #define CS4231_HW_CS4232 0x0200 /* CS4232 */ -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/include/sound/mixer_oss.h ¶
r210 r212 35 35 typedef int (*snd_mixer_oss_put_recsrce_t)(snd_mixer_oss_file_t *fmixer, int active_index); 36 36 37 #define SNDRV_OSS_MAX_MIXERS 32 38 37 39 struct _snd_oss_mixer_slot { 38 40 int number; … … 45 47 void *private_data; 46 48 void (*private_free)(snd_mixer_oss_slot_t *slot); 49 int volume[2]; 47 50 }; 48 51 … … 51 54 char id[16]; 52 55 char name[32]; 53 snd_mixer_oss_slot_t slots[ 32];/* OSS mixer slots */56 snd_mixer_oss_slot_t slots[SNDRV_OSS_MAX_MIXERS]; /* OSS mixer slots */ 54 57 unsigned int mask_recsrc; /* exclusive recsrc mask */ 55 58 snd_mixer_oss_get_recsrce_t get_recsrc; … … 57 60 void *private_data_recsrc; 58 61 void (*private_free_recsrc)(snd_mixer_oss_t *mixer); 62 struct semaphore reg_mutex; 63 snd_info_entry_t *proc_entry; 59 64 /* --- */ 60 65 int oss_recsrc; … … 62 67 63 68 struct _snd_oss_file { 64 int volume[32][2];65 69 snd_card_t *card; 66 70 snd_mixer_oss_t *mixer; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/include/sound/pcm_params.h ¶
r210 r212 37 37 38 38 #define INLINE static inline 39 #define assert(a) 39 #define assert(a) (void)(a) 40 40 41 41 #define SNDRV_MASK_BITS 64 /* we use so far 64bits only */ -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/include/sound/snd_wavefront.h ¶
r96 r212 92 92 char interrupts_are_midi; /* h/w MPU interrupts enabled ? */ 93 93 char rom_samples_rdonly; /* can we write on ROM samples */ 94 spinlock_t irq_lock; 94 95 wait_queue_head_t interrupt_sleeper; 95 96 snd_wavefront_midi_t midi; /* ICS2115 MIDI interface */ -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/ad1816a/ad1816a.c ¶
r207 r212 51 51 "{Shark Predator ISA}}"); 52 52 53 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 1-MAX */54 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */55 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */56 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */57 static long snd_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */58 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */59 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */60 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */61 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */62 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */63 64 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");65 MODULE_PARM_DESC( snd_index, "Index value for ad1816a based soundcard.");66 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);67 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");68 MODULE_PARM_DESC( snd_id, "ID string for ad1816a based soundcard.");69 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);70 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");71 MODULE_PARM_DESC( snd_enable, "Enable ad1816a based soundcard.");72 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);73 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");74 MODULE_PARM_DESC( snd_port, "Port # for ad1816a driver.");75 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);76 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");77 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for ad1816a driver.");78 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT12_DESC);79 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");80 MODULE_PARM_DESC( snd_fm_port, "FM port # for ad1816a driver.");81 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_PORT12_DESC);82 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");83 MODULE_PARM_DESC( snd_irq, "IRQ # for ad1816a driver.");84 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);85 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");86 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for ad1816a driver.");87 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);88 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");89 MODULE_PARM_DESC( snd_dma1, "1st DMA # for ad1816a driver.");90 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);91 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");92 MODULE_PARM_DESC( snd_dma2, "2nd DMA # for ad1816a driver.");93 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);53 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 1-MAX */ 54 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 55 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 56 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 57 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 58 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 59 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */ 60 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */ 61 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 62 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 63 64 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 65 MODULE_PARM_DESC(index, "Index value for ad1816a based soundcard."); 66 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 67 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 68 MODULE_PARM_DESC(id, "ID string for ad1816a based soundcard."); 69 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 70 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 71 MODULE_PARM_DESC(enable, "Enable ad1816a based soundcard."); 72 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 73 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 74 MODULE_PARM_DESC(port, "Port # for ad1816a driver."); 75 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 76 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 77 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for ad1816a driver."); 78 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT12_DESC); 79 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 80 MODULE_PARM_DESC(fm_port, "FM port # for ad1816a driver."); 81 MODULE_PARM_SYNTAX(fm_port, SNDRV_PORT12_DESC); 82 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 83 MODULE_PARM_DESC(irq, "IRQ # for ad1816a driver."); 84 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 85 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 86 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for ad1816a driver."); 87 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 88 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 89 MODULE_PARM_DESC(dma1, "1st DMA # for ad1816a driver."); 90 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 91 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 92 MODULE_PARM_DESC(dma2, "2nd DMA # for ad1816a driver."); 93 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 94 94 95 95 struct snd_card_ad1816a { … … 173 173 return -EAGAIN; 174 174 175 if ( snd_port[dev] != SNDRV_AUTO_PORT)176 isapnp_resource_change(&pdev->resource[2], snd_port[dev], 16);177 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT)178 isapnp_resource_change(&pdev->resource[1], snd_fm_port[dev], 4);179 if ( snd_dma1[dev] != SNDRV_AUTO_DMA)180 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1[dev],175 if (port[dev] != SNDRV_AUTO_PORT) 176 isapnp_resource_change(&pdev->resource[2], port[dev], 16); 177 if (fm_port[dev] != SNDRV_AUTO_PORT) 178 isapnp_resource_change(&pdev->resource[1], fm_port[dev], 4); 179 if (dma1[dev] != SNDRV_AUTO_DMA) 180 isapnp_resource_change(&pdev->dma_resource[0], dma1[dev], 181 181 1); 182 if ( snd_dma2[dev] != SNDRV_AUTO_DMA)183 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2[dev],182 if (dma2[dev] != SNDRV_AUTO_DMA) 183 isapnp_resource_change(&pdev->dma_resource[1], dma2[dev], 184 184 1); 185 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)186 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);185 if (irq[dev] != SNDRV_AUTO_IRQ) 186 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 187 187 188 188 if (pdev->activate(pdev) < 0) { … … 191 191 } 192 192 193 snd_port[dev] = pdev->resource[2].start;194 snd_fm_port[dev] = pdev->resource[1].start;195 snd_dma1[dev] = pdev->dma_resource[0].start;196 snd_dma2[dev] = pdev->dma_resource[1].start;197 snd_irq[dev] = pdev->irq_resource[0].start;193 port[dev] = pdev->resource[2].start; 194 fm_port[dev] = pdev->resource[1].start; 195 dma1[dev] = pdev->dma_resource[0].start; 196 dma2[dev] = pdev->dma_resource[1].start; 197 irq[dev] = pdev->irq_resource[0].start; 198 198 199 199 pdev = acard->devmpu; 200 200 if (pdev == NULL || pdev->prepare(pdev) < 0) { 201 snd_mpu_port[dev] = -1;201 mpu_port[dev] = -1; 202 202 acard->devmpu = NULL; 203 203 return 0; 204 204 } 205 205 206 if ( snd_mpu_port[dev] != SNDRV_AUTO_PORT)207 isapnp_resource_change(&pdev->resource[0], snd_mpu_port[dev],206 if (mpu_port[dev] != SNDRV_AUTO_PORT) 207 isapnp_resource_change(&pdev->resource[0], mpu_port[dev], 208 208 2); 209 if ( snd_mpu_irq[dev] != SNDRV_AUTO_IRQ)210 isapnp_resource_change(&pdev->irq_resource[0], snd_mpu_irq[dev],209 if (mpu_irq[dev] != SNDRV_AUTO_IRQ) 210 isapnp_resource_change(&pdev->irq_resource[0], mpu_irq[dev], 211 211 1); 212 212 … … 214 214 /* not fatal error */ 215 215 printk(KERN_ERR PFX "MPU-401 isapnp configure failure\n"); 216 snd_mpu_port[dev] = -1;216 mpu_port[dev] = -1; 217 217 acard->devmpu = NULL; 218 218 } else { 219 snd_mpu_port[dev] = pdev->resource[0].start;220 snd_mpu_irq[dev] = pdev->irq_resource[0].start;219 mpu_port[dev] = pdev->resource[0].start; 220 mpu_irq[dev] = pdev->irq_resource[0].start; 221 221 } 222 222 … … 256 256 opl3_t *opl3; 257 257 258 if ((card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,258 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 259 259 sizeof(struct snd_card_ad1816a))) == NULL) 260 260 return -ENOMEM; … … 272 272 #endif /* __ISAPNP__ */ 273 273 274 if ((error = snd_ad1816a_create(card, snd_port[dev],275 snd_irq[dev],276 snd_dma1[dev],277 snd_dma2[dev],274 if ((error = snd_ad1816a_create(card, port[dev], 275 irq[dev], 276 dma1[dev], 277 dma2[dev], 278 278 &chip)) < 0) { 279 279 snd_card_free(card); … … 291 291 } 292 292 293 if ( snd_mpu_port[dev] > 0) {293 if (mpu_port[dev] > 0) { 294 294 if (snd_mpu401_uart_new(card, 0, MPU401_HW_MPU401, 295 snd_mpu_port[dev], 0, snd_mpu_irq[dev], SA_INTERRUPT,295 mpu_port[dev], 0, mpu_irq[dev], SA_INTERRUPT, 296 296 NULL) < 0) 297 printk(KERN_ERR PFX "no MPU-401 device at 0x%lx.\n", snd_mpu_port[dev]);298 } 299 300 if ( snd_fm_port[dev] > 0) {297 printk(KERN_ERR PFX "no MPU-401 device at 0x%lx.\n", mpu_port[dev]); 298 } 299 300 if (fm_port[dev] > 0) { 301 301 if (snd_opl3_create(card, 302 snd_fm_port[dev], snd_fm_port[dev] + 2,302 fm_port[dev], fm_port[dev] + 2, 303 303 OPL3_HW_AUTO, 0, &opl3) < 0) { 304 printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx.\n", snd_fm_port[dev], snd_fm_port[dev] + 2);304 printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx.\n", fm_port[dev], fm_port[dev] + 2); 305 305 } else { 306 306 if ((error = snd_opl3_timer_new(opl3, 1, 2)) < 0) { … … 318 318 strcpy(card->shortname, "ADI SoundPort AD1816A"); 319 319 sprintf(card->longname, "%s soundcard, SS at 0x%lx, irq %d, dma %d&%d", 320 card->shortname, chip->port, snd_irq[dev], snd_dma1[dev], snd_dma2[dev]);320 card->shortname, chip->port, irq[dev], dma1[dev], dma2[dev]); 321 321 322 322 if ((error = snd_card_register(card)) < 0) { … … 336 336 337 337 for ( ; dev < SNDRV_CARDS; dev++) { 338 if (! snd_enable[dev])338 if (!enable[dev]) 339 339 continue; 340 340 snd_ad1816a_isapnp_cards[dev] = card; … … 379 379 #ifndef MODULE 380 380 381 /* format is: snd-ad1816a= snd_enable,snd_index,snd_id,snd_port,382 snd_mpu_port,snd_fm_port,snd_irq,snd_mpu_irq,383 snd_dma1,snd_dma2 */381 /* format is: snd-ad1816a=enable,index,id,port, 382 mpu_port,fm_port,irq,mpu_irq, 383 dma1,dma2 */ 384 384 385 385 static int __init alsa_card_ad1816a_setup(char *str) … … 389 389 if (nr_dev >= SNDRV_CARDS) 390 390 return 0; 391 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&392 get_option(&str,& snd_index[nr_dev]) == 2 &&393 get_id(&str,& snd_id[nr_dev]) == 2 &&394 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&395 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&396 get_option(&str,(int *)& snd_fm_port[nr_dev]) == 2 &&397 get_option(&str,& snd_irq[nr_dev]) == 2 &&398 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&399 get_option(&str,& snd_dma1[nr_dev]) == 2 &&400 get_option(&str,& snd_dma2[nr_dev]) == 2);391 (void)(get_option(&str,&enable[nr_dev]) == 2 && 392 get_option(&str,&index[nr_dev]) == 2 && 393 get_id(&str,&id[nr_dev]) == 2 && 394 get_option(&str,(int *)&port[nr_dev]) == 2 && 395 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 396 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 397 get_option(&str,&irq[nr_dev]) == 2 && 398 get_option(&str,&mpu_irq[nr_dev]) == 2 && 399 get_option(&str,&dma1[nr_dev]) == 2 && 400 get_option(&str,&dma2[nr_dev]) == 2); 401 401 nr_dev++; 402 402 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/ad1848/ad1848.c ¶
r207 r212 41 41 "{Crystal Semiconductors,CS4248}}"); 42 42 43 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */44 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */45 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */46 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */47 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */48 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */43 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 44 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 45 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 46 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 47 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */ 48 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 49 49 50 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");51 MODULE_PARM_DESC( snd_index, "Index value for AD1848 soundcard.");52 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);53 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");54 MODULE_PARM_DESC( snd_id, "ID string for AD1848 soundcard.");55 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);56 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");57 MODULE_PARM_DESC( snd_enable, "Enable AD1848 soundcard.");58 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);59 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");60 MODULE_PARM_DESC( snd_port, "Port # for AD1848 driver.");61 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);62 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");63 MODULE_PARM_DESC( snd_irq, "IRQ # for AD1848 driver.");64 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);65 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");66 MODULE_PARM_DESC( snd_dma1, "DMA1 # for AD1848 driver.");67 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);50 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 51 MODULE_PARM_DESC(index, "Index value for AD1848 soundcard."); 52 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 53 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 54 MODULE_PARM_DESC(id, "ID string for AD1848 soundcard."); 55 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 56 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 57 MODULE_PARM_DESC(enable, "Enable AD1848 soundcard."); 58 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 59 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 60 MODULE_PARM_DESC(port, "Port # for AD1848 driver."); 61 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 62 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 63 MODULE_PARM_DESC(irq, "IRQ # for AD1848 driver."); 64 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 65 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 66 MODULE_PARM_DESC(dma1, "DMA1 # for AD1848 driver."); 67 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 68 68 69 69 static snd_card_t *snd_ad1848_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; … … 77 77 int err; 78 78 79 if ( snd_port[dev] == SNDRV_AUTO_PORT) {80 snd_printk("specify snd_port\n");79 if (port[dev] == SNDRV_AUTO_PORT) { 80 snd_printk("specify port\n"); 81 81 return -EINVAL; 82 82 } 83 if ( snd_irq[dev] == SNDRV_AUTO_IRQ) {84 snd_printk("specify snd_irq\n");83 if (irq[dev] == SNDRV_AUTO_IRQ) { 84 snd_printk("specify irq\n"); 85 85 return -EINVAL; 86 86 } 87 if ( snd_dma1[dev] == SNDRV_AUTO_DMA) {88 snd_printk("specify snd_dma1\n");87 if (dma1[dev] == SNDRV_AUTO_DMA) { 88 snd_printk("specify dma1\n"); 89 89 return -EINVAL; 90 90 } 91 91 92 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);92 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 93 93 if (card == NULL) 94 94 return -ENOMEM; 95 95 96 if ((err = snd_ad1848_create(card, snd_port[dev],97 snd_irq[dev],98 snd_dma1[dev],96 if ((err = snd_ad1848_create(card, port[dev], 97 irq[dev], 98 dma1[dev], 99 99 AD1848_HW_DETECT, 100 100 &chip)) < 0) { … … 115 115 116 116 sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d", 117 pcm->name, chip->port, snd_irq[dev], snd_dma1[dev]);117 pcm->name, chip->port, irq[dev], dma1[dev]); 118 118 119 119 if ((err = snd_card_register(card)) < 0) { … … 129 129 int dev, cards; 130 130 131 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev]; dev++)131 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) 132 132 if (snd_card_ad1848_probe(dev) >= 0) 133 133 cards++; … … 155 155 #ifndef MODULE 156 156 157 /* format is: snd-ad1848= snd_enable,snd_index,snd_id,snd_port,158 snd_irq,snd_dma1 */157 /* format is: snd-ad1848=enable,index,id,port, 158 irq,dma1 */ 159 159 160 160 static int __init alsa_card_ad1848_setup(char *str) … … 164 164 if (nr_dev >= SNDRV_CARDS) 165 165 return 0; 166 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&167 get_option(&str,& snd_index[nr_dev]) == 2 &&168 get_id(&str,& snd_id[nr_dev]) == 2 &&169 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&170 get_option(&str,& snd_irq[nr_dev]) == 2 &&171 get_option(&str,& snd_dma1[nr_dev]) == 2);166 (void)(get_option(&str,&enable[nr_dev]) == 2 && 167 get_option(&str,&index[nr_dev]) == 2 && 168 get_id(&str,&id[nr_dev]) == 2 && 169 get_option(&str,(int *)&port[nr_dev]) == 2 && 170 get_option(&str,&irq[nr_dev]) == 2 && 171 get_option(&str,&dma1[nr_dev]) == 2); 172 172 nr_dev++; 173 173 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/als100.c ¶
r207 r212 21 21 */ 22 22 23 #define SNDRV_MAIN_OBJECT_FILE24 23 #include <sound/driver.h> 25 24 #include <linux/init.h> 26 25 #include <linux/wait.h> 27 #include <linux/sched.h>28 26 #include <linux/time.h> 27 #ifndef LINUX_ISAPNP_H 28 #include <linux/isapnp.h> 29 #define isapnp_card pci_bus 30 #define isapnp_dev pci_dev 31 #endif 29 32 #include <sound/core.h> 30 33 #define SNDRV_GET_ID … … 51 54 "{RTL,RTL3000}}"); 52 55 53 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */54 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */55 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE;/* Enable this card */56 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */57 static long snd_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */58 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */59 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */60 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */61 static int snd_dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */62 static int snd_dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */63 64 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");65 MODULE_PARM_DESC( snd_index, "Index value for als100 based soundcard.");66 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);67 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");68 MODULE_PARM_DESC( snd_id, "ID string for als100 based soundcard.");69 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);70 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");71 MODULE_PARM_DESC( snd_enable, "Enable als100 based soundcard.");72 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);73 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");74 MODULE_PARM_DESC( snd_port, "Port # for als100 driver.");75 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);76 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");77 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for als100 driver.");78 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT12_DESC);79 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");80 MODULE_PARM_DESC( snd_fm_port, "FM port # for als100 driver.");81 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_PORT12_DESC);82 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");83 MODULE_PARM_DESC( snd_irq, "IRQ # for als100 driver.");84 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);85 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");86 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for als100 driver.");87 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);88 MODULE_PARM( snd_dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");89 MODULE_PARM_DESC( snd_dma8, "8-bit DMA # for als100 driver.");90 MODULE_PARM_SYNTAX( snd_dma8, SNDRV_DMA8_DESC);91 MODULE_PARM( snd_dma16, "1-" __MODULE_STRING(SNDRV_CARDS) "i");92 MODULE_PARM_DESC( snd_dma16, "16-bit DMA # for als100 driver.");93 MODULE_PARM_SYNTAX( snd_dma16, SNDRV_DMA16_DESC);56 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 57 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 58 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 59 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 60 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 61 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 62 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 63 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 64 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 65 static int dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 66 67 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 68 MODULE_PARM_DESC(index, "Index value for als100 based soundcard."); 69 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 70 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 71 MODULE_PARM_DESC(id, "ID string for als100 based soundcard."); 72 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 73 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 74 MODULE_PARM_DESC(enable, "Enable als100 based soundcard."); 75 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 76 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 77 MODULE_PARM_DESC(port, "Port # for als100 driver."); 78 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 79 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 80 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for als100 driver."); 81 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT12_DESC); 82 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 83 MODULE_PARM_DESC(fm_port, "FM port # for als100 driver."); 84 MODULE_PARM_SYNTAX(fm_port, SNDRV_PORT12_DESC); 85 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 86 MODULE_PARM_DESC(irq, "IRQ # for als100 driver."); 87 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 88 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 89 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for als100 driver."); 90 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 91 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 92 MODULE_PARM_DESC(dma8, "8-bit DMA # for als100 driver."); 93 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC); 94 MODULE_PARM(dma16, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 95 MODULE_PARM_DESC(dma16, "16-bit DMA # for als100 driver."); 96 MODULE_PARM_SYNTAX(dma16, SNDRV_DMA16_DESC); 94 97 95 98 struct snd_card_als100 { … … 173 176 return -EAGAIN; 174 177 175 if ( snd_port[dev] != SNDRV_AUTO_PORT)176 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 16);177 if ( snd_dma8[dev] != SNDRV_AUTO_DMA)178 isapnp_resource_change(&pdev->dma_resource[0], snd_dma8[dev],178 if (port[dev] != SNDRV_AUTO_PORT) 179 isapnp_resource_change(&pdev->resource[0], port[dev], 16); 180 if (dma8[dev] != SNDRV_AUTO_DMA) 181 isapnp_resource_change(&pdev->dma_resource[0], dma8[dev], 179 182 1); 180 if ( snd_dma16[dev] != SNDRV_AUTO_DMA)181 isapnp_resource_change(&pdev->dma_resource[1], snd_dma16[dev],183 if (dma16[dev] != SNDRV_AUTO_DMA) 184 isapnp_resource_change(&pdev->dma_resource[1], dma16[dev], 182 185 1); 183 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)184 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);186 if (irq[dev] != SNDRV_AUTO_IRQ) 187 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 185 188 186 189 if (pdev->activate(pdev)<0) { … … 189 192 } 190 193 191 snd_port[dev] = pdev->resource[0].start;192 snd_dma8[dev] = pdev->dma_resource[1].start;193 snd_dma16[dev] = pdev->dma_resource[0].start;194 snd_irq[dev] = pdev->irq_resource[0].start;194 port[dev] = pdev->resource[0].start; 195 dma8[dev] = pdev->dma_resource[1].start; 196 dma16[dev] = pdev->dma_resource[0].start; 197 irq[dev] = pdev->irq_resource[0].start; 195 198 196 199 pdev = acard->devmpu; 197 200 if (pdev == NULL || pdev->prepare(pdev)<0) { 198 snd_mpu_port[dev] = -1;201 mpu_port[dev] = -1; 199 202 return 0; 200 203 } 201 204 202 if ( snd_mpu_port[dev] != SNDRV_AUTO_PORT)203 isapnp_resource_change(&pdev->resource[0], snd_mpu_port[dev],205 if (mpu_port[dev] != SNDRV_AUTO_PORT) 206 isapnp_resource_change(&pdev->resource[0], mpu_port[dev], 204 207 2); 205 if ( snd_mpu_irq[dev] != SNDRV_AUTO_IRQ)206 isapnp_resource_change(&pdev->irq_resource[0], snd_mpu_irq[dev],208 if (mpu_irq[dev] != SNDRV_AUTO_IRQ) 209 isapnp_resource_change(&pdev->irq_resource[0], mpu_irq[dev], 207 210 1); 208 211 209 212 if (pdev->activate(pdev)<0) { 210 213 printk(KERN_ERR PFX "MPU-401 isapnp configure failure\n"); 211 snd_mpu_port[dev] = -1;214 mpu_port[dev] = -1; 212 215 acard->devmpu = NULL; 213 216 } else { 214 snd_mpu_port[dev] = pdev->resource[0].start;215 snd_mpu_irq[dev] = pdev->irq_resource[0].start;217 mpu_port[dev] = pdev->resource[0].start; 218 mpu_irq[dev] = pdev->irq_resource[0].start; 216 219 } 217 220 218 221 pdev = acard->devopl; 219 222 if (pdev == NULL || pdev->prepare(pdev)<0) { 220 snd_fm_port[dev] = -1;223 fm_port[dev] = -1; 221 224 return 0; 222 225 } 223 226 224 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT)225 isapnp_resource_change(&pdev->resource[0], snd_fm_port[dev], 4);227 if (fm_port[dev] != SNDRV_AUTO_PORT) 228 isapnp_resource_change(&pdev->resource[0], fm_port[dev], 4); 226 229 227 230 if (pdev->activate(pdev)<0) { 228 231 printk(KERN_ERR PFX "OPL isapnp configure failure\n"); 229 snd_fm_port[dev] = -1;232 fm_port[dev] = -1; 230 233 acard->devopl = NULL; 231 234 } else { 232 snd_fm_port[dev] = pdev->resource[0].start;235 fm_port[dev] = pdev->resource[0].start; 233 236 } 234 237 … … 272 275 opl3_t *opl3; 273 276 274 if ((card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,277 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 275 278 sizeof(struct snd_card_als100))) == NULL) 276 279 return -ENOMEM; … … 289 292 #endif /* __ISAPNP__ */ 290 293 291 if ((error = snd_sbdsp_create(card, snd_port[dev],292 snd_irq[dev],294 if ((error = snd_sbdsp_create(card, port[dev], 295 irq[dev], 293 296 snd_sb16dsp_interrupt, 294 snd_dma8[dev],295 snd_dma16[dev],297 dma8[dev], 298 dma16[dev], 296 299 SB_HW_ALS100, &chip)) < 0) { 297 300 snd_card_free(card); … … 309 312 } 310 313 311 if ( snd_mpu_port[dev] > 0) {314 if (mpu_port[dev] > 0) { 312 315 if (snd_mpu401_uart_new(card, 0, MPU401_HW_ALS100, 313 snd_mpu_port[dev], 0,314 snd_mpu_irq[dev], SA_INTERRUPT,316 mpu_port[dev], 0, 317 mpu_irq[dev], SA_INTERRUPT, 315 318 NULL) < 0) 316 printk(KERN_ERR PFX "no MPU-401 device at 0x%lx\n", snd_mpu_port[dev]);317 } 318 319 if ( snd_fm_port[dev] > 0) {319 printk(KERN_ERR PFX "no MPU-401 device at 0x%lx\n", mpu_port[dev]); 320 } 321 322 if (fm_port[dev] > 0) { 320 323 if (snd_opl3_create(card, 321 snd_fm_port[dev], snd_fm_port[dev] + 2,324 fm_port[dev], fm_port[dev] + 2, 322 325 OPL3_HW_AUTO, 0, &opl3) < 0) { 323 326 printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx\n", 324 snd_fm_port[dev], snd_fm_port[dev] + 2);327 fm_port[dev], fm_port[dev] + 2); 325 328 } else { 326 329 if ((error = snd_opl3_timer_new(opl3, 0, 1)) < 0) { … … 339 342 sprintf(card->longname, "%s soundcard, %s at 0x%lx, irq %d, dma %d&%d", 340 343 card->shortname, chip->name, chip->port, 341 snd_irq[dev], snd_dma8[dev], snd_dma16[dev]);344 irq[dev], dma8[dev], dma16[dev]); 342 345 if ((error = snd_card_register(card)) < 0) { 343 346 snd_card_free(card); … … 356 359 357 360 for ( ; dev < SNDRV_CARDS; dev++) { 358 if (! snd_enable[dev])361 if (!enable[dev]) 359 362 continue; 360 363 snd_als100_isapnp_cards[dev] = card; … … 399 402 #ifndef MODULE 400 403 401 /* format is: snd-als100= snd_enable,snd_index,snd_id,snd_port,402 snd_mpu_port,snd_fm_port,snd_irq,snd_mpu_irq,403 snd_dma8,snd_dma16 */404 /* format is: snd-als100=enable,index,id,port, 405 mpu_port,fm_port,irq,mpu_irq, 406 dma8,dma16 */ 404 407 405 408 static int __init alsa_card_als100_setup(char *str) … … 409 412 if (nr_dev >= SNDRV_CARDS) 410 413 return 0; 411 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&412 get_option(&str,& snd_index[nr_dev]) == 2 &&413 get_id(&str,& snd_id[nr_dev]) == 2 &&414 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&415 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&416 get_option(&str,(int *)& snd_fm_port[nr_dev]) == 2 &&417 get_option(&str,& snd_irq[nr_dev]) == 2 &&418 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&419 get_option(&str,& snd_dma8[nr_dev]) == 2 &&420 get_option(&str,& snd_dma16[nr_dev]) == 2);414 (void)(get_option(&str,&enable[nr_dev]) == 2 && 415 get_option(&str,&index[nr_dev]) == 2 && 416 get_id(&str,&id[nr_dev]) == 2 && 417 get_option(&str,(int *)&port[nr_dev]) == 2 && 418 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 419 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 420 get_option(&str,&irq[nr_dev]) == 2 && 421 get_option(&str,&mpu_irq[nr_dev]) == 2 && 422 get_option(&str,&dma8[nr_dev]) == 2 && 423 get_option(&str,&dma16[nr_dev]) == 2); 421 424 nr_dev++; 422 425 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/azt2320.c ¶
r207 r212 58 58 "{Aztech Systems,AZT3000}}"); 59 59 60 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */61 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */62 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE;/* Enable this card */63 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */64 static long snd_wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */65 static long snd_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */66 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */67 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */68 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */69 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */70 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */71 72 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");73 MODULE_PARM_DESC( snd_index, "Index value for azt2320 based soundcard.");74 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);75 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");76 MODULE_PARM_DESC( snd_id, "ID string for azt2320 based soundcard.");77 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);78 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");79 MODULE_PARM_DESC( snd_enable, "Enable azt2320 based soundcard.");80 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);81 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");82 MODULE_PARM_DESC( snd_port, "Port # for azt2320 driver.");83 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);84 MODULE_PARM( snd_wss_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");85 MODULE_PARM_DESC( snd_wss_port, "WSS Port # for azt2320 driver.");86 MODULE_PARM_SYNTAX( snd_wss_port, SNDRV_PORT12_DESC);87 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");88 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for azt2320 driver.");89 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT12_DESC);90 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");91 MODULE_PARM_DESC( snd_fm_port, "FM port # for azt2320 driver.");92 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_PORT12_DESC);93 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");94 MODULE_PARM_DESC( snd_irq, "IRQ # for azt2320 driver.");95 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);96 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");97 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for azt2320 driver.");98 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);99 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");100 MODULE_PARM_DESC( snd_dma1, "1st DMA # for azt2320 driver.");101 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);102 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");103 MODULE_PARM_DESC( snd_dma2, "2nd DMA # for azt2320 driver.");104 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);60 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 61 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 62 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 63 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 64 static long wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 65 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 66 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 67 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */ 68 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */ 69 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 70 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 71 72 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 73 MODULE_PARM_DESC(index, "Index value for azt2320 based soundcard."); 74 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 75 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 76 MODULE_PARM_DESC(id, "ID string for azt2320 based soundcard."); 77 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 78 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 79 MODULE_PARM_DESC(enable, "Enable azt2320 based soundcard."); 80 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 81 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 82 MODULE_PARM_DESC(port, "Port # for azt2320 driver."); 83 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 84 MODULE_PARM(wss_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 85 MODULE_PARM_DESC(wss_port, "WSS Port # for azt2320 driver."); 86 MODULE_PARM_SYNTAX(wss_port, SNDRV_PORT12_DESC); 87 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 88 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for azt2320 driver."); 89 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT12_DESC); 90 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 91 MODULE_PARM_DESC(fm_port, "FM port # for azt2320 driver."); 92 MODULE_PARM_SYNTAX(fm_port, SNDRV_PORT12_DESC); 93 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 94 MODULE_PARM_DESC(irq, "IRQ # for azt2320 driver."); 95 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 96 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 97 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for azt2320 driver."); 98 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 99 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 100 MODULE_PARM_DESC(dma1, "1st DMA # for azt2320 driver."); 101 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 102 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 103 MODULE_PARM_DESC(dma2, "2nd DMA # for azt2320 driver."); 104 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 105 105 106 106 struct snd_card_azt2320 { … … 179 179 return -EAGAIN; 180 180 181 if ( snd_port[dev] != SNDRV_AUTO_PORT)182 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 16);183 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT)184 isapnp_resource_change(&pdev->resource[1], snd_fm_port[dev], 4);185 if ( snd_wss_port[dev] != SNDRV_AUTO_PORT)186 isapnp_resource_change(&pdev->resource[2], snd_wss_port[dev],181 if (port[dev] != SNDRV_AUTO_PORT) 182 isapnp_resource_change(&pdev->resource[0], port[dev], 16); 183 if (fm_port[dev] != SNDRV_AUTO_PORT) 184 isapnp_resource_change(&pdev->resource[1], fm_port[dev], 4); 185 if (wss_port[dev] != SNDRV_AUTO_PORT) 186 isapnp_resource_change(&pdev->resource[2], wss_port[dev], 187 187 4); 188 if ( snd_dma1[dev] != SNDRV_AUTO_DMA)189 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1[dev],188 if (dma1[dev] != SNDRV_AUTO_DMA) 189 isapnp_resource_change(&pdev->dma_resource[0], dma1[dev], 190 190 1); 191 if ( snd_dma2[dev] != SNDRV_AUTO_DMA)192 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2[dev],191 if (dma2[dev] != SNDRV_AUTO_DMA) 192 isapnp_resource_change(&pdev->dma_resource[1], dma2[dev], 193 193 1); 194 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)195 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);194 if (irq[dev] != SNDRV_AUTO_IRQ) 195 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 196 196 197 197 if (pdev->activate(pdev) < 0) { … … 200 200 } 201 201 202 snd_port[dev] = pdev->resource[0].start;203 snd_fm_port[dev] = pdev->resource[1].start;204 snd_wss_port[dev] = pdev->resource[2].start;205 snd_dma1[dev] = pdev->dma_resource[0].start;206 snd_dma2[dev] = pdev->dma_resource[1].start;207 snd_irq[dev] = pdev->irq_resource[0].start;202 port[dev] = pdev->resource[0].start; 203 fm_port[dev] = pdev->resource[1].start; 204 wss_port[dev] = pdev->resource[2].start; 205 dma1[dev] = pdev->dma_resource[0].start; 206 dma2[dev] = pdev->dma_resource[1].start; 207 irq[dev] = pdev->irq_resource[0].start; 208 208 209 209 pdev = acard->devmpu; 210 210 if (pdev == NULL || pdev->prepare(pdev) < 0) { 211 snd_mpu_port[dev] = -1;211 mpu_port[dev] = -1; 212 212 return 0; 213 213 } 214 214 215 if ( snd_mpu_port[dev] != SNDRV_AUTO_PORT)216 isapnp_resource_change(&pdev->resource[0], snd_mpu_port[dev],215 if (mpu_port[dev] != SNDRV_AUTO_PORT) 216 isapnp_resource_change(&pdev->resource[0], mpu_port[dev], 217 217 2); 218 if ( snd_mpu_irq[dev] != SNDRV_AUTO_IRQ)219 isapnp_resource_change(&pdev->irq_resource[0], snd_mpu_irq[dev],218 if (mpu_irq[dev] != SNDRV_AUTO_IRQ) 219 isapnp_resource_change(&pdev->irq_resource[0], mpu_irq[dev], 220 220 1); 221 221 … … 223 223 /* not fatal error */ 224 224 printk(KERN_ERR PFX "MPU-401 isapnp configure failure\n"); 225 snd_mpu_port[dev] = -1;225 mpu_port[dev] = -1; 226 226 acard->devmpu = NULL; 227 227 } else { 228 snd_mpu_port[dev] = pdev->resource[0].start;229 snd_mpu_irq[dev] = pdev->irq_resource[0].start;228 mpu_port[dev] = pdev->resource[0].start; 229 mpu_irq[dev] = pdev->irq_resource[0].start; 230 230 } 231 231 … … 289 289 opl3_t *opl3; 290 290 291 if ((card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,291 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 292 292 sizeof(struct snd_card_azt2320))) == NULL) 293 293 return -ENOMEM; … … 302 302 #endif /* __ISAPNP__ */ 303 303 304 if ((error = snd_card_azt2320_enable_wss( snd_port[dev]))) {305 snd_card_free(card); 306 return error; 307 } 308 309 if ((error = snd_cs4231_create(card, snd_wss_port[dev], -1,310 snd_irq[dev],311 snd_dma1[dev],312 snd_dma2[dev],304 if ((error = snd_card_azt2320_enable_wss(port[dev]))) { 305 snd_card_free(card); 306 return error; 307 } 308 309 if ((error = snd_cs4231_create(card, wss_port[dev], -1, 310 irq[dev], 311 dma1[dev], 312 dma2[dev], 313 313 CS4231_HW_DETECT, 0, &chip)) < 0) { 314 314 snd_card_free(card); … … 329 329 } 330 330 331 if ( snd_mpu_port[dev] > 0) {331 if (mpu_port[dev] > 0) { 332 332 if (snd_mpu401_uart_new(card, 0, MPU401_HW_AZT2320, 333 snd_mpu_port[dev], 0,334 snd_mpu_irq[dev], SA_INTERRUPT,333 mpu_port[dev], 0, 334 mpu_irq[dev], SA_INTERRUPT, 335 335 NULL) < 0) 336 336 printk(KERN_ERR PFX "no MPU-401 device at 0x%lx\n", 337 snd_mpu_port[dev]);338 } 339 340 if ( snd_fm_port[dev] > 0) {337 mpu_port[dev]); 338 } 339 340 if (fm_port[dev] > 0) { 341 341 if (snd_opl3_create(card, 342 snd_fm_port[dev], snd_fm_port[dev] + 2,342 fm_port[dev], fm_port[dev] + 2, 343 343 OPL3_HW_AUTO, 0, &opl3) < 0) { 344 344 printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx\n", 345 snd_fm_port[dev], snd_fm_port[dev] + 2);345 fm_port[dev], fm_port[dev] + 2); 346 346 } else { 347 347 if ((error = snd_opl3_timer_new(opl3, 1, 2)) < 0) { … … 359 359 strcpy(card->shortname, "Aztech AZT2320"); 360 360 sprintf(card->longname, "%s soundcard, WSS at 0x%lx, irq %i, dma %i&%i", 361 card->shortname, chip->port, snd_irq[dev], snd_dma1[dev], snd_dma2[dev]);361 card->shortname, chip->port, irq[dev], dma1[dev], dma2[dev]); 362 362 363 363 if ((error = snd_card_register(card)) < 0) { … … 373 373 const struct isapnp_card_id *id) 374 374 { 375 static int dev = 0;375 static int dev; 376 376 int res; 377 377 378 378 for ( ; dev < SNDRV_CARDS; dev++) { 379 if (! snd_enable[dev])379 if (!enable[dev]) 380 380 continue; 381 381 snd_azt2320_isapnp_cards[dev] = card; … … 420 420 #ifndef MODULE 421 421 422 /* format is: snd-azt2320= snd_enable,snd_index,snd_id,snd_port,423 snd_wss_port,snd_mpu_port,snd_fm_port,424 snd_irq,snd_mpu_irq,snd_dma1,snd_dma2 */422 /* format is: snd-azt2320=enable,index,id,port, 423 wss_port,mpu_port,fm_port, 424 irq,mpu_irq,dma1,dma2 */ 425 425 426 426 static int __init alsa_card_azt2320_setup(char *str) … … 430 430 if (nr_dev >= SNDRV_CARDS) 431 431 return 0; 432 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&433 get_option(&str,& snd_index[nr_dev]) == 2 &&434 get_id(&str,& snd_id[nr_dev]) == 2 &&435 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&436 get_option(&str,(int *)& snd_wss_port[nr_dev]) == 2 &&437 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&438 get_option(&str,& snd_irq[nr_dev]) == 2 &&439 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&440 get_option(&str,& snd_dma1[nr_dev]) == 2 &&441 get_option(&str,& snd_dma2[nr_dev]) == 2);432 (void)(get_option(&str,&enable[nr_dev]) == 2 && 433 get_option(&str,&index[nr_dev]) == 2 && 434 get_id(&str,&id[nr_dev]) == 2 && 435 get_option(&str,(int *)&port[nr_dev]) == 2 && 436 get_option(&str,(int *)&wss_port[nr_dev]) == 2 && 437 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 438 get_option(&str,&irq[nr_dev]) == 2 && 439 get_option(&str,&mpu_irq[nr_dev]) == 2 && 440 get_option(&str,&dma1[nr_dev]) == 2 && 441 get_option(&str,&dma2[nr_dev]) == 2); 442 442 nr_dev++; 443 443 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/cmi8330.c ¶
r207 r212 31 31 * To quickly load the module, 32 32 * 33 * modprobe -a snd-card-cmi8330 s nd_sbport=0x220 snd_sbirq=5 snd_sbdma8=134 * s nd_sbdma16=5 snd_wssport=0x530 snd_wssirq=11 snd_wssdma=033 * modprobe -a snd-card-cmi8330 sbport=0x220 sbirq=5 sbdma8=1 34 * sbdma16=5 wssport=0x530 wssirq=11 wssdma=0 35 35 * 36 36 * This card has two mixers and two PCM devices. I've cheesed it such … … 47 47 #include <linux/init.h> 48 48 #include <linux/slab.h> 49 #ifndef LINUX_ISAPNP_H 50 #include <linux/isapnp.h> 51 #define isapnp_card pci_bus 52 #define isapnp_dev pci_dev 53 #endif 49 54 #include <sound/core.h> 50 55 #include <sound/ad1848.h> … … 59 64 MODULE_DEVICES("{{C-Media,CMI8330,isapnp:{CMI0001,@@@0001,@X@0001}}}"); 60 65 61 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;62 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;63 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE;66 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; 67 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; 68 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; 64 69 #ifdef __ISAPNP__ 65 70 #ifdef TARGET_OS2 66 static int snd_isapnp[SNDRV_CARDS] = {REPEAT_SNDRV(1)};71 static int isapnp[SNDRV_CARDS] = {REPEAT_SNDRV(1)}; 67 72 #else 68 static int snd_isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};69 #endif 70 #endif 71 static long s nd_sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;72 static int s nd_sbirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;73 static int s nd_sbdma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;74 static int s nd_sbdma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;75 static long snd_wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;76 static int snd_wssirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;77 static int snd_wssdma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;78 79 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");80 MODULE_PARM_DESC( snd_index, "Index value for CMI8330 soundcard.");81 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);82 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");83 MODULE_PARM_DESC( snd_id, "ID string for CMI8330 soundcard.");84 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);85 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");86 MODULE_PARM_DESC( snd_enable, "Enable CMI8330 soundcard.");87 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);88 #ifdef __ISAPNP__ 89 MODULE_PARM( snd_isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");90 MODULE_PARM_DESC( snd_isapnp, "ISA PnP detection for specified soundcard.");91 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);92 #endif 93 94 MODULE_PARM(s nd_sbport, "1-" __MODULE_STRING(SNDRV_CARDS) "l");95 MODULE_PARM_DESC(s nd_sbport, "Port # for CMI8330 SB driver.");96 MODULE_PARM_SYNTAX(s nd_sbport, SNDRV_ENABLED ",allows:{{0x220,0x280,0x20}},prefers:{0x220},base:16,dialog:list");97 MODULE_PARM(s nd_sbirq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");98 MODULE_PARM_DESC(s nd_sbirq, "IRQ # for CMI8330 SB driver.");99 MODULE_PARM_SYNTAX(s nd_sbirq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10},{11},{12}},prefers:{5},dialog:list");100 MODULE_PARM(s nd_sbdma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");101 MODULE_PARM_DESC(s nd_sbdma8, "DMA8 for CMI8330 SB driver.");102 MODULE_PARM_SYNTAX(s nd_sbdma8, SNDRV_DMA8_DESC ",prefers:{1}");103 MODULE_PARM(s nd_sbdma16, "1-" __MODULE_STRING(SNDRV_CARDS) "i");104 MODULE_PARM_DESC(s nd_sbdma16, "DMA16 for CMI8330 SB driver.");105 MODULE_PARM_SYNTAX(s nd_sbdma16, SNDRV_ENABLED ",allows:{{5},{7}},prefers:{5},dialog:list");106 107 MODULE_PARM( snd_wssport, "1-" __MODULE_STRING(SNDRV_CARDS) "l");108 MODULE_PARM_DESC( snd_wssport, "Port # for CMI8330 WSS driver.");109 MODULE_PARM_SYNTAX( snd_wssport, SNDRV_ENABLED ",allows:{{0x530},{0xe80,0xf40,0xc0}},prefers:{0x530},base:16,dialog:list");110 MODULE_PARM( snd_wssirq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");111 MODULE_PARM_DESC( snd_wssirq, "IRQ # for CMI8330 WSS driver.");112 MODULE_PARM_SYNTAX( snd_wssirq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10},{11},{12}},prefers:{11},dialog:list");113 MODULE_PARM( snd_wssdma, "1-" __MODULE_STRING(SNDRV_CARDS) "i");114 MODULE_PARM_DESC( snd_wssdma, "DMA for CMI8330 WSS driver.");115 MODULE_PARM_SYNTAX( snd_wssdma, SNDRV_DMA8_DESC ",prefers:{0}");73 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 74 #endif 75 #endif 76 static long sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 77 static int sbirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; 78 static int sbdma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; 79 static int sbdma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; 80 static long wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 81 static int wssirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; 82 static int wssdma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; 83 84 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 85 MODULE_PARM_DESC(index, "Index value for CMI8330 soundcard."); 86 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 87 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 88 MODULE_PARM_DESC(id, "ID string for CMI8330 soundcard."); 89 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 90 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 91 MODULE_PARM_DESC(enable, "Enable CMI8330 soundcard."); 92 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 93 #ifdef __ISAPNP__ 94 MODULE_PARM(isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 95 MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard."); 96 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 97 #endif 98 99 MODULE_PARM(sbport, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 100 MODULE_PARM_DESC(sbport, "Port # for CMI8330 SB driver."); 101 MODULE_PARM_SYNTAX(sbport, SNDRV_ENABLED ",allows:{{0x220,0x280,0x20}},prefers:{0x220},base:16,dialog:list"); 102 MODULE_PARM(sbirq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 103 MODULE_PARM_DESC(sbirq, "IRQ # for CMI8330 SB driver."); 104 MODULE_PARM_SYNTAX(sbirq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10},{11},{12}},prefers:{5},dialog:list"); 105 MODULE_PARM(sbdma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 106 MODULE_PARM_DESC(sbdma8, "DMA8 for CMI8330 SB driver."); 107 MODULE_PARM_SYNTAX(sbdma8, SNDRV_DMA8_DESC ",prefers:{1}"); 108 MODULE_PARM(sbdma16, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 109 MODULE_PARM_DESC(sbdma16, "DMA16 for CMI8330 SB driver."); 110 MODULE_PARM_SYNTAX(sbdma16, SNDRV_ENABLED ",allows:{{5},{7}},prefers:{5},dialog:list"); 111 112 MODULE_PARM(wssport, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 113 MODULE_PARM_DESC(wssport, "Port # for CMI8330 WSS driver."); 114 MODULE_PARM_SYNTAX(wssport, SNDRV_ENABLED ",allows:{{0x530},{0xe80,0xf40,0xc0}},prefers:{0x530},base:16,dialog:list"); 115 MODULE_PARM(wssirq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 116 MODULE_PARM_DESC(wssirq, "IRQ # for CMI8330 WSS driver."); 117 MODULE_PARM_SYNTAX(wssirq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10},{11},{12}},prefers:{11},dialog:list"); 118 MODULE_PARM(wssdma, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 119 MODULE_PARM_DESC(wssdma, "DMA for CMI8330 WSS driver."); 120 MODULE_PARM_SYNTAX(wssdma, SNDRV_DMA8_DESC ",prefers:{0}"); 116 121 117 122 #define CMI8330_RMUX3D 16 … … 247 252 return -EAGAIN; 248 253 /* allocate AD1848 resources */ 249 if ( snd_wssport[dev] != SNDRV_AUTO_PORT)250 isapnp_resource_change(&pdev->resource[0], snd_wssport[dev], 8);251 if ( snd_wssdma[dev] != SNDRV_AUTO_DMA)252 isapnp_resource_change(&pdev->dma_resource[0], snd_wssdma[dev], 1);253 if ( snd_wssirq[dev] != SNDRV_AUTO_IRQ)254 isapnp_resource_change(&pdev->irq_resource[0], snd_wssirq[dev], 1);254 if (wssport[dev] != SNDRV_AUTO_PORT) 255 isapnp_resource_change(&pdev->resource[0], wssport[dev], 8); 256 if (wssdma[dev] != SNDRV_AUTO_DMA) 257 isapnp_resource_change(&pdev->dma_resource[0], wssdma[dev], 1); 258 if (wssirq[dev] != SNDRV_AUTO_IRQ) 259 isapnp_resource_change(&pdev->irq_resource[0], wssirq[dev], 1); 255 260 256 261 if (pdev->activate(pdev)<0) { … … 258 263 return -EBUSY; 259 264 } 260 snd_wssport[dev] = pdev->resource[0].start;261 snd_wssdma[dev] = pdev->dma_resource[0].start;262 snd_wssirq[dev] = pdev->irq_resource[0].start;265 wssport[dev] = pdev->resource[0].start; 266 wssdma[dev] = pdev->dma_resource[0].start; 267 wssirq[dev] = pdev->irq_resource[0].start; 263 268 264 269 /* allocate SB16 resources */ … … 268 273 return -EAGAIN; 269 274 } 270 if (s nd_sbport[dev] != SNDRV_AUTO_PORT)271 isapnp_resource_change(&pdev->resource[0], s nd_sbport[dev], 16);272 if (s nd_sbdma8[dev] != SNDRV_AUTO_DMA)273 isapnp_resource_change(&pdev->dma_resource[0], s nd_sbdma8[dev], 1);274 if (s nd_sbdma16[dev] != SNDRV_AUTO_DMA)275 isapnp_resource_change(&pdev->dma_resource[1], s nd_sbdma16[dev], 1);276 if (s nd_sbirq[dev] != SNDRV_AUTO_IRQ)277 isapnp_resource_change(&pdev->irq_resource[0], s nd_sbirq[dev], 1);275 if (sbport[dev] != SNDRV_AUTO_PORT) 276 isapnp_resource_change(&pdev->resource[0], sbport[dev], 16); 277 if (sbdma8[dev] != SNDRV_AUTO_DMA) 278 isapnp_resource_change(&pdev->dma_resource[0], sbdma8[dev], 1); 279 if (sbdma16[dev] != SNDRV_AUTO_DMA) 280 isapnp_resource_change(&pdev->dma_resource[1], sbdma16[dev], 1); 281 if (sbirq[dev] != SNDRV_AUTO_IRQ) 282 isapnp_resource_change(&pdev->irq_resource[0], sbirq[dev], 1); 278 283 279 284 if (pdev->activate(pdev)<0) { … … 282 287 return -EBUSY; 283 288 } 284 s nd_sbport[dev] = pdev->resource[0].start;285 s nd_sbdma8[dev] = pdev->dma_resource[0].start;286 s nd_sbdma16[dev] = pdev->dma_resource[1].start;287 s nd_sbirq[dev] = pdev->irq_resource[0].start;289 sbport[dev] = pdev->resource[0].start; 290 sbdma8[dev] = pdev->dma_resource[0].start; 291 sbdma16[dev] = pdev->dma_resource[1].start; 292 sbirq[dev] = pdev->irq_resource[0].start; 288 293 289 294 return 0; … … 326 331 327 332 #ifdef __ISAPNP__ 328 if (! snd_isapnp[dev]) {329 #endif 330 if ( snd_wssport[dev] == SNDRV_AUTO_PORT) {331 snd_printk("specify snd_wssport\n");333 if (!isapnp[dev]) { 334 #endif 335 if (wssport[dev] == SNDRV_AUTO_PORT) { 336 snd_printk("specify wssport\n"); 332 337 return -EINVAL; 333 338 } 334 if (s nd_sbport[dev] == SNDRV_AUTO_PORT) {335 snd_printk("specify s nd_sbport\n");339 if (sbport[dev] == SNDRV_AUTO_PORT) { 340 snd_printk("specify sbport\n"); 336 341 return -EINVAL; 337 342 } … … 339 344 } 340 345 #endif 341 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,346 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 342 347 sizeof(struct snd_cmi8330)); 343 348 if (card == NULL) { … … 349 354 350 355 #ifdef __ISAPNP__ 351 if ( snd_isapnp[dev] && (err = snd_cmi8330_isapnp(dev, acard)) < 0) {356 if (isapnp[dev] && (err = snd_cmi8330_isapnp(dev, acard)) < 0) { 352 357 snd_printk("PnP detection failed\n"); 353 358 snd_card_free(card); … … 357 362 358 363 if ((err = snd_ad1848_create(card, 359 snd_wssport[dev] + 4,360 snd_wssirq[dev],361 snd_wssdma[dev],364 wssport[dev] + 4, 365 wssirq[dev], 366 wssdma[dev], 362 367 AD1848_HW_DETECT, 363 368 &chip_wss)) < 0) { … … 377 382 } 378 383 379 if ((err = snd_sbdsp_create(card, s nd_sbport[dev],380 s nd_sbirq[dev],384 if ((err = snd_sbdsp_create(card, sbport[dev], 385 sbirq[dev], 381 386 snd_sb16dsp_interrupt, 382 s nd_sbdma8[dev],383 s nd_sbdma16[dev],387 sbdma8[dev], 388 sbdma16[dev], 384 389 SB_HW_AUTO, &chip_sb)) < 0) { 385 390 snd_printk("(SB16) device busy??\n"); … … 438 443 wss_pcm->name, 439 444 chip_wss->port, 440 snd_wssirq[dev],441 snd_wssdma[dev]);445 wssirq[dev], 446 wssdma[dev]); 442 447 443 448 if ((err = snd_card_register(card)) < 0) { … … 466 471 467 472 for ( ; dev < SNDRV_CARDS; dev++) { 468 if (! snd_enable[dev] || !snd_isapnp[dev])473 if (!enable[dev] || !isapnp[dev]) 469 474 continue; 470 475 snd_cmi8330_isapnp_cards[dev] = card; … … 485 490 486 491 for (dev = 0; dev < SNDRV_CARDS; dev++) { 487 if (! snd_enable[dev])492 if (!enable[dev]) 488 493 continue; 489 494 #ifdef __ISAPNP__ 490 if ( snd_isapnp[dev])495 if (isapnp[dev]) 491 496 continue; 492 497 #endif … … 512 517 #ifndef MODULE 513 518 514 /* format is: snd-cmi8330= snd_enable,snd_index,snd_id,snd_isapnp,515 snd_sbport,snd_sbirq,516 snd_sbdma8,snd_sbdma16,517 snd_wssport,snd_wssirq,518 snd_wssdma */519 /* format is: snd-cmi8330=enable,index,id,isapnp, 520 sbport,sbirq, 521 sbdma8,sbdma16, 522 wssport,wssirq, 523 wssdma */ 519 524 520 525 static int __init alsa_card_cmi8330_setup(char *str) … … 525 530 if (nr_dev >= SNDRV_CARDS) 526 531 return 0; 527 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&528 get_option(&str,& snd_index[nr_dev]) == 2 &&529 get_id(&str,& snd_id[nr_dev]) == 2 &&532 (void)(get_option(&str,&enable[nr_dev]) == 2 && 533 get_option(&str,&index[nr_dev]) == 2 && 534 get_id(&str,&id[nr_dev]) == 2 && 530 535 get_option(&str,&pnp) == 2 && 531 get_option(&str,(int *)&s nd_sbport[nr_dev]) == 2 &&532 get_option(&str,&s nd_sbirq[nr_dev]) == 2 &&533 get_option(&str,&s nd_sbdma8[nr_dev]) == 2 &&534 get_option(&str,&s nd_sbdma16[nr_dev]) == 2 &&535 get_option(&str,(int *)& snd_wssport[nr_dev]) == 2 &&536 get_option(&str,& snd_wssirq[nr_dev]) == 2 &&537 get_option(&str,& snd_wssdma[nr_dev]) == 2);536 get_option(&str,(int *)&sbport[nr_dev]) == 2 && 537 get_option(&str,&sbirq[nr_dev]) == 2 && 538 get_option(&str,&sbdma8[nr_dev]) == 2 && 539 get_option(&str,&sbdma16[nr_dev]) == 2 && 540 get_option(&str,(int *)&wssport[nr_dev]) == 2 && 541 get_option(&str,&wssirq[nr_dev]) == 2 && 542 get_option(&str,&wssdma[nr_dev]) == 2); 538 543 #ifdef __ISAPNP__ 539 544 if (pnp != INT_MAX) 540 snd_isapnp[nr_dev] = pnp;545 isapnp[nr_dev] = pnp; 541 546 #endif 542 547 nr_dev++; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/cs423x/cs4231.c ¶
r207 r212 39 39 MODULE_DEVICES("{{Crystal Semiconductors,CS4231}}"); 40 40 41 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */42 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */43 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */44 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */45 static long snd_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */46 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */47 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */48 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */49 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */50 51 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");52 MODULE_PARM_DESC( snd_index, "Index value for CS4231 soundcard.");53 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);54 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");55 MODULE_PARM_DESC( snd_id, "ID string for CS4231 soundcard.");56 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);57 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");58 MODULE_PARM_DESC( snd_enable, "Enable CS4231 soundcard.");59 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);60 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");61 MODULE_PARM_DESC( snd_port, "Port # for CS4231 driver.");62 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);63 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");64 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for CS4231 driver.");65 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT12_DESC);66 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");67 MODULE_PARM_DESC( snd_irq, "IRQ # for CS4231 driver.");68 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);69 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");70 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for CS4231 driver.");71 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);72 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");73 MODULE_PARM_DESC( snd_dma1, "DMA1 # for CS4231 driver.");74 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);75 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");76 MODULE_PARM_DESC( snd_dma2, "DMA2 # for CS4231 driver.");77 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);41 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 42 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 43 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 44 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 45 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 46 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */ 47 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */ 48 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 49 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 50 51 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 52 MODULE_PARM_DESC(index, "Index value for CS4231 soundcard."); 53 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 54 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 55 MODULE_PARM_DESC(id, "ID string for CS4231 soundcard."); 56 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 57 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 58 MODULE_PARM_DESC(enable, "Enable CS4231 soundcard."); 59 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 60 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 61 MODULE_PARM_DESC(port, "Port # for CS4231 driver."); 62 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 63 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 64 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for CS4231 driver."); 65 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT12_DESC); 66 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 67 MODULE_PARM_DESC(irq, "IRQ # for CS4231 driver."); 68 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 69 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 70 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for CS4231 driver."); 71 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 72 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 73 MODULE_PARM_DESC(dma1, "DMA1 # for CS4231 driver."); 74 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 75 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 76 MODULE_PARM_DESC(dma2, "DMA2 # for CS4231 driver."); 77 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 78 78 79 79 static snd_card_t *snd_cs4231_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; … … 88 88 int err; 89 89 90 if ( snd_port[dev] == SNDRV_AUTO_PORT) {91 snd_printk("specify snd_port\n");90 if (port[dev] == SNDRV_AUTO_PORT) { 91 snd_printk("specify port\n"); 92 92 return -EINVAL; 93 93 } 94 if ( snd_irq[dev] == SNDRV_AUTO_IRQ) {95 snd_printk("specify snd_irq\n");94 if (irq[dev] == SNDRV_AUTO_IRQ) { 95 snd_printk("specify irq\n"); 96 96 return -EINVAL; 97 97 } 98 if ( snd_dma1[dev] == SNDRV_AUTO_DMA) {99 snd_printk("specify snd_dma1\n");98 if (dma1[dev] == SNDRV_AUTO_DMA) { 99 snd_printk("specify dma1\n"); 100 100 return -EINVAL; 101 101 } 102 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);102 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 103 103 if (card == NULL) 104 104 return -ENOMEM; 105 105 acard = (struct snd_card_cs4231 *)card->private_data; 106 if ( snd_mpu_port[dev] < 0)107 snd_mpu_port[dev] = SNDRV_AUTO_PORT;108 if ((err = snd_cs4231_create(card, snd_port[dev], -1,109 snd_irq[dev],110 snd_dma1[dev],111 snd_dma2[dev],106 if (mpu_port[dev] < 0) 107 mpu_port[dev] = SNDRV_AUTO_PORT; 108 if ((err = snd_cs4231_create(card, port[dev], -1, 109 irq[dev], 110 dma1[dev], 111 dma2[dev], 112 112 CS4231_HW_DETECT, 113 113 0, &chip)) < 0) { … … 129 129 } 130 130 131 if ( snd_mpu_irq[dev] >= 0 && snd_mpu_irq[dev] != SNDRV_AUTO_IRQ) {131 if (mpu_irq[dev] >= 0 && mpu_irq[dev] != SNDRV_AUTO_IRQ) { 132 132 if (snd_mpu401_uart_new(card, 0, MPU401_HW_CS4232, 133 snd_mpu_port[dev], 0,134 snd_mpu_irq[dev], SA_INTERRUPT,133 mpu_port[dev], 0, 134 mpu_irq[dev], SA_INTERRUPT, 135 135 NULL) < 0) 136 136 printk(KERN_ERR "cs4231: MPU401 not detected\n"); … … 139 139 strcpy(card->shortname, pcm->name); 140 140 sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d", 141 pcm->name, chip->port, snd_irq[dev], snd_dma1[dev]);142 if ( snd_dma2[dev] >= 0)143 sprintf(card->longname + strlen(card->longname), "&%d", snd_dma2[dev]);141 pcm->name, chip->port, irq[dev], dma1[dev]); 142 if (dma2[dev] >= 0) 143 sprintf(card->longname + strlen(card->longname), "&%d", dma2[dev]); 144 144 if ((err = snd_card_register(card)) < 0) { 145 145 snd_card_free(card); … … 154 154 int dev, cards; 155 155 156 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev]; dev++) {156 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) { 157 157 if (snd_card_cs4231_probe(dev) >= 0) 158 158 cards++; … … 180 180 #ifndef MODULE 181 181 182 /* format is: snd-cs4231= snd_enable,snd_index,snd_id,183 snd_port,snd_mpu_port,snd_irq,snd_mpu_irq,184 snd_dma1,snd_dma2 */182 /* format is: snd-cs4231=enable,index,id, 183 port,mpu_port,irq,mpu_irq, 184 dma1,dma2 */ 185 185 186 186 static int __init alsa_card_cs4231_setup(char *str) … … 191 191 if (nr_dev >= SNDRV_CARDS) 192 192 return 0; 193 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&194 get_option(&str,& snd_index[nr_dev]) == 2 &&195 get_id(&str,& snd_id[nr_dev]) == 2 &&193 (void)(get_option(&str,&enable[nr_dev]) == 2 && 194 get_option(&str,&index[nr_dev]) == 2 && 195 get_id(&str,&id[nr_dev]) == 2 && 196 196 get_option(&str,&pnp) == 2 && 197 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&198 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&199 get_option(&str,& snd_irq[nr_dev]) == 2 &&200 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&201 get_option(&str,& snd_dma1[nr_dev]) == 2 &&202 get_option(&str,& snd_dma2[nr_dev]) == 2);197 get_option(&str,(int *)&port[nr_dev]) == 2 && 198 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 199 get_option(&str,&irq[nr_dev]) == 2 && 200 get_option(&str,&mpu_irq[nr_dev]) == 2 && 201 get_option(&str,&dma1[nr_dev]) == 2 && 202 get_option(&str,&dma2[nr_dev]) == 2); 203 203 nr_dev++; 204 204 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/cs423x/cs4231_lib.c ¶
r210 r212 999 999 snd_printdd("CS4231: VERSION (I25) = 0x%x\n", rev); 1000 1000 if (rev == 0x80) { 1001 unsigned char tmp = snd_cs4231_in(chip, 23); 1002 snd_cs4231_out(chip, 23, ~tmp); 1003 if (snd_cs4231_in(chip, 23) != tmp) 1004 chip->hardware = CS4231_HW_AD1845; 1005 else 1001 1006 chip->hardware = CS4231_HW_CS4231; 1002 1007 } else if (rev == 0xa0) { … … 1383 1388 case CS4231_HW_INTERWAVE: return "AMD InterWave"; 1384 1389 case CS4231_HW_OPL3SA2: return chip->card->shortname; 1390 case CS4231_HW_AD1845: return "AD1845"; 1385 1391 default: return "???"; 1386 1392 } -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/cs423x/cs4236.c ¶
r210 r212 85 85 #endif 86 86 87 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */88 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */89 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */87 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 88 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 89 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 90 90 #ifdef __ISAPNP__ 91 91 #ifdef TARGET_OS2 92 static int snd_isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1};92 static int isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1}; 93 93 #else 94 static int snd_isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};95 #endif 96 #endif 97 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */98 static long snd_cport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */99 static long snd_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* PnP setup */100 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */101 static long s nd_sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */102 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */103 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */104 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */105 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */106 107 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");108 MODULE_PARM_DESC( snd_index, "Index value for " IDENT " soundcard.");109 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);110 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");111 MODULE_PARM_DESC( snd_id, "ID string for " IDENT " soundcard.");112 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);113 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");114 MODULE_PARM_DESC( snd_enable, "Enable " IDENT " soundcard.");115 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);116 #ifdef __ISAPNP__ 117 MODULE_PARM( snd_isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");118 MODULE_PARM_DESC( snd_isapnp, "ISA PnP detection for specified soundcard.");119 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);120 #endif 121 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");122 MODULE_PARM_DESC( snd_port, "Port # for " IDENT " driver.");123 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);124 MODULE_PARM( snd_cport, "1-" __MODULE_STRING(SNDRV_CARDS) "l");125 MODULE_PARM_DESC( snd_cport, "Control port # for " IDENT " driver.");126 MODULE_PARM_SYNTAX( snd_cport, SNDRV_PORT12_DESC);127 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");128 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for " IDENT " driver.");129 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT12_DESC);130 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");131 MODULE_PARM_DESC( snd_fm_port, "FM port # for " IDENT " driver.");132 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_PORT12_DESC);133 MODULE_PARM(s nd_sb_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");134 MODULE_PARM_DESC(s nd_sb_port, "SB port # for " IDENT " driver (optional).");135 MODULE_PARM_SYNTAX(s nd_sb_port, SNDRV_PORT12_DESC);136 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");137 MODULE_PARM_DESC( snd_irq, "IRQ # for " IDENT " driver.");138 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);139 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");140 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for " IDENT " driver.");141 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);142 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");143 MODULE_PARM_DESC( snd_dma1, "DMA1 # for " IDENT " driver.");144 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);145 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");146 MODULE_PARM_DESC( snd_dma2, "DMA2 # for " IDENT " driver.");147 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);94 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 95 #endif 96 #endif 97 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 98 static long cport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 99 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* PnP setup */ 100 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 101 static long sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 102 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */ 103 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */ 104 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 105 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 106 107 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 108 MODULE_PARM_DESC(index, "Index value for " IDENT " soundcard."); 109 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 110 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 111 MODULE_PARM_DESC(id, "ID string for " IDENT " soundcard."); 112 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 113 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 114 MODULE_PARM_DESC(enable, "Enable " IDENT " soundcard."); 115 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 116 #ifdef __ISAPNP__ 117 MODULE_PARM(isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 118 MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard."); 119 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 120 #endif 121 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 122 MODULE_PARM_DESC(port, "Port # for " IDENT " driver."); 123 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 124 MODULE_PARM(cport, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 125 MODULE_PARM_DESC(cport, "Control port # for " IDENT " driver."); 126 MODULE_PARM_SYNTAX(cport, SNDRV_PORT12_DESC); 127 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 128 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for " IDENT " driver."); 129 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT12_DESC); 130 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 131 MODULE_PARM_DESC(fm_port, "FM port # for " IDENT " driver."); 132 MODULE_PARM_SYNTAX(fm_port, SNDRV_PORT12_DESC); 133 MODULE_PARM(sb_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 134 MODULE_PARM_DESC(sb_port, "SB port # for " IDENT " driver (optional)."); 135 MODULE_PARM_SYNTAX(sb_port, SNDRV_PORT12_DESC); 136 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 137 MODULE_PARM_DESC(irq, "IRQ # for " IDENT " driver."); 138 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 139 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 140 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for " IDENT " driver."); 141 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 142 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 143 MODULE_PARM_DESC(dma1, "DMA1 # for " IDENT " driver."); 144 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 145 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 146 MODULE_PARM_DESC(dma2, "DMA2 # for " IDENT " driver."); 147 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 148 148 149 149 struct snd_card_cs4236 { … … 332 332 if (pdev->prepare(pdev) < 0) 333 333 return -EAGAIN; 334 if ( snd_port[dev] != SNDRV_AUTO_PORT)335 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 4);336 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT && snd_fm_port[dev] >= 0)337 isapnp_resource_change(&pdev->resource[1], snd_fm_port[dev], 4);338 if (s nd_sb_port[dev] != SNDRV_AUTO_PORT)339 isapnp_resource_change(&pdev->resource[2], s nd_sb_port[dev], 16);340 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)341 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);342 if ( snd_dma1[dev] != SNDRV_AUTO_DMA)343 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1[dev], 1);344 if ( snd_dma2[dev] != SNDRV_AUTO_DMA)345 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2[dev] < 0 ? 4 : snd_dma2[dev], 1);334 if (port[dev] != SNDRV_AUTO_PORT) 335 isapnp_resource_change(&pdev->resource[0], port[dev], 4); 336 if (fm_port[dev] != SNDRV_AUTO_PORT && fm_port[dev] >= 0) 337 isapnp_resource_change(&pdev->resource[1], fm_port[dev], 4); 338 if (sb_port[dev] != SNDRV_AUTO_PORT) 339 isapnp_resource_change(&pdev->resource[2], sb_port[dev], 16); 340 if (irq[dev] != SNDRV_AUTO_IRQ) 341 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 342 if (dma1[dev] != SNDRV_AUTO_DMA) 343 isapnp_resource_change(&pdev->dma_resource[0], dma1[dev], 1); 344 if (dma2[dev] != SNDRV_AUTO_DMA) 345 isapnp_resource_change(&pdev->dma_resource[1], dma2[dev] < 0 ? 4 : dma2[dev], 1); 346 346 if (pdev->activate(pdev)<0) { 347 347 printk(KERN_ERR IDENT " isapnp configure failed for WSS (out of resources?)\n"); 348 348 return -EBUSY; 349 349 } 350 snd_port[dev] = pdev->resource[0].start;351 if ( snd_fm_port[dev] >= 0)352 snd_fm_port[dev] = pdev->resource[1].start;353 s nd_sb_port[dev] = pdev->resource[2].start;354 snd_irq[dev] = pdev->irq_resource[0].start;355 snd_dma1[dev] = pdev->dma_resource[0].start;356 snd_dma2[dev] = pdev->dma_resource[1].start == 4 ? -1 : pdev->dma_resource[1].start;350 port[dev] = pdev->resource[0].start; 351 if (fm_port[dev] >= 0) 352 fm_port[dev] = pdev->resource[1].start; 353 sb_port[dev] = pdev->resource[2].start; 354 irq[dev] = pdev->irq_resource[0].start; 355 dma1[dev] = pdev->dma_resource[0].start; 356 dma2[dev] = pdev->dma_resource[1].start == 4 ? -1 : pdev->dma_resource[1].start; 357 357 snd_printdd("isapnp WSS: wss port=0x%lx, fm port=0x%lx, sb port=0x%lx\n", 358 snd_port[dev], snd_fm_port[dev], snd_sb_port[dev]);358 port[dev], fm_port[dev], sb_port[dev]); 359 359 snd_printdd("isapnp WSS: irq=%i, dma1=%i, dma2=%i\n", 360 snd_irq[dev], snd_dma1[dev], snd_dma2[dev]);360 irq[dev], dma1[dev], dma2[dev]); 361 361 /* CTRL initialization */ 362 if (acard->ctrl && snd_cport[dev] >= 0) {362 if (acard->ctrl && cport[dev] >= 0) { 363 363 pdev = acard->ctrl; 364 364 if (pdev->prepare(pdev) < 0) { … … 366 366 return -EAGAIN; 367 367 } 368 if (snd_cport[dev] != SNDRV_AUTO_PORT)369 isapnp_resource_change(&pdev->resource[0], snd_cport[dev], 8);368 if (cport[dev] != SNDRV_AUTO_PORT) 369 isapnp_resource_change(&pdev->resource[0], cport[dev], 8); 370 370 if (pdev->activate(pdev)<0) { 371 371 printk(KERN_ERR IDENT " isapnp configure failed for control (out of resources?)\n"); … … 373 373 return -EBUSY; 374 374 } 375 snd_cport[dev] = pdev->resource[0].start;376 snd_printdd("isapnp CTRL: control port=0x%lx\n", snd_cport[dev]);375 cport[dev] = pdev->resource[0].start; 376 snd_printdd("isapnp CTRL: control port=0x%lx\n", cport[dev]); 377 377 } 378 378 /* MPU initialization */ 379 if (acard->mpu && snd_mpu_port[dev] >= 0) {379 if (acard->mpu && mpu_port[dev] >= 0) { 380 380 pdev = acard->mpu; 381 381 if (pdev->prepare(pdev) < 0) { … … 384 384 return -EAGAIN; 385 385 } 386 if ( snd_mpu_port[dev] != SNDRV_AUTO_PORT)387 isapnp_resource_change(&pdev->resource[0], snd_mpu_port[dev], 2);388 if ( snd_mpu_irq[dev] != SNDRV_AUTO_IRQ && snd_mpu_irq[dev] >= 0)389 isapnp_resource_change(&pdev->irq_resource[0], snd_mpu_irq[dev], 1);386 if (mpu_port[dev] != SNDRV_AUTO_PORT) 387 isapnp_resource_change(&pdev->resource[0], mpu_port[dev], 2); 388 if (mpu_irq[dev] != SNDRV_AUTO_IRQ && mpu_irq[dev] >= 0) 389 isapnp_resource_change(&pdev->irq_resource[0], mpu_irq[dev], 1); 390 390 if (pdev->activate(pdev)<0) { 391 snd_mpu_port[dev] = SNDRV_AUTO_PORT;392 snd_mpu_irq[dev] = SNDRV_AUTO_IRQ;391 mpu_port[dev] = SNDRV_AUTO_PORT; 392 mpu_irq[dev] = SNDRV_AUTO_IRQ; 393 393 printk(KERN_ERR IDENT " isapnp configure failed for MPU (out of resources?)\n"); 394 394 } else { 395 snd_mpu_port[dev] = pdev->resource[0].start;395 mpu_port[dev] = pdev->resource[0].start; 396 396 if ((pdev->irq_resource[0].flags & IORESOURCE_IRQ) && 397 snd_mpu_irq[dev] >= 0) {398 snd_mpu_irq[dev] = pdev->irq_resource[0].start;397 mpu_irq[dev] >= 0) { 398 mpu_irq[dev] = pdev->irq_resource[0].start; 399 399 } else { 400 snd_mpu_irq[dev] = -1; /* disable interrupt */400 mpu_irq[dev] = -1; /* disable interrupt */ 401 401 } 402 402 } 403 snd_printdd("isapnp MPU: port=0x%lx, irq=%i\n", snd_mpu_port[dev], snd_mpu_irq[dev]);403 snd_printdd("isapnp MPU: port=0x%lx, irq=%i\n", mpu_port[dev], mpu_irq[dev]); 404 404 } 405 405 return 0; … … 448 448 449 449 #ifdef __ISAPNP__ 450 if (! snd_isapnp[dev]) {451 #endif 452 if ( snd_port[dev] == SNDRV_AUTO_PORT) {453 snd_printk("specify snd_port\n");450 if (!isapnp[dev]) { 451 #endif 452 if (port[dev] == SNDRV_AUTO_PORT) { 453 snd_printk("specify port\n"); 454 454 return -EINVAL; 455 455 } 456 if ( snd_cport[dev] == SNDRV_AUTO_PORT) {457 snd_printk("specify snd_cport\n");456 if (cport[dev] == SNDRV_AUTO_PORT) { 457 snd_printk("specify cport\n"); 458 458 return -EINVAL; 459 459 } … … 461 461 } 462 462 #endif 463 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,463 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 464 464 sizeof(struct snd_card_cs4236)); 465 465 if (card == NULL) … … 468 468 card->private_free = snd_card_cs4236_free; 469 469 #ifdef __ISAPNP__ 470 if ( snd_isapnp[dev] && (err = snd_card_cs4236_isapnp(dev, acard))<0) {470 if (isapnp[dev] && (err = snd_card_cs4236_isapnp(dev, acard))<0) { 471 471 printk(KERN_ERR "isapnp detection failed and probing for " IDENT " is not supported\n"); 472 472 snd_card_free(card); … … 474 474 } 475 475 #endif 476 if ( snd_mpu_port[dev] < 0)477 snd_mpu_port[dev] = SNDRV_AUTO_PORT;478 if ( snd_fm_port[dev] < 0)479 snd_fm_port[dev] = SNDRV_AUTO_PORT;480 if (s nd_sb_port[dev] < 0)481 s nd_sb_port[dev] = SNDRV_AUTO_PORT;482 if (s nd_sb_port[dev] != SNDRV_AUTO_PORT)483 if ((acard->res_sb_port = request_region(s nd_sb_port[dev], 16, IDENT " SB")) == NULL) {484 printk(KERN_ERR IDENT ": unable to register SB port at 0x%lx\n", s nd_sb_port[dev]);476 if (mpu_port[dev] < 0) 477 mpu_port[dev] = SNDRV_AUTO_PORT; 478 if (fm_port[dev] < 0) 479 fm_port[dev] = SNDRV_AUTO_PORT; 480 if (sb_port[dev] < 0) 481 sb_port[dev] = SNDRV_AUTO_PORT; 482 if (sb_port[dev] != SNDRV_AUTO_PORT) 483 if ((acard->res_sb_port = request_region(sb_port[dev], 16, IDENT " SB")) == NULL) { 484 printk(KERN_ERR IDENT ": unable to register SB port at 0x%lx\n", sb_port[dev]); 485 485 snd_card_free(card); 486 486 return -ENOMEM; … … 489 489 #ifdef CS4232 490 490 if ((err = snd_cs4231_create(card, 491 snd_port[dev],492 snd_cport[dev],493 snd_irq[dev],494 snd_dma1[dev],495 snd_dma2[dev],491 port[dev], 492 cport[dev], 493 irq[dev], 494 dma1[dev], 495 dma2[dev], 496 496 CS4231_HW_DETECT, 497 497 0, … … 511 511 #else /* CS4236 */ 512 512 if ((err = snd_cs4236_create(card, 513 snd_port[dev],514 snd_cport[dev],515 snd_irq[dev],516 snd_dma1[dev],517 snd_dma2[dev],513 port[dev], 514 cport[dev], 515 irq[dev], 516 dma1[dev], 517 dma2[dev], 518 518 CS4231_HW_DETECT, 519 519 0, … … 537 537 } 538 538 539 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT) {539 if (fm_port[dev] != SNDRV_AUTO_PORT) { 540 540 if (snd_opl3_create(card, 541 snd_fm_port[dev], snd_fm_port[dev] + 2,541 fm_port[dev], fm_port[dev] + 2, 542 542 OPL3_HW_OPL3_CS, 0, &opl3) < 0) { 543 543 printk(KERN_ERR IDENT ": OPL3 not detected\n"); … … 550 550 } 551 551 552 if ( snd_mpu_port[dev] != SNDRV_AUTO_PORT) {552 if (mpu_port[dev] != SNDRV_AUTO_PORT) { 553 553 if (snd_mpu401_uart_new(card, 0, MPU401_HW_CS4232, 554 snd_mpu_port[dev], 0,555 snd_mpu_irq[dev],556 snd_mpu_irq[dev] >= 0 ? SA_INTERRUPT : 0, NULL) < 0)554 mpu_port[dev], 0, 555 mpu_irq[dev], 556 mpu_irq[dev] >= 0 ? SA_INTERRUPT : 0, NULL) < 0) 557 557 printk(KERN_ERR IDENT ": MPU401 not detected\n"); 558 558 } … … 562 562 pcm->name, 563 563 chip->port, 564 snd_irq[dev],565 snd_dma1[dev]);566 if ( snd_dma1[dev] >= 0)567 sprintf(card->longname + strlen(card->longname), "&%d", snd_dma2[dev]);564 irq[dev], 565 dma1[dev]); 566 if (dma1[dev] >= 0) 567 sprintf(card->longname + strlen(card->longname), "&%d", dma2[dev]); 568 568 if ((err = snd_card_register(card)) < 0) { 569 569 snd_card_free(card); … … 582 582 583 583 for ( ; dev < SNDRV_CARDS; dev++) { 584 if (! snd_enable[dev])584 if (!enable[dev]) 585 585 continue; 586 586 snd_cs4236_isapnp_cards[dev] = card; … … 601 601 602 602 for (dev = 0; dev < SNDRV_CARDS; dev++) { 603 if (! snd_enable[dev])603 if (!enable[dev]) 604 604 continue; 605 605 #ifdef __ISAPNP__ 606 if ( snd_isapnp[dev])606 if (isapnp[dev]) 607 607 continue; 608 608 #endif … … 635 635 #ifndef MODULE 636 636 637 /* format is: snd-cs4232= snd_enable,snd_index,snd_id,snd_isapnp,snd_port,638 snd_cport,snd_mpu_port,snd_fm_port,snd_sb_port,639 snd_irq,snd_mpu_irq,snd_dma1,snd_dma1_size,640 snd_dma2,snd_dma2_size */641 /* format is: snd-cs4236= snd_enable,snd_index,snd_id,snd_isapnp,snd_port,642 snd_cport,snd_mpu_port,snd_fm_port,snd_sb_port,643 snd_irq,snd_mpu_irq,snd_dma1,snd_dma1_size,644 snd_dma2,snd_dma2_size */637 /* format is: snd-cs4232=enable,index,id,isapnp,port, 638 cport,mpu_port,fm_port,sb_port, 639 irq,mpu_irq,dma1,dma1_size, 640 dma2,dma2_size */ 641 /* format is: snd-cs4236=enable,index,id,isapnp,port, 642 cport,mpu_port,fm_port,sb_port, 643 irq,mpu_irq,dma1,dma1_size, 644 dma2,dma2_size */ 645 645 646 646 static int __init alsa_card_cs423x_setup(char *str) … … 651 651 if (nr_dev >= SNDRV_CARDS) 652 652 return 0; 653 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&654 get_option(&str,& snd_index[nr_dev]) == 2 &&655 get_id(&str,& snd_id[nr_dev]) == 2 &&653 (void)(get_option(&str,&enable[nr_dev]) == 2 && 654 get_option(&str,&index[nr_dev]) == 2 && 655 get_id(&str,&id[nr_dev]) == 2 && 656 656 get_option(&str,&pnp) == 2 && 657 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&658 get_option(&str,(int *)& snd_cport[nr_dev]) == 2 &&659 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&660 get_option(&str,(int *)& snd_fm_port[nr_dev]) == 2 &&661 get_option(&str,(int *)&s nd_sb_port[nr_dev]) == 2 &&662 get_option(&str,& snd_irq[nr_dev]) == 2 &&663 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&664 get_option(&str,& snd_dma1[nr_dev]) == 2 &&665 get_option(&str,& snd_dma2[nr_dev]) == 2);657 get_option(&str,(int *)&port[nr_dev]) == 2 && 658 get_option(&str,(int *)&cport[nr_dev]) == 2 && 659 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 660 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 661 get_option(&str,(int *)&sb_port[nr_dev]) == 2 && 662 get_option(&str,&irq[nr_dev]) == 2 && 663 get_option(&str,&mpu_irq[nr_dev]) == 2 && 664 get_option(&str,&dma1[nr_dev]) == 2 && 665 get_option(&str,&dma2[nr_dev]) == 2); 666 666 #ifdef __ISAPNP__ 667 667 if (pnp != INT_MAX) 668 snd_isapnp[nr_dev] = pnp;668 isapnp[nr_dev] = pnp; 669 669 #endif 670 670 nr_dev++; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/dt019x.c ¶
r210 r212 49 49 "{Avance Logic ALS-007}}"); 50 50 51 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */52 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */53 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */54 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */55 static long snd_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */56 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */57 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */58 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */59 static int snd_dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */60 61 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");62 MODULE_PARM_DESC( snd_index, "Index value for DT-019X based soundcard.");63 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);64 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");65 MODULE_PARM_DESC( snd_id, "ID string for DT-019X based soundcard.");66 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);67 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");68 MODULE_PARM_DESC( snd_enable, "Enable DT-019X based soundcard.");69 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);70 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");71 MODULE_PARM_DESC( snd_port, "Port # for dt019x driver.");72 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);73 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");74 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for dt019x driver.");75 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT12_DESC);76 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");77 MODULE_PARM_DESC( snd_fm_port, "FM port # for dt019x driver.");78 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_PORT12_DESC);79 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");80 MODULE_PARM_DESC( snd_irq, "IRQ # for dt019x driver.");81 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);82 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");83 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for dt019x driver.");84 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);85 MODULE_PARM( snd_dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");86 MODULE_PARM_DESC( snd_dma8, "8-bit DMA # for dt019x driver.");87 MODULE_PARM_SYNTAX( snd_dma8, SNDRV_DMA8_DESC);51 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 52 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 53 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 54 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 55 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 56 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 57 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 58 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* PnP setup */ 59 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 60 61 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 62 MODULE_PARM_DESC(index, "Index value for DT-019X based soundcard."); 63 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 64 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 65 MODULE_PARM_DESC(id, "ID string for DT-019X based soundcard."); 66 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 67 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 68 MODULE_PARM_DESC(enable, "Enable DT-019X based soundcard."); 69 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 70 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 71 MODULE_PARM_DESC(port, "Port # for dt019x driver."); 72 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 73 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 74 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for dt019x driver."); 75 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT12_DESC); 76 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 77 MODULE_PARM_DESC(fm_port, "FM port # for dt019x driver."); 78 MODULE_PARM_SYNTAX(fm_port, SNDRV_PORT12_DESC); 79 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 80 MODULE_PARM_DESC(irq, "IRQ # for dt019x driver."); 81 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 82 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 83 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for dt019x driver."); 84 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 85 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 86 MODULE_PARM_DESC(dma8, "8-bit DMA # for dt019x driver."); 87 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC); 88 88 89 89 struct snd_card_dt019x { … … 160 160 return -EAGAIN; 161 161 162 if ( snd_port[dev] != SNDRV_AUTO_PORT)163 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 16);164 if ( snd_dma8[dev] != SNDRV_AUTO_DMA)165 isapnp_resource_change(&pdev->dma_resource[0], snd_dma8[dev],162 if (port[dev] != SNDRV_AUTO_PORT) 163 isapnp_resource_change(&pdev->resource[0], port[dev], 16); 164 if (dma8[dev] != SNDRV_AUTO_DMA) 165 isapnp_resource_change(&pdev->dma_resource[0], dma8[dev], 166 166 1); 167 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)168 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);167 if (irq[dev] != SNDRV_AUTO_IRQ) 168 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 169 169 170 170 if (pdev->activate(pdev)<0) { … … 172 172 return -EBUSY; 173 173 } 174 snd_port[dev] = pdev->resource[0].start;175 snd_dma8[dev] = pdev->dma_resource[0].start;176 snd_irq[dev] = pdev->irq_resource[0].start;174 port[dev] = pdev->resource[0].start; 175 dma8[dev] = pdev->dma_resource[0].start; 176 irq[dev] = pdev->irq_resource[0].start; 177 177 snd_printdd("dt019x: found audio interface: port=0x%lx, irq=0x%lx, dma=0x%lx\n", 178 snd_port[dev],snd_irq[dev],snd_dma8[dev]);178 port[dev],irq[dev],dma8[dev]); 179 179 180 180 pdev = acard->devmpu; … … 182 182 return 0; 183 183 184 if ( snd_mpu_port[dev] != SNDRV_AUTO_PORT)185 isapnp_resource_change(&pdev->resource[0], snd_mpu_port[dev],184 if (mpu_port[dev] != SNDRV_AUTO_PORT) 185 isapnp_resource_change(&pdev->resource[0], mpu_port[dev], 186 186 2); 187 if ( snd_mpu_irq[dev] != SNDRV_AUTO_IRQ)188 isapnp_resource_change(&pdev->irq_resource[0], snd_mpu_irq[dev],187 if (mpu_irq[dev] != SNDRV_AUTO_IRQ) 188 isapnp_resource_change(&pdev->irq_resource[0], mpu_irq[dev], 189 189 1); 190 190 191 191 if (pdev->activate(pdev)<0) { 192 192 printk(KERN_ERR PFX "DT-019X MPU-401 isapnp configure failure\n"); 193 snd_mpu_port[dev] = -1;193 mpu_port[dev] = -1; 194 194 acard->devmpu = NULL; 195 195 } else { 196 snd_mpu_port[dev] = pdev->resource[0].start;197 snd_mpu_irq[dev] = pdev->irq_resource[0].start;196 mpu_port[dev] = pdev->resource[0].start; 197 mpu_irq[dev] = pdev->irq_resource[0].start; 198 198 snd_printdd("dt019x: found MPU-401: port=0x%lx, irq=0x%lx\n", 199 snd_mpu_port[dev],snd_mpu_irq[dev]);199 mpu_port[dev],mpu_irq[dev]); 200 200 } 201 201 … … 204 204 return 0; 205 205 206 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT)207 isapnp_resource_change(&pdev->resource[0], snd_fm_port[dev], 4);206 if (fm_port[dev] != SNDRV_AUTO_PORT) 207 isapnp_resource_change(&pdev->resource[0], fm_port[dev], 4); 208 208 209 209 if (pdev->activate(pdev)<0) { 210 210 printk(KERN_ERR PFX "DT-019X OPL3 isapnp configure failure\n"); 211 snd_fm_port[dev] = -1;211 fm_port[dev] = -1; 212 212 acard->devopl = NULL; 213 213 } else { 214 snd_fm_port[dev] = pdev->resource[0].start;215 snd_printdd("dt019x: found OPL3 synth: port=0x%lx\n", snd_fm_port[dev]);214 fm_port[dev] = pdev->resource[0].start; 215 snd_printdd("dt019x: found OPL3 synth: port=0x%lx\n",fm_port[dev]); 216 216 } 217 217 … … 255 255 opl3_t *opl3; 256 256 257 if ((card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,257 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 258 258 sizeof(struct snd_card_dt019x))) == NULL) 259 259 return -ENOMEM; … … 272 272 #endif /* __ISAPNP__ */ 273 273 274 if ((error = snd_sbdsp_create(card, snd_port[dev],275 snd_irq[dev],274 if ((error = snd_sbdsp_create(card, port[dev], 275 irq[dev], 276 276 snd_sb16dsp_interrupt, 277 snd_dma8[dev],277 dma8[dev], 278 278 -1, 279 279 SB_HW_DT019X, … … 292 292 } 293 293 294 if ( snd_mpu_port[dev] > 0) {294 if (mpu_port[dev] > 0) { 295 295 if (snd_mpu401_uart_new(card, 0, 296 296 /* MPU401_HW_SB,*/ 297 297 MPU401_HW_MPU401, 298 snd_mpu_port[dev], 0,299 snd_mpu_irq[dev],298 mpu_port[dev], 0, 299 mpu_irq[dev], 300 300 SA_INTERRUPT, 301 301 NULL) < 0) 302 302 printk(KERN_ERR PFX "no MPU-401 device at 0x%lx ?\n", 303 snd_mpu_port[dev]);304 } 305 306 if ( snd_fm_port[dev] > 0) {303 mpu_port[dev]); 304 } 305 306 if (fm_port[dev] > 0) { 307 307 if (snd_opl3_create(card, 308 snd_fm_port[dev],309 snd_fm_port[dev] + 2,308 fm_port[dev], 309 fm_port[dev] + 2, 310 310 OPL3_HW_AUTO, 0, &opl3) < 0) { 311 311 printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx ?\n", 312 snd_fm_port[dev], snd_fm_port[dev] + 2);312 fm_port[dev], fm_port[dev] + 2); 313 313 } else { 314 314 if ((error = snd_opl3_timer_new(opl3, 0, 1)) < 0) { … … 327 327 sprintf(card->longname, "%s soundcard, %s at 0x%lx, irq %d, dma %d", 328 328 card->shortname, chip->name, chip->port, 329 snd_irq[dev], snd_dma8[dev]);329 irq[dev], dma8[dev]); 330 330 if ((error = snd_card_register(card)) < 0) { 331 331 snd_card_free(card); … … 344 344 345 345 for ( ; dev < SNDRV_CARDS; dev++) { 346 if (! snd_enable[dev])346 if (!enable[dev]) 347 347 continue; 348 348 snd_dt019x_isapnp_cards[dev] = card; … … 387 387 #ifndef MODULE 388 388 389 /* format is: snd-dt019x= snd_enable,snd_index,snd_id,snd_isapnp,390 snd_port,snd_mpu_port,snd_fm_port,391 snd_irq,snd_mpu_irq,snd_dma8,snd_dma8_size */389 /* format is: snd-dt019x=enable,index,id,snd_isapnp, 390 port,mpu_port,fm_port, 391 irq,mpu_irq,dma8,dma8_size */ 392 392 393 393 static int __init alsa_card_dt019x_setup(char *str) … … 397 397 if (nr_dev >= SNDRV_CARDS) 398 398 return 0; 399 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&400 get_option(&str,& snd_index[nr_dev]) == 2 &&401 get_id(&str,& snd_id[nr_dev]) == 2 &&402 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&403 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&404 get_option(&str,(int *)& snd_fm_port[nr_dev]) == 2 &&405 get_option(&str,& snd_irq[nr_dev]) == 2 &&406 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&407 get_option(&str,& snd_dma8[nr_dev]) == 2);399 (void)(get_option(&str,&enable[nr_dev]) == 2 && 400 get_option(&str,&index[nr_dev]) == 2 && 401 get_id(&str,&id[nr_dev]) == 2 && 402 get_option(&str,(int *)&port[nr_dev]) == 2 && 403 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 404 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 405 get_option(&str,&irq[nr_dev]) == 2 && 406 get_option(&str,&mpu_irq[nr_dev]) == 2 && 407 get_option(&str,&dma8[nr_dev]) == 2); 408 408 nr_dev++; 409 409 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/es1688/es1688.c ¶
r207 r212 46 46 "{ESS,ES1688 AudioDrive,pnp:ESS1681}}"); 47 47 48 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */49 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */50 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */51 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */48 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 49 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 50 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 51 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */ 52 52 #ifdef TARGET_OS2 53 static long snd_mpu_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1};53 static long mpu_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1}; 54 54 #else 55 static long snd_mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1};55 static long mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1}; 56 56 #endif 57 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */58 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */59 static int snd_dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */60 61 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");62 MODULE_PARM_DESC( snd_index, "Index value for ESx688 soundcard.");63 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);64 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");65 MODULE_PARM_DESC( snd_id, "ID string for ESx688 soundcard.");66 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);67 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");68 MODULE_PARM_DESC( snd_enable, "Enable ESx688 soundcard.");69 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);70 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");71 MODULE_PARM_DESC( snd_port, "Port # for ESx688 driver.");72 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);73 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");74 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for ESx688 driver.");75 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT12_DESC);76 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");77 MODULE_PARM_DESC( snd_irq, "IRQ # for ESx688 driver.");78 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);79 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");80 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for ESx688 driver.");81 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);82 MODULE_PARM( snd_dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");83 MODULE_PARM_DESC( snd_dma8, "8-bit DMA # for ESx688 driver.");84 MODULE_PARM_SYNTAX( snd_dma8, SNDRV_DMA8_DESC);57 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 58 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 59 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 60 61 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 62 MODULE_PARM_DESC(index, "Index value for ESx688 soundcard."); 63 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 64 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 65 MODULE_PARM_DESC(id, "ID string for ESx688 soundcard."); 66 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 67 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 68 MODULE_PARM_DESC(enable, "Enable ESx688 soundcard."); 69 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 70 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 71 MODULE_PARM_DESC(port, "Port # for ESx688 driver."); 72 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 73 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 74 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for ESx688 driver."); 75 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT12_DESC); 76 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 77 MODULE_PARM_DESC(irq, "IRQ # for ESx688 driver."); 78 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 79 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 80 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for ESx688 driver."); 81 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 82 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 83 MODULE_PARM_DESC(dma8, "8-bit DMA # for ESx688 driver."); 84 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC); 85 85 86 86 static snd_card_t *snd_audiodrive_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; … … 91 91 static int possible_irqs[] = {5, 9, 10, 7, -1}; 92 92 static int possible_dmas[] = {1, 3, 0, -1}; 93 int irq, dma,mpu_irq;93 int xirq, xdma, xmpu_irq; 94 94 snd_card_t *card; 95 95 es1688_t *chip; … … 98 98 int err; 99 99 100 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);100 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 101 101 if (card == NULL) 102 102 return -ENOMEM; 103 103 104 irq = snd_irq[dev];105 if ( irq == SNDRV_AUTO_IRQ) {106 if (( irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {104 xirq = irq[dev]; 105 if (xirq == SNDRV_AUTO_IRQ) { 106 if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) { 107 107 snd_card_free(card); 108 108 snd_printk("unable to find a free IRQ\n"); … … 110 110 } 111 111 } 112 mpu_irq = snd_mpu_irq[dev];113 dma = snd_dma8[dev];114 if ( dma == SNDRV_AUTO_DMA) {115 if (( dma = snd_legacy_find_free_dma(possible_dmas)) < 0) {112 xmpu_irq = mpu_irq[dev]; 113 xdma = dma8[dev]; 114 if (xdma == SNDRV_AUTO_DMA) { 115 if ((xdma = snd_legacy_find_free_dma(possible_dmas)) < 0) { 116 116 snd_card_free(card); 117 117 snd_printk("unable to find a free DMA\n"); … … 120 120 } 121 121 122 if ((err = snd_es1688_create(card, snd_port[dev], snd_mpu_port[dev],123 irq, mpu_irq,dma,122 if ((err = snd_es1688_create(card, port[dev], mpu_port[dev], 123 xirq, xmpu_irq, xdma, 124 124 ES1688_HW_AUTO, &chip)) < 0) { 125 125 snd_card_free(card); … … 144 144 } 145 145 146 if ( mpu_irq >= 0) {146 if (xmpu_irq >= 0) { 147 147 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_ES1688, 148 148 chip->mpu_port, 0, 149 mpu_irq,149 xmpu_irq, 150 150 SA_INTERRUPT, 151 151 NULL)) < 0) { … … 156 156 strcpy(card->driver, "ES1688"); 157 157 strcpy(card->shortname, pcm->name); 158 sprintf(card->longname, "%s at 0x%lx, irq %i, dma %i", pcm->name, chip->port, irq,dma);158 sprintf(card->longname, "%s at 0x%lx, irq %i, dma %i", pcm->name, chip->port, xirq, xdma); 159 159 if ((err = snd_card_register(card)) < 0) { 160 160 snd_card_free(card); … … 166 166 } 167 167 168 static int __init snd_audiodrive_legacy_auto_probe(unsigned long port)168 static int __init snd_audiodrive_legacy_auto_probe(unsigned long xport) 169 169 { 170 170 static int dev; … … 172 172 173 173 for ( ; dev < SNDRV_CARDS; dev++) { 174 if (! snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)174 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 175 175 continue; 176 snd_port[dev] =port;176 port[dev] = xport; 177 177 res = snd_audiodrive_probe(dev); 178 178 if (res < 0) 179 snd_port[dev] = SNDRV_AUTO_PORT;179 port[dev] = SNDRV_AUTO_PORT; 180 180 return res; 181 181 } … … 188 188 int dev, cards = 0; 189 189 190 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev]; dev++) {191 if ( snd_port[dev] == SNDRV_AUTO_PORT)190 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) { 191 if (port[dev] == SNDRV_AUTO_PORT) 192 192 continue; 193 193 if (snd_audiodrive_probe(dev) >= 0) … … 197 197 if (!cards) { 198 198 #ifdef MODULE 199 snd_printk("ESS AudioDrive ES1688 soundcard not found or device busy\n");199 printk(KERN_ERR "ESS AudioDrive ES1688 soundcard not found or device busy\n"); 200 200 #endif 201 201 return -ENODEV; … … 217 217 #ifndef MODULE 218 218 219 /* format is: snd-es1688= snd_enable,snd_index,snd_id,220 snd_port,snd_mpu_port,221 snd_irq,snd_mpu_irq,222 snd_dma8 */219 /* format is: snd-es1688=enable,index,id, 220 port,mpu_port, 221 irq,mpu_irq, 222 dma8 */ 223 223 224 224 static int __init alsa_card_es1688_setup(char *str) … … 228 228 if (nr_dev >= SNDRV_CARDS) 229 229 return 0; 230 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&231 get_option(&str,& snd_index[nr_dev]) == 2 &&232 get_id(&str,& snd_id[nr_dev]) == 2 &&233 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&234 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&235 get_option(&str,& snd_irq[nr_dev]) == 2 &&236 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&237 get_option(&str,& snd_dma8[nr_dev]) == 2);230 (void)(get_option(&str,&enable[nr_dev]) == 2 && 231 get_option(&str,&index[nr_dev]) == 2 && 232 get_id(&str,&id[nr_dev]) == 2 && 233 get_option(&str,(int *)&port[nr_dev]) == 2 && 234 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 235 get_option(&str,&irq[nr_dev]) == 2 && 236 get_option(&str,&mpu_irq[nr_dev]) == 2 && 237 get_option(&str,&dma8[nr_dev]) == 2); 238 238 nr_dev++; 239 239 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/es18xx.c ¶
r210 r212 362 362 } 363 363 364 #ifdef TARGET_OS2365 static ratnum_t new_clocks[2] = {366 {367 /* num: */ 793800,368 /* den_min: */ 1,369 /* den_max: */ 128,370 /* den_step: */ 1,371 },372 {373 /* num: */ 768000,374 /* den_min: */ 1,375 /* den_max: */ 128,376 /* den_step: */ 1,377 }378 };379 380 static snd_pcm_hw_constraint_ratnums_t new_hw_constraints_clocks = {381 /* nrats: */ 2,382 /* rats: */ new_clocks,383 };384 385 static ratnum_t old_clocks[2] = {386 {387 /* num: */ 795444,388 /* den_min: */ 1,389 /* den_max: */ 128,390 /* den_step: */ 1,391 },392 {393 /* num: */ 397722,394 /* den_min: */ 1,395 /* den_max: */ 128,396 /* den_step: */ 1,397 }398 };399 400 static snd_pcm_hw_constraint_ratnums_t old_hw_constraints_clocks = {401 /* nrats: */ 2,402 /* rats: */ old_clocks,403 };404 #else405 364 static ratnum_t new_clocks[2] = { 406 365 { … … 442 401 .rats = old_clocks, 443 402 }; 444 #endif 403 445 404 446 405 static void snd_es18xx_rate_set(es18xx_t *chip, … … 866 825 } 867 826 868 #ifdef TARGET_OS2869 static snd_pcm_hardware_t snd_es18xx_playback =870 {871 /* info: */ (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |872 SNDRV_PCM_INFO_MMAP_VALID),873 /* formats: */ (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S8 |874 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_U16_LE),875 /* rates: */ SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,876 /* rate_min: */ 4000,877 /* rate_max: */ 48000,878 /* channels_min: */ 1,879 /* channels_max: */ 2,880 /* buffer_bytes_max: */ 65536,881 /* period_bytes_min: */ 64,882 /* period_bytes_max: */ 65536,883 /* periods_min: */ 1,884 /* periods_max: */ 1024,885 /* fifo_size: */ 0,886 };887 888 static snd_pcm_hardware_t snd_es18xx_capture =889 {890 /* info: */ (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |891 SNDRV_PCM_INFO_MMAP_VALID),892 /* formats: */ (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S8 |893 SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_U16_LE),894 /* rates: */ SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,895 /* rate_min: */ 4000,896 /* rate_max: */ 48000,897 /* channels_min: */ 1,898 /* channels_max: */ 2,899 /* buffer_bytes_max: */ 65536,900 /* period_bytes_min: */ 64,901 /* period_bytes_max: */ 65536,902 /* periods_min: */ 1,903 /* periods_max: */ 1024,904 /* fifo_size: */ 0,905 };906 #else907 827 static snd_pcm_hardware_t snd_es18xx_playback = 908 828 { … … 942 862 .fifo_size = 0, 943 863 }; 944 #endif945 864 946 865 static int snd_es18xx_playback_open(snd_pcm_substream_t * substream) … … 1148 1067 } 1149 1068 1150 #ifdef TARGET_OS21151 #define ES18XX_SINGLE(xname, xindex, reg, shift, mask, invert) \1152 { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, xindex, \1153 0, 0, snd_es18xx_info_single, \1154 snd_es18xx_get_single, snd_es18xx_put_single, \1155 reg | (shift << 8) | (mask << 16) | (invert << 24) }1156 #else1157 1069 #define ES18XX_SINGLE(xname, xindex, reg, shift, mask, invert) \ 1158 1070 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ … … 1160 1072 .get = snd_es18xx_get_single, .put = snd_es18xx_put_single, \ 1161 1073 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) } 1162 #endif1163 1074 1164 1075 static int snd_es18xx_info_single(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) … … 1206 1117 } 1207 1118 1208 #ifdef TARGET_OS21209 #define ES18XX_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \1210 { SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0, xname, xindex, \1211 0, 0, snd_es18xx_info_double, \1212 snd_es18xx_get_double, snd_es18xx_put_double, \1213 left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }1214 #else1215 1119 #define ES18XX_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \ 1216 1120 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ … … 1218 1122 .get = snd_es18xx_get_double, .put = snd_es18xx_put_double, \ 1219 1123 .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) } 1220 #endif1221 1124 1222 1125 static int snd_es18xx_info_double(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) … … 1305 1208 ES18XX_SINGLE("Capture Switch", 0, 0x1c, 4, 1, 1), 1306 1209 { 1307 #ifdef TARGET_OS21308 SNDRV_CTL_ELEM_IFACE_MIXER,1309 0,0,1310 "Capture Source", 0, 0, 0,1311 snd_es18xx_info_mux,1312 snd_es18xx_get_mux,1313 snd_es18xx_put_mux, 01314 #else1315 1210 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1316 1211 .name = "Capture Source", … … 1318 1213 .get = snd_es18xx_get_mux, 1319 1214 .put = snd_es18xx_put_mux, 1320 #endif1321 1215 } 1322 1216 }; … … 1347 1241 ES18XX_SINGLE("3D Control - Level", 0, 0x52, 0, 63, 0), 1348 1242 { 1349 #ifdef TARGET_OS21350 SNDRV_CTL_ELEM_IFACE_MIXER,1351 0,0,1352 "3D Control - Switch", 0, 0, 0,1353 snd_es18xx_info_spatializer_enable,1354 snd_es18xx_get_spatializer_enable,1355 snd_es18xx_put_spatializer_enable,1356 #else1357 1243 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1358 1244 .name = "3D Control - Switch", … … 1360 1246 .get = snd_es18xx_get_spatializer_enable, 1361 1247 .put = snd_es18xx_put_spatializer_enable, 1362 #endif1363 1248 } 1364 1249 }; … … 1371 1256 1372 1257 static snd_kcontrol_new_t snd_es18xx_hw_volume_controls[] = { 1373 #ifdef TARGET_OS21374 {1375 SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0,1376 "Hardware Master Playback Volume",0,1377 SNDRV_CTL_ELEM_ACCESS_READ, 0,1378 snd_es18xx_info_hw_volume,1379 snd_es18xx_get_hw_volume,0, 01380 },1381 {1382 SNDRV_CTL_ELEM_IFACE_MIXER, 0, 0,1383 "Hardware Master Playback Switch",0,1384 SNDRV_CTL_ELEM_ACCESS_READ, 0,1385 snd_es18xx_info_hw_switch,1386 snd_es18xx_get_hw_switch,0, 01387 },1388 #else1389 1258 { 1390 1259 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, … … 1401 1270 .get = snd_es18xx_get_hw_switch, 1402 1271 }, 1403 #endif1404 1272 ES18XX_SINGLE("Hardware Master Volume Split", 0, 0x64, 7, 1, 0), 1405 1273 }; … … 1444 1312 /* Hardware volume IRQ */ 1445 1313 snd_es18xx_config_write(chip, 0x27, chip->irq); 1446 if (chip->fm_port > SNDRV_AUTO_PORT) {1314 if (chip->fm_port > 0 && chip->fm_port != SNDRV_AUTO_PORT) { 1447 1315 /* FM I/O */ 1448 1316 snd_es18xx_config_write(chip, 0x62, chip->fm_port >> 8); 1449 1317 snd_es18xx_config_write(chip, 0x63, chip->fm_port & 0xff); 1450 1318 } 1451 if (chip->mpu_port > SNDRV_AUTO_PORT) {1319 if (chip->mpu_port > 0 && chip->mpu_port != SNDRV_AUTO_PORT) { 1452 1320 /* MPU-401 I/O */ 1453 1321 snd_es18xx_config_write(chip, 0x64, chip->mpu_port >> 8); … … 1537 1405 /* Enable and set hardware volume interrupt */ 1538 1406 snd_es18xx_mixer_write(chip, 0x64, 0x06); 1539 if (chip->mpu_port > SNDRV_AUTO_PORT) {1407 if (chip->mpu_port > 0 && chip->mpu_port != SNDRV_AUTO_PORT) { 1540 1408 /* MPU401 share irq with audio 1541 1409 Joystick enabled … … 1680 1548 } 1681 1549 1682 #ifdef TARGET_OS21683 static snd_pcm_ops_t snd_es18xx_playback_ops = {1684 /* open: */ snd_es18xx_playback_open,1685 /* close: */ snd_es18xx_playback_close,1686 /* ioctl: */ snd_pcm_lib_ioctl,1687 /* hw_params:*/ snd_es18xx_playback_hw_params,1688 0,1689 /* prepare: */ snd_es18xx_playback_prepare,1690 /* trigger: */ snd_es18xx_playback_trigger,1691 /* pointer: */ snd_es18xx_playback_pointer,1692 0, 01693 };1694 1695 static snd_pcm_ops_t snd_es18xx_capture_ops = {1696 /* open: */ snd_es18xx_capture_open,1697 /* close: */ snd_es18xx_capture_close,1698 /* ioctl: */ snd_pcm_lib_ioctl,1699 /* hw_params:*/ snd_es18xx_capture_hw_params,1700 0,1701 /* prepare: */ snd_es18xx_capture_prepare,1702 /* trigger: */ snd_es18xx_capture_trigger,1703 /* pointer: */ snd_es18xx_capture_pointer,1704 0, 01705 };1706 #else1707 1550 static snd_pcm_ops_t snd_es18xx_playback_ops = { 1708 1551 .open = snd_es18xx_playback_open, … … 1724 1567 .pointer = snd_es18xx_capture_pointer, 1725 1568 }; 1726 #endif1727 1569 1728 1570 static void snd_es18xx_pcm_free(snd_pcm_t *pcm) … … 1890 1732 { 1891 1733 es18xx_t *chip; 1892 #ifdef TARGET_OS21893 static snd_device_ops_t ops = {1894 snd_es18xx_dev_free,0,01895 };1896 #else1897 1734 static snd_device_ops_t ops = { 1898 1735 .dev_free = snd_es18xx_dev_free, 1899 1736 }; 1900 #endif1901 1737 int err; 1902 1738 … … 1921 1757 snd_es18xx_free(chip); 1922 1758 printk(KERN_ERR PFX "unable to grap ports 0x%lx-0x%lx\n", port, port + 16 - 1); 1923 return -EBUSY;1924 }1925 1926 if (mpu_port > SNDRV_AUTO_PORT && (chip->res_mpu_port = request_region(mpu_port, 2, "ES18xx - MPU401")) == NULL) {1927 snd_es18xx_free(chip);1928 snd_printk("unable to grap MPU401 ports 0x%lx-0x%lx\n", mpu_port, mpu_port + 2 - 1);1929 1759 return -EBUSY; 1930 1760 } … … 2068 1898 "{ESS,ES1888 AudioDrive}}"); 2069 1899 2070 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */2071 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */2072 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */1900 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 1901 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 1902 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 2073 1903 #ifdef __ISAPNP__ 2074 1904 #ifdef TARGET_OS2 2075 static int snd_isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1};1905 static int isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1}; 2076 1906 #else 2077 static int snd_isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};2078 #endif 2079 #endif 2080 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260,0x280 */1907 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 1908 #endif 1909 #endif 1910 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260,0x280 */ 2081 1911 #ifndef __ISAPNP__ 2082 1912 #ifdef TARGET_OS2 2083 static long snd_mpu_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1};1913 static long mpu_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1}; 2084 1914 #else 2085 static long snd_mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1};1915 static long mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1}; 2086 1916 #endif 2087 1917 #else 2088 static long snd_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 2089 #endif 2090 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 2091 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 2092 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 2093 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 2094 2095 MODULE_PARM(snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 2096 MODULE_PARM_DESC(snd_index, "Index value for ES18xx soundcard."); 2097 MODULE_PARM_SYNTAX(snd_index, SNDRV_INDEX_DESC); 2098 MODULE_PARM(snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 2099 MODULE_PARM_DESC(snd_id, "ID string for ES18xx soundcard."); 1918 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 1919 #endif 1920 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 1921 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 1922 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 1923 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 1924 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 1925 MODULE_PARM_DESC(index, "Index value for ES18xx soundcard."); 1926 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 1927 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 1928 MODULE_PARM_DESC(id, "ID string for ES18xx soundcard."); 2100 1929 MODULE_PARM_SYNTAX(snd_id, SNDRV_ID_DESC); 2101 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");2102 MODULE_PARM_DESC( snd_enable, "Enable ES18xx soundcard.");2103 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);1930 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 1931 MODULE_PARM_DESC(enable, "Enable ES18xx soundcard."); 1932 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 2104 1933 #ifdef __ISAPNP__ 2105 MODULE_PARM( snd_isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");2106 MODULE_PARM_DESC( snd_isapnp, "ISA PnP detection for specified soundcard.");2107 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);2108 #endif 2109 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");2110 MODULE_PARM_DESC( snd_port, "Port # for ES18xx driver.");2111 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0x220,0x280,0x20}},prefers:{0x220},base:16,dialog:list");2112 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");2113 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for ES18xx driver.");2114 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_ENABLED ",allows:{{0x300,0x330,0x30},{0x800,0xffe,0x2}},prefers:{0x330,0x300},base:16,dialog:combo");2115 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");2116 MODULE_PARM_DESC( snd_fm_port, "FM port # for ES18xx driver.");2117 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_ENABLED ",allows:{{0x388},{0x800,0xffc,0x4}},prefers:{0x388},base:16,dialog:combo");2118 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");2119 MODULE_PARM_DESC( snd_irq, "IRQ # for ES18xx driver.");2120 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC ",prefers:{5}");2121 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");2122 MODULE_PARM_DESC( snd_dma1, "DMA 1 # for ES18xx driver.");2123 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA8_DESC ",prefers:{1}");2124 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");2125 MODULE_PARM_DESC( snd_dma2, "DMA 2 # for ES18xx driver.");2126 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_ENABLED ",allows:{{0},{1},{3},{5}},dialog:list,prefers:{0}");1934 MODULE_PARM(isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 1935 MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard."); 1936 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 1937 #endif 1938 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 1939 MODULE_PARM_DESC(port, "Port # for ES18xx driver."); 1940 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0x220,0x280,0x20}},prefers:{0x220},base:16,dialog:list"); 1941 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 1942 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for ES18xx driver."); 1943 MODULE_PARM_SYNTAX(mpu_port, SNDRV_ENABLED ",allows:{{0x300,0x330,0x30},{0x800,0xffe,0x2}},prefers:{0x330,0x300},base:16,dialog:combo"); 1944 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 1945 MODULE_PARM_DESC(fm_port, "FM port # for ES18xx driver."); 1946 MODULE_PARM_SYNTAX(fm_port, SNDRV_ENABLED ",allows:{{0x388},{0x800,0xffc,0x4}},prefers:{0x388},base:16,dialog:combo"); 1947 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 1948 MODULE_PARM_DESC(irq, "IRQ # for ES18xx driver."); 1949 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC ",prefers:{5}"); 1950 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 1951 MODULE_PARM_DESC(dma1, "DMA 1 # for ES18xx driver."); 1952 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA8_DESC ",prefers:{1}"); 1953 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 1954 MODULE_PARM_DESC(dma2, "DMA 2 # for ES18xx driver."); 1955 MODULE_PARM_SYNTAX(dma2, SNDRV_ENABLED ",allows:{{0},{1},{3},{5}},dialog:list,prefers:{0}"); 2127 1956 2128 1957 struct snd_audiodrive { … … 2207 2036 return -EAGAIN; 2208 2037 } 2209 if ( snd_port[dev] != SNDRV_AUTO_PORT)2210 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 16);2211 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT)2212 isapnp_resource_change(&pdev->resource[1], snd_fm_port[dev], 4);2213 if ( snd_mpu_port[dev] != SNDRV_AUTO_PORT)2214 isapnp_resource_change(&pdev->resource[2], snd_mpu_port[dev], 2);2215 if ( snd_dma1[dev] != SNDRV_AUTO_DMA)2216 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1[dev], 1);2217 if ( snd_dma2[dev] != SNDRV_AUTO_DMA)2218 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2[dev], 1);2219 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)2220 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);2038 if (port[dev] != SNDRV_AUTO_PORT) 2039 isapnp_resource_change(&pdev->resource[0], port[dev], 16); 2040 if (fm_port[dev] != SNDRV_AUTO_PORT) 2041 isapnp_resource_change(&pdev->resource[1], fm_port[dev], 4); 2042 if (mpu_port[dev] != SNDRV_AUTO_PORT) 2043 isapnp_resource_change(&pdev->resource[2], mpu_port[dev], 2); 2044 if (dma1[dev] != SNDRV_AUTO_DMA) 2045 isapnp_resource_change(&pdev->dma_resource[0], dma1[dev], 1); 2046 if (dma2[dev] != SNDRV_AUTO_DMA) 2047 isapnp_resource_change(&pdev->dma_resource[1], dma2[dev], 1); 2048 if (irq[dev] != SNDRV_AUTO_IRQ) 2049 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 2221 2050 if (pdev->activate(pdev)<0) { 2222 2051 printk(KERN_ERR PFX "isapnp configure failure (out of resources?)\n"); … … 2228 2057 isapnp_cfg_begin(pdev->bus->number, pdev->devfn); 2229 2058 isapnp_write_byte(0x27, pdev->irq_resource[0].start); /* Hardware Volume IRQ Number */ 2230 if ( snd_mpu_port[dev] >SNDRV_AUTO_PORT)2059 if (mpu_port[dev] != SNDRV_AUTO_PORT) 2231 2060 isapnp_write_byte(0x28, pdev->irq); /* MPU-401 IRQ Number */ 2232 2061 isapnp_write_byte(0x72, pdev->irq_resource[0].start); /* second IRQ */ 2233 2062 isapnp_cfg_end(); 2234 snd_port[dev] = pdev->resource[0].start;2235 snd_fm_port[dev] = pdev->resource[1].start;2236 snd_mpu_port[dev] = pdev->resource[2].start;2237 snd_dma1[dev] = pdev->dma_resource[0].start;2238 snd_dma2[dev] = pdev->dma_resource[1].start;2239 snd_irq[dev] = pdev->irq_resource[0].start;2240 snd_printdd("isapnp ES18xx: port=0x%lx, fm port=0x%lx, mpu port=0x%lx\n", snd_port[dev], snd_fm_port[dev], snd_mpu_port[dev]);2241 snd_printdd("isapnp ES18xx: dma1=%i, dma2=%i, irq=%i\n", snd_dma1[dev], snd_dma2[dev], snd_irq[dev]);2063 port[dev] = pdev->resource[0].start; 2064 fm_port[dev] = pdev->resource[1].start; 2065 mpu_port[dev] = pdev->resource[2].start; 2066 dma1[dev] = pdev->dma_resource[0].start; 2067 dma2[dev] = pdev->dma_resource[1].start; 2068 irq[dev] = pdev->irq_resource[0].start; 2069 snd_printdd("isapnp ES18xx: port=0x%lx, fm port=0x%lx, mpu port=0x%lx\n", port[dev], fm_port[dev], mpu_port[dev]); 2070 snd_printdd("isapnp ES18xx: dma1=%i, dma2=%i, irq=%i\n", dma1[dev], dma2[dev], irq[dev]); 2242 2071 return 0; 2243 2072 } … … 2271 2100 static int possible_irqs[] = {5, 9, 10, 7, 11, 12, -1}; 2272 2101 static int possible_dmas[] = {1, 0, 3, 5, -1}; 2273 int irq, dma1,dma2;2102 int xirq, xdma1, xdma2; 2274 2103 snd_card_t *card; 2275 2104 struct snd_audiodrive *acard; … … 2279 2108 int err; 2280 2109 2281 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,2110 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 2282 2111 sizeof(struct snd_audiodrive)); 2283 2112 if (card == NULL) … … 2286 2115 card->private_free = snd_audiodrive_free; 2287 2116 #ifdef __ISAPNP__ 2288 if ( snd_isapnp[dev] && (err = snd_audiodrive_isapnp(dev, acard)) < 0) {2117 if (isapnp[dev] && (err = snd_audiodrive_isapnp(dev, acard)) < 0) { 2289 2118 snd_card_free(card); 2290 2119 return err; … … 2292 2121 #endif 2293 2122 2294 irq = snd_irq[dev];2295 if ( irq == SNDRV_AUTO_IRQ) {2296 if (( irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {2123 xirq = irq[dev]; 2124 if (xirq == SNDRV_AUTO_IRQ) { 2125 if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) { 2297 2126 snd_card_free(card); 2298 2127 snd_printk("unable to find a free IRQ\n"); … … 2300 2129 } 2301 2130 } 2302 dma1 = snd_dma1[dev];2303 if ( dma1 == SNDRV_AUTO_DMA) {2304 if (( dma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) {2131 xdma1 = dma1[dev]; 2132 if (xdma1 == SNDRV_AUTO_DMA) { 2133 if ((xdma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 2305 2134 snd_card_free(card); 2306 2135 snd_printk("unable to find a free DMA1\n"); … … 2308 2137 } 2309 2138 } 2310 dma2 = snd_dma2[dev];2311 if ( dma2 == SNDRV_AUTO_DMA) {2312 if (( dma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) {2139 xdma2 = dma2[dev]; 2140 if (xdma2 == SNDRV_AUTO_DMA) { 2141 if ((xdma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 2313 2142 snd_card_free(card); 2314 2143 snd_printk("unable to find a free DMA2\n"); … … 2318 2147 2319 2148 if ((err = snd_es18xx_new_device(card, 2320 snd_port[dev],2321 snd_mpu_port[dev],2322 snd_fm_port[dev],2323 irq, dma1,dma2,2149 port[dev], 2150 mpu_port[dev], 2151 fm_port[dev], 2152 xirq, xdma1, xdma2, 2324 2153 &chip)) < 0) { 2325 2154 snd_card_free(card); … … 2335 2164 } 2336 2165 2166 if (fm_port[dev] > 0 && fm_port[dev] != SNDRV_AUTO_PORT) { 2337 2167 if (snd_opl3_create(card, chip->fm_port, chip->fm_port + 2, OPL3_HW_OPL3, 0, &opl3) < 0) { 2338 printk(KERN_ERR PFX "opl3 not detected at 0x%lx\n", chip->port);2168 printk(KERN_ERR PFX "opl3 not detected at 0x%lx\n", chip->fm_port); 2339 2169 } else { 2340 2170 if ((err = snd_opl3_hwdep_new(opl3, 0, 1, NULL)) < 0) { … … 2343 2173 } 2344 2174 } 2345 2346 if (snd_mpu_port[dev] != SNDRV_AUTO_PORT) { 2175 } 2176 2177 if (mpu_port[dev] > 0 && mpu_port[dev] != SNDRV_AUTO_PORT) { 2347 2178 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_ES18XX, 2348 2179 chip->mpu_port, 0, 2349 irq, 0,2180 xirq, 0, 2350 2181 &rmidi)) < 0) { 2351 2182 snd_card_free(card); … … 2370 2201 card->shortname, 2371 2202 chip->port, 2372 irq, dma1,dma2);2203 xirq, xdma1, xdma2); 2373 2204 if ((err = snd_card_register(card)) < 0) { 2374 2205 snd_card_free(card); … … 2379 2210 } 2380 2211 2381 static int __init snd_audiodrive_probe_legacy_port(unsigned long port)2212 static int __init snd_audiodrive_probe_legacy_port(unsigned long xport) 2382 2213 { 2383 2214 static int dev; … … 2385 2216 2386 2217 for ( ; dev < SNDRV_CARDS; dev++) { 2387 if (! snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)2218 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 2388 2219 continue; 2389 2220 #ifdef __ISAPNP__ 2390 if ( snd_isapnp[dev])2221 if (isapnp[dev]) 2391 2222 continue; 2392 2223 #endif 2393 snd_port[dev] =port;2224 port[dev] = xport; 2394 2225 res = snd_audiodrive_probe(dev); 2395 2226 if (res < 0) 2396 snd_port[dev] = SNDRV_AUTO_PORT;2227 port[dev] = SNDRV_AUTO_PORT; 2397 2228 return res; 2398 2229 } … … 2409 2240 2410 2241 for ( ; dev < SNDRV_CARDS; dev++) { 2411 if (! snd_enable[dev] || !snd_isapnp[dev])2242 if (!enable[dev] || !isapnp[dev]) 2412 2243 continue; 2413 2244 snd_audiodrive_isapnp_cards[dev] = card; … … 2431 2262 /* legacy non-auto cards at first */ 2432 2263 for (dev = 0; dev < SNDRV_CARDS; dev++) { 2433 if (! snd_enable[dev] || snd_port[dev] == SNDRV_AUTO_PORT)2264 if (!enable[dev] || port[dev] == SNDRV_AUTO_PORT) 2434 2265 continue; 2435 2266 #ifdef __ISAPNP__ 2436 if ( snd_isapnp[dev])2267 if (isapnp[dev]) 2437 2268 continue; 2438 2269 #endif … … 2468 2299 #ifndef MODULE 2469 2300 2470 /* format is: snd-es18xx= snd_enable,snd_index,snd_id,snd_isapnp,2471 snd_port,snd_mpu_port,snd_fm_port,snd_irq,2472 snd_dma1,snd_dma2 */2301 /* format is: snd-es18xx=enable,index,id,isapnp, 2302 port,mpu_port,fm_port,irq, 2303 dma1,dma2 */ 2473 2304 2474 2305 static int __init alsa_card_es18xx_setup(char *str) … … 2479 2310 if (nr_dev >= SNDRV_CARDS) 2480 2311 return 0; 2481 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&2482 get_option(&str,& snd_index[nr_dev]) == 2 &&2483 get_id(&str,& snd_id[nr_dev]) == 2 &&2312 (void)(get_option(&str,&enable[nr_dev]) == 2 && 2313 get_option(&str,&index[nr_dev]) == 2 && 2314 get_id(&str,&id[nr_dev]) == 2 && 2484 2315 get_option(&str,&pnp) == 2 && 2485 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&2486 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&2487 get_option(&str,(int *)& snd_fm_port[nr_dev]) == 2 &&2488 get_option(&str,& snd_irq[nr_dev]) == 2 &&2489 get_option(&str,& snd_dma1[nr_dev]) == 2 &&2490 get_option(&str,& snd_dma2[nr_dev]) == 2);2316 get_option(&str,(int *)&port[nr_dev]) == 2 && 2317 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 2318 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 2319 get_option(&str,&irq[nr_dev]) == 2 && 2320 get_option(&str,&dma1[nr_dev]) == 2 && 2321 get_option(&str,&dma2[nr_dev]) == 2); 2491 2322 #ifdef __ISAPNP__ 2492 2323 if (pnp != INT_MAX) 2493 snd_isapnp[nr_dev] = pnp;2324 isapnp[nr_dev] = pnp; 2494 2325 #endif 2495 2326 nr_dev++; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/gus/gus_uart.c ¶
r210 r212 51 51 gus->gf1.uart_framing++; 52 52 spin_unlock_irqrestore(&gus->uart_cmd_lock, flags); 53 snd_rawmidi_receive_reset(gus->midi_substream_input);54 53 continue; 55 54 } … … 59 58 if (stat & 0x20) { 60 59 gus->gf1.uart_overrun++; 61 snd_rawmidi_receive_reset(gus->midi_substream_input);62 60 } 63 61 } -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/gus/gusclassic.c ¶
r207 r212 39 39 MODULE_DEVICES("{{Gravis,UltraSound Classic}}"); 40 40 41 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */42 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */43 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */44 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x230,0x240,0x250,0x260 */45 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 3,5,9,11,12,15 */46 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */47 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */41 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 42 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 43 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 44 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x230,0x240,0x250,0x260 */ 45 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 3,5,9,11,12,15 */ 46 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */ 47 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */ 48 48 #ifdef TARGET_OS2 49 static int snd_joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)};49 static int joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)}; 50 50 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 51 static int snd_channels[SNDRV_CARDS] = {REPEAT_SNDRV(24)};52 static int snd_pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)};51 static int channels[SNDRV_CARDS] = {REPEAT_SNDRV(24)}; 52 static int pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)}; 53 53 #else 54 static int snd_joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};54 static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29}; 55 55 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 56 static int snd_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24};57 static int snd_pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};56 static int channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24}; 57 static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2}; 58 58 #endif 59 59 60 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");61 MODULE_PARM_DESC( snd_index, "Index value for GUS Classic soundcard.");62 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);63 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");64 MODULE_PARM_DESC( snd_id, "ID string for GUS Classic soundcard.");65 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);66 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");67 MODULE_PARM_DESC( snd_enable, "Enable GUS Classic soundcard.");68 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);69 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");70 MODULE_PARM_DESC( snd_port, "Port # for GUS Classic driver.");71 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0x220,0x260,0x10}},dialog:list");72 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");73 MODULE_PARM_DESC( snd_irq, "IRQ # for GUS Classic driver.");74 MODULE_PARM_SYNTAX( snd_irq, SNDRV_ENABLED ",allows:{{3},{5},{9},{11},{12},{15}},dialog:list");75 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");76 MODULE_PARM_DESC( snd_dma1, "DMA1 # for GUS Classic driver.");77 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list");78 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");79 MODULE_PARM_DESC( snd_dma2, "DMA2 # for GUS Classic driver.");80 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list");81 MODULE_PARM( snd_joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i");82 MODULE_PARM_DESC( snd_joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS Classic driver.");83 MODULE_PARM_SYNTAX( snd_joystick_dac, SNDRV_ENABLED ",allows:{{0,31}}");84 MODULE_PARM( snd_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");85 MODULE_PARM_DESC( snd_channels, "GF1 channels for GUS Classic driver.");86 MODULE_PARM_SYNTAX( snd_channels, SNDRV_ENABLED ",allows:{{14,32}}");87 MODULE_PARM( snd_pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");88 MODULE_PARM_DESC( snd_pcm_channels, "Reserved PCM channels for GUS Classic driver.");89 MODULE_PARM_SYNTAX( snd_pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}");60 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 61 MODULE_PARM_DESC(index, "Index value for GUS Classic soundcard."); 62 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 63 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 64 MODULE_PARM_DESC(id, "ID string for GUS Classic soundcard."); 65 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 66 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 67 MODULE_PARM_DESC(enable, "Enable GUS Classic soundcard."); 68 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 69 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 70 MODULE_PARM_DESC(port, "Port # for GUS Classic driver."); 71 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0x220,0x260,0x10}},dialog:list"); 72 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 73 MODULE_PARM_DESC(irq, "IRQ # for GUS Classic driver."); 74 MODULE_PARM_SYNTAX(irq, SNDRV_ENABLED ",allows:{{3},{5},{9},{11},{12},{15}},dialog:list"); 75 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 76 MODULE_PARM_DESC(dma1, "DMA1 # for GUS Classic driver."); 77 MODULE_PARM_SYNTAX(dma1, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list"); 78 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 79 MODULE_PARM_DESC(dma2, "DMA2 # for GUS Classic driver."); 80 MODULE_PARM_SYNTAX(dma2, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list"); 81 MODULE_PARM(joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 82 MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS Classic driver."); 83 MODULE_PARM_SYNTAX(joystick_dac, SNDRV_ENABLED ",allows:{{0,31}}"); 84 MODULE_PARM(channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 85 MODULE_PARM_DESC(channels, "GF1 channels for GUS Classic driver."); 86 MODULE_PARM_SYNTAX(channels, SNDRV_ENABLED ",allows:{{14,32}}"); 87 MODULE_PARM(pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 88 MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for GUS Classic driver."); 89 MODULE_PARM_SYNTAX(pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}"); 90 90 91 91 static snd_card_t *snd_gusclassic_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; … … 133 133 gus->codec_flag = 0; 134 134 gus->max_flag = 0; 135 gus->joystick_dac = snd_joystick_dac[dev];135 gus->joystick_dac = joystick_dac[dev]; 136 136 } 137 137 … … 140 140 static int possible_irqs[] = {5, 11, 12, 9, 7, 15, 3, 4, -1}; 141 141 static int possible_dmas[] = {5, 6, 7, 1, 3, -1}; 142 int irq, dma1,dma2;142 int xirq, xdma1, xdma2; 143 143 snd_card_t *card; 144 144 struct snd_gusclassic *guscard; … … 146 146 int err; 147 147 148 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);148 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 149 149 if (card == NULL) 150 150 return -ENOMEM; 151 151 guscard = (struct snd_gusclassic *)card->private_data; 152 if ( snd_pcm_channels[dev] < 2)153 snd_pcm_channels[dev] = 2;154 155 irq = snd_irq[dev];156 if ( irq == SNDRV_AUTO_IRQ) {157 if (( irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {152 if (pcm_channels[dev] < 2) 153 pcm_channels[dev] = 2; 154 155 xirq = irq[dev]; 156 if (xirq == SNDRV_AUTO_IRQ) { 157 if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) { 158 158 snd_card_free(card); 159 159 snd_printk("unable to find a free IRQ\n"); … … 161 161 } 162 162 } 163 dma1 = snd_dma1[dev];164 if ( dma1 == SNDRV_AUTO_DMA) {165 if (( dma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) {163 xdma1 = dma1[dev]; 164 if (xdma1 == SNDRV_AUTO_DMA) { 165 if ((xdma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 166 166 snd_card_free(card); 167 167 snd_printk("unable to find a free DMA1\n"); … … 169 169 } 170 170 } 171 dma2 = snd_dma2[dev];172 if ( dma2 == SNDRV_AUTO_DMA) {173 if (( dma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) {171 xdma2 = dma2[dev]; 172 if (xdma2 == SNDRV_AUTO_DMA) { 173 if ((xdma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 174 174 snd_card_free(card); 175 175 snd_printk("unable to find a free DMA2\n"); … … 180 180 181 181 if ((err = snd_gus_create(card, 182 snd_port[dev],183 irq, dma1,dma2,184 0, snd_channels[dev], snd_pcm_channels[dev],182 port[dev], 183 xirq, xdma1, xdma2, 184 0, channels[dev], pcm_channels[dev], 185 185 0, &gus)) < 0) { 186 186 snd_card_free(card); … … 215 215 } 216 216 } 217 sprintf(card->longname + strlen(card->longname), " at 0x%lx, irq %d, dma %d", gus->gf1.port, irq,dma1);217 sprintf(card->longname + strlen(card->longname), " at 0x%lx, irq %d, dma %d", gus->gf1.port, xirq, xdma1); 218 218 if (dma2 >= 0) 219 sprintf(card->longname + strlen(card->longname), "&%d", dma2);219 sprintf(card->longname + strlen(card->longname), "&%d", xdma2); 220 220 if ((err = snd_card_register(card)) < 0) { 221 221 snd_card_free(card); … … 226 226 } 227 227 228 static int __init snd_gusclassic_legacy_auto_probe(unsigned long port)228 static int __init snd_gusclassic_legacy_auto_probe(unsigned long xport) 229 229 { 230 230 static int dev; … … 232 232 233 233 for ( ; dev < SNDRV_CARDS; dev++) { 234 if (! snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)234 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 235 235 continue; 236 snd_port[dev] =port;236 port[dev] = xport; 237 237 res = snd_gusclassic_probe(dev); 238 238 if (res < 0) 239 snd_port[dev] = SNDRV_AUTO_PORT;239 port[dev] = SNDRV_AUTO_PORT; 240 240 return res; 241 241 } … … 248 248 int dev, cards; 249 249 250 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev]; dev++) {251 if ( snd_port[dev] == SNDRV_AUTO_PORT)250 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) { 251 if (port[dev] == SNDRV_AUTO_PORT) 252 252 continue; 253 253 if (snd_gusclassic_probe(dev) >= 0) … … 277 277 #ifndef MODULE 278 278 279 /* format is: snd-gusclassic= snd_enable,snd_index,snd_id,280 snd_port,snd_irq,281 snd_dma1,snd_dma2,282 snd_joystick_dac,283 snd_channels,snd_pcm_channels */279 /* format is: snd-gusclassic=enable,index,id, 280 port,irq, 281 dma1,dma2, 282 joystick_dac, 283 channels,pcm_channels */ 284 284 285 285 static int __init alsa_card_gusclassic_setup(char *str) … … 289 289 if (nr_dev >= SNDRV_CARDS) 290 290 return 0; 291 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&292 get_option(&str,& snd_index[nr_dev]) == 2 &&293 get_id(&str,& snd_id[nr_dev]) == 2 &&294 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&295 get_option(&str,& snd_irq[nr_dev]) == 2 &&296 get_option(&str,& snd_dma1[nr_dev]) == 2 &&297 get_option(&str,& snd_dma2[nr_dev]) == 2 &&298 get_option(&str,& snd_joystick_dac[nr_dev]) == 2 &&299 get_option(&str,& snd_channels[nr_dev]) == 2 &&300 get_option(&str,& snd_pcm_channels[nr_dev]) == 2);291 (void)(get_option(&str,&enable[nr_dev]) == 2 && 292 get_option(&str,&index[nr_dev]) == 2 && 293 get_id(&str,&id[nr_dev]) == 2 && 294 get_option(&str,(int *)&port[nr_dev]) == 2 && 295 get_option(&str,&irq[nr_dev]) == 2 && 296 get_option(&str,&dma1[nr_dev]) == 2 && 297 get_option(&str,&dma2[nr_dev]) == 2 && 298 get_option(&str,&joystick_dac[nr_dev]) == 2 && 299 get_option(&str,&channels[nr_dev]) == 2 && 300 get_option(&str,&pcm_channels[nr_dev]) == 2); 301 301 nr_dev++; 302 302 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/gus/gusextreme.c ¶
r207 r212 42 42 MODULE_DEVICES("{{Gravis,UltraSound Extreme}}"); 43 43 44 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */45 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */46 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */47 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */44 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 45 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 46 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 47 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */ 48 48 #ifdef TARGET_OS2 49 static long snd_gf1_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1}; /* 0x210,0x220,0x230,0x240,0x250,0x260,0x270 */50 static long snd_mpu_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1}; /* 0x300,0x310,0x320 */49 static long gf1_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1}; /* 0x210,0x220,0x230,0x240,0x250,0x260,0x270 */ 50 static long mpu_port[SNDRV_CARDS] = {-1,-1,-1,-1,-1,-1,-1,-1}; /* 0x300,0x310,0x320 */ 51 51 #else 52 static long snd_gf1_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x210,0x220,0x230,0x240,0x250,0x260,0x270 */53 static long snd_mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x300,0x310,0x320 */52 static long gf1_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x210,0x220,0x230,0x240,0x250,0x260,0x270 */ 53 static long mpu_port[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS) - 1] = -1}; /* 0x300,0x310,0x320 */ 54 54 #endif 55 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */56 static int snd_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */57 static int snd_gf1_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */58 static int snd_dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */59 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;55 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 56 static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 57 static int gf1_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */ 58 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 59 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; 60 60 #ifdef TARGET_OS2 61 static int snd_joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)};61 static int joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)}; 62 62 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 63 static int snd_channels[SNDRV_CARDS] = {REPEAT_SNDRV(24)};64 static int snd_pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)};63 static int channels[SNDRV_CARDS] = {REPEAT_SNDRV(24)}; 64 static int pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)}; 65 65 #else 66 static int snd_joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};66 static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29}; 67 67 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 68 static int snd_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24};69 static int snd_pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};68 static int channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24}; 69 static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2}; 70 70 #endif 71 71 72 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");73 MODULE_PARM_DESC( snd_index, "Index value for GUS Extreme soundcard.");74 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);75 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");76 MODULE_PARM_DESC( snd_id, "ID string for GUS Extreme soundcard.");77 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);78 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");79 MODULE_PARM_DESC( snd_enable, "Enable GUS Extreme soundcard.");80 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);81 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");82 MODULE_PARM_DESC( snd_port, "Port # for GUS Extreme driver.");83 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0x220,0x260,0x20}},dialog:list");84 MODULE_PARM( snd_gf1_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");85 MODULE_PARM_DESC( snd_gf1_port, "GF1 port # for GUS Extreme driver (optional).");86 MODULE_PARM_SYNTAX( snd_gf1_port, SNDRV_ENABLED ",allows:{{0x210,0x270,0x10}},dialog:list");87 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");88 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for GUS Extreme driver.");89 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_ENABLED ",allows:{{0x300,0x320,0x10}},dialog:list");90 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");91 MODULE_PARM_DESC( snd_irq, "IRQ # for GUS Extreme driver.");92 MODULE_PARM_SYNTAX( snd_irq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10}},dialog:list");93 MODULE_PARM( snd_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");94 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 IRQ # for GUS Extreme driver.");95 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10}},dialog:list");96 MODULE_PARM( snd_gf1_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");97 MODULE_PARM_DESC( snd_gf1_irq, "GF1 IRQ # for GUS Extreme driver.");98 MODULE_PARM_SYNTAX( snd_gf1_irq, SNDRV_ENABLED ",allows:{{2},{3},{5},{9},{11},{12},{15}},dialog:list");99 MODULE_PARM( snd_dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");100 MODULE_PARM_DESC( snd_dma8, "8-bit DMA # for GUS Extreme driver.");101 MODULE_PARM_SYNTAX( snd_dma8, SNDRV_DMA8_DESC);102 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");103 MODULE_PARM_DESC( snd_dma1, "GF1 DMA # for GUS Extreme driver.");104 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);105 MODULE_PARM( snd_joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i");106 MODULE_PARM_DESC( snd_joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS Extreme driver.");107 MODULE_PARM_SYNTAX( snd_joystick_dac, SNDRV_ENABLED ",allows:{{0,31}}");108 MODULE_PARM( snd_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");109 MODULE_PARM_DESC( snd_channels, "GF1 channels for GUS Extreme driver.");110 MODULE_PARM_SYNTAX( snd_channels, SNDRV_ENABLED ",allows:{{14,32}}");111 MODULE_PARM( snd_pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");112 MODULE_PARM_DESC( snd_pcm_channels, "Reserved PCM channels for GUS Extreme driver.");113 MODULE_PARM_SYNTAX( snd_pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}");72 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 73 MODULE_PARM_DESC(index, "Index value for GUS Extreme soundcard."); 74 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 75 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 76 MODULE_PARM_DESC(id, "ID string for GUS Extreme soundcard."); 77 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 78 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 79 MODULE_PARM_DESC(enable, "Enable GUS Extreme soundcard."); 80 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 81 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 82 MODULE_PARM_DESC(port, "Port # for GUS Extreme driver."); 83 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0x220,0x260,0x20}},dialog:list"); 84 MODULE_PARM(gf1_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 85 MODULE_PARM_DESC(gf1_port, "GF1 port # for GUS Extreme driver (optional)."); 86 MODULE_PARM_SYNTAX(gf1_port, SNDRV_ENABLED ",allows:{{0x210,0x270,0x10}},dialog:list"); 87 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 88 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for GUS Extreme driver."); 89 MODULE_PARM_SYNTAX(mpu_port, SNDRV_ENABLED ",allows:{{0x300,0x320,0x10}},dialog:list"); 90 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 91 MODULE_PARM_DESC(irq, "IRQ # for GUS Extreme driver."); 92 MODULE_PARM_SYNTAX(irq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10}},dialog:list"); 93 MODULE_PARM(mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 94 MODULE_PARM_DESC(mpu_irq, "MPU-401 IRQ # for GUS Extreme driver."); 95 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_ENABLED ",allows:{{5},{7},{9},{10}},dialog:list"); 96 MODULE_PARM(gf1_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 97 MODULE_PARM_DESC(gf1_irq, "GF1 IRQ # for GUS Extreme driver."); 98 MODULE_PARM_SYNTAX(gf1_irq, SNDRV_ENABLED ",allows:{{2},{3},{5},{9},{11},{12},{15}},dialog:list"); 99 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 100 MODULE_PARM_DESC(dma8, "8-bit DMA # for GUS Extreme driver."); 101 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC); 102 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 103 MODULE_PARM_DESC(dma1, "GF1 DMA # for GUS Extreme driver."); 104 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 105 MODULE_PARM(joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 106 MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS Extreme driver."); 107 MODULE_PARM_SYNTAX(joystick_dac, SNDRV_ENABLED ",allows:{{0,31}}"); 108 MODULE_PARM(channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 109 MODULE_PARM_DESC(channels, "GF1 channels for GUS Extreme driver."); 110 MODULE_PARM_SYNTAX(channels, SNDRV_ENABLED ",allows:{{14,32}}"); 111 MODULE_PARM(pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 112 MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for GUS Extreme driver."); 113 MODULE_PARM_SYNTAX(pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}"); 114 114 115 115 static snd_card_t *snd_gusextreme_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; … … 141 141 spin_unlock_irqrestore(&es1688->mixer_lock, flags); 142 142 spin_lock_irqsave(&es1688->reg_lock, flags); 143 outb( snd_gf1_port[dev] & 0x040 ? 2 : 0, ES1688P(es1688, INIT1));143 outb(gf1_port[dev] & 0x040 ? 2 : 0, ES1688P(es1688, INIT1)); 144 144 outb(0, 0x201); 145 outb( snd_gf1_port[dev] & 0x020 ? 2 : 0, ES1688P(es1688, INIT1));145 outb(gf1_port[dev] & 0x020 ? 2 : 0, ES1688P(es1688, INIT1)); 146 146 outb(0, 0x201); 147 outb( snd_gf1_port[dev] & 0x010 ? 3 : 1, ES1688P(es1688, INIT1));147 outb(gf1_port[dev] & 0x010 ? 3 : 1, ES1688P(es1688, INIT1)); 148 148 spin_unlock_irqrestore(&es1688->reg_lock, flags); 149 149 … … 186 186 static void __init snd_gusextreme_init(int dev, snd_gus_card_t * gus) 187 187 { 188 gus->joystick_dac = snd_joystick_dac[dev];188 gus->joystick_dac = joystick_dac[dev]; 189 189 } 190 190 … … 217 217 static int possible_gf1_irqs[] = {5, 11, 12, 9, 7, 15, 3, -1}; 218 218 static int possible_gf1_dmas[] = {5, 6, 7, 1, 3, -1}; 219 int gf1_irq, gf1_dma, ess_irq, mpu_irq,ess_dma;219 int xgf1_irq, xgf1_dma, xess_irq, xmpu_irq, xess_dma; 220 220 snd_card_t *card; 221 221 struct snd_gusextreme *acard; … … 225 225 int err; 226 226 227 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);227 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 228 228 if (card == NULL) 229 229 return -ENOMEM; 230 230 acard = (struct snd_gusextreme *)card->private_data; 231 231 232 gf1_irq = snd_gf1_irq[dev];233 if ( gf1_irq == SNDRV_AUTO_IRQ) {234 if (( gf1_irq = snd_legacy_find_free_irq(possible_gf1_irqs)) < 0) {232 xgf1_irq = gf1_irq[dev]; 233 if (xgf1_irq == SNDRV_AUTO_IRQ) { 234 if ((xgf1_irq = snd_legacy_find_free_irq(possible_gf1_irqs)) < 0) { 235 235 snd_card_free(card); 236 236 snd_printk("unable to find a free IRQ for GF1\n"); … … 238 238 } 239 239 } 240 ess_irq = snd_irq[dev];241 if ( ess_irq == SNDRV_AUTO_IRQ) {242 if (( ess_irq = snd_legacy_find_free_irq(possible_ess_irqs)) < 0) {240 xess_irq = irq[dev]; 241 if (xess_irq == SNDRV_AUTO_IRQ) { 242 if ((xess_irq = snd_legacy_find_free_irq(possible_ess_irqs)) < 0) { 243 243 snd_card_free(card); 244 244 snd_printk("unable to find a free IRQ for ES1688\n"); … … 246 246 } 247 247 } 248 if ( snd_mpu_port[dev] == SNDRV_AUTO_PORT)249 snd_mpu_port[dev] = 0;250 mpu_irq = snd_mpu_irq[dev];251 if ( mpu_irq > 15)252 mpu_irq = -1;253 gf1_dma = snd_dma1[dev];254 if ( gf1_dma == SNDRV_AUTO_DMA) {255 if (( gf1_dma = snd_legacy_find_free_dma(possible_gf1_dmas)) < 0) {248 if (mpu_port[dev] == SNDRV_AUTO_PORT) 249 mpu_port[dev] = 0; 250 xmpu_irq = mpu_irq[dev]; 251 if (xmpu_irq > 15) 252 xmpu_irq = -1; 253 xgf1_dma = dma1[dev]; 254 if (xgf1_dma == SNDRV_AUTO_DMA) { 255 if ((xgf1_dma = snd_legacy_find_free_dma(possible_gf1_dmas)) < 0) { 256 256 snd_card_free(card); 257 257 snd_printk("unable to find a free DMA for GF1\n"); … … 259 259 } 260 260 } 261 ess_dma = snd_dma8[dev];262 if ( ess_dma == SNDRV_AUTO_DMA) {263 if (( ess_dma = snd_legacy_find_free_dma(possible_ess_dmas)) < 0) {261 xess_dma = dma8[dev]; 262 if (xess_dma == SNDRV_AUTO_DMA) { 263 if ((xess_dma = snd_legacy_find_free_dma(possible_ess_dmas)) < 0) { 264 264 snd_card_free(card); 265 265 snd_printk("unable to find a free DMA for ES1688\n"); … … 268 268 } 269 269 270 if ((err = snd_es1688_create(card, snd_port[dev], snd_mpu_port[dev],271 ess_irq, mpu_irq,ess_dma,270 if ((err = snd_es1688_create(card, port[dev], mpu_port[dev], 271 xess_irq, xmpu_irq, xess_dma, 272 272 ES1688_HW_1688, &es1688)) < 0) { 273 273 snd_card_free(card); 274 274 return err; 275 275 } 276 if ( snd_gf1_port[dev] < 0)277 snd_gf1_port[dev] = snd_port[dev] + 0x20;276 if (gf1_port[dev] < 0) 277 gf1_port[dev] = port[dev] + 0x20; 278 278 if ((err = snd_gus_create(card, 279 snd_gf1_port[dev],280 gf1_irq,281 gf1_dma,279 gf1_port[dev], 280 xgf1_irq, 281 xgf1_dma, 282 282 -1, 283 0, snd_channels[dev],284 snd_pcm_channels[dev], 0,283 0, channels[dev], 284 pcm_channels[dev], 0, 285 285 &gus)) < 0) { 286 286 snd_card_free(card); … … 310 310 } 311 311 snd_component_add(card, "ES1688"); 312 if ( snd_pcm_channels[dev] > 0) {312 if (pcm_channels[dev] > 0) { 313 313 if ((err = snd_gf1_pcm_new(gus, 1, 1, NULL)) < 0) { 314 314 snd_card_free(card); … … 338 338 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_ES1688, 339 339 es1688->mpu_port, 0, 340 mpu_irq,340 xmpu_irq, 341 341 SA_INTERRUPT, 342 342 NULL)) < 0) { … … 347 347 348 348 sprintf(card->longname, "Gravis UltraSound Extreme at 0x%lx, irq %i&%i, dma %i&%i", 349 es1688->port, gf1_irq, ess_irq, gf1_dma,ess_dma);349 es1688->port, xgf1_irq, xess_irq, xgf1_dma, xess_dma); 350 350 if ((err = snd_card_register(card)) < 0) { 351 351 snd_card_free(card); … … 356 356 } 357 357 358 static int __init snd_gusextreme_legacy_auto_probe(unsigned long port)358 static int __init snd_gusextreme_legacy_auto_probe(unsigned long xport) 359 359 { 360 360 static int dev; … … 362 362 363 363 for ( ; dev < SNDRV_CARDS; dev++) { 364 if (! snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)364 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 365 365 continue; 366 snd_port[dev] =port;366 port[dev] = xport; 367 367 res = snd_gusextreme_probe(dev); 368 368 if (res < 0) 369 snd_port[dev] = SNDRV_AUTO_PORT;369 port[dev] = SNDRV_AUTO_PORT; 370 370 return res; 371 371 } … … 378 378 int dev, cards; 379 379 380 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev] > 0; dev++) {381 if ( snd_port[dev] == SNDRV_AUTO_PORT)380 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev] > 0; dev++) { 381 if (port[dev] == SNDRV_AUTO_PORT) 382 382 continue; 383 383 if (snd_gusextreme_probe(dev) >= 0) … … 414 414 #ifndef MODULE 415 415 416 /* format is: snd-gusextreme= snd_enable,snd_index,snd_id,417 snd_port,snd_gf1_port,snd_mpu_port,418 snd_irq,snd_gf1_irq,snd_mpu_irq,419 snd_dma8,snd_dma1,420 snd_joystick_dac,421 snd_channels,snd_pcm_channels */416 /* format is: snd-gusextreme=enable,index,id, 417 port,gf1_port,mpu_port, 418 irq,gf1_irq,mpu_irq, 419 dma8,dma1, 420 joystick_dac, 421 channels,pcm_channels */ 422 422 423 423 static int __init alsa_card_gusextreme_setup(char *str) … … 427 427 if (nr_dev >= SNDRV_CARDS) 428 428 return 0; 429 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&430 get_option(&str,& snd_index[nr_dev]) == 2 &&431 get_id(&str,& snd_id[nr_dev]) == 2 &&432 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&433 get_option(&str,(int *)& snd_gf1_port[nr_dev]) == 2 &&434 get_option(&str,(int *)& snd_mpu_port[nr_dev]) == 2 &&435 get_option(&str,& snd_irq[nr_dev]) == 2 &&436 get_option(&str,& snd_gf1_irq[nr_dev]) == 2 &&437 get_option(&str,& snd_mpu_irq[nr_dev]) == 2 &&438 get_option(&str,& snd_dma8[nr_dev]) == 2 &&439 get_option(&str,& snd_dma1[nr_dev]) == 2);429 (void)(get_option(&str,&enable[nr_dev]) == 2 && 430 get_option(&str,&index[nr_dev]) == 2 && 431 get_id(&str,&id[nr_dev]) == 2 && 432 get_option(&str,(int *)&port[nr_dev]) == 2 && 433 get_option(&str,(int *)&gf1_port[nr_dev]) == 2 && 434 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 435 get_option(&str,&irq[nr_dev]) == 2 && 436 get_option(&str,&gf1_irq[nr_dev]) == 2 && 437 get_option(&str,&mpu_irq[nr_dev]) == 2 && 438 get_option(&str,&dma8[nr_dev]) == 2 && 439 get_option(&str,&dma1[nr_dev]) == 2); 440 440 nr_dev++; 441 441 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/gus/gusmax.c ¶
r207 r212 40 40 MODULE_DEVICES("{{Gravis,UltraSound MAX}}"); 41 41 42 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */43 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */44 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */45 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x230,0x240,0x250,0x260 */46 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */47 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */48 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */42 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 43 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 44 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 45 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x230,0x240,0x250,0x260 */ 46 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */ 47 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */ 48 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */ 49 49 #ifdef TARGET_OS2 50 static int snd_joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)};50 static int joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)}; 51 51 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 52 static int snd_channels[SNDRV_CARDS] = {REPEAT_SNDRV(24)};53 static int snd_pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)};52 static int channels[SNDRV_CARDS] = {REPEAT_SNDRV(24)}; 53 static int pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)}; 54 54 #else 55 static int snd_joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};55 static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29}; 56 56 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 57 static int snd_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24};58 static int snd_pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};57 static int channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 24}; 58 static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2}; 59 59 #endif 60 60 61 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");62 MODULE_PARM_DESC( snd_index, "Index value for GUS MAX soundcard.");63 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);64 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");65 MODULE_PARM_DESC( snd_id, "ID string for GUS MAX soundcard.");66 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);67 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");68 MODULE_PARM_DESC( snd_enable, "Enable GUS MAX soundcard.");69 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);70 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");71 MODULE_PARM_DESC( snd_port, "Port # for GUS MAX driver.");72 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0x220},{0x230},{0x240},{0x250},{0x260}},dialog:list");73 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");74 MODULE_PARM_DESC( snd_irq, "IRQ # for GUS MAX driver.");75 MODULE_PARM_SYNTAX( snd_irq, SNDRV_ENABLED ",allows:{{3},{5},{9},{11},{12},{15}},dialog:list");76 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");77 MODULE_PARM_DESC( snd_dma1, "DMA1 # for GUS MAX driver.");78 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);79 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");80 MODULE_PARM_DESC( snd_dma2, "DMA2 # for GUS MAX driver.");81 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);82 MODULE_PARM( snd_joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i");83 MODULE_PARM_DESC( snd_joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS MAX driver.");84 MODULE_PARM_SYNTAX( snd_joystick_dac, SNDRV_ENABLED ",allows:{{0,31}}");85 MODULE_PARM( snd_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");86 MODULE_PARM_DESC( snd_channels, "Used GF1 channels for GUS MAX driver.");87 MODULE_PARM_SYNTAX( snd_channels, SNDRV_ENABLED ",allows:{{14,32}}");88 MODULE_PARM( snd_pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");89 MODULE_PARM_DESC( snd_pcm_channels, "Reserved PCM channels for GUS MAX driver.");90 MODULE_PARM_SYNTAX( snd_pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}");61 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 62 MODULE_PARM_DESC(index, "Index value for GUS MAX soundcard."); 63 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 64 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 65 MODULE_PARM_DESC(id, "ID string for GUS MAX soundcard."); 66 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 67 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 68 MODULE_PARM_DESC(enable, "Enable GUS MAX soundcard."); 69 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 70 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 71 MODULE_PARM_DESC(port, "Port # for GUS MAX driver."); 72 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0x220},{0x230},{0x240},{0x250},{0x260}},dialog:list"); 73 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 74 MODULE_PARM_DESC(irq, "IRQ # for GUS MAX driver."); 75 MODULE_PARM_SYNTAX(irq, SNDRV_ENABLED ",allows:{{3},{5},{9},{11},{12},{15}},dialog:list"); 76 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 77 MODULE_PARM_DESC(dma1, "DMA1 # for GUS MAX driver."); 78 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 79 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 80 MODULE_PARM_DESC(dma2, "DMA2 # for GUS MAX driver."); 81 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 82 MODULE_PARM(joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 83 MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for GUS MAX driver."); 84 MODULE_PARM_SYNTAX(joystick_dac, SNDRV_ENABLED ",allows:{{0,31}}"); 85 MODULE_PARM(channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 86 MODULE_PARM_DESC(channels, "Used GF1 channels for GUS MAX driver."); 87 MODULE_PARM_SYNTAX(channels, SNDRV_ENABLED ",allows:{{14,32}}"); 88 MODULE_PARM(pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 89 MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for GUS MAX driver."); 90 MODULE_PARM_SYNTAX(pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}"); 91 91 92 92 struct snd_gusmax { … … 159 159 gus->equal_irq = 1; 160 160 gus->codec_flag = 1; 161 gus->joystick_dac = snd_joystick_dac[dev];161 gus->joystick_dac = joystick_dac[dev]; 162 162 /* init control register */ 163 163 gus->max_cntrl_val = (gus->gf1.port >> 4) & 0x0f; … … 236 236 static int possible_irqs[] = {5, 11, 12, 9, 7, 15, 3, -1}; 237 237 static int possible_dmas[] = {5, 6, 7, 1, 3, -1}; 238 int irq, dma1,dma2, err;238 int xirq, xdma1, xdma2, err; 239 239 snd_card_t *card; 240 240 snd_gus_card_t *gus = NULL; … … 242 242 struct snd_gusmax *maxcard; 243 243 244 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,244 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 245 245 sizeof(struct snd_gusmax)); 246 246 if (card == NULL) … … 251 251 maxcard->irq = -1; 252 252 253 irq = snd_irq[dev];254 if ( irq == SNDRV_AUTO_IRQ) {255 if (( irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {253 xirq = irq[dev]; 254 if (xirq == SNDRV_AUTO_IRQ) { 255 if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) { 256 256 snd_card_free(card); 257 257 snd_printk("unable to find a free IRQ\n"); … … 259 259 } 260 260 } 261 dma1 = snd_dma1[dev];262 if ( dma1 == SNDRV_AUTO_DMA) {263 if (( dma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) {261 xdma1 = dma1[dev]; 262 if (xdma1 == SNDRV_AUTO_DMA) { 263 if ((xdma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 264 264 snd_card_free(card); 265 265 snd_printk("unable to find a free DMA1\n"); … … 267 267 } 268 268 } 269 dma2 = snd_dma2[dev];270 if ( dma2 == SNDRV_AUTO_DMA) {271 if (( dma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) {269 xdma2 = dma2[dev]; 270 if (xdma2 == SNDRV_AUTO_DMA) { 271 if ((xdma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 272 272 snd_card_free(card); 273 273 snd_printk("unable to find a free DMA2\n"); … … 277 277 278 278 if ((err = snd_gus_create(card, 279 snd_port[dev],280 - irq, dma1,dma2,281 0, snd_channels[dev],282 snd_pcm_channels[dev],279 port[dev], 280 -xirq, xdma1, xdma2, 281 0, channels[dev], 282 pcm_channels[dev], 283 283 0, &gus)) < 0) { 284 284 snd_card_free(card); … … 302 302 } 303 303 304 if (request_irq( irq, snd_gusmax_interrupt, SA_INTERRUPT, "GUS MAX", (void *)maxcard)) {305 snd_card_free(card); 306 printk(KERN_ERR "gusmax: unable to grab IRQ %d\n", irq);304 if (request_irq(xirq, snd_gusmax_interrupt, SA_INTERRUPT, "GUS MAX", (void *)maxcard)) { 305 snd_card_free(card); 306 printk(KERN_ERR "gusmax: unable to grab IRQ %d\n", xirq); 307 307 return -EBUSY; 308 308 } 309 maxcard->irq = irq;309 maxcard->irq = xirq; 310 310 311 311 if ((err = snd_cs4231_create(card, 312 gus->gf1.port + 0x10c, -1, irq,313 dma2 < 0 ? dma1 : dma2,dma1,312 gus->gf1.port + 0x10c, -1, xirq, 313 xdma2 < 0 ? xdma1 : xdma2, xdma1, 314 314 CS4231_HW_DETECT, 315 315 CS4231_HWSHARE_IRQ | … … 332 332 return err; 333 333 } 334 if ( snd_pcm_channels[dev] > 0) {334 if (pcm_channels[dev] > 0) { 335 335 if ((err = snd_gf1_pcm_new(gus, 1, 1, NULL)) < 0) { 336 336 snd_card_free(card); … … 348 348 } 349 349 350 sprintf(card->longname + strlen(card->longname), " at 0x%lx, irq %i, dma %i", gus->gf1.port, irq,dma1);351 if ( dma2 >= 0)352 sprintf(card->longname + strlen(card->longname), "&%i", dma2);350 sprintf(card->longname + strlen(card->longname), " at 0x%lx, irq %i, dma %i", gus->gf1.port, xirq, xdma1); 351 if (xdma2 >= 0) 352 sprintf(card->longname + strlen(card->longname), "&%i", xdma2); 353 353 if ((err = snd_card_register(card)) < 0) { 354 354 snd_card_free(card); … … 362 362 } 363 363 364 static int __init snd_gusmax_legacy_auto_probe(unsigned long port)364 static int __init snd_gusmax_legacy_auto_probe(unsigned long xport) 365 365 { 366 366 static int dev; … … 368 368 369 369 for ( ; dev < SNDRV_CARDS; dev++) { 370 if (! snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)370 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 371 371 continue; 372 snd_port[dev] =port;372 port[dev] = xport; 373 373 res = snd_gusmax_probe(dev); 374 374 if (res < 0) 375 snd_port[dev] = SNDRV_AUTO_PORT;375 port[dev] = SNDRV_AUTO_PORT; 376 376 return res; 377 377 } … … 384 384 int dev, cards; 385 385 386 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev] > 0; dev++) {387 if ( snd_port[dev] == SNDRV_AUTO_PORT)386 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev] > 0; dev++) { 387 if (port[dev] == SNDRV_AUTO_PORT) 388 388 continue; 389 389 if (snd_gusmax_probe(dev) >= 0) … … 413 413 #ifndef MODULE 414 414 415 /* format is: snd-gusmax= snd_enable,snd_index,snd_id,416 snd_port,snd_irq,417 snd_dma1,snd_dma2,418 snd_joystick_dac,419 snd_channels,snd_pcm_channels */415 /* format is: snd-gusmax=enable,index,id, 416 port,irq, 417 dma1,dma2, 418 joystick_dac, 419 channels,pcm_channels */ 420 420 421 421 static int __init alsa_card_gusmax_setup(char *str) … … 425 425 if (nr_dev >= SNDRV_CARDS) 426 426 return 0; 427 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&428 get_option(&str,& snd_index[nr_dev]) == 2 &&429 get_id(&str,& snd_id[nr_dev]) == 2 &&430 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&431 get_option(&str,& snd_irq[nr_dev]) == 2 &&432 get_option(&str,& snd_dma1[nr_dev]) == 2 &&433 get_option(&str,& snd_dma2[nr_dev]) == 2 &&434 get_option(&str,& snd_joystick_dac[nr_dev]) == 2 &&435 get_option(&str,& snd_channels[nr_dev]) == 2 &&436 get_option(&str,& snd_pcm_channels[nr_dev]) == 2);427 (void)(get_option(&str,&enable[nr_dev]) == 2 && 428 get_option(&str,&index[nr_dev]) == 2 && 429 get_id(&str,&id[nr_dev]) == 2 && 430 get_option(&str,(int *)&port[nr_dev]) == 2 && 431 get_option(&str,&irq[nr_dev]) == 2 && 432 get_option(&str,&dma1[nr_dev]) == 2 && 433 get_option(&str,&dma2[nr_dev]) == 2 && 434 get_option(&str,&joystick_dac[nr_dev]) == 2 && 435 get_option(&str,&channels[nr_dev]) == 2 && 436 get_option(&str,&pcm_channels[nr_dev]) == 2); 437 437 nr_dev++; 438 438 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/gus/interwave.c ¶
r207 r212 60 60 #endif 61 61 62 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */63 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */64 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */62 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 63 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 64 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 65 65 #ifdef __ISAPNP__ 66 66 #ifdef TARGET_OS2 67 static int snd_isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1};68 #else 69 static int snd_isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};70 #endif 71 #endif 72 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x210,0x220,0x230,0x240,0x250,0x260 */73 #ifdef SNDRV_STB 74 static long snd_port_tc[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x350,0x360,0x370,0x380 */75 #endif 76 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */77 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */78 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */67 static int isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1}; 68 #else 69 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 70 #endif 71 #endif 72 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x210,0x220,0x230,0x240,0x250,0x260 */ 73 #ifdef SNDRV_STB 74 static long port_tc[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x350,0x360,0x370,0x380 */ 75 #endif 76 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,3,5,9,11,12,15 */ 77 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 78 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 79 79 #ifdef TARGET_OS2 80 static int snd_joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)};80 static int joystick_dac[SNDRV_CARDS] = {REPEAT_SNDRV(29)}; 81 81 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 82 static int snd_midi[SNDRV_CARDS] = {REPEAT_SNDRV(0)};83 static int snd_pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)};84 static int snd_effect[SNDRV_CARDS] = {REPEAT_SNDRV(0)};85 #else 86 static int snd_joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29};82 static int midi[SNDRV_CARDS] = {REPEAT_SNDRV(0)}; 83 static int pcm_channels[SNDRV_CARDS] = {REPEAT_SNDRV(2)}; 84 static int effect[SNDRV_CARDS] = {REPEAT_SNDRV(0)}; 85 #else 86 static int joystick_dac[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 29}; 87 87 /* 0 to 31, (0.59V-4.52V or 0.389V-2.98V) */ 88 static int snd_midi[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};89 static int snd_pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};90 static int snd_effect[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};91 #endif 92 93 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");94 MODULE_PARM_DESC( snd_index, "Index value for InterWave soundcard.");95 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);96 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");97 MODULE_PARM_DESC( snd_id, "ID string for InterWave soundcard.");98 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);99 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");100 MODULE_PARM_DESC( snd_enable, "Enable InterWave soundcard.");101 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);102 MODULE_PARM( snd_isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");103 MODULE_PARM_DESC( snd_isapnp, "ISA PnP detection for specified soundcard.");104 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);105 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");106 MODULE_PARM_DESC( snd_port, "Port # for InterWave driver.");107 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0x210,0x260,0x10}},dialog:list");108 #ifdef SNDRV_STB 109 MODULE_PARM( snd_port_tc, "1-" __MODULE_STRING(SNDRV_CARDS) "l");110 MODULE_PARM_DESC( snd_port_tc, "Tone control (TEA6330T - i2c bus) port # for InterWave driver.");111 MODULE_PARM_SYNTAX( snd_port_tc, SNDRV_ENABLED ",allows:{{0x350,0x380,0x10}},dialog:list");112 #endif 113 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");114 MODULE_PARM_DESC( snd_irq, "IRQ # for InterWave driver.");115 MODULE_PARM_SYNTAX( snd_irq, SNDRV_ENABLED ",allows:{{3},{5},{9},{11},{12},{15}},dialog:list");116 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");117 MODULE_PARM_DESC( snd_dma1, "DMA1 # for InterWave driver.");118 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);119 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");120 MODULE_PARM_DESC( snd_dma2, "DMA2 # for InterWave driver.");121 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);122 MODULE_PARM( snd_joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i");123 MODULE_PARM_DESC( snd_joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for InterWave driver.");88 static int midi[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0}; 89 static int pcm_channels[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2}; 90 static int effect[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0}; 91 #endif 92 93 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 94 MODULE_PARM_DESC(index, "Index value for InterWave soundcard."); 95 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 96 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 97 MODULE_PARM_DESC(id, "ID string for InterWave soundcard."); 98 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 99 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 100 MODULE_PARM_DESC(enable, "Enable InterWave soundcard."); 101 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 102 MODULE_PARM(isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 103 MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard."); 104 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 105 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 106 MODULE_PARM_DESC(port, "Port # for InterWave driver."); 107 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0x210,0x260,0x10}},dialog:list"); 108 #ifdef SNDRV_STB 109 MODULE_PARM(port_tc, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 110 MODULE_PARM_DESC(port_tc, "Tone control (TEA6330T - i2c bus) port # for InterWave driver."); 111 MODULE_PARM_SYNTAX(port_tc, SNDRV_ENABLED ",allows:{{0x350,0x380,0x10}},dialog:list"); 112 #endif 113 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 114 MODULE_PARM_DESC(irq, "IRQ # for InterWave driver."); 115 MODULE_PARM_SYNTAX(irq, SNDRV_ENABLED ",allows:{{3},{5},{9},{11},{12},{15}},dialog:list"); 116 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 117 MODULE_PARM_DESC(dma1, "DMA1 # for InterWave driver."); 118 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 119 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 120 MODULE_PARM_DESC(dma2, "DMA2 # for InterWave driver."); 121 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 122 MODULE_PARM(joystick_dac, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 123 MODULE_PARM_DESC(joystick_dac, "Joystick DAC level 0.59V-4.52V or 0.389V-2.98V for InterWave driver."); 124 124 MODULE_PARM_SYNTAX(snd_joystic_dac, SNDRV_ENABLED ",allows:{{0,31}}"); 125 MODULE_PARM( snd_midi, "1-" __MODULE_STRING(SNDRV_CARDS) "i");126 MODULE_PARM_DESC( snd_midi, "MIDI UART enable for InterWave driver.");127 MODULE_PARM_SYNTAX( snd_midi, SNDRV_ENABLED "," SNDRV_ENABLE_DESC);128 MODULE_PARM( snd_pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i");129 MODULE_PARM_DESC( snd_pcm_channels, "Reserved PCM channels for InterWave driver.");130 MODULE_PARM_SYNTAX( snd_pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}");131 MODULE_PARM( snd_effect, "1-" __MODULE_STRING(SNDRV_CARDS) "i");132 MODULE_PARM_DESC( snd_effect, "Effects enable for InterWave driver.");133 MODULE_PARM_SYNTAX( snd_effect, SNDRV_ENABLED "," SNDRV_ENABLE_DESC);125 MODULE_PARM(midi, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 126 MODULE_PARM_DESC(midi, "MIDI UART enable for InterWave driver."); 127 MODULE_PARM_SYNTAX(midi, SNDRV_ENABLED "," SNDRV_ENABLE_DESC); 128 MODULE_PARM(pcm_channels, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 129 MODULE_PARM_DESC(pcm_channels, "Reserved PCM channels for InterWave driver."); 130 MODULE_PARM_SYNTAX(pcm_channels, SNDRV_ENABLED ",allows:{{2,16}}"); 131 MODULE_PARM(effect, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 132 MODULE_PARM_DESC(effect, "Effects enable for InterWave driver."); 133 MODULE_PARM_SYNTAX(effect, SNDRV_ENABLED "," SNDRV_ENABLE_DESC); 134 134 135 135 struct snd_interwave { … … 248 248 249 249 static snd_i2c_bit_ops_t snd_interwave_i2c_bit_ops = { 250 setlines:snd_interwave_i2c_setlines,251 getclock:snd_interwave_i2c_getclockline,252 getdata:snd_interwave_i2c_getdataline,250 .setlines = snd_interwave_i2c_setlines, 251 .getclock = snd_interwave_i2c_getclockline, 252 .getdata = snd_interwave_i2c_getdataline, 253 253 }; 254 254 … … 264 264 265 265 *rbus = NULL; 266 port = snd_port_tc[dev];266 port = port_tc[dev]; 267 267 if (port == SNDRV_AUTO_PORT) { 268 268 port = 0x350; … … 554 554 gus->interwave = 1; 555 555 gus->max_flag = 1; 556 gus->joystick_dac = snd_joystick_dac[dev];556 gus->joystick_dac = joystick_dac[dev]; 557 557 558 558 } … … 638 638 if (pdev->prepare(pdev)<0) 639 639 return -EAGAIN; 640 if ( snd_port[dev] != SNDRV_AUTO_PORT) {641 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 16);642 isapnp_resource_change(&pdev->resource[1], snd_port[dev] + 0x100, 12);643 isapnp_resource_change(&pdev->resource[2], snd_port[dev] + 0x10c, 4);644 } 645 if ( snd_dma1[dev] != SNDRV_AUTO_DMA)646 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1[dev], 1);647 if ( snd_dma2[dev] != SNDRV_AUTO_DMA)648 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2[dev], 1);649 if ( snd_dma2[dev] < 0)640 if (port[dev] != SNDRV_AUTO_PORT) { 641 isapnp_resource_change(&pdev->resource[0], port[dev], 16); 642 isapnp_resource_change(&pdev->resource[1], port[dev] + 0x100, 12); 643 isapnp_resource_change(&pdev->resource[2], port[dev] + 0x10c, 4); 644 } 645 if (dma1[dev] != SNDRV_AUTO_DMA) 646 isapnp_resource_change(&pdev->dma_resource[0], dma1[dev], 1); 647 if (dma2[dev] != SNDRV_AUTO_DMA) 648 isapnp_resource_change(&pdev->dma_resource[1], dma2[dev], 1); 649 if (dma2[dev] < 0) 650 650 isapnp_resource_change(&pdev->dma_resource[1], 4, 1); 651 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)652 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);651 if (irq[dev] != SNDRV_AUTO_IRQ) 652 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 653 653 if (pdev->activate(pdev)<0) { 654 654 snd_printk("isapnp configure failure (out of resources?)\n"); … … 661 661 return -ENOENT; 662 662 } 663 snd_port[dev] = pdev->resource[0].start;664 snd_dma1[dev] = pdev->dma_resource[0].start;665 if ( snd_dma2[dev] >= 0)666 snd_dma2[dev] = pdev->dma_resource[1].start;667 snd_irq[dev] = pdev->irq_resource[0].start;663 port[dev] = pdev->resource[0].start; 664 dma1[dev] = pdev->dma_resource[0].start; 665 if (dma2[dev] >= 0) 666 dma2[dev] = pdev->dma_resource[1].start; 667 irq[dev] = pdev->irq_resource[0].start; 668 668 snd_printdd("isapnp IW: sb port=0x%lx, gf1 port=0x%lx, codec port=0x%lx\n", 669 669 pdev->resource[0].start, 670 670 pdev->resource[1].start, 671 671 pdev->resource[2].start); 672 snd_printdd("isapnp IW: dma1=%i, dma2=%i, irq=%i\n", snd_dma1[dev], snd_dma2[dev], snd_irq[dev]);672 snd_printdd("isapnp IW: dma1=%i, dma2=%i, irq=%i\n", dma1[dev], dma2[dev], irq[dev]); 673 673 #ifdef SNDRV_STB 674 674 /* Tone Control initialization */ … … 678 678 return -EAGAIN; 679 679 } 680 if ( snd_port_tc[dev] != SNDRV_AUTO_PORT)681 isapnp_resource_change(&pdev->resource[0], snd_port_tc[dev], 1);680 if (port_tc[dev] != SNDRV_AUTO_PORT) 681 isapnp_resource_change(&pdev->resource[0], port_tc[dev], 1); 682 682 if (pdev->activate(pdev)<0) { 683 683 snd_printk("Tone Control isapnp configure failure (out of resources?)\n"); … … 685 685 return -EBUSY; 686 686 } 687 snd_port_tc[dev] = pdev->resource[0].start;688 snd_printdd("isapnp IW: tone control port=0x%lx\n", snd_port_tc[dev]);687 port_tc[dev] = pdev->resource[0].start; 688 snd_printdd("isapnp IW: tone control port=0x%lx\n", port_tc[dev]); 689 689 #endif 690 690 return 0; … … 730 730 static int possible_irqs[] = {5, 11, 12, 9, 7, 15, 3, -1}; 731 731 static int possible_dmas[] = {0, 1, 3, 5, 6, 7, -1}; 732 int irq, dma1,dma2;732 int xirq, xdma1, xdma2; 733 733 snd_card_t *card; 734 734 struct snd_interwave *iwcard; … … 742 742 int err; 743 743 744 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,744 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 745 745 sizeof(struct snd_interwave)); 746 746 if (card == NULL) … … 751 751 card->private_free = snd_interwave_free; 752 752 #ifdef __ISAPNP__ 753 if ( snd_isapnp[dev] && snd_interwave_isapnp(dev, iwcard)) {753 if (isapnp[dev] && snd_interwave_isapnp(dev, iwcard)) { 754 754 snd_card_free(card); 755 755 return -ENODEV; 756 756 } 757 757 #endif 758 irq = snd_irq[dev];759 if ( irq == SNDRV_AUTO_IRQ) {760 if (( irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {758 xirq = irq[dev]; 759 if (xirq == SNDRV_AUTO_IRQ) { 760 if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) { 761 761 snd_card_free(card); 762 762 snd_printk("unable to find a free IRQ\n"); … … 764 764 } 765 765 } 766 dma1 = snd_dma1[dev];767 if ( dma1 == SNDRV_AUTO_DMA) {768 if (( dma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) {766 xdma1 = dma1[dev]; 767 if (xdma1 == SNDRV_AUTO_DMA) { 768 if ((xdma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 769 769 snd_card_free(card); 770 770 snd_printk("unable to find a free DMA1\n"); … … 772 772 } 773 773 } 774 dma2 = snd_dma2[dev];775 if ( dma2 == SNDRV_AUTO_DMA) {776 if (( dma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) {774 xdma2 = dma2[dev]; 775 if (xdma2 == SNDRV_AUTO_DMA) { 776 if ((xdma2 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 777 777 snd_card_free(card); 778 778 snd_printk("unable to find a free DMA2\n"); … … 782 782 783 783 if ((err = snd_gus_create(card, 784 snd_port[dev],785 - irq, dma1,dma2,784 port[dev], 785 -xirq, xdma1, xdma2, 786 786 0, 32, 787 snd_pcm_channels[dev], snd_effect[dev], &gus)) < 0) {787 pcm_channels[dev], effect[dev], &gus)) < 0) { 788 788 snd_card_free(card); 789 789 return err; … … 807 807 } 808 808 809 if (request_irq( irq, snd_interwave_interrupt, SA_INTERRUPT, "InterWave", (void *)iwcard)) {809 if (request_irq(xirq, snd_interwave_interrupt, SA_INTERRUPT, "InterWave", (void *)iwcard)) { 810 810 snd_card_free(card); 811 811 snd_printk("unable to grab IRQ %d\n", irq); 812 812 return -EBUSY; 813 813 } 814 iwcard->irq = irq;814 iwcard->irq = xirq; 815 815 816 816 if ((err = snd_cs4231_create(card, 817 gus->gf1.port + 0x10c, -1, irq,818 dma2 < 0 ? dma1 : dma2,dma1,817 gus->gf1.port + 0x10c, -1, xirq, 818 xdma2 < 0 ? xdma1 : xdma2, xdma1, 819 819 CS4231_HW_INTERWAVE, 820 820 CS4231_HWSHARE_IRQ | … … 839 839 return err; 840 840 } 841 if ( snd_pcm_channels[dev] > 0) {841 if (pcm_channels[dev] > 0) { 842 842 if ((err = snd_gf1_pcm_new(gus, 1, 1, NULL)) < 0) { 843 843 snd_card_free(card); … … 875 875 #endif 876 876 877 gus->uart_enable = snd_midi[dev];877 gus->uart_enable = midi[dev]; 878 878 if ((err = snd_gf1_rawmidi_new(gus, 0, NULL)) < 0) { 879 879 snd_card_free(card); … … 893 893 str, 894 894 gus->gf1.port, 895 irq,896 dma1);897 if ( dma2 >= 0)898 sprintf(card->longname + strlen(card->longname), "&%d", dma2);895 xirq, 896 xdma1); 897 if (xdma2 >= 0) 898 sprintf(card->longname + strlen(card->longname), "&%d", xdma2); 899 899 900 900 if ((err = snd_card_register(card)) < 0) { … … 909 909 } 910 910 911 static int __init snd_interwave_probe_legacy_port(unsigned long port)911 static int __init snd_interwave_probe_legacy_port(unsigned long xport) 912 912 { 913 913 static int dev; … … 915 915 916 916 for ( ; dev < SNDRV_CARDS; dev++) { 917 if (! snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)917 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 918 918 continue; 919 919 #ifdef __ISAPNP__ 920 if ( snd_isapnp[dev])920 if (isapnp[dev]) 921 921 continue; 922 922 #endif 923 snd_port[dev] =port;923 port[dev] = xport; 924 924 res = snd_interwave_probe(dev); 925 925 if (res < 0) 926 snd_port[dev] = SNDRV_AUTO_PORT;926 port[dev] = SNDRV_AUTO_PORT; 927 927 return res; 928 928 } … … 939 939 940 940 for ( ; dev < SNDRV_CARDS; dev++) { 941 if (! snd_enable[dev] || !snd_isapnp[dev])941 if (!enable[dev] || !isapnp[dev]) 942 942 continue; 943 943 snd_interwave_isapnp_cards[dev] = card; … … 962 962 963 963 for (dev = 0; dev < SNDRV_CARDS; dev++) { 964 if (! snd_enable[dev] || snd_port[dev] == SNDRV_AUTO_PORT)964 if (!enable[dev] || port[dev] == SNDRV_AUTO_PORT) 965 965 continue; 966 966 #ifdef __ISAPNP__ 967 if ( snd_isapnp[dev])967 if (isapnp[dev]) 968 968 continue; 969 969 #endif … … 973 973 } 974 974 #ifdef MODULE 975 printk(KERN_ERR "InterWave soundcard #%i not found at 0x%lx or device busy\n", dev, snd_port[dev]);975 printk(KERN_ERR "InterWave soundcard #%i not found at 0x%lx or device busy\n", dev, port[dev]); 976 976 #endif 977 977 } … … 1005 1005 #ifndef MODULE 1006 1006 1007 /* format is: snd-interwave= snd_enable,snd_index,snd_id,snd_isapnp,1008 snd_port[,snd_port_tc],snd_irq,1009 snd_dma1,snd_dma2,1010 snd_joystick_dac,snd_midi,1011 snd_pcm_channels,snd_effect */1007 /* format is: snd-interwave=enable,index,id,isapnp, 1008 port[,port_tc],irq, 1009 dma1,dma2, 1010 joystick_dac,midi, 1011 pcm_channels,effect */ 1012 1012 1013 1013 static int __init alsa_card_interwave_setup(char *str) … … 1018 1018 if (nr_dev >= SNDRV_CARDS) 1019 1019 return 0; 1020 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&1021 get_option(&str,& snd_index[nr_dev]) == 2 &&1022 get_id(&str,& snd_id[nr_dev]) == 2 &&1020 (void)(get_option(&str,&enable[nr_dev]) == 2 && 1021 get_option(&str,&index[nr_dev]) == 2 && 1022 get_id(&str,&id[nr_dev]) == 2 && 1023 1023 get_option(&str,&pnp) == 2 && 1024 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&1025 #ifdef SNDRV_STB 1026 get_option(&str,(int *)& snd_port_tc[nr_dev]) == 2 &&1027 #endif 1028 get_option(&str,& snd_irq[nr_dev]) == 2 &&1029 get_option(&str,& snd_dma1[nr_dev]) == 2 &&1030 get_option(&str,& snd_dma2[nr_dev]) == 2 &&1031 get_option(&str,& snd_joystick_dac[nr_dev]) == 2 &&1032 get_option(&str,& snd_midi[nr_dev]) == 2 &&1033 get_option(&str,& snd_pcm_channels[nr_dev]) == 2 &&1034 get_option(&str,& snd_effect[nr_dev]) == 2);1024 get_option(&str,(int *)&port[nr_dev]) == 2 && 1025 #ifdef SNDRV_STB 1026 get_option(&str,(int *)&port_tc[nr_dev]) == 2 && 1027 #endif 1028 get_option(&str,&irq[nr_dev]) == 2 && 1029 get_option(&str,&dma1[nr_dev]) == 2 && 1030 get_option(&str,&dma2[nr_dev]) == 2 && 1031 get_option(&str,&joystick_dac[nr_dev]) == 2 && 1032 get_option(&str,&midi[nr_dev]) == 2 && 1033 get_option(&str,&pcm_channels[nr_dev]) == 2 && 1034 get_option(&str,&effect[nr_dev]) == 2); 1035 1035 #ifdef __ISAPNP__ 1036 1036 if (pnp != INT_MAX) 1037 snd_isapnp[nr_dev] = pnp;1037 isapnp[nr_dev] = pnp; 1038 1038 #endif 1039 1039 nr_dev++; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/opl3sa2.c ¶
r210 r212 47 47 "{NeoMagic,MagicWave 3DX}}"); 48 48 49 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */50 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */51 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */49 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 50 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 51 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 52 52 #ifdef __ISAPNP__ 53 53 #ifdef TARGET_OS2 54 static int snd_isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1};54 static int isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1}; 55 55 #else 56 static int snd_isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};57 #endif 58 #endif 59 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0xf86,0x370,0x100 */60 static long s nd_sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */61 static long snd_wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x530,0xe80,0xf40,0x604 */62 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x388 */63 static long snd_midi_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x330,0x300 */64 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 0,1,3,5,9,11,12,15 */65 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */66 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */56 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 57 #endif 58 #endif 59 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0xf86,0x370,0x100 */ 60 static long sb_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */ 61 static long wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x530,0xe80,0xf40,0x604 */ 62 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x388 */ 63 static long midi_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;/* 0x330,0x300 */ 64 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 0,1,3,5,9,11,12,15 */ 65 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */ 66 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3,5,6,7 */ 67 67 #ifdef TARGET_OS2 68 static int snd_opl3sa3_ymode[SNDRV_CARDS] = { 0,0,0,0,0,0,0,0 }; /* 0,1,2,3 */ /*SL Added*/68 static int opl3sa3_ymode[SNDRV_CARDS] = { 0,0,0,0,0,0,0,0 }; /* 0,1,2,3 */ /*SL Added*/ 69 69 #else 70 static int snd_opl3sa3_ymode[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0 }; /* 0,1,2,3 */ /*SL Added*/71 #endif 72 73 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");74 MODULE_PARM_DESC( snd_index, "Index value for OPL3-SA soundcard.");75 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);76 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");77 MODULE_PARM_DESC( snd_id, "ID string for OPL3-SA soundcard.");78 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);79 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");80 MODULE_PARM_DESC( snd_enable, "Enable OPL3-SA soundcard.");81 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);82 #ifdef __ISAPNP__ 83 MODULE_PARM( snd_isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");84 MODULE_PARM_DESC( snd_isapnp, "ISA PnP detection for specified soundcard.");85 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);86 #endif 87 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");88 MODULE_PARM_DESC( snd_port, "Port # for OPL3-SA driver.");89 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0xf86},{0x370},{0x100}},dialog:list");90 MODULE_PARM(s nd_sb_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");91 MODULE_PARM_DESC(s nd_sb_port, "SB port # for OPL3-SA driver.");92 MODULE_PARM_SYNTAX(s nd_sb_port, SNDRV_ENABLED ",allows:{{0x220},{0x240},{0x260}},dialog:list");93 MODULE_PARM( snd_wss_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");94 MODULE_PARM_DESC( snd_wss_port, "WSS port # for OPL3-SA driver.");95 MODULE_PARM_SYNTAX( snd_wss_port, SNDRV_ENABLED ",allows:{{0x530},{0xe80},{0xf40},{0x604}},dialog:list");96 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");97 MODULE_PARM_DESC( snd_fm_port, "FM port # for OPL3-SA driver.");98 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_ENABLED ",allows:{{0x388}},dialog:list");99 MODULE_PARM( snd_midi_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");100 MODULE_PARM_DESC( snd_midi_port, "MIDI port # for OPL3-SA driver.");101 MODULE_PARM_SYNTAX( snd_midi_port, SNDRV_ENABLED ",allows:{{0x330},{0x300}},dialog:list");102 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");103 MODULE_PARM_DESC( snd_irq, "IRQ # for OPL3-SA driver.");104 MODULE_PARM_SYNTAX( snd_irq, SNDRV_ENABLED ",allows:{{0},{1},{3},{5},{9},{11},{12},{15}},dialog:list");105 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");106 MODULE_PARM_DESC( snd_dma1, "DMA1 # for OPL3-SA driver.");107 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list");108 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");109 MODULE_PARM_DESC( snd_dma2, "DMA2 # for OPL3-SA driver.");110 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list");111 MODULE_PARM( snd_opl3sa3_ymode, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); /* SL Added */112 MODULE_PARM_DESC( snd_opl3sa3_ymode, "Speaker size selection for 3D Enhancement mode: Desktop/Large Notebook/Small Notebook/HiFi.");113 MODULE_PARM_SYNTAX( snd_opl3sa3_ymode, SNDRV_ENABLED ",allows:{{0,3}},dialog:list"); /* SL Added */70 static int opl3sa3_ymode[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0 }; /* 0,1,2,3 */ /*SL Added*/ 71 #endif 72 73 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 74 MODULE_PARM_DESC(index, "Index value for OPL3-SA soundcard."); 75 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 76 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 77 MODULE_PARM_DESC(id, "ID string for OPL3-SA soundcard."); 78 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 79 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 80 MODULE_PARM_DESC(enable, "Enable OPL3-SA soundcard."); 81 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 82 #ifdef __ISAPNP__ 83 MODULE_PARM(isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 84 MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard."); 85 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 86 #endif 87 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 88 MODULE_PARM_DESC(port, "Port # for OPL3-SA driver."); 89 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0xf86},{0x370},{0x100}},dialog:list"); 90 MODULE_PARM(sb_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 91 MODULE_PARM_DESC(sb_port, "SB port # for OPL3-SA driver."); 92 MODULE_PARM_SYNTAX(sb_port, SNDRV_ENABLED ",allows:{{0x220},{0x240},{0x260}},dialog:list"); 93 MODULE_PARM(wss_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 94 MODULE_PARM_DESC(wss_port, "WSS port # for OPL3-SA driver."); 95 MODULE_PARM_SYNTAX(wss_port, SNDRV_ENABLED ",allows:{{0x530},{0xe80},{0xf40},{0x604}},dialog:list"); 96 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 97 MODULE_PARM_DESC(fm_port, "FM port # for OPL3-SA driver."); 98 MODULE_PARM_SYNTAX(fm_port, SNDRV_ENABLED ",allows:{{0x388}},dialog:list"); 99 MODULE_PARM(midi_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 100 MODULE_PARM_DESC(midi_port, "MIDI port # for OPL3-SA driver."); 101 MODULE_PARM_SYNTAX(midi_port, SNDRV_ENABLED ",allows:{{0x330},{0x300}},dialog:list"); 102 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 103 MODULE_PARM_DESC(irq, "IRQ # for OPL3-SA driver."); 104 MODULE_PARM_SYNTAX(irq, SNDRV_ENABLED ",allows:{{0},{1},{3},{5},{9},{11},{12},{15}},dialog:list"); 105 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 106 MODULE_PARM_DESC(dma1, "DMA1 # for OPL3-SA driver."); 107 MODULE_PARM_SYNTAX(dma1, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list"); 108 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 109 MODULE_PARM_DESC(dma2, "DMA2 # for OPL3-SA driver."); 110 MODULE_PARM_SYNTAX(dma2, SNDRV_ENABLED ",allows:{{1},{3},{5},{6},{7}},dialog:list"); 111 MODULE_PARM(opl3sa3_ymode, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); /* SL Added */ 112 MODULE_PARM_DESC(opl3sa3_ymode, "Speaker size selection for 3D Enhancement mode: Desktop/Large Notebook/Small Notebook/HiFi."); 113 MODULE_PARM_SYNTAX(opl3sa3_ymode, SNDRV_ENABLED ",allows:{{0,3}},dialog:list"); /* SL Added */ 114 114 115 115 /* control ports */ … … 639 639 if (pdev->prepare(pdev)<0) 640 640 return -EAGAIN; 641 if (s nd_sb_port[dev] != SNDRV_AUTO_PORT)642 isapnp_resource_change(&pdev->resource[0], s nd_sb_port[dev], 16);643 if ( snd_wss_port[dev] != SNDRV_AUTO_PORT)644 isapnp_resource_change(&pdev->resource[1], snd_wss_port[dev], 8);645 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT)646 isapnp_resource_change(&pdev->resource[2], snd_fm_port[dev], 4);647 if ( snd_midi_port[dev] != SNDRV_AUTO_PORT)648 isapnp_resource_change(&pdev->resource[3], snd_midi_port[dev], 2);649 if ( snd_port[dev] != SNDRV_AUTO_PORT)650 isapnp_resource_change(&pdev->resource[4], snd_port[dev], 2);651 if ( snd_dma1[dev] != SNDRV_AUTO_DMA)652 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1[dev], 1);653 if ( snd_dma2[dev] != SNDRV_AUTO_DMA)654 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2[dev], 1);655 if ( snd_irq[dev] != SNDRV_AUTO_IRQ)656 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);641 if (sb_port[dev] != SNDRV_AUTO_PORT) 642 isapnp_resource_change(&pdev->resource[0], sb_port[dev], 16); 643 if (wss_port[dev] != SNDRV_AUTO_PORT) 644 isapnp_resource_change(&pdev->resource[1], wss_port[dev], 8); 645 if (fm_port[dev] != SNDRV_AUTO_PORT) 646 isapnp_resource_change(&pdev->resource[2], fm_port[dev], 4); 647 if (midi_port[dev] != SNDRV_AUTO_PORT) 648 isapnp_resource_change(&pdev->resource[3], midi_port[dev], 2); 649 if (port[dev] != SNDRV_AUTO_PORT) 650 isapnp_resource_change(&pdev->resource[4], port[dev], 2); 651 if (dma1[dev] != SNDRV_AUTO_DMA) 652 isapnp_resource_change(&pdev->dma_resource[0], dma1[dev], 1); 653 if (dma2[dev] != SNDRV_AUTO_DMA) 654 isapnp_resource_change(&pdev->dma_resource[1], dma2[dev], 1); 655 if (irq[dev] != SNDRV_AUTO_IRQ) 656 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 657 657 if (pdev->activate(pdev)<0) { 658 658 snd_printk("isapnp configure failure (out of resources?)\n"); 659 659 return -EBUSY; 660 660 } 661 s nd_sb_port[dev] = pdev->resource[0].start;662 snd_wss_port[dev] = pdev->resource[1].start;663 snd_fm_port[dev] = pdev->resource[2].start;664 snd_midi_port[dev] = pdev->resource[3].start;665 snd_port[dev] = pdev->resource[4].start;666 snd_dma1[dev] = pdev->dma_resource[0].start;667 snd_dma2[dev] = pdev->dma_resource[1].start;668 snd_irq[dev] = pdev->irq_resource[0].start;661 sb_port[dev] = pdev->resource[0].start; 662 wss_port[dev] = pdev->resource[1].start; 663 fm_port[dev] = pdev->resource[2].start; 664 midi_port[dev] = pdev->resource[3].start; 665 port[dev] = pdev->resource[4].start; 666 dma1[dev] = pdev->dma_resource[0].start; 667 dma2[dev] = pdev->dma_resource[1].start; 668 irq[dev] = pdev->irq_resource[0].start; 669 669 snd_printdd("isapnp OPL3-SA: sb port=0x%lx, wss port=0x%lx, fm port=0x%lx, midi port=0x%lx\n", 670 s nd_sb_port[dev], snd_wss_port[dev], snd_fm_port[dev], snd_midi_port[dev]);670 sb_port[dev], wss_port[dev], fm_port[dev], midi_port[dev]); 671 671 snd_printdd("isapnp OPL3-SA: control port=0x%lx, dma1=%i, dma2=%i, irq=%i\n", 672 snd_port[dev], snd_dma1[dev], snd_dma2[dev], snd_irq[dev]);672 port[dev], dma1[dev], dma2[dev], irq[dev]); 673 673 return 0; 674 674 } … … 710 710 static int __init snd_opl3sa2_probe(int dev) 711 711 { 712 int irq, dma1,dma2;712 int xirq, xdma1, xdma2; 713 713 snd_card_t *card; 714 714 struct snd_opl3sa2 *chip; … … 721 721 722 722 #ifdef __ISAPNP__ 723 if (! snd_isapnp[dev]) {724 #endif 725 if ( snd_port[dev] == SNDRV_AUTO_PORT) {726 snd_printk("specify snd_port\n");723 if (!isapnp[dev]) { 724 #endif 725 if (port[dev] == SNDRV_AUTO_PORT) { 726 snd_printk("specify port\n"); 727 727 return -EINVAL; 728 728 } 729 if ( snd_wss_port[dev] == SNDRV_AUTO_PORT) {730 snd_printk("specify snd_wss_port\n");729 if (wss_port[dev] == SNDRV_AUTO_PORT) { 730 snd_printk("specify wss_port\n"); 731 731 return -EINVAL; 732 732 } 733 if ( snd_fm_port[dev] == SNDRV_AUTO_PORT) {734 snd_printk("specify snd_fm_port\n");733 if (fm_port[dev] == SNDRV_AUTO_PORT) { 734 snd_printk("specify fm_port\n"); 735 735 return -EINVAL; 736 736 } 737 if ( snd_midi_port[dev] == SNDRV_AUTO_PORT) {738 snd_printk("specify snd_midi_port\n");737 if (midi_port[dev] == SNDRV_AUTO_PORT) { 738 snd_printk("specify midi_port\n"); 739 739 return -EINVAL; 740 740 } … … 742 742 } 743 743 #endif 744 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);744 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 745 745 if (card == NULL) 746 746 return -ENOMEM; … … 756 756 goto __error; 757 757 #ifdef __ISAPNP__ 758 if ( snd_isapnp[dev] && (err = snd_opl3sa2_isapnp(dev, chip)) < 0)759 goto __error; 760 #endif 761 chip->ymode = snd_opl3sa3_ymode[dev] & 0x03 ; /* initialise this card from supplied (or default) parameter*/758 if (isapnp[dev] && (err = snd_opl3sa2_isapnp(dev, chip)) < 0) 759 goto __error; 760 #endif 761 chip->ymode = opl3sa3_ymode[dev] & 0x03 ; /* initialise this card from supplied (or default) parameter*/ 762 762 chip->card = card; 763 chip->port = snd_port[dev];764 irq = snd_irq[dev];765 dma1 = snd_dma1[dev];766 dma2 = snd_dma2[dev];767 if ( dma2 < 0)763 chip->port = port[dev]; 764 xirq = irq[dev]; 765 xdma1 = dma1[dev]; 766 xdma2 = dma2[dev]; 767 if (xdma2 < 0) 768 768 chip->single_dma = 1; 769 769 if ((err = snd_opl3sa2_detect(chip)) < 0) 770 770 goto __error; 771 if (request_irq( irq, snd_opl3sa2_interrupt, SA_INTERRUPT, "OPL3-SA2/3", (void *)chip)) {771 if (request_irq(xirq, snd_opl3sa2_interrupt, SA_INTERRUPT, "OPL3-SA2/3", (void *)chip)) { 772 772 err = -ENODEV; 773 773 goto __error; 774 774 } 775 chip->irq = irq;775 chip->irq = xirq; 776 776 if ((err = snd_cs4231_create(card, 777 snd_wss_port[dev] + 4, -1,778 irq, dma1,dma2,777 wss_port[dev] + 4, -1, 778 xirq, xdma1, xdma2, 779 779 CS4231_HW_OPL3SA2, 780 780 CS4231_HWSHARE_IRQ, 781 781 &cs4231)) < 0) { 782 snd_printd("Oops, WSS not detected at 0x%lx\n", snd_wss_port[dev] + 4);782 snd_printd("Oops, WSS not detected at 0x%lx\n", wss_port[dev] + 4); 783 783 goto __error; 784 784 } … … 792 792 if ((err = snd_cs4231_timer(cs4231, 0, NULL)) < 0) 793 793 goto __error; 794 if ( snd_fm_port[dev] >= 0x340 && snd_fm_port[dev] < 0x400) {795 if ((err = snd_opl3_create(card, snd_fm_port[dev],796 snd_fm_port[dev] + 2,794 if (fm_port[dev] >= 0x340 && fm_port[dev] < 0x400) { 795 if ((err = snd_opl3_create(card, fm_port[dev], 796 fm_port[dev] + 2, 797 797 OPL3_HW_OPL3, 0, &opl3)) < 0) 798 798 goto __error; … … 802 802 goto __error; 803 803 } 804 if ( snd_midi_port[dev] >= 0x300 && snd_midi_port[dev] < 0x340) {804 if (midi_port[dev] >= 0x300 && midi_port[dev] < 0x340) { 805 805 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_OPL3SA2, 806 snd_midi_port[dev], 0,807 irq, 0, &chip->rmidi)) < 0)806 midi_port[dev], 0, 807 xirq, 0, &chip->rmidi)) < 0) 808 808 goto __error; 809 809 } … … 818 818 819 819 sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d", 820 card->shortname, chip->port, irq,dma1);821 if ( dma2 >= 0)822 sprintf(card->longname + strlen(card->longname), "&%d", dma2);820 card->shortname, chip->port, xirq, xdma1); 821 if (xdma2 >= 0) 822 sprintf(card->longname + strlen(card->longname), "&%d", xdma2); 823 823 824 824 if ((err = snd_card_register(card)) < 0) … … 841 841 842 842 for ( ; dev < SNDRV_CARDS; dev++) { 843 if (! snd_enable[dev])843 if (!enable[dev]) 844 844 continue; 845 845 snd_opl3sa2_isapnp_cards[dev] = card; … … 860 860 861 861 for (dev = 0; dev < SNDRV_CARDS; dev++) { 862 if (! snd_enable[dev])862 if (!enable[dev]) 863 863 continue; 864 864 #ifdef __ISAPNP__ 865 if ( snd_isapnp[dev])865 if (isapnp[dev]) 866 866 continue; 867 867 #endif … … 894 894 #ifndef MODULE 895 895 896 /* format is: snd-opl3sa2= snd_enable,snd_index,snd_id,snd_isapnp,897 snd_port,snd_sb_port,snd_wss_port,snd_fm_port,898 snd_midi_port,snd_irq,snd_dma1,snd_dma2,899 snd_opl3sa3_ymode */896 /* format is: snd-opl3sa2=enable,index,id,isapnp, 897 port,sb_port,wss_port,fm_port, 898 midi_port,irq,dma1,dma2, 899 opl3sa3_ymode */ 900 900 901 901 static int __init alsa_card_opl3sa2_setup(char *str) … … 906 906 if (nr_dev >= SNDRV_CARDS) 907 907 return 0; 908 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&909 get_option(&str,& snd_index[nr_dev]) == 2 &&910 get_id(&str,& snd_id[nr_dev]) == 2 &&908 (void)(get_option(&str,&enable[nr_dev]) == 2 && 909 get_option(&str,&index[nr_dev]) == 2 && 910 get_id(&str,&id[nr_dev]) == 2 && 911 911 get_option(&str,&pnp) == 2 && 912 get_option(&str,(int *)& snd_port[nr_dev]) == 2 &&913 get_option(&str,(int *)&s nd_sb_port[nr_dev]) == 2 &&914 get_option(&str,(int *)& snd_wss_port[nr_dev]) == 2 &&915 get_option(&str,(int *)& snd_fm_port[nr_dev]) == 2 &&916 get_option(&str,(int *)& snd_midi_port[nr_dev]) == 2 &&917 get_option(&str,& snd_irq[nr_dev]) == 2 &&918 get_option(&str,& snd_dma1[nr_dev]) == 2 &&919 get_option(&str,& snd_dma2[nr_dev]) == 2 &&920 get_option(&str,& snd_opl3sa3_ymode[nr_dev]) == 2);912 get_option(&str,(int *)&port[nr_dev]) == 2 && 913 get_option(&str,(int *)&sb_port[nr_dev]) == 2 && 914 get_option(&str,(int *)&wss_port[nr_dev]) == 2 && 915 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 916 get_option(&str,(int *)&midi_port[nr_dev]) == 2 && 917 get_option(&str,&irq[nr_dev]) == 2 && 918 get_option(&str,&dma1[nr_dev]) == 2 && 919 get_option(&str,&dma2[nr_dev]) == 2 && 920 get_option(&str,&opl3sa3_ymode[nr_dev]) == 2); 921 921 #ifdef __ISAPNP__ 922 922 if (pnp != INT_MAX) 923 snd_isapnp[nr_dev] = pnp;923 isapnp[nr_dev] = pnp; 924 924 #endif 925 925 nr_dev++; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/opti9xx/opti92x-ad1848.c ¶
r210 r212 73 73 #endif /* OPTi93X */ 74 74 75 static int snd_index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */76 static char * snd_id = SNDRV_DEFAULT_STR1; /* ID for this card */77 //static int snd_enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */78 static int snd_isapnp = 1; /* Enable ISA PnP detection */79 static long snd_port = SNDRV_DEFAULT_PORT1; /* 0x530,0xe80,0xf40,0x604 */80 static long snd_mpu_port = SNDRV_DEFAULT_PORT1; /* 0x300,0x310,0x320,0x330 */81 static long snd_fm_port = SNDRV_DEFAULT_PORT1; /* 0x388 */82 static int snd_irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10,11 */83 static int snd_mpu_irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10 */84 static int snd_dma1 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */75 static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */ 76 static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */ 77 //static int enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */ 78 static int isapnp = 1; /* Enable ISA PnP detection */ 79 static long port = SNDRV_DEFAULT_PORT1; /* 0x530,0xe80,0xf40,0x604 */ 80 static long mpu_port = SNDRV_DEFAULT_PORT1; /* 0x300,0x310,0x320,0x330 */ 81 static long fm_port = SNDRV_DEFAULT_PORT1; /* 0x388 */ 82 static int irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10,11 */ 83 static int mpu_irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10 */ 84 static int dma1 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */ 85 85 #if defined(CS4231) || defined(OPTi93X) 86 static int snd_dma2 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */86 static int dma2 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */ 87 87 #endif /* CS4231 || OPTi93X */ 88 88 89 MODULE_PARM( snd_index, "i");90 MODULE_PARM_DESC( snd_index, "Index value for opti9xx based soundcard.");91 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);92 MODULE_PARM( snd_id, "s");93 MODULE_PARM_DESC( snd_id, "ID string for opti9xx based soundcard.");94 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);95 //MODULE_PARM( snd_enable, "i");96 //MODULE_PARM_DESC( snd_enable, "Enable opti9xx soundcard.");97 //MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);98 MODULE_PARM( snd_isapnp, "i");99 MODULE_PARM_DESC( snd_isapnp, "Enable ISA PnP detection for specified soundcard.");100 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);101 MODULE_PARM( snd_port, "l");102 MODULE_PARM_DESC( snd_port, "WSS port # for opti9xx driver.");103 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT_DESC);104 MODULE_PARM( snd_mpu_port, "l");105 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for opti9xx driver.");106 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_PORT_DESC);107 MODULE_PARM( snd_fm_port, "l");108 MODULE_PARM_DESC( snd_fm_port, "FM port # for opti9xx driver.");109 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_PORT_DESC);110 MODULE_PARM( snd_irq, "i");111 MODULE_PARM_DESC( snd_irq, "WSS irq # for opti9xx driver.");112 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);113 MODULE_PARM( snd_mpu_irq, "i");114 MODULE_PARM_DESC( snd_mpu_irq, "MPU-401 irq # for opti9xx driver.");115 MODULE_PARM_SYNTAX( snd_mpu_irq, SNDRV_IRQ_DESC);116 MODULE_PARM( snd_dma1, "i");117 MODULE_PARM_DESC( snd_dma1, "1st dma # for opti9xx driver.");118 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);89 MODULE_PARM(index, "i"); 90 MODULE_PARM_DESC(index, "Index value for opti9xx based soundcard."); 91 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 92 MODULE_PARM(id, "s"); 93 MODULE_PARM_DESC(id, "ID string for opti9xx based soundcard."); 94 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 95 //MODULE_PARM(enable, "i"); 96 //MODULE_PARM_DESC(enable, "Enable opti9xx soundcard."); 97 //MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 98 MODULE_PARM(isapnp, "i"); 99 MODULE_PARM_DESC(isapnp, "Enable ISA PnP detection for specified soundcard."); 100 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 101 MODULE_PARM(port, "l"); 102 MODULE_PARM_DESC(port, "WSS port # for opti9xx driver."); 103 MODULE_PARM_SYNTAX(port, SNDRV_PORT_DESC); 104 MODULE_PARM(mpu_port, "l"); 105 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for opti9xx driver."); 106 MODULE_PARM_SYNTAX(mpu_port, SNDRV_PORT_DESC); 107 MODULE_PARM(fm_port, "l"); 108 MODULE_PARM_DESC(fm_port, "FM port # for opti9xx driver."); 109 MODULE_PARM_SYNTAX(fm_port, SNDRV_PORT_DESC); 110 MODULE_PARM(irq, "i"); 111 MODULE_PARM_DESC(irq, "WSS irq # for opti9xx driver."); 112 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 113 MODULE_PARM(mpu_irq, "i"); 114 MODULE_PARM_DESC(mpu_irq, "MPU-401 irq # for opti9xx driver."); 115 MODULE_PARM_SYNTAX(mpu_irq, SNDRV_IRQ_DESC); 116 MODULE_PARM(dma1, "i"); 117 MODULE_PARM_DESC(dma1, "1st dma # for opti9xx driver."); 118 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 119 119 #if defined(CS4231) || defined(OPTi93X) 120 MODULE_PARM( snd_dma2, "i");121 MODULE_PARM_DESC( snd_dma2, "2nd dma # for opti9xx driver.");122 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);120 MODULE_PARM(dma2, "i"); 121 MODULE_PARM_DESC(dma2, "2nd dma # for opti9xx driver."); 122 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 123 123 #endif /* CS4231 || OPTi93X */ 124 124 … … 1730 1730 1731 1731 #ifdef OPTi93X 1732 if ( snd_port != SNDRV_AUTO_PORT)1733 isapnp_resource_change(&pdev->resource[0], snd_port + 4, 4);1732 if (port != SNDRV_AUTO_PORT) 1733 isapnp_resource_change(&pdev->resource[0], port + 4, 4); 1734 1734 #else 1735 if ((pid->card_device != ISAPNP_DEVICE(0x0924)) && ( snd_port != SNDRV_AUTO_PORT))1736 isapnp_resource_change(&pdev->resource[1], snd_port, 4);1735 if ((pid->card_device != ISAPNP_DEVICE(0x0924)) && (port != SNDRV_AUTO_PORT)) 1736 isapnp_resource_change(&pdev->resource[1], port, 4); 1737 1737 #endif /* OPTi93X */ 1738 if ( snd_irq != SNDRV_AUTO_IRQ)1739 isapnp_resource_change(&pdev->irq_resource[0], snd_irq, 1);1740 if ( snd_dma1 != SNDRV_AUTO_DMA)1741 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1, 1);1738 if (irq != SNDRV_AUTO_IRQ) 1739 isapnp_resource_change(&pdev->irq_resource[0], irq, 1); 1740 if (dma1 != SNDRV_AUTO_DMA) 1741 isapnp_resource_change(&pdev->dma_resource[0], dma1, 1); 1742 1742 #if defined(CS4231) || defined(OPTi93X) 1743 if ( snd_dma2 != SNDRV_AUTO_DMA)1744 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2, 1);1743 if (dma2 != SNDRV_AUTO_DMA) 1744 isapnp_resource_change(&pdev->dma_resource[1], dma2, 1); 1745 1745 #endif /* CS4231 || OPTi93X */ 1746 if ( snd_fm_port != SNDRV_AUTO_PORT)1747 isapnp_resource_change(&pdev->resource[1], snd_fm_port, 4);1746 if (fm_port != SNDRV_AUTO_PORT) 1747 isapnp_resource_change(&pdev->resource[1], fm_port, 4); 1748 1748 1749 1749 if (pdev->activate(pdev) < 0) { … … 1753 1753 1754 1754 #ifdef OPTi93X 1755 snd_port = pdev->resource[0].start - 4;1756 snd_fm_port = pdev->resource[1].start;1755 port = pdev->resource[0].start - 4; 1756 fm_port = pdev->resource[1].start; 1757 1757 #else 1758 1758 if (pid->card_device != ISAPNP_DEVICE(0x0924)) 1759 snd_port = pdev->resource[1].start;1760 snd_fm_port = pdev->resource[2].start;1759 port = pdev->resource[1].start; 1760 fm_port = pdev->resource[2].start; 1761 1761 #endif /* OPTi93X */ 1762 snd_irq = pdev->irq_resource[0].start;1763 snd_dma1 = pdev->dma_resource[0].start;1762 irq = pdev->irq_resource[0].start; 1763 dma1 = pdev->dma_resource[0].start; 1764 1764 #if defined(CS4231) || defined(OPTi93X) 1765 snd_dma2 = pdev->dma_resource[1].start;1765 dma2 = pdev->dma_resource[1].start; 1766 1766 #endif /* CS4231 || OPTi93X */ 1767 1767 1768 1768 pdev = chip->devmpu; 1769 1769 if (pdev == NULL || pdev->prepare(pdev) < 0) { 1770 snd_mpu_port = -1;1770 mpu_port = -1; 1771 1771 chip->devmpu = NULL; 1772 1772 return pid->card_device; 1773 1773 } 1774 1774 1775 if ( snd_mpu_port != SNDRV_AUTO_PORT)1776 isapnp_resource_change(&pdev->resource[0], snd_mpu_port, 2);1777 if ( snd_mpu_irq != SNDRV_AUTO_IRQ)1778 isapnp_resource_change(&pdev->irq_resource[0], snd_mpu_irq, 1);1775 if (mpu_port != SNDRV_AUTO_PORT) 1776 isapnp_resource_change(&pdev->resource[0], mpu_port, 2); 1777 if (mpu_irq != SNDRV_AUTO_IRQ) 1778 isapnp_resource_change(&pdev->irq_resource[0], mpu_irq, 1); 1779 1779 1780 1780 if (pdev->activate(pdev) < 0) { 1781 1781 snd_printk("MPU-401 isapnp configure failure\n"); 1782 snd_mpu_port = -1;1782 mpu_port = -1; 1783 1783 chip->devmpu = NULL; 1784 1784 } else { 1785 snd_mpu_port = pdev->resource[0].start;1786 snd_mpu_irq = pdev->irq_resource[0].start;1785 mpu_port = pdev->resource[0].start; 1786 mpu_irq = pdev->irq_resource[0].start; 1787 1787 } 1788 1788 return pid->card_device; … … 1810 1810 #ifndef OPTi93X 1811 1811 if (chip->chip->hardware == OPTi9XX_HW_82C928) 1812 snd_mpu_port = -1;1812 mpu_port = -1; 1813 1813 #endif /* OPTi93X */ 1814 1814 error = 0; 1815 if (!pnp && ( snd_mpu_port == SNDRV_DEFAULT_PORT1)) {1815 if (!pnp && (mpu_port == SNDRV_DEFAULT_PORT1)) { 1816 1816 for (i = 0; possible_mpu_ports[i] != -1; i++) 1817 1817 if (!snd_register_ioport(card, possible_mpu_ports[i], 2, 1818 1818 DRIVER_NAME" - MPU-401", NULL)) { 1819 snd_mpu_port = possible_mpu_ports[i];1819 mpu_port = possible_mpu_ports[i]; 1820 1820 break; 1821 1821 } 1822 if ( snd_mpu_port == SNDRV_DEFAULT_PORT1)1822 if (mpu_port == SNDRV_DEFAULT_PORT1) 1823 1823 error = -EBUSY; 1824 1824 } 1825 1825 else 1826 error = ( snd_mpu_port == -1) ? -ENODEV :1827 snd_register_ioport(card, snd_mpu_port, 2,1826 error = (mpu_port == -1) ? -ENODEV : 1827 snd_register_ioport(card, mpu_port, 2, 1828 1828 DRIVER_NAME" - MPU-401", NULL); 1829 1829 if (error) 1830 1830 chip->chip->mpu_port = -1; 1831 else if (pnp && ( snd_irq == snd_mpu_irq))1832 chip->chip->mpu_irq = snd_mpu_irq;1831 else if (pnp && (irq == mpu_irq)) 1832 chip->chip->mpu_irq = mpu_irq; 1833 1833 else if (!snd_register_interrupt(card, 1834 1834 DRIVER_NAME" - MPU-401", 1835 snd_mpu_irq, SNDRV_IRQ_TYPE_ISA,1835 mpu_irq, SNDRV_IRQ_TYPE_ISA, 1836 1836 snd_card_opti9xx_mpu_interrupt, chip, 1837 1837 pnp ? no_alternatives : possible_mpu_irqs, 1838 1838 &chip->mpuirqptr)) { 1839 chip->chip->mpu_port = snd_mpu_port;1839 chip->chip->mpu_port = mpu_port; 1840 1840 chip->chip->mpu_irq = chip->mpuirqptr->irq; 1841 1841 } … … 1843 1843 chip->chip->mpu_port = -1; 1844 1844 1845 if (!pnp && ( snd_port == SNDRV_DEFAULT_PORT1)) {1845 if (!pnp && (port == SNDRV_DEFAULT_PORT1)) { 1846 1846 for (i = 0; possible_ports[i] != -1; i++) 1847 1847 if (!snd_register_ioport(card, possible_ports[i], 8, 1848 1848 DRIVER_NAME" - WSS", NULL)) { 1849 snd_port = possible_ports[i];1849 port = possible_ports[i]; 1850 1850 break; 1851 1851 } 1852 if ( snd_port == SNDRV_DEFAULT_PORT1)1852 if (port == SNDRV_DEFAULT_PORT1) 1853 1853 return -EBUSY; 1854 1854 } 1855 else if ((error = snd_register_ioport(card, snd_port, 8,1855 else if ((error = snd_register_ioport(card, port, 8, 1856 1856 DRIVER_NAME" - WSS", NULL)) < 0) 1857 1857 return error; 1858 chip->chip->wss_base = snd_port;1858 chip->chip->wss_base = port; 1859 1859 if ((error = snd_register_interrupt(card, DRIVER_NAME" - WSS", 1860 snd_irq, SNDRV_IRQ_TYPE_ISA,1860 irq, SNDRV_IRQ_TYPE_ISA, 1861 1861 snd_card_opti9xx_interrupt, chip, 1862 1862 pnp ? no_alternatives : possible_irqs, … … 1870 1870 DRIVER_NAME" - WSS", 1871 1871 #endif /* CS4231 || OPTi93X */ 1872 snd_dma1, SNDRV_DMA_TYPE_ISA, snd_dma1_size,1872 dma1, SNDRV_DMA_TYPE_ISA, dma1_size, 1873 1873 pnp ? no_alternatives : possible_dma1s, 1874 1874 &chip->dma1ptr)) < 0) … … 1877 1877 #if defined(CS4231) || defined(OPTi93X) 1878 1878 if ((error = snd_register_dma_channel(card, DRIVER_NAME" - WSS capture", 1879 snd_dma2, SNDRV_DMA_TYPE_ISA, snd_dma2_size,1879 dma2, SNDRV_DMA_TYPE_ISA, dma2_size, 1880 1880 pnp ? no_alternatives : 1881 1881 possible_dma2s[chip->dma1ptr->dma], … … 1886 1886 1887 1887 if (snd_register_ioport(card, 1888 pnp ? snd_fm_port : snd_fm_port = 0x388, 4,1888 pnp ? fm_port : fm_port = 0x388, 4, 1889 1889 DRIVER_NAME" - OPL", NULL) < 0) 1890 snd_fm_port = -1;1891 chip->chip->fm_port = snd_fm_port;1890 fm_port = -1; 1891 chip->chip->fm_port = fm_port; 1892 1892 1893 1893 return 0; … … 1942 1942 #endif /* __ISAPNP__ */ 1943 1943 1944 if (!(card = snd_card_new( snd_index, snd_id, THIS_MODULE,1944 if (!(card = snd_card_new(index, id, THIS_MODULE, 1945 1945 sizeof(opti9xx_t)))) 1946 1946 return -ENOMEM; … … 1949 1949 1950 1950 #ifdef __ISAPNP__ 1951 if ( snd_isapnp && (hw = snd_card_opti9xx_isapnp(chip)) > 0) {1951 if (isapnp && (hw = snd_card_opti9xx_isapnp(chip)) > 0) { 1952 1952 switch (hw) { 1953 1953 case ISAPNP_DEVICE(0x0924): … … 1986 1986 } 1987 1987 1988 chip->wss_base = snd_port;1989 chip->fm_port = snd_fm_port;1990 chip->mpu_port = snd_mpu_port;1991 chip->irq = snd_irq;1992 chip->mpu_irq = snd_mpu_irq;1993 chip->dma1 = snd_dma1;1988 chip->wss_base = port; 1989 chip->fm_port = fm_port; 1990 chip->mpu_port = mpu_port; 1991 chip->irq = irq; 1992 chip->mpu_irq = mpu_irq; 1993 chip->dma1 = dma1; 1994 1994 #if defined(CS4231) || defined(OPTi93X) 1995 chip->dma2 = snd_dma2;1995 chip->dma2 = dma2; 1996 1996 #endif 1997 1997 1998 1998 #ifdef __ISAPNP__ 1999 if (! snd_isapnp) {1999 if (!isapnp) { 2000 2000 #endif 2001 2001 if (chip->wss_base == SNDRV_AUTO_PORT) { … … 2184 2184 #ifndef MODULE 2185 2185 2186 /* format is: snd-opti9xx= snd_enable,snd_index,snd_id,snd_isapnp,2187 snd_port,snd_mpu_port,snd_fm_port,2188 snd_irq,snd_mpu_irq,2189 snd_dma1,[snd_dma2] */2186 /* format is: snd-opti9xx=enable,index,id,isapnp, 2187 port,mpu_port,fm_port, 2188 irq,mpu_irq, 2189 dma1,[dma2] */ 2190 2190 2191 2191 static int __init alsa_card_opti9xx_setup(char *str) … … 2195 2195 2196 2196 (void)(get_option(&str,&enable) == 2 && 2197 get_option(&str,& snd_index) == 2 &&2198 get_id(&str,& snd_id) == 2 &&2197 get_option(&str,&index) == 2 && 2198 get_id(&str,&id) == 2 && 2199 2199 get_option(&str,&pnp) == 2 && 2200 get_option(&str,(int *)& snd_port) == 2 &&2201 get_option(&str,(int *)& snd_mpu_port) == 2 &&2202 get_option(&str,(int *)& snd_fm_port) == 2 &&2203 get_option(&str,& snd_irq) == 2 &&2204 get_option(&str,& snd_mpu_irq) == 2 &&2205 get_option(&str,& snd_dma1) == 22200 get_option(&str,(int *)&port) == 2 && 2201 get_option(&str,(int *)&mpu_port) == 2 && 2202 get_option(&str,(int *)&fm_port) == 2 && 2203 get_option(&str,&irq) == 2 && 2204 get_option(&str,&mpu_irq) == 2 && 2205 get_option(&str,&dma1) == 2 2206 2206 #if defined(CS4231) || defined(OPTi93X) 2207 2207 && 2208 get_option(&str,& snd_dma2) == 22208 get_option(&str,&dma2) == 2 2209 2209 #endif 2210 2210 ); 2211 2211 #ifdef __ISAPNP__ 2212 2212 if (pnp != INT_MAX) 2213 snd_isapnp = pnp;2213 isapnp = pnp; 2214 2214 #endif 2215 2215 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/sb/emu8000.c ¶
r210 r212 1139 1139 return err; 1140 1140 } 1141 #if defined(CONFIG_SND_SEQUENCER) || defined(CONFIG_SND_SEQUENCER_MODULE) 1141 1142 if (snd_seq_device_new(card, index, SNDRV_SEQ_DEV_ID_EMU8000, 1142 1143 sizeof(emu8000_t*), &awe) >= 0) { … … 1144 1145 *(emu8000_t**)SNDRV_SEQ_DEVICE_ARGPTR(awe) = hw; 1145 1146 } 1147 #endif 1146 1148 if (awe_ret) 1147 1149 *awe_ret = awe; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/sb/es968.c ¶
r210 r212 42 42 MODULE_DEVICES("{{ESS,AudioDrive ES968}}"); 43 43 44 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */45 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */46 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */47 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */48 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */49 static int snd_dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */50 51 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");52 MODULE_PARM_DESC( snd_index, "Index value for es968 based soundcard.");53 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);54 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");55 MODULE_PARM_DESC( snd_id, "ID string for es968 based soundcard.");56 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);57 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");58 MODULE_PARM_DESC( snd_enable, "Enable es968 based soundcard.");59 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);60 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");61 MODULE_PARM_DESC( snd_port, "Port # for es968 driver.");62 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);63 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");64 MODULE_PARM_DESC( snd_irq, "IRQ # for es968 driver.");65 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);66 MODULE_PARM( snd_dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");67 MODULE_PARM_DESC( snd_dma8, "8-bit DMA # for es968 driver.");68 MODULE_PARM_SYNTAX( snd_dma8, SNDRV_DMA8_DESC);44 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 45 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 46 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 47 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 48 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* Pnp setup */ 49 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* PnP setup */ 50 51 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 52 MODULE_PARM_DESC(index, "Index value for es968 based soundcard."); 53 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 54 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 55 MODULE_PARM_DESC(id, "ID string for es968 based soundcard."); 56 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 57 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 58 MODULE_PARM_DESC(enable, "Enable es968 based soundcard."); 59 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 60 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 61 MODULE_PARM_DESC(port, "Port # for es968 driver."); 62 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 63 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 64 MODULE_PARM_DESC(irq, "IRQ # for es968 driver."); 65 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 66 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 67 MODULE_PARM_DESC(dma8, "8-bit DMA # for es968 driver."); 68 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC); 69 69 70 70 struct snd_card_es968 { … … 124 124 return -EAGAIN; 125 125 126 if (snd_port[dev] != SNDRV_AUTO_PORT)127 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 16);128 if (snd_dma8[dev] != SNDRV_AUTO_DMA)129 isapnp_resource_change(&pdev->dma_resource[0], snd_dma8[dev],126 if (port[dev] != SNDRV_AUTO_PORT) 127 isapnp_resource_change(&pdev->resource[0], port[dev], 16); 128 if (dma8[dev] != SNDRV_AUTO_DMA) 129 isapnp_resource_change(&pdev->dma_resource[0], dma8[dev], 130 130 1); 131 if (snd_irq[dev] != SNDRV_AUTO_IRQ)132 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);131 if (irq[dev] != SNDRV_AUTO_IRQ) 132 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 133 133 134 134 if (pdev->activate(pdev)<0) { … … 137 137 } 138 138 139 snd_port[dev] = pdev->resource[0].start;140 snd_dma8[dev] = pdev->dma_resource[0].start;141 snd_irq[dev] = pdev->irq_resource[0].start;139 port[dev] = pdev->resource[0].start; 140 dma8[dev] = pdev->dma_resource[0].start; 141 irq[dev] = pdev->irq_resource[0].start; 142 142 143 143 return 0; … … 171 171 struct snd_card_es968 *acard; 172 172 173 if ((card = snd_card_new(snd_index[dev], snd_id[dev], THIS_MODULE,173 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 174 174 sizeof(struct snd_card_es968))) == NULL) 175 175 return -ENOMEM; … … 188 188 #endif /* __ISAPNP__ */ 189 189 190 if ((error = snd_sbdsp_create(card, snd_port[dev],191 snd_irq[dev],190 if ((error = snd_sbdsp_create(card, port[dev], 191 irq[dev], 192 192 snd_card_es968_interrupt, 193 snd_dma8[dev],193 dma8[dev], 194 194 -1, 195 195 SB_HW_AUTO, &chip)) < 0) { … … 216 216 strcpy(card->shortname, "ESS ES968"); 217 217 sprintf(card->longname, "%s soundcard, %s at 0x%lx, irq %d, dma %d", 218 card->shortname, chip->name, chip->port, snd_irq[dev], snd_dma8[dev]);218 card->shortname, chip->name, chip->port, irq[dev], dma8[dev]); 219 219 220 220 if ((error = snd_card_register(card)) < 0) { … … 234 234 235 235 for ( ; dev < SNDRV_CARDS; dev++) { 236 if (!snd_enable[dev])236 if (!enable[dev]) 237 237 continue; 238 238 snd_es968_isapnp_cards[dev] = card; … … 277 277 #ifndef MODULE 278 278 279 /* format is: snd-es968= snd_enable,snd_index,snd_id,280 snd_port,snd_irq,snd_dma1 */279 /* format is: snd-es968=enable,index,id, 280 port,irq,snd_dma1 */ 281 281 282 282 static int __init alsa_card_es968_setup(char *str) … … 286 286 if (nr_dev >= SNDRV_CARDS) 287 287 return 0; 288 (void)(get_option(&str,&snd_enable[nr_dev]) == 2 &&289 get_option(&str,&snd_index[nr_dev]) == 2 &&290 get_id(&str,&snd_id[nr_dev]) == 2 &&291 get_option(&str,(int *)&snd_port[nr_dev]) == 2 &&292 get_option(&str,&snd_irq[nr_dev]) == 2 &&293 get_option(&str,&snd_dma8[nr_dev]) == 2);288 (void)(get_option(&str,&enable[nr_dev]) == 2 && 289 get_option(&str,&index[nr_dev]) == 2 && 290 get_id(&str,&id[nr_dev]) == 2 && 291 get_option(&str,(int *)&port[nr_dev]) == 2 && 292 get_option(&str,&irq[nr_dev]) == 2 && 293 get_option(&str,&dma8[nr_dev]) == 2); 294 294 nr_dev++; 295 295 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/sb/sb16.c ¶
r210 r212 75 75 #endif 76 76 77 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */78 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */79 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */77 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 78 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 79 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */ 80 80 #ifdef __ISAPNP__ 81 81 #ifdef TARGET_OS2 82 static int snd_isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1};83 #else 84 static int snd_isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};85 #endif 86 #endif 87 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260,0x280 */82 static int isapnp[SNDRV_CARDS] = {1,1,1,1,1,1,1,1}; 83 #else 84 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 85 #endif 86 #endif 87 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260,0x280 */ 88 88 #ifdef TARGET_OS2 89 static long snd_mpu_port[SNDRV_CARDS] = {0x330, 0x300, -1,-1,-1,-1,-1,-1};90 #else 91 static long snd_mpu_port[SNDRV_CARDS] = {0x330, 0x300,[2 ... (SNDRV_CARDS - 1)] = -1};92 #endif 93 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;94 #ifdef SNDRV_SBAWE_EMU8000 95 static long snd_awe_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;96 #endif 97 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */98 static int snd_dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */99 static int snd_dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 5,6,7 */89 static long mpu_port[SNDRV_CARDS] = {0x330, 0x300, -1,-1,-1,-1,-1,-1}; 90 #else 91 static long mpu_port[SNDRV_CARDS] = {0x330, 0x300,[2 ... (SNDRV_CARDS - 1)] = -1}; 92 #endif 93 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 94 #ifdef SNDRV_SBAWE_EMU8000 95 static long awe_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; 96 #endif 97 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 98 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 99 static int dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 5,6,7 */ 100 100 #ifdef TARGET_OS2 101 static int snd_mic_agc[SNDRV_CARDS] = {1,1,1,1,1,1,1,1};101 static int mic_agc[SNDRV_CARDS] = {1,1,1,1,1,1,1,1}; 102 102 #ifdef CONFIG_SND_SB16_CSP 103 static int snd_csp[SNDRV_CARDS] = {0,0,0,0,0,0,0,0};104 #endif 105 #ifdef SNDRV_SBAWE_EMU8000 106 static int s nd_seq_ports[SNDRV_CARDS] = {4,4,4,4,4,4,4,4};107 #endif 108 #else 109 static int snd_mic_agc[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};103 static int csp[SNDRV_CARDS] = {0,0,0,0,0,0,0,0}; 104 #endif 105 #ifdef SNDRV_SBAWE_EMU8000 106 static int seq_ports[SNDRV_CARDS] = {4,4,4,4,4,4,4,4}; 107 #endif 108 #else 109 static int mic_agc[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 110 110 #ifdef CONFIG_SND_SB16_CSP 111 static int snd_csp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};112 #endif 113 #ifdef SNDRV_SBAWE_EMU8000 114 static int s nd_seq_ports[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4};115 #endif 116 #endif 117 118 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");119 MODULE_PARM_DESC( snd_index, "Index value for SoundBlaster 16 soundcard.");120 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);121 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");122 MODULE_PARM_DESC( snd_id, "ID string for SoundBlaster 16 soundcard.");123 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);124 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");125 MODULE_PARM_DESC( snd_enable, "Enable SoundBlaster 16 soundcard.");126 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);127 #ifdef __ISAPNP__ 128 MODULE_PARM( snd_isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");129 MODULE_PARM_DESC( snd_isapnp, "ISA PnP detection for specified soundcard.");130 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);131 #endif 132 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");133 MODULE_PARM_DESC( snd_port, "Port # for SB16 driver.");134 MODULE_PARM_SYNTAX( snd_port, SNDRV_ENABLED ",allows:{{0x220},{0x240},{0x260},{0x280}},dialog:list");135 MODULE_PARM( snd_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");136 MODULE_PARM_DESC( snd_mpu_port, "MPU-401 port # for SB16 driver.");137 MODULE_PARM_SYNTAX( snd_mpu_port, SNDRV_ENABLED ",allows:{{0x330},{0x300}},dialog:list");138 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");139 MODULE_PARM_DESC( snd_fm_port, "FM port # for SB16 PnP driver.");140 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_ENABLED ",allows:{{0x388},{0x38c},{0x390},{0x394}},dialog:list");141 #ifdef SNDRV_SBAWE_EMU8000 142 MODULE_PARM( snd_awe_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");143 MODULE_PARM_DESC( snd_awe_port, "AWE port # for SB16 PnP driver.");144 MODULE_PARM_SYNTAX( snd_awe_port, SNDRV_ENABLED ",allows:{{0x620},{0x640},{0x660},{0x680}},dialog:list");145 #endif 146 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");147 MODULE_PARM_DESC( snd_irq, "IRQ # for SB16 driver.");148 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);149 MODULE_PARM( snd_dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");150 MODULE_PARM_DESC( snd_dma8, "8-bit DMA # for SB16 driver.");151 MODULE_PARM_SYNTAX( snd_dma8, SNDRV_DMA8_DESC);152 MODULE_PARM( snd_dma16, "1-" __MODULE_STRING(SNDRV_CARDS) "i");153 MODULE_PARM_DESC( snd_dma16, "16-bit DMA # for SB16 driver.");154 MODULE_PARM_SYNTAX( snd_dma16, SNDRV_DMA16_DESC);155 MODULE_PARM( snd_mic_agc, "1-" __MODULE_STRING(SNDRV_CARDS) "i");156 MODULE_PARM_DESC( snd_mic_agc, "Mic Auto-Gain-Control switch.");157 MODULE_PARM_SYNTAX( snd_mic_agc, SNDRV_ENABLED "," SNDRV_BOOLEAN_TRUE_DESC);111 static int csp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0}; 112 #endif 113 #ifdef SNDRV_SBAWE_EMU8000 114 static int seq_ports[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4}; 115 #endif 116 #endif 117 118 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 119 MODULE_PARM_DESC(index, "Index value for SoundBlaster 16 soundcard."); 120 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 121 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 122 MODULE_PARM_DESC(id, "ID string for SoundBlaster 16 soundcard."); 123 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 124 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 125 MODULE_PARM_DESC(enable, "Enable SoundBlaster 16 soundcard."); 126 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 127 #ifdef __ISAPNP__ 128 MODULE_PARM(isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 129 MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard."); 130 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 131 #endif 132 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 133 MODULE_PARM_DESC(port, "Port # for SB16 driver."); 134 MODULE_PARM_SYNTAX(port, SNDRV_ENABLED ",allows:{{0x220},{0x240},{0x260},{0x280}},dialog:list"); 135 MODULE_PARM(mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 136 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for SB16 driver."); 137 MODULE_PARM_SYNTAX(mpu_port, SNDRV_ENABLED ",allows:{{0x330},{0x300}},dialog:list"); 138 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 139 MODULE_PARM_DESC(fm_port, "FM port # for SB16 PnP driver."); 140 MODULE_PARM_SYNTAX(fm_port, SNDRV_ENABLED ",allows:{{0x388},{0x38c},{0x390},{0x394}},dialog:list"); 141 #ifdef SNDRV_SBAWE_EMU8000 142 MODULE_PARM(awe_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 143 MODULE_PARM_DESC(awe_port, "AWE port # for SB16 PnP driver."); 144 MODULE_PARM_SYNTAX(awe_port, SNDRV_ENABLED ",allows:{{0x620},{0x640},{0x660},{0x680}},dialog:list"); 145 #endif 146 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 147 MODULE_PARM_DESC(irq, "IRQ # for SB16 driver."); 148 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 149 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 150 MODULE_PARM_DESC(dma8, "8-bit DMA # for SB16 driver."); 151 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC); 152 MODULE_PARM(dma16, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 153 MODULE_PARM_DESC(dma16, "16-bit DMA # for SB16 driver."); 154 MODULE_PARM_SYNTAX(dma16, SNDRV_DMA16_DESC); 155 MODULE_PARM(mic_agc, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 156 MODULE_PARM_DESC(mic_agc, "Mic Auto-Gain-Control switch."); 157 MODULE_PARM_SYNTAX(mic_agc, SNDRV_ENABLED "," SNDRV_BOOLEAN_TRUE_DESC); 158 158 #ifdef CONFIG_SND_SB16_CSP 159 MODULE_PARM( snd_csp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");160 MODULE_PARM_DESC( snd_csp, "ASP/CSP chip support.");161 MODULE_PARM_SYNTAX( snd_csp, SNDRV_ENABLED "," SNDRV_ENABLE_DESC);162 #endif 163 #ifdef SNDRV_SBAWE_EMU8000 164 MODULE_PARM(s nd_seq_ports, "1-" __MODULE_STRING(SNDRV_CARDS) "i");165 MODULE_PARM_DESC(s nd_seq_ports, "Number of sequencer ports for WaveTable synth.");166 MODULE_PARM_SYNTAX(s nd_seq_ports, SNDRV_ENABLED ",allows:{{0,8}},skill:advanced");159 MODULE_PARM(csp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 160 MODULE_PARM_DESC(csp, "ASP/CSP chip support."); 161 MODULE_PARM_SYNTAX(csp, SNDRV_ENABLED "," SNDRV_ENABLE_DESC); 162 #endif 163 #ifdef SNDRV_SBAWE_EMU8000 164 MODULE_PARM(seq_ports, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 165 MODULE_PARM_DESC(seq_ports, "Number of sequencer ports for WaveTable synth."); 166 MODULE_PARM_SYNTAX(seq_ports, SNDRV_ENABLED ",allows:{{0,8}},skill:advanced"); 167 167 #endif 168 168 … … 320 320 if (pdev->prepare(pdev) < 0) 321 321 return -EAGAIN; 322 if (snd_port[dev] != SNDRV_AUTO_PORT)323 isapnp_resource_change(&pdev->resource[0], snd_port[dev], 16);324 if (snd_mpu_port[dev] != SNDRV_AUTO_PORT)325 isapnp_resource_change(&pdev->resource[1], snd_mpu_port[dev], 2);326 if (snd_fm_port[dev] != SNDRV_AUTO_PORT)327 isapnp_resource_change(&pdev->resource[2], snd_fm_port[dev], 4);328 if (snd_dma8[dev] != SNDRV_AUTO_DMA)329 isapnp_resource_change(&pdev->dma_resource[0], snd_dma8[dev], 1);330 if (snd_dma16[dev] != SNDRV_AUTO_DMA)331 isapnp_resource_change(&pdev->dma_resource[1], snd_dma16[dev], 1);332 if (snd_irq[dev] != SNDRV_AUTO_IRQ)333 isapnp_resource_change(&pdev->irq_resource[0], snd_irq[dev], 1);322 if (port[dev] != SNDRV_AUTO_PORT) 323 isapnp_resource_change(&pdev->resource[0], port[dev], 16); 324 if (mpu_port[dev] != SNDRV_AUTO_PORT) 325 isapnp_resource_change(&pdev->resource[1], mpu_port[dev], 2); 326 if (fm_port[dev] != SNDRV_AUTO_PORT) 327 isapnp_resource_change(&pdev->resource[2], fm_port[dev], 4); 328 if (dma8[dev] != SNDRV_AUTO_DMA) 329 isapnp_resource_change(&pdev->dma_resource[0], dma8[dev], 1); 330 if (dma16[dev] != SNDRV_AUTO_DMA) 331 isapnp_resource_change(&pdev->dma_resource[1], dma16[dev], 1); 332 if (irq[dev] != SNDRV_AUTO_IRQ) 333 isapnp_resource_change(&pdev->irq_resource[0], irq[dev], 1); 334 334 if (pdev->activate(pdev) < 0) { 335 335 printk(KERN_ERR PFX "isapnp configure failure (out of resources?)\n"); 336 336 return -EBUSY; 337 337 } 338 snd_port[dev] = pdev->resource[0].start;339 snd_mpu_port[dev] = pdev->resource[1].start;340 snd_fm_port[dev] = pdev->resource[2].start;341 snd_dma8[dev] = pdev->dma_resource[0].start;342 snd_dma16[dev] = pdev->dma_resource[1].start;343 snd_irq[dev] = pdev->irq_resource[0].start;338 port[dev] = pdev->resource[0].start; 339 mpu_port[dev] = pdev->resource[1].start; 340 fm_port[dev] = pdev->resource[2].start; 341 dma8[dev] = pdev->dma_resource[0].start; 342 dma16[dev] = pdev->dma_resource[1].start; 343 irq[dev] = pdev->irq_resource[0].start; 344 344 snd_printdd("isapnp SB16: port=0x%lx, mpu port=0x%lx, fm port=0x%lx\n", 345 snd_port[dev], snd_mpu_port[dev], snd_fm_port[dev]);345 port[dev], mpu_port[dev], fm_port[dev]); 346 346 snd_printdd("isapnp SB16: dma1=%i, dma2=%i, irq=%i\n", 347 snd_dma8[dev], snd_dma16[dev], snd_irq[dev]);347 dma8[dev], dma16[dev], irq[dev]); 348 348 #ifdef SNDRV_SBAWE_EMU8000 349 349 /* WaveTable initialization */ … … 353 353 return -EAGAIN; 354 354 } 355 if ( snd_awe_port[dev] != SNDRV_AUTO_PORT) {356 isapnp_resource_change(&pdev->resource[0], snd_awe_port[dev], 4);357 isapnp_resource_change(&pdev->resource[1], snd_awe_port[dev] + 0x400, 4);358 isapnp_resource_change(&pdev->resource[2], snd_awe_port[dev] + 0x800, 4);355 if (awe_port[dev] != SNDRV_AUTO_PORT) { 356 isapnp_resource_change(&pdev->resource[0], awe_port[dev], 4); 357 isapnp_resource_change(&pdev->resource[1], awe_port[dev] + 0x400, 4); 358 isapnp_resource_change(&pdev->resource[2], awe_port[dev] + 0x800, 4); 359 359 } 360 360 if (pdev->activate(pdev)<0) { … … 363 363 return -EBUSY; 364 364 } 365 snd_awe_port[dev] = pdev->resource[0].start;365 awe_port[dev] = pdev->resource[0].start; 366 366 snd_printdd("isapnp SB16: wavetable port=0x%lx\n", pdev->resource[0].start); 367 367 #endif … … 405 405 static int possible_dmas8[] = {1, 3, 0, -1}; 406 406 static int possible_dmas16[] = {5, 6, 7, -1}; 407 int irq, dma8,dma16;407 int xirq, xdma8, xdma16; 408 408 sb_t *chip; 409 409 snd_card_t *card; … … 412 412 snd_hwdep_t *synth = NULL; 413 413 #ifdef CONFIG_SND_SB16_CSP 414 snd_hwdep_t *csp = NULL;414 snd_hwdep_t *xcsp = NULL; 415 415 #endif 416 416 unsigned long flags; 417 417 int err; 418 418 419 card = snd_card_new(snd_index[dev], snd_id[dev], THIS_MODULE,419 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 420 420 sizeof(struct snd_sb16)); 421 421 if (card == NULL) … … 424 424 card->private_free = snd_sb16_free; 425 425 #ifdef __ISAPNP__ 426 if (snd_isapnp[dev] && snd_sb16_isapnp(dev, acard) < 0) {426 if (isapnp[dev] && snd_sb16_isapnp(dev, acard) < 0) { 427 427 snd_card_free(card); 428 428 return -EBUSY; … … 430 430 #endif 431 431 432 irq = snd_irq[dev];433 dma8 = snd_dma8[dev];434 dma16 = snd_dma16[dev];435 #ifdef __ISAPNP__ 436 if (!snd_isapnp[dev]) {437 #endif 438 if (irq == SNDRV_AUTO_IRQ) {439 if ((irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {432 xirq = irq[dev]; 433 xdma8 = dma8[dev]; 434 xdma16 = dma16[dev]; 435 #ifdef __ISAPNP__ 436 if (!isapnp[dev]) { 437 #endif 438 if (xirq == SNDRV_AUTO_IRQ) { 439 if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) { 440 440 snd_card_free(card); 441 441 printk(KERN_ERR PFX "unable to find a free IRQ\n"); … … 443 443 } 444 444 } 445 if (dma8 == SNDRV_AUTO_DMA) {446 if ((dma8 = snd_legacy_find_free_dma(possible_dmas8)) < 0) {445 if (xdma8 == SNDRV_AUTO_DMA) { 446 if ((xdma8 = snd_legacy_find_free_dma(possible_dmas8)) < 0) { 447 447 snd_card_free(card); 448 448 printk(KERN_ERR PFX "unable to find a free 8-bit DMA\n"); … … 450 450 } 451 451 } 452 if (dma16 == SNDRV_AUTO_DMA) {453 if ((dma16 = snd_legacy_find_free_dma(possible_dmas16)) < 0) {452 if (xdma16 == SNDRV_AUTO_DMA) { 453 if ((xdma16 = snd_legacy_find_free_dma(possible_dmas16)) < 0) { 454 454 snd_card_free(card); 455 455 printk(KERN_ERR PFX "unable to find a free 16-bit DMA\n"); … … 458 458 } 459 459 /* non-PnP FM port address is hardwired with base port address */ 460 snd_fm_port[dev] = snd_port[dev];460 fm_port[dev] = port[dev]; 461 461 /* block the 0x388 port to avoid PnP conflicts */ 462 462 acard->fm_res = request_region(0x388, 4, "SoundBlaster FM"); 463 463 #ifdef SNDRV_SBAWE_EMU8000 464 464 /* non-PnP AWE port address is hardwired with base port address */ 465 snd_awe_port[dev] = snd_port[dev] + 0x400;465 awe_port[dev] = port[dev] + 0x400; 466 466 #endif 467 467 #ifdef __ISAPNP__ … … 470 470 471 471 if ((err = snd_sbdsp_create(card, 472 snd_port[dev],473 472 port[dev], 473 xirq, 474 474 snd_sb16dsp_interrupt, 475 476 475 xdma8, 476 xdma16, 477 477 SB_HW_AUTO, 478 478 &chip)) < 0) { … … 482 482 if (chip->hardware != SB_HW_16) { 483 483 snd_card_free(card); 484 snd_printdd("SB 16 chip was not detected at 0x%lx\n", snd_port[dev]);484 snd_printdd("SB 16 chip was not detected at 0x%lx\n", port[dev]); 485 485 return -ENODEV; 486 486 } 487 chip->mpu_port = snd_mpu_port[dev];488 #ifdef __ISAPNP__ 489 if (!snd_isapnp[dev] && (err = snd_sb16dsp_configure(chip)) < 0) {487 chip->mpu_port = mpu_port[dev]; 488 #ifdef __ISAPNP__ 489 if (!isapnp[dev] && (err = snd_sb16dsp_configure(chip)) < 0) { 490 490 #else 491 491 if ((err = snd_sb16dsp_configure(chip)) < 0) { … … 502 502 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_SB, 503 503 chip->mpu_port, 0, 504 504 xirq, 0, &chip->rmidi)) < 0) { 505 505 snd_card_free(card); 506 506 return -ENXIO; 507 507 } 508 } 509 510 if (snd_fm_port[dev] > 0) { 511 if (snd_opl3_create(card, snd_fm_port[dev], snd_fm_port[dev] + 2, 512 OPL3_HW_OPL3, snd_fm_port[dev] == snd_port[dev], 508 chip->rmidi_callback = snd_mpu401_uart_interrupt; 509 } 510 511 if (fm_port[dev] > 0) { 512 if (snd_opl3_create(card, fm_port[dev], fm_port[dev] + 2, 513 OPL3_HW_OPL3, fm_port[dev] == port[dev], 513 514 &opl3) < 0) { 514 515 printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx\n", 515 snd_fm_port[dev], snd_fm_port[dev] + 2);516 fm_port[dev], fm_port[dev] + 2); 516 517 } else { 517 518 #ifdef SNDRV_SBAWE_EMU8000 518 int seqdev = snd_awe_port[dev] > 0 ? 2 : 1;519 int seqdev = awe_port[dev] > 0 ? 2 : 1; 519 520 #else 520 521 int seqdev = 1; … … 534 535 #ifdef CONFIG_SND_SB16_CSP 535 536 /* CSP chip on SB16ASP/AWE32 */ 536 if ((chip->hardware == SB_HW_16) && snd_csp[dev]) {537 snd_sb_csp_new(chip, synth != NULL ? 1 : 0, &csp);538 if (csp) {539 chip->csp =csp->private_data;537 if ((chip->hardware == SB_HW_16) && csp[dev]) { 538 snd_sb_csp_new(chip, synth != NULL ? 1 : 0, &xcsp); 539 if (xcsp) { 540 chip->csp = xcsp->private_data; 540 541 chip->hardware = SB_HW_16CSP; 541 542 } else { … … 545 546 #endif 546 547 #ifdef SNDRV_SBAWE_EMU8000 547 if (snd_awe_port[dev] > 0) {548 if (snd_emu8000_new(card, 1, snd_awe_port[dev],549 snd_seq_ports[dev], NULL) < 0) {550 printk(KERN_ERR PFX "fatal error - EMU-8000 synthesizer not detected at 0x%lx\n", snd_awe_port[dev]);548 if (awe_port[dev] > 0) { 549 if (snd_emu8000_new(card, 1, awe_port[dev], 550 seq_ports[dev], NULL) < 0) { 551 printk(KERN_ERR PFX "fatal error - EMU-8000 synthesizer not detected at 0x%lx\n", awe_port[dev]); 551 552 snd_card_free(card); 552 553 return -ENXIO; … … 559 560 snd_sbmixer_write(chip, SB_DSP4_MIC_AGC, 560 561 (snd_sbmixer_read(chip, SB_DSP4_MIC_AGC) & 0x01) | 561 (snd_mic_agc[dev] ? 0x00 : 0x01));562 (mic_agc[dev] ? 0x00 : 0x01)); 562 563 spin_unlock_irqrestore(&chip->mixer_lock, flags); 563 564 564 565 strcpy(card->driver, 565 566 #ifdef SNDRV_SBAWE_EMU8000 566 snd_awe_port[dev] > 0 ? "SB AWE" :567 awe_port[dev] > 0 ? "SB AWE" : 567 568 #endif 568 569 "SB16"); … … 571 572 chip->name, 572 573 chip->port, 573 574 if (dma8 >= 0)575 sprintf(card->longname + strlen(card->longname), "%d",dma8);576 if (dma16 >= 0)574 xirq); 575 if (xdma8 >= 0) 576 sprintf(card->longname + strlen(card->longname), "%d", xdma8); 577 if (xdma16 >= 0) 577 578 sprintf(card->longname + strlen(card->longname), "%s%d", 578 dma8 >= 0 ? "&" : "",dma16);579 xdma8 >= 0 ? "&" : "", xdma16); 579 580 if ((err = snd_card_register(card)) < 0) { 580 581 snd_card_free(card); … … 585 586 } 586 587 587 static int __init snd_sb16_probe_legacy_port(unsigned longport)588 static int __init snd_sb16_probe_legacy_port(unsigned long xport) 588 589 { 589 590 static int dev; … … 591 592 592 593 for ( ; dev < SNDRV_CARDS; dev++) { 593 if (!snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)594 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 594 595 continue; 595 596 #ifdef __ISAPNP__ 596 if (snd_isapnp[dev])597 if (isapnp[dev]) 597 598 continue; 598 599 #endif 599 snd_port[dev] =port;600 port[dev] = xport; 600 601 res = snd_sb16_probe(dev); 601 602 if (res < 0) 602 snd_port[dev] = SNDRV_AUTO_PORT;603 port[dev] = SNDRV_AUTO_PORT; 603 604 return res; 604 605 } … … 615 616 616 617 for ( ; dev < SNDRV_CARDS; dev++) { 617 if (!snd_enable[dev] || !snd_isapnp[dev])618 if (!enable[dev] || !isapnp[dev]) 618 619 continue; 619 620 snd_sb16_isapnp_cards[dev] = card; … … 638 639 /* legacy non-auto cards at first */ 639 640 for (dev = 0; dev < SNDRV_CARDS; dev++) { 640 if (!snd_enable[dev] || snd_port[dev] == SNDRV_AUTO_PORT)641 if (!enable[dev] || port[dev] == SNDRV_AUTO_PORT) 641 642 continue; 642 643 #ifdef __ISAPNP__ 643 if (snd_isapnp[dev])644 if (isapnp[dev]) 644 645 continue; 645 646 #endif … … 649 650 } 650 651 #ifdef MODULE 651 printk(KERN_ERR "Sound Blaster 16+ soundcard #%i not found at 0x%lx or device busy\n", dev, snd_port[dev]);652 printk(KERN_ERR "Sound Blaster 16+ soundcard #%i not found at 0x%lx or device busy\n", dev, port[dev]); 652 653 #endif 653 654 } … … 686 687 #ifndef MODULE 687 688 688 /* format is: snd-sb16= snd_enable,snd_index,snd_id,snd_isapnp,689 snd_port,snd_mpu_port,snd_fm_port,690 snd_irq,snd_dma8,snd_dma16,691 snd_mic_agc,snd_csp,692 [snd_awe_port,snd_seq_ports] */689 /* format is: snd-sb16=enable,index,id,isapnp, 690 port,mpu_port,fm_port, 691 irq,dma8,dma16, 692 mic_agc,csp, 693 [awe_port,seq_ports] */ 693 694 694 695 static int __init alsa_card_sb16_setup(char *str) … … 700 701 if (nr_dev >= SNDRV_CARDS) 701 702 return 0; 702 (void)(get_option(&str,&snd_enable[nr_dev]) == 2 &&703 get_option(&str,&snd_index[nr_dev]) == 2 &&704 get_id(&str,&snd_id[nr_dev]) == 2 &&703 (void)(get_option(&str,&enable[nr_dev]) == 2 && 704 get_option(&str,&index[nr_dev]) == 2 && 705 get_id(&str,&id[nr_dev]) == 2 && 705 706 get_option(&str,&pnp) == 2 && 706 get_option(&str,(int *)&snd_port[nr_dev]) == 2 &&707 get_option(&str,(int *)&snd_mpu_port[nr_dev]) == 2 &&708 get_option(&str,(int *)&snd_fm_port[nr_dev]) == 2 &&709 get_option(&str,&snd_irq[nr_dev]) == 2 &&710 get_option(&str,&snd_dma8[nr_dev]) == 2 &&711 get_option(&str,&snd_dma16[nr_dev]) == 2 &&712 get_option(&str,& snd_mic_agc[nr_dev]) == 2707 get_option(&str,(int *)&port[nr_dev]) == 2 && 708 get_option(&str,(int *)&mpu_port[nr_dev]) == 2 && 709 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 710 get_option(&str,&irq[nr_dev]) == 2 && 711 get_option(&str,&dma8[nr_dev]) == 2 && 712 get_option(&str,&dma16[nr_dev]) == 2 && 713 get_option(&str,&mic_agc[nr_dev]) == 2 713 714 #ifdef CONFIG_SND_SB16_CSP 714 715 && 715 get_option(&str,&snd_csp[nr_dev]) == 2716 get_option(&str,&csp[nr_dev]) == 2 716 717 #endif 717 718 #ifdef SNDRV_SBAWE_EMU8000 718 719 && 719 get_option(&str,(int *)&snd_awe_port[nr_dev]) == 2 &&720 get_option(&str,&snd_seq_ports[nr_dev]) == 2720 get_option(&str,(int *)&awe_port[nr_dev]) == 2 && 721 get_option(&str,&seq_ports[nr_dev]) == 2 721 722 #endif 722 723 ); 723 724 #ifdef __ISAPNP__ 724 725 if (pnp != INT_MAX) 725 snd_isapnp[nr_dev] = pnp;726 isapnp[nr_dev] = pnp; 726 727 #endif 727 728 #ifdef CONFIG_SND_SB16_CSP 728 729 if (csp != INT_MAX) 729 snd_csp[nr_dev] = csp;730 csp[nr_dev] = csp; 730 731 #endif 731 732 nr_dev++; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/sb/sb16_main.c ¶
r210 r212 397 397 status = snd_sbmixer_read(chip, SB_DSP4_IRQSTATUS); 398 398 spin_unlock(&chip->mixer_lock); 399 if ((status & SB_IRQTYPE_MPUIN) && chip->rmidi)400 snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs);399 if ((status & SB_IRQTYPE_MPUIN) && chip->rmidi_callback) 400 chip->rmidi_callback(irq, chip->rmidi->private_data, regs); 401 401 if (status & SB_IRQTYPE_8BIT) { 402 402 ok = 0; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/sb/sb8.c ¶
r207 r212 39 39 MODULE_DEVICES("{{Creative Labs,SB 1.0/SB 2.0/SB Pro}}"); 40 40 41 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */42 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */43 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */44 static long snd_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */45 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */46 static int snd_dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3 */47 48 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");49 MODULE_PARM_DESC( snd_index, "Index value for Sound Blaster soundcard.");50 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);51 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");52 MODULE_PARM_DESC( snd_id, "ID string for Sound Blaster soundcard.");53 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);54 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");55 MODULE_PARM_DESC( snd_enable, "Enable Sound Blaster soundcard.");56 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);57 MODULE_PARM( snd_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");58 MODULE_PARM_DESC( snd_port, "Port # for SB8 driver.");59 MODULE_PARM_SYNTAX( snd_port, SNDRV_PORT12_DESC);60 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");61 MODULE_PARM_DESC( snd_irq, "IRQ # for SB8 driver.");62 MODULE_PARM_SYNTAX( snd_irq, SNDRV_IRQ_DESC);63 MODULE_PARM( snd_dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i");64 MODULE_PARM_DESC( snd_dma8, "8-bit DMA # for SB8 driver.");65 MODULE_PARM_SYNTAX( snd_dma8, SNDRV_DMA8_DESC);41 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 42 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 43 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 44 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240,0x260 */ 45 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,10 */ 46 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 1,3 */ 47 48 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 49 MODULE_PARM_DESC(index, "Index value for Sound Blaster soundcard."); 50 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 51 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 52 MODULE_PARM_DESC(id, "ID string for Sound Blaster soundcard."); 53 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 54 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 55 MODULE_PARM_DESC(enable, "Enable Sound Blaster soundcard."); 56 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 57 MODULE_PARM(port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 58 MODULE_PARM_DESC(port, "Port # for SB8 driver."); 59 MODULE_PARM_SYNTAX(port, SNDRV_PORT12_DESC); 60 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 61 MODULE_PARM_DESC(irq, "IRQ # for SB8 driver."); 62 MODULE_PARM_SYNTAX(irq, SNDRV_IRQ_DESC); 63 MODULE_PARM(dma8, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 64 MODULE_PARM_DESC(dma8, "8-bit DMA # for SB8 driver."); 65 MODULE_PARM_SYNTAX(dma8, SNDRV_DMA8_DESC); 66 66 67 67 struct snd_sb8 { … … 73 73 static void snd_sb8_interrupt(int irq, void *dev_id, struct pt_regs *regs) 74 74 { 75 sb_t *chip = dev_id;75 sb_t *chip = snd_magic_cast(sb_t, dev_id, return); 76 76 77 77 if (chip->open & SB_OPEN_PCM) { … … 102 102 int err; 103 103 104 card = snd_card_new(snd_index[dev], snd_id[dev], THIS_MODULE,104 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 105 105 sizeof(struct snd_sb8)); 106 106 if (card == NULL) … … 112 112 acard->fm_res = request_region(0x388, 4, "SoundBlaster FM"); 113 113 114 if ((err = snd_sbdsp_create(card, snd_port[dev], snd_irq[dev],114 if ((err = snd_sbdsp_create(card, port[dev], irq[dev], 115 115 snd_sb8_interrupt, 116 snd_dma8[dev],116 dma8[dev], 117 117 -1, 118 118 SB_HW_AUTO, … … 125 125 if (chip->hardware == SB_HW_ALS100) 126 126 snd_printdd("ALS100 chip detected at 0x%lx, try snd-card-als100 module\n", 127 snd_port[dev]);127 port[dev]); 128 128 else 129 129 snd_printdd("SB 16 chip detected at 0x%lx, try snd-card-sb16 module\n", 130 snd_port[dev]);130 port[dev]); 131 131 return -ENODEV; 132 132 } … … 171 171 chip->name, 172 172 chip->port, 173 snd_irq[dev], snd_dma8[dev]);173 irq[dev], dma8[dev]); 174 174 if ((err = snd_card_register(card)) < 0) { 175 175 snd_card_free(card); … … 180 180 } 181 181 182 static int __init snd_card_sb8_legacy_auto_probe(unsigned long port)182 static int __init snd_card_sb8_legacy_auto_probe(unsigned long xport) 183 183 { 184 184 static int dev; … … 186 186 187 187 for ( ; dev < SNDRV_CARDS; dev++) { 188 if (!snd_enable[dev] || snd_port[dev] != SNDRV_AUTO_PORT)188 if (!enable[dev] || port[dev] != SNDRV_AUTO_PORT) 189 189 continue; 190 snd_port[dev] =port;190 port[dev] = xport; 191 191 res = snd_sb8_probe(dev); 192 192 if (res < 0) 193 snd_port[dev] = SNDRV_AUTO_PORT;193 port[dev] = SNDRV_AUTO_PORT; 194 194 return res; 195 195 } … … 202 202 int dev, cards; 203 203 204 for (dev = cards = 0; dev < SNDRV_CARDS && snd_enable[dev]; dev++) {205 if (snd_port[dev] == SNDRV_AUTO_PORT)204 for (dev = cards = 0; dev < SNDRV_CARDS && enable[dev]; dev++) { 205 if (port[dev] == SNDRV_AUTO_PORT) 206 206 continue; 207 207 if (snd_sb8_probe(dev) >= 0) … … 231 231 #ifndef MODULE 232 232 233 /* format is: snd-sb8= snd_enable,snd_index,snd_id,234 snd_port,snd_irq,snd_dma8 */233 /* format is: snd-sb8=enable,index,id, 234 port,irq,dma8 */ 235 235 236 236 static int __init alsa_card_sb8_setup(char *str) … … 240 240 if (nr_dev >= SNDRV_CARDS) 241 241 return 0; 242 (void)(get_option(&str,&snd_enable[nr_dev]) == 2 &&243 get_option(&str,&snd_index[nr_dev]) == 2 &&244 get_id(&str,&snd_id[nr_dev]) == 2 &&245 get_option(&str,(int *)&snd_port[nr_dev]) == 2 &&246 get_option(&str,&snd_irq[nr_dev]) == 2 &&247 get_option(&str,&snd_dma8[nr_dev]) == 2);242 (void)(get_option(&str,&enable[nr_dev]) == 2 && 243 get_option(&str,&index[nr_dev]) == 2 && 244 get_id(&str,&id[nr_dev]) == 2 && 245 get_option(&str,(int *)&port[nr_dev]) == 2 && 246 get_option(&str,&irq[nr_dev]) == 2 && 247 get_option(&str,&dma8[nr_dev]) == 2); 248 248 nr_dev++; 249 249 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/sgalaxy.c ¶
r207 r212 27 27 #include <linux/delay.h> 28 28 #include <linux/time.h> 29 #include <linux/irq.h> 29 30 #include <sound/core.h> 30 31 #include <sound/sb.h> … … 41 42 MODULE_DEVICES("{{Aztech Systems,Sound Galaxy}}"); 42 43 43 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */44 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */44 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 45 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 45 46 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 46 static long s nd_sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240 */47 static long snd_wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x530,0xe80,0xf40,0x604 */48 static int snd_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 7,9,10,11 */49 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */50 51 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");52 MODULE_PARM_DESC( snd_index, "Index value for Sound Galaxy soundcard.");53 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);54 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");55 MODULE_PARM_DESC( snd_id, "ID string for Sound Galaxy soundcard.");56 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);57 MODULE_PARM(s nd_sbport, "1-" __MODULE_STRING(SNDRV_CARDS) "l");58 MODULE_PARM_DESC(s nd_sbport, "Port # for Sound Galaxy SB driver.");59 MODULE_PARM_SYNTAX(s nd_sbport, SNDRV_ENABLED ",allows:{{0x220},{0x240}},dialog:list");60 MODULE_PARM( snd_wssport, "1-" __MODULE_STRING(SNDRV_CARDS) "l");61 MODULE_PARM_DESC( snd_wssport, "Port # for Sound Galaxy WSS driver.");62 MODULE_PARM_SYNTAX( snd_wssport, SNDRV_ENABLED ",allows:{{0x530},{0xe80},{0xf40},{0x604}},dialog:list");63 MODULE_PARM( snd_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");64 MODULE_PARM_DESC( snd_irq, "IRQ # for Sound Galaxy driver.");65 MODULE_PARM_SYNTAX( snd_irq, SNDRV_ENABLED ",allows:{{7},{9},{10},{11}},dialog:list");66 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");67 MODULE_PARM_DESC( snd_dma1, "DMA1 # for Sound Galaxy driver.");68 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA8_DESC);47 static long sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x220,0x240 */ 48 static long wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x530,0xe80,0xf40,0x604 */ 49 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 7,9,10,11 */ 50 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3 */ 51 52 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 53 MODULE_PARM_DESC(index, "Index value for Sound Galaxy soundcard."); 54 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 55 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 56 MODULE_PARM_DESC(id, "ID string for Sound Galaxy soundcard."); 57 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 58 MODULE_PARM(sbport, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 59 MODULE_PARM_DESC(sbport, "Port # for Sound Galaxy SB driver."); 60 MODULE_PARM_SYNTAX(sbport, SNDRV_ENABLED ",allows:{{0x220},{0x240}},dialog:list"); 61 MODULE_PARM(wssport, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 62 MODULE_PARM_DESC(wssport, "Port # for Sound Galaxy WSS driver."); 63 MODULE_PARM_SYNTAX(wssport, SNDRV_ENABLED ",allows:{{0x530},{0xe80},{0xf40},{0x604}},dialog:list"); 64 MODULE_PARM(irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 65 MODULE_PARM_DESC(irq, "IRQ # for Sound Galaxy driver."); 66 MODULE_PARM_SYNTAX(irq, SNDRV_ENABLED ",allows:{{7},{9},{10},{11}},dialog:list"); 67 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 68 MODULE_PARM_DESC(dma1, "DMA1 # for Sound Galaxy driver."); 69 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA8_DESC); 69 70 70 71 #define SGALAXY_AUXC_LEFT 18 … … 111 112 } 112 113 114 static void snd_sgalaxy_dummy_interrupt(int irq, void *dev_id, struct pt_regs *regs) 115 { 116 } 117 113 118 static int __init snd_sgalaxy_setup_wss(unsigned long port, int irq, int dma) 114 119 { … … 117 122 static int dma_bits[] = {1, 2, 0, 3}; 118 123 int tmp, tmp1; 119 120 unsigned long flags;121 124 122 125 if ((tmp = inb(port + 3)) == 0xff) … … 141 144 #endif 142 145 143 save_flags(flags);144 cli();145 146 146 /* initialize IRQ for WSS codec */ 147 147 tmp = interrupt_bits[irq % 16]; 148 if (tmp < 0) { 149 restore_flags(flags); 148 if (tmp < 0) 150 149 return -EINVAL; 151 } 150 151 if (request_irq(irq, snd_sgalaxy_dummy_interrupt, SA_INTERRUPT, "sgalaxy", NULL)) 152 return -EIO; 153 152 154 outb(tmp | 0x40, port); 153 155 tmp1 = dma_bits[dma % 4]; 154 156 outb(tmp | tmp1, port); 155 157 156 restore_flags(flags); 158 free_irq(irq, NULL); 159 157 160 return 0; 158 161 } … … 165 168 166 169 /* switch to WSS mode */ 167 snd_sgalaxy_sbdsp_reset(s nd_sbport[dev]);168 169 snd_sgalaxy_sbdsp_command(s nd_sbport[dev], 9);170 snd_sgalaxy_sbdsp_command(s nd_sbport[dev], 0);170 snd_sgalaxy_sbdsp_reset(sbport[dev]); 171 172 snd_sgalaxy_sbdsp_command(sbport[dev], 9); 173 snd_sgalaxy_sbdsp_command(sbport[dev], 0); 171 174 172 175 udelay(400); 173 return snd_sgalaxy_setup_wss( snd_wssport[dev], irq, dma);176 return snd_sgalaxy_setup_wss(wssport[dev], irq, dma); 174 177 } 175 178 … … 220 223 static int possible_irqs[] = {7, 9, 10, 11, -1}; 221 224 static int possible_dmas[] = {1, 3, 0, -1}; 222 int err, irq,dma1;225 int err, xirq, xdma1; 223 226 snd_card_t *card; 224 227 ad1848_t *chip; 225 228 226 if (s nd_sbport[dev] == SNDRV_AUTO_PORT) {229 if (sbport[dev] == SNDRV_AUTO_PORT) { 227 230 snd_printk("specify SB port\n"); 228 231 return -EINVAL; 229 232 } 230 if ( snd_wssport[dev] == SNDRV_AUTO_PORT) {233 if (wssport[dev] == SNDRV_AUTO_PORT) { 231 234 snd_printk("specify WSS port\n"); 232 235 return -EINVAL; 233 236 } 234 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);237 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 235 238 if (card == NULL) 236 239 return -ENOMEM; 237 240 238 irq = snd_irq[dev];239 if ( irq == SNDRV_AUTO_IRQ) {240 if (( irq = snd_legacy_find_free_irq(possible_irqs)) < 0) {241 xirq = irq[dev]; 242 if (xirq == SNDRV_AUTO_IRQ) { 243 if ((xirq = snd_legacy_find_free_irq(possible_irqs)) < 0) { 241 244 snd_card_free(card); 242 245 snd_printk("unable to find a free IRQ\n"); … … 244 247 } 245 248 } 246 dma1 = snd_dma1[dev];247 if ( dma1 == SNDRV_AUTO_DMA) {248 if (( dma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) {249 xdma1 = dma1[dev]; 250 if (xdma1 == SNDRV_AUTO_DMA) { 251 if ((xdma1 = snd_legacy_find_free_dma(possible_dmas)) < 0) { 249 252 snd_card_free(card); 250 253 snd_printk("unable to find a free DMA\n"); … … 253 256 } 254 257 255 if ((err = snd_sgalaxy_detect(dev, irq,dma1)) < 0) {256 snd_card_free(card); 257 return err; 258 } 259 260 if ((err = snd_ad1848_create(card, snd_wssport[dev] + 4,261 irq,dma1,258 if ((err = snd_sgalaxy_detect(dev, xirq, xdma1)) < 0) { 259 snd_card_free(card); 260 return err; 261 } 262 263 if ((err = snd_ad1848_create(card, wssport[dev] + 4, 264 xirq, xdma1, 262 265 AD1848_HW_DETECT, &chip)) < 0) { 263 266 snd_card_free(card); … … 284 287 strcpy(card->shortname, "Sound Galaxy"); 285 288 sprintf(card->longname, "Sound Galaxy at 0x%lx, irq %d, dma %d", 286 snd_wssport[dev], irq,dma1);289 wssport[dev], xirq, xdma1); 287 290 288 291 if ((err = snd_card_register(card)) < 0) { … … 325 328 #ifndef MODULE 326 329 327 /* format is: snd-sgalaxy=snd_enable, snd_index,snd_id,328 snd_sbport,snd_wssport,329 snd_irq,snd_dma1 */330 /* format is: snd-sgalaxy=snd_enable,index,id, 331 sbport,wssport, 332 irq,dma1 */ 330 333 331 334 static int __init alsa_card_sgalaxy_setup(char *str) … … 336 339 return 0; 337 340 (void)(get_option(&str,&snd_enable[nr_dev]) == 2 && 338 get_option(&str,& snd_index[nr_dev]) == 2 &&339 get_id(&str,& snd_id[nr_dev]) == 2 &&340 get_option(&str,(int *)&s nd_sbport[nr_dev]) == 2 &&341 get_option(&str,(int *)& snd_wssport[nr_dev]) == 2 &&342 get_option(&str,(int *)& snd_irq[nr_dev]) == 2 &&343 get_option(&str,(int *)& snd_dma1[nr_dev]) == 2);341 get_option(&str,&index[nr_dev]) == 2 && 342 get_id(&str,&id[nr_dev]) == 2 && 343 get_option(&str,(int *)&sbport[nr_dev]) == 2 && 344 get_option(&str,(int *)&wssport[nr_dev]) == 2 && 345 get_option(&str,(int *)&irq[nr_dev]) == 2 && 346 get_option(&str,(int *)&dma1[nr_dev]) == 2); 344 347 nr_dev++; 345 348 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/wavefront/wavefront.c ¶
r210 r212 42 42 MODULE_DEVICES("{{Turtle Beach,Maui/Tropez/Tropez+}}"); 43 43 44 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */45 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */46 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */47 static int snd_isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};48 static long snd_cs4232_pcm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */49 static int snd_cs4232_pcm_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */50 static long snd_cs4232_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */51 static int snd_cs4232_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */52 static long snd_ics2115_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */53 static int snd_ics2115_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,9,11,12,15 */54 static long snd_fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */55 static int snd_dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */56 static int snd_dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */57 static int snd_use_cs4232_midi[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};58 59 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");60 MODULE_PARM_DESC( snd_index, "Index value for WaveFront soundcard.");61 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);62 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");63 MODULE_PARM_DESC( snd_id, "ID string for WaveFront soundcard.");64 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);65 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");66 MODULE_PARM_DESC( snd_enable, "Enable WaveFront soundcard.");67 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);68 #ifdef __ISAPNP__ 69 MODULE_PARM( snd_isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");70 MODULE_PARM_DESC( snd_isapnp, "ISA PnP detection for WaveFront soundcards.");71 MODULE_PARM_SYNTAX( snd_isapnp, SNDRV_ISAPNP_DESC);44 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 45 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 46 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 47 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 48 static long cs4232_pcm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 49 static int cs4232_pcm_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 5,7,9,11,12,15 */ 50 static long cs4232_mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 51 static int cs4232_mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 9,11,12,15 */ 52 static long ics2115_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 53 static int ics2115_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; /* 2,9,11,12,15 */ 54 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* PnP setup */ 55 static int dma1[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 56 static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; /* 0,1,3,5,6,7 */ 57 static int use_cs4232_midi[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0}; 58 59 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 60 MODULE_PARM_DESC(index, "Index value for WaveFront soundcard."); 61 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 62 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 63 MODULE_PARM_DESC(id, "ID string for WaveFront soundcard."); 64 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 65 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 66 MODULE_PARM_DESC(enable, "Enable WaveFront soundcard."); 67 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 68 #ifdef __ISAPNP__ 69 MODULE_PARM(isapnp, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 70 MODULE_PARM_DESC(isapnp, "ISA PnP detection for WaveFront soundcards."); 71 MODULE_PARM_SYNTAX(isapnp, SNDRV_ISAPNP_DESC); 72 72 #endif 73 MODULE_PARM( snd_cs4232_pcm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");74 MODULE_PARM_DESC( snd_cs4232_pcm_port, "Port # for CS4232 PCM interface.");75 MODULE_PARM_SYNTAX( snd_cs4232_pcm_port, SNDRV_PORT12_DESC);76 MODULE_PARM( snd_cs4232_pcm_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");77 MODULE_PARM_DESC( snd_cs4232_pcm_irq, "IRQ # for CS4232 PCM interface.");78 MODULE_PARM_SYNTAX( snd_cs4232_pcm_irq, SNDRV_ENABLED ",allows:{{5},{7},{9},{11},{12},{15}},dialog:list");79 MODULE_PARM( snd_dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i");80 MODULE_PARM_DESC( snd_dma1, "DMA1 # for CS4232 PCM interface.");81 MODULE_PARM_SYNTAX( snd_dma1, SNDRV_DMA_DESC);82 MODULE_PARM( snd_dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i");83 MODULE_PARM_DESC( snd_dma2, "DMA2 # for CS4232 PCM interface.");84 MODULE_PARM_SYNTAX( snd_dma2, SNDRV_DMA_DESC);85 MODULE_PARM( snd_cs4232_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");86 MODULE_PARM_DESC( snd_cs4232_mpu_port, "port # for CS4232 MPU-401 interface.");87 MODULE_PARM_SYNTAX( snd_cs4232_mpu_port, SNDRV_PORT12_DESC);88 MODULE_PARM( snd_cs4232_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");89 MODULE_PARM_DESC( snd_cs4232_mpu_irq, "IRQ # for CS4232 MPU-401 interface.");90 MODULE_PARM_SYNTAX( snd_cs4232_mpu_irq, SNDRV_ENABLED ",allows:{{9},{11},{12},{15}},dialog:list");91 MODULE_PARM( snd_ics2115_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i");92 MODULE_PARM_DESC( snd_ics2115_irq, "IRQ # for ICS2115.");93 MODULE_PARM_SYNTAX( snd_ics2115_irq, SNDRV_ENABLED ",allows:{{9},{11},{12},{15}},dialog:list");94 MODULE_PARM( snd_ics2115_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");95 MODULE_PARM_DESC( snd_ics2115_port, "Port # for ICS2115.");96 MODULE_PARM_SYNTAX( snd_ics2115_port, SNDRV_PORT12_DESC);97 MODULE_PARM( snd_fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l");98 MODULE_PARM_DESC( snd_fm_port, "FM port #.");99 MODULE_PARM_SYNTAX( snd_fm_port, SNDRV_PORT12_DESC);100 MODULE_PARM( snd_use_cs4232_midi, "1-" __MODULE_STRING(SNDRV_CARDS) "i");101 MODULE_PARM_DESC( snd_use_cs4232_midi, "Use CS4232 MPU-401 interface (inaccessibly located inside your computer)");102 MODULE_PARM_SYNTAX( snd_use_cs4232_midi, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC);73 MODULE_PARM(cs4232_pcm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 74 MODULE_PARM_DESC(cs4232_pcm_port, "Port # for CS4232 PCM interface."); 75 MODULE_PARM_SYNTAX(cs4232_pcm_port, SNDRV_PORT12_DESC); 76 MODULE_PARM(cs4232_pcm_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 77 MODULE_PARM_DESC(cs4232_pcm_irq, "IRQ # for CS4232 PCM interface."); 78 MODULE_PARM_SYNTAX(cs4232_pcm_irq, SNDRV_ENABLED ",allows:{{5},{7},{9},{11},{12},{15}},dialog:list"); 79 MODULE_PARM(dma1, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 80 MODULE_PARM_DESC(dma1, "DMA1 # for CS4232 PCM interface."); 81 MODULE_PARM_SYNTAX(dma1, SNDRV_DMA_DESC); 82 MODULE_PARM(dma2, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 83 MODULE_PARM_DESC(dma2, "DMA2 # for CS4232 PCM interface."); 84 MODULE_PARM_SYNTAX(dma2, SNDRV_DMA_DESC); 85 MODULE_PARM(cs4232_mpu_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 86 MODULE_PARM_DESC(cs4232_mpu_port, "port # for CS4232 MPU-401 interface."); 87 MODULE_PARM_SYNTAX(cs4232_mpu_port, SNDRV_PORT12_DESC); 88 MODULE_PARM(cs4232_mpu_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 89 MODULE_PARM_DESC(cs4232_mpu_irq, "IRQ # for CS4232 MPU-401 interface."); 90 MODULE_PARM_SYNTAX(cs4232_mpu_irq, SNDRV_ENABLED ",allows:{{9},{11},{12},{15}},dialog:list"); 91 MODULE_PARM(ics2115_irq, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 92 MODULE_PARM_DESC(ics2115_irq, "IRQ # for ICS2115."); 93 MODULE_PARM_SYNTAX(ics2115_irq, SNDRV_ENABLED ",allows:{{9},{11},{12},{15}},dialog:list"); 94 MODULE_PARM(ics2115_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 95 MODULE_PARM_DESC(ics2115_port, "Port # for ICS2115."); 96 MODULE_PARM_SYNTAX(ics2115_port, SNDRV_PORT12_DESC); 97 MODULE_PARM(fm_port, "1-" __MODULE_STRING(SNDRV_CARDS) "l"); 98 MODULE_PARM_DESC(fm_port, "FM port #."); 99 MODULE_PARM_SYNTAX(fm_port, SNDRV_PORT12_DESC); 100 MODULE_PARM(use_cs4232_midi, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 101 MODULE_PARM_DESC(use_cs4232_midi, "Use CS4232 MPU-401 interface (inaccessibly located inside your computer)"); 102 MODULE_PARM_SYNTAX(use_cs4232_midi, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC); 103 103 104 104 static snd_card_t *snd_wavefront_cards[SNDRV_CARDS] = SNDRV_DEFAULT_PTR; … … 158 158 */ 159 159 160 if ( snd_use_cs4232_midi[dev]) {160 if (use_cs4232_midi[dev]) { 161 161 acard->mpu = isapnp_find_dev(card, id->devs[2].vendor, id->devs[2].function, NULL); 162 162 if (acard->mpu->active) { … … 200 200 */ 201 201 202 if ( snd_cs4232_pcm_port[dev] != SNDRV_AUTO_PORT)203 isapnp_resource_change(&pdev->resource[0], snd_cs4232_pcm_port[dev], 4);204 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT)205 isapnp_resource_change(&pdev->resource[1], snd_fm_port[dev], 4);206 if ( snd_dma1[dev] != SNDRV_AUTO_DMA)207 isapnp_resource_change(&pdev->dma_resource[0], snd_dma1[dev], 1);208 if ( snd_dma2[dev] != SNDRV_AUTO_DMA)209 isapnp_resource_change(&pdev->dma_resource[1], snd_dma2[dev], 1);210 if ( snd_cs4232_pcm_irq[dev] != SNDRV_AUTO_IRQ)211 isapnp_resource_change(&pdev->irq_resource[0], snd_cs4232_pcm_irq[dev], 1);202 if (cs4232_pcm_port[dev] != SNDRV_AUTO_PORT) 203 isapnp_resource_change(&pdev->resource[0], cs4232_pcm_port[dev], 4); 204 if (fm_port[dev] != SNDRV_AUTO_PORT) 205 isapnp_resource_change(&pdev->resource[1], fm_port[dev], 4); 206 if (dma1[dev] != SNDRV_AUTO_DMA) 207 isapnp_resource_change(&pdev->dma_resource[0], dma1[dev], 1); 208 if (dma2[dev] != SNDRV_AUTO_DMA) 209 isapnp_resource_change(&pdev->dma_resource[1], dma2[dev], 1); 210 if (cs4232_pcm_irq[dev] != SNDRV_AUTO_IRQ) 211 isapnp_resource_change(&pdev->irq_resource[0], cs4232_pcm_irq[dev], 1); 212 212 213 213 if (pdev->activate(pdev)<0) { … … 216 216 } 217 217 218 snd_cs4232_pcm_port[dev] = pdev->resource[0].start;219 snd_fm_port[dev] = pdev->resource[1].start;220 snd_dma1[dev] = pdev->dma_resource[0].start;221 snd_dma2[dev] = pdev->dma_resource[1].start;222 snd_cs4232_pcm_irq[dev] = pdev->irq_resource[0].start;218 cs4232_pcm_port[dev] = pdev->resource[0].start; 219 fm_port[dev] = pdev->resource[1].start; 220 dma1[dev] = pdev->dma_resource[0].start; 221 dma2[dev] = pdev->dma_resource[1].start; 222 cs4232_pcm_irq[dev] = pdev->irq_resource[0].start; 223 223 224 224 /* Synth initialization */ … … 235 235 return -EAGAIN; 236 236 } 237 if ( snd_ics2115_port[dev] != SNDRV_AUTO_PORT) {238 isapnp_resource_change(&pdev->resource[0], snd_ics2115_port[dev], 16);237 if (ics2115_port[dev] != SNDRV_AUTO_PORT) { 238 isapnp_resource_change(&pdev->resource[0], ics2115_port[dev], 16); 239 239 } 240 240 241 if ( snd_ics2115_port[dev] != SNDRV_AUTO_IRQ) {242 isapnp_resource_change(&pdev->irq_resource[0], snd_ics2115_irq[dev], 1);241 if (ics2115_port[dev] != SNDRV_AUTO_IRQ) { 242 isapnp_resource_change(&pdev->irq_resource[0], ics2115_irq[dev], 1); 243 243 } 244 244 … … 249 249 } 250 250 251 snd_ics2115_port[dev] = pdev->resource[0].start;252 snd_ics2115_irq[dev] = pdev->irq_resource[0].start;251 ics2115_port[dev] = pdev->resource[0].start; 252 ics2115_irq[dev] = pdev->irq_resource[0].start; 253 253 254 254 /* CS4232 MPU initialization. Configure this only if … … 257 257 */ 258 258 259 if ( snd_use_cs4232_midi[dev]) {259 if (use_cs4232_midi[dev]) { 260 260 261 261 pdev = acard->mpu; … … 269 269 } 270 270 271 if ( snd_cs4232_mpu_port[dev] != SNDRV_AUTO_PORT)272 isapnp_resource_change(&pdev->resource[0], snd_cs4232_mpu_port[dev], 2);273 if ( snd_cs4232_mpu_irq[dev] != SNDRV_AUTO_IRQ)274 isapnp_resource_change(&pdev->resource[0], snd_cs4232_mpu_irq[dev], 1);271 if (cs4232_mpu_port[dev] != SNDRV_AUTO_PORT) 272 isapnp_resource_change(&pdev->resource[0], cs4232_mpu_port[dev], 2); 273 if (cs4232_mpu_irq[dev] != SNDRV_AUTO_IRQ) 274 isapnp_resource_change(&pdev->resource[0], cs4232_mpu_irq[dev], 1); 275 275 276 276 if (pdev->activate(pdev)<0) { 277 277 snd_printk("isapnp CS4232 MPU activation failed\n"); 278 snd_cs4232_mpu_port[dev] = SNDRV_AUTO_PORT;278 cs4232_mpu_port[dev] = SNDRV_AUTO_PORT; 279 279 } else { 280 snd_cs4232_mpu_port[dev] = pdev->resource[0].start;281 snd_cs4232_mpu_irq[dev] = pdev->irq_resource[0].start;280 cs4232_mpu_port[dev] = pdev->resource[0].start; 281 cs4232_mpu_irq[dev] = pdev->irq_resource[0].start; 282 282 } 283 283 284 284 snd_printk ("CS4232 MPU: port=0x%lx, irq=%i\n", 285 snd_cs4232_mpu_port[dev],286 snd_cs4232_mpu_irq[dev]);285 cs4232_mpu_port[dev], 286 cs4232_mpu_irq[dev]); 287 287 } 288 288 289 289 snd_printdd ("CS4232: pcm port=0x%lx, fm port=0x%lx, dma1=%i, dma2=%i, irq=%i\nICS2115: port=0x%lx, irq=%i\n", 290 snd_cs4232_pcm_port[dev],291 snd_fm_port[dev],292 snd_dma1[dev],293 snd_dma2[dev],294 snd_cs4232_pcm_irq[dev],295 snd_ics2115_port[dev],296 snd_ics2115_irq[dev]);290 cs4232_pcm_port[dev], 291 fm_port[dev], 292 dma1[dev], 293 dma2[dev], 294 cs4232_pcm_irq[dev], 295 ics2115_port[dev], 296 ics2115_irq[dev]); 297 297 298 298 return 0; … … 465 465 int hw_dev = 0, midi_dev = 0, err; 466 466 467 if ( snd_cs4232_mpu_port[dev] < 0)468 snd_cs4232_mpu_port[dev] = SNDRV_AUTO_PORT;469 if ( snd_fm_port[dev] < 0)470 snd_fm_port[dev] = SNDRV_AUTO_PORT;471 if ( snd_ics2115_port[dev] < 0)472 snd_ics2115_port[dev] = SNDRV_AUTO_PORT;473 474 #ifdef __ISAPNP__ 475 if (! snd_isapnp[dev]) {467 if (cs4232_mpu_port[dev] < 0) 468 cs4232_mpu_port[dev] = SNDRV_AUTO_PORT; 469 if (fm_port[dev] < 0) 470 fm_port[dev] = SNDRV_AUTO_PORT; 471 if (ics2115_port[dev] < 0) 472 ics2115_port[dev] = SNDRV_AUTO_PORT; 473 474 #ifdef __ISAPNP__ 475 if (!isapnp[dev]) { 476 476 #endif 477 if ( snd_cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) {477 if (cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) { 478 478 snd_printk("specify CS4232 port\n"); 479 479 return -EINVAL; 480 480 } 481 if ( snd_ics2115_port[dev] == SNDRV_AUTO_PORT) {481 if (ics2115_port[dev] == SNDRV_AUTO_PORT) { 482 482 snd_printk("specify ICS2115 port\n"); 483 483 return -ENODEV; … … 486 486 } 487 487 #endif 488 card = snd_card_new ( snd_index[dev],489 snd_id[dev],488 card = snd_card_new (index[dev], 489 id[dev], 490 490 THIS_MODULE, 491 491 sizeof(snd_wavefront_card_t)); … … 496 496 acard = (snd_wavefront_card_t *)card->private_data; 497 497 acard->wavefront.irq = -1; 498 spin_lock_init(&acard->wavefront.irq_lock); 498 499 init_waitqueue_head(&acard->wavefront.interrupt_sleeper); 499 500 spin_lock_init(&acard->wavefront.midi.open); … … 502 503 503 504 #ifdef __ISAPNP__ 504 if ( snd_isapnp[dev] && snd_wavefront_isapnp (dev, acard) < 0) {505 if ( snd_cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) {505 if (isapnp[dev] && snd_wavefront_isapnp (dev, acard) < 0) { 506 if (cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) { 506 507 snd_printk ("isapnp detection failed\n"); 507 508 snd_card_free (card); … … 514 515 515 516 if ((err = snd_cs4231_create (card, 516 snd_cs4232_pcm_port[dev],517 cs4232_pcm_port[dev], 517 518 -1, 518 snd_cs4232_pcm_irq[dev],519 snd_dma1[dev],520 snd_dma2[dev],519 cs4232_pcm_irq[dev], 520 dma1[dev], 521 dma2[dev], 521 522 CS4231_HW_DETECT, 0, &chip)) < 0) { 522 523 snd_card_free(card); … … 536 537 /* ---------- OPL3 synth --------- */ 537 538 538 if ( snd_fm_port[dev] != SNDRV_AUTO_PORT) {539 if (fm_port[dev] != SNDRV_AUTO_PORT) { 539 540 opl3_t *opl3; 540 541 541 542 if ((err = snd_opl3_create(card, 542 snd_fm_port[dev],543 snd_fm_port[dev] + 2,543 fm_port[dev], 544 fm_port[dev] + 2, 544 545 OPL3_HW_OPL3_CS, 545 546 0, &opl3)) < 0) { … … 558 559 /* ------- ICS2115 Wavetable synth ------- */ 559 560 560 if ((acard->wavefront.res_base = request_region( snd_ics2115_port[dev], 16, "ICS2115")) == NULL) {561 snd_printk("unable to grab ICS2115 i/o region 0x%lx-0x%lx\n", snd_ics2115_port[dev], snd_ics2115_port[dev] + 16 - 1);561 if ((acard->wavefront.res_base = request_region(ics2115_port[dev], 16, "ICS2115")) == NULL) { 562 snd_printk("unable to grab ICS2115 i/o region 0x%lx-0x%lx\n", ics2115_port[dev], ics2115_port[dev] + 16 - 1); 562 563 snd_card_free(card); 563 564 return -EBUSY; 564 565 } 565 if (request_irq( snd_ics2115_irq[dev], snd_wavefront_ics2115_interrupt, SA_INTERRUPT, "ICS2115", (void *)acard)) {566 snd_printk("unable to use ICS2115 IRQ %d\n", snd_ics2115_irq[dev]);566 if (request_irq(ics2115_irq[dev], snd_wavefront_ics2115_interrupt, SA_INTERRUPT, "ICS2115", (void *)acard)) { 567 snd_printk("unable to use ICS2115 IRQ %d\n", ics2115_irq[dev]); 567 568 snd_card_free(card); 568 569 return -EBUSY; 569 570 } 570 571 571 acard->wavefront.irq = snd_ics2115_irq[dev];572 acard->wavefront.base = snd_ics2115_port[dev];572 acard->wavefront.irq = ics2115_irq[dev]; 573 acard->wavefront.base = ics2115_port[dev]; 573 574 574 575 if ((wavefront_synth = snd_wavefront_new_synth (card, hw_dev, acard)) == NULL) { … … 592 593 /* -------- CS4232 MPU-401 interface -------- */ 593 594 594 if ( snd_cs4232_mpu_port[dev] > 0 && snd_cs4232_mpu_port[dev] != SNDRV_AUTO_PORT) {595 if (cs4232_mpu_port[dev] > 0 && cs4232_mpu_port[dev] != SNDRV_AUTO_PORT) { 595 596 if ((err = snd_mpu401_uart_new(card, midi_dev, MPU401_HW_CS4232, 596 snd_cs4232_mpu_port[dev], 0,597 snd_cs4232_mpu_irq[dev],597 cs4232_mpu_port[dev], 0, 598 cs4232_mpu_irq[dev], 598 599 SA_INTERRUPT, 599 600 NULL)) < 0) { … … 607 608 /* ------ ICS2115 internal MIDI ------------ */ 608 609 609 if ( snd_ics2115_port[dev] >= 0 && snd_ics2115_port[dev] != SNDRV_AUTO_PORT) {610 if (ics2115_port[dev] >= 0 && ics2115_port[dev] != SNDRV_AUTO_PORT) { 610 611 ics2115_internal_rmidi = 611 612 snd_wavefront_new_midi (card, 612 613 midi_dev, 613 614 acard, 614 snd_ics2115_port[dev],615 ics2115_port[dev], 615 616 internal_mpu); 616 617 if (ics2115_internal_rmidi == NULL) { … … 624 625 /* ------ ICS2115 external MIDI ------------ */ 625 626 626 if ( snd_ics2115_port[dev] >= 0 && snd_ics2115_port[dev] != SNDRV_AUTO_PORT) {627 if (ics2115_port[dev] >= 0 && ics2115_port[dev] != SNDRV_AUTO_PORT) { 627 628 ics2115_external_rmidi = 628 629 snd_wavefront_new_midi (card, 629 630 midi_dev, 630 631 acard, 631 snd_ics2115_port[dev],632 ics2115_port[dev], 632 633 external_mpu); 633 634 if (ics2115_external_rmidi == NULL) { … … 645 646 hw_dev, 646 647 acard, 647 snd_ics2115_port[dev]);648 ics2115_port[dev]); 648 649 if (fx_processor == NULL) { 649 650 snd_printk ("can't setup FX device\n"); … … 671 672 card->driver, 672 673 chip->port, 673 snd_cs4232_pcm_irq[dev],674 snd_dma1[dev]);675 676 if ( snd_dma2[dev] >= 0 && snd_dma2[dev] < 8)677 sprintf(card->longname + strlen(card->longname), "&%d", snd_dma2[dev]);678 679 if ( snd_cs4232_mpu_port[dev] != SNDRV_AUTO_PORT) {674 cs4232_pcm_irq[dev], 675 dma1[dev]); 676 677 if (dma2[dev] >= 0 && dma2[dev] < 8) 678 sprintf(card->longname + strlen(card->longname), "&%d", dma2[dev]); 679 680 if (cs4232_mpu_port[dev] != SNDRV_AUTO_PORT) { 680 681 sprintf (card->longname + strlen (card->longname), 681 682 " MPU-401 0x%lx irq %d", 682 snd_cs4232_mpu_port[dev],683 snd_cs4232_mpu_irq[dev]);683 cs4232_mpu_port[dev], 684 cs4232_mpu_irq[dev]); 684 685 } 685 686 686 687 sprintf (card->longname + strlen (card->longname), 687 688 " SYNTH 0x%lx irq %d", 688 snd_ics2115_port[dev],689 snd_ics2115_irq[dev]);689 ics2115_port[dev], 690 ics2115_irq[dev]); 690 691 691 692 if ((err = snd_card_register(card)) < 0) { … … 706 707 707 708 for ( ; dev < SNDRV_CARDS; dev++) { 708 if (! snd_enable[dev] || !snd_isapnp[dev])709 if (!enable[dev] || !isapnp[dev]) 709 710 continue; 710 711 snd_wavefront_isapnp_cards[dev] = card; … … 727 728 int dev; 728 729 for (dev = 0; dev < SNDRV_CARDS; dev++) { 729 if (! snd_enable[dev])730 if (!enable[dev]) 730 731 continue; 731 732 #ifdef __ISAPNP__ 732 if ( snd_isapnp[dev])733 if (isapnp[dev]) 733 734 continue; 734 735 #endif … … 761 762 #ifndef MODULE 762 763 763 /* format is: snd-wavefront= snd_enable,snd_index,snd_id,snd_isapnp,764 snd_cs4232_pcm_port,snd_cs4232_pcm_irq,765 snd_cs4232_mpu_port,snd_cs4232_mpu_irq,766 snd_ics2115_port,snd_ics2115_irq,767 snd_fm_port,768 snd_dma1,snd_dma2,769 snd_use_cs4232_midi */764 /* format is: snd-wavefront=enable,index,id,isapnp, 765 cs4232_pcm_port,cs4232_pcm_irq, 766 cs4232_mpu_port,cs4232_mpu_irq, 767 ics2115_port,ics2115_irq, 768 fm_port, 769 dma1,dma2, 770 use_cs4232_midi */ 770 771 771 772 static int __init alsa_card_wavefront_setup(char *str) … … 775 776 if (nr_dev >= SNDRV_CARDS) 776 777 return 0; 777 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&778 get_option(&str,& snd_index[nr_dev]) == 2 &&779 get_id(&str,& snd_id[nr_dev]) == 2 &&780 get_option(&str,& snd_isapnp[nr_dev]) == 2 &&781 get_option(&str,(int *)& snd_cs4232_pcm_port[nr_dev]) == 2 &&782 get_option(&str,& snd_cs4232_pcm_irq[nr_dev]) == 2 &&783 get_option(&str,(int *)& snd_cs4232_mpu_port[nr_dev]) == 2 &&784 get_option(&str,& snd_cs4232_mpu_irq[nr_dev]) == 2 &&785 get_option(&str,(int *)& snd_ics2115_port[nr_dev]) == 2 &&786 get_option(&str,& snd_ics2115_irq[nr_dev]) == 2 &&787 get_option(&str,(int *)& snd_fm_port[nr_dev]) == 2 &&788 get_option(&str,& snd_dma1[nr_dev]) == 2 &&789 get_option(&str,& snd_dma2[nr_dev]) == 2 &&790 get_option(&str,& snd_use_cs4232_midi[nr_dev]) == 2);778 (void)(get_option(&str,&enable[nr_dev]) == 2 && 779 get_option(&str,&index[nr_dev]) == 2 && 780 get_id(&str,&id[nr_dev]) == 2 && 781 get_option(&str,&isapnp[nr_dev]) == 2 && 782 get_option(&str,(int *)&cs4232_pcm_port[nr_dev]) == 2 && 783 get_option(&str,&cs4232_pcm_irq[nr_dev]) == 2 && 784 get_option(&str,(int *)&cs4232_mpu_port[nr_dev]) == 2 && 785 get_option(&str,&cs4232_mpu_irq[nr_dev]) == 2 && 786 get_option(&str,(int *)&ics2115_port[nr_dev]) == 2 && 787 get_option(&str,&ics2115_irq[nr_dev]) == 2 && 788 get_option(&str,(int *)&fm_port[nr_dev]) == 2 && 789 get_option(&str,&dma1[nr_dev]) == 2 && 790 get_option(&str,&dma2[nr_dev]) == 2 && 791 get_option(&str,&use_cs4232_midi[nr_dev]) == 2); 791 792 nr_dev++; 792 793 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/isa/wavefront/wavefront_synth.c ¶
r210 r212 115 115 #ifdef WF_DEBUG 116 116 117 #if def NEW_MACRO_VARARGS117 #if defined(NEW_MACRO_VARARGS) || __GNUC__ >= 3 118 118 #define DPRINT(cond, ...) \ 119 119 if ((dev->debug & (cond)) == (cond)) { \ … … 1710 1710 } 1711 1711 1712 spin_lock(&dev->irq_lock); 1712 1713 dev->irq_ok = 1; 1713 1714 dev->irq_cnt++; 1714 wake_up_interruptible (&dev->interrupt_sleeper); 1715 spin_unlock(&dev->irq_lock); 1716 wake_up(&dev->interrupt_sleeper); 1715 1717 } 1716 1718 … … 1760 1762 1761 1763 { 1762 unsigned long flags; 1763 1764 save_flags (flags); 1765 cli(); 1764 wait_queue_t wait; 1765 1766 init_waitqueue_entry(&wait, current); 1767 spin_lock_irq(&dev->irq_lock); 1768 add_wait_queue(&dev->interrupt_sleeper, &wait); 1766 1769 dev->irq_ok = 0; 1767 1770 outb (val,port); 1768 interruptible_sleep_on_timeout (&dev->interrupt_sleeper, timeout); 1769 restore_flags (flags); 1771 spin_unlock_irq(&dev->irq_lock); 1772 while (1) { 1773 if ((timeout = schedule_timeout(timeout)) == 0) 1774 return; 1775 if (dev->irq_ok) 1776 return; 1777 } 1770 1778 } 1771 1779 -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/cs4281.c ¶
r210 r212 2152 2152 #ifndef MODULE 2153 2153 2154 /* format is: snd-cs4281= snd_enable,snd_index,snd_id */2154 /* format is: snd-cs4281=enable,index,id */ 2155 2155 2156 2156 static int __init alsa_card_cs4281_setup(char *str) -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/es1968.c ¶
r210 r212 1329 1329 1330 1330 static snd_pcm_hardware_t snd_es1968_playback = { 1331 /* info: */(SNDRV_PCM_INFO_MMAP |1331 .info = (SNDRV_PCM_INFO_MMAP | 1332 1332 SNDRV_PCM_INFO_MMAP_VALID | 1333 1333 SNDRV_PCM_INFO_INTERLEAVED | … … 1335 1335 /*SNDRV_PCM_INFO_PAUSE |*/ 1336 1336 SNDRV_PCM_INFO_RESUME), 1337 /* formats: */SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,1338 /* rates: */SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,1339 /* rate_min: */4000,1340 /* rate_max: */48000,1341 /* channels_min: */1,1342 /* channels_max: */2,1343 /* buffer_bytes_max: */65536,1344 /* period_bytes_min: */256,1345 /* period_bytes_max: */65536,1346 /* periods_min: */1,1347 /* periods_max: */1024,1348 /* fifo_size: */0,1337 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE, 1338 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1339 .rate_min = 4000, 1340 .rate_max = 48000, 1341 .channels_min = 1, 1342 .channels_max = 2, 1343 .buffer_bytes_max = 65536, 1344 .period_bytes_min = 256, 1345 .period_bytes_max = 65536, 1346 .periods_min = 1, 1347 .periods_max = 1024, 1348 .fifo_size = 0, 1349 1349 }; 1350 1350 1351 1351 static snd_pcm_hardware_t snd_es1968_capture = { 1352 /* info: */(SNDRV_PCM_INFO_NONINTERLEAVED |1352 .info = (SNDRV_PCM_INFO_NONINTERLEAVED | 1353 1353 SNDRV_PCM_INFO_MMAP | 1354 1354 SNDRV_PCM_INFO_MMAP_VALID | … … 1356 1356 /*SNDRV_PCM_INFO_PAUSE |*/ 1357 1357 SNDRV_PCM_INFO_RESUME), 1358 /* formats: *//*SNDRV_PCM_FMTBIT_U8 |*/ SNDRV_PCM_FMTBIT_S16_LE,1359 /* rates: */SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,1360 /* rate_min: */4000,1361 /* rate_max: */48000,1362 /* channels_min: */1,1363 /* channels_max: */2,1364 /* buffer_bytes_max: */65536,1365 /* period_bytes_min: */256,1366 /* period_bytes_max: */65536,1367 /* periods_min: */1,1368 /* periods_max: */1024,1369 /* fifo_size: */0,1358 .formats = /*SNDRV_PCM_FMTBIT_U8 |*/ SNDRV_PCM_FMTBIT_S16_LE, 1359 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1360 .rate_min = 4000, 1361 .rate_max = 48000, 1362 .channels_min = 1, 1363 .channels_max = 2, 1364 .buffer_bytes_max = 65536, 1365 .period_bytes_min = 256, 1366 .period_bytes_max = 65536, 1367 .periods_min = 1, 1368 .periods_max = 1024, 1369 .fifo_size = 0, 1370 1370 }; 1371 1371 -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/ice1712/ice1712.c ¶
r211 r212 26 26 */ 27 27 28 /* 29 * Changes: 30 * 31 * 2002.09.09 Takashi Iwai <tiwai@suse.de> 32 * split the code to several files. each low-level routine 33 * is stored in the local file and called from registration 34 * function from card_info struct. 35 */ 36 37 28 38 #include <sound/driver.h> 29 39 #include <asm/io.h> … … 34 44 #include <linux/slab.h> 35 45 #include <sound/core.h> 36 #include <sound/control.h>37 #include <sound/pcm.h>38 #include <sound/ac97_codec.h>39 #include <sound/mpu401.h>40 #include <sound/i2c.h>41 46 #include <sound/cs8427.h> 42 47 #include <sound/info.h> 48 #include <sound/mpu401.h> 43 49 #define SNDRV_GET_ID 44 50 #include <sound/initval.h> … … 46 52 #include <sound/asoundef.h> 47 53 48 #define SND_CS8403 49 #define SND_CS8404 50 #include <sound/cs8403.h> 54 #include "ice1712.h" 55 56 /* lowlevel routines */ 57 #include "delta.h" 58 #include "ews.h" 59 #include "hoontech.h" 51 60 52 61 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>"); … … 54 63 MODULE_LICENSE("GPL"); 55 64 MODULE_CLASSES("{sound}"); 56 MODULE_DEVICES("{{Hoontech SoundTrack DSP 24}," 57 "{MidiMan M Audio,Delta 1010}," 58 "{MidiMan M Audio,Delta DiO 2496}," 59 "{MidiMan M Audio,Delta 66}," 60 "{MidiMan M Audio,Delta 44}," 61 "{MidiMan M Audio,Audiophile 24/96}," 62 "{TerraTec,EWX 24/96}," 63 "{TerraTec,EWS 88MT}," 64 "{TerraTec,EWS 88D}," 65 "{TerraTec,DMX 6Fire}," 65 MODULE_DEVICES("{" 66 HOONTECH_DEVICE_DESC 67 DELTA_DEVICE_DESC 68 EWS_DEVICE_DESC 66 69 "{ICEnsemble,Generic ICE1712}," 67 70 "{ICEnsemble,Generic Envy24}}"); 68 71 69 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */70 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */71 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */72 static int snd_omni[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 0}; /* Delta44 & 66 Omni I/O support */73 74 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");75 MODULE_PARM_DESC( snd_index, "Index value for ICE1712 soundcard.");76 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);77 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");78 MODULE_PARM_DESC( snd_id, "ID string for ICE1712 soundcard.");79 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);80 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");81 MODULE_PARM_DESC( snd_enable, "Enable ICE1712 soundcard.");82 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);83 MODULE_PARM( snd_omni, "1-" __MODULE_STRING(SNDRV_CARDS) "i");84 MODULE_PARM_DESC( snd_omni, "Enable Midiman M-Audio Delta Omni I/O support.");85 MODULE_PARM_SYNTAX( snd_omni, SNDRV_ENABLED "," SNDRV_ENABLE_DESC);72 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 73 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 74 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ 75 static int omni[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 0}; /* Delta44 & 66 Omni I/O support */ 76 77 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 78 MODULE_PARM_DESC(index, "Index value for ICE1712 soundcard."); 79 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 80 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 81 MODULE_PARM_DESC(id, "ID string for ICE1712 soundcard."); 82 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 83 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 84 MODULE_PARM_DESC(enable, "Enable ICE1712 soundcard."); 85 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 86 MODULE_PARM(omni, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 87 MODULE_PARM_DESC(omni, "Enable Midiman M-Audio Delta Omni I/O support."); 88 MODULE_PARM_SYNTAX(omni, SNDRV_ENABLED "," SNDRV_ENABLE_DESC); 86 89 87 90 #ifndef PCI_VENDOR_ID_ICE … … 92 95 #endif 93 96 94 #define ICE1712_SUBDEVICE_STDSP24 0x12141217 /* Hoontech SoundTrack Audio DSP 24 */95 #define ICE1712_SUBDEVICE_DELTA1010 0x121430d696 #define ICE1712_SUBDEVICE_DELTADIO2496 0x121431d697 #define ICE1712_SUBDEVICE_DELTA66 0x121432d698 #define ICE1712_SUBDEVICE_DELTA44 0x121433d699 #define ICE1712_SUBDEVICE_AUDIOPHILE 0x121434d6100 #define ICE1712_SUBDEVICE_DELTA1010LT 0x12143bd6101 #define ICE1712_SUBDEVICE_EWX2496 0x3b153011102 #define ICE1712_SUBDEVICE_EWS88MT 0x3b151511103 #define ICE1712_SUBDEVICE_EWS88D 0x3b152b11104 #define ICE1712_SUBDEVICE_DMX6FIRE 0x3b153811105 106 /*107 * Direct registers108 */109 110 #define ICEREG(ice, x) ((ice)->port + ICE1712_REG_##x)111 112 #define ICE1712_REG_CONTROL 0x00 /* byte */113 #define ICE1712_RESET 0x80 /* reset whole chip */114 #define ICE1712_SERR_LEVEL 0x04 /* SERR# level otherwise edge */115 #define ICE1712_NATIVE 0x01 /* native mode otherwise SB */116 #define ICE1712_REG_IRQMASK 0x01 /* byte */117 #define ICE1712_IRQ_MPU1 0x80118 #define ICE1712_IRQ_TIMER 0x40119 #define ICE1712_IRQ_MPU2 0x20120 #define ICE1712_IRQ_PROPCM 0x10121 #define ICE1712_IRQ_FM 0x08 /* FM/MIDI - legacy */122 #define ICE1712_IRQ_PBKDS 0x04 /* playback DS channels */123 #define ICE1712_IRQ_CONCAP 0x02 /* consumer capture */124 #define ICE1712_IRQ_CONPBK 0x01 /* consumer playback */125 #define ICE1712_REG_IRQSTAT 0x02 /* byte */126 /* look to ICE1712_IRQ_* */127 #define ICE1712_REG_INDEX 0x03 /* byte - indirect CCIxx regs */128 #define ICE1712_REG_DATA 0x04 /* byte - indirect CCIxx regs */129 #define ICE1712_REG_NMI_STAT1 0x05 /* byte */130 #define ICE1712_REG_NMI_DATA 0x06 /* byte */131 #define ICE1712_REG_NMI_INDEX 0x07 /* byte */132 #define ICE1712_REG_AC97_INDEX 0x08 /* byte */133 #define ICE1712_REG_AC97_CMD 0x09 /* byte */134 #define ICE1712_AC97_COLD 0x80 /* cold reset */135 #define ICE1712_AC97_WARM 0x40 /* warm reset */136 #define ICE1712_AC97_WRITE 0x20 /* W: write, R: write in progress */137 #define ICE1712_AC97_READ 0x10 /* W: read, R: read in progress */138 #define ICE1712_AC97_READY 0x08 /* codec ready status bit */139 #define ICE1712_AC97_PBK_VSR 0x02 /* playback VSR */140 #define ICE1712_AC97_CAP_VSR 0x01 /* capture VSR */141 #define ICE1712_REG_AC97_DATA 0x0a /* word (little endian) */142 #define ICE1712_REG_MPU1_CTRL 0x0c /* byte */143 #define ICE1712_REG_MPU1_DATA 0x0d /* byte */144 #define ICE1712_REG_I2C_DEV_ADDR 0x10 /* byte */145 #define ICE1712_I2C_WRITE 0x01 /* write direction */146 #define ICE1712_REG_I2C_BYTE_ADDR 0x11 /* byte */147 #define ICE1712_REG_I2C_DATA 0x12 /* byte */148 #define ICE1712_REG_I2C_CTRL 0x13 /* byte */149 #define ICE1712_I2C_EEPROM 0x80 /* EEPROM exists */150 #define ICE1712_I2C_BUSY 0x01 /* busy bit */151 #define ICE1712_REG_CONCAP_ADDR 0x14 /* dword - consumer capture */152 #define ICE1712_REG_CONCAP_COUNT 0x18 /* word - current/base count */153 #define ICE1712_REG_SERR_SHADOW 0x1b /* byte */154 #define ICE1712_REG_MPU2_CTRL 0x1c /* byte */155 #define ICE1712_REG_MPU2_DATA 0x1d /* byte */156 #define ICE1712_REG_TIMER 0x1e /* word */157 158 /*159 * Indirect registers160 */161 162 #define ICE1712_IREG_PBK_COUNT_HI 0x00163 #define ICE1712_IREG_PBK_COUNT_LO 0x01164 #define ICE1712_IREG_PBK_CTRL 0x02165 #define ICE1712_IREG_PBK_LEFT 0x03 /* left volume */166 #define ICE1712_IREG_PBK_RIGHT 0x04 /* right volume */167 #define ICE1712_IREG_PBK_SOFT 0x05 /* soft volume */168 #define ICE1712_IREG_PBK_RATE_LO 0x06169 #define ICE1712_IREG_PBK_RATE_MID 0x07170 #define ICE1712_IREG_PBK_RATE_HI 0x08171 #define ICE1712_IREG_CAP_COUNT_HI 0x10172 #define ICE1712_IREG_CAP_COUNT_LO 0x11173 #define ICE1712_IREG_CAP_CTRL 0x12174 #define ICE1712_IREG_GPIO_DATA 0x20175 #define ICE1712_IREG_GPIO_WRITE_MASK 0x21176 #define ICE1712_IREG_GPIO_DIRECTION 0x22177 #define ICE1712_IREG_CONSUMER_POWERDOWN 0x30178 #define ICE1712_IREG_PRO_POWERDOWN 0x31179 180 /*181 * Consumer section direct DMA registers182 */183 184 #define ICEDS(ice, x) ((ice)->dmapath_port + ICE1712_DS_##x)185 186 #define ICE1712_DS_INTMASK 0x00 /* word - interrupt mask */187 #define ICE1712_DS_INTSTAT 0x02 /* word - interrupt status */188 #define ICE1712_DS_DATA 0x04 /* dword - channel data */189 #define ICE1712_DS_INDEX 0x08 /* dword - channel index */190 191 /*192 * Consumer section channel registers193 */194 195 #define ICE1712_DSC_ADDR0 0x00 /* dword - base address 0 */196 #define ICE1712_DSC_COUNT0 0x01 /* word - count 0 */197 #define ICE1712_DSC_ADDR1 0x02 /* dword - base address 1 */198 #define ICE1712_DSC_COUNT1 0x03 /* word - count 1 */199 #define ICE1712_DSC_CONTROL 0x04 /* byte - control & status */200 #define ICE1712_BUFFER1 0x80 /* buffer1 is active */201 #define ICE1712_BUFFER1_AUTO 0x40 /* buffer1 auto init */202 #define ICE1712_BUFFER0_AUTO 0x20 /* buffer0 auto init */203 #define ICE1712_FLUSH 0x10 /* flush FIFO */204 #define ICE1712_STEREO 0x08 /* stereo */205 #define ICE1712_16BIT 0x04 /* 16-bit data */206 #define ICE1712_PAUSE 0x02 /* pause */207 #define ICE1712_START 0x01 /* start */208 #define ICE1712_DSC_RATE 0x05 /* dword - rate */209 #define ICE1712_DSC_VOLUME 0x06 /* word - volume control */210 211 /*212 * Professional multi-track direct control registers213 */214 215 #define ICEMT(ice, x) ((ice)->profi_port + ICE1712_MT_##x)216 217 #define ICE1712_MT_IRQ 0x00 /* byte - interrupt mask */218 #define ICE1712_MULTI_CAPTURE 0x80 /* capture IRQ */219 #define ICE1712_MULTI_PLAYBACK 0x40 /* playback IRQ */220 #define ICE1712_MULTI_CAPSTATUS 0x02 /* capture IRQ status */221 #define ICE1712_MULTI_PBKSTATUS 0x01 /* playback IRQ status */222 #define ICE1712_MT_RATE 0x01 /* byte - sampling rate select */223 #define ICE1712_SPDIF_MASTER 0x10 /* S/PDIF input is master clock */224 #define ICE1712_MT_I2S_FORMAT 0x02 /* byte - I2S data format */225 #define ICE1712_MT_AC97_INDEX 0x04 /* byte - AC'97 index */226 #define ICE1712_MT_AC97_CMD 0x05 /* byte - AC'97 command & status */227 /* look to ICE1712_AC97_* */228 #define ICE1712_MT_AC97_DATA 0x06 /* word - AC'97 data */229 #define ICE1712_MT_PLAYBACK_ADDR 0x10 /* dword - playback address */230 #define ICE1712_MT_PLAYBACK_SIZE 0x14 /* word - playback size */231 #define ICE1712_MT_PLAYBACK_COUNT 0x16 /* word - playback count */232 #define ICE1712_MT_PLAYBACK_CONTROL 0x18 /* byte - control */233 #define ICE1712_CAPTURE_START_SHADOW 0x04 /* capture start */234 #define ICE1712_PLAYBACK_PAUSE 0x02 /* playback pause */235 #define ICE1712_PLAYBACK_START 0x01 /* playback start */236 #define ICE1712_MT_CAPTURE_ADDR 0x20 /* dword - capture address */237 #define ICE1712_MT_CAPTURE_SIZE 0x24 /* word - capture size */238 #define ICE1712_MT_CAPTURE_COUNT 0x26 /* word - capture count */239 #define ICE1712_MT_CAPTURE_CONTROL 0x28 /* byte - control */240 #define ICE1712_CAPTURE_START 0x01 /* capture start */241 #define ICE1712_MT_ROUTE_PSDOUT03 0x30 /* word */242 #define ICE1712_MT_ROUTE_SPDOUT 0x32 /* word */243 #define ICE1712_MT_ROUTE_CAPTURE 0x34 /* dword */244 #define ICE1712_MT_MONITOR_VOLUME 0x38 /* word */245 #define ICE1712_MT_MONITOR_INDEX 0x3a /* byte */246 #define ICE1712_MT_MONITOR_RATE 0x3b /* byte */247 #define ICE1712_MT_MONITOR_ROUTECTRL 0x3c /* byte */248 #define ICE1712_ROUTE_AC97 0x01 /* route digital mixer output to AC'97 */249 #define ICE1712_MT_MONITOR_PEAKINDEX 0x3e /* byte */250 #define ICE1712_MT_MONITOR_PEAKDATA 0x3f /* byte */251 252 /*253 * Codec configuration bits254 */255 256 /* PCI[60] System Configuration */257 #define ICE1712_CFG_CLOCK 0xc0258 #define ICE1712_CFG_CLOCK512 0x00 /* 22.5692Mhz, 44.1kHz*512 */259 #define ICE1712_CFG_CLOCK384 0x40 /* 16.9344Mhz, 44.1kHz*384 */260 #define ICE1712_CFG_EXT 0x80 /* external clock */261 #define ICE1712_CFG_2xMPU401 0x20 /* two MPU401 UARTs */262 #define ICE1712_CFG_NO_CON_AC97 0x10 /* consumer AC'97 codec is not present */263 #define ICE1712_CFG_ADC_MASK 0x0c /* one, two, three, four stereo ADCs */264 #define ICE1712_CFG_DAC_MASK 0x03 /* one, two, three, four stereo DACs */265 /* PCI[61] AC-Link Configuration */266 #define ICE1712_CFG_PRO_I2S 0x80 /* multitrack converter: I2S or AC'97 */267 #define ICE1712_CFG_AC97_PACKED 0x01 /* split or packed mode - AC'97 */268 /* PCI[62] I2S Features */269 #define ICE1712_CFG_I2S_VOLUME 0x80 /* volume/mute capability */270 #define ICE1712_CFG_I2S_96KHZ 0x40 /* supports 96kHz sampling */271 #define ICE1712_CFG_I2S_RESMASK 0x30 /* resolution mask, 16,18,20,24-bit */272 #define ICE1712_CFG_I2S_OTHER 0x0f /* other I2S IDs */273 /* PCI[63] S/PDIF Configuration */274 #define ICE1712_CFG_I2S_CHIPID 0xfc /* I2S chip ID */275 #define ICE1712_CFG_SPDIF_IN 0x02 /* S/PDIF input is present */276 #define ICE1712_CFG_SPDIF_OUT 0x01 /* S/PDIF output is present */277 278 /*279 * MidiMan M-Audio Delta GPIO definitions280 */281 282 /* MidiMan M-Audio Delta1010 */283 #define ICE1712_DELTA_DFS 0x01 /* fast/slow sample rate mode */284 /* (>48kHz must be 1) */285 #define ICE1712_DELTA_SPDIF_IN_STAT 0x02286 /* S/PDIF input status */287 /* 0 = valid signal is present */288 /* all except Delta44 */289 /* look to CS8414 datasheet */290 #define ICE1712_DELTA_SPDIF_OUT_STAT_CLOCK 0x04291 /* S/PDIF output status clock */292 /* (writting on rising edge - 0->1) */293 /* all except Delta44 */294 /* look to CS8404A datasheet */295 #define ICE1712_DELTA_SPDIF_OUT_STAT_DATA 0x08296 /* S/PDIF output status data */297 /* all except Delta44 */298 /* look to CS8404A datasheet */299 /* MidiMan M-Audio DeltaDiO */300 /* 0x01 = DFS */301 /* 0x02 = SPDIF_IN_STAT */302 /* 0x04 = SPDIF_OUT_STAT_CLOCK */303 /* 0x08 = SPDIF_OUT_STAT_DATA */304 #define ICE1712_DELTA_SPDIF_INPUT_SELECT 0x10305 /* coaxial (0), optical (1) */306 /* S/PDIF input select*/307 308 /* MidiMan M-Audio Delta1010 */309 /* 0x01 = DFS */310 /* 0x02 = SPDIF_IN_STAT */311 /* 0x04 = SPDIF_OUT_STAT_CLOCK */312 /* 0x08 = SPDIF_OUT_STAT_DATA */313 #define ICE1712_DELTA_WORD_CLOCK_SELECT 0x10314 /* 1 - clock are taken from S/PDIF input */315 /* 0 - clock are taken from Word Clock input */316 /* affected SPMCLKIN pin of Envy24 */317 #define ICE1712_DELTA_WORD_CLOCK_STATUS 0x20318 /* 0 = valid word clock signal is present */319 320 /* MidiMan M-Audio Delta66 */321 /* 0x01 = DFS */322 /* 0x02 = SPDIF_IN_STAT */323 /* 0x04 = SPDIF_OUT_STAT_CLOCK */324 /* 0x08 = SPDIF_OUT_STAT_DATA */325 #define ICE1712_DELTA_CODEC_SERIAL_DATA 0x10326 /* AKM4524 serial data */327 #define ICE1712_DELTA_CODEC_SERIAL_CLOCK 0x20328 /* AKM4524 serial clock */329 /* (writting on rising edge - 0->1 */330 #define ICE1712_DELTA_CODEC_CHIP_A 0x40331 #define ICE1712_DELTA_CODEC_CHIP_B 0x80332 /* 1 - select chip A or B */333 334 /* MidiMan M-Audio Delta44 */335 /* 0x01 = DFS */336 /* 0x10 = CODEC_SERIAL_DATA */337 /* 0x20 = CODEC_SERIAL_CLOCK */338 /* 0x40 = CODEC_CHIP_A */339 /* 0x80 = CODEC_CHIP_B */340 341 /* MidiMan M-Audio Audiophile definitions */342 /* 0x01 = DFS */343 #define ICE1712_DELTA_AP_CCLK 0x02 /* SPI clock */344 /* (clocking on rising edge - 0->1) */345 #define ICE1712_DELTA_AP_DIN 0x04 /* data input */346 #define ICE1712_DELTA_AP_DOUT 0x08 /* data output */347 #define ICE1712_DELTA_AP_CS_DIGITAL 0x10 /* CS8427 chip select */348 /* low signal = select */349 #define ICE1712_DELTA_AP_CS_CODEC 0x20 /* AK4528 chip select */350 /* low signal = select */351 352 /* Hoontech SoundTrack Audio DSP 24 GPIO definitions */353 354 #define ICE1712_STDSP24_0_BOX(r, x) r[0] = ((r[0] & ~3) | ((x)&3))355 #define ICE1712_STDSP24_0_DAREAR(r, x) r[0] = ((r[0] & ~4) | (((x)&1)<<2))356 #define ICE1712_STDSP24_1_CHN1(r, x) r[1] = ((r[1] & ~1) | ((x)&1))357 #define ICE1712_STDSP24_1_CHN2(r, x) r[1] = ((r[1] & ~2) | (((x)&1)<<1))358 #define ICE1712_STDSP24_1_CHN3(r, x) r[1] = ((r[1] & ~4) | (((x)&1)<<2))359 #define ICE1712_STDSP24_2_CHN4(r, x) r[2] = ((r[2] & ~1) | ((x)&1))360 #define ICE1712_STDSP24_2_MIDIIN(r, x) r[2] = ((r[2] & ~2) | (((x)&1)<<1))361 #define ICE1712_STDSP24_2_MIDI1(r, x) r[2] = ((r[2] & ~4) | (((x)&1)<<2))362 #define ICE1712_STDSP24_3_MIDI2(r, x) r[3] = ((r[3] & ~1) | ((x)&1))363 #define ICE1712_STDSP24_3_MUTE(r, x) r[3] = ((r[3] & ~2) | (((x)&1)<<1))364 #define ICE1712_STDSP24_3_INSEL(r, x) r[3] = ((r[3] & ~4) | (((x)&1)<<2))365 #define ICE1712_STDSP24_SET_ADDR(r, a) r[a&3] = ((r[a&3] & ~0x18) | (((a)&3)<<3))366 #define ICE1712_STDSP24_CLOCK(r, a, c) r[a&3] = ((r[a&3] & ~0x20) | (((c)&1)<<5))367 #define ICE1712_STDSP24_CLOCK_BIT (1<<5)368 369 /* Hoontech SoundTrack Audio DSP 24 box configuration definitions */370 371 #define ICE1712_STDSP24_DAREAR (1<<0)372 #define ICE1712_STDSP24_MUTE (1<<1)373 #define ICE1712_STDSP24_INSEL (1<<2)374 375 #define ICE1712_STDSP24_BOX_CHN1 (1<<0) /* input channel 1 */376 #define ICE1712_STDSP24_BOX_CHN2 (1<<1) /* input channel 2 */377 #define ICE1712_STDSP24_BOX_CHN3 (1<<2) /* input channel 3 */378 #define ICE1712_STDSP24_BOX_CHN4 (1<<3) /* input channel 4 */379 #define ICE1712_STDSP24_BOX_MIDI1 (1<<8)380 #define ICE1712_STDSP24_BOX_MIDI2 (1<<9)381 382 /* TerraTec EWX 24/96 configuration definitions */383 384 #define ICE1712_EWX2496_AK4524_CS 0x01 /* AK4524 chip select; low = active */385 #define ICE1712_EWX2496_AIN_SEL 0x02 /* input sensitivity switch; high = louder */386 #define ICE1712_EWX2496_AOUT_SEL 0x04 /* output sensitivity switch; high = louder */387 #define ICE1712_EWX2496_RW 0x08 /* read/write switch for i2c; high = write */388 #define ICE1712_EWX2496_SERIAL_DATA 0x10 /* i2c & ak4524 data */389 #define ICE1712_EWX2496_SERIAL_CLOCK 0x20 /* i2c & ak4524 clock */390 #define ICE1712_EWX2496_TX2 0x40 /* MIDI2 (not used) */391 #define ICE1712_EWX2496_RX2 0x80 /* MIDI2 (not used) */392 393 /* TerraTec EWS 88MT/D configuration definitions */394 /* RW, SDA snd SCLK are identical with EWX24/96 */395 #define ICE1712_EWS88_CS8414_RATE 0x07 /* CS8414 sample rate: gpio 0-2 */396 #define ICE1712_EWS88_RW 0x08 /* read/write switch for i2c; high = write */397 #define ICE1712_EWS88_SERIAL_DATA 0x10 /* i2c & ak4524 data */398 #define ICE1712_EWS88_SERIAL_CLOCK 0x20 /* i2c & ak4524 clock */399 #define ICE1712_EWS88_TX2 0x40 /* MIDI2 (only on 88D) */400 #define ICE1712_EWS88_RX2 0x80 /* MIDI2 (only on 88D) */401 402 /* i2c address */403 #define ICE1712_EWS88MT_CS8404_ADDR (0x40>>1)404 #define ICE1712_EWS88MT_INPUT_ADDR (0x46>>1)405 #define ICE1712_EWS88MT_OUTPUT_ADDR (0x48>>1)406 #define ICE1712_EWS88MT_OUTPUT_SENSE 0x40 /* mask */407 #define ICE1712_EWS88D_PCF_ADDR (0x40>>1)408 409 /* TerraTec DMX 6Fire configuration definitions */410 #define ICE1712_6FIRE_AK4524_CS_MASK 0x07 /* AK4524 chip select #1-#3 */411 #define ICE1712_6FIRE_RW 0x08 /* read/write switch for i2c; high = write */412 #define ICE1712_6FIRE_SERIAL_DATA 0x10 /* i2c & ak4524 data */413 #define ICE1712_6FIRE_SERIAL_CLOCK 0x20 /* i2c & ak4524 clock */414 #define ICE1712_6FIRE_TX2 0x40 /* MIDI2 */415 #define ICE1712_6FIRE_RX2 0x80 /* MIDI2 */416 417 #define ICE1712_6FIRE_CS8427_ADDR (0x22>>1) /* ?? */418 419 /*420 * DMA mode values421 * identical with DMA_XXX on i386 architecture.422 */423 #define ICE1712_DMA_MODE_WRITE 0x48424 #define ICE1712_DMA_AUTOINIT 0x10425 426 427 /*428 *429 */430 431 typedef struct _snd_ice1712 ice1712_t;432 433 typedef struct {434 unsigned int subvendor; /* PCI[2c-2f] */435 unsigned char size; /* size of EEPROM image in bytes */436 unsigned char version; /* must be 1 */437 unsigned char codec; /* codec configuration PCI[60] */438 unsigned char aclink; /* ACLink configuration PCI[61] */439 unsigned char i2sID; /* PCI[62] */440 unsigned char spdif; /* S/PDIF configuration PCI[63] */441 unsigned char gpiomask; /* GPIO initial mask, 0 = write, 1 = don't */442 unsigned char gpiostate; /* GPIO initial state */443 unsigned char gpiodir; /* GPIO direction state */444 unsigned short ac97main;445 unsigned short ac97pcm;446 unsigned short ac97rec;447 unsigned char ac97recsrc;448 unsigned char dacID[4]; /* I2S IDs for DACs */449 unsigned char adcID[4]; /* I2S IDs for ADCs */450 unsigned char extra[4];451 } ice1712_eeprom_t;452 453 struct _snd_ice1712 {454 unsigned long conp_dma_size;455 unsigned long conc_dma_size;456 unsigned long prop_dma_size;457 unsigned long proc_dma_size;458 int irq;459 460 unsigned long port;461 struct resource *res_port;462 unsigned long ddma_port;463 struct resource *res_ddma_port;464 unsigned long dmapath_port;465 struct resource *res_dmapath_port;466 unsigned long profi_port;467 struct resource *res_profi_port;468 469 unsigned int config; /* system configuration */470 471 struct pci_dev *pci;472 snd_card_t *card;473 snd_pcm_t *pcm;474 snd_pcm_t *pcm_ds;475 snd_pcm_t *pcm_pro;476 snd_pcm_substream_t *playback_con_substream;477 snd_pcm_substream_t *playback_con_substream_ds[6];478 snd_pcm_substream_t *capture_con_substream;479 snd_pcm_substream_t *playback_pro_substream;480 snd_pcm_substream_t *capture_pro_substream;481 unsigned int playback_pro_size;482 unsigned int capture_pro_size;483 unsigned int playback_con_virt_addr[6];484 unsigned int playback_con_active_buf[6];485 unsigned int capture_con_virt_addr;486 unsigned int ac97_ext_id;487 ac97_t *ac97;488 snd_rawmidi_t *rmidi[2];489 490 spinlock_t reg_lock;491 struct semaphore gpio_mutex;492 snd_info_entry_t *proc_entry;493 494 ice1712_eeprom_t eeprom;495 496 unsigned int pro_volumes[20];497 int ak4528: 1, /* AK4524 or AK4528 */498 omni: 1; /* Delta Omni I/O */499 int num_adcs; /* AK4524 or AK4528 ADCs */500 int num_dacs; /* AK4524 or AK4528 DACs */501 int num_total_dacs; /* total DACs */502 unsigned char ak4524_images[4][8];503 unsigned char ak4524_ipga_gain[4][2];504 unsigned char hoontech_boxbits[4];505 unsigned int hoontech_config;506 unsigned short hoontech_boxconfig[4];507 508 snd_i2c_bus_t *i2c; /* I2C bus */509 snd_i2c_device_t *cs8404; /* CS8404A I2C device */510 snd_i2c_device_t *cs8427; /* CS8427 I2C device */511 snd_i2c_device_t *pcf8574[2]; /* PCF8574 Output/Input (EWS88MT) */512 snd_i2c_device_t *pcf8575; /* PCF8575 (EWS88D) */513 514 unsigned char cs8403_spdif_bits;515 unsigned char cs8403_spdif_stream_bits;516 snd_kcontrol_t *spdif_stream_ctl;517 518 unsigned char gpio_direction, gpio_write_mask;519 };520 521 #define chip_t ice1712_t522 523 97 static struct pci_device_id snd_ice1712_ids[] __devinitdata = { 524 98 { PCI_VENDOR_ID_ICE, PCI_DEVICE_ID_ICE_1712, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, }, /* ICE1712 */ … … 534 108 * Basic I/O 535 109 */ 536 537 static inline void snd_ice1712_write(ice1712_t * ice, u8 addr, u8 data)538 {539 outb(addr, ICEREG(ice, INDEX));540 outb(data, ICEREG(ice, DATA));541 }542 543 static inline u8 snd_ice1712_read(ice1712_t * ice, u8 addr)544 {545 outb(addr, ICEREG(ice, INDEX));546 return inb(ICEREG(ice, DATA));547 }548 110 549 111 static inline void snd_ice1712_ds_write(ice1712_t * ice, u8 channel, u8 addr, u32 data) … … 708 270 709 271 710 /*711 */712 713 static void snd_ice1712_delta_cs8403_spdif_write(ice1712_t *ice, unsigned char bits)714 {715 unsigned char tmp, mask1, mask2;716 int idx;717 /* send byte to transmitter */718 mask1 = ICE1712_DELTA_SPDIF_OUT_STAT_CLOCK;719 mask2 = ICE1712_DELTA_SPDIF_OUT_STAT_DATA;720 down(&ice->gpio_mutex);721 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);722 for (idx = 7; idx >= 0; idx--) {723 tmp &= ~(mask1 | mask2);724 if (bits & (1 << idx))725 tmp |= mask2;726 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);727 udelay(100);728 tmp |= mask1;729 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);730 udelay(100);731 }732 tmp &= ~mask1;733 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);734 up(&ice->gpio_mutex);735 }736 737 272 738 273 /* 739 274 * set gpio direction, write mask and data 740 275 */ 741 staticvoid snd_ice1712_gpio_write_bits(ice1712_t *ice, int mask, int bits)276 void snd_ice1712_gpio_write_bits(ice1712_t *ice, int mask, int bits) 742 277 { 743 278 ice->gpio_direction |= mask; … … 749 284 /* 750 285 */ 751 static voidsave_gpio_status(ice1712_t *ice, unsigned char *tmp)286 void snd_ice1712_save_gpio_status(ice1712_t *ice, unsigned char *tmp) 752 287 { 753 288 down(&ice->gpio_mutex); … … 756 291 } 757 292 758 static voidrestore_gpio_status(ice1712_t *ice, unsigned char *tmp)293 void snd_ice1712_restore_gpio_status(ice1712_t *ice, unsigned char *tmp) 759 294 { 760 295 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, tmp[0]); … … 765 300 } 766 301 302 767 303 /* 768 * CS8427 via SPI mode (for Audiophile), emulated I2C 304 * 305 * CS8427 interface 306 * 769 307 */ 770 771 /* send 8 bits */772 static void ap_cs8427_write_byte(ice1712_t *ice, unsigned char data, unsigned char tmp)773 {774 int idx;775 776 for (idx = 7; idx >= 0; idx--) {777 tmp &= ~(ICE1712_DELTA_AP_DOUT|ICE1712_DELTA_AP_CCLK);778 if (data & (1 << idx))779 tmp |= ICE1712_DELTA_AP_DOUT;780 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);781 udelay(5);782 tmp |= ICE1712_DELTA_AP_CCLK;783 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);784 udelay(5);785 }786 }787 788 /* read 8 bits */789 static unsigned char ap_cs8427_read_byte(ice1712_t *ice, unsigned char tmp)790 {791 unsigned char data = 0;792 int idx;793 794 for (idx = 7; idx >= 0; idx--) {795 tmp &= ~ICE1712_DELTA_AP_CCLK;796 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);797 udelay(5);798 if (snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA) & ICE1712_DELTA_AP_DIN)799 data |= 1 << idx;800 tmp |= ICE1712_DELTA_AP_CCLK;801 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);802 udelay(5);803 }804 return data;805 }806 807 /* assert chip select */808 static unsigned char ap_cs8427_codec_select(ice1712_t *ice)809 {810 unsigned char tmp;811 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);812 tmp |= ICE1712_DELTA_AP_CCLK | ICE1712_DELTA_AP_CS_CODEC;813 tmp &= ~ICE1712_DELTA_AP_CS_DIGITAL;814 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);815 udelay(5);816 return tmp;817 }818 819 /* deassert chip select */820 static void ap_cs8427_codec_deassert(ice1712_t *ice, unsigned char tmp)821 {822 tmp |= ICE1712_DELTA_AP_CS_DIGITAL;823 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);824 }825 826 /* sequential write */827 static int ap_cs8427_sendbytes(snd_i2c_device_t *device, unsigned char *bytes, int count)828 {829 ice1712_t *ice = snd_magic_cast(ice1712_t, device->bus->private_data, return -EIO);830 int res = count;831 unsigned char tmp;832 833 down(&ice->gpio_mutex);834 tmp = ap_cs8427_codec_select(ice);835 ap_cs8427_write_byte(ice, (device->addr << 1) | 0, tmp); /* address + write mode */836 while (count-- > 0)837 ap_cs8427_write_byte(ice, *bytes++, tmp);838 ap_cs8427_codec_deassert(ice, tmp);839 up(&ice->gpio_mutex);840 return res;841 }842 843 /* sequential read */844 static int ap_cs8427_readbytes(snd_i2c_device_t *device, unsigned char *bytes, int count)845 {846 ice1712_t *ice = snd_magic_cast(ice1712_t, device->bus->private_data, return -EIO);847 int res = count;848 unsigned char tmp;849 850 down(&ice->gpio_mutex);851 tmp = ap_cs8427_codec_select(ice);852 ap_cs8427_write_byte(ice, (device->addr << 1) | 1, tmp); /* address + read mode */853 while (count-- > 0)854 *bytes++ = ap_cs8427_read_byte(ice, tmp);855 ap_cs8427_codec_deassert(ice, tmp);856 up(&ice->gpio_mutex);857 return res;858 }859 860 static int ap_cs8427_probeaddr(snd_i2c_bus_t *bus, unsigned short addr)861 {862 if (addr == 0x10)863 return 1;864 return -ENOENT;865 }866 867 static snd_i2c_ops_t ap_cs8427_i2c_ops = {868 .sendbytes = ap_cs8427_sendbytes,869 .readbytes = ap_cs8427_readbytes,870 .probeaddr = ap_cs8427_probeaddr,871 };872 873 /*874 * access via i2c mode (for EWX 24/96, EWS 88MT&D)875 */876 877 /* send SDA and SCL */878 static void ewx_i2c_setlines(snd_i2c_bus_t *bus, int clk, int data)879 {880 ice1712_t *ice = snd_magic_cast(ice1712_t, bus->private_data, return);881 unsigned char tmp = 0;882 if (clk)883 tmp |= ICE1712_EWX2496_SERIAL_CLOCK;884 if (data)885 tmp |= ICE1712_EWX2496_SERIAL_DATA;886 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);887 udelay(5);888 }889 890 static int ewx_i2c_getclock(snd_i2c_bus_t *bus)891 {892 ice1712_t *ice = snd_magic_cast(ice1712_t, bus->private_data, return -EIO);893 return snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA) & ICE1712_EWX2496_SERIAL_CLOCK ? 1 : 0;894 }895 896 static int ewx_i2c_getdata(snd_i2c_bus_t *bus, int ack)897 {898 ice1712_t *ice = snd_magic_cast(ice1712_t, bus->private_data, return -EIO);899 int bit;900 /* set RW pin to low */901 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, ~ICE1712_EWX2496_RW);902 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, 0);903 if (ack)904 udelay(5);905 bit = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA) & ICE1712_EWX2496_SERIAL_DATA ? 1 : 0;906 /* set RW pin to high */907 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, ICE1712_EWX2496_RW);908 /* reset write mask */909 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, ~ICE1712_EWX2496_SERIAL_CLOCK);910 return bit;911 }912 913 static void ewx_i2c_start(snd_i2c_bus_t *bus)914 {915 ice1712_t *ice = snd_magic_cast(ice1712_t, bus->private_data, return);916 unsigned char mask;917 918 save_gpio_status(ice, (unsigned char *)&bus->private_value);919 /* set RW high */920 mask = ICE1712_EWX2496_RW;921 switch (ice->eeprom.subvendor) {922 case ICE1712_SUBDEVICE_EWX2496:923 mask |= ICE1712_EWX2496_AK4524_CS; /* CS high also */924 break;925 case ICE1712_SUBDEVICE_DMX6FIRE:926 mask |= ICE1712_6FIRE_AK4524_CS_MASK; /* CS high also */927 break;928 }929 snd_ice1712_gpio_write_bits(ice, mask, mask);930 }931 932 static void ewx_i2c_stop(snd_i2c_bus_t *bus)933 {934 ice1712_t *ice = snd_magic_cast(ice1712_t, bus->private_data, return);935 restore_gpio_status(ice, (unsigned char *)&bus->private_value);936 }937 938 static void ewx_i2c_direction(snd_i2c_bus_t *bus, int clock, int data)939 {940 ice1712_t *ice = snd_magic_cast(ice1712_t, bus->private_data, return);941 unsigned char mask = 0;942 943 if (clock)944 mask |= ICE1712_EWX2496_SERIAL_CLOCK; /* write SCL */945 if (data)946 mask |= ICE1712_EWX2496_SERIAL_DATA; /* write SDA */947 ice->gpio_direction &= ~(ICE1712_EWX2496_SERIAL_CLOCK|ICE1712_EWX2496_SERIAL_DATA);948 ice->gpio_direction |= mask;949 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, ice->gpio_direction);950 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, ~mask);951 }952 953 static snd_i2c_bit_ops_t snd_ice1712_ewx_cs8427_bit_ops = {954 .start = ewx_i2c_start,955 .stop = ewx_i2c_stop,956 .direction = ewx_i2c_direction,957 .setlines = ewx_i2c_setlines,958 .getclock = ewx_i2c_getclock,959 .getdata = ewx_i2c_getdata,960 };961 962 /* AK4524 chip select; address 0x48 bit 0-3 */963 static int snd_ice1712_ews88mt_chip_select(ice1712_t *ice, int chip_mask)964 {965 unsigned char data, ndata;966 967 snd_assert(chip_mask >= 0 && chip_mask <= 0x0f, return -EINVAL);968 snd_i2c_lock(ice->i2c);969 if (snd_i2c_readbytes(ice->pcf8574[1], &data, 1) != 1)970 goto __error;971 ndata = (data & 0xf0) | chip_mask;972 if (ndata != data)973 if (snd_i2c_sendbytes(ice->pcf8574[1], &ndata, 1) != 1)974 goto __error;975 snd_i2c_unlock(ice->i2c);976 return 0;977 978 __error:979 snd_i2c_unlock(ice->i2c);980 snd_printk(KERN_ERR "AK4524 chip select failed, check cable to the front module\n");981 return -EIO;982 }983 984 /*985 * write AK4524 register986 */987 static void snd_ice1712_ak4524_write(ice1712_t *ice, int chip,988 unsigned char addr, unsigned char data)989 {990 unsigned char tmp, data_mask, clk_mask, saved[2];991 unsigned char codecs_mask;992 int idx, cif;993 unsigned int addrdata;994 995 snd_assert(chip >= 0 && chip < 4, return);996 997 if (ice->eeprom.subvendor == ICE1712_SUBDEVICE_EWS88MT) {998 /* assert AK4524 CS */999 if (snd_ice1712_ews88mt_chip_select(ice, ~(1 << chip) & 0x0f) < 0)1000 return;1001 //snd_ice1712_ews88mt_chip_select(ice, 0x0f);1002 }1003 1004 cif = 0; /* the default level of the CIF pin from AK4524 */1005 save_gpio_status(ice, saved);1006 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);1007 switch (ice->eeprom.subvendor) {1008 case ICE1712_SUBDEVICE_AUDIOPHILE:1009 data_mask = ICE1712_DELTA_AP_DOUT;1010 clk_mask = ICE1712_DELTA_AP_CCLK;1011 codecs_mask = ICE1712_DELTA_AP_CS_CODEC; /* select AK4528 codec */1012 tmp |= ICE1712_DELTA_AP_CS_DIGITAL; /* assert digital high */1013 break;1014 case ICE1712_SUBDEVICE_EWX2496:1015 data_mask = ICE1712_EWX2496_SERIAL_DATA;1016 clk_mask = ICE1712_EWX2496_SERIAL_CLOCK;1017 codecs_mask = ICE1712_EWX2496_AK4524_CS;1018 tmp |= ICE1712_EWX2496_RW; /* set rw bit high */1019 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION,1020 ice->gpio_direction | data_mask | clk_mask |1021 codecs_mask | ICE1712_EWX2496_RW);1022 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK,1023 ~(data_mask | clk_mask |1024 codecs_mask | ICE1712_EWX2496_RW));1025 cif = 1; /* CIF high */1026 break;1027 case ICE1712_SUBDEVICE_EWS88MT:1028 data_mask = ICE1712_EWS88_SERIAL_DATA;1029 clk_mask = ICE1712_EWS88_SERIAL_CLOCK;1030 codecs_mask = 0; /* no chip select on gpio */1031 tmp |= ICE1712_EWS88_RW; /* set rw bit high */1032 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION,1033 ice->gpio_direction | data_mask | clk_mask |1034 codecs_mask | ICE1712_EWS88_RW);1035 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK,1036 ~(data_mask | clk_mask |1037 codecs_mask | ICE1712_EWS88_RW));1038 cif = 1; /* CIF high */1039 break;1040 case ICE1712_SUBDEVICE_DMX6FIRE:1041 data_mask = ICE1712_6FIRE_SERIAL_DATA;1042 clk_mask = ICE1712_6FIRE_SERIAL_CLOCK;1043 codecs_mask = (1 << chip) & ICE1712_6FIRE_AK4524_CS_MASK;1044 tmp |= ICE1712_6FIRE_RW; /* set rw bit high */1045 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION,1046 ice->gpio_direction | data_mask | clk_mask |1047 codecs_mask | ICE1712_6FIRE_RW);1048 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK,1049 ~(data_mask | clk_mask |1050 codecs_mask | ICE1712_6FIRE_RW));1051 cif = 1; /* CIF high */1052 break;1053 default:1054 data_mask = ICE1712_DELTA_CODEC_SERIAL_DATA;1055 clk_mask = ICE1712_DELTA_CODEC_SERIAL_CLOCK;1056 codecs_mask = chip == 0 ? ICE1712_DELTA_CODEC_CHIP_A : ICE1712_DELTA_CODEC_CHIP_B;1057 break;1058 }1059 1060 if (cif) {1061 tmp |= codecs_mask; /* start without chip select */1062 } else {1063 tmp &= ~codecs_mask; /* chip select low */1064 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);1065 udelay(1);1066 }1067 1068 addr &= 0x07;1069 /* build I2C address + data byte */1070 addrdata = 0xa000 | (addr << 8) | data;1071 for (idx = 15; idx >= 0; idx--) {1072 tmp &= ~(data_mask|clk_mask);1073 if (addrdata & (1 << idx))1074 tmp |= data_mask;1075 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);1076 //udelay(200);1077 udelay(1);1078 tmp |= clk_mask;1079 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);1080 udelay(1);1081 }1082 1083 if (ice->eeprom.subvendor == ICE1712_SUBDEVICE_EWS88MT) {1084 restore_gpio_status(ice, saved);1085 //snd_ice1712_ews88mt_chip_select(ice, ~(1 << chip) & 0x0f);1086 udelay(1);1087 snd_ice1712_ews88mt_chip_select(ice, 0x0f);1088 } else {1089 if (cif) {1090 /* assert a cs pulse to trigger */1091 tmp &= ~codecs_mask;1092 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);1093 udelay(1);1094 }1095 tmp |= codecs_mask; /* chip select high to trigger */1096 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);1097 udelay(1);1098 restore_gpio_status(ice, saved);1099 }1100 1101 if ((addr != 0x04 && addr != 0x05) || (data & 0x80) == 0)1102 ice->ak4524_images[chip][addr] = data;1103 else1104 ice->ak4524_ipga_gain[chip][addr-4] = data;1105 }1106 1107 static void snd_ice1712_ak4524_reset(ice1712_t *ice, int state)1108 {1109 int chip;1110 unsigned char reg;1111 1112 for (chip = 0; chip < ice->num_dacs/2; chip++) {1113 snd_ice1712_ak4524_write(ice, chip, 0x01, state ? 0x00 : 0x03);1114 if (state)1115 continue;1116 for (reg = 0x04; reg < (ice->ak4528 ? 0x06 : 0x08); reg++)1117 snd_ice1712_ak4524_write(ice, chip, reg, ice->ak4524_images[chip][reg]);1118 if (ice->ak4528)1119 continue;1120 for (reg = 0x04; reg < 0x06; reg++)1121 snd_ice1712_ak4524_write(ice, chip, reg, ice->ak4524_ipga_gain[chip][reg-4]);1122 }1123 }1124 1125 static void snd_ice1712_ews_cs8404_spdif_write(ice1712_t *ice, unsigned char bits)1126 {1127 unsigned char bytes[2];1128 1129 snd_i2c_lock(ice->i2c);1130 switch (ice->eeprom.subvendor) {1131 case ICE1712_SUBDEVICE_EWS88MT:1132 snd_runtime_check(snd_i2c_sendbytes(ice->cs8404, &bits, 1) == 1, snd_i2c_unlock(ice->i2c); return);1133 break;1134 case ICE1712_SUBDEVICE_EWS88D:1135 snd_runtime_check(snd_i2c_readbytes(ice->pcf8575, bytes, 2) == 2, snd_i2c_unlock(ice->i2c); return);1136 if (bits != bytes[1]) {1137 bytes[1] = bits;1138 snd_runtime_check(snd_i2c_readbytes(ice->pcf8575, bytes, 2) == 2, snd_i2c_unlock(ice->i2c); return);1139 }1140 break;1141 }1142 snd_i2c_unlock(ice->i2c);1143 }1144 1145 308 1146 309 /* … … 1181 344 1182 345 /* 346 * spdif callbacks 1183 347 */ 1184 static void snd_ice1712_set_pro_rate(ice1712_t *ice, snd_pcm_substream_t *substream) 1185 { 1186 unsigned long flags; 1187 unsigned int rate; 1188 unsigned char val, tmp; 1189 1190 spin_lock_irqsave(&ice->reg_lock, flags); 1191 if (inb(ICEMT(ice, PLAYBACK_CONTROL)) & (ICE1712_CAPTURE_START_SHADOW| 1192 ICE1712_PLAYBACK_PAUSE| 1193 ICE1712_PLAYBACK_START)) 1194 goto __end; 1195 if (inb(ICEMT(ice, RATE)) & ICE1712_SPDIF_MASTER) 1196 goto __end; 1197 rate = substream->runtime->rate; 1198 switch (rate) { 1199 case 8000: val = 6; break; 1200 case 9600: val = 3; break; 1201 case 11025: val = 10; break; 1202 case 12000: val = 2; break; 1203 case 16000: val = 5; break; 1204 case 22050: val = 9; break; 1205 case 24000: val = 1; break; 1206 case 32000: val = 4; break; 1207 case 44100: val = 8; break; 1208 case 48000: val = 0; break; 1209 case 64000: val = 15; break; 1210 case 88200: val = 11; break; 1211 case 96000: val = 7; break; 1212 default: 1213 snd_BUG(); 1214 val = 0; 1215 break; 1216 } 1217 outb(val, ICEMT(ice, RATE)); 1218 switch (ice->eeprom.subvendor) { 1219 case ICE1712_SUBDEVICE_DELTA1010: 1220 case ICE1712_SUBDEVICE_DELTA1010LT: // check it --jk 1221 case ICE1712_SUBDEVICE_DELTADIO2496: 1222 case ICE1712_SUBDEVICE_DELTA66: 1223 case ICE1712_SUBDEVICE_DELTA44: 1224 case ICE1712_SUBDEVICE_AUDIOPHILE: 1225 spin_unlock_irqrestore(&ice->reg_lock, flags); 1226 snd_ice1712_ak4524_reset(ice, 1); 1227 down(&ice->gpio_mutex); 1228 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA); 1229 if (val == 15 || val == 11 || val == 7) { 1230 tmp |= ICE1712_DELTA_DFS; 1231 } else { 1232 tmp &= ~ICE1712_DELTA_DFS; 1233 } 1234 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp); 1235 up(&ice->gpio_mutex); 1236 snd_ice1712_ak4524_reset(ice, 0); 1237 return; 1238 } 1239 __end: 1240 spin_unlock_irqrestore(&ice->reg_lock, flags); 1241 } 348 static void open_cs8427(ice1712_t *ice, snd_pcm_substream_t * substream) 349 { 350 snd_cs8427_iec958_active(ice->cs8427, 1); 351 } 352 353 static void close_cs8427(ice1712_t *ice, snd_pcm_substream_t * substream) 354 { 355 snd_cs8427_iec958_active(ice->cs8427, 0); 356 } 357 358 static void setup_cs8427(ice1712_t *ice, snd_pcm_substream_t * substream) 359 { 360 snd_cs8427_iec958_pcm(ice->cs8427, substream->runtime->rate); 361 } 362 363 /* 364 * create and initialize callbacks for cs8427 interface 365 */ 366 int __devinit snd_ice1712_init_cs8427(ice1712_t *ice, int addr) 367 { 368 int err; 369 370 if ((err = snd_cs8427_create(ice->i2c, addr, &ice->cs8427)) < 0) { 371 snd_printk("CS8427 initialization failed\n"); 372 return err; 373 } 374 ice->spdif.ops.open = open_cs8427; 375 ice->spdif.ops.close = close_cs8427; 376 ice->spdif.ops.setup = setup_cs8427; 377 return 0; 378 } 379 1242 380 1243 381 /* … … 1311 449 } 1312 450 451 1313 452 /* 1314 453 * PCM part - misc … … 1629 768 ice->capture_con_substream = substream; 1630 769 runtime->hw = snd_ice1712_capture; 1631 runtime->hw.rates = ice->ac97->rates _adc;770 runtime->hw.rates = ice->ac97->rates[AC97_RATES_ADC]; 1632 771 if (!(runtime->hw.rates & SNDRV_PCM_RATE_8000)) 1633 772 runtime->hw.rate_min = 48000; … … 1661 800 ice1712_t *ice = snd_pcm_substream_chip(substream); 1662 801 1663 /* disable ADC power */1664 snd_ac97_update_bits(ice->ac97, AC97_POWERDOWN, 0x0100, 0x0100);1665 802 ice->capture_con_substream = NULL; 1666 803 return 0; … … 1785 922 .mask = 0, 1786 923 }; 1787 1788 #if 01789 1790 static int snd_ice1712_playback_pro_ioctl(snd_pcm_substream_t * substream,1791 unsigned int cmd,1792 void *arg)1793 {1794 ice1712_t *ice = snd_pcm_substream_chip(substream);1795 1796 switch (cmd) {1797 case SNDRV_PCM_IOCTL1_DIG_INFO:1798 {1799 snd_pcm_dig_info_t *info = arg;1800 switch (ice->eeprom.subvendor) {1801 case ICE1712_SUBDEVICE_DELTA1010:1802 case ICE1712_SUBDEVICE_DELTADIO2496:1803 case ICE1712_SUBDEVICE_DELTA66:1804 return snd_ice1712_dig_cs8403_info(substream, info);1805 }1806 }1807 case SNDRV_PCM_IOCTL1_DIG_PARAMS:1808 {1809 snd_pcm_dig_params_t *params = arg;1810 switch (ice->eeprom.subvendor) {1811 case ICE1712_SUBDEVICE_DELTA1010:1812 case ICE1712_SUBDEVICE_DELTADIO2496:1813 case ICE1712_SUBDEVICE_DELTA66:1814 return snd_ice1712_dig_cs8403_params(substream, params);1815 }1816 }1817 default:1818 break;1819 }1820 return snd_pcm_lib_ioctl(substream, cmd, arg);1821 }1822 1823 #endif1824 924 1825 925 static int snd_ice1712_pro_trigger(snd_pcm_substream_t *substream, … … 1879 979 } 1880 980 981 /* 982 */ 983 static void snd_ice1712_set_pro_rate(ice1712_t *ice, snd_pcm_substream_t *substream) 984 { 985 unsigned long flags; 986 unsigned int rate; 987 unsigned char val; 988 989 spin_lock_irqsave(&ice->reg_lock, flags); 990 if ((inb(ICEMT(ice, PLAYBACK_CONTROL)) & (ICE1712_CAPTURE_START_SHADOW| 991 ICE1712_PLAYBACK_PAUSE| 992 ICE1712_PLAYBACK_START)) || 993 (inb(ICEMT(ice, RATE)) & ICE1712_SPDIF_MASTER)) { 994 spin_unlock_irqrestore(&ice->reg_lock, flags); 995 return; 996 } 997 rate = substream->runtime->rate; 998 switch (rate) { 999 case 8000: val = 6; break; 1000 case 9600: val = 3; break; 1001 case 11025: val = 10; break; 1002 case 12000: val = 2; break; 1003 case 16000: val = 5; break; 1004 case 22050: val = 9; break; 1005 case 24000: val = 1; break; 1006 case 32000: val = 4; break; 1007 case 44100: val = 8; break; 1008 case 48000: val = 0; break; 1009 case 64000: val = 15; break; 1010 case 88200: val = 11; break; 1011 case 96000: val = 7; break; 1012 default: 1013 snd_BUG(); 1014 val = 0; 1015 break; 1016 } 1017 outb(val, ICEMT(ice, RATE)); 1018 spin_unlock_irqrestore(&ice->reg_lock, flags); 1019 1020 if (ice->ak4524.ops.set_rate_val) 1021 ice->ak4524.ops.set_rate_val(ice, val); 1022 } 1023 1881 1024 static int snd_ice1712_playback_pro_prepare(snd_pcm_substream_t * substream) 1882 1025 { 1883 1026 unsigned long flags; 1884 1027 ice1712_t *ice = snd_pcm_substream_chip(substream); 1885 unsigned int tmp;1886 int change;1887 1028 1888 1029 ice->playback_pro_size = snd_pcm_lib_buffer_bytes(substream); … … 1892 1033 outw((ice->playback_pro_size >> 2) - 1, ICEMT(ice, PLAYBACK_SIZE)); 1893 1034 outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1, ICEMT(ice, PLAYBACK_COUNT)); 1894 switch (ice->eeprom.subvendor) {1895 case ICE1712_SUBDEVICE_DELTA1010:1896 case ICE1712_SUBDEVICE_DELTADIO2496:1897 case ICE1712_SUBDEVICE_DELTA66:1898 /* setup S/PDIF */1899 tmp = ice->cs8403_spdif_stream_bits;1900 if (tmp & 0x01) /* consumer */1901 tmp &= (tmp & 0x01) ? ~0x06 : ~0x18;1902 switch (substream->runtime->rate) {1903 case 32000: tmp |= (tmp & 0x01) ? 0x04 : 0x00; break;1904 case 44100: tmp |= (tmp & 0x01) ? 0x00 : 0x10; break;1905 case 48000: tmp |= (tmp & 0x01) ? 0x02 : 0x08; break;1906 default: tmp |= (tmp & 0x01) ? 0x00 : 0x18; break;1907 }1908 change = ice->cs8403_spdif_stream_bits != tmp;1909 ice->cs8403_spdif_stream_bits = tmp;1910 1035 spin_unlock_irqrestore(&ice->reg_lock, flags); 1911 if (change) 1912 snd_ctl_notify(ice->card, SNDRV_CTL_EVENT_MASK_VALUE, &ice->spdif_stream_ctl->id); 1913 snd_ice1712_delta_cs8403_spdif_write(ice, tmp); 1914 return 0; 1915 case ICE1712_SUBDEVICE_EWX2496: 1916 case ICE1712_SUBDEVICE_AUDIOPHILE: 1917 snd_cs8427_iec958_pcm(ice->cs8427, substream->runtime->rate); 1918 break; 1919 case ICE1712_SUBDEVICE_EWS88MT: 1920 case ICE1712_SUBDEVICE_EWS88D: 1921 /* setup S/PDIF */ 1922 tmp = ice->cs8403_spdif_stream_bits; 1923 if (tmp & 0x10) /* consumer */ 1924 tmp &= (tmp & 0x01) ? ~0x06 : ~0x60; 1925 switch (substream->runtime->rate) { 1926 case 32000: tmp |= (tmp & 0x01) ? 0x02 : 0x00; break; 1927 case 44100: tmp |= (tmp & 0x01) ? 0x06 : 0x40; break; 1928 case 48000: tmp |= (tmp & 0x01) ? 0x04 : 0x20; break; 1929 default: tmp |= (tmp & 0x01) ? 0x06 : 0x40; break; 1930 } 1931 change = ice->cs8403_spdif_stream_bits != tmp; 1932 ice->cs8403_spdif_stream_bits = tmp; 1933 spin_unlock_irqrestore(&ice->reg_lock, flags); 1934 if (change) 1935 snd_ctl_notify(ice->card, SNDRV_CTL_EVENT_MASK_VALUE, &ice->spdif_stream_ctl->id); 1936 snd_ice1712_ews_cs8404_spdif_write(ice, tmp); 1937 return 0; 1938 } 1939 1940 spin_unlock_irqrestore(&ice->reg_lock, flags); 1036 1037 if (ice->spdif.ops.setup) 1038 ice->spdif.ops.setup(ice, substream); 1039 1941 1040 return 0; 1942 1041 } … … 2030 1129 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates); 2031 1130 2032 ice->cs8403_spdif_stream_bits = ice->cs8403_spdif_bits; 2033 if (ice->cs8427) 2034 snd_cs8427_iec958_active(ice->cs8427, 1); 1131 if (ice->spdif.ops.open) 1132 ice->spdif.ops.open(ice, substream); 2035 1133 2036 1134 return 0; … … 2055 1153 2056 1154 ice->playback_pro_substream = NULL; 2057 if (ice-> cs8427)2058 snd_cs8427_iec958_active(ice->cs8427, 0);1155 if (ice->spdif.ops.close) 1156 ice->spdif.ops.close(ice, substream); 2059 1157 2060 1158 return 0; … … 2232 1330 } 2233 1331 2234 static int snd_ice1712_ak4524_volume_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)2235 {2236 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;2237 uinfo->count = 1;2238 uinfo->value.integer.min = 0;2239 uinfo->value.integer.max = 127;2240 return 0;2241 }2242 2243 static int snd_ice1712_ak4524_volume_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)2244 {2245 ice1712_t *ice = snd_kcontrol_chip(kcontrol);2246 int chip = kcontrol->private_value / 8;2247 int addr = kcontrol->private_value % 8;2248 ucontrol->value.integer.value[0] = ice->ak4524_images[chip][addr];2249 return 0;2250 }2251 2252 static int snd_ice1712_ak4524_volume_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)2253 {2254 ice1712_t *ice = snd_kcontrol_chip(kcontrol);2255 int chip = kcontrol->private_value / 8;2256 int addr = kcontrol->private_value % 8;2257 unsigned char nval = ucontrol->value.integer.value[0];2258 int change = ice->ak4524_images[chip][addr] != nval;2259 if (change)2260 snd_ice1712_ak4524_write(ice, chip, addr, nval);2261 return change;2262 }2263 2264 static int snd_ice1712_ak4524_ipga_gain_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)2265 {2266 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;2267 uinfo->count = 1;2268 uinfo->value.integer.min = 0;2269 uinfo->value.integer.max = 36;2270 return 0;2271 }2272 2273 static int snd_ice1712_ak4524_ipga_gain_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)2274 {2275 ice1712_t *ice = snd_kcontrol_chip(kcontrol);2276 int chip = kcontrol->private_value / 8;2277 int addr = kcontrol->private_value % 8;2278 ucontrol->value.integer.value[0] = ice->ak4524_ipga_gain[chip][addr-4] & 0x7f;2279 return 0;2280 }2281 2282 static int snd_ice1712_ak4524_ipga_gain_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)2283 {2284 ice1712_t *ice = snd_kcontrol_chip(kcontrol);2285 int chip = kcontrol->private_value / 8;2286 int addr = kcontrol->private_value % 8;2287 unsigned char nval = (ucontrol->value.integer.value[0] % 37) | 0x80;2288 int change = ice->ak4524_ipga_gain[chip][addr] != nval;2289 if (change)2290 snd_ice1712_ak4524_write(ice, chip, addr, nval);2291 return change;2292 }2293 2294 static int snd_ice1712_ak4524_deemphasis_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)2295 {2296 static char *texts[4] = {2297 "44.1kHz", "Off", "48kHz", "32kHz",2298 };2299 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;2300 uinfo->count = 1;2301 uinfo->value.enumerated.items = 4;2302 if (uinfo->value.enumerated.item >= 4)2303 uinfo->value.enumerated.item = 3;2304 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);2305 return 0;2306 }2307 2308 static int snd_ice1712_ak4524_deemphasis_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t *ucontrol)2309 {2310 ice1712_t *ice = snd_kcontrol_chip(kcontrol);2311 int chip = kcontrol->id.index;2312 ucontrol->value.enumerated.item[0] = ice->ak4524_images[chip][3] & 3;2313 return 0;2314 }2315 2316 static int snd_ice1712_ak4524_deemphasis_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)2317 {2318 ice1712_t *ice = snd_kcontrol_chip(kcontrol);2319 int chip = kcontrol->id.index;2320 unsigned char nval = ucontrol->value.enumerated.item[0];2321 int change;2322 nval |= (nval & 3) | (ice->ak4524_images[chip][3] & ~3);2323 change = ice->ak4524_images[chip][3] != nval;2324 if (change)2325 snd_ice1712_ak4524_write(ice, chip, 3, nval);2326 return change;2327 }2328 1332 2329 1333 static int __init snd_ice1712_build_pro_mixer(ice1712_t *ice) … … 2397 1401 } 2398 1402 2399 static void snd_ice1712_ac97_init(ac97_t *ac97)2400 {2401 // ice1712_t *ice = snd_magic_cast(ice1712_t, ac97->private_data, return);2402 2403 /* disable center DAC/surround DAC/LFE DAC/MIC ADC */2404 snd_ac97_update_bits(ac97, AC97_EXTENDED_STATUS, 0xe800, 0xe800);2405 }2406 2407 1403 static void snd_ice1712_mixer_free_ac97(ac97_t *ac97) 2408 1404 { … … 2420 1416 ac97.write = snd_ice1712_ac97_write; 2421 1417 ac97.read = snd_ice1712_ac97_read; 2422 ac97.init = snd_ice1712_ac97_init;2423 1418 ac97.private_data = ice; 2424 1419 ac97.private_free = snd_ice1712_mixer_free_ac97; 2425 if ((err = snd_ac97_mixer(ice->card, &ac97, &ice->ac97)) < 0) {1420 if ((err = snd_ac97_mixer(ice->card, &ac97, &ice->ac97)) < 0) 2426 1421 printk(KERN_WARNING "ice1712: cannot initialize ac97 for consumer, skipped\n"); 2427 // return err; 2428 } else { 1422 else { 2429 1423 if ((err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_mixer_digmix_route_ac97, ice))) < 0) 2430 1424 return err; 1425 return 0; 2431 1426 } 2432 return 0;2433 1427 } 2434 1428 /* hmm.. can we have both consumer and pro ac97 mixers? */ … … 2438 1432 ac97.write = snd_ice1712_pro_ac97_write; 2439 1433 ac97.read = snd_ice1712_pro_ac97_read; 2440 ac97.init = snd_ice1712_ac97_init;2441 1434 ac97.private_data = ice; 2442 1435 ac97.private_free = snd_ice1712_mixer_free_ac97; 2443 1436 if ((err = snd_ac97_mixer(ice->card, &ac97, &ice->ac97)) < 0) 2444 return err; 1437 printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n"); 1438 else 2445 1439 return 0; 2446 1440 } … … 2550 1544 { 2551 1545 ice1712_t *ice = snd_kcontrol_chip(kcontrol); 2552 2553 switch (ice->eeprom.subvendor) { 2554 case ICE1712_SUBDEVICE_DELTA1010: 2555 case ICE1712_SUBDEVICE_DELTADIO2496: 2556 case ICE1712_SUBDEVICE_DELTA66: 2557 snd_cs8403_decode_spdif_bits(&ucontrol->value.iec958, ice->cs8403_spdif_bits); 2558 break; 2559 case ICE1712_SUBDEVICE_EWS88MT: 2560 case ICE1712_SUBDEVICE_EWS88D: 2561 snd_cs8404_decode_spdif_bits(&ucontrol->value.iec958, ice->cs8403_spdif_bits); 2562 break; 2563 } 1546 if (ice->spdif.ops.default_get) 1547 ice->spdif.ops.default_get(ice, ucontrol); 2564 1548 return 0; 2565 1549 } … … 2569 1553 { 2570 1554 ice1712_t *ice = snd_kcontrol_chip(kcontrol); 2571 unsigned long flags; 2572 unsigned int val; 2573 int change; 2574 2575 switch (ice->eeprom.subvendor) { 2576 case ICE1712_SUBDEVICE_DELTA1010: 2577 case ICE1712_SUBDEVICE_DELTADIO2496: 2578 case ICE1712_SUBDEVICE_DELTA66: 2579 val = snd_cs8403_encode_spdif_bits(&ucontrol->value.iec958); 2580 spin_lock_irqsave(&ice->reg_lock, flags); 2581 change = ice->cs8403_spdif_bits != val; 2582 ice->cs8403_spdif_bits = val; 2583 if (change && ice->playback_pro_substream == NULL) { 2584 spin_unlock_irqrestore(&ice->reg_lock, flags); 2585 snd_ice1712_delta_cs8403_spdif_write(ice, val); 2586 } else { 2587 spin_unlock_irqrestore(&ice->reg_lock, flags); 2588 } 2589 break; 2590 case ICE1712_SUBDEVICE_EWS88MT: 2591 case ICE1712_SUBDEVICE_EWS88D: 2592 val = snd_cs8404_encode_spdif_bits(&ucontrol->value.iec958); 2593 spin_lock_irqsave(&ice->reg_lock, flags); 2594 change = ice->cs8403_spdif_bits != val; 2595 ice->cs8403_spdif_bits = val; 2596 if (change && ice->playback_pro_substream == NULL) { 2597 spin_unlock_irqrestore(&ice->reg_lock, flags); 2598 snd_ice1712_ews_cs8404_spdif_write(ice, val); 2599 } else { 2600 spin_unlock_irqrestore(&ice->reg_lock, flags); 2601 } 2602 break; 2603 default: 2604 change = 0; 2605 } 2606 return change; 1555 if (ice->spdif.ops.default_put) 1556 return ice->spdif.ops.default_put(ice, ucontrol); 1557 return 0; 2607 1558 } 2608 1559 … … 2627 1578 { 2628 1579 ice1712_t *ice = snd_kcontrol_chip(kcontrol); 2629 2630 switch (ice->eeprom.subvendor) { 2631 case ICE1712_SUBDEVICE_DELTA1010: 2632 case ICE1712_SUBDEVICE_DELTADIO2496: 2633 case ICE1712_SUBDEVICE_DELTA66: 2634 case ICE1712_SUBDEVICE_EWS88MT: 2635 case ICE1712_SUBDEVICE_EWS88D: 1580 if (ice->spdif.ops.default_get) { 2636 1581 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO | 2637 1582 IEC958_AES0_PROFESSIONAL | … … 2641 1586 IEC958_AES1_CON_CATEGORY; 2642 1587 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS; 2643 break; 2644 case ICE1712_SUBDEVICE_AUDIOPHILE: 2645 case ICE1712_SUBDEVICE_EWX2496: 1588 } else { 2646 1589 ucontrol->value.iec958.status[0] = 0xff; 2647 1590 ucontrol->value.iec958.status[1] = 0xff; … … 2649 1592 ucontrol->value.iec958.status[3] = 0xff; 2650 1593 ucontrol->value.iec958.status[4] = 0xff; 2651 break;2652 1594 } 2653 1595 return 0; … … 2658 1600 { 2659 1601 ice1712_t *ice = snd_kcontrol_chip(kcontrol); 2660 2661 switch (ice->eeprom.subvendor) { 2662 case ICE1712_SUBDEVICE_DELTA1010: 2663 case ICE1712_SUBDEVICE_DELTADIO2496: 2664 case ICE1712_SUBDEVICE_DELTA66: 2665 case ICE1712_SUBDEVICE_EWS88MT: 2666 case ICE1712_SUBDEVICE_EWS88D: 1602 if (ice->spdif.ops.default_get) { 2667 1603 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO | 2668 1604 IEC958_AES0_PROFESSIONAL | … … 2670 1606 IEC958_AES0_PRO_EMPHASIS; 2671 1607 ucontrol->value.iec958.status[1] = IEC958_AES1_PRO_MODE; 2672 break; 2673 case ICE1712_SUBDEVICE_AUDIOPHILE: 2674 case ICE1712_SUBDEVICE_EWX2496: 1608 } else { 2675 1609 ucontrol->value.iec958.status[0] = 0xff; 2676 1610 ucontrol->value.iec958.status[1] = 0xff; … … 2678 1612 ucontrol->value.iec958.status[3] = 0xff; 2679 1613 ucontrol->value.iec958.status[4] = 0xff; 2680 break;2681 1614 } 2682 1615 return 0; … … 2712 1645 { 2713 1646 ice1712_t *ice = snd_kcontrol_chip(kcontrol); 2714 2715 switch (ice->eeprom.subvendor) { 2716 case ICE1712_SUBDEVICE_DELTA1010: 2717 case ICE1712_SUBDEVICE_DELTADIO2496: 2718 case ICE1712_SUBDEVICE_DELTA66: 2719 snd_cs8403_decode_spdif_bits(&ucontrol->value.iec958, ice->cs8403_spdif_stream_bits); 2720 break; 2721 case ICE1712_SUBDEVICE_EWS88MT: 2722 case ICE1712_SUBDEVICE_EWS88D: 2723 snd_cs8404_decode_spdif_bits(&ucontrol->value.iec958, ice->cs8403_spdif_stream_bits); 2724 break; 2725 } 1647 if (ice->spdif.ops.stream_get) 1648 ice->spdif.ops.stream_get(ice, ucontrol); 2726 1649 return 0; 2727 1650 } … … 2731 1654 { 2732 1655 ice1712_t *ice = snd_kcontrol_chip(kcontrol); 2733 unsigned long flags; 2734 unsigned int val; 2735 int change; 2736 2737 switch (ice->eeprom.subvendor) { 2738 case ICE1712_SUBDEVICE_DELTA1010: 2739 case ICE1712_SUBDEVICE_DELTADIO2496: 2740 case ICE1712_SUBDEVICE_DELTA66: 2741 val = snd_cs8403_encode_spdif_bits(&ucontrol->value.iec958); 2742 spin_lock_irqsave(&ice->reg_lock, flags); 2743 change = ice->cs8403_spdif_stream_bits != val; 2744 ice->cs8403_spdif_stream_bits = val; 2745 if (change && ice->playback_pro_substream != NULL) { 2746 spin_unlock_irqrestore(&ice->reg_lock, flags); 2747 snd_ice1712_delta_cs8403_spdif_write(ice, val); 2748 } else { 2749 spin_unlock_irqrestore(&ice->reg_lock, flags); 2750 } 2751 break; 2752 case ICE1712_SUBDEVICE_EWS88MT: 2753 case ICE1712_SUBDEVICE_EWS88D: 2754 val = snd_cs8404_encode_spdif_bits(&ucontrol->value.iec958); 2755 spin_lock_irqsave(&ice->reg_lock, flags); 2756 change = ice->cs8403_spdif_stream_bits != val; 2757 ice->cs8403_spdif_stream_bits = val; 2758 if (change && ice->playback_pro_substream != NULL) { 2759 spin_unlock_irqrestore(&ice->reg_lock, flags); 2760 snd_ice1712_ews_cs8404_spdif_write(ice, val); 2761 } else { 2762 spin_unlock_irqrestore(&ice->reg_lock, flags); 2763 } 2764 break; 2765 default: 2766 change = 0; 2767 } 2768 return change; 1656 if (ice->spdif.ops.stream_put) 1657 return ice->spdif.ops.stream_put(ice, ucontrol); 1658 return 0; 2769 1659 } 2770 1660 … … 2779 1669 }; 2780 1670 2781 #define ICE1712_GPIO(xiface, xname, xindex, mask, invert, xaccess) \ 2782 { .iface = xiface, .name = xname, .access = xaccess, .info = snd_ice1712_gpio_info, \ 2783 .get = snd_ice1712_gpio_get, .put = snd_ice1712_gpio_put, \ 2784 .private_value = mask | (invert << 24) } 2785 2786 static int snd_ice1712_gpio_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) 1671 int snd_ice1712_gpio_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) 2787 1672 { 2788 1673 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; … … 2793 1678 } 2794 1679 2795 staticint snd_ice1712_gpio_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)1680 int snd_ice1712_gpio_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) 2796 1681 { 2797 1682 ice1712_t *ice = snd_kcontrol_chip(kcontrol); … … 2800 1685 unsigned char saved[2]; 2801 1686 2802 s ave_gpio_status(ice, saved);1687 snd_ice1712_save_gpio_status(ice, saved); 2803 1688 ucontrol->value.integer.value[0] = (snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA) & mask ? 1 : 0) ^ invert; 2804 restore_gpio_status(ice, saved);2805 return 0; 2806 } 2807 2808 staticint snd_ice1712_gpio_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)1689 snd_ice1712_restore_gpio_status(ice, saved); 1690 return 0; 1691 } 1692 1693 int snd_ice1712_gpio_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) 2809 1694 { 2810 1695 ice1712_t *ice = snd_kcontrol_chip(kcontrol); … … 2817 1702 return -EPERM; 2818 1703 nval = (ucontrol->value.integer.value[0] ? mask : 0) ^ invert; 2819 s ave_gpio_status(ice, saved);1704 snd_ice1712_save_gpio_status(ice, saved); 2820 1705 val = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA); 2821 1706 nval |= val & ~mask; 2822 1707 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, nval); 2823 restore_gpio_status(ice, saved);1708 snd_ice1712_restore_gpio_status(ice, saved); 2824 1709 return val != nval; 2825 1710 } 2826 2827 static snd_kcontrol_new_t snd_ice1712_delta1010_wordclock_select __devinitdata =2828 ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_PCM, "Word Clock Sync", 0, ICE1712_DELTA_WORD_CLOCK_SELECT, 1, 0);2829 static snd_kcontrol_new_t snd_ice1712_delta1010_wordclock_status __devinitdata =2830 ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_PCM, "Word Clock Status", 0, ICE1712_DELTA_WORD_CLOCK_STATUS, 1, SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE);2831 static snd_kcontrol_new_t snd_ice1712_deltadio2496_spdif_in_select __devinitdata =2832 ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_PCM, "IEC958 Input Optical", 0, ICE1712_DELTA_SPDIF_INPUT_SELECT, 0, 0);2833 static snd_kcontrol_new_t snd_ice1712_delta_spdif_in_status __devinitdata =2834 ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_PCM, "Delta IEC958 Input Status", 0, ICE1712_DELTA_SPDIF_IN_STAT, 1, SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE);2835 1711 2836 1712 static int snd_ice1712_pro_spdif_master_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo) … … 3117 1993 3118 1994 /* 3119 * EWX 24/963120 */3121 3122 static int snd_ice1712_ewx_io_sense_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo){3123 3124 static char *texts[4] = {3125 "+4dBu", "-10dBV",3126 };3127 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;3128 uinfo->count = 1;3129 uinfo->value.enumerated.items = 2;3130 if (uinfo->value.enumerated.item >= 2)3131 uinfo->value.enumerated.item = 1;3132 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);3133 return 0;3134 }3135 3136 static int snd_ice1712_ewx_io_sense_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)3137 {3138 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3139 unsigned char mask = kcontrol->private_value & 0xff;3140 unsigned char saved[2];3141 3142 save_gpio_status(ice, saved);3143 ucontrol->value.enumerated.item[0] = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA) & mask ? 1 : 0;3144 restore_gpio_status(ice, saved);3145 return 0;3146 }3147 3148 static int snd_ice1712_ewx_io_sense_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)3149 {3150 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3151 unsigned char mask = kcontrol->private_value & 0xff;3152 unsigned char saved[2];3153 int val, nval;3154 3155 if (kcontrol->private_value & (1 << 31))3156 return -EPERM;3157 nval = ucontrol->value.enumerated.item[0] ? mask : 0;3158 save_gpio_status(ice, saved);3159 val = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);3160 nval |= val & ~mask;3161 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, nval);3162 restore_gpio_status(ice, saved);3163 return val != nval;3164 }3165 3166 static snd_kcontrol_new_t snd_ice1712_ewx_input_sense __devinitdata = {3167 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,3168 .name = "Input Sensitivity Switch",3169 .info = snd_ice1712_ewx_io_sense_info,3170 .get = snd_ice1712_ewx_io_sense_get,3171 .put = snd_ice1712_ewx_io_sense_put,3172 .private_value = ICE1712_EWX2496_AIN_SEL,3173 };3174 3175 static snd_kcontrol_new_t snd_ice1712_ewx_output_sense __devinitdata = {3176 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,3177 .name = "Output Sensitivity Switch",3178 .info = snd_ice1712_ewx_io_sense_info,3179 .get = snd_ice1712_ewx_io_sense_get,3180 .put = snd_ice1712_ewx_io_sense_put,3181 .private_value = ICE1712_EWX2496_AOUT_SEL,3182 };3183 3184 3185 /*3186 * EWS88MT3187 */3188 /* analog output sensitivity;; address 0x48 bit 6 */3189 static int snd_ice1712_ews88mt_output_sense_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)3190 {3191 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3192 unsigned char data;3193 3194 snd_i2c_lock(ice->i2c);3195 if (snd_i2c_readbytes(ice->pcf8574[1], &data, 1) != 1) {3196 snd_i2c_unlock(ice->i2c);3197 return -EIO;3198 }3199 snd_i2c_unlock(ice->i2c);3200 ucontrol->value.enumerated.item[0] = data & ICE1712_EWS88MT_OUTPUT_SENSE ? 1 : 0; /* high = -10dBV, low = +4dBu */3201 return 0;3202 }3203 3204 /* analog output sensitivity;; address 0x48 bit 6 */3205 static int snd_ice1712_ews88mt_output_sense_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)3206 {3207 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3208 unsigned char data, ndata;3209 3210 snd_i2c_lock(ice->i2c);3211 if (snd_i2c_readbytes(ice->pcf8574[1], &data, 1) != 1) {3212 snd_i2c_unlock(ice->i2c);3213 return -EIO;3214 }3215 ndata = (data & ~ICE1712_EWS88MT_OUTPUT_SENSE) | (ucontrol->value.enumerated.item[0] ? ICE1712_EWS88MT_OUTPUT_SENSE : 0);3216 if (ndata != data && snd_i2c_sendbytes(ice->pcf8574[1], &ndata, 1) != 1) {3217 snd_i2c_unlock(ice->i2c);3218 return -EIO;3219 }3220 snd_i2c_unlock(ice->i2c);3221 return ndata != data;3222 }3223 3224 /* analog input sensitivity; address 0x46 */3225 static int snd_ice1712_ews88mt_input_sense_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)3226 {3227 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3228 int channel = kcontrol->id.index;3229 unsigned char data;3230 3231 snd_assert(channel >= 0 && channel <= 7, return 0);3232 snd_i2c_lock(ice->i2c);3233 if (snd_i2c_readbytes(ice->pcf8574[0], &data, 1) != 1) {3234 snd_i2c_unlock(ice->i2c);3235 return -EIO;3236 }3237 /* reversed; high = +4dBu, low = -10dBV */3238 ucontrol->value.enumerated.item[0] = data & (1 << channel) ? 0 : 1;3239 return 0;3240 }3241 3242 /* analog output sensitivity; address 0x46 */3243 static int snd_ice1712_ews88mt_input_sense_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)3244 {3245 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3246 int channel = kcontrol->id.index;3247 unsigned char data, ndata;3248 3249 snd_assert(channel >= 0 && channel <= 7, return 0);3250 snd_i2c_lock(ice->i2c);3251 if (snd_i2c_readbytes(ice->pcf8574[0], &data, 1) != 1) {3252 snd_i2c_unlock(ice->i2c);3253 return -EIO;3254 }3255 ndata = (data & ~(1 << channel)) | (ucontrol->value.enumerated.item[0] ? 0 : (1 << channel));3256 if (ndata != data && snd_i2c_sendbytes(ice->pcf8574[0], &ndata, 1) != 1) {3257 snd_i2c_unlock(ice->i2c);3258 return -EIO;3259 }3260 snd_i2c_unlock(ice->i2c);3261 return ndata != data;3262 }3263 3264 static snd_kcontrol_new_t snd_ice1712_ews88mt_input_sense __devinitdata = {3265 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,3266 .name = "Input Sensitivity Switch",3267 .info = snd_ice1712_ewx_io_sense_info,3268 .get = snd_ice1712_ews88mt_input_sense_get,3269 .put = snd_ice1712_ews88mt_input_sense_put,3270 };3271 3272 static snd_kcontrol_new_t snd_ice1712_ews88mt_output_sense __devinitdata = {3273 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,3274 .name = "Output Sensitivity Switch",3275 .info = snd_ice1712_ewx_io_sense_info,3276 .get = snd_ice1712_ews88mt_output_sense_get,3277 .put = snd_ice1712_ews88mt_output_sense_put,3278 };3279 3280 3281 /*3282 * EWS88D controls3283 */3284 3285 static int snd_ice1712_ews88d_control_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)3286 {3287 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;3288 uinfo->count = 1;3289 uinfo->value.integer.min = 0;3290 uinfo->value.integer.max = 1;3291 return 0;3292 }3293 3294 static int snd_ice1712_ews88d_control_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)3295 {3296 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3297 int shift = kcontrol->private_value & 0xff;3298 int invert = (kcontrol->private_value >> 8) & 1;3299 unsigned char data[2];3300 3301 snd_i2c_lock(ice->i2c);3302 if (snd_i2c_readbytes(ice->pcf8575, data, 2) != 2) {3303 snd_i2c_unlock(ice->i2c);3304 return -EIO;3305 }3306 snd_i2c_unlock(ice->i2c);3307 data[0] = (data[shift >> 3] >> (shift & 7)) & 0x01;3308 if (invert)3309 data[0] ^= 0x01;3310 ucontrol->value.integer.value[0] = data[0];3311 return 0;3312 }3313 3314 static int snd_ice1712_ews88d_control_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)3315 {3316 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3317 int shift = kcontrol->private_value & 0xff;3318 int invert = (kcontrol->private_value >> 8) & 1;3319 unsigned char data[2], ndata[2];3320 int change;3321 3322 snd_i2c_lock(ice->i2c);3323 if (snd_i2c_readbytes(ice->pcf8575, data, 2) != 2) {3324 snd_i2c_unlock(ice->i2c);3325 return -EIO;3326 }3327 ndata[shift >> 3] = data[shift >> 3] & ~(1 << (shift & 7));3328 if (invert) {3329 if (! ucontrol->value.integer.value[0])3330 ndata[shift >> 3] |= (1 << (shift & 7));3331 } else {3332 if (ucontrol->value.integer.value[0])3333 ndata[shift >> 3] |= (1 << (shift & 7));3334 }3335 change = (data[shift >> 3] != ndata[shift >> 3]);3336 if (change && snd_i2c_sendbytes(ice->pcf8575, data, 2) != 2) {3337 snd_i2c_unlock(ice->i2c);3338 return -EIO;3339 }3340 snd_i2c_unlock(ice->i2c);3341 return change;3342 }3343 3344 #define EWS88D_CONTROL(xiface, xname, xshift, xinvert, xaccess) \3345 { .iface = xiface,\3346 .name = xname,\3347 .access = xaccess,\3348 .info = snd_ice1712_ews88d_control_info,\3349 .get = snd_ice1712_ews88d_control_get,\3350 .put = snd_ice1712_ews88d_control_put,\3351 .private_value = xshift | (xinvert << 8),\3352 }3353 3354 static snd_kcontrol_new_t snd_ice1712_ews88d_controls[] __devinitdata = {3355 EWS88D_CONTROL(SNDRV_CTL_ELEM_IFACE_MIXER, "IEC958 Input Optical", 0, 1, 0), /* inverted */3356 EWS88D_CONTROL(SNDRV_CTL_ELEM_IFACE_MIXER, "ADAT Output Optical", 1, 0, 0),3357 EWS88D_CONTROL(SNDRV_CTL_ELEM_IFACE_MIXER, "ADAT External Master Clock", 2, 0, 0),3358 EWS88D_CONTROL(SNDRV_CTL_ELEM_IFACE_MIXER, "Enable ADAT", 3, 0, 0),3359 EWS88D_CONTROL(SNDRV_CTL_ELEM_IFACE_MIXER, "ADAT Through", 4, 1, 0),3360 };3361 3362 3363 /*3364 * DMX 6Fire controls3365 */3366 3367 #if 0 // XXX not working yet3368 static int snd_ice1712_6fire_read_pca(ice1712_t *ice)3369 {3370 unsigned char byte;3371 snd_i2c_lock(ice->i2c);3372 byte = 0; /* read port */3373 snd_i2c_sendbytes(ice->pcf8575, &byte, 1);3374 if (snd_i2c_readbytes(ice->pcf8575, &byte, 1) != 1) {3375 snd_i2c_unlock(ice->i2c);3376 return -EIO;3377 }3378 snd_i2c_unlock(ice->i2c);3379 return byte;3380 }3381 3382 static int snd_ice1712_6fire_write_pca(ice1712_t *ice, unsigned char data)3383 {3384 unsigned char bytes[2];3385 snd_i2c_lock(ice->i2c);3386 bytes[0] = 1; /* write port */3387 bytes[1] = data;3388 if (snd_i2c_sendbytes(ice->pcf8575, bytes, 2) != 2) {3389 snd_i2c_unlock(ice->i2c);3390 return -EIO;3391 }3392 snd_i2c_unlock(ice->i2c);3393 return 0;3394 }3395 3396 static int snd_ice1712_6fire_control_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)3397 {3398 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;3399 uinfo->count = 1;3400 uinfo->value.integer.min = 0;3401 uinfo->value.integer.max = 1;3402 return 0;3403 }3404 3405 static int snd_ice1712_6fire_control_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)3406 {3407 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3408 int shift = kcontrol->private_value & 0xff;3409 int invert = (kcontrol->private_value >> 8) & 1;3410 int data;3411 3412 if ((data = snd_ice1712_6fire_read_pca(ice)) < 0)3413 return data;3414 data = (data >> shift) & 1;3415 if (invert)3416 data ^= 1;3417 ucontrol->value.integer.value[0] = data;3418 return 0;3419 }3420 3421 static int snd_ice1712_6fire_control_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)3422 {3423 ice1712_t *ice = snd_kcontrol_chip(kcontrol);3424 int shift = kcontrol->private_value & 0xff;3425 int invert = (kcontrol->private_value >> 8) & 1;3426 int data, ndata;3427 3428 if ((data = snd_ice1712_6fire_read_pca(ice)) < 0)3429 return data;3430 ndata = data & ~(1 << shift);3431 if (ucontrol->value.integer.value[0])3432 ndata |= (1 << shift);3433 if (invert)3434 ndata ^= (1 << shift);3435 if (data != ndata) {3436 snd_ice1712_6fire_write_pca(ice, (unsigned char)ndata);3437 return 1;3438 }3439 return 0;3440 }3441 3442 #define DMX6FIRE_CONTROL(xiface, xname, xshift, xinvert, xaccess) \3443 { .iface = xiface,\3444 .name = xname,\3445 .access = xaccess,\3446 .info = snd_ice1712_6fire_control_info,\3447 .get = snd_ice1712_6fire_control_get,\3448 .put = snd_ice1712_6fire_control_put,\3449 .private_value = xshift | (xinvert << 8),\3450 }3451 3452 static snd_kcontrol_new_t snd_ice1712_6fire_led __devinitdata =3453 DMX6FIRE_CONTROL(SNDRV_CTL_ELEM_IFACE_MIXER, "Breakbox LED", 6, 0, 0);3454 3455 #endif // XXX not working yet3456 3457 3458 /*3459 1995 * 3460 1996 */ … … 3518 2054 } 3519 2055 3520 static void __devinit snd_ice1712_ak4524_init(ice1712_t *ice) 3521 { 3522 static unsigned char inits[] = { 3523 0x00, 0x07, /* 0: all power up */ 3524 0x01, 0x00, /* 1: ADC/DAC reset */ 3525 0x02, 0x60, /* 2: 24bit I2S */ 3526 0x03, 0x19, /* 3: deemphasis off */ 3527 0x01, 0x03, /* 1: ADC/DAC enable */ 3528 0x04, 0x00, /* 4: ADC left muted */ 3529 0x05, 0x00, /* 5: ADC right muted */ 3530 0x04, 0x80, /* 4: ADC IPGA gain 0dB */ 3531 0x05, 0x80, /* 5: ADC IPGA gain 0dB */ 3532 0x06, 0x00, /* 6: DAC left muted */ 3533 0x07, 0x00, /* 7: DAC right muted */ 3534 0xff, 0xff 3535 }; 3536 int chip, idx; 3537 unsigned char *ptr, reg, data; 3538 3539 for (chip = idx = 0; chip < ice->num_dacs/2; chip++) { 3540 ptr = inits; 3541 while (*ptr != 0xff) { 3542 reg = *ptr++; 3543 data = *ptr++; 3544 if (ice->ak4528) { 3545 if (reg > 5) 3546 continue; 3547 if (reg >= 4 && (data & 0x80)) 3548 continue; 3549 } 3550 if (reg == 0x03 && ice->ak4528) 3551 data = 0x0d; /* deemphasis off, turn LR highpass filters on */ 3552 snd_ice1712_ak4524_write(ice, chip, reg, data); 3553 } 3554 } 3555 } 3556 3557 static void __devinit snd_ice1712_stdsp24_gpio_write(ice1712_t *ice, unsigned char byte) 3558 { 3559 byte |= ICE1712_STDSP24_CLOCK_BIT; 3560 udelay(100); 3561 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, byte); 3562 byte &= ~ICE1712_STDSP24_CLOCK_BIT; 3563 udelay(100); 3564 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, byte); 3565 byte |= ICE1712_STDSP24_CLOCK_BIT; 3566 udelay(100); 3567 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, byte); 3568 } 3569 3570 static void __devinit snd_ice1712_stdsp24_darear(ice1712_t *ice, int activate) 3571 { 3572 down(&ice->gpio_mutex); 3573 ICE1712_STDSP24_0_DAREAR(ice->hoontech_boxbits, activate); 3574 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[0]); 3575 up(&ice->gpio_mutex); 3576 } 3577 3578 static void __devinit snd_ice1712_stdsp24_mute(ice1712_t *ice, int activate) 3579 { 3580 down(&ice->gpio_mutex); 3581 ICE1712_STDSP24_3_MUTE(ice->hoontech_boxbits, activate); 3582 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[3]); 3583 up(&ice->gpio_mutex); 3584 } 3585 3586 static void __devinit snd_ice1712_stdsp24_insel(ice1712_t *ice, int activate) 3587 { 3588 down(&ice->gpio_mutex); 3589 ICE1712_STDSP24_3_INSEL(ice->hoontech_boxbits, activate); 3590 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[3]); 3591 up(&ice->gpio_mutex); 3592 } 3593 3594 static void __devinit snd_ice1712_stdsp24_box_channel(ice1712_t *ice, int box, int chn, int activate) 3595 { 3596 down(&ice->gpio_mutex); 3597 3598 /* select box */ 3599 ICE1712_STDSP24_0_BOX(ice->hoontech_boxbits, box); 3600 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[0]); 3601 3602 /* prepare for write */ 3603 if (chn == 3) 3604 ICE1712_STDSP24_2_CHN4(ice->hoontech_boxbits, 0); 3605 ICE1712_STDSP24_2_MIDI1(ice->hoontech_boxbits, activate); 3606 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3607 3608 ICE1712_STDSP24_1_CHN1(ice->hoontech_boxbits, 1); 3609 ICE1712_STDSP24_1_CHN2(ice->hoontech_boxbits, 1); 3610 ICE1712_STDSP24_1_CHN3(ice->hoontech_boxbits, 1); 3611 ICE1712_STDSP24_2_CHN4(ice->hoontech_boxbits, 1); 3612 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[1]); 3613 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3614 udelay(100); 3615 if (chn == 3) { 3616 ICE1712_STDSP24_2_CHN4(ice->hoontech_boxbits, 0); 3617 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3618 } else { 3619 switch (chn) { 3620 case 0: ICE1712_STDSP24_1_CHN1(ice->hoontech_boxbits, 0); break; 3621 case 1: ICE1712_STDSP24_1_CHN2(ice->hoontech_boxbits, 0); break; 3622 case 2: ICE1712_STDSP24_1_CHN3(ice->hoontech_boxbits, 0); break; 3623 } 3624 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[1]); 3625 } 3626 udelay(100); 3627 ICE1712_STDSP24_1_CHN1(ice->hoontech_boxbits, 1); 3628 ICE1712_STDSP24_1_CHN2(ice->hoontech_boxbits, 1); 3629 ICE1712_STDSP24_1_CHN3(ice->hoontech_boxbits, 1); 3630 ICE1712_STDSP24_2_CHN4(ice->hoontech_boxbits, 1); 3631 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[1]); 3632 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3633 udelay(100); 3634 3635 ICE1712_STDSP24_2_MIDI1(ice->hoontech_boxbits, 0); 3636 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3637 3638 up(&ice->gpio_mutex); 3639 } 3640 3641 static void __devinit snd_ice1712_stdsp24_box_midi(ice1712_t *ice, int box, int master, int slave) 3642 { 3643 down(&ice->gpio_mutex); 3644 3645 /* select box */ 3646 ICE1712_STDSP24_0_BOX(ice->hoontech_boxbits, box); 3647 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[0]); 3648 3649 ICE1712_STDSP24_2_MIDIIN(ice->hoontech_boxbits, 1); 3650 ICE1712_STDSP24_2_MIDI1(ice->hoontech_boxbits, master); 3651 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3652 3653 udelay(100); 3654 3655 ICE1712_STDSP24_2_MIDIIN(ice->hoontech_boxbits, 0); 3656 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3657 3658 udelay(100); 3659 3660 ICE1712_STDSP24_2_MIDIIN(ice->hoontech_boxbits, 1); 3661 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[2]); 3662 3663 udelay(100); 3664 3665 /* MIDI2 is direct */ 3666 ICE1712_STDSP24_3_MIDI2(ice->hoontech_boxbits, slave); 3667 snd_ice1712_stdsp24_gpio_write(ice, ice->hoontech_boxbits[3]); 3668 3669 up(&ice->gpio_mutex); 3670 } 3671 3672 static void __devinit snd_ice1712_stdsp24_init(ice1712_t *ice) 3673 { 3674 int box, chn; 3675 3676 ice->hoontech_boxbits[0] = 3677 ice->hoontech_boxbits[1] = 3678 ice->hoontech_boxbits[2] = 3679 ice->hoontech_boxbits[3] = 0; /* should be already */ 3680 3681 ICE1712_STDSP24_SET_ADDR(ice->hoontech_boxbits, 0); 3682 ICE1712_STDSP24_CLOCK(ice->hoontech_boxbits, 0, 1); 3683 ICE1712_STDSP24_0_BOX(ice->hoontech_boxbits, 0); 3684 ICE1712_STDSP24_0_DAREAR(ice->hoontech_boxbits, 0); 3685 3686 ICE1712_STDSP24_SET_ADDR(ice->hoontech_boxbits, 1); 3687 ICE1712_STDSP24_CLOCK(ice->hoontech_boxbits, 1, 1); 3688 ICE1712_STDSP24_1_CHN1(ice->hoontech_boxbits, 1); 3689 ICE1712_STDSP24_1_CHN2(ice->hoontech_boxbits, 1); 3690 ICE1712_STDSP24_1_CHN3(ice->hoontech_boxbits, 1); 3691 3692 ICE1712_STDSP24_SET_ADDR(ice->hoontech_boxbits, 2); 3693 ICE1712_STDSP24_CLOCK(ice->hoontech_boxbits, 2, 1); 3694 ICE1712_STDSP24_2_CHN4(ice->hoontech_boxbits, 1); 3695 ICE1712_STDSP24_2_MIDIIN(ice->hoontech_boxbits, 1); 3696 ICE1712_STDSP24_2_MIDI1(ice->hoontech_boxbits, 0); 3697 3698 ICE1712_STDSP24_SET_ADDR(ice->hoontech_boxbits, 3); 3699 ICE1712_STDSP24_CLOCK(ice->hoontech_boxbits, 3, 1); 3700 ICE1712_STDSP24_3_MIDI2(ice->hoontech_boxbits, 0); 3701 ICE1712_STDSP24_3_MUTE(ice->hoontech_boxbits, 1); 3702 ICE1712_STDSP24_3_INSEL(ice->hoontech_boxbits, 0); 3703 3704 /* let's go - activate only functions in first box */ 3705 ice->hoontech_config = 0; 3706 /* ICE1712_STDSP24_MUTE | 3707 ICE1712_STDSP24_INSEL | 3708 ICE1712_STDSP24_DAREAR; */ 3709 ice->hoontech_boxconfig[0] = ICE1712_STDSP24_BOX_CHN1 | 3710 ICE1712_STDSP24_BOX_CHN2 | 3711 ICE1712_STDSP24_BOX_CHN3 | 3712 ICE1712_STDSP24_BOX_CHN4 | 3713 ICE1712_STDSP24_BOX_MIDI1 | 3714 ICE1712_STDSP24_BOX_MIDI2; 3715 ice->hoontech_boxconfig[1] = 3716 ice->hoontech_boxconfig[2] = 3717 ice->hoontech_boxconfig[3] = 0; 3718 snd_ice1712_stdsp24_darear(ice, (ice->hoontech_config & ICE1712_STDSP24_DAREAR) ? 1 : 0); 3719 snd_ice1712_stdsp24_mute(ice, (ice->hoontech_config & ICE1712_STDSP24_MUTE) ? 1 : 0); 3720 snd_ice1712_stdsp24_insel(ice, (ice->hoontech_config & ICE1712_STDSP24_INSEL) ? 1 : 0); 3721 for (box = 0; box < 4; box++) { 3722 for (chn = 0; chn < 4; chn++) 3723 snd_ice1712_stdsp24_box_channel(ice, box, chn, (ice->hoontech_boxconfig[box] & (1 << chn)) ? 1 : 0); 3724 snd_ice1712_stdsp24_box_midi(ice, box, 3725 (ice->hoontech_boxconfig[box] & ICE1712_STDSP24_BOX_MIDI1) ? 1 : 0, 3726 (ice->hoontech_boxconfig[box] & ICE1712_STDSP24_BOX_MIDI2) ? 1 : 0); 3727 } 3728 } 2056 3729 2057 3730 2058 static int __devinit snd_ice1712_chip_init(ice1712_t *ice) 3731 2059 { 3732 int err, has_i2c = 0;3733 3734 2060 outb(ICE1712_RESET | ICE1712_NATIVE, ICEREG(ice, CONTROL)); 3735 2061 udelay(200); … … 3762 2088 } 3763 2089 3764 /* determine I2C, DACs and ADCs */ 3765 switch (ice->eeprom.subvendor) { 3766 case ICE1712_SUBDEVICE_AUDIOPHILE: 3767 ice->ak4528 = 1; 3768 /* follow thru */ 3769 case ICE1712_SUBDEVICE_EWX2496: 3770 has_i2c = 1; 3771 ice->num_adcs = ice->num_dacs = ice->num_total_dacs = 2; 3772 break; 3773 case ICE1712_SUBDEVICE_DELTA44: 3774 case ICE1712_SUBDEVICE_DELTA66: 3775 ice->num_adcs = ice->num_dacs = ice->num_total_dacs = 4; 3776 if (ice->omni) 3777 ice->num_total_dacs = 8; 3778 break; 3779 case ICE1712_SUBDEVICE_EWS88MT: 3780 has_i2c = 1; 3781 /* follow thru */ 3782 case ICE1712_SUBDEVICE_DELTA1010: 3783 case ICE1712_SUBDEVICE_STDSP24: 3784 ice->num_adcs = ice->num_dacs = ice->num_total_dacs = 8; 3785 break; 3786 case ICE1712_SUBDEVICE_EWS88D: 3787 has_i2c = 1; 3788 break; 3789 case ICE1712_SUBDEVICE_DMX6FIRE: 3790 has_i2c = 1; 3791 ice->num_adcs = ice->num_dacs = ice->num_total_dacs = 6; 3792 break; 3793 } 3794 3795 if (has_i2c) { 3796 if ((err = snd_i2c_bus_create(ice->card, "ICE1712 GPIO 1", NULL, &ice->i2c)) < 0) { 3797 snd_printk("unable to create I2C bus\n"); 3798 return err; 3799 } 3800 ice->i2c->private_data = ice; 3801 switch (ice->eeprom.subvendor) { 3802 case ICE1712_SUBDEVICE_AUDIOPHILE: 3803 ice->i2c->ops = &ap_cs8427_i2c_ops; 3804 break; 3805 case ICE1712_SUBDEVICE_EWX2496: 3806 case ICE1712_SUBDEVICE_EWS88MT: 3807 case ICE1712_SUBDEVICE_EWS88D: 3808 case ICE1712_SUBDEVICE_DMX6FIRE: 3809 ice->i2c->hw_ops.bit = &snd_ice1712_ewx_cs8427_bit_ops; 3810 break; 3811 } 3812 switch (ice->eeprom.subvendor) { 3813 case ICE1712_SUBDEVICE_AUDIOPHILE: 3814 case ICE1712_SUBDEVICE_EWX2496: 3815 if ((err = snd_cs8427_create(ice->i2c, CS8427_BASE_ADDR, &ice->cs8427)) < 0) { 3816 snd_printk("CS8427 initialization failed\n"); 3817 return err; 3818 } 3819 break; 3820 case ICE1712_SUBDEVICE_DMX6FIRE: 3821 #if 0 // XXX not working yet 3822 if ((err = snd_i2c_device_create(ice->i2c, "PCF9554", 0x40>>1, &ice->pcf8575)) < 0) 3823 return err; 3824 if ((err = snd_cs8427_create(ice->i2c, 0x11, &ice->cs8427)) < 0) { 3825 snd_printk("CS8427 initialization failed\n"); 3826 return err; 3827 } 3828 #endif // XXX not working yet 3829 break; 3830 case ICE1712_SUBDEVICE_EWS88MT: 3831 if ((err = snd_i2c_device_create(ice->i2c, "CS8404", ICE1712_EWS88MT_CS8404_ADDR, &ice->cs8404)) < 0) 3832 return err; 3833 if ((err = snd_i2c_device_create(ice->i2c, "PCF8574 (1st)", ICE1712_EWS88MT_INPUT_ADDR, &ice->pcf8574[0])) < 0) 3834 return err; 3835 if ((err = snd_i2c_device_create(ice->i2c, "PCF8574 (2nd)", ICE1712_EWS88MT_OUTPUT_ADDR, &ice->pcf8574[1])) < 0) 3836 return err; 3837 break; 3838 case ICE1712_SUBDEVICE_EWS88D: 3839 if ((err = snd_i2c_device_create(ice->i2c, "PCF8575", ICE1712_EWS88D_PCF_ADDR, &ice->pcf8575)) < 0) 3840 return err; 3841 break; 3842 } 3843 } 3844 /* second stage of initialization, analog parts and others */ 3845 switch (ice->eeprom.subvendor) { 3846 case ICE1712_SUBDEVICE_EWS88MT: 3847 /* Check if the front module is connected */ 3848 if ((err = snd_ice1712_ews88mt_chip_select(ice, 0x0f)) < 0) 3849 return err; 3850 /* Fall through */ 3851 case ICE1712_SUBDEVICE_DELTA66: 3852 case ICE1712_SUBDEVICE_DELTA44: 3853 case ICE1712_SUBDEVICE_AUDIOPHILE: 3854 case ICE1712_SUBDEVICE_EWX2496: 3855 case ICE1712_SUBDEVICE_DMX6FIRE: 3856 snd_ice1712_ak4524_init(ice); 3857 break; 3858 case ICE1712_SUBDEVICE_STDSP24: 3859 snd_ice1712_stdsp24_init(ice); 3860 break; 3861 } 3862 switch (ice->eeprom.subvendor) { 3863 case ICE1712_SUBDEVICE_AUDIOPHILE: 3864 ice->cs8427_ops = &snd_ice1712_ap_cs8427_ops; 3865 snd_ice1712_cs8427_init(ice); 3866 break; 3867 case ICE1712_SUBDEVICE_EWX2496: 3868 ice->cs8427_ops = &snd_ice1712_ewx_cs8427_ops; 3869 snd_ice1712_cs8427_init(ice); 3870 break; 3871 case ICE1712_SUBDEVICE_DELTA1010: 3872 case ICE1712_SUBDEVICE_DELTADIO2496: 3873 case ICE1712_SUBDEVICE_DELTA66: 3874 /* Set spdif defaults */ 3875 snd_ice1712_delta_cs8403_spdif_write(ice, ice->cs8403_spdif_bits); 3876 break; 3877 } 3878 switch (ice->eeprom.subvendor) { 3879 case ICE1712_SUBDEVICE_EWS88MT: 3880 case ICE1712_SUBDEVICE_EWS88D: 3881 /* Set spdif defaults */ 3882 snd_ice1712_ews_cs8404_spdif_write(ice, ice->cs8403_spdif_bits); 3883 break; 3884 } 3885 return 0; 3886 } 3887 3888 static int __init snd_ice1712_build_controls(ice1712_t *ice) 2090 return 0; 2091 } 2092 2093 2094 int __devinit snd_ice1712_spdif_build_controls(ice1712_t *ice) 2095 { 2096 int err; 2097 snd_kcontrol_t *kctl; 2098 2099 snd_assert(ice->pcm_pro != NULL, return -EIO); 2100 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_default, ice)); 2101 if (err < 0) 2102 return err; 2103 kctl->id.device = ice->pcm_pro->device; 2104 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskc, ice)); 2105 if (err < 0) 2106 return err; 2107 kctl->id.device = ice->pcm_pro->device; 2108 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskp, ice)); 2109 if (err < 0) 2110 return err; 2111 kctl->id.device = ice->pcm_pro->device; 2112 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_stream, ice)); 2113 if (err < 0) 2114 return err; 2115 kctl->id.device = ice->pcm_pro->device; 2116 ice->spdif.stream_ctl = kctl; 2117 return 0; 2118 } 2119 2120 2121 static int __devinit snd_ice1712_build_controls(ice1712_t *ice) 3889 2122 { 3890 2123 unsigned int idx; … … 3922 2155 if (err < 0) 3923 2156 return err; 3924 switch (ice->eeprom.subvendor) {3925 case ICE1712_SUBDEVICE_DELTA1010:3926 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta1010_wordclock_select, ice));3927 if (err < 0)3928 return err;3929 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta1010_wordclock_status, ice));3930 if (err < 0)3931 return err;3932 break;3933 case ICE1712_SUBDEVICE_DELTADIO2496:3934 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_deltadio2496_spdif_in_select, ice));3935 if (err < 0)3936 return err;3937 break;3938 }3939 switch (ice->eeprom.subvendor) {3940 case ICE1712_SUBDEVICE_DELTA1010:3941 case ICE1712_SUBDEVICE_DELTADIO2496:3942 case ICE1712_SUBDEVICE_DELTA66:3943 case ICE1712_SUBDEVICE_AUDIOPHILE:3944 case ICE1712_SUBDEVICE_EWX2496:3945 case ICE1712_SUBDEVICE_EWS88MT:3946 case ICE1712_SUBDEVICE_EWS88D:3947 snd_assert(ice->pcm_pro != NULL, return -EIO);3948 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_default, ice));3949 if (err < 0)3950 return err;3951 kctl->id.device = ice->pcm_pro->device;3952 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskc, ice));3953 if (err < 0)3954 return err;3955 kctl->id.device = ice->pcm_pro->device;3956 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskp, ice));3957 if (err < 0)3958 return err;3959 kctl->id.device = ice->pcm_pro->device;3960 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_stream, ice));3961 if (err < 0)3962 return err;3963 kctl->id.device = ice->pcm_pro->device;3964 ice->spdif_stream_ctl = kctl;3965 break;3966 }3967 switch (ice->eeprom.subvendor) {3968 case ICE1712_SUBDEVICE_DELTA1010:3969 case ICE1712_SUBDEVICE_DELTADIO2496:3970 case ICE1712_SUBDEVICE_DELTA66:3971 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta_spdif_in_status, ice));3972 if (err < 0)3973 return err;3974 break;3975 }3976 switch (ice->eeprom.subvendor) {3977 case ICE1712_SUBDEVICE_EWX2496:3978 case ICE1712_SUBDEVICE_AUDIOPHILE:3979 case ICE1712_SUBDEVICE_DELTA44:3980 case ICE1712_SUBDEVICE_DELTA66:3981 case ICE1712_SUBDEVICE_EWS88MT:3982 case ICE1712_SUBDEVICE_DMX6FIRE:3983 for (idx = 0; idx < ice->num_dacs; ++idx) {3984 snd_kcontrol_t ctl;3985 memset(&ctl, 0, sizeof(ctl));3986 strcpy(ctl.id.name, "DAC Volume");3987 ctl.id.index = idx;3988 ctl.id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;3989 ctl.info = snd_ice1712_ak4524_volume_info;3990 ctl.access = SNDRV_CTL_ELEM_ACCESS_READ|SNDRV_CTL_ELEM_ACCESS_WRITE;3991 ctl.get = snd_ice1712_ak4524_volume_get;3992 ctl.put = snd_ice1712_ak4524_volume_put;3993 if (ice->ak4528)3994 ctl.private_value = (idx / 2) * 8 + (idx % 2) + 4; /* register 4 & 5 */3995 else3996 ctl.private_value = (idx / 2) * 8 + (idx % 2) + 6; /* register 6 & 7 */3997 ctl.private_data = ice;3998 if ((err = snd_ctl_add(ice->card, snd_ctl_new(&ctl))) < 0)3999 return err;4000 }4001 for (idx = 0; idx < ice->num_adcs && !ice->ak4528; ++idx) {4002 snd_kcontrol_t ctl;4003 memset(&ctl, 0, sizeof(ctl));4004 strcpy(ctl.id.name, "ADC Volume");4005 ctl.id.index = idx;4006 ctl.id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;4007 ctl.info = snd_ice1712_ak4524_volume_info;4008 ctl.access = SNDRV_CTL_ELEM_ACCESS_READ|SNDRV_CTL_ELEM_ACCESS_WRITE;4009 ctl.get = snd_ice1712_ak4524_volume_get;4010 ctl.put = snd_ice1712_ak4524_volume_put;4011 ctl.private_value = (idx / 2) * 8 + (idx % 2) + 4; /* register 4 & 5 */4012 ctl.private_data = ice;4013 if ((err = snd_ctl_add(ice->card, snd_ctl_new(&ctl))) < 0)4014 return err;4015 memset(&ctl, 0, sizeof(ctl));4016 strcpy(ctl.id.name, "IPGA Analog Capture Volume");4017 ctl.id.index = idx;4018 ctl.id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;4019 ctl.info = snd_ice1712_ak4524_ipga_gain_info;4020 ctl.access = SNDRV_CTL_ELEM_ACCESS_READ|SNDRV_CTL_ELEM_ACCESS_WRITE;4021 ctl.get = snd_ice1712_ak4524_ipga_gain_get;4022 ctl.put = snd_ice1712_ak4524_ipga_gain_put;4023 ctl.private_value = (idx / 2) * 8 + (idx % 2) + 4; /* register 4 & 5 */4024 ctl.private_data = ice;4025 if ((err = snd_ctl_add(ice->card, snd_ctl_new(&ctl))) < 0)4026 return err;4027 }4028 for (idx = 0; idx < ice->num_dacs/2; idx++) {4029 snd_kcontrol_t ctl;4030 memset(&ctl, 0, sizeof(ctl));4031 strcpy(ctl.id.name, "Deemphasis");4032 ctl.id.index = idx;4033 ctl.id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;4034 ctl.info = snd_ice1712_ak4524_deemphasis_info;4035 ctl.access = SNDRV_CTL_ELEM_ACCESS_READ|SNDRV_CTL_ELEM_ACCESS_WRITE;4036 ctl.get = snd_ice1712_ak4524_deemphasis_get;4037 ctl.put = snd_ice1712_ak4524_deemphasis_put;4038 ctl.private_data = ice;4039 if ((err = snd_ctl_add(ice->card, snd_ctl_new(&ctl))) < 0)4040 return err;4041 }4042 break;4043 }4044 switch (ice->eeprom.subvendor) {4045 case ICE1712_SUBDEVICE_EWX2496:4046 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_ewx_input_sense, ice));4047 if (err < 0)4048 return err;4049 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_ewx_output_sense, ice));4050 if (err < 0)4051 return err;4052 break;4053 case ICE1712_SUBDEVICE_EWS88MT:4054 for (idx = 0; idx < 8; idx++) {4055 kctl = snd_ctl_new1(&snd_ice1712_ews88mt_input_sense, ice);4056 kctl->id.index = idx;4057 err = snd_ctl_add(ice->card, kctl);4058 if (err < 0)4059 return err;4060 }4061 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_ews88mt_output_sense, ice));4062 if (err < 0)4063 return err;4064 break;4065 case ICE1712_SUBDEVICE_EWS88D:4066 for (idx = 0; idx < sizeof(snd_ice1712_ews88d_controls)/sizeof(snd_ice1712_ews88d_controls[0]); idx++) {4067 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_ews88d_controls[idx], ice));4068 if (err < 0)4069 return err;4070 }4071 break;4072 case ICE1712_SUBDEVICE_DMX6FIRE:4073 #if 0 // XXX not working yet4074 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_6fire_led, ice));4075 if (err < 0)4076 return err;4077 #endif4078 break;4079 }4080 4081 2157 return 0; 4082 2158 } … … 4151 2227 spin_lock_init(&ice->reg_lock); 4152 2228 init_MUTEX(&ice->gpio_mutex); 4153 ice-> cs8403_spdif_bits =4154 ice->cs8403_spdif_stream_bits = (0x01 | /* consumer format */2229 ice->spdif.cs8403_bits = 2230 ice->spdif.cs8403_stream_bits = (0x01 | /* consumer format */ 4155 2231 0x10 | /* no emphasis */ 4156 2232 0x20); /* PCM encoder/decoder */ … … 4219 2295 } 4220 2296 2297 2298 /* 2299 * 2300 * Registraton 2301 * 2302 */ 2303 2304 static struct snd_ice1712_card_info no_matched __devinitdata; 2305 2306 static struct snd_ice1712_card_info *card_tables[] __devinitdata = { 2307 snd_ice1712_hoontech_cards, 2308 snd_ice1712_delta_cards, 2309 snd_ice1712_ews_cards, 2310 0, 2311 }; 2312 2313 4221 2314 static int __devinit snd_ice1712_probe(struct pci_dev *pci, 4222 const struct pci_device_id *id)2315 const struct pci_device_id *pci_id) 4223 2316 { 4224 2317 static int dev; … … 4226 2319 ice1712_t *ice; 4227 2320 int pcm_dev = 0, err; 2321 struct snd_ice1712_card_info **tbl, *c; 4228 2322 4229 2323 if (dev >= SNDRV_CARDS) 4230 2324 return -ENODEV; 4231 if (!snd_enable[dev]) {2325 if (!enable[dev]) { 4232 2326 dev++; 4233 2327 return -ENOENT; 4234 2328 } 4235 2329 4236 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);2330 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 4237 2331 if (card == NULL) 4238 2332 return -ENOMEM; 4239 2333 4240 if ((err = snd_ice1712_create(card, pci, snd_omni[dev], &ice)) < 0) { 2334 strcpy(card->driver, "ICE1712"); 2335 strcpy(card->shortname, "ICEnsemble ICE1712"); 2336 2337 if ((err = snd_ice1712_create(card, pci, omni[dev], &ice)) < 0) { 4241 2338 snd_card_free(card); 4242 2339 return err; 4243 2340 } 2341 2342 for (tbl = card_tables; *tbl; tbl++) { 2343 for (c = *tbl; c->subvendor; c++) { 2344 if (c->subvendor == ice->eeprom.subvendor) { 2345 strcpy(card->shortname, c->name); 2346 if (c->chip_init) { 2347 if ((err = c->chip_init(ice)) < 0) { 2348 snd_card_free(card); 2349 return err; 2350 } 2351 } 2352 goto __found; 2353 } 2354 } 2355 } 2356 c = &no_matched; 2357 __found: 4244 2358 4245 2359 if ((err = snd_ice1712_pcm_profi(ice, pcm_dev++, NULL)) < 0) { … … 4264 2378 } 4265 2379 2380 if (c->build_controls) { 2381 if ((err = c->build_controls(ice)) < 0) { 2382 snd_card_free(card); 2383 return err; 2384 } 2385 } 2386 4266 2387 if (!(ice->eeprom.codec & ICE1712_CFG_NO_CON_AC97)) 4267 2388 if ((err = snd_ice1712_pcm_ds(ice, pcm_dev++, NULL)) < 0) { … … 4270 2391 } 4271 2392 4272 strcpy(card->driver, "ICE1712"); 4273 strcpy(card->shortname, "ICEnsemble ICE1712"); 4274 4275 switch (ice->eeprom.subvendor) { 4276 case ICE1712_SUBDEVICE_STDSP24: 4277 strcpy(card->shortname, "Hoontech SoundTrack Audio DSP24"); 4278 break; 4279 case ICE1712_SUBDEVICE_DELTA1010: 4280 strcpy(card->shortname, "M Audio Delta 1010"); 4281 break; 4282 case ICE1712_SUBDEVICE_DELTADIO2496: 4283 strcpy(card->shortname, "M Audio Delta DiO 2496"); 4284 goto __no_mpu401; 4285 case ICE1712_SUBDEVICE_DELTA66: 4286 strcpy(card->shortname, "M Audio Delta 66"); 4287 goto __no_mpu401; 4288 case ICE1712_SUBDEVICE_DELTA44: 4289 strcpy(card->shortname, "M Audio Delta 44"); 4290 goto __no_mpu401; 4291 case ICE1712_SUBDEVICE_AUDIOPHILE: 4292 strcpy(card->shortname, "M Audio Audiophile 24/96"); 4293 break; 4294 case ICE1712_SUBDEVICE_DELTA1010LT: 4295 strcpy(card->shortname, "M Audio Delta 1010LT"); 4296 break; 4297 case ICE1712_SUBDEVICE_EWX2496: 4298 strcpy(card->shortname, "TerraTec EWX 24/96"); 4299 break; 4300 case ICE1712_SUBDEVICE_EWS88MT: 4301 strcpy(card->shortname, "TerraTec EWS 88MT"); 4302 break; 4303 case ICE1712_SUBDEVICE_EWS88D: 4304 strcpy(card->shortname, "TerraTec EWS 88D"); 4305 break; 4306 case ICE1712_SUBDEVICE_DMX6FIRE: 4307 strcpy(card->shortname, "TerraTec DMX 6Fire"); 4308 break; 4309 } 4310 2393 if (! c->no_mpu401) { 4311 2394 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_ICE1712, 4312 2395 ICEREG(ice, MPU1_CTRL), 1, … … 4325 2408 return err; 4326 2409 } 4327 4328 __no_mpu401: 2410 } 2411 4329 2412 sprintf(card->longname, "%s at 0x%lx, irq %i", 4330 2413 card->shortname, ice->port, ice->irq); … … 4375 2458 #ifndef MODULE 4376 2459 4377 /* format is: snd-ice1712= snd_enable,snd_index,snd_id */2460 /* format is: snd-ice1712=enable,index,id */ 4378 2461 4379 2462 static int __init alsa_card_ice1712_setup(char *str) … … 4383 2466 if (nr_dev >= SNDRV_CARDS) 4384 2467 return 0; 4385 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&4386 get_option(&str,& snd_index[nr_dev]) == 2 &&4387 get_id(&str,& snd_id[nr_dev]) == 2);2468 (void)(get_option(&str,&enable[nr_dev]) == 2 && 2469 get_option(&str,&index[nr_dev]) == 2 && 2470 get_id(&str,&id[nr_dev]) == 2); 4388 2471 nr_dev++; 4389 2472 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/korg1212/korg1212.c ¶
r210 r212 388 388 MODULE_DEVICES("{{KORG,korg1212}}"); 389 389 390 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */391 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */392 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */393 394 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");395 MODULE_PARM_DESC( snd_index, "Index value for Korg 1212 soundcard.");396 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);397 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");398 MODULE_PARM_DESC( snd_id, "ID string for Korg 1212 soundcard.");399 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);400 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");401 MODULE_PARM_DESC( snd_enable, "Enable Korg 1212 soundcard.");402 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);390 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 391 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 392 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 393 394 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 395 MODULE_PARM_DESC(index, "Index value for Korg 1212 soundcard."); 396 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 397 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 398 MODULE_PARM_DESC(id, "ID string for Korg 1212 soundcard."); 399 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 400 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 401 MODULE_PARM_DESC(enable, "Enable Korg 1212 soundcard."); 402 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 403 403 MODULE_AUTHOR("Haroldo Gamal <gamal@alternex.com.br>"); 404 404 … … 2253 2253 static int __devinit 2254 2254 snd_korg1212_probe(struct pci_dev *pci, 2255 const struct pci_device_id * id)2255 const struct pci_device_id *pci_id) 2256 2256 { 2257 2257 static int dev; … … 2263 2263 return -ENODEV; 2264 2264 } 2265 if (! snd_enable[dev]) {2265 if (!enable[dev]) { 2266 2266 dev++; 2267 2267 return -ENOENT; 2268 2268 } 2269 if ((card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,2269 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 2270 2270 sizeof(korg1212_t))) == NULL) 2271 2271 return -ENOMEM; … … 2335 2335 #ifndef MODULE 2336 2336 2337 /* format is: snd-korg1212= snd_enable,snd_index,snd_id */2337 /* format is: snd-korg1212=enable,index,id */ 2338 2338 2339 2339 static int __init alsa_card_korg1212_setup(char *str) … … 2343 2343 if (nr_dev >= SNDRV_CARDS) 2344 2344 return 0; 2345 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&2346 get_option(&str,& snd_index[nr_dev]) == 2 &&2347 get_id(&str,& snd_id[nr_dev]) == 2);2345 (void)(get_option(&str,&enable[nr_dev]) == 2 && 2346 get_option(&str,&index[nr_dev]) == 2 && 2347 get_id(&str,&id[nr_dev]) == 2); 2348 2348 nr_dev++; 2349 2349 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/maestro3.c ¶
r207 r212 1768 1768 static snd_pcm_hardware_t snd_m3_playback = 1769 1769 { 1770 /* info: */(SNDRV_PCM_INFO_MMAP |1770 .info = (SNDRV_PCM_INFO_MMAP | 1771 1771 SNDRV_PCM_INFO_INTERLEAVED | 1772 1772 SNDRV_PCM_INFO_MMAP_VALID | … … 1774 1774 /*SNDRV_PCM_INFO_PAUSE |*/ 1775 1775 SNDRV_PCM_INFO_RESUME), 1776 /* formats: */ SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE, 1777 /* rates: */ SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1778 /* rate_min: */ 8000, 1779 /* rate_max: */ 48000, 1780 /* channels_min: */ 1, 1781 /* channels_max: */ 2, 1782 /* buffer_bytes_max: */ (512*1024), 1783 /* period_bytes_min: */ 64, 1784 /* period_bytes_max: */ (512*1024), 1785 /* periods_min: */ 1, 1786 /* periods_max: */ 1024, 1787 0 1776 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE, 1777 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1778 .rate_min = 8000, 1779 .rate_max = 48000, 1780 .channels_min = 1, 1781 .channels_max = 2, 1782 .buffer_bytes_max = (512*1024), 1783 .period_bytes_min = 64, 1784 .period_bytes_max = (512*1024), 1785 .periods_min = 1, 1786 .periods_max = 1024, 1788 1787 }; 1789 1788 1790 1789 static snd_pcm_hardware_t snd_m3_capture = 1791 1790 { 1792 /* info: */(SNDRV_PCM_INFO_MMAP |1791 .info = (SNDRV_PCM_INFO_MMAP | 1793 1792 SNDRV_PCM_INFO_INTERLEAVED | 1794 1793 SNDRV_PCM_INFO_MMAP_VALID | … … 1796 1795 /*SNDRV_PCM_INFO_PAUSE |*/ 1797 1796 SNDRV_PCM_INFO_RESUME), 1798 /* formats: */ SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE, 1799 /* rates: */ SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1800 /* rate_min: */ 8000, 1801 /* rate_max: */ 48000, 1802 /* channels_min: */ 1, 1803 /* channels_max: */ 2, 1804 /* buffer_bytes_max: */ (512*1024), 1805 /* period_bytes_min: */ 64, 1806 /* period_bytes_max: */ (512*1024), 1807 /* periods_min: */ 1, 1808 /* periods_max: */ 1024, 1809 0 1797 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE, 1798 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1799 .rate_min = 8000, 1800 .rate_max = 48000, 1801 .channels_min = 1, 1802 .channels_max = 2, 1803 .buffer_bytes_max = (512*1024), 1804 .period_bytes_min = 64, 1805 .period_bytes_max = (512*1024), 1806 .periods_min = 1, 1807 .periods_max = 1024, 1810 1808 }; 1811 1809 … … 1923 1921 1924 1922 static snd_pcm_ops_t snd_m3_playback_ops = { 1925 1926 1927 1928 1929 1930 1931 1932 snd_m3_pcm_pointer,0,0 1923 .open = snd_m3_playback_open, 1924 .close = snd_m3_playback_close, 1925 .ioctl = snd_pcm_lib_ioctl, 1926 .hw_params = snd_m3_pcm_hw_params, 1927 .hw_free = snd_m3_pcm_hw_free, 1928 .prepare = snd_m3_pcm_prepare, 1929 .trigger = snd_m3_pcm_trigger, 1930 .pointer = snd_m3_pcm_pointer, 1933 1931 }; 1934 1932 1935 1933 static snd_pcm_ops_t snd_m3_capture_ops = { 1936 1937 1938 1939 1940 1941 1942 1943 snd_m3_pcm_pointer,0,0 1934 .open = snd_m3_capture_open, 1935 .close = snd_m3_capture_close, 1936 .ioctl = snd_pcm_lib_ioctl, 1937 .hw_params = snd_m3_pcm_hw_params, 1938 .hw_free = snd_m3_pcm_hw_free, 1939 .prepare = snd_m3_pcm_prepare, 1940 .trigger = snd_m3_pcm_trigger, 1941 .pointer = snd_m3_pcm_pointer, 1944 1942 }; 1945 1943 -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/makefile.os2 ¶
r32 r212 35 35 FILE2 = es1968.obj intel8x0.obj maestro3.obj via82xx.obj als4000.obj 36 36 FILE3 = fm801.obj atiixp.obj bt87x.obj 37 # ice1712.obj fm801.objrme96.obj sonicvibes.obj37 # rme96.obj sonicvibes.obj 38 38 FILE4 = 39 39 FILE5 = … … 91 91 @wmake $(NMAKEOPTS) 92 92 @cd .. 93 # @echo BUILDING ice1712 94 # @cd ice1712 95 # @wmake $(NMAKEOPTS) 96 # @cd .. 93 97 ## @echo BUILDING korg1212 94 98 ## @cd korg1212 -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/rme96.c ¶
r210 r212 52 52 "{RME,Digi96/8 PAD}}"); 53 53 54 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 55 static char *snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 56 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE; /* Enable this card */ 57 58 MODULE_PARM(snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 59 MODULE_PARM_DESC(snd_index, "Index value for RME Digi96 soundcard."); 60 MODULE_PARM_SYNTAX(snd_index, SNDRV_INDEX_DESC); 61 MODULE_PARM(snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 62 MODULE_PARM_DESC(snd_id, "ID string for RME Digi96 soundcard."); 63 MODULE_PARM_SYNTAX(snd_id, SNDRV_ID_DESC); 64 MODULE_PARM(snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 65 MODULE_PARM_DESC(snd_enable, "Enable RME Digi96 soundcard."); 66 MODULE_PARM_SYNTAX(snd_enable, SNDRV_ENABLE_DESC); 67 MODULE_AUTHOR("Anders Torger <torger@ludd.luth.se>"); 54 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 55 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 56 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ 57 58 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 59 MODULE_PARM_DESC(index, "Index value for RME Digi96 soundcard."); 60 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 61 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 62 MODULE_PARM_DESC(id, "ID string for RME Digi96 soundcard."); 63 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 64 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 65 MODULE_PARM_DESC(enable, "Enable RME Digi96 soundcard."); 66 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 68 67 69 68 /* … … 1613 1612 1614 1613 spin_lock_init(&rme96->lock); 1615 if ((rme96->iobase = (unsigned long) ioremap (rme96->port, RME96_IO_SIZE)) == 0) {1614 if ((rme96->iobase = (unsigned long) ioremap_nocache(rme96->port, RME96_IO_SIZE)) == 0) { 1616 1615 snd_printk("unable to remap memory region 0x%lx-0x%lx\n", rme96->port, rme96->port + RME96_IO_SIZE - 1); 1617 1616 return -ENOMEM; … … 2419 2418 static int __devinit 2420 2419 snd_rme96_probe(struct pci_dev *pci, 2421 const struct pci_device_id * id)2420 const struct pci_device_id *pci_id) 2422 2421 { 2423 2422 static int dev; … … 2430 2429 return -ENODEV; 2431 2430 } 2432 if (!snd_enable[dev]) {2431 if (!enable[dev]) { 2433 2432 dev++; 2434 2433 return -ENOENT; 2435 2434 } 2436 if ((card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,2435 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 2437 2436 sizeof(rme96_t))) == NULL) 2438 2437 return -ENOMEM; … … 2497 2496 if ((err = pci_module_init(&driver)) < 0) { 2498 2497 #ifdef MODULE 2499 // snd_printk(KERN_ERR "No RME Digi96 cards found\n");2498 printk(KERN_ERR "No RME Digi96 cards found\n"); 2500 2499 #endif 2501 2500 return err; … … 2514 2513 #ifndef MODULE 2515 2514 2516 /* format is: snd-rme96= snd_enable,snd_index,snd_id */2515 /* format is: snd-rme96=enable,index,id */ 2517 2516 2518 2517 static int __init alsa_card_rme96_setup(char *str) … … 2522 2521 if (nr_dev >= SNDRV_CARDS) 2523 2522 return 0; 2524 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&2525 get_option(&str,& snd_index[nr_dev]) == 2 &&2526 get_id(&str,& snd_id[nr_dev]) == 2);2523 (void)(get_option(&str,&enable[nr_dev]) == 2 && 2524 get_option(&str,&index[nr_dev]) == 2 && 2525 get_id(&str,&id[nr_dev]) == 2); 2527 2526 nr_dev++; 2528 2527 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/rme9652/hammerfall_mem.c ¶
r207 r212 26 26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 27 27 28 hammerfall_mem.c,v 1. 2 2002/06/19 08:52:11perex Exp28 hammerfall_mem.c,v 1.4 2002/10/21 18:28:25 perex Exp 29 29 30 30 … … 52 52 /* export */ 53 53 54 static int snd_enable[8] = {1,1,1,1,1,1,1,1};55 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(HAMMERFALL_CARDS) "i");56 MODULE_PARM_DESC( snd_enable, "Enable cards to allocate buffers for.");54 static int enable[8] = {1,1,1,1,1,1,1,1}; 55 MODULE_PARM(enable, "1-" __MODULE_STRING(HAMMERFALL_CARDS) "i"); 56 MODULE_PARM_DESC(enable, "Enable cards to allocate buffers for."); 57 57 58 58 MODULE_AUTHOR("Winfried Ritsch, Paul Barton-Davis <pbd@op.net>"); … … 96 96 undesirable. 97 97 */ 98 99 /* remove hack for pci_alloc_consistent to avoid dependecy on snd module */100 #ifdef HACK_PCI_ALLOC_CONSISTENT101 #undef pci_alloc_consistent102 #endif103 98 104 99 static void *hammerfall_malloc_pages(struct pci_dev *pci, … … 245 240 continue; 246 241 247 if (! snd_enable[i])242 if (!enable[i]) 248 243 continue; 249 244 -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/rme9652/hdsp.c ¶
r210 r212 39 39 #include "digiface_firmware.dat" 40 40 41 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */42 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */43 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */44 static int snd_precise_ptr[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0 }; /* Enable precise pointer */45 static int snd_line_outs_monitor[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0}; /* Send all inputs/playback to line outs */46 static int snd_force_firmware[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0}; /* Force firmware reload */47 48 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");49 MODULE_PARM_DESC( snd_index, "Index value for RME Hammerfall DSP interface.");50 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);51 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");52 MODULE_PARM_DESC( snd_id, "ID string for RME Hammerfall DSP interface.");53 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);54 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");55 MODULE_PARM_DESC( snd_enable, "Enable/disable specific Hammerfall DSP soundcards.");56 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);57 MODULE_PARM( snd_precise_ptr, "1-" __MODULE_STRING(SNDRV_CARDS) "i");58 MODULE_PARM_DESC( snd_precise_ptr, "Enable precise pointer (doesn't work reliably).");59 MODULE_PARM_SYNTAX( snd_precise_ptr, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC);60 MODULE_PARM( snd_line_outs_monitor,"1-" __MODULE_STRING(SNDRV_CARDS) "i");61 MODULE_PARM_DESC( snd_line_outs_monitor, "Send all input and playback streams to line outs by default.");62 MODULE_PARM_SYNTAX( snd_line_outs_monitor, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC);63 MODULE_PARM( snd_force_firmware,"1-" __MODULE_STRING(SNDRV_CARDS) "i");64 MODULE_PARM_DESC( snd_force_firmware, "Force a reload of the I/O box firmware");65 MODULE_PARM_SYNTAX( snd_force_firmware, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC);41 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 42 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 43 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ 44 static int precise_ptr[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0 }; /* Enable precise pointer */ 45 static int line_outs_monitor[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0}; /* Send all inputs/playback to line outs */ 46 static int force_firmware[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0}; /* Force firmware reload */ 47 48 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 49 MODULE_PARM_DESC(index, "Index value for RME Hammerfall DSP interface."); 50 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 51 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 52 MODULE_PARM_DESC(id, "ID string for RME Hammerfall DSP interface."); 53 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 54 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 55 MODULE_PARM_DESC(enable, "Enable/disable specific Hammerfall DSP soundcards."); 56 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 57 MODULE_PARM(precise_ptr, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 58 MODULE_PARM_DESC(precise_ptr, "Enable precise pointer (doesn't work reliably)."); 59 MODULE_PARM_SYNTAX(precise_ptr, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC); 60 MODULE_PARM(line_outs_monitor,"1-" __MODULE_STRING(SNDRV_CARDS) "i"); 61 MODULE_PARM_DESC(line_outs_monitor, "Send all input and playback streams to line outs by default."); 62 MODULE_PARM_SYNTAX(line_outs_monitor, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC); 63 MODULE_PARM(force_firmware,"1-" __MODULE_STRING(SNDRV_CARDS) "i"); 64 MODULE_PARM_DESC(force_firmware, "Force a reload of the I/O box firmware"); 65 MODULE_PARM_SYNTAX(force_firmware, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC); 66 66 MODULE_AUTHOR("Paul Davis <pbd@op.net>"); 67 67 MODULE_DESCRIPTION("RME Hammerfall DSP"); … … 2191 2191 hdsp_write_gain (hdsp, i, MINUS_INFINITY_GAIN); 2192 2192 2193 if ( snd_line_outs_monitor[hdsp->dev]) {2193 if (line_outs_monitor[hdsp->dev]) { 2194 2194 2195 2195 snd_printk ("sending all inputs and playback streams to line outs.\n"); … … 2849 2849 } 2850 2850 2851 if ( snd_force_firmware[hdsp->dev] || (hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) {2851 if (force_firmware[hdsp->dev] || (hdsp_read (hdsp, HDSP_statusRegister) & HDSP_DllError) != 0) { 2852 2852 2853 2853 snd_printk ("loading firmware\n"); … … 3069 3069 3070 3070 static int __devinit snd_hdsp_probe(struct pci_dev *pci, 3071 const struct pci_device_id * id)3071 const struct pci_device_id *pci_id) 3072 3072 { 3073 3073 static int dev; … … 3078 3078 if (dev >= SNDRV_CARDS) 3079 3079 return -ENODEV; 3080 if (! snd_enable[dev]) {3080 if (!enable[dev]) { 3081 3081 dev++; 3082 3082 return -ENOENT; 3083 3083 } 3084 3084 3085 if (!(card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, sizeof(hdsp_t))))3085 if (!(card = snd_card_new(index[dev], id[dev], THIS_MODULE, sizeof(hdsp_t)))) 3086 3086 return -ENOMEM; 3087 3087 … … 3091 3091 hdsp->pci = pci; 3092 3092 3093 if ((err = snd_hdsp_create(card, hdsp, snd_precise_ptr[dev])) < 0) {3093 if ((err = snd_hdsp_create(card, hdsp, precise_ptr[dev])) < 0) { 3094 3094 snd_card_free(card); 3095 3095 return err; … … 3144 3144 #ifndef MODULE 3145 3145 3146 /* format is: snd-hdsp= snd_enable,snd_index,snd_id */3146 /* format is: snd-hdsp=enable,index,id */ 3147 3147 3148 3148 static int __init alsa_card_hdsp_setup(char *str) … … 3152 3152 if (nr_dev >= SNDRV_CARDS) 3153 3153 return 0; 3154 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&3155 get_option(&str,& snd_index[nr_dev]) == 2 &&3156 get_id(&str,& snd_id[nr_dev]) == 2);3154 (void)(get_option(&str,&enable[nr_dev]) == 2 && 3155 get_option(&str,&index[nr_dev]) == 2 && 3156 get_id(&str,&id[nr_dev]) == 2); 3157 3157 nr_dev++; 3158 3158 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/rme9652/rme9652.c ¶
r210 r212 35 35 #include <sound/initval.h> 36 36 37 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */38 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */39 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */40 static int snd_precise_ptr[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0 }; /* Enable precise pointer */41 42 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");43 MODULE_PARM_DESC( snd_index, "Index value for RME Digi9652 (Hammerfall) soundcard.");44 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);45 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");46 MODULE_PARM_DESC( snd_id, "ID string for RME Digi9652 (Hammerfall) soundcard.");47 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);48 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");49 MODULE_PARM_DESC( snd_enable, "Enable/disable specific RME96{52,36} soundcards.");50 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);51 MODULE_PARM( snd_precise_ptr, "1-" __MODULE_STRING(SNDRV_CARDS) "i");52 MODULE_PARM_DESC( snd_precise_ptr, "Enable precise pointer (doesn't work reliably).");53 MODULE_PARM_SYNTAX( snd_precise_ptr, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC);37 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 38 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 39 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ 40 static int precise_ptr[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 0 }; /* Enable precise pointer */ 41 42 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 43 MODULE_PARM_DESC(index, "Index value for RME Digi9652 (Hammerfall) soundcard."); 44 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 45 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 46 MODULE_PARM_DESC(id, "ID string for RME Digi9652 (Hammerfall) soundcard."); 47 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 48 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 49 MODULE_PARM_DESC(enable, "Enable/disable specific RME96{52,36} soundcards."); 50 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 51 MODULE_PARM(precise_ptr, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 52 MODULE_PARM_DESC(precise_ptr, "Enable precise pointer (doesn't work reliably)."); 53 MODULE_PARM_SYNTAX(precise_ptr, SNDRV_ENABLED "," SNDRV_BOOLEAN_FALSE_DESC); 54 54 MODULE_AUTHOR("Paul Davis <pbd@op.net>, Winfried Ritsch"); 55 55 MODULE_DESCRIPTION("RME Digi9652/Digi9636"); … … 2709 2709 2710 2710 static int __devinit snd_rme9652_probe(struct pci_dev *pci, 2711 const struct pci_device_id *id)2711 const struct pci_device_id *pci_id) 2712 2712 { 2713 2713 static int dev; … … 2718 2718 if (dev >= SNDRV_CARDS) 2719 2719 return -ENODEV; 2720 if (!snd_enable[dev]) {2720 if (!enable[dev]) { 2721 2721 dev++; 2722 2722 return -ENOENT; 2723 2723 } 2724 2724 2725 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE,2725 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 2726 2726 sizeof(rme9652_t)); 2727 2727 … … 2734 2734 rme9652->pci = pci; 2735 2735 2736 if ((err = snd_rme9652_create(card, rme9652, snd_precise_ptr[dev])) < 0) {2736 if ((err = snd_rme9652_create(card, rme9652, precise_ptr[dev])) < 0) { 2737 2737 snd_card_free(card); 2738 2738 return err; … … 2789 2789 #ifndef MODULE 2790 2790 2791 /* format is: snd-rme9652= snd_enable,snd_index,snd_id */2791 /* format is: snd-rme9652=enable,index,id */ 2792 2792 2793 2793 static int __init alsa_card_rme9652_setup(char *str) … … 2797 2797 if (nr_dev >= SNDRV_CARDS) 2798 2798 return 0; 2799 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&2800 get_option(&str,& snd_index[nr_dev]) == 2 &&2801 get_id(&str,& snd_id[nr_dev]) == 2);2799 (void)(get_option(&str,&enable[nr_dev]) == 2 && 2800 get_option(&str,&index[nr_dev]) == 2 && 2801 get_id(&str,&id[nr_dev]) == 2); 2802 2802 nr_dev++; 2803 2803 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/sonicvibes.c ¶
r210 r212 54 54 #endif 55 55 56 static int snd_index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */57 static char * snd_id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */58 static int snd_enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */56 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 57 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 58 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ 59 59 #ifdef TARGET_OS2 60 static int snd_reverb[SNDRV_CARDS] = {0,0,0,0,0,0,0,0};61 static int snd_mge[SNDRV_CARDS] = {0,0,0,0,0,0,0,0};60 static int reverb[SNDRV_CARDS] = {0,0,0,0,0,0,0,0}; 61 static int mge[SNDRV_CARDS] = {0,0,0,0,0,0,0,0}; 62 62 #else 63 static int snd_reverb[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};64 static int snd_mge[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};63 static int reverb[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0}; 64 static int mge[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0}; 65 65 #endif 66 static unsigned int snd_dmaio = 0x7a00; /* DDMA i/o address */67 68 MODULE_PARM( snd_index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");69 MODULE_PARM_DESC( snd_index, "Index value for S3 SonicVibes soundcard.");70 MODULE_PARM_SYNTAX( snd_index, SNDRV_INDEX_DESC);71 MODULE_PARM( snd_id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");72 MODULE_PARM_DESC( snd_id, "ID string for S3 SonicVibes soundcard.");73 MODULE_PARM_SYNTAX( snd_id, SNDRV_ID_DESC);74 MODULE_PARM( snd_enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");75 MODULE_PARM_DESC( snd_enable, "Enable S3 SonicVibes soundcard.");76 MODULE_PARM_SYNTAX( snd_enable, SNDRV_ENABLE_DESC);77 MODULE_PARM( snd_reverb, "1-" __MODULE_STRING(SNDRV_CARDS) "i");78 MODULE_PARM_DESC( snd_reverb, "Enable reverb (SRAM is present) for S3 SonicVibes soundcard.");79 MODULE_PARM_SYNTAX( snd_reverb, SNDRV_ENABLED "," SNDRV_ENABLE_DESC);80 MODULE_PARM( snd_mge, "1-" __MODULE_STRING(SNDRV_CARDS) "i");81 MODULE_PARM_DESC( snd_mge, "MIC Gain Enable for S3 SonicVibes soundcard.");82 MODULE_PARM_SYNTAX( snd_mge, SNDRV_ENABLED "," SNDRV_ENABLE_DESC);83 MODULE_PARM( snd_dmaio, "i");84 MODULE_PARM_DESC( snd_dmaio, "DDMA i/o base address for S3 SonicVibes soundcard.");85 MODULE_PARM_SYNTAX( snd_dmaio, "global," SNDRV_PORT_DESC);66 static unsigned int dmaio = 0x7a00; /* DDMA i/o address */ 67 68 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 69 MODULE_PARM_DESC(index, "Index value for S3 SonicVibes soundcard."); 70 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC); 71 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s"); 72 MODULE_PARM_DESC(id, "ID string for S3 SonicVibes soundcard."); 73 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC); 74 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 75 MODULE_PARM_DESC(enable, "Enable S3 SonicVibes soundcard."); 76 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC); 77 MODULE_PARM(reverb, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 78 MODULE_PARM_DESC(reverb, "Enable reverb (SRAM is present) for S3 SonicVibes soundcard."); 79 MODULE_PARM_SYNTAX(reverb, SNDRV_ENABLED "," SNDRV_ENABLE_DESC); 80 MODULE_PARM(mge, "1-" __MODULE_STRING(SNDRV_CARDS) "i"); 81 MODULE_PARM_DESC(mge, "MIC Gain Enable for S3 SonicVibes soundcard."); 82 MODULE_PARM_SYNTAX(mge, SNDRV_ENABLED "," SNDRV_ENABLE_DESC); 83 MODULE_PARM(dmaio, "i"); 84 MODULE_PARM_DESC(dmaio, "DDMA i/o base address for S3 SonicVibes soundcard."); 85 MODULE_PARM_SYNTAX(dmaio, "global," SNDRV_PORT_DESC); 86 86 87 87 /* … … 1331 1331 pci_read_config_dword(pci, 0x40, &dmaa); 1332 1332 pci_read_config_dword(pci, 0x48, &dmac); 1333 snd_dmaio &= ~0x0f;1333 dmaio &= ~0x0f; 1334 1334 dmaa &= ~0x0f; 1335 1335 dmac &= ~0x0f; 1336 1336 if (!dmaa) { 1337 dmaa = snd_dmaio;1338 snd_dmaio += 0x10;1337 dmaa = dmaio; 1338 dmaio += 0x10; 1339 1339 snd_printk("BIOS did not allocate DDMA channel A i/o, allocated at 0x%x\n", dmaa); 1340 1340 } 1341 1341 if (!dmac) { 1342 dmac = snd_dmaio;1343 snd_dmaio += 0x10;1342 dmac = dmaio; 1343 dmaio += 0x10; 1344 1344 snd_printk("BIOS did not allocate DDMA channel C i/o, allocated at 0x%x\n", dmac); 1345 1345 } … … 1468 1468 1469 1469 static int __devinit snd_sonic_probe(struct pci_dev *pci, 1470 const struct pci_device_id *id)1470 const struct pci_device_id *pci_id) 1471 1471 { 1472 1472 static int dev; … … 1479 1479 if (dev >= SNDRV_CARDS) 1480 1480 return -ENODEV; 1481 if (!snd_enable[dev]) {1481 if (!enable[dev]) { 1482 1482 dev++; 1483 1483 return -ENOENT; 1484 1484 } 1485 1485 1486 card = snd_card_new( snd_index[dev], snd_id[dev], THIS_MODULE, 0);1486 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 1487 1487 if (card == NULL) 1488 1488 return -ENOMEM; … … 1495 1495 } 1496 1496 if ((err = snd_sonicvibes_create(card, pci, 1497 snd_reverb[dev] ? 1 : 0,1498 snd_mge[dev] ? 1 : 0,1497 reverb[dev] ? 1 : 0, 1498 mge[dev] ? 1 : 0, 1499 1499 &sonic)) < 0) { 1500 1500 snd_card_free(card); … … 1510 1510 } 1511 1511 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_SONICVIBES, 1512 sonic->midi_port, MPU401_INFO_INTEGRATED,1512 sonic->midi_port, 1, 1513 1513 sonic->irq, 0, 1514 1514 &midi_uart)) < 0) { … … 1585 1585 #ifndef MODULE 1586 1586 1587 /* format is: snd-sonicvibes= snd_enable,snd_index,snd_id,1588 snd_reverb,snd_mge,snd_dmaio */1587 /* format is: snd-sonicvibes=enable,index,id, 1588 reverb,mge,dmaio */ 1589 1589 1590 1590 static int __init alsa_card_sonicvibes_setup(char *str) … … 1594 1594 if (nr_dev >= SNDRV_CARDS) 1595 1595 return 0; 1596 (void)(get_option(&str,& snd_enable[nr_dev]) == 2 &&1597 get_option(&str,& snd_index[nr_dev]) == 2 &&1598 get_id(&str,& snd_id[nr_dev]) == 2 &&1599 get_option(&str,& snd_reverb[nr_dev]) == 2 &&1600 get_option(&str,& snd_mge[nr_dev]) == 2 &&1601 get_option(&str,(int *)& snd_dmaio) == 2);1596 (void)(get_option(&str,&enable[nr_dev]) == 2 && 1597 get_option(&str,&index[nr_dev]) == 2 && 1598 get_id(&str,&id[nr_dev]) == 2 && 1599 get_option(&str,&reverb[nr_dev]) == 2 && 1600 get_option(&str,&mge[nr_dev]) == 2 && 1601 get_option(&str,(int *)&dmaio) == 2); 1602 1602 nr_dev++; 1603 1603 return 1; -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/trident/trident.c ¶
r210 r212 220 220 #ifndef MODULE 221 221 222 /* format is: snd-trident= snd_enable,snd_index,snd_id,223 snd_pcm_channels,snd_wavetable_size */222 /* format is: snd-trident=enable,index,id, 223 pcm_channels,wavetable_size */ 224 224 225 225 static int __init alsa_card_trident_setup(char *str) -
TabularUnified GPL/branches/alsa-resync1/alsa-kernel/pci/ymfpci/ymfpci.c ¶
r207 r212 309 309 #ifndef MODULE 310 310 311 /* format is: snd-ymfpci= snd_enable,snd_index,snd_id,312 snd_fm_port,snd_mpu_port */311 /* format is: snd-ymfpci=enable,index,id, 312 fm_port,mpu_port */ 313 313 314 314 static int __init alsa_card_ymfpci_setup(char *str)
Note:
See TracChangeset
for help on using the changeset viewer.