linux/sound/isa/cmi8330.c
<<
>>
Prefs
   1/*
   2 *  Driver for C-Media's CMI8330 soundcards.
   3 *  Copyright (c) by George Talusan <gstalusan@uwaterloo.ca>
   4 *    http://www.undergrad.math.uwaterloo.ca/~gstalusa
   5 *
   6 *   This program is free software; you can redistribute it and/or modify
   7 *   it under the terms of the GNU General Public License as published by
   8 *   the Free Software Foundation; either version 2 of the License, or
   9 *   (at your option) any later version.
  10 *
  11 *   This program is distributed in the hope that it will be useful,
  12 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14 *   GNU General Public License for more details.
  15 *
  16 *   You should have received a copy of the GNU General Public License
  17 *   along with this program; if not, write to the Free Software
  18 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  19 *
  20 */
  21
  22/*
  23 * NOTES
  24 *
  25 *  The extended registers contain mixer settings which are largely
  26 *  untapped for the time being.
  27 *
  28 *  MPU401 and SPDIF are not supported yet.  I don't have the hardware
  29 *  to aid in coding and testing, so I won't bother.
  30 *
  31 *  To quickly load the module,
  32 *
  33 *  modprobe -a snd-cmi8330 sbport=0x220 sbirq=5 sbdma8=1
  34 *    sbdma16=5 wssport=0x530 wssirq=11 wssdma=0
  35 *
  36 *  This card has two mixers and two PCM devices.  I've cheesed it such
  37 *  that recording and playback can be done through the same device.
  38 *  The driver "magically" routes the capturing to the AD1848 codec,
  39 *  and playback to the SB16 codec.  This allows for full-duplex mode
  40 *  to some extent.
  41 *  The utilities in alsa-utils are aware of both devices, so passing
  42 *  the appropriate parameters to amixer and alsactl will give you
  43 *  full control over both mixers.
  44 */
  45
  46#include <linux/init.h>
  47#include <linux/err.h>
  48#include <linux/isa.h>
  49#include <linux/slab.h>
  50#include <linux/pnp.h>
  51#include <linux/moduleparam.h>
  52#include <sound/core.h>
  53#include <sound/ad1848.h>
  54#include <sound/sb.h>
  55#include <sound/initval.h>
  56
  57/*
  58 */
  59/* #define ENABLE_SB_MIXER */
  60#define PLAYBACK_ON_SB
  61
  62/*
  63 */
  64MODULE_AUTHOR("George Talusan <gstalusan@uwaterloo.ca>");
  65MODULE_DESCRIPTION("C-Media CMI8330");
  66MODULE_LICENSE("GPL");
  67MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8330,isapnp:{CMI0001,@@@0001,@X@0001}}}");
  68
  69static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
  70static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
  71static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP;
  72#ifdef CONFIG_PNP
  73static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
  74#endif
  75static long sbport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
  76static int sbirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
  77static int sbdma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
  78static int sbdma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
  79static long wssport[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
  80static int wssirq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
  81static int wssdma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;
  82
  83module_param_array(index, int, NULL, 0444);
  84MODULE_PARM_DESC(index, "Index value for CMI8330 soundcard.");
  85module_param_array(id, charp, NULL, 0444);
  86MODULE_PARM_DESC(id, "ID string  for CMI8330 soundcard.");
  87module_param_array(enable, bool, NULL, 0444);
  88MODULE_PARM_DESC(enable, "Enable CMI8330 soundcard.");
  89#ifdef CONFIG_PNP
  90module_param_array(isapnp, bool, NULL, 0444);
  91MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");
  92#endif
  93
  94module_param_array(sbport, long, NULL, 0444);
  95MODULE_PARM_DESC(sbport, "Port # for CMI8330 SB driver.");
  96module_param_array(sbirq, int, NULL, 0444);
  97MODULE_PARM_DESC(sbirq, "IRQ # for CMI8330 SB driver.");
  98module_param_array(sbdma8, int, NULL, 0444);
  99MODULE_PARM_DESC(sbdma8, "DMA8 for CMI8330 SB driver.");
 100module_param_array(sbdma16, int, NULL, 0444);
 101MODULE_PARM_DESC(sbdma16, "DMA16 for CMI8330 SB driver.");
 102
 103module_param_array(wssport, long, NULL, 0444);
 104MODULE_PARM_DESC(wssport, "Port # for CMI8330 WSS driver.");
 105module_param_array(wssirq, int, NULL, 0444);
 106MODULE_PARM_DESC(wssirq, "IRQ # for CMI8330 WSS driver.");
 107module_param_array(wssdma, int, NULL, 0444);
 108MODULE_PARM_DESC(wssdma, "DMA for CMI8330 WSS driver.");
 109
 110#ifdef CONFIG_PNP
 111static int isa_registered;
 112static int pnp_registered;
 113#endif
 114
 115#define CMI8330_RMUX3D    16
 116#define CMI8330_MUTEMUX   17
 117#define CMI8330_OUTPUTVOL 18
 118#define CMI8330_MASTVOL   19
 119#define CMI8330_LINVOL    20
 120#define CMI8330_CDINVOL   21
 121#define CMI8330_WAVVOL    22
 122#define CMI8330_RECMUX    23
 123#define CMI8330_WAVGAIN   24
 124#define CMI8330_LINGAIN   25
 125#define CMI8330_CDINGAIN  26
 126
 127static unsigned char snd_cmi8330_image[((CMI8330_CDINGAIN)-16) + 1] =
 128{
 129        0x40,                   /* 16 - recording mux (SB-mixer-enabled) */
 130#ifdef ENABLE_SB_MIXER
 131        0x40,                   /* 17 - mute mux (Mode2) */
 132#else
 133        0x0,                    /* 17 - mute mux */
 134#endif
 135        0x0,                    /* 18 - vol */
 136        0x0,                    /* 19 - master volume */
 137        0x0,                    /* 20 - line-in volume */
 138        0x0,                    /* 21 - cd-in volume */
 139        0x0,                    /* 22 - wave volume */
 140        0x0,                    /* 23 - mute/rec mux */
 141        0x0,                    /* 24 - wave rec gain */
 142        0x0,                    /* 25 - line-in rec gain */
 143        0x0                     /* 26 - cd-in rec gain */
 144};
 145
 146typedef int (*snd_pcm_open_callback_t)(struct snd_pcm_substream *);
 147
 148struct snd_cmi8330 {
 149#ifdef CONFIG_PNP
 150        struct pnp_dev *cap;
 151        struct pnp_dev *play;
 152#endif
 153        struct snd_card *card;
 154        struct snd_ad1848 *wss;
 155        struct snd_sb *sb;
 156
 157        struct snd_pcm *pcm;
 158        struct snd_cmi8330_stream {
 159                struct snd_pcm_ops ops;
 160                snd_pcm_open_callback_t open;
 161                void *private_data; /* sb or wss */
 162        } streams[2];
 163};
 164
 165#ifdef CONFIG_PNP
 166
 167static struct pnp_card_device_id snd_cmi8330_pnpids[] = {
 168        { .id = "CMI0001", .devs = { { "@@@0001" }, { "@X@0001" } } },
 169        { .id = "" }
 170};
 171
 172MODULE_DEVICE_TABLE(pnp_card, snd_cmi8330_pnpids);
 173
 174#endif
 175
 176
 177static struct ad1848_mix_elem snd_cmi8330_controls[] __devinitdata = {
 178AD1848_DOUBLE("Master Playback Volume", 0, CMI8330_MASTVOL, CMI8330_MASTVOL, 4, 0, 15, 0),
 179AD1848_SINGLE("Loud Playback Switch", 0, CMI8330_MUTEMUX, 6, 1, 1),
 180AD1848_DOUBLE("PCM Playback Switch", 0, AD1848_LEFT_OUTPUT, AD1848_RIGHT_OUTPUT, 7, 7, 1, 1),
 181AD1848_DOUBLE("PCM Playback Volume", 0, AD1848_LEFT_OUTPUT, AD1848_RIGHT_OUTPUT, 0, 0, 63, 1),
 182AD1848_DOUBLE("Line Playback Switch", 0, CMI8330_MUTEMUX, CMI8330_MUTEMUX, 4, 3, 1, 0),
 183AD1848_DOUBLE("Line Playback Volume", 0, CMI8330_LINVOL, CMI8330_LINVOL, 4, 0, 15, 0),
 184AD1848_DOUBLE("Line Capture Switch", 0, CMI8330_RMUX3D, CMI8330_RMUX3D, 2, 1, 1, 0),
 185AD1848_DOUBLE("Line Capture Volume", 0, CMI8330_LINGAIN, CMI8330_LINGAIN, 4, 0, 15, 0),
 186AD1848_DOUBLE("CD Playback Switch", 0, CMI8330_MUTEMUX, CMI8330_MUTEMUX, 2, 1, 1, 0),
 187AD1848_DOUBLE("CD Capture Switch", 0, CMI8330_RMUX3D, CMI8330_RMUX3D, 4, 3, 1, 0),
 188AD1848_DOUBLE("CD Playback Volume", 0, CMI8330_CDINVOL, CMI8330_CDINVOL, 4, 0, 15, 0),
 189AD1848_DOUBLE("CD Capture Volume", 0, CMI8330_CDINGAIN, CMI8330_CDINGAIN, 4, 0, 15, 0),
 190AD1848_SINGLE("Mic Playback Switch", 0, CMI8330_MUTEMUX, 0, 1, 0),
 191AD1848_SINGLE("Mic Playback Volume", 0, CMI8330_OUTPUTVOL, 0, 7, 0),
 192AD1848_SINGLE("Mic Capture Switch", 0, CMI8330_RMUX3D, 0, 1, 0),
 193AD1848_SINGLE("Mic Capture Volume", 0, CMI8330_OUTPUTVOL, 5, 7, 0),
 194AD1848_DOUBLE("Wavetable Playback Switch", 0, CMI8330_RECMUX, CMI8330_RECMUX, 1, 0, 1, 0),
 195AD1848_DOUBLE("Wavetable Playback Volume", 0, CMI8330_WAVVOL, CMI8330_WAVVOL, 4, 0, 15, 0),
 196AD1848_DOUBLE("Wavetable Capture Switch", 0, CMI8330_RECMUX, CMI8330_RECMUX, 5, 4, 1, 0),
 197AD1848_DOUBLE("Wavetable Capture Volume", 0, CMI8330_WAVGAIN, CMI8330_WAVGAIN, 4, 0, 15, 0),
 198AD1848_SINGLE("3D Control - Switch", 0, CMI8330_RMUX3D, 5, 1, 1),
 199AD1848_SINGLE("PC Speaker Playback Volume", 0, CMI8330_OUTPUTVOL, 3, 3, 0),
 200AD1848_SINGLE("FM Playback Switch", 0, CMI8330_RECMUX, 3, 1, 1),
 201AD1848_SINGLE(SNDRV_CTL_NAME_IEC958("Input ",CAPTURE,SWITCH), 0, CMI8330_RMUX3D, 7, 1, 1),
 202AD1848_SINGLE(SNDRV_CTL_NAME_IEC958("Input ",PLAYBACK,SWITCH), 0, CMI8330_MUTEMUX, 7, 1, 1),
 203};
 204
 205#ifdef ENABLE_SB_MIXER
 206static struct sbmix_elem cmi8330_sb_mixers[] __devinitdata = {
 207SB_DOUBLE("SB Master Playback Volume", SB_DSP4_MASTER_DEV, (SB_DSP4_MASTER_DEV + 1), 3, 3, 31),
 208SB_DOUBLE("Tone Control - Bass", SB_DSP4_BASS_DEV, (SB_DSP4_BASS_DEV + 1), 4, 4, 15),
 209SB_DOUBLE("Tone Control - Treble", SB_DSP4_TREBLE_DEV, (SB_DSP4_TREBLE_DEV + 1), 4, 4, 15),
 210SB_DOUBLE("SB PCM Playback Volume", SB_DSP4_PCM_DEV, (SB_DSP4_PCM_DEV + 1), 3, 3, 31),
 211SB_DOUBLE("SB Synth Playback Volume", SB_DSP4_SYNTH_DEV, (SB_DSP4_SYNTH_DEV + 1), 3, 3, 31),
 212SB_DOUBLE("SB CD Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 2, 1, 1),
 213SB_DOUBLE("SB CD Playback Volume", SB_DSP4_CD_DEV, (SB_DSP4_CD_DEV + 1), 3, 3, 31),
 214SB_DOUBLE("SB Line Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 4, 3, 1),
 215SB_DOUBLE("SB Line Playback Volume", SB_DSP4_LINE_DEV, (SB_DSP4_LINE_DEV + 1), 3, 3, 31),
 216SB_SINGLE("SB Mic Playback Switch", SB_DSP4_OUTPUT_SW, 0, 1),
 217SB_SINGLE("SB Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31),
 218SB_SINGLE("SB PC Speaker Volume", SB_DSP4_SPEAKER_DEV, 6, 3),
 219SB_DOUBLE("SB Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3),
 220SB_DOUBLE("SB Playback Volume", SB_DSP4_OGAIN_DEV, (SB_DSP4_OGAIN_DEV + 1), 6, 6, 3),
 221SB_SINGLE("SB Mic Auto Gain", SB_DSP4_MIC_AGC, 0, 1),
 222};
 223
 224static unsigned char cmi8330_sb_init_values[][2] __devinitdata = {
 225        { SB_DSP4_MASTER_DEV + 0, 0 },
 226        { SB_DSP4_MASTER_DEV + 1, 0 },
 227        { SB_DSP4_PCM_DEV + 0, 0 },
 228        { SB_DSP4_PCM_DEV + 1, 0 },
 229        { SB_DSP4_SYNTH_DEV + 0, 0 },
 230        { SB_DSP4_SYNTH_DEV + 1, 0 },
 231        { SB_DSP4_INPUT_LEFT, 0 },
 232        { SB_DSP4_INPUT_RIGHT, 0 },
 233        { SB_DSP4_OUTPUT_SW, 0 },
 234        { SB_DSP4_SPEAKER_DEV, 0 },
 235};
 236
 237
 238static int __devinit cmi8330_add_sb_mixers(struct snd_sb *chip)
 239{
 240        int idx, err;
 241        unsigned long flags;
 242
 243        spin_lock_irqsave(&chip->mixer_lock, flags);
 244        snd_sbmixer_write(chip, 0x00, 0x00);            /* mixer reset */
 245        spin_unlock_irqrestore(&chip->mixer_lock, flags);
 246
 247        /* mute and zero volume channels */
 248        for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_init_values); idx++) {
 249                spin_lock_irqsave(&chip->mixer_lock, flags);
 250                snd_sbmixer_write(chip, cmi8330_sb_init_values[idx][0],
 251                                  cmi8330_sb_init_values[idx][1]);
 252                spin_unlock_irqrestore(&chip->mixer_lock, flags);
 253        }
 254
 255        for (idx = 0; idx < ARRAY_SIZE(cmi8330_sb_mixers); idx++) {
 256                if ((err = snd_sbmixer_add_ctl_elem(chip, &cmi8330_sb_mixers[idx])) < 0)
 257                        return err;
 258        }
 259        return 0;
 260}
 261#endif
 262
 263static int __devinit snd_cmi8330_mixer(struct snd_card *card, struct snd_cmi8330 *acard)
 264{
 265        unsigned int idx;
 266        int err;
 267
 268        strcpy(card->mixername, "CMI8330/C3D");
 269
 270        for (idx = 0; idx < ARRAY_SIZE(snd_cmi8330_controls); idx++) {
 271                if ((err = snd_ad1848_add_ctl_elem(acard->wss, &snd_cmi8330_controls[idx])) < 0)
 272                        return err;
 273        }
 274
 275#ifdef ENABLE_SB_MIXER
 276        if ((err = cmi8330_add_sb_mixers(acard->sb)) < 0)
 277                return err;
 278#endif
 279        return 0;
 280}
 281
 282#ifdef CONFIG_PNP
 283static int __devinit snd_cmi8330_pnp(int dev, struct snd_cmi8330 *acard,
 284                                     struct pnp_card_link *card,
 285                                     const struct pnp_card_device_id *id)
 286{
 287        struct pnp_dev *pdev;
 288        int err;
 289
 290        acard->cap = pnp_request_card_device(card, id->devs[0].id, NULL);
 291        if (acard->cap == NULL)
 292                return -EBUSY;
 293
 294        acard->play = pnp_request_card_device(card, id->devs[1].id, NULL);
 295        if (acard->play == NULL)
 296                return -EBUSY;
 297
 298        pdev = acard->cap;
 299
 300        err = pnp_activate_dev(pdev);
 301        if (err < 0) {
 302                snd_printk(KERN_ERR "CMI8330/C3D (AD1848) PnP configure failure\n");
 303                return -EBUSY;
 304        }
 305        wssport[dev] = pnp_port_start(pdev, 0);
 306        wssdma[dev] = pnp_dma(pdev, 0);
 307        wssirq[dev] = pnp_irq(pdev, 0);
 308
 309        /* allocate SB16 resources */
 310        pdev = acard->play;
 311
 312        err = pnp_activate_dev(pdev);
 313        if (err < 0) {
 314                snd_printk(KERN_ERR "CMI8330/C3D (SB16) PnP configure failure\n");
 315                return -EBUSY;
 316        }
 317        sbport[dev] = pnp_port_start(pdev, 0);
 318        sbdma8[dev] = pnp_dma(pdev, 0);
 319        sbdma16[dev] = pnp_dma(pdev, 1);
 320        sbirq[dev] = pnp_irq(pdev, 0);
 321
 322        return 0;
 323}
 324#endif
 325
 326/*
 327 * PCM interface
 328 *
 329 * since we call the different chip interfaces for playback and capture
 330 * directions, we need a trick.
 331 *
 332 * - copy the ops for each direction into a local record.
 333 * - replace the open callback with the new one, which replaces the
 334 *   substream->private_data with the corresponding chip instance
 335 *   and calls again the original open callback of the chip.
 336 *
 337 */
 338
 339#ifdef PLAYBACK_ON_SB
 340#define CMI_SB_STREAM   SNDRV_PCM_STREAM_PLAYBACK
 341#define CMI_AD_STREAM   SNDRV_PCM_STREAM_CAPTURE
 342#else
 343#define CMI_SB_STREAM   SNDRV_PCM_STREAM_CAPTURE
 344#define CMI_AD_STREAM   SNDRV_PCM_STREAM_PLAYBACK
 345#endif
 346
 347static int snd_cmi8330_playback_open(struct snd_pcm_substream *substream)
 348{
 349        struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream);
 350
 351        /* replace the private_data and call the original open callback */
 352        substream->private_data = chip->streams[SNDRV_PCM_STREAM_PLAYBACK].private_data;
 353        return chip->streams[SNDRV_PCM_STREAM_PLAYBACK].open(substream);
 354}
 355
 356static int snd_cmi8330_capture_open(struct snd_pcm_substream *substream)
 357{
 358        struct snd_cmi8330 *chip = snd_pcm_substream_chip(substream);
 359
 360        /* replace the private_data and call the original open callback */
 361        substream->private_data = chip->streams[SNDRV_PCM_STREAM_CAPTURE].private_data;
 362        return chip->streams[SNDRV_PCM_STREAM_CAPTURE].open(substream);
 363}
 364
 365static int __devinit snd_cmi8330_pcm(struct snd_card *card, struct snd_cmi8330 *chip)
 366{
 367        struct snd_pcm *pcm;
 368        const struct snd_pcm_ops *ops;
 369        int err;
 370        static snd_pcm_open_callback_t cmi_open_callbacks[2] = {
 371                snd_cmi8330_playback_open,
 372                snd_cmi8330_capture_open
 373        };
 374
 375        if ((err = snd_pcm_new(card, "CMI8330", 0, 1, 1, &pcm)) < 0)
 376                return err;
 377        strcpy(pcm->name, "CMI8330");
 378        pcm->private_data = chip;
 379        
 380        /* SB16 */
 381        ops = snd_sb16dsp_get_pcm_ops(CMI_SB_STREAM);
 382        chip->streams[CMI_SB_STREAM].ops = *ops;
 383        chip->streams[CMI_SB_STREAM].open = ops->open;
 384        chip->streams[CMI_SB_STREAM].ops.open = cmi_open_callbacks[CMI_SB_STREAM];
 385        chip->streams[CMI_SB_STREAM].private_data = chip->sb;
 386
 387        /* AD1848 */
 388        ops = snd_ad1848_get_pcm_ops(CMI_AD_STREAM);
 389        chip->streams[CMI_AD_STREAM].ops = *ops;
 390        chip->streams[CMI_AD_STREAM].open = ops->open;
 391        chip->streams[CMI_AD_STREAM].ops.open = cmi_open_callbacks[CMI_AD_STREAM];
 392        chip->streams[CMI_AD_STREAM].private_data = chip->wss;
 393
 394        snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &chip->streams[SNDRV_PCM_STREAM_PLAYBACK].ops);
 395        snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &chip->streams[SNDRV_PCM_STREAM_CAPTURE].ops);
 396
 397        snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
 398                                              snd_dma_isa_data(),
 399                                              64*1024, 128*1024);
 400        chip->pcm = pcm;
 401
 402        return 0;
 403}
 404
 405
 406#ifdef CONFIG_PM
 407static int snd_cmi8330_suspend(struct snd_card *card)
 408{
 409        struct snd_cmi8330 *acard = card->private_data;
 410
 411        snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
 412        snd_pcm_suspend_all(acard->pcm);
 413        acard->wss->suspend(acard->wss);
 414        snd_sbmixer_suspend(acard->sb);
 415        return 0;
 416}
 417
 418static int snd_cmi8330_resume(struct snd_card *card)
 419{
 420        struct snd_cmi8330 *acard = card->private_data;
 421
 422        snd_sbdsp_reset(acard->sb);
 423        snd_sbmixer_suspend(acard->sb);
 424        acard->wss->resume(acard->wss);
 425        snd_power_change_state(card, SNDRV_CTL_POWER_D0);
 426        return 0;
 427}
 428#endif
 429
 430
 431/*
 432 */
 433
 434#ifdef CONFIG_PNP
 435#define is_isapnp_selected(dev)         isapnp[dev]
 436#else
 437#define is_isapnp_selected(dev)         0
 438#endif
 439
 440#define PFX     "cmi8330: "
 441
 442static struct snd_card *snd_cmi8330_card_new(int dev)
 443{
 444        struct snd_card *card;
 445        struct snd_cmi8330 *acard;
 446
 447        card = snd_card_new(index[dev], id[dev], THIS_MODULE,
 448                            sizeof(struct snd_cmi8330));
 449        if (card == NULL) {
 450                snd_printk(KERN_ERR PFX "could not get a new card\n");
 451                return NULL;
 452        }
 453        acard = card->private_data;
 454        acard->card = card;
 455        return card;
 456}
 457
 458static int __devinit snd_cmi8330_probe(struct snd_card *card, int dev)
 459{
 460        struct snd_cmi8330 *acard;
 461        int i, err;
 462
 463        acard = card->private_data;
 464        if ((err = snd_ad1848_create(card,
 465                                     wssport[dev] + 4,
 466                                     wssirq[dev],
 467                                     wssdma[dev],
 468                                     AD1848_HW_DETECT,
 469                                     &acard->wss)) < 0) {
 470                snd_printk(KERN_ERR PFX "(AD1848) device busy??\n");
 471                return err;
 472        }
 473        if (acard->wss->hardware != AD1848_HW_CMI8330) {
 474                snd_printk(KERN_ERR PFX "(AD1848) not found during probe\n");
 475                return -ENODEV;
 476        }
 477
 478        if ((err = snd_sbdsp_create(card, sbport[dev],
 479                                    sbirq[dev],
 480                                    snd_sb16dsp_interrupt,
 481                                    sbdma8[dev],
 482                                    sbdma16[dev],
 483                                    SB_HW_AUTO, &acard->sb)) < 0) {
 484                snd_printk(KERN_ERR PFX "(SB16) device busy??\n");
 485                return err;
 486        }
 487        if (acard->sb->hardware != SB_HW_16) {
 488                snd_printk(KERN_ERR PFX "(SB16) not found during probe\n");
 489                return err;
 490        }
 491
 492        snd_ad1848_out(acard->wss, AD1848_MISC_INFO, 0x40); /* switch on MODE2 */
 493        for (i = CMI8330_RMUX3D; i <= CMI8330_CDINGAIN; i++)
 494                snd_ad1848_out(acard->wss, i, snd_cmi8330_image[i - CMI8330_RMUX3D]);
 495
 496        if ((err = snd_cmi8330_mixer(card, acard)) < 0) {
 497                snd_printk(KERN_ERR PFX "failed to create mixers\n");
 498                return err;
 499        }
 500
 501        if ((err = snd_cmi8330_pcm(card, acard)) < 0) {
 502                snd_printk(KERN_ERR PFX "failed to create pcms\n");
 503                return err;
 504        }
 505
 506        strcpy(card->driver, "CMI8330/C3D");
 507        strcpy(card->shortname, "C-Media CMI8330/C3D");
 508        sprintf(card->longname, "%s at 0x%lx, irq %d, dma %d",
 509                card->shortname,
 510                acard->wss->port,
 511                wssirq[dev],
 512                wssdma[dev]);
 513
 514        return snd_card_register(card);
 515}
 516
 517static int __devinit snd_cmi8330_isa_match(struct device *pdev,
 518                                           unsigned int dev)
 519{
 520        if (!enable[dev] || is_isapnp_selected(dev))
 521                return 0;
 522        if (wssport[dev] == SNDRV_AUTO_PORT) {
 523                snd_printk(KERN_ERR PFX "specify wssport\n");
 524                return 0;
 525        }
 526        if (sbport[dev] == SNDRV_AUTO_PORT) {
 527                snd_printk(KERN_ERR PFX "specify sbport\n");
 528                return 0;
 529        }
 530        return 1;
 531}
 532
 533static int __devinit snd_cmi8330_isa_probe(struct device *pdev,
 534                                           unsigned int dev)
 535{
 536        struct snd_card *card;
 537        int err;
 538
 539        card = snd_cmi8330_card_new(dev);
 540        if (! card)
 541                return -ENOMEM;
 542        snd_card_set_dev(card, pdev);
 543        if ((err = snd_cmi8330_probe(card, dev)) < 0) {
 544                snd_card_free(card);
 545                return err;
 546        }
 547        dev_set_drvdata(pdev, card);
 548        return 0;
 549}
 550
 551static int __devexit snd_cmi8330_isa_remove(struct device *devptr,
 552                                            unsigned int dev)
 553{
 554        snd_card_free(dev_get_drvdata(devptr));
 555        dev_set_drvdata(devptr, NULL);
 556        return 0;
 557}
 558
 559#ifdef CONFIG_PM
 560static int snd_cmi8330_isa_suspend(struct device *dev, unsigned int n,
 561                                   pm_message_t state)
 562{
 563        return snd_cmi8330_suspend(dev_get_drvdata(dev));
 564}
 565
 566static int snd_cmi8330_isa_resume(struct device *dev, unsigned int n)
 567{
 568        return snd_cmi8330_resume(dev_get_drvdata(dev));
 569}
 570#endif
 571
 572#define DEV_NAME        "cmi8330"
 573
 574static struct isa_driver snd_cmi8330_driver = {
 575        .match          = snd_cmi8330_isa_match,
 576        .probe          = snd_cmi8330_isa_probe,
 577        .remove         = __devexit_p(snd_cmi8330_isa_remove),
 578#ifdef CONFIG_PM
 579        .suspend        = snd_cmi8330_isa_suspend,
 580        .resume         = snd_cmi8330_isa_resume,
 581#endif
 582        .driver         = {
 583                .name   = DEV_NAME
 584        },
 585};
 586
 587
 588#ifdef CONFIG_PNP
 589static int __devinit snd_cmi8330_pnp_detect(struct pnp_card_link *pcard,
 590                                            const struct pnp_card_device_id *pid)
 591{
 592        static int dev;
 593        struct snd_card *card;
 594        int res;
 595
 596        for ( ; dev < SNDRV_CARDS; dev++) {
 597                if (enable[dev] && isapnp[dev])
 598                        break;
 599        }
 600        if (dev >= SNDRV_CARDS)
 601                return -ENODEV;
 602                               
 603        card = snd_cmi8330_card_new(dev);
 604        if (! card)
 605                return -ENOMEM;
 606        if ((res = snd_cmi8330_pnp(dev, card->private_data, pcard, pid)) < 0) {
 607                snd_printk(KERN_ERR PFX "PnP detection failed\n");
 608                snd_card_free(card);
 609                return res;
 610        }
 611        snd_card_set_dev(card, &pcard->card->dev);
 612        if ((res = snd_cmi8330_probe(card, dev)) < 0) {
 613                snd_card_free(card);
 614                return res;
 615        }
 616        pnp_set_card_drvdata(pcard, card);
 617        dev++;
 618        return 0;
 619}
 620
 621static void __devexit snd_cmi8330_pnp_remove(struct pnp_card_link * pcard)
 622{
 623        snd_card_free(pnp_get_card_drvdata(pcard));
 624        pnp_set_card_drvdata(pcard, NULL);
 625}
 626
 627#ifdef CONFIG_PM
 628static int snd_cmi8330_pnp_suspend(struct pnp_card_link *pcard, pm_message_t state)
 629{
 630        return snd_cmi8330_suspend(pnp_get_card_drvdata(pcard));
 631}
 632
 633static int snd_cmi8330_pnp_resume(struct pnp_card_link *pcard)
 634{
 635        return snd_cmi8330_resume(pnp_get_card_drvdata(pcard));
 636}
 637#endif
 638
 639static struct pnp_card_driver cmi8330_pnpc_driver = {
 640        .flags = PNP_DRIVER_RES_DISABLE,
 641        .name = "cmi8330",
 642        .id_table = snd_cmi8330_pnpids,
 643        .probe = snd_cmi8330_pnp_detect,
 644        .remove = __devexit_p(snd_cmi8330_pnp_remove),
 645#ifdef CONFIG_PM
 646        .suspend        = snd_cmi8330_pnp_suspend,
 647        .resume         = snd_cmi8330_pnp_resume,
 648#endif
 649};
 650#endif /* CONFIG_PNP */
 651
 652static int __init alsa_card_cmi8330_init(void)
 653{
 654        int err;
 655
 656        err = isa_register_driver(&snd_cmi8330_driver, SNDRV_CARDS);
 657#ifdef CONFIG_PNP
 658        if (!err)
 659                isa_registered = 1;
 660
 661        err = pnp_register_card_driver(&cmi8330_pnpc_driver);
 662        if (!err)
 663                pnp_registered = 1;
 664
 665        if (isa_registered)
 666                err = 0;
 667#endif
 668        return err;
 669}
 670
 671static void __exit alsa_card_cmi8330_exit(void)
 672{
 673#ifdef CONFIG_PNP
 674        if (pnp_registered)
 675                pnp_unregister_card_driver(&cmi8330_pnpc_driver);
 676
 677        if (isa_registered)
 678#endif
 679                isa_unregister_driver(&snd_cmi8330_driver);
 680}
 681
 682module_init(alsa_card_cmi8330_init)
 683module_exit(alsa_card_cmi8330_exit)
 684