root/drivers/sound/cs4232.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. probe_cs4232_mpu
  2. attach_cs4232_mpu
  3. probe_cs4232
  4. attach_cs4232
  5. unload_cs4232
  6. unload_cs4232_mpu

   1 /*
   2  * sound/cs4232.c
   3  *
   4  * The low level driver for Crystal CS4232 based cards. The CS4232 is
   5  * a PnP compatible chip which contains a CS4231A codec, SB emulation,
   6  * a MPU401 compatible MIDI port, joystick and synthesizer and IDE CD-ROM 
   7  * interfaces. This is just a temporary driver until full PnP support
   8  * gets inplemented. Just the WSS codec, FM synth and the MIDI ports are
   9  * supported. Other interfaces are left uninitialized.
  10  *
  11  * Copyright by Hannu Savolainen 1995
  12  *
  13  * Redistribution and use in source and binary forms, with or without
  14  * modification, are permitted provided that the following conditions are
  15  * met: 1. Redistributions of source code must retain the above copyright
  16  * notice, this list of conditions and the following disclaimer. 2.
  17  * Redistributions in binary form must reproduce the above copyright notice,
  18  * this list of conditions and the following disclaimer in the documentation
  19  * and/or other materials provided with the distribution.
  20  *
  21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
  22  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  23  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  24  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  25  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  28  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31  * SUCH DAMAGE.
  32  *
  33  */
  34 
  35 #include "sound_config.h"
  36 
  37 #if defined(CONFIGURE_SOUNDCARD) && !defined(EXCLUDE_CS4232)
  38 
  39 #define KEY_PORT        0x279   /* Same as LPT1 status port */
  40 #define CSN_NUM         0x99    /* Just a random number */
  41 
  42 #define CS_OUT(a)               outb( a,  KEY_PORT)
  43 #define CS_OUT2(a, b)           {CS_OUT(a);CS_OUT(b);}
  44 #define CS_OUT3(a, b, c)        {CS_OUT(a);CS_OUT(b);CS_OUT(c);}
  45 
  46 static int      mpu_base = 0, mpu_irq = 0;
  47 
  48 int
  49 probe_cs4232_mpu (struct address_info *hw_config)
     /* [previous][next][first][last][top][bottom][index][help] */
  50 {
  51 /*
  52  * Just write down the config values.
  53  */
  54 
  55   mpu_base = hw_config->io_base;
  56   mpu_irq = hw_config->irq;
  57   return 0;
  58 }
  59 
  60 long
  61 attach_cs4232_mpu (long mem_start, struct address_info *hw_config)
     /* [previous][next][first][last][top][bottom][index][help] */
  62 {
  63   return mem_start;
  64 }
  65 
  66 static unsigned char crystal_key[] =    /* A 32 byte magic key sequence */
  67 {
  68   0x96, 0x35, 0x9a, 0xcd, 0xe6, 0xf3, 0x79, 0xbc,
  69   0x5e, 0xaf, 0x57, 0x2b, 0x15, 0x8a, 0xc5, 0xe2,
  70   0xf1, 0xf8, 0x7c, 0x3e, 0x9f, 0x4f, 0x27, 0x13,
  71   0x09, 0x84, 0x42, 0xa1, 0xd0, 0x68, 0x34, 0x1a
  72 };
  73 
  74 int
  75 probe_cs4232 (struct address_info *hw_config)
     /* [previous][next][first][last][top][bottom][index][help] */
  76 {
  77   int             i;
  78   int             base = hw_config->io_base, irq = hw_config->irq;
  79   int             dma1 = hw_config->dma, dma2 = hw_config->dma2;
  80 
  81 /*
  82  * Verify that the I/O port range is free.
  83  */
  84 
  85   if (check_region (base, 4))
  86     {
  87       printk ("cs4232.c: I/O port 0x%03x not free\n", base);
  88       return 0;
  89     }
  90 
  91 /*
  92  * This version of the driver doesn't use the PnP method when configuring
  93  * the card but a simplified method defined by Crystal. This means that
  94  * just one CS4232 compatible device can exist on the system. Also this
  95  * method conflicts with possible PnP support in the OS. For this reason 
  96  * driver is just a temporary kludge.
  97  */
  98 
  99 /*
 100  * Wake up the card by sending a 32 byte Crystal key to the key port.
 101  */
 102   for (i = 0; i < 32; i++)
 103     CS_OUT (crystal_key[i]);
 104 
 105 /*
 106  * Now set the CSN (Card Select Number).
 107  */
 108 
 109   CS_OUT2 (0x06, CSN_NUM);
 110 
 111 /*
 112  * Ensure that there is no other codec using the same address.
 113  */
 114 
 115   CS_OUT2 (0x15, 0x00);         /* Select logical device 0 (WSS/SB/FM) */
 116   CS_OUT2 (0x33, 0x00);         /* Inactivate logical dev 0 */
 117   if (ad1848_detect (hw_config->io_base, NULL, hw_config->osp))
 118     return 0;
 119 
 120 /*
 121  * Then set some config bytes. First logical device 0 
 122  */
 123 
 124   CS_OUT2 (0x15, 0x00);         /* Select logical device 0 (WSS/SB/FM) */
 125   CS_OUT3 (0x47, (base >> 8) & 0xff, base & 0xff);      /* WSSbase */
 126 
 127   if (check_region (0x388, 4))  /* Not free */
 128     CS_OUT3 (0x48, 0x00, 0x00)  /* FMbase off */
 129       else
 130     CS_OUT3 (0x48, 0x03, 0x88); /* FMbase 0x388 */
 131 
 132   CS_OUT3 (0x42, 0x00, 0x00);   /* SBbase off */
 133   CS_OUT2 (0x22, irq);          /* SB+WSS IRQ */
 134   CS_OUT2 (0x2a, dma1);         /* SB+WSS DMA */
 135 
 136   if (dma2 != -1)
 137     CS_OUT2 (0x25, dma2)        /* WSS DMA2 */
 138       else
 139     CS_OUT2 (0x25, 4);          /* No WSS DMA2 */
 140 
 141   CS_OUT2 (0x33, 0x01);         /* Activate logical dev 0 */
 142 
 143 /*
 144  * Initialize logical device 3 (MPU)
 145  */
 146 
 147 #if (!defined(EXCLUDE_MPU401) || !defined(EXCLUDE_MPU_EMU)) && !defined(EXCLUDE_MIDI)
 148   if (mpu_base != 0 && mpu_irq != 0)
 149     {
 150       CS_OUT2 (0x15, 0x03);     /* Select logical device 3 (MPU) */
 151       CS_OUT3 (0x47, (mpu_base >> 8) & 0xff, mpu_base & 0xff);  /* MPUbase */
 152       CS_OUT2 (0x22, mpu_irq);  /* MPU IRQ */
 153       CS_OUT2 (0x33, 0x01);     /* Activate logical dev 3 */
 154     }
 155 #endif
 156 
 157 /*
 158  * Finally activate the chip
 159  */
 160   CS_OUT (0x79);
 161 
 162 /*
 163  * Then try to detect the codec part of the chip
 164  */
 165 
 166   return ad1848_detect (hw_config->io_base, NULL, hw_config->osp);
 167 }
 168 
 169 long
 170 attach_cs4232 (long mem_start, struct address_info *hw_config)
     /* [previous][next][first][last][top][bottom][index][help] */
 171 {
 172   int             base = hw_config->io_base, irq = hw_config->irq;
 173   int             dma1 = hw_config->dma, dma2 = hw_config->dma2;
 174 
 175   if (dma2 == -1)
 176     dma2 = dma1;
 177 
 178   ad1848_init ("CS4232", base,
 179                irq,
 180                dma1,            /* Playback DMA */
 181                dma2,            /* Capture DMA */
 182                0,
 183                hw_config->osp);
 184 
 185 #if (!defined(EXCLUDE_MPU401) || !defined(EXCLUDE_MPU_EMU)) && !defined(EXCLUDE_MIDI)
 186   if (mpu_base != 0 && mpu_irq != 0)
 187     {
 188       static struct address_info hw_config2 =
 189       {0};                      /* Ensure it's initialized */
 190 
 191       hw_config2.io_base = mpu_base;
 192       hw_config2.irq = mpu_irq;
 193       hw_config2.dma = -1;
 194       hw_config2.dma2 = -1;
 195       hw_config2.always_detect = 0;
 196       hw_config2.name = NULL;
 197       hw_config2.driver_use_1 = 0;
 198       hw_config2.driver_use_2 = 0;
 199       hw_config2.card_subtype = 0;
 200       hw_config2.osp = hw_config->osp;
 201 
 202       if (probe_mpu401 (&hw_config2))
 203         {
 204           mem_start = attach_mpu401 (mem_start, &hw_config2);
 205         }
 206       else
 207         {
 208           mpu_base = mpu_irq = 0;
 209         }
 210     }
 211 #endif
 212   return mem_start;
 213 }
 214 
 215 void
 216 unload_cs4232 (struct address_info *hw_config)
     /* [previous][next][first][last][top][bottom][index][help] */
 217 {
 218   int             base = hw_config->io_base, irq = hw_config->irq;
 219   int             dma1 = hw_config->dma, dma2 = hw_config->dma2;
 220 
 221   if (dma2 == -1)
 222     dma2 = dma1;
 223 
 224   ad1848_unload (base,
 225                  irq,
 226                  dma1,          /* Playback DMA */
 227                  dma2,          /* Capture DMA */
 228                  0);
 229 
 230 #if (!defined(EXCLUDE_MPU401) || !defined(EXCLUDE_MPU_EMU)) && !defined(EXCLUDE_MIDI)
 231   if (mpu_base != 0 && mpu_irq != 0)
 232     {
 233       static struct address_info hw_config2 =
 234       {0};                      /* Ensure it's initialized */
 235 
 236       hw_config2.io_base = mpu_base;
 237       hw_config2.irq = mpu_irq;
 238       hw_config2.dma = -1;
 239       hw_config2.dma2 = -1;
 240       hw_config2.always_detect = 0;
 241       hw_config2.name = NULL;
 242       hw_config2.driver_use_1 = 0;
 243       hw_config2.driver_use_2 = 0;
 244       hw_config2.card_subtype = 0;
 245       hw_config2.osp = hw_config->osp;
 246 
 247       unload_mpu401 (&hw_config2);
 248     }
 249 #endif
 250 }
 251 
 252 void
 253 unload_cs4232_mpu (struct address_info *hw_config)
     /* [previous][next][first][last][top][bottom][index][help] */
 254 {
 255   /* Not required. Handled by cs4232_unload */
 256 }
 257 
 258 
 259 #endif

/* [previous][next][first][last][top][bottom][index][help] */