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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * ALI  ali5455 and friends ICH driver for Linux
  3.  * LEI HU <Lei_Hu@ali.com.tw>
  4.  *
  5.  *  Built from:
  6.  * drivers/sound/i810_audio
  7.  *
  8.  *   The ALi 5455 is similar but not quite identical to the Intel ICH
  9.  * series of controllers. Its easier to keep the driver seperated from
  10.  * the i810 driver.
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  *
  26.  *
  27.  * ALi 5455 theory of operation
  28.  *
  29.  * The chipset provides three DMA channels that talk to an AC97
  30.  * CODEC (AC97 is a digital/analog mixer standard). At its simplest
  31.  * you get 48Khz audio with basic volume and mixer controls. At the
  32.  * best you get rate adaption in the codec. We set the card up so
  33.  * that we never take completion interrupts but instead keep the card
  34.  * chasing its tail around a ring buffer. This is needed for mmap
  35.  * mode audio and happens to work rather well for non-mmap modes too.
  36.  *
  37.  * The board has one output channel for PCM audio (supported) and
  38.  * a stereo line in and mono microphone input. Again these are normally
  39.  * locked to 48Khz only. Right now recording is not finished.
  40.  *
  41.  * There is no midi support, no synth support. Use timidity. To get
  42.  * esd working you need to use esd -r 48000 as it won't probe 48KHz
  43.  * by default. mpg123 can't handle 48Khz only audio so use xmms.
  44.  *
  45.  * If you need to force a specific rate set the clocking= option
  46.  *
  47.  */
  48. #include <linux/module.h>
  49. #include <linux/version.h>
  50. #include <linux/string.h>
  51. #include <linux/ctype.h>
  52. #include <linux/ioport.h>
  53. #include <linux/sched.h>
  54. #include <linux/delay.h>
  55. #include <linux/sound.h>
  56. #include <linux/slab.h>
  57. #include <linux/soundcard.h>
  58. #include <linux/pci.h>
  59. #include <asm/io.h>
  60. #include <asm/dma.h>
  61. #include <linux/init.h>
  62. #include <linux/poll.h>
  63. #include <linux/spinlock.h>
  64. #include <linux/smp_lock.h>
  65. #include <linux/ac97_codec.h>
  66. #include <linux/wrapper.h>
  67. #include <asm/uaccess.h>
  68. #include <asm/hardirq.h>
  69. #ifndef PCI_DEVICE_ID_ALI_5455
  70. #define PCI_DEVICE_ID_ALI_5455 0x5455
  71. #endif
  72. #ifndef PCI_VENDOR_ID_ALI
  73. #define PCI_VENDOR_ID_ALI 0x10b9
  74. #endif
  75. static int strict_clocking = 0;
  76. static unsigned int clocking = 0;
  77. static unsigned int codec_pcmout_share_spdif_locked = 0;
  78. static unsigned int codec_independent_spdif_locked = 0;
  79. static unsigned int controller_pcmout_share_spdif_locked = 0;
  80. static unsigned int controller_independent_spdif_locked = 0;
  81. static unsigned int globel = 0;
  82. #define ADC_RUNNING 1
  83. #define DAC_RUNNING 2
  84. #define CODEC_SPDIFOUT_RUNNING 8
  85. #define CONTROLLER_SPDIFOUT_RUNNING 4
  86. #define SPDIF_ENABLE_OUTPUT 4 /* bits 0,1 are PCM */
  87. #define ALI5455_FMT_16BIT 1
  88. #define ALI5455_FMT_STEREO 2
  89. #define ALI5455_FMT_MASK 3
  90. #define SPDIF_ON 0x0004
  91. #define SURR_ON 0x0010
  92. #define CENTER_LFE_ON 0x0020
  93. #define VOL_MUTED 0x8000
  94. #define ALI_SPDIF_OUT_CH_STATUS 0xbf
  95. /* the 810's array of pointers to data buffers */
  96. struct sg_item {
  97. #define BUSADDR_MASK 0xFFFFFFFE
  98. u32 busaddr;
  99. #define CON_IOC  0x80000000 /* interrupt on completion */
  100. #define CON_BUFPAD 0x40000000 /* pad underrun with last sample, else 0 */
  101. #define CON_BUFLEN_MASK 0x0000ffff /* buffer length in samples */
  102. u32 control;
  103. };
  104. /* an instance of the ali channel */
  105. #define SG_LEN 32
  106. struct ali_channel {
  107. /* these sg guys should probably be allocated
  108.    seperately as nocache. Must be 8 byte aligned */
  109. struct sg_item sg[SG_LEN]; /* 32*8 */
  110. u32 offset; /* 4 */
  111. u32 port; /* 4 */
  112. u32 used;
  113. u32 num;
  114. };
  115. /*
  116.  * we have 3 seperate dma engines.  pcm in, pcm out, and mic.
  117.  * each dma engine has controlling registers.  These goofy
  118.  * names are from the datasheet, but make it easy to write
  119.  * code while leafing through it.
  120.  */
  121. #define ENUM_ENGINE(PRE,DIG) 
  122. enum {
  123. PRE##_BDBAR = 0x##DIG##0, /* Buffer Descriptor list Base Address */
  124. PRE##_CIV = 0x##DIG##4, /* Current Index Value */
  125. PRE##_LVI = 0x##DIG##5, /* Last Valid Index */
  126. PRE##_SR = 0x##DIG##6, /* Status Register */
  127. PRE##_PICB = 0x##DIG##8, /* Position In Current Buffer */
  128. PRE##_CR = 0x##DIG##b /* Control Register */
  129. }
  130. ENUM_ENGINE(OFF, 0); /* Offsets */
  131. ENUM_ENGINE(PI, 4); /* PCM In */
  132. ENUM_ENGINE(PO, 5); /* PCM Out */
  133. ENUM_ENGINE(MC, 6); /* Mic In */
  134. ENUM_ENGINE(CODECSPDIFOUT, 7); /* CODEC SPDIF OUT  */
  135. ENUM_ENGINE(CONTROLLERSPDIFIN, A); /* CONTROLLER SPDIF In */
  136. ENUM_ENGINE(CONTROLLERSPDIFOUT, B); /* CONTROLLER SPDIF OUT */
  137. enum {
  138. ALI_SCR = 0x00, /* System Control Register */
  139. ALI_SSR = 0x04, /* System Status Register  */
  140. ALI_DMACR = 0x08, /* DMA Control Register    */
  141. ALI_FIFOCR1 = 0x0c, /* FIFO Control Register 1  */
  142. ALI_INTERFACECR = 0x10, /* Interface Control Register */
  143. ALI_INTERRUPTCR = 0x14, /* Interrupt control Register */
  144. ALI_INTERRUPTSR = 0x18, /* Interrupt  Status Register */
  145. ALI_FIFOCR2 = 0x1c, /* FIFO Control Register 2   */
  146. ALI_CPR = 0x20, /* Command Port Register     */
  147. ALI_SPR = 0x24, /* Status Port Register      */
  148. ALI_FIFOCR3 = 0x2c, /* FIFO Control Register 3  */
  149. ALI_TTSR = 0x30, /* Transmit Tag Slot Register */
  150. ALI_RTSR = 0x34, /* Receive Tag Slot  Register */
  151. ALI_CSPSR = 0x38, /* Command/Status Port Status Register */
  152. ALI_CAS = 0x3c, /* Codec Write Semaphore Register */
  153. ALI_SPDIFCSR = 0xf8, /* spdif channel status register  */
  154. ALI_SPDIFICS = 0xfc /* spdif interface control/status  */
  155. };
  156. // x-status register(x:pcm in ,pcm out, mic in,)
  157. /* interrupts for a dma engine */
  158. #define DMA_INT_FIFO (1<<4) /* fifo under/over flow */
  159. #define DMA_INT_COMPLETE (1<<3) /* buffer read/write complete and ioc set */
  160. #define DMA_INT_LVI (1<<2) /* last valid done */
  161. #define DMA_INT_CELV (1<<1) /* last valid is current */
  162. #define DMA_INT_DCH (1) /* DMA Controller Halted (happens on LVI interrupts) */ //not eqult intel
  163. #define DMA_INT_MASK (DMA_INT_FIFO|DMA_INT_COMPLETE|DMA_INT_LVI)
  164. /* interrupts for the whole chip */// by interrupt status register finish
  165. #define INT_SPDIFOUT   (1<<23) /* controller spdif out INTERRUPT */
  166. #define INT_SPDIFIN   (1<<22)
  167. #define INT_CODECSPDIFOUT   (1<<19)
  168. #define INT_MICIN   (1<<18)
  169. #define INT_PCMOUT   (1<<17)
  170. #define INT_PCMIN   (1<<16)
  171. #define INT_CPRAIS   (1<<7)
  172. #define INT_SPRAIS   (1<<5)
  173. #define INT_GPIO    (1<<1)
  174. #define INT_MASK   (INT_SPDIFOUT|INT_CODECSPDIFOUT|INT_MICIN|INT_PCMOUT|INT_PCMIN)
  175. #define DRIVER_VERSION "0.02ac"
  176. /* magic numbers to protect our data structures */
  177. #define ALI5455_CARD_MAGIC 0x5072696E /* "Prin" */
  178. #define ALI5455_STATE_MAGIC 0x63657373 /* "cess" */
  179. #define ALI5455_DMA_MASK 0xffffffff /* DMA buffer mask for pci_alloc_consist */
  180. #define NR_HW_CH 5 //I think 5 channel
  181. /* maxinum number of AC97 codecs connected, AC97 2.0 defined 4 */
  182. #define NR_AC97 2
  183. /* Please note that an 8bit mono stream is not valid on this card, you must have a 16bit */
  184. /* stream at a minimum for this card to be happy */
  185. static const unsigned sample_size[] = { 1, 2, 2, 4 };
  186. /* Samples are 16bit values, so we are shifting to a word, not to a byte, hence shift */
  187. /* values are one less than might be expected */
  188. static const unsigned sample_shift[] = { -1, 0, 0, 1 };
  189. #define ALI5455
  190. static char *card_names[] = {
  191. "ALI 5455"
  192. };
  193. static struct pci_device_id ali_pci_tbl[] __initdata = {
  194. {PCI_VENDOR_ID_ALI, PCI_DEVICE_ID_ALI_5455,
  195.  PCI_ANY_ID, PCI_ANY_ID, 0, 0, ALI5455},
  196. {0,}
  197. };
  198. MODULE_DEVICE_TABLE(pci, ali_pci_tbl);
  199. #ifdef CONFIG_PM
  200. #define PM_SUSPENDED(card) (card->pm_suspended)
  201. #else
  202. #define PM_SUSPENDED(card) (0)
  203. #endif
  204. /* "software" or virtual channel, an instance of opened /dev/dsp */
  205. struct ali_state {
  206. unsigned int magic;
  207. struct ali_card *card; /* Card info */
  208. /* single open lock mechanism, only used for recording */
  209. struct semaphore open_sem;
  210. wait_queue_head_t open_wait;
  211. /* file mode */
  212. mode_t open_mode;
  213. /* virtual channel number */
  214. int virt;
  215. #ifdef CONFIG_PM
  216. unsigned int pm_saved_dac_rate, pm_saved_adc_rate;
  217. #endif
  218. struct dmabuf {
  219. /* wave sample stuff */
  220. unsigned int rate;
  221. unsigned char fmt, enable, trigger;
  222. /* hardware channel */
  223. struct ali_channel *read_channel;
  224. struct ali_channel *write_channel;
  225. struct ali_channel *codec_spdifout_channel;
  226. struct ali_channel *controller_spdifout_channel;
  227. /* OSS buffer management stuff */
  228. void *rawbuf;
  229. dma_addr_t dma_handle;
  230. unsigned buforder;
  231. unsigned numfrag;
  232. unsigned fragshift;
  233. /* our buffer acts like a circular ring */
  234. unsigned hwptr; /* where dma last started, updated by update_ptr */
  235. unsigned swptr; /* where driver last clear/filled, updated by read/write */
  236. int count; /* bytes to be consumed or been generated by dma machine */
  237. unsigned total_bytes; /* total bytes dmaed by hardware */
  238. unsigned error; /* number of over/underruns */
  239. wait_queue_head_t wait; /* put process on wait queue when no more space in buffer */
  240. /* redundant, but makes calculations easier */
  241. /* what the hardware uses */
  242. unsigned dmasize;
  243. unsigned fragsize;
  244. unsigned fragsamples;
  245. /* what we tell the user to expect */
  246. unsigned userfrags;
  247. unsigned userfragsize;
  248. /* OSS stuff */
  249. unsigned mapped:1;
  250. unsigned ready:1;
  251. unsigned update_flag;
  252. unsigned ossfragsize;
  253. unsigned ossmaxfrags;
  254. unsigned subdivision;
  255. } dmabuf;
  256. };
  257. struct ali_card {
  258. struct ali_channel channel[5];
  259. unsigned int magic;
  260. /* We keep ali5455 cards in a linked list */
  261. struct ali_card *next;
  262. /* The ali has a certain amount of cross channel interaction
  263.    so we use a single per card lock */
  264. spinlock_t lock;
  265. /* PCI device stuff */
  266. struct pci_dev *pci_dev;
  267. u16 pci_id;
  268. #ifdef CONFIG_PM
  269. u16 pm_suspended;
  270. u32 pm_save_state[64 / sizeof(u32)];
  271. int pm_saved_mixer_settings[SOUND_MIXER_NRDEVICES][NR_AC97];
  272. #endif
  273. /* soundcore stuff */
  274. int dev_audio;
  275. /* structures for abstraction of hardware facilities, codecs, banks and channels */
  276. struct ac97_codec *ac97_codec[NR_AC97];
  277. struct ali_state *states[NR_HW_CH];
  278. u16 ac97_features;
  279. u16 ac97_status;
  280. u16 channels;
  281. /* hardware resources */
  282. unsigned long iobase;
  283. u32 irq;
  284. /* Function support */
  285. struct ali_channel *(*alloc_pcm_channel) (struct ali_card *);
  286. struct ali_channel *(*alloc_rec_pcm_channel) (struct ali_card *);
  287. struct ali_channel *(*alloc_rec_mic_channel) (struct ali_card *);
  288. struct ali_channel *(*alloc_codec_spdifout_channel) (struct ali_card *);
  289. struct ali_channel *(*alloc_controller_spdifout_channel) (struct  ali_card *);
  290. void (*free_pcm_channel) (struct ali_card *, int chan);
  291. /* We have a *very* long init time possibly, so use this to block */
  292. /* attempts to open our devices before we are ready (stops oops'es) */
  293. int initializing;
  294. };
  295. static struct ali_card *devs = NULL;
  296. static int ali_open_mixdev(struct inode *inode, struct file *file);
  297. static int ali_ioctl_mixdev(struct inode *inode, struct file *file,
  298.     unsigned int cmd, unsigned long arg);
  299. static u16 ali_ac97_get(struct ac97_codec *dev, u8 reg);
  300. static void ali_ac97_set(struct ac97_codec *dev, u8 reg, u16 data);
  301. static struct ali_channel *ali_alloc_pcm_channel(struct ali_card *card)
  302. {
  303. if (card->channel[1].used == 1)
  304. return NULL;
  305. card->channel[1].used = 1;
  306. return &card->channel[1];
  307. }
  308. static struct ali_channel *ali_alloc_rec_pcm_channel(struct ali_card *card)
  309. {
  310. if (card->channel[0].used == 1)
  311. return NULL;
  312. card->channel[0].used = 1;
  313. return &card->channel[0];
  314. }
  315. static struct ali_channel *ali_alloc_rec_mic_channel(struct ali_card *card)
  316. {
  317. if (card->channel[2].used == 1)
  318. return NULL;
  319. card->channel[2].used = 1;
  320. return &card->channel[2];
  321. }
  322. static struct ali_channel *ali_alloc_codec_spdifout_channel(struct ali_card *card)
  323. {
  324. if (card->channel[3].used == 1)
  325. return NULL;
  326. card->channel[3].used = 1;
  327. return &card->channel[3];
  328. }
  329. static struct ali_channel *ali_alloc_controller_spdifout_channel(struct ali_card *card)
  330. {
  331. if (card->channel[4].used == 1)
  332. return NULL;
  333. card->channel[4].used = 1;
  334. return &card->channel[4];
  335. }
  336. static void ali_free_pcm_channel(struct ali_card *card, int channel)
  337. {
  338. card->channel[channel].used = 0;
  339. }
  340. //add support  codec spdif out 
  341. static int ali_valid_spdif_rate(struct ac97_codec *codec, int rate)
  342. {
  343. unsigned long id = 0L;
  344. id = (ali_ac97_get(codec, AC97_VENDOR_ID1) << 16);
  345. id |= ali_ac97_get(codec, AC97_VENDOR_ID2) & 0xffff;
  346. switch (id) {
  347. case 0x41445361: /* AD1886 */
  348. if (rate == 48000) {
  349. return 1;
  350. }
  351. break;
  352. case 0x414c4720: /* ALC650 */
  353. if (rate == 48000) {
  354. return 1;
  355. }
  356. break;
  357. default: /* all other codecs, until we know otherwiae */
  358. if (rate == 48000 || rate == 44100 || rate == 32000) {
  359. return 1;
  360. }
  361. break;
  362. }
  363. return (0);
  364. }
  365. /* ali_set_spdif_output
  366.  * 
  367.  *  Configure the S/PDIF output transmitter. When we turn on
  368.  *  S/PDIF, we turn off the analog output. This may not be
  369.  *  the right thing to do.
  370.  *
  371.  *  Assumptions:
  372.  *     The DSP sample rate must already be set to a supported
  373.  *     S/PDIF rate (32kHz, 44.1kHz, or 48kHz) or we abort.
  374.  */
  375. static void ali_set_spdif_output(struct ali_state *state, int slots,
  376.  int rate)
  377. {
  378. int vol;
  379. int aud_reg;
  380. struct ac97_codec *codec = state->card->ac97_codec[0];
  381. if (!(state->card->ac97_features & 4)) {
  382. state->card->ac97_status &= ~SPDIF_ON;
  383. } else {
  384. if (slots == -1) { /* Turn off S/PDIF */
  385. aud_reg = ali_ac97_get(codec, AC97_EXTENDED_STATUS);
  386. ali_ac97_set(codec, AC97_EXTENDED_STATUS, (aud_reg & ~AC97_EA_SPDIF));
  387. /* If the volume wasn't muted before we turned on S/PDIF, unmute it */
  388. if (!(state->card->ac97_status & VOL_MUTED)) {
  389. aud_reg = ali_ac97_get(codec, AC97_MASTER_VOL_STEREO);
  390. ali_ac97_set(codec, AC97_MASTER_VOL_STEREO,
  391.      (aud_reg & ~VOL_MUTED));
  392. }
  393. state->card->ac97_status &= ~(VOL_MUTED | SPDIF_ON);
  394. return;
  395. }
  396. vol = ali_ac97_get(codec, AC97_MASTER_VOL_STEREO);
  397. state->card->ac97_status = vol & VOL_MUTED;
  398. /* Set S/PDIF transmitter sample rate */
  399. aud_reg = ali_ac97_get(codec, AC97_SPDIF_CONTROL);
  400. switch (rate) {
  401. case 32000:
  402. aud_reg = (aud_reg & AC97_SC_SPSR_MASK) | AC97_SC_SPSR_32K;
  403. break;
  404. case 44100:
  405. aud_reg = (aud_reg & AC97_SC_SPSR_MASK) | AC97_SC_SPSR_44K;
  406. break;
  407. case 48000:
  408. aud_reg = (aud_reg & AC97_SC_SPSR_MASK) | AC97_SC_SPSR_48K;
  409. break;
  410. default:
  411. /* turn off S/PDIF */
  412. aud_reg = ali_ac97_get(codec, AC97_EXTENDED_STATUS);
  413. ali_ac97_set(codec, AC97_EXTENDED_STATUS, (aud_reg & ~AC97_EA_SPDIF));
  414. state->card->ac97_status &= ~SPDIF_ON;
  415. return;
  416. }
  417. ali_ac97_set(codec, AC97_SPDIF_CONTROL, aud_reg);
  418. aud_reg = ali_ac97_get(codec, AC97_EXTENDED_STATUS);
  419. aud_reg = (aud_reg & AC97_EA_SLOT_MASK) | slots | AC97_EA_SPDIF;
  420. ali_ac97_set(codec, AC97_EXTENDED_STATUS, aud_reg);
  421. aud_reg = ali_ac97_get(codec, AC97_POWER_CONTROL);
  422. aud_reg |= 0x0002;
  423. ali_ac97_set(codec, AC97_POWER_CONTROL, aud_reg);
  424. udelay(1);
  425. state->card->ac97_status |= SPDIF_ON;
  426. /* Check to make sure the configuration is valid */
  427. aud_reg = ali_ac97_get(codec, AC97_EXTENDED_STATUS);
  428. if (!(aud_reg & 0x0400)) {
  429. /* turn off S/PDIF */
  430. ali_ac97_set(codec, AC97_EXTENDED_STATUS, (aud_reg & ~AC97_EA_SPDIF));
  431. state->card->ac97_status &= ~SPDIF_ON;
  432. return;
  433. }
  434. if (codec_independent_spdif_locked > 0) {
  435. aud_reg = ali_ac97_get(codec, 0x6a);
  436. ali_ac97_set(codec, 0x6a, (aud_reg & 0xefff));
  437. }
  438. /* Mute the analog output */
  439. /* Should this only mute the PCM volume??? */
  440. }
  441. }
  442. /* ali_set_dac_channels
  443.  *
  444.  *  Configure the codec's multi-channel DACs
  445.  *
  446.  *  The logic is backwards. Setting the bit to 1 turns off the DAC. 
  447.  *
  448.  *  What about the ICH? We currently configure it using the
  449.  *  SNDCTL_DSP_CHANNELS ioctl.  If we're turnning on the DAC, 
  450.  *  does that imply that we want the ICH set to support
  451.  *  these channels?
  452.  *  
  453.  *  TODO:
  454.  *    vailidate that the codec really supports these DACs
  455.  *    before turning them on. 
  456.  */
  457. static void ali_set_dac_channels(struct ali_state *state, int channel)
  458. {
  459. int aud_reg;
  460. struct ac97_codec *codec = state->card->ac97_codec[0];
  461. aud_reg = ali_ac97_get(codec, AC97_EXTENDED_STATUS);
  462. aud_reg |= AC97_EA_PRI | AC97_EA_PRJ | AC97_EA_PRK;
  463. state->card->ac97_status &= ~(SURR_ON | CENTER_LFE_ON);
  464. switch (channel) {
  465. case 2: /* always enabled */
  466. break;
  467. case 4:
  468. aud_reg &= ~AC97_EA_PRJ;
  469. state->card->ac97_status |= SURR_ON;
  470. break;
  471. case 6:
  472. aud_reg &= ~(AC97_EA_PRJ | AC97_EA_PRI | AC97_EA_PRK);
  473. state->card->ac97_status |= SURR_ON | CENTER_LFE_ON;
  474. break;
  475. default:
  476. break;
  477. }
  478. ali_ac97_set(codec, AC97_EXTENDED_STATUS, aud_reg);
  479. }
  480. /* set playback sample rate */
  481. static unsigned int ali_set_dac_rate(struct ali_state *state,
  482.      unsigned int rate)
  483. {
  484. struct dmabuf *dmabuf = &state->dmabuf;
  485. u32 new_rate;
  486. struct ac97_codec *codec = state->card->ac97_codec[0];
  487. if (!(state->card->ac97_features & 0x0001)) {
  488. dmabuf->rate = clocking;
  489. return clocking;
  490. }
  491. if (rate > 48000)
  492. rate = 48000;
  493. if (rate < 8000)
  494. rate = 8000;
  495. dmabuf->rate = rate;
  496. /*
  497.  *      Adjust for misclocked crap
  498.  */
  499. rate = (rate * clocking) / 48000;
  500. if (strict_clocking && rate < 8000) {
  501. rate = 8000;
  502. dmabuf->rate = (rate * 48000) / clocking;
  503. }
  504. new_rate = ac97_set_dac_rate(codec, rate);
  505. if (new_rate != rate) {
  506. dmabuf->rate = (new_rate * 48000) / clocking;
  507. }
  508. rate = new_rate;
  509. return dmabuf->rate;
  510. }
  511. /* set recording sample rate */
  512. static unsigned int ali_set_adc_rate(struct ali_state *state,
  513.      unsigned int rate)
  514. {
  515. struct dmabuf *dmabuf = &state->dmabuf;
  516. u32 new_rate;
  517. struct ac97_codec *codec = state->card->ac97_codec[0];
  518. if (!(state->card->ac97_features & 0x0001)) {
  519. dmabuf->rate = clocking;
  520. return clocking;
  521. }
  522. if (rate > 48000)
  523. rate = 48000;
  524. if (rate < 8000)
  525. rate = 8000;
  526. dmabuf->rate = rate;
  527. /*
  528.  *      Adjust for misclocked crap
  529.  */
  530. rate = (rate * clocking) / 48000;
  531. if (strict_clocking && rate < 8000) {
  532. rate = 8000;
  533. dmabuf->rate = (rate * 48000) / clocking;
  534. }
  535. new_rate = ac97_set_adc_rate(codec, rate);
  536. if (new_rate != rate) {
  537. dmabuf->rate = (new_rate * 48000) / clocking;
  538. rate = new_rate;
  539. }
  540. return dmabuf->rate;
  541. }
  542. /* set codec independent spdifout sample rate */
  543. static unsigned int ali_set_codecspdifout_rate(struct ali_state *state,
  544.        unsigned int rate)
  545. {
  546. struct dmabuf *dmabuf = &state->dmabuf;
  547. if (!(state->card->ac97_features & 0x0001)) {
  548. dmabuf->rate = clocking;
  549. return clocking;
  550. }
  551. if (rate > 48000)
  552. rate = 48000;
  553. if (rate < 8000)
  554. rate = 8000;
  555. dmabuf->rate = rate;
  556. return dmabuf->rate;
  557. }
  558. /* set  controller independent spdif out function sample rate */
  559. static void ali_set_spdifout_rate(struct ali_state *state,
  560.   unsigned int rate)
  561. {
  562. unsigned char ch_st_sel;
  563. unsigned short status_rate;
  564. switch (rate) {
  565. case 44100:
  566. status_rate = 0;
  567. break;
  568. case 32000:
  569. status_rate = 0x300;
  570. break;
  571. case 48000:
  572. default:
  573. status_rate = 0x200;
  574. break;
  575. }
  576. ch_st_sel = inb(state->card->iobase + ALI_SPDIFICS) & ALI_SPDIF_OUT_CH_STATUS; //select spdif_out
  577. ch_st_sel |= 0x80; //select right
  578. outb(ch_st_sel, (state->card->iobase + ALI_SPDIFICS));
  579. outb(status_rate | 0x20, (state->card->iobase + ALI_SPDIFCSR + 2));
  580. ch_st_sel &= (~0x80); //select left
  581. outb(ch_st_sel, (state->card->iobase + ALI_SPDIFICS));
  582. outw(status_rate | 0x10, (state->card->iobase + ALI_SPDIFCSR + 2));
  583. }
  584. /* get current playback/recording dma buffer pointer (byte offset from LBA),
  585.    called with spinlock held! */
  586. static inline unsigned ali_get_dma_addr(struct ali_state *state, int rec)
  587. {
  588. struct dmabuf *dmabuf = &state->dmabuf;
  589. unsigned int civ, offset, port, port_picb;
  590. unsigned int data;
  591. if (!dmabuf->enable)
  592. return 0;
  593. if (rec == 1)
  594. port = state->card->iobase + dmabuf->read_channel->port;
  595. else if (rec == 2)
  596. port = state->card->iobase + dmabuf->codec_spdifout_channel->port;
  597. else if (rec == 3)
  598. port = state->card->iobase + dmabuf->controller_spdifout_channel->port;
  599. else
  600. port = state->card->iobase + dmabuf->write_channel->port;
  601. port_picb = port + OFF_PICB;
  602. do {
  603. civ = inb(port + OFF_CIV) & 31;
  604. offset = inw(port_picb);
  605. /* Must have a delay here! */
  606. if (offset == 0)
  607. udelay(1);
  608. /* Reread both registers and make sure that that total
  609.  * offset from the first reading to the second is 0.
  610.  * There is an issue with SiS hardware where it will count
  611.  * picb down to 0, then update civ to the next value,
  612.  * then set the new picb to fragsize bytes.  We can catch
  613.  * it between the civ update and the picb update, making
  614.  * it look as though we are 1 fragsize ahead of where we
  615.  * are.  The next to we get the address though, it will
  616.  * be back in thdelay is more than long enough
  617.  * that we won't have to worry about the chip still being
  618.  * out of sync with reality ;-)
  619.  */
  620. } while (civ != (inb(port + OFF_CIV) & 31) || offset != inw(port_picb));
  621. data = ((civ + 1) * dmabuf->fragsize - (2 * offset)) % dmabuf->dmasize;
  622. if (inw(port_picb) == 0)
  623. data -= 2048;
  624. return data;
  625. }
  626. /* Stop recording (lock held) */
  627. static inline void __stop_adc(struct ali_state *state)
  628. {
  629. struct dmabuf *dmabuf = &state->dmabuf;
  630. struct ali_card *card = state->card;
  631. dmabuf->enable &= ~ADC_RUNNING;
  632. outl((1 << 18) | (1 << 16), card->iobase + ALI_DMACR);
  633. udelay(1);
  634. outb(0, card->iobase + PI_CR);
  635. while (inb(card->iobase + PI_CR) != 0);
  636. // now clear any latent interrupt bits (like the halt bit)
  637. outb(inb(card->iobase + PI_SR) | 0x001e, card->iobase + PI_SR);
  638. outl(inl(card->iobase + ALI_INTERRUPTSR) & INT_PCMIN, card->iobase + ALI_INTERRUPTSR);
  639. }
  640. static void stop_adc(struct ali_state *state)
  641. {
  642. struct ali_card *card = state->card;
  643. unsigned long flags;
  644. spin_lock_irqsave(&card->lock, flags);
  645. __stop_adc(state);
  646. spin_unlock_irqrestore(&card->lock, flags);
  647. }
  648. static inline void __start_adc(struct ali_state *state)
  649. {
  650. struct dmabuf *dmabuf = &state->dmabuf;
  651. if (dmabuf->count < dmabuf->dmasize && dmabuf->ready
  652.     && !dmabuf->enable && (dmabuf->trigger & PCM_ENABLE_INPUT)) {
  653. dmabuf->enable |= ADC_RUNNING;
  654. outb((1 << 4) | (1 << 2), state->card->iobase + PI_CR);
  655. if (state->card->channel[0].used == 1)
  656. outl(1, state->card->iobase + ALI_DMACR); // DMA CONTROL REGISTRER
  657. udelay(100);
  658. if (state->card->channel[2].used == 1)
  659. outl((1 << 2), state->card->iobase + ALI_DMACR); //DMA CONTROL REGISTER
  660. udelay(100);
  661. }
  662. }
  663. static void start_adc(struct ali_state *state)
  664. {
  665. struct ali_card *card = state->card;
  666. unsigned long flags;
  667. spin_lock_irqsave(&card->lock, flags);
  668. __start_adc(state);
  669. spin_unlock_irqrestore(&card->lock, flags);
  670. }
  671. /* stop playback (lock held) */
  672. static inline void __stop_dac(struct ali_state *state)
  673. {
  674. struct dmabuf *dmabuf = &state->dmabuf;
  675. struct ali_card *card = state->card;
  676. dmabuf->enable &= ~DAC_RUNNING;
  677. outl(0x00020000, card->iobase + 0x08);
  678. outb(0, card->iobase + PO_CR);
  679. while (inb(card->iobase + PO_CR) != 0)
  680. cpu_relax();
  681. outb(inb(card->iobase + PO_SR) | 0x001e, card->iobase + PO_SR);
  682. outl(inl(card->iobase + ALI_INTERRUPTSR) & INT_PCMOUT, card->iobase + ALI_INTERRUPTSR);
  683. }
  684. static void stop_dac(struct ali_state *state)
  685. {
  686. struct ali_card *card = state->card;
  687. unsigned long flags;
  688. spin_lock_irqsave(&card->lock, flags);
  689. __stop_dac(state);
  690. spin_unlock_irqrestore(&card->lock, flags);
  691. }
  692. static inline void __start_dac(struct ali_state *state)
  693. {
  694. struct dmabuf *dmabuf = &state->dmabuf;
  695. if (dmabuf->count > 0 && dmabuf->ready && !dmabuf->enable &&
  696.     (dmabuf->trigger & PCM_ENABLE_OUTPUT)) {
  697. dmabuf->enable |= DAC_RUNNING;
  698. outb((1 << 4) | (1 << 2), state->card->iobase + PO_CR);
  699. outl((1 << 1), state->card->iobase + 0x08); //dma control register
  700. }
  701. }
  702. static void start_dac(struct ali_state *state)
  703. {
  704. struct ali_card *card = state->card;
  705. unsigned long flags;
  706. spin_lock_irqsave(&card->lock, flags);
  707. __start_dac(state);
  708. spin_unlock_irqrestore(&card->lock, flags);
  709. }
  710. /* stop codec and controller spdif out  (lock held) */
  711. static inline void __stop_spdifout(struct ali_state *state)
  712. {
  713. struct dmabuf *dmabuf = &state->dmabuf;
  714. struct ali_card *card = state->card;
  715. if (codec_independent_spdif_locked > 0) {
  716. dmabuf->enable &= ~CODEC_SPDIFOUT_RUNNING;
  717. outl((1 << 19), card->iobase + 0x08);
  718. outb(0, card->iobase + CODECSPDIFOUT_CR);
  719. while (inb(card->iobase + CODECSPDIFOUT_CR) != 0)
  720. cpu_relax();
  721. outb(inb(card->iobase + CODECSPDIFOUT_SR) | 0x001e, card->iobase + CODECSPDIFOUT_SR);
  722. outl(inl(card->iobase + ALI_INTERRUPTSR) & INT_CODECSPDIFOUT, card->iobase + ALI_INTERRUPTSR);
  723. } else {
  724. if (controller_independent_spdif_locked > 0) {
  725. dmabuf->enable &= ~CONTROLLER_SPDIFOUT_RUNNING;
  726. outl((1 << 23), card->iobase + 0x08);
  727. outb(0, card->iobase + CONTROLLERSPDIFOUT_CR);
  728. while (inb(card->iobase + CONTROLLERSPDIFOUT_CR) != 0)
  729. cpu_relax();
  730. outb(inb(card->iobase + CONTROLLERSPDIFOUT_SR) | 0x001e, card->iobase + CONTROLLERSPDIFOUT_SR);
  731. outl(inl(card->iobase + ALI_INTERRUPTSR) & INT_SPDIFOUT, card->iobase + ALI_INTERRUPTSR);
  732. }
  733. }
  734. }
  735. static void stop_spdifout(struct ali_state *state)
  736. {
  737. struct ali_card *card = state->card;
  738. unsigned long flags;
  739. spin_lock_irqsave(&card->lock, flags);
  740. __stop_spdifout(state);
  741. spin_unlock_irqrestore(&card->lock, flags);
  742. }
  743. static inline void __start_spdifout(struct ali_state *state)
  744. {
  745. struct dmabuf *dmabuf = &state->dmabuf;
  746. if (dmabuf->count > 0 && dmabuf->ready && !dmabuf->enable &&
  747.     (dmabuf->trigger & SPDIF_ENABLE_OUTPUT)) {
  748. if (codec_independent_spdif_locked > 0) {
  749. dmabuf->enable |= CODEC_SPDIFOUT_RUNNING;
  750. outb((1 << 4) | (1 << 2), state->card->iobase + CODECSPDIFOUT_CR);
  751. outl((1 << 3), state->card->iobase + 0x08); //dma control register
  752. } else {
  753. if (controller_independent_spdif_locked > 0) {
  754. dmabuf->enable |= CONTROLLER_SPDIFOUT_RUNNING;
  755. outb((1 << 4) | (1 << 2), state->card->iobase + CONTROLLERSPDIFOUT_CR);
  756. outl((1 << 7), state->card->iobase + 0x08); //dma control register
  757. }
  758. }
  759. }
  760. }
  761. static void start_spdifout(struct ali_state *state)
  762. {
  763. struct ali_card *card = state->card;
  764. unsigned long flags;
  765. spin_lock_irqsave(&card->lock, flags);
  766. __start_spdifout(state);
  767. spin_unlock_irqrestore(&card->lock, flags);
  768. }
  769. #define DMABUF_DEFAULTORDER (16-PAGE_SHIFT)
  770. #define DMABUF_MINORDER 1
  771. /* allocate DMA buffer, playback , recording,spdif out  buffer should be allocated seperately */
  772. static int alloc_dmabuf(struct ali_state *state)
  773. {
  774. struct dmabuf *dmabuf = &state->dmabuf;
  775. void *rawbuf = NULL;
  776. int order, size;
  777. struct page *page, *pend;
  778. /* If we don't have any oss frag params, then use our default ones */
  779. if (dmabuf->ossmaxfrags == 0)
  780. dmabuf->ossmaxfrags = 4;
  781. if (dmabuf->ossfragsize == 0)
  782. dmabuf->ossfragsize = (PAGE_SIZE << DMABUF_DEFAULTORDER) / dmabuf->ossmaxfrags;
  783. size = dmabuf->ossfragsize * dmabuf->ossmaxfrags;
  784. if (dmabuf->rawbuf && (PAGE_SIZE << dmabuf->buforder) == size)
  785. return 0;
  786. /* alloc enough to satisfy the oss params */
  787. for (order = DMABUF_DEFAULTORDER; order >= DMABUF_MINORDER; order--) {
  788. if ((PAGE_SIZE << order) > size)
  789. continue;
  790. if ((rawbuf = pci_alloc_consistent(state->card->pci_dev,
  791.    PAGE_SIZE << order,
  792.    &dmabuf->dma_handle)))
  793. break;
  794. }
  795. if (!rawbuf)
  796. return -ENOMEM;
  797. dmabuf->ready = dmabuf->mapped = 0;
  798. dmabuf->rawbuf = rawbuf;
  799. dmabuf->buforder = order;
  800. /* now mark the pages as reserved; otherwise remap_page_range doesn't do what we want */
  801. pend = virt_to_page(rawbuf + (PAGE_SIZE << order) - 1);
  802. for (page = virt_to_page(rawbuf); page <= pend; page++)
  803. mem_map_reserve(page);
  804. return 0;
  805. }
  806. /* free DMA buffer */
  807. static void dealloc_dmabuf(struct ali_state *state)
  808. {
  809. struct dmabuf *dmabuf = &state->dmabuf;
  810. struct page *page, *pend;
  811. if (dmabuf->rawbuf) {
  812. /* undo marking the pages as reserved */
  813. pend = virt_to_page(dmabuf->rawbuf + (PAGE_SIZE << dmabuf->buforder) - 1);
  814. for (page = virt_to_page(dmabuf->rawbuf); page <= pend; page++)
  815. mem_map_unreserve(page);
  816. pci_free_consistent(state->card->pci_dev,
  817.     PAGE_SIZE << dmabuf->buforder,
  818.     dmabuf->rawbuf, dmabuf->dma_handle);
  819. }
  820. dmabuf->rawbuf = NULL;
  821. dmabuf->mapped = dmabuf->ready = 0;
  822. }
  823. static int prog_dmabuf(struct ali_state *state, unsigned rec)
  824. {
  825. struct dmabuf *dmabuf = &state->dmabuf;
  826. struct ali_channel *c = NULL;
  827. struct sg_item *sg;
  828. unsigned long flags;
  829. int ret;
  830. unsigned fragint;
  831. int i;
  832. spin_lock_irqsave(&state->card->lock, flags);
  833. if (dmabuf->enable & DAC_RUNNING)
  834. __stop_dac(state);
  835. if (dmabuf->enable & ADC_RUNNING)
  836. __stop_adc(state);
  837. if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING)
  838. __stop_spdifout(state);
  839. if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  840. __stop_spdifout(state);
  841. dmabuf->total_bytes = 0;
  842. dmabuf->count = dmabuf->error = 0;
  843. dmabuf->swptr = dmabuf->hwptr = 0;
  844. spin_unlock_irqrestore(&state->card->lock, flags);
  845. /* allocate DMA buffer, let alloc_dmabuf determine if we are already
  846.  * allocated well enough or if we should replace the current buffer
  847.  * (assuming one is already allocated, if it isn't, then allocate it).
  848.  */
  849. if ((ret = alloc_dmabuf(state)))
  850. return ret;
  851. /* FIXME: figure out all this OSS fragment stuff */
  852. /* I did, it now does what it should according to the OSS API.  DL */
  853. /* We may not have realloced our dmabuf, but the fragment size to
  854.  * fragment number ratio may have changed, so go ahead and reprogram
  855.  * things
  856.  */
  857. dmabuf->dmasize = PAGE_SIZE << dmabuf->buforder;
  858. dmabuf->numfrag = SG_LEN;
  859. dmabuf->fragsize = dmabuf->dmasize / dmabuf->numfrag;
  860. dmabuf->fragsamples = dmabuf->fragsize >> 1;
  861. dmabuf->userfragsize = dmabuf->ossfragsize;
  862. dmabuf->userfrags = dmabuf->dmasize / dmabuf->ossfragsize;
  863. memset(dmabuf->rawbuf, 0, dmabuf->dmasize);
  864. if (dmabuf->ossmaxfrags == 4) {
  865. fragint = 8;
  866. dmabuf->fragshift = 2;
  867. } else if (dmabuf->ossmaxfrags == 8) {
  868. fragint = 4;
  869. dmabuf->fragshift = 3;
  870. } else if (dmabuf->ossmaxfrags == 16) {
  871. fragint = 2;
  872. dmabuf->fragshift = 4;
  873. } else {
  874. fragint = 1;
  875. dmabuf->fragshift = 5;
  876. }
  877. /*
  878.  *      Now set up the ring 
  879.  */
  880. if (rec == 1)
  881. c = dmabuf->read_channel;
  882. else if (rec == 2)
  883. c = dmabuf->codec_spdifout_channel;
  884. else if (rec == 3)
  885. c = dmabuf->controller_spdifout_channel;
  886. else if (rec == 0)
  887. c = dmabuf->write_channel;
  888. if (c != NULL) {
  889. sg = &c->sg[0];
  890. /*
  891.  *      Load up 32 sg entries and take an interrupt at half
  892.  *      way (we might want more interrupts later..) 
  893.  */
  894. for (i = 0; i < dmabuf->numfrag; i++) {
  895. sg->busaddr =
  896.     virt_to_bus(dmabuf->rawbuf +
  897. dmabuf->fragsize * i);
  898. // the card will always be doing 16bit stereo
  899. sg->control = dmabuf->fragsamples;
  900. sg->control |= CON_BUFPAD; //I modify
  901. // set us up to get IOC interrupts as often as needed to
  902. // satisfy numfrag requirements, no more
  903. if (((i + 1) % fragint) == 0) {
  904. sg->control |= CON_IOC;
  905. }
  906. sg++;
  907. }
  908. spin_lock_irqsave(&state->card->lock, flags);
  909. outb(2, state->card->iobase + c->port + OFF_CR); /* reset DMA machine */
  910. outl(virt_to_bus(&c->sg[0]), state->card->iobase + c->port + OFF_BDBAR);
  911. outb(0, state->card->iobase + c->port + OFF_CIV);
  912. outb(0, state->card->iobase + c->port + OFF_LVI);
  913. spin_unlock_irqrestore(&state->card->lock, flags);
  914. }
  915. /* set the ready flag for the dma buffer */
  916. dmabuf->ready = 1;
  917. return 0;
  918. }
  919. static void __ali_update_lvi(struct ali_state *state, int rec)
  920. {
  921. struct dmabuf *dmabuf = &state->dmabuf;
  922. int x, port;
  923. port = state->card->iobase;
  924. if (rec == 1)
  925. port += dmabuf->read_channel->port;
  926. else if (rec == 2)
  927. port += dmabuf->codec_spdifout_channel->port;
  928. else if (rec == 3)
  929. port += dmabuf->controller_spdifout_channel->port;
  930. else if (rec == 0)
  931. port += dmabuf->write_channel->port;
  932. /* if we are currently stopped, then our CIV is actually set to our
  933.  * *last* sg segment and we are ready to wrap to the next.  However,
  934.  * if we set our LVI to the last sg segment, then it won't wrap to
  935.  * the next sg segment, it won't even get a start.  So, instead, when
  936.  * we are stopped, we set both the LVI value and also we increment
  937.  * the CIV value to the next sg segment to be played so that when
  938.  * we call start_{dac,adc}, things will operate properly
  939.  */
  940. if (!dmabuf->enable && dmabuf->ready) {
  941. if (rec && dmabuf->count < dmabuf->dmasize && (dmabuf->trigger & PCM_ENABLE_INPUT)) {
  942. outb((inb(port + OFF_CIV) + 1) & 31, port + OFF_LVI);
  943. __start_adc(state);
  944. while (! (inb(port + OFF_CR) & ((1 << 4) | (1 << 2))))
  945. cpu_relax();
  946. } else if (!rec && dmabuf->count && (dmabuf->trigger & PCM_ENABLE_OUTPUT)) {
  947. outb((inb(port + OFF_CIV) + 1) & 31, port + OFF_LVI);
  948. __start_dac(state);
  949. while (!(inb(port + OFF_CR) & ((1 << 4) | (1 << 2))))
  950. cpu_relax();
  951. } else if (rec && dmabuf->count && (dmabuf->trigger & SPDIF_ENABLE_OUTPUT)) {
  952. if (codec_independent_spdif_locked > 0) {
  953. // outb((inb(port+OFF_CIV))&31, port+OFF_LVI);
  954. outb((inb(port + OFF_CIV) + 1) & 31, port + OFF_LVI);
  955. __start_spdifout(state);
  956. while (!(inb(port + OFF_CR) & ((1 << 4) | (1 << 2))))
  957. cpu_relax();
  958. } else {
  959. if (controller_independent_spdif_locked > 0) {
  960. outb((inb(port + OFF_CIV) + 1) & 31, port + OFF_LVI);
  961. __start_spdifout(state);
  962. while (!(inb(port + OFF_CR) & ((1 << 4) | (1 << 2))))
  963. cpu_relax();
  964. }
  965. }
  966. }
  967. }
  968. /* swptr - 1 is the tail of our transfer */
  969. x = (dmabuf->dmasize + dmabuf->swptr - 1) % dmabuf->dmasize;
  970. x /= dmabuf->fragsize;
  971. outb(x, port + OFF_LVI);
  972. }
  973. static void ali_update_lvi(struct ali_state *state, int rec)
  974. {
  975. struct dmabuf *dmabuf = &state->dmabuf;
  976. unsigned long flags;
  977. if (!dmabuf->ready)
  978. return;
  979. spin_lock_irqsave(&state->card->lock, flags);
  980. __ali_update_lvi(state, rec);
  981. spin_unlock_irqrestore(&state->card->lock, flags);
  982. }
  983. /* update buffer manangement pointers, especially, dmabuf->count and dmabuf->hwptr */
  984. static void ali_update_ptr(struct ali_state *state)
  985. {
  986. struct dmabuf *dmabuf = &state->dmabuf;
  987. unsigned hwptr;
  988. int diff;
  989. /* error handling and process wake up for DAC */
  990. if (dmabuf->enable == ADC_RUNNING) {
  991. /* update hardware pointer */
  992. hwptr = ali_get_dma_addr(state, 1);
  993. diff = (dmabuf->dmasize + hwptr - dmabuf->hwptr) % dmabuf->dmasize;
  994. dmabuf->hwptr = hwptr;
  995. dmabuf->total_bytes += diff;
  996. dmabuf->count += diff;
  997. if (dmabuf->count > dmabuf->dmasize) {
  998. /* buffer underrun or buffer overrun */
  999. /* this is normal for the end of a read */
  1000. /* only give an error if we went past the */
  1001. /* last valid sg entry */
  1002. if ((inb(state->card->iobase + PI_CIV) & 31) != (inb(state->card->iobase + PI_LVI) & 31)) {
  1003. printk(KERN_WARNING "ali_audio: DMA overrun on readn");
  1004. dmabuf->error++;
  1005. }
  1006. }
  1007. if (dmabuf->count > dmabuf->userfragsize)
  1008. wake_up(&dmabuf->wait);
  1009. }
  1010. /* error handling and process wake up for DAC */
  1011. if (dmabuf->enable == DAC_RUNNING) {
  1012. /* update hardware pointer */
  1013. hwptr = ali_get_dma_addr(state, 0);
  1014. diff =
  1015.     (dmabuf->dmasize + hwptr -
  1016.      dmabuf->hwptr) % dmabuf->dmasize;
  1017. #if defined(DEBUG_INTERRUPTS) || defined(DEBUG_MMAP)
  1018. printk("DAC HWP %d,%d,%dn", hwptr, dmabuf->hwptr, diff);
  1019. #endif
  1020. dmabuf->hwptr = hwptr;
  1021. dmabuf->total_bytes += diff;
  1022. dmabuf->count -= diff;
  1023. if (dmabuf->count < 0) {
  1024. /* buffer underrun or buffer overrun */
  1025. /* this is normal for the end of a write */
  1026. /* only give an error if we went past the */
  1027. /* last valid sg entry */
  1028. if ((inb(state->card->iobase + PO_CIV) & 31) != (inb(state->card->iobase + PO_LVI) & 31)) {
  1029. printk(KERN_WARNING "ali_audio: DMA overrun on writen");
  1030. printk(KERN_DEBUG "ali_audio: CIV %d, LVI %d, hwptr %x, count %dn",
  1031.       inb(state->card->iobase + PO_CIV) & 31,
  1032.       inb(state->card->iobase + PO_LVI) & 31, 
  1033. dmabuf->hwptr,
  1034. dmabuf->count);
  1035. dmabuf->error++;
  1036. }
  1037. }
  1038. if (dmabuf->count < (dmabuf->dmasize - dmabuf->userfragsize))
  1039.      wake_up(&dmabuf->wait);
  1040. }
  1041. /* error handling and process wake up for CODEC SPDIF OUT */
  1042. if (dmabuf->enable == CODEC_SPDIFOUT_RUNNING) {
  1043. /* update hardware pointer */
  1044. hwptr = ali_get_dma_addr(state, 2);
  1045. diff = (dmabuf->dmasize + hwptr - dmabuf->hwptr) % dmabuf->dmasize;
  1046. dmabuf->hwptr = hwptr;
  1047. dmabuf->total_bytes += diff;
  1048. dmabuf->count -= diff;
  1049. if (dmabuf->count < 0) {
  1050. /* buffer underrun or buffer overrun */
  1051. /* this is normal for the end of a write */
  1052. /* only give an error if we went past the */
  1053. /* last valid sg entry */
  1054. if ((inb(state->card->iobase + CODECSPDIFOUT_CIV) & 31) != (inb(state->card->iobase + CODECSPDIFOUT_LVI) & 31)) {
  1055. printk(KERN_WARNING "ali_audio: DMA overrun on writen");
  1056. printk(KERN_DEBUG "ali_audio: CIV %d, LVI %d, hwptr %x, count %dn", 
  1057.         inb(state->card->iobase + CODECSPDIFOUT_CIV) & 31,
  1058. inb(state->card->iobase + CODECSPDIFOUT_LVI) & 31,
  1059. dmabuf->hwptr, dmabuf->count);
  1060. dmabuf->error++;
  1061. }
  1062. }
  1063. if (dmabuf->count < (dmabuf->dmasize - dmabuf->userfragsize))
  1064. wake_up(&dmabuf->wait);
  1065. }
  1066. /* error handling and process wake up for CONTROLLER SPDIF OUT */
  1067. if (dmabuf->enable == CONTROLLER_SPDIFOUT_RUNNING) {
  1068. /* update hardware pointer */
  1069. hwptr = ali_get_dma_addr(state, 3);
  1070. diff = (dmabuf->dmasize + hwptr - dmabuf->hwptr) % dmabuf->dmasize;
  1071. dmabuf->hwptr = hwptr;
  1072. dmabuf->total_bytes += diff;
  1073. dmabuf->count -= diff;
  1074. if (dmabuf->count < 0) {
  1075. /* buffer underrun or buffer overrun */
  1076. /* this is normal for the end of a write */
  1077. /* only give an error if we went past the */
  1078. /* last valid sg entry */
  1079. if ((inb(state->card->iobase + CONTROLLERSPDIFOUT_CIV) & 31) != (inb(state->card->iobase + CONTROLLERSPDIFOUT_LVI) & 31)) {
  1080. printk(KERN_WARNING
  1081.        "ali_audio: DMA overrun on writen");
  1082. printk("ali_audio: CIV %d, LVI %d, hwptr %x, "
  1083. "count %dn",
  1084.       inb(state->card->iobase + CONTROLLERSPDIFOUT_CIV) & 31,
  1085.       inb(state->card->iobase + CONTROLLERSPDIFOUT_LVI) & 31,
  1086.       dmabuf->hwptr, dmabuf->count);
  1087. dmabuf->error++;
  1088. }
  1089. }
  1090. if (dmabuf->count < (dmabuf->dmasize - dmabuf->userfragsize))
  1091. wake_up(&dmabuf->wait);
  1092. }
  1093. }
  1094. static inline int ali_get_free_write_space(struct
  1095.    ali_state
  1096.    *state)
  1097. {
  1098. struct dmabuf *dmabuf = &state->dmabuf;
  1099. int free;
  1100. ali_update_ptr(state);
  1101. // catch underruns during playback
  1102. if (dmabuf->count < 0) {
  1103. dmabuf->count = 0;
  1104. dmabuf->swptr = dmabuf->hwptr;
  1105. }
  1106. free = dmabuf->dmasize - dmabuf->count;
  1107. free -= (dmabuf->hwptr % dmabuf->fragsize);
  1108. if (free < 0)
  1109. return (0);
  1110. return (free);
  1111. }
  1112. static inline int ali_get_available_read_data(struct
  1113.       ali_state
  1114.       *state)
  1115. {
  1116. struct dmabuf *dmabuf = &state->dmabuf;
  1117. int avail;
  1118. ali_update_ptr(state);
  1119. // catch overruns during record
  1120. if (dmabuf->count > dmabuf->dmasize) {
  1121. dmabuf->count = dmabuf->dmasize;
  1122. dmabuf->swptr = dmabuf->hwptr;
  1123. }
  1124. avail = dmabuf->count;
  1125. avail -= (dmabuf->hwptr % dmabuf->fragsize);
  1126. if (avail < 0)
  1127. return (0);
  1128. return (avail);
  1129. }
  1130. static int drain_dac(struct ali_state *state, int signals_allowed)
  1131. {
  1132. DECLARE_WAITQUEUE(wait, current);
  1133. struct dmabuf *dmabuf = &state->dmabuf;
  1134. unsigned long flags;
  1135. unsigned long tmo;
  1136. int count;
  1137. if (!dmabuf->ready)
  1138. return 0;
  1139. if (dmabuf->mapped) {
  1140. stop_dac(state);
  1141. return 0;
  1142. }
  1143. add_wait_queue(&dmabuf->wait, &wait);
  1144. for (;;) {
  1145. spin_lock_irqsave(&state->card->lock, flags);
  1146. ali_update_ptr(state);
  1147. count = dmabuf->count;
  1148. spin_unlock_irqrestore(&state->card->lock, flags);
  1149. if (count <= 0)
  1150. break;
  1151. /* 
  1152.  * This will make sure that our LVI is correct, that our
  1153.  * pointer is updated, and that the DAC is running.  We
  1154.  * have to force the setting of dmabuf->trigger to avoid
  1155.  * any possible deadlocks.
  1156.  */
  1157. if (!dmabuf->enable) {
  1158. dmabuf->trigger = PCM_ENABLE_OUTPUT;
  1159. ali_update_lvi(state, 0);
  1160. }
  1161. if (signal_pending(current) && signals_allowed) {
  1162. break;
  1163. }
  1164. /* It seems that we have to set the current state to
  1165.  * TASK_INTERRUPTIBLE every time to make the process
  1166.  * really go to sleep.  This also has to be *after* the
  1167.  * update_ptr() call because update_ptr is likely to
  1168.  * do a wake_up() which will unset this before we ever
  1169.  * try to sleep, resuling in a tight loop in this code
  1170.  * instead of actually sleeping and waiting for an
  1171.  * interrupt to wake us up!
  1172.  */
  1173. set_current_state(TASK_INTERRUPTIBLE);
  1174. /*
  1175.  * set the timeout to significantly longer than it *should*
  1176.  * take for the DAC to drain the DMA buffer
  1177.  */
  1178. tmo = (count * HZ) / (dmabuf->rate);
  1179. if (!schedule_timeout(tmo >= 2 ? tmo : 2)) {
  1180. printk(KERN_ERR "ali_audio: drain_dac, dma timeout?n");
  1181. count = 0;
  1182. break;
  1183. }
  1184. }
  1185. set_current_state(TASK_RUNNING);
  1186. remove_wait_queue(&dmabuf->wait, &wait);
  1187. if (count > 0 && signal_pending(current) && signals_allowed)
  1188. return -ERESTARTSYS;
  1189. stop_dac(state);
  1190. return 0;
  1191. }
  1192. static int drain_spdifout(struct ali_state *state, int signals_allowed)
  1193. {
  1194. DECLARE_WAITQUEUE(wait, current);
  1195. struct dmabuf *dmabuf = &state->dmabuf;
  1196. unsigned long flags;
  1197. unsigned long tmo;
  1198. int count;
  1199. if (!dmabuf->ready)
  1200. return 0;
  1201. if (dmabuf->mapped) {
  1202. stop_spdifout(state);
  1203. return 0;
  1204. }
  1205. add_wait_queue(&dmabuf->wait, &wait);
  1206. for (;;) {
  1207. spin_lock_irqsave(&state->card->lock, flags);
  1208. ali_update_ptr(state);
  1209. count = dmabuf->count;
  1210. spin_unlock_irqrestore(&state->card->lock, flags);
  1211. if (count <= 0)
  1212. break;
  1213. /* 
  1214.  * This will make sure that our LVI is correct, that our
  1215.  * pointer is updated, and that the DAC is running.  We
  1216.  * have to force the setting of dmabuf->trigger to avoid
  1217.  * any possible deadlocks.
  1218.  */
  1219. if (!dmabuf->enable) {
  1220. if (codec_independent_spdif_locked > 0) {
  1221. dmabuf->trigger = SPDIF_ENABLE_OUTPUT;
  1222. ali_update_lvi(state, 2);
  1223. } else {
  1224. if (controller_independent_spdif_locked > 0) {
  1225. dmabuf->trigger = SPDIF_ENABLE_OUTPUT;
  1226. ali_update_lvi(state, 3);
  1227. }
  1228. }
  1229. }
  1230. if (signal_pending(current) && signals_allowed) {
  1231. break;
  1232. }
  1233. /* It seems that we have to set the current state to
  1234.  * TASK_INTERRUPTIBLE every time to make the process
  1235.  * really go to sleep.  This also has to be *after* the
  1236.  * update_ptr() call because update_ptr is likely to
  1237.  * do a wake_up() which will unset this before we ever
  1238.  * try to sleep, resuling in a tight loop in this code
  1239.  * instead of actually sleeping and waiting for an
  1240.  * interrupt to wake us up!
  1241.  */
  1242. set_current_state(TASK_INTERRUPTIBLE);
  1243. /*
  1244.  * set the timeout to significantly longer than it *should*
  1245.  * take for the DAC to drain the DMA buffer
  1246.  */
  1247. tmo = (count * HZ) / (dmabuf->rate);
  1248. if (!schedule_timeout(tmo >= 2 ? tmo : 2)) {
  1249. printk(KERN_ERR "ali_audio: drain_spdifout, dma timeout?n");
  1250. count = 0;
  1251. break;
  1252. }
  1253. }
  1254. set_current_state(TASK_RUNNING);
  1255. remove_wait_queue(&dmabuf->wait, &wait);
  1256. if (count > 0 && signal_pending(current) && signals_allowed)
  1257. return -ERESTARTSYS;
  1258. stop_spdifout(state);
  1259. return 0;
  1260. }
  1261. static void ali_channel_interrupt(struct ali_card *card)
  1262. {
  1263. int i, count;
  1264. for (i = 0; i < NR_HW_CH; i++) {
  1265. struct ali_state *state = card->states[i];
  1266. struct ali_channel *c = NULL;
  1267. struct dmabuf *dmabuf;
  1268. unsigned long port = card->iobase;
  1269. u16 status;
  1270. if (!state)
  1271. continue;
  1272. if (!state->dmabuf.ready)
  1273. continue;
  1274. dmabuf = &state->dmabuf;
  1275. if (codec_independent_spdif_locked > 0) {
  1276. if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING) {
  1277. c = dmabuf->codec_spdifout_channel;
  1278. }
  1279. } else {
  1280. if (controller_independent_spdif_locked > 0) {
  1281. if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  1282. c = dmabuf->controller_spdifout_channel;
  1283. } else {
  1284. if (dmabuf->enable & DAC_RUNNING) {
  1285. c = dmabuf->write_channel;
  1286. } else if (dmabuf->enable & ADC_RUNNING) {
  1287. c = dmabuf->read_channel;
  1288. } else
  1289. continue;
  1290. }
  1291. }
  1292. port += c->port;
  1293. status = inw(port + OFF_SR);
  1294. if (status & DMA_INT_COMPLETE) {
  1295. /* only wake_up() waiters if this interrupt signals
  1296.  * us being beyond a userfragsize of data open or
  1297.  * available, and ali_update_ptr() does that for
  1298.  * us
  1299.  */
  1300. ali_update_ptr(state);
  1301. }
  1302. if (status & DMA_INT_LVI) {
  1303. ali_update_ptr(state);
  1304. wake_up(&dmabuf->wait);
  1305. if (dmabuf->enable & DAC_RUNNING)
  1306. count = dmabuf->count;
  1307. else if (dmabuf->enable & ADC_RUNNING)
  1308. count = dmabuf->dmasize - dmabuf->count;
  1309. else if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING)
  1310. count = dmabuf->count;
  1311. else if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  1312. count = dmabuf->count;
  1313. else count = 0;
  1314. if (count > 0) {
  1315. if (dmabuf->enable & DAC_RUNNING)
  1316. outl((1 << 1), state->card->iobase + ALI_DMACR);
  1317. else if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING)
  1318. outl((1 << 3), state->card->iobase + ALI_DMACR);
  1319. else if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  1320. outl((1 << 7), state->card->iobase + ALI_DMACR);
  1321. } else {
  1322. if (dmabuf->enable & DAC_RUNNING)
  1323. __stop_dac(state);
  1324. if (dmabuf->enable & ADC_RUNNING)
  1325. __stop_adc(state);
  1326. if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING)
  1327. __stop_spdifout(state);
  1328. if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  1329. __stop_spdifout(state);
  1330. dmabuf->enable = 0;
  1331. wake_up(&dmabuf->wait);
  1332. }
  1333. }
  1334. if (!(status & DMA_INT_DCH)) {
  1335. ali_update_ptr(state);
  1336. wake_up(&dmabuf->wait);
  1337. if (dmabuf->enable & DAC_RUNNING)
  1338. count = dmabuf->count;
  1339. else if (dmabuf->enable & ADC_RUNNING)
  1340. count = dmabuf->dmasize - dmabuf->count;
  1341. else if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING)
  1342. count = dmabuf->count;
  1343. else if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  1344. count = dmabuf->count;
  1345. else
  1346. count = 0;
  1347. if (count > 0) {
  1348. if (dmabuf->enable & DAC_RUNNING)
  1349. outl((1 << 1), state->card->iobase + ALI_DMACR);
  1350. else if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING)
  1351. outl((1 << 3), state->card->iobase + ALI_DMACR);
  1352. else if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  1353. outl((1 << 7), state->card->iobase + ALI_DMACR);
  1354. } else {
  1355. if (dmabuf->enable & DAC_RUNNING)
  1356. __stop_dac(state);
  1357. if (dmabuf->enable & ADC_RUNNING)
  1358. __stop_adc(state);
  1359. if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING)
  1360. __stop_spdifout(state);
  1361. if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)
  1362. __stop_spdifout(state);
  1363. dmabuf->enable = 0;
  1364. wake_up(&dmabuf->wait);
  1365. }
  1366. }
  1367. outw(status & DMA_INT_MASK, port + OFF_SR);
  1368. }
  1369. }
  1370. static void ali_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1371. {
  1372. struct ali_card *card = (struct ali_card *) dev_id;
  1373. u32 status;
  1374. u16 status2;
  1375. spin_lock(&card->lock);
  1376. status = inl(card->iobase + ALI_INTERRUPTSR);
  1377. if (!(status & INT_MASK)) {
  1378. spin_unlock(&card->lock);
  1379. return; /* not for us */
  1380. }
  1381. if (codec_independent_spdif_locked > 0) {
  1382. if (globel == 0) {
  1383. globel += 1;
  1384. status2 = inw(card->iobase + 0x76);
  1385. outw(status2 | 0x000c, card->iobase + 0x76);
  1386. } else {
  1387. if (status & (INT_PCMOUT | INT_PCMIN | INT_MICIN | INT_SPDIFOUT | INT_CODECSPDIFOUT))
  1388. ali_channel_interrupt(card);
  1389. }
  1390. } else {
  1391. if (status & (INT_PCMOUT | INT_PCMIN | INT_MICIN | INT_SPDIFOUT | INT_CODECSPDIFOUT))
  1392. ali_channel_interrupt(card);
  1393. }
  1394. /* clear 'em */
  1395. outl(status & INT_MASK, card->iobase + ALI_INTERRUPTSR);
  1396. spin_unlock(&card->lock);
  1397. }
  1398. /* in this loop, dmabuf.count signifies the amount of data that is
  1399.    waiting to be copied to the user's buffer.  It is filled by the dma
  1400.    machine and drained by this loop. */
  1401. static ssize_t ali_read(struct file *file, char *buffer,
  1402. size_t count, loff_t * ppos)
  1403. {
  1404. struct ali_state *state = (struct ali_state *) file->private_data;
  1405. struct ali_card *card = state ? state->card : 0;
  1406. struct dmabuf *dmabuf = &state->dmabuf;
  1407. ssize_t ret;
  1408. unsigned long flags;
  1409. unsigned int swptr;
  1410. int cnt;
  1411. DECLARE_WAITQUEUE(waita, current);
  1412. #ifdef DEBUG2
  1413. printk("ali_audio: ali_read called, count = %dn", count);
  1414. #endif
  1415. if (ppos != &file->f_pos)
  1416. return -ESPIPE;
  1417. if (dmabuf->mapped)
  1418. return -ENXIO;
  1419. if (dmabuf->enable & DAC_RUNNING)
  1420. return -ENODEV;
  1421. if (!dmabuf->read_channel) {
  1422. dmabuf->ready = 0;
  1423. dmabuf->read_channel = card->alloc_rec_pcm_channel(card);
  1424. if (!dmabuf->read_channel) {
  1425. return -EBUSY;
  1426. }
  1427. }
  1428. if (!dmabuf->ready && (ret = prog_dmabuf(state, 1)))
  1429. return ret;
  1430. if (!access_ok(VERIFY_WRITE, buffer, count))
  1431. return -EFAULT;
  1432. ret = 0;
  1433. add_wait_queue(&dmabuf->wait, &waita);
  1434. while (count > 0) {
  1435. set_current_state(TASK_INTERRUPTIBLE);
  1436. spin_lock_irqsave(&card->lock, flags);
  1437. if (PM_SUSPENDED(card)) {
  1438. spin_unlock_irqrestore(&card->lock, flags);
  1439. schedule();
  1440. if (signal_pending(current)) {
  1441. if (!ret)
  1442. ret = -EAGAIN;
  1443. break;
  1444. }
  1445. continue;
  1446. }
  1447. swptr = dmabuf->swptr;
  1448. cnt = ali_get_available_read_data(state);
  1449. // this is to make the copy_to_user simpler below
  1450. if (cnt > (dmabuf->dmasize - swptr))
  1451. cnt = dmabuf->dmasize - swptr;
  1452. spin_unlock_irqrestore(&card->lock, flags);
  1453. if (cnt > count)
  1454. cnt = count;
  1455. /* Lop off the last two bits to force the code to always
  1456.  * write in full samples.  This keeps software that sets
  1457.  * O_NONBLOCK but doesn't check the return value of the
  1458.  * write call from getting things out of state where they
  1459.  * think a full 4 byte sample was written when really only
  1460.  * a portion was, resulting in odd sound and stereo
  1461.  * hysteresis.
  1462.  */
  1463. cnt &= ~0x3;
  1464. if (cnt <= 0) {
  1465. unsigned long tmo;
  1466. /*
  1467.  * Don't let us deadlock.  The ADC won't start if
  1468.  * dmabuf->trigger isn't set.  A call to SETTRIGGER
  1469.  * could have turned it off after we set it to on
  1470.  * previously.
  1471.  */
  1472. dmabuf->trigger = PCM_ENABLE_INPUT;
  1473. /*
  1474.  * This does three things.  Updates LVI to be correct,
  1475.  * makes sure the ADC is running, and updates the
  1476.  * hwptr.
  1477.  */
  1478. ali_update_lvi(state, 1);
  1479. if (file->f_flags & O_NONBLOCK) {
  1480. if (!ret)
  1481. ret = -EAGAIN;
  1482. goto done;
  1483. }
  1484. /* Set the timeout to how long it would take to fill
  1485.  * two of our buffers.  If we haven't been woke up
  1486.  * by then, then we know something is wrong.
  1487.  */
  1488. tmo = (dmabuf->dmasize * HZ * 2) / (dmabuf->rate * 4);
  1489.     
  1490. /* There are two situations when sleep_on_timeout returns, one is when
  1491.    the interrupt is serviced correctly and the process is waked up by
  1492.    ISR ON TIME. Another is when timeout is expired, which means that
  1493.    either interrupt is NOT serviced correctly (pending interrupt) or it
  1494.    is TOO LATE for the process to be scheduled to run (scheduler latency)
  1495.    which results in a (potential) buffer overrun. And worse, there is
  1496.    NOTHING we can do to prevent it. */
  1497. if (!schedule_timeout(tmo >= 2 ? tmo : 2)) {
  1498. printk(KERN_ERR
  1499.        "ali_audio: recording schedule timeout, "
  1500.        "dmasz %u fragsz %u count %i hwptr %u swptr %un",
  1501.        dmabuf->dmasize, dmabuf->fragsize,
  1502.        dmabuf->count, dmabuf->hwptr,
  1503.        dmabuf->swptr);
  1504. /* a buffer overrun, we delay the recovery until next time the
  1505.    while loop begin and we REALLY have space to record */
  1506. }
  1507. if (signal_pending(current)) {
  1508. ret = ret ? ret : -ERESTARTSYS;
  1509. goto done;
  1510. }
  1511. continue;
  1512. }
  1513. if (copy_to_user(buffer, dmabuf->rawbuf + swptr, cnt)) {
  1514. if (!ret)
  1515. ret = -EFAULT;
  1516. goto done;
  1517. }
  1518. swptr = (swptr + cnt) % dmabuf->dmasize;
  1519. spin_lock_irqsave(&card->lock, flags);
  1520. if (PM_SUSPENDED(card)) {
  1521. spin_unlock_irqrestore(&card->lock, flags);
  1522. continue;
  1523. }
  1524. dmabuf->swptr = swptr;
  1525. dmabuf->count -= cnt;
  1526. spin_unlock_irqrestore(&card->lock, flags);
  1527. count -= cnt;
  1528. buffer += cnt;
  1529. ret += cnt;
  1530. }
  1531. done:
  1532. ali_update_lvi(state, 1);
  1533. set_current_state(TASK_RUNNING);
  1534. remove_wait_queue(&dmabuf->wait, &waita);
  1535. return ret;
  1536. }
  1537. /* in this loop, dmabuf.count signifies the amount of data that is waiting to be dma to
  1538.    the soundcard.  it is drained by the dma machine and filled by this loop. */
  1539. static ssize_t ali_write(struct file *file,
  1540.  const char *buffer, size_t count, loff_t * ppos)
  1541. {
  1542. struct ali_state *state = (struct ali_state *) file->private_data;
  1543. struct ali_card *card = state ? state->card : 0;
  1544. struct dmabuf *dmabuf = &state->dmabuf;
  1545. ssize_t ret;
  1546. unsigned long flags;
  1547. unsigned int swptr = 0;
  1548. int cnt, x;
  1549. DECLARE_WAITQUEUE(waita, current);
  1550. #ifdef DEBUG2
  1551. printk("ali_audio: ali_write called, count = %dn", count);
  1552. #endif
  1553. if (ppos != &file->f_pos)
  1554. return -ESPIPE;
  1555. if (dmabuf->mapped)
  1556. return -ENXIO;
  1557. if (dmabuf->enable & ADC_RUNNING)
  1558. return -ENODEV;
  1559. if (codec_independent_spdif_locked > 0) {
  1560. if (!dmabuf->codec_spdifout_channel) {
  1561. dmabuf->ready = 0;
  1562. dmabuf->codec_spdifout_channel = card->alloc_codec_spdifout_channel(card);
  1563. if (!dmabuf->codec_spdifout_channel)
  1564. return -EBUSY;
  1565. }
  1566. } else {
  1567. if (controller_independent_spdif_locked > 0) {
  1568. if (!dmabuf->controller_spdifout_channel) {
  1569. dmabuf->ready = 0;
  1570. dmabuf->controller_spdifout_channel = card->alloc_controller_spdifout_channel(card);
  1571. if (!dmabuf->controller_spdifout_channel)
  1572. return -EBUSY;
  1573. }
  1574. } else {
  1575. if (!dmabuf->write_channel) {
  1576. dmabuf->ready = 0;
  1577. dmabuf->write_channel =
  1578.     card->alloc_pcm_channel(card);
  1579. if (!dmabuf->write_channel)
  1580. return -EBUSY;
  1581. }
  1582. }
  1583. }
  1584. if (codec_independent_spdif_locked > 0) {
  1585. if (!dmabuf->ready && (ret = prog_dmabuf(state, 2)))
  1586. return ret;
  1587. } else {
  1588. if (controller_independent_spdif_locked > 0) {
  1589. if (!dmabuf->ready && (ret = prog_dmabuf(state, 3)))
  1590. return ret;
  1591. } else {
  1592. if (!dmabuf->ready && (ret = prog_dmabuf(state, 0)))
  1593. return ret;
  1594. }
  1595. }
  1596. if (!access_ok(VERIFY_READ, buffer, count))
  1597. return -EFAULT;
  1598. ret = 0;
  1599. add_wait_queue(&dmabuf->wait, &waita);
  1600. while (count > 0) {
  1601. set_current_state(TASK_INTERRUPTIBLE);
  1602. spin_lock_irqsave(&state->card->lock, flags);
  1603. if (PM_SUSPENDED(card)) {
  1604. spin_unlock_irqrestore(&card->lock, flags);
  1605. schedule();
  1606. if (signal_pending(current)) {
  1607. if (!ret)
  1608. ret = -EAGAIN;
  1609. break;
  1610. }
  1611. continue;
  1612. }
  1613. swptr = dmabuf->swptr;
  1614. cnt = ali_get_free_write_space(state);
  1615. /* Bound the maximum size to how much we can copy to the
  1616.  * dma buffer before we hit the end.  If we have more to
  1617.  * copy then it will get done in a second pass of this
  1618.  * loop starting from the beginning of the buffer.
  1619.  */
  1620. if (cnt > (dmabuf->dmasize - swptr))
  1621. cnt = dmabuf->dmasize - swptr;
  1622. spin_unlock_irqrestore(&state->card->lock, flags);
  1623. #ifdef DEBUG2
  1624. printk(KERN_INFO
  1625.        "ali_audio: ali_write: %d bytes available spacen",
  1626.        cnt);
  1627. #endif
  1628. if (cnt > count)
  1629. cnt = count;
  1630. /* Lop off the last two bits to force the code to always
  1631.  * write in full samples.  This keeps software that sets
  1632.  * O_NONBLOCK but doesn't check the return value of the
  1633.  * write call from getting things out of state where they
  1634.  * think a full 4 byte sample was written when really only
  1635.  * a portion was, resulting in odd sound and stereo
  1636.  * hysteresis.
  1637.  */
  1638. cnt &= ~0x3;
  1639. if (cnt <= 0) {
  1640. unsigned long tmo;
  1641. // There is data waiting to be played
  1642. /*
  1643.  * Force the trigger setting since we would
  1644.  * deadlock with it set any other way
  1645.  */
  1646. if (codec_independent_spdif_locked > 0) {
  1647. dmabuf->trigger = SPDIF_ENABLE_OUTPUT;
  1648. ali_update_lvi(state, 2);
  1649. } else {
  1650. if (controller_independent_spdif_locked > 0) {
  1651. dmabuf->trigger = SPDIF_ENABLE_OUTPUT;
  1652. ali_update_lvi(state, 3);
  1653. } else {
  1654. dmabuf->trigger = PCM_ENABLE_OUTPUT;
  1655. ali_update_lvi(state, 0);
  1656. }
  1657. }
  1658. if (file->f_flags & O_NONBLOCK) {
  1659. if (!ret)
  1660. ret = -EAGAIN;
  1661. goto ret;
  1662. }
  1663. /* Not strictly correct but works */
  1664. tmo = (dmabuf->dmasize * HZ * 2) / (dmabuf->rate * 4);
  1665. /* There are two situations when sleep_on_timeout returns, one is when
  1666.    the interrupt is serviced correctly and the process is waked up by
  1667.    ISR ON TIME. Another is when timeout is expired, which means that
  1668.    either interrupt is NOT serviced correctly (pending interrupt) or it
  1669.    is TOO LATE for the process to be scheduled to run (scheduler latency)
  1670.    which results in a (potential) buffer underrun. And worse, there is
  1671.    NOTHING we can do to prevent it. */
  1672.    
  1673. /* FIXME - do timeout handling here !! */
  1674. if (signal_pending(current)) {
  1675. if (!ret)
  1676. ret = -ERESTARTSYS;
  1677. goto ret;
  1678. }
  1679. continue;
  1680. }
  1681. if (copy_from_user(dmabuf->rawbuf + swptr, buffer, cnt)) {
  1682. if (!ret)
  1683. ret = -EFAULT;
  1684. goto ret;
  1685. }
  1686. swptr = (swptr + cnt) % dmabuf->dmasize;
  1687. spin_lock_irqsave(&state->card->lock, flags);
  1688. if (PM_SUSPENDED(card)) {
  1689. spin_unlock_irqrestore(&card->lock, flags);
  1690. continue;
  1691. }
  1692. dmabuf->swptr = swptr;
  1693. dmabuf->count += cnt;
  1694. count -= cnt;
  1695. buffer += cnt;
  1696. ret += cnt;
  1697. spin_unlock_irqrestore(&state->card->lock, flags);
  1698. }
  1699. if (swptr % dmabuf->fragsize) {
  1700. x = dmabuf->fragsize - (swptr % dmabuf->fragsize);
  1701. memset(dmabuf->rawbuf + swptr, '', x);
  1702. }
  1703. ret:
  1704. if (codec_independent_spdif_locked > 0) {
  1705. ali_update_lvi(state, 2);
  1706. } else {
  1707. if (controller_independent_spdif_locked > 0) {
  1708. ali_update_lvi(state, 3);
  1709. } else {
  1710. ali_update_lvi(state, 0);
  1711. }
  1712. }
  1713. set_current_state(TASK_RUNNING);
  1714. remove_wait_queue(&dmabuf->wait, &waita);
  1715. return ret;
  1716. }
  1717. /* No kernel lock - we have our own spinlock */
  1718. static unsigned int ali_poll(struct file *file, struct poll_table_struct
  1719.      *wait)
  1720. {
  1721. struct ali_state *state = (struct ali_state *) file->private_data;
  1722. struct dmabuf *dmabuf = &state->dmabuf;
  1723. unsigned long flags;
  1724. unsigned int mask = 0;
  1725. if (!dmabuf->ready)
  1726. return 0;
  1727. poll_wait(file, &dmabuf->wait, wait);
  1728. spin_lock_irqsave(&state->card->lock, flags);
  1729. ali_update_ptr(state);
  1730. if (file->f_mode & FMODE_READ && dmabuf->enable & ADC_RUNNING) {
  1731. if (dmabuf->count >= (signed) dmabuf->fragsize)
  1732. mask |= POLLIN | POLLRDNORM;
  1733. }
  1734. if (file->f_mode & FMODE_WRITE  && (dmabuf->enable & (DAC_RUNNING|CODEC_SPDIFOUT_RUNNING|CONTROLLER_SPDIFOUT_RUNNING))) {
  1735. if ((signed) dmabuf->dmasize >= dmabuf->count + (signed) dmabuf->fragsize)
  1736. mask |= POLLOUT | POLLWRNORM;
  1737. }
  1738. spin_unlock_irqrestore(&state->card->lock, flags);
  1739. return mask;
  1740. }
  1741. static int ali_mmap(struct file *file, struct vm_area_struct *vma)
  1742. {
  1743. struct ali_state *state = (struct ali_state *) file->private_data;
  1744. struct dmabuf *dmabuf = &state->dmabuf;
  1745. int ret = -EINVAL;
  1746. unsigned long size;
  1747. lock_kernel();
  1748. if (vma->vm_flags & VM_WRITE) {
  1749. if (!dmabuf->write_channel && (dmabuf->write_channel = state->card->alloc_pcm_channel(state->card)) == NULL) {
  1750. ret = -EBUSY;
  1751. goto out;
  1752. }
  1753. }
  1754. if (vma->vm_flags & VM_READ) {
  1755. if (!dmabuf->read_channel && (dmabuf->read_channel = state->card->alloc_rec_pcm_channel(state->card)) == NULL) {
  1756. ret = -EBUSY;
  1757. goto out;
  1758. }
  1759. }
  1760. if ((ret = prog_dmabuf(state, 0)) != 0)
  1761. goto out;
  1762. ret = -EINVAL;
  1763. if (vma->vm_pgoff != 0)
  1764. goto out;
  1765. size = vma->vm_end - vma->vm_start;
  1766. if (size > (PAGE_SIZE << dmabuf->buforder))
  1767. goto out;
  1768. ret = -EAGAIN;
  1769. if (remap_page_range(vma->vm_start, virt_to_phys(dmabuf->rawbuf), size, vma->vm_page_prot))
  1770. goto out;
  1771. dmabuf->mapped = 1;
  1772. dmabuf->trigger = 0;
  1773. ret = 0;
  1774. out:
  1775. unlock_kernel();
  1776. return ret;
  1777. }
  1778. static int ali_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  1779. {
  1780. struct ali_state *state = (struct ali_state *) file->private_data;
  1781. struct ali_channel *c = NULL;
  1782. struct dmabuf *dmabuf = &state->dmabuf;
  1783. unsigned long flags;
  1784. audio_buf_info abinfo;
  1785. count_info cinfo;
  1786. unsigned int i_scr;
  1787. int val = 0, ret;
  1788. struct ac97_codec *codec = state->card->ac97_codec[0];
  1789. #ifdef DEBUG
  1790. printk("ali_audio: ali_ioctl, arg=0x%x, cmd=",
  1791.        arg ? *(int *) arg : 0);
  1792. #endif
  1793. switch (cmd) {
  1794. case OSS_GETVERSION:
  1795. #ifdef DEBUG
  1796. printk("OSS_GETVERSIONn");
  1797. #endif
  1798. return put_user(SOUND_VERSION, (int *) arg);
  1799. case SNDCTL_DSP_RESET:
  1800. #ifdef DEBUG
  1801. printk("SNDCTL_DSP_RESETn");
  1802. #endif
  1803. spin_lock_irqsave(&state->card->lock, flags);
  1804. if (dmabuf->enable == DAC_RUNNING) {
  1805. c = dmabuf->write_channel;
  1806. __stop_dac(state);
  1807. }
  1808. if (dmabuf->enable == ADC_RUNNING) {
  1809. c = dmabuf->read_channel;
  1810. __stop_adc(state);
  1811. }
  1812. if (dmabuf->enable == CODEC_SPDIFOUT_RUNNING) {
  1813. c = dmabuf->codec_spdifout_channel;
  1814. __stop_spdifout(state);
  1815. }
  1816. if (dmabuf->enable == CONTROLLER_SPDIFOUT_RUNNING) {
  1817. c = dmabuf->controller_spdifout_channel;
  1818. __stop_spdifout(state);
  1819. }
  1820. if (c != NULL) {
  1821. outb(2, state->card->iobase + c->port + OFF_CR); /* reset DMA machine */
  1822. outl(virt_to_bus(&c->sg[0]),
  1823.      state->card->iobase + c->port + OFF_BDBAR);
  1824. outb(0, state->card->iobase + c->port + OFF_CIV);
  1825. outb(0, state->card->iobase + c->port + OFF_LVI);
  1826. }
  1827. spin_unlock_irqrestore(&state->card->lock, flags);
  1828. synchronize_irq();
  1829. dmabuf->ready = 0;
  1830. dmabuf->swptr = dmabuf->hwptr = 0;
  1831. dmabuf->count = dmabuf->total_bytes = 0;
  1832. return 0;
  1833. case SNDCTL_DSP_SYNC:
  1834. #ifdef DEBUG
  1835. printk("SNDCTL_DSP_SYNCn");
  1836. #endif
  1837. if (codec_independent_spdif_locked > 0) {
  1838. if (dmabuf->enable != CODEC_SPDIFOUT_RUNNING
  1839.     || file->f_flags & O_NONBLOCK)
  1840. return 0;
  1841. if ((val = drain_spdifout(state, 1)))
  1842. return val;
  1843. } else {
  1844. if (controller_independent_spdif_locked > 0) {
  1845. if (dmabuf->enable !=
  1846.     CONTROLLER_SPDIFOUT_RUNNING
  1847.     || file->f_flags & O_NONBLOCK)
  1848. return 0;
  1849. if ((val = drain_spdifout(state, 1)))
  1850. return val;
  1851. } else {
  1852. if (dmabuf->enable != DAC_RUNNING
  1853.     || file->f_flags & O_NONBLOCK)
  1854. return 0;
  1855. if ((val = drain_dac(state, 1)))
  1856. return val;
  1857. }
  1858. }
  1859. dmabuf->total_bytes = 0;
  1860. return 0;
  1861. case SNDCTL_DSP_SPEED: /* set smaple rate */
  1862. #ifdef DEBUG
  1863. printk("SNDCTL_DSP_SPEEDn");
  1864. #endif
  1865. if (get_user(val, (int *) arg))
  1866. return -EFAULT;
  1867. if (val >= 0) {
  1868. if (file->f_mode & FMODE_WRITE) {
  1869. if ((state->card->ac97_status & SPDIF_ON)) { /* S/PDIF Enabled */
  1870. /* RELTEK ALC650 only support 48000, need to check that */
  1871. if (ali_valid_spdif_rate(codec, val)) {
  1872. if (codec_independent_spdif_locked > 0) {
  1873. ali_set_spdif_output(state, -1, 0);
  1874. stop_spdifout(state);
  1875. dmabuf->ready = 0;
  1876. /* I add test codec independent spdif out */
  1877. spin_lock_irqsave(&state->card->lock, flags);
  1878. ali_set_codecspdifout_rate(state, val); // I modified
  1879. spin_unlock_irqrestore(&state->card->lock, flags);
  1880. /* Set S/PDIF transmitter rate. */
  1881. i_scr = inl(state->card->iobase + ALI_SCR);
  1882. if ((i_scr & 0x00300000) == 0x00100000) {
  1883. ali_set_spdif_output(state, AC97_EA_SPSA_7_8, codec_independent_spdif_locked);
  1884. } else {
  1885. if ((i_scr&0x00300000)  == 0x00200000)
  1886. {
  1887. ali_set_spdif_output(state, AC97_EA_SPSA_6_9, codec_independent_spdif_locked);
  1888. } else {
  1889. if ((i_scr & 0x00300000) == 0x00300000) {
  1890. ali_set_spdif_output(state, AC97_EA_SPSA_10_11, codec_independent_spdif_locked);
  1891. } else {
  1892. ali_set_spdif_output(state, AC97_EA_SPSA_7_8, codec_independent_spdif_locked);
  1893. }
  1894. }
  1895. }
  1896. if (!(state->card->ac97_status & SPDIF_ON)) {
  1897. val = dmabuf->rate;
  1898. }
  1899. } else {
  1900. if (controller_independent_spdif_locked > 0) 
  1901. {
  1902. stop_spdifout(state);
  1903. dmabuf->ready = 0;
  1904. spin_lock_irqsave(&state->card->lock, flags);
  1905. ali_set_spdifout_rate(state, controller_independent_spdif_locked);
  1906. spin_unlock_irqrestore(&state->card->lock, flags);
  1907. } else {
  1908. /* Set DAC rate */
  1909. ali_set_spdif_output(state, -1, 0);
  1910. stop_dac(state);
  1911. dmabuf->ready = 0;
  1912. spin_lock_irqsave(&state->card->lock, flags);
  1913. ali_set_dac_rate(state, val);
  1914. spin_unlock_irqrestore(&state->card->lock, flags);
  1915. /* Set S/PDIF transmitter rate. */
  1916. ali_set_spdif_output(state, AC97_EA_SPSA_3_4, val);
  1917. if (!(state->card->ac97_status & SPDIF_ON))
  1918. {
  1919. val = dmabuf->rate;
  1920. }
  1921. }
  1922. }
  1923. } else { /* Not a valid rate for S/PDIF, ignore it */
  1924. val = dmabuf->rate;
  1925. }
  1926. } else {
  1927. stop_dac(state);
  1928. dmabuf->ready = 0;
  1929. spin_lock_irqsave(&state->card->lock, flags);
  1930. ali_set_dac_rate(state, val);
  1931. spin_unlock_irqrestore(&state->card->lock, flags);
  1932. }
  1933. }
  1934. if (file->f_mode & FMODE_READ) {
  1935. stop_adc(state);
  1936. dmabuf->ready = 0;
  1937. spin_lock_irqsave(&state->card->lock, flags);
  1938. ali_set_adc_rate(state, val);
  1939. spin_unlock_irqrestore(&state->card->lock, flags);
  1940. }
  1941. }
  1942. return put_user(dmabuf->rate, (int *) arg);
  1943. case SNDCTL_DSP_STEREO: /* set stereo or mono channel */
  1944. #ifdef DEBUG
  1945. printk("SNDCTL_DSP_STEREOn");
  1946. #endif
  1947. if (dmabuf->enable & DAC_RUNNING) {
  1948. stop_dac(state);
  1949. }
  1950. if (dmabuf->enable & ADC_RUNNING) {
  1951. stop_adc(state);
  1952. }
  1953. if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING) {
  1954. stop_spdifout(state);
  1955. }
  1956. if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING) {
  1957. stop_spdifout(state);
  1958. }
  1959. return put_user(1, (int *) arg);
  1960. case SNDCTL_DSP_GETBLKSIZE:
  1961. if (file->f_mode & FMODE_WRITE) {
  1962. if (codec_independent_spdif_locked > 0) {
  1963. if (!dmabuf->ready && (val = prog_dmabuf(state, 2)))
  1964. return val;
  1965. } else {
  1966. if (controller_independent_spdif_locked > 0) {
  1967. if (!dmabuf->ready && (val = prog_dmabuf(state, 3)))
  1968. return val;
  1969. } else {
  1970. if (!dmabuf->ready && (val = prog_dmabuf(state, 0)))
  1971. return val;
  1972. }
  1973. }
  1974. }
  1975. if (file->f_mode & FMODE_READ) {
  1976. if (!dmabuf->ready && (val = prog_dmabuf(state, 1)))
  1977. return val;
  1978. }
  1979. #ifdef DEBUG
  1980. printk("SNDCTL_DSP_GETBLKSIZE %dn", dmabuf->userfragsize);
  1981. #endif
  1982. return put_user(dmabuf->userfragsize, (int *) arg);
  1983. case SNDCTL_DSP_GETFMTS: /* Returns a mask of supported sample format */
  1984. #ifdef DEBUG
  1985. printk("SNDCTL_DSP_GETFMTSn");
  1986. #endif
  1987. return put_user(AFMT_S16_LE, (int *) arg);
  1988. case SNDCTL_DSP_SETFMT: /* Select sample format */
  1989. #ifdef DEBUG
  1990. printk("SNDCTL_DSP_SETFMTn");
  1991. #endif
  1992. return put_user(AFMT_S16_LE, (int *) arg);
  1993. case SNDCTL_DSP_CHANNELS: // add support 4,6 channel 
  1994. #ifdef DEBUG
  1995. printk("SNDCTL_DSP_CHANNELSn");
  1996. #endif
  1997. if (get_user(val, (int *) arg))
  1998. return -EFAULT;
  1999. if (val > 0) {
  2000. if (dmabuf->enable & DAC_RUNNING) {
  2001. stop_dac(state);
  2002. }
  2003. if (dmabuf->enable & CODEC_SPDIFOUT_RUNNING) {
  2004. stop_spdifout(state);
  2005. }
  2006. if (dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING) {
  2007. stop_spdifout(state);
  2008. }
  2009. if (dmabuf->enable & ADC_RUNNING) {
  2010. stop_adc(state);
  2011. }
  2012. } else {
  2013. return put_user(state->card->channels, (int *) arg);
  2014. }
  2015. i_scr = inl(state->card->iobase + ALI_SCR);
  2016. /* Current # of channels enabled */
  2017. if (i_scr & 0x00000100)
  2018. ret = 4;
  2019. else if (i_scr & 0x00000200)
  2020. ret = 6;
  2021. else
  2022. ret = 2;
  2023. switch (val) {
  2024. case 2: /* 2 channels is always supported */
  2025. if (codec_independent_spdif_locked > 0) {
  2026. outl(((i_scr & 0xfffffcff) | 0x00100000), (state->card->iobase + ALI_SCR));
  2027. } else
  2028. outl((i_scr & 0xfffffcff), (state->card->iobase + ALI_SCR));
  2029. /* Do we need to change mixer settings????  */
  2030. break;
  2031. case 4: /* Supported on some chipsets, better check first */
  2032. if (codec_independent_spdif_locked > 0) {
  2033. outl(((i_scr & 0xfffffcff) | 0x00000100 | 0x00200000), (state->card->iobase + ALI_SCR));
  2034. } else
  2035. outl(((i_scr & 0xfffffcff) | 0x00000100), (state->card->iobase + ALI_SCR));
  2036. break;
  2037. case 6: /* Supported on some chipsets, better check first */
  2038. if (codec_independent_spdif_locked > 0) {
  2039. outl(((i_scr & 0xfffffcff) | 0x00000200 | 0x00008000 | 0x00300000), (state->card->iobase + ALI_SCR));
  2040. } else
  2041. outl(((i_scr & 0xfffffcff) | 0x00000200 | 0x00008000), (state->card->iobase + ALI_SCR));
  2042. break;
  2043. default: /* nothing else is ever supported by the chipset */
  2044. val = ret;
  2045. break;
  2046. }
  2047. return put_user(val, (int *) arg);
  2048. case SNDCTL_DSP_POST: /* the user has sent all data and is notifying us */
  2049. /* we update the swptr to the end of the last sg segment then return */
  2050. #ifdef DEBUG
  2051. printk("SNDCTL_DSP_POSTn");
  2052. #endif
  2053. if (codec_independent_spdif_locked > 0) {
  2054. if (!dmabuf->ready || (dmabuf->enable != CODEC_SPDIFOUT_RUNNING))
  2055. return 0;
  2056. } else {
  2057. if (controller_independent_spdif_locked > 0) {
  2058. if (!dmabuf->ready || (dmabuf->enable != CONTROLLER_SPDIFOUT_RUNNING))
  2059. return 0;
  2060. } else {
  2061. if (!dmabuf->ready || (dmabuf->enable != DAC_RUNNING))
  2062. return 0;
  2063. }
  2064. }
  2065. if ((dmabuf->swptr % dmabuf->fragsize) != 0) {
  2066. val = dmabuf->fragsize - (dmabuf->swptr % dmabuf->fragsize);
  2067. dmabuf->swptr += val;
  2068. dmabuf->count += val;
  2069. }
  2070. return 0;
  2071. case SNDCTL_DSP_SUBDIVIDE:
  2072. if (dmabuf->subdivision)
  2073. return -EINVAL;
  2074. if (get_user(val, (int *) arg))
  2075. return -EFAULT;
  2076. if (val != 1 && val != 2 && val != 4)
  2077. return -EINVAL;
  2078. #ifdef DEBUG
  2079. printk("SNDCTL_DSP_SUBDIVIDE %dn", val);
  2080. #endif
  2081. dmabuf->subdivision = val;
  2082. dmabuf->ready = 0;
  2083. return 0;
  2084. case SNDCTL_DSP_SETFRAGMENT:
  2085. if (get_user(val, (int *) arg))
  2086. return -EFAULT;
  2087. dmabuf->ossfragsize = 1 << (val & 0xffff);
  2088. dmabuf->ossmaxfrags = (val >> 16) & 0xffff;
  2089. if (!dmabuf->ossfragsize || !dmabuf->ossmaxfrags)
  2090. return -EINVAL;
  2091. /*
  2092.  * Bound the frag size into our allowed range of 256 - 4096
  2093.  */
  2094. if (dmabuf->ossfragsize < 256)
  2095. dmabuf->ossfragsize = 256;
  2096. else if (dmabuf->ossfragsize > 4096)
  2097. dmabuf->ossfragsize = 4096;
  2098. /*
  2099.  * The numfrags could be something reasonable, or it could
  2100.  * be 0xffff meaning "Give me as much as possible".  So,
  2101.  * we check the numfrags * fragsize doesn't exceed our
  2102.  * 64k buffer limit, nor is it less than our 8k minimum.
  2103.  * If it fails either one of these checks, then adjust the
  2104.  * number of fragments, not the size of them.  It's OK if
  2105.  * our number of fragments doesn't equal 32 or anything
  2106.  * like our hardware based number now since we are using
  2107.  * a different frag count for the hardware.  Before we get
  2108.  * into this though, bound the maxfrags to avoid overflow
  2109.  * issues.  A reasonable bound would be 64k / 256 since our
  2110.  * maximum buffer size is 64k and our minimum frag size is
  2111.  * 256.  On the other end, our minimum buffer size is 8k and
  2112.  * our maximum frag size is 4k, so the lower bound should
  2113.  * be 2.
  2114.  */
  2115. if (dmabuf->ossmaxfrags > 256)
  2116. dmabuf->ossmaxfrags = 256;
  2117. else if (dmabuf->ossmaxfrags < 2)
  2118. dmabuf->ossmaxfrags = 2;
  2119. val = dmabuf->ossfragsize * dmabuf->ossmaxfrags;
  2120. while (val < 8192) {
  2121. val <<= 1;
  2122. dmabuf->ossmaxfrags <<= 1;
  2123. }
  2124. while (val > 65536) {
  2125. val >>= 1;
  2126. dmabuf->ossmaxfrags >>= 1;
  2127. }
  2128. dmabuf->ready = 0;
  2129. #ifdef DEBUG
  2130. printk("SNDCTL_DSP_SETFRAGMENT 0x%x, %d, %dn", val,
  2131.        dmabuf->ossfragsize, dmabuf->ossmaxfrags);
  2132. #endif
  2133. return 0;
  2134. case SNDCTL_DSP_GETOSPACE:
  2135. if (!(file->f_mode & FMODE_WRITE))
  2136. return -EINVAL;
  2137. if (codec_independent_spdif_locked > 0) {
  2138. if (!dmabuf->ready && (val = prog_dmabuf(state, 2)) != 0)
  2139. return val;
  2140. } else {
  2141. if (controller_independent_spdif_locked > 0) {
  2142. if (!dmabuf->ready && (val = prog_dmabuf(state, 3)) != 0)
  2143. return val;
  2144. } else {
  2145. if (!dmabuf->ready && (val = prog_dmabuf(state, 0)) != 0)
  2146. return val;
  2147. }
  2148. }
  2149. spin_lock_irqsave(&state->card->lock, flags);
  2150. ali_update_ptr(state);
  2151. abinfo.fragsize = dmabuf->userfragsize;
  2152. abinfo.fragstotal = dmabuf->userfrags;
  2153. if (dmabuf->mapped)
  2154. abinfo.bytes = dmabuf->dmasize;
  2155. else
  2156. abinfo.bytes = ali_get_free_write_space(state);
  2157. abinfo.fragments = abinfo.bytes / dmabuf->userfragsize;
  2158. spin_unlock_irqrestore(&state->card->lock, flags);
  2159. #if defined(DEBUG) || defined(DEBUG_MMAP)
  2160. printk("SNDCTL_DSP_GETOSPACE %d, %d, %d, %dn",
  2161.        abinfo.bytes, abinfo.fragsize, abinfo.fragments,
  2162.        abinfo.fragstotal);
  2163. #endif
  2164. return copy_to_user((void *) arg, &abinfo,
  2165.     sizeof(abinfo)) ? -EFAULT : 0;
  2166. case SNDCTL_DSP_GETOPTR:
  2167. if (!(file->f_mode & FMODE_WRITE))
  2168. return -EINVAL;
  2169. if (codec_independent_spdif_locked > 0) {
  2170. if (!dmabuf->ready && (val = prog_dmabuf(state, 2)) != 0)
  2171. return val;
  2172. } else {
  2173. if (controller_independent_spdif_locked > 0) {
  2174. if (!dmabuf->ready && (val = prog_dmabuf(state, 3)) != 0)
  2175. return val;
  2176. } else {
  2177. if (!dmabuf->ready && (val = prog_dmabuf(state, 0)) != 0)
  2178. return val;
  2179. }
  2180. }
  2181. spin_lock_irqsave(&state->card->lock, flags);
  2182. val = ali_get_free_write_space(state);
  2183. cinfo.bytes = dmabuf->total_bytes;
  2184. cinfo.ptr = dmabuf->hwptr;
  2185. cinfo.blocks = val / dmabuf->userfragsize;
  2186. if (codec_independent_spdif_locked > 0) {
  2187. if (dmabuf->mapped && (dmabuf->trigger & SPDIF_ENABLE_OUTPUT)) {
  2188. dmabuf->count += val;
  2189. dmabuf->swptr = (dmabuf->swptr + val) % dmabuf->dmasize;
  2190. __ali_update_lvi(state, 2);
  2191. }
  2192. } else {
  2193. if (controller_independent_spdif_locked > 0) {
  2194. if (dmabuf->mapped && (dmabuf->trigger & SPDIF_ENABLE_OUTPUT)) {
  2195. dmabuf->count += val;
  2196. dmabuf->swptr = (dmabuf->swptr + val) % dmabuf->dmasize;
  2197. __ali_update_lvi(state, 3);
  2198. }
  2199. } else {
  2200. if (dmabuf->mapped && (dmabuf->trigger & PCM_ENABLE_OUTPUT)) {
  2201. dmabuf->count += val;
  2202. dmabuf->swptr = (dmabuf->swptr + val) % dmabuf->dmasize;
  2203. __ali_update_lvi(state, 0);
  2204. }
  2205. }
  2206. }
  2207. spin_unlock_irqrestore(&state->card->lock, flags);
  2208. #if defined(DEBUG) || defined(DEBUG_MMAP)
  2209. printk("SNDCTL_DSP_GETOPTR %d, %d, %d, %dn", cinfo.bytes,
  2210.        cinfo.blocks, cinfo.ptr, dmabuf->count);
  2211. #endif
  2212. return copy_to_user((void *) arg, &cinfo, sizeof(cinfo));
  2213. case SNDCTL_DSP_GETISPACE:
  2214. if (!(file->f_mode & FMODE_READ))
  2215. return -EINVAL;
  2216. if (!dmabuf->ready && (val = prog_dmabuf(state, 1)) != 0)
  2217. return val;
  2218. spin_lock_irqsave(&state->card->lock, flags);
  2219. abinfo.bytes = ali_get_available_read_data(state);
  2220. abinfo.fragsize = dmabuf->userfragsize;
  2221. abinfo.fragstotal = dmabuf->userfrags;
  2222. abinfo.fragments = abinfo.bytes / dmabuf->userfragsize;
  2223. spin_unlock_irqrestore(&state->card->lock, flags);
  2224. #if defined(DEBUG) || defined(DEBUG_MMAP)
  2225. printk("SNDCTL_DSP_GETISPACE %d, %d, %d, %dn",
  2226.        abinfo.bytes, abinfo.fragsize, abinfo.fragments,
  2227.        abinfo.fragstotal);
  2228. #endif
  2229. return copy_to_user((void *) arg, &abinfo,
  2230.     sizeof(abinfo)) ? -EFAULT : 0;
  2231. case SNDCTL_DSP_GETIPTR:
  2232. if (!(file->f_mode & FMODE_READ))
  2233. return -EINVAL;
  2234. if (!dmabuf->ready && (val = prog_dmabuf(state, 0)) != 0)
  2235. return val;
  2236. spin_lock_irqsave(&state->card->lock, flags);
  2237. val = ali_get_available_read_data(state);
  2238. cinfo.bytes = dmabuf->total_bytes;
  2239. cinfo.blocks = val / dmabuf->userfragsize;
  2240. cinfo.ptr = dmabuf->hwptr;
  2241. if (dmabuf->mapped && (dmabuf->trigger & PCM_ENABLE_INPUT)) {
  2242. dmabuf->count -= val;
  2243. dmabuf->swptr = (dmabuf->swptr + val) % dmabuf->dmasize;
  2244. __ali_update_lvi(state, 1);
  2245. }
  2246. spin_unlock_irqrestore(&state->card->lock, flags);
  2247. #if defined(DEBUG) || defined(DEBUG_MMAP)
  2248. printk("SNDCTL_DSP_GETIPTR %d, %d, %d, %dn", cinfo.bytes,
  2249.        cinfo.blocks, cinfo.ptr, dmabuf->count);
  2250. #endif
  2251. return copy_to_user((void *) arg, &cinfo, sizeof(cinfo));
  2252. case SNDCTL_DSP_NONBLOCK:
  2253. #ifdef DEBUG
  2254. printk("SNDCTL_DSP_NONBLOCKn");
  2255. #endif
  2256. file->f_flags |= O_NONBLOCK;
  2257. return 0;
  2258. case SNDCTL_DSP_GETCAPS:
  2259. #ifdef DEBUG
  2260. printk("SNDCTL_DSP_GETCAPSn");
  2261. #endif
  2262. return put_user(DSP_CAP_REALTIME | DSP_CAP_TRIGGER |
  2263. DSP_CAP_MMAP | DSP_CAP_BIND, (int *) arg);
  2264. case SNDCTL_DSP_GETTRIGGER:
  2265. val = 0;
  2266. #ifdef DEBUG
  2267. printk("SNDCTL_DSP_GETTRIGGER 0x%xn", dmabuf->trigger);
  2268. #endif
  2269. return put_user(dmabuf->trigger, (int *) arg);
  2270. case SNDCTL_DSP_SETTRIGGER:
  2271. if (get_user(val, (int *) arg))
  2272. return -EFAULT;
  2273. #if defined(DEBUG) || defined(DEBUG_MMAP)
  2274. printk("SNDCTL_DSP_SETTRIGGER 0x%xn", val);
  2275. #endif
  2276. if (!(val & PCM_ENABLE_INPUT) && dmabuf->enable == ADC_RUNNING) {
  2277. stop_adc(state);
  2278. }
  2279. if (!(val & PCM_ENABLE_OUTPUT) && dmabuf->enable == DAC_RUNNING) {
  2280. stop_dac(state);
  2281. }
  2282. if (!(val & SPDIF_ENABLE_OUTPUT) && dmabuf->enable == CODEC_SPDIFOUT_RUNNING) {
  2283. stop_spdifout(state);
  2284. }
  2285. if (!(val & SPDIF_ENABLE_OUTPUT) && dmabuf->enable == CONTROLLER_SPDIFOUT_RUNNING) {
  2286. stop_spdifout(state);
  2287. }
  2288. dmabuf->trigger = val;
  2289. if (val & PCM_ENABLE_OUTPUT && !(dmabuf->enable & DAC_RUNNING)) {
  2290. if (!dmabuf->write_channel) {
  2291. dmabuf->ready = 0;
  2292. dmabuf->write_channel = state->card->alloc_pcm_channel(state->card);
  2293. if (!dmabuf->write_channel)
  2294. return -EBUSY;
  2295. }
  2296. if (!dmabuf->ready && (ret = prog_dmabuf(state, 0)))
  2297. return ret;
  2298. if (dmabuf->mapped) {
  2299. spin_lock_irqsave(&state->card->lock, flags);
  2300. ali_update_ptr(state);
  2301. dmabuf->count = 0;
  2302. dmabuf->swptr = dmabuf->hwptr;
  2303. dmabuf->count = ali_get_free_write_space(state);
  2304. dmabuf->swptr = (dmabuf->swptr + dmabuf->count) % dmabuf->dmasize;
  2305. __ali_update_lvi(state, 0);
  2306. spin_unlock_irqrestore(&state->card->lock,
  2307.        flags);
  2308. } else
  2309. start_dac(state);
  2310. }
  2311. if (val & SPDIF_ENABLE_OUTPUT && !(dmabuf->enable & CODEC_SPDIFOUT_RUNNING)) {
  2312. if (!dmabuf->codec_spdifout_channel) {
  2313. dmabuf->ready = 0;
  2314. dmabuf->codec_spdifout_channel = state->card->alloc_codec_spdifout_channel(state->card);
  2315. if (!dmabuf->codec_spdifout_channel)
  2316. return -EBUSY;
  2317. }
  2318. if (!dmabuf->ready && (ret = prog_dmabuf(state, 2)))
  2319. return ret;
  2320. if (dmabuf->mapped) {
  2321. spin_lock_irqsave(&state->card->lock, flags);
  2322. ali_update_ptr(state);
  2323. dmabuf->count = 0;
  2324. dmabuf->swptr = dmabuf->hwptr;
  2325. dmabuf->count = ali_get_free_write_space(state);
  2326. dmabuf->swptr = (dmabuf->swptr + dmabuf->count) % dmabuf->dmasize;
  2327. __ali_update_lvi(state, 2);
  2328. spin_unlock_irqrestore(&state->card->lock,
  2329.        flags);
  2330. } else
  2331. start_spdifout(state);
  2332. }
  2333. if (val & SPDIF_ENABLE_OUTPUT && !(dmabuf->enable & CONTROLLER_SPDIFOUT_RUNNING)) {
  2334. if (!dmabuf->controller_spdifout_channel) {
  2335. dmabuf->ready = 0;
  2336. dmabuf->controller_spdifout_channel = state->card->alloc_controller_spdifout_channel(state->card);
  2337. if (!dmabuf->controller_spdifout_channel)
  2338. return -EBUSY;
  2339. }
  2340. if (!dmabuf->ready && (ret = prog_dmabuf(state, 3)))
  2341. return ret;
  2342. if (dmabuf->mapped) {
  2343. spin_lock_irqsave(&state->card->lock, flags);
  2344. ali_update_ptr(state);
  2345. dmabuf->count = 0;
  2346. dmabuf->swptr = dmabuf->hwptr;
  2347. dmabuf->count = ali_get_free_write_space(state);
  2348. dmabuf->swptr = (dmabuf->swptr + dmabuf->count) % dmabuf->dmasize;
  2349. __ali_update_lvi(state, 3);
  2350. spin_unlock_irqrestore(&state->card->lock, flags);
  2351. } else
  2352. start_spdifout(state);
  2353. }
  2354. if (val & PCM_ENABLE_INPUT && !(dmabuf->enable & ADC_RUNNING)) {
  2355. if (!dmabuf->read_channel) {
  2356. dmabuf->ready = 0;
  2357. dmabuf->read_channel = state->card->alloc_rec_pcm_channel(state->card);
  2358. if (!dmabuf->read_channel)
  2359. return -EBUSY;
  2360. }
  2361. if (!dmabuf->ready && (ret = prog_dmabuf(state, 1)))
  2362. return ret;
  2363. if (dmabuf->mapped) {
  2364. spin_lock_irqsave(&state->card->lock,
  2365.   flags);
  2366. ali_update_ptr(state);
  2367. dmabuf->swptr = dmabuf->hwptr;
  2368. dmabuf->count = 0;
  2369. spin_unlock_irqrestore(&state->card->lock, flags);
  2370. }
  2371. ali_update_lvi(state, 1);
  2372. start_adc(state);
  2373. }
  2374. return 0;
  2375. case SNDCTL_DSP_SETDUPLEX:
  2376. #ifdef DEBUG
  2377. printk("SNDCTL_DSP_SETDUPLEXn");
  2378. #endif
  2379. return -EINVAL;
  2380. case SNDCTL_DSP_GETODELAY:
  2381. if (!(file->f_mode & FMODE_WRITE))
  2382. return -EINVAL;
  2383. spin_lock_irqsave(&state->card->lock, flags);
  2384. ali_update_ptr(state);
  2385. val = dmabuf->count;
  2386. spin_unlock_irqrestore(&state->card->lock, flags);
  2387. #ifdef DEBUG
  2388. printk("SNDCTL_DSP_GETODELAY %dn", dmabuf->count);
  2389. #endif
  2390. return put_user(val, (int *) arg);
  2391. case SOUND_PCM_READ_RATE:
  2392. #ifdef DEBUG
  2393. printk("SOUND_PCM_READ_RATE %dn", dmabuf->rate);
  2394. #endif
  2395. return put_user(dmabuf->rate, (int *) arg);
  2396. case SOUND_PCM_READ_CHANNELS:
  2397. #ifdef DEBUG
  2398. printk("SOUND_PCM_READ_CHANNELSn");
  2399. #endif
  2400. return put_user(2, (int *) arg);
  2401. case SOUND_PCM_READ_BITS:
  2402. #ifdef DEBUG
  2403. printk("SOUND_PCM_READ_BITSn");
  2404. #endif
  2405. return put_user(AFMT_S16_LE, (int *) arg);
  2406. case SNDCTL_DSP_SETSPDIF: /* Set S/PDIF Control register */
  2407. #ifdef DEBUG
  2408. printk("SNDCTL_DSP_SETSPDIFn");
  2409. #endif
  2410. if (get_user(val, (int *) arg))
  2411. return -EFAULT;
  2412. /* Check to make sure the codec supports S/PDIF transmitter */
  2413. if ((state->card->ac97_features & 4)) {
  2414. /* mask out the transmitter speed bits so the user can't set them */
  2415. val &= ~0x3000;
  2416. /* Add the current transmitter speed bits to the passed value */
  2417. ret = ali_ac97_get(codec, AC97_SPDIF_CONTROL);
  2418. val |= (ret & 0x3000);
  2419. ali_ac97_set(codec, AC97_SPDIF_CONTROL, val);
  2420. if (ali_ac97_get(codec, AC97_SPDIF_CONTROL) != val) {
  2421. printk(KERN_ERR "ali_audio: Unable to set S/PDIF configuration to 0x%04x.n", val);
  2422. return -EFAULT;
  2423. }
  2424. }
  2425. #ifdef DEBUG
  2426. else
  2427. printk(KERN_WARNING "ali_audio: S/PDIF transmitter not avalible.n");
  2428. #endif
  2429. return put_user(val, (int *) arg);
  2430. case SNDCTL_DSP_GETSPDIF: /* Get S/PDIF Control register */
  2431. #ifdef DEBUG
  2432. printk("SNDCTL_DSP_GETSPDIFn");
  2433. #endif
  2434. if (get_user(val, (int *) arg))
  2435. return -EFAULT;
  2436. /* Check to make sure the codec supports S/PDIF transmitter */
  2437. if (!(state->card->ac97_features & 4)) {
  2438. #ifdef DEBUG
  2439. printk(KERN_WARNING "ali_audio: S/PDIF transmitter not avalible.n");
  2440. #endif
  2441. val = 0;
  2442. } else {
  2443. val = ali_ac97_get(codec, AC97_SPDIF_CONTROL);
  2444. }
  2445. return put_user(val, (int *) arg);
  2446. //end add support spdif out
  2447. //add support 4,6 channel
  2448. case SNDCTL_DSP_GETCHANNELMASK:
  2449. #ifdef DEBUG
  2450. printk("SNDCTL_DSP_GETCHANNELMASKn");
  2451. #endif
  2452. if (get_user(val, (int *) arg))
  2453. return -EFAULT;
  2454. /* Based on AC'97 DAC support, not ICH hardware */
  2455. val = DSP_BIND_FRONT;
  2456. if (state->card->ac97_features & 0x0004)
  2457. val |= DSP_BIND_SPDIF;
  2458. if (state->card->ac97_features & 0x0080)
  2459. val |= DSP_BIND_SURR;
  2460. if (state->card->ac97_features & 0x0140)
  2461. val |= DSP_BIND_CENTER_LFE;
  2462. return put_user(val, (int *) arg);
  2463. case SNDCTL_DSP_BIND_CHANNEL:
  2464. #ifdef DEBUG
  2465. printk("SNDCTL_DSP_BIND_CHANNELn");
  2466. #endif
  2467. if (get_user(val, (int *) arg))
  2468. return -EFAULT;
  2469. if (val == DSP_BIND_QUERY) {
  2470. val = DSP_BIND_FRONT; /* Always report this as being enabled */
  2471. if (state->card->ac97_status & SPDIF_ON)
  2472. val |= DSP_BIND_SPDIF;
  2473. else {
  2474. if (state->card->ac97_status & SURR_ON)
  2475. val |= DSP_BIND_SURR;
  2476. if (state->card->
  2477.     ac97_status & CENTER_LFE_ON)
  2478. val |= DSP_BIND_CENTER_LFE;
  2479. }
  2480. } else { /* Not a query, set it */
  2481. if (!(file->f_mode & FMODE_WRITE))
  2482. return -EINVAL;
  2483. if (dmabuf->enable == DAC_RUNNING) {
  2484. stop_dac(state);
  2485. }
  2486. if (val & DSP_BIND_SPDIF) { /* Turn on SPDIF */
  2487. /*  Ok, this should probably define what slots
  2488.  *  to use. For now, we'll only set it to the
  2489.  *  defaults:
  2490.  * 
  2491.  *   non multichannel codec maps to slots 3&4
  2492.  *   2 channel codec maps to slots 7&8
  2493.  *   4 channel codec maps to slots 6&9
  2494.  *   6 channel codec maps to slots 10&11
  2495.  *
  2496.  *  there should be some way for the app to
  2497.  *  select the slot assignment.
  2498.  */
  2499. i_scr = inl(state->card->iobase + ALI_SCR);
  2500. if (codec_independent_spdif_locked > 0) {
  2501. if ((i_scr & 0x00300000) == 0x00100000) {
  2502. ali_set_spdif_output(state, AC97_EA_SPSA_7_8, codec_independent_spdif_locked);
  2503. } else {
  2504. if ((i_scr & 0x00300000) == 0x00200000) {
  2505. ali_set_spdif_output(state, AC97_EA_SPSA_6_9, codec_independent_spdif_locked);
  2506. } else {
  2507. if ((i_scr & 0x00300000) == 0x00300000) {
  2508. ali_set_spdif_output(state, AC97_EA_SPSA_10_11, codec_independent_spdif_locked);
  2509. }
  2510. }
  2511. }
  2512. } else { /* codec spdif out (pcm out share ) */
  2513. ali_set_spdif_output(state, AC97_EA_SPSA_3_4, dmabuf->rate); //I do not modify
  2514. }
  2515. if (!(state->card->ac97_status & SPDIF_ON))
  2516. val &= ~DSP_BIND_SPDIF;
  2517. } else {
  2518. int mask;
  2519. int channels;
  2520. /* Turn off S/PDIF if it was on */
  2521. if (state->card->ac97_status & SPDIF_ON)
  2522. ali_set_spdif_output(state, -1, 0);
  2523. mask =
  2524.     val & (DSP_BIND_FRONT | DSP_BIND_SURR |
  2525.    DSP_BIND_CENTER_LFE);
  2526. switch (mask) {
  2527. case DSP_BIND_FRONT:
  2528. channels = 2;
  2529. break;
  2530. case DSP_BIND_FRONT | DSP_BIND_SURR:
  2531. channels = 4;
  2532. break;
  2533. case DSP_BIND_FRONT | DSP_BIND_SURR | DSP_BIND_CENTER_LFE:
  2534. channels = 6;
  2535. break;
  2536. default:
  2537. val = DSP_BIND_FRONT;
  2538. channels = 2;
  2539. break;
  2540. }
  2541. ali_set_dac_channels(state, channels);
  2542. /* check that they really got turned on */
  2543. if (!state->card->ac97_status & SURR_ON)
  2544. val &= ~DSP_BIND_SURR;
  2545. if (!state->card->
  2546.     ac97_status & CENTER_LFE_ON)
  2547. val &= ~DSP_BIND_CENTER_LFE;
  2548. }
  2549. }
  2550. return put_user(val, (int *) arg);
  2551. case SNDCTL_DSP_MAPINBUF:
  2552. case SNDCTL_DSP_MAPOUTBUF:
  2553. case SNDCTL_DSP_SETSYNCRO:
  2554. case SOUND_PCM_WRITE_FILTER:
  2555. case SOUND_PCM_READ_FILTER:
  2556. return -EINVAL;
  2557. }
  2558. return -EINVAL;
  2559. }
  2560. static int ali_open(struct inode *inode, struct file *file)
  2561. {
  2562. int i = 0;
  2563. struct ali_card *card = devs;
  2564. struct ali_state *state = NULL;
  2565. struct dmabuf *dmabuf = NULL;
  2566. unsigned int i_scr;
  2567. /* find an available virtual channel (instance of /dev/dsp) */
  2568. while (card != NULL) {
  2569. /*
  2570.  * If we are initializing and then fail, card could go
  2571.  * away unuexpectedly while we are in the for() loop.
  2572.  * So, check for card on each iteration before we check
  2573.  * for card->initializing to avoid a possible oops.
  2574.  * This usually only matters for times when the driver is
  2575.  * autoloaded by kmod.
  2576.  */
  2577. for (i = 0; i < 50 && card && card->initializing; i++) {
  2578. set_current_state(TASK_UNINTERRUPTIBLE);
  2579. schedule_timeout(HZ / 20);
  2580. }
  2581. for (i = 0; i < NR_HW_CH && card && !card->initializing; i++) {
  2582. if (card->states[i] == NULL) {
  2583. state = card->states[i] = (struct ali_state *) kmalloc(sizeof(struct ali_state), GFP_KERNEL);
  2584. if (state == NULL)
  2585. return -ENOMEM;
  2586. memset(state, 0, sizeof(struct ali_state));
  2587. dmabuf = &state->dmabuf;
  2588. goto found_virt;
  2589. }
  2590. }
  2591. card = card->next;
  2592. }
  2593. /* no more virtual channel avaiable */
  2594. if (!state)
  2595. return -ENODEV;
  2596. found_virt:
  2597. /* initialize the virtual channel */
  2598. state->virt = i;
  2599. state->card = card;
  2600. state->magic = ALI5455_STATE_MAGIC;
  2601. init_waitqueue_head(&dmabuf->wait);
  2602. init_MUTEX(&state->open_sem);
  2603. file->private_data = state;
  2604. dmabuf->trigger = 0;
  2605. /* allocate hardware channels */
  2606. if (file->f_mode & FMODE_READ) {
  2607. if ((dmabuf->read_channel =
  2608.      card->alloc_rec_pcm_channel(card)) == NULL) {
  2609. kfree(card->states[i]);
  2610. card->states[i] = NULL;
  2611. return -EBUSY;
  2612. }
  2613. dmabuf->trigger |= PCM_ENABLE_INPUT;
  2614. ali_set_adc_rate(state, 8000);
  2615. }
  2616. if (file->f_mode & FMODE_WRITE) {
  2617. if (codec_independent_spdif_locked > 0) {
  2618. if ((dmabuf->codec_spdifout_channel = card->alloc_codec_spdifout_channel(card)) == NULL) {
  2619. kfree(card->states[i]);
  2620. card->states[i] = NULL;
  2621. return -EBUSY;
  2622. }
  2623. dmabuf->trigger |= SPDIF_ENABLE_OUTPUT;
  2624. ali_set_codecspdifout_rate(state, codec_independent_spdif_locked); //It must add
  2625. i_scr = inl(state->card->iobase + ALI_SCR);
  2626. if ((i_scr & 0x00300000) == 0x00100000) {
  2627. ali_set_spdif_output(state, AC97_EA_SPSA_7_8, codec_independent_spdif_locked);
  2628. } else {
  2629. if ((i_scr & 0x00300000) == 0x00200000) {
  2630. ali_set_spdif_output(state, AC97_EA_SPSA_6_9, codec_independent_spdif_locked);
  2631. } else {
  2632. if ((i_scr & 0x00300000) == 0x00300000) {
  2633. ali_set_spdif_output(state, AC97_EA_SPSA_10_11, codec_independent_spdif_locked);
  2634. } else {
  2635. ali_set_spdif_output(state, AC97_EA_SPSA_7_8, codec_independent_spdif_locked);
  2636. }
  2637. }
  2638. }
  2639. } else {
  2640. if (controller_independent_spdif_locked > 0) {
  2641. if ((dmabuf->controller_spdifout_channel = card->alloc_controller_spdifout_channel(card)) == NULL) {
  2642. kfree(card->states[i]);
  2643. card->states[i] = NULL;
  2644. return -EBUSY;
  2645. }
  2646. dmabuf->trigger |= SPDIF_ENABLE_OUTPUT;
  2647. ali_set_spdifout_rate(state, controller_independent_spdif_locked);
  2648. } else {
  2649. if ((dmabuf->write_channel = card->alloc_pcm_channel(card)) == NULL) {
  2650. kfree(card->states[i]);
  2651. card->states[i] = NULL;
  2652. return -EBUSY;
  2653. }
  2654. /* Initialize to 8kHz?  What if we don't support 8kHz? */
  2655. /*  Let's change this to check for S/PDIF stuff */
  2656. dmabuf->trigger |= PCM_ENABLE_OUTPUT;
  2657. if (codec_pcmout_share_spdif_locked) {
  2658. ali_set_dac_rate(state, codec_pcmout_share_spdif_locked);
  2659. ali_set_spdif_output(state, AC97_EA_SPSA_3_4, codec_pcmout_share_spdif_locked);
  2660. } else {
  2661. ali_set_dac_rate(state, 8000);
  2662. }
  2663. }
  2664. }
  2665. }
  2666. /* set default sample format. According to OSS Programmer's Guide  /dev/dsp
  2667.    should be default to unsigned 8-bits, mono, with sample rate 8kHz and
  2668.    /dev/dspW will accept 16-bits sample, but we don't support those so we
  2669.    set it immediately to stereo and 16bit, which is all we do support */
  2670. dmabuf->fmt |= ALI5455_FMT_16BIT | ALI5455_FMT_STEREO;
  2671. dmabuf->ossfragsize = 0;
  2672. dmabuf->ossmaxfrags = 0;
  2673. dmabuf->subdivision = 0;
  2674. state->open_mode |= file->f_mode & (FMODE_READ | FMODE_WRITE);
  2675. outl(0x00000000, card->iobase + ALI_INTERRUPTCR);
  2676. outl(0x00000000, card->iobase + ALI_INTERRUPTSR);
  2677. return 0;
  2678. }
  2679. static int ali_release(struct inode *inode, struct file *file)
  2680. {
  2681. struct ali_state *state = (struct ali_state *) file->private_data;
  2682. struct ali_card *card = state->card;
  2683. struct dmabuf *dmabuf = &state->dmabuf;
  2684. unsigned long flags;
  2685. lock_kernel();
  2686. /* stop DMA state machine and free DMA buffers/channels */
  2687. if (dmabuf->trigger & PCM_ENABLE_OUTPUT)
  2688. drain_dac(state, 0);
  2689. if (dmabuf->trigger & SPDIF_ENABLE_OUTPUT)
  2690. drain_spdifout(state, 0);
  2691. if (dmabuf->trigger & PCM_ENABLE_INPUT)
  2692. stop_adc(state);
  2693. spin_lock_irqsave(&card->lock, flags);
  2694. dealloc_dmabuf(state);
  2695. if (file->f_mode & FMODE_WRITE) {
  2696. if (codec_independent_spdif_locked > 0) {
  2697. state->card->free_pcm_channel(state->card, dmabuf->codec_spdifout_channel->num);
  2698. } else {
  2699. if (controller_independent_spdif_locked > 0)
  2700. state->card->free_pcm_channel(state->card,
  2701.       dmabuf->controller_spdifout_channel->num);
  2702. else state->card->free_pcm_channel(state->card,
  2703.       dmabuf->write_channel->num);
  2704. }
  2705. }
  2706. if (file->f_mode & FMODE_READ)
  2707. state->card->free_pcm_channel(state->card, dmabuf->read_channel->num);
  2708. state->card->states[state->virt] = NULL;
  2709. kfree(state);
  2710. spin_unlock_irqrestore(&card->lock, flags);
  2711. unlock_kernel();
  2712. return 0;
  2713. }
  2714. static /*const */ struct file_operations ali_audio_fops = {
  2715. owner:THIS_MODULE, 
  2716. llseek:no_llseek, 
  2717. read:ali_read,
  2718. write:ali_write, 
  2719. poll:ali_poll,
  2720. ioctl:ali_ioctl,
  2721. mmap:ali_mmap,
  2722. open:ali_open,
  2723. release:ali_release,
  2724. };
  2725. /* Read AC97 codec registers */
  2726. static u16 ali_ac97_get(struct ac97_codec *dev, u8 reg)
  2727. {
  2728. struct ali_card *card = dev->private_data;
  2729. int count1 = 100;
  2730. char val;
  2731. unsigned short int data, count, addr1, addr2;
  2732. while (count1-- && (inl(card->iobase + ALI_CAS) & 0x80000000))
  2733. udelay(1);
  2734. addr1 = reg;
  2735. reg |= 0x0080;
  2736. for (count = 0; count < 0x7f; count++) {
  2737. val = inb(card->iobase + ALI_CSPSR);
  2738. if (val & 0x08)
  2739. break;
  2740. }
  2741. if (count == 0x7f)
  2742. return -1;
  2743. outw(reg, (card->iobase + ALI_CPR) + 2);
  2744. for (count = 0; count < 0x7f; count++) {
  2745. val = inb(card->iobase + ALI_CSPSR);
  2746. if (val & 0x02) {
  2747. data = inw(card->iobase + ALI_SPR);
  2748. addr2 = inw((card->iobase + ALI_SPR) + 2);
  2749. break;
  2750. }
  2751. }
  2752. if (count == 0x7f)
  2753. return -1;
  2754. if (addr2 != addr1)
  2755. return -1;
  2756. return ((u16) data);
  2757. }
  2758. /* write ac97 codec register   */
  2759. static void ali_ac97_set(struct ac97_codec *dev, u8 reg, u16 data)
  2760. {
  2761. struct ali_card *card = dev->private_data;
  2762. int count1 = 100;
  2763. unsigned long flags;
  2764. char val;
  2765. unsigned short int count;
  2766. while (count1-- && (inl(card->iobase + ALI_CAS) & 0x80000000))
  2767. udelay(1);
  2768. for (count = 0; count < 0x7f; count++) {
  2769. val = inb(card->iobase + ALI_CSPSR);
  2770. if (val & 0x08)
  2771. break;
  2772. }
  2773. if (count == 0x7f) {
  2774. printk(KERN_WARNING "ali_ac96_set: AC97 codec register access timed out. n");
  2775. return;
  2776. }
  2777. outw(data, (card->iobase + ALI_CPR));
  2778. outb(reg, (card->iobase + ALI_CPR) + 2);
  2779. for (count = 0; count < 0x7f; count++) {
  2780. val = inb(card->iobase + ALI_CSPSR);
  2781. if (val & 0x01)
  2782. break;
  2783. }
  2784. if (count == 0x7f) {
  2785. printk(KERN_WARNING "ali_ac96_set: AC97 codec register access timed out. n");
  2786. return;
  2787. }
  2788. return;
  2789. }
  2790. /* OSS /dev/mixer file operation methods */
  2791. static int ali_open_mixdev(struct inode *inode, struct file *file)
  2792. {
  2793. int i;
  2794. int minor = MINOR(inode->i_rdev);
  2795. struct ali_card *card = devs;
  2796. for (card = devs; card != NULL; card = card->next) {
  2797. /*
  2798.  * If we are initializing and then fail, card could go
  2799.  * away unuexpectedly while we are in the for() loop.
  2800.  * So, check for card on each iteration before we check
  2801.  * for card->initializing to avoid a possible oops.
  2802.  * This usually only matters for times when the driver is
  2803.  * autoloaded by kmod.
  2804.  */
  2805. for (i = 0; i < 50 && card && card->initializing; i++) {
  2806. set_current_state(TASK_UNINTERRUPTIBLE);
  2807. schedule_timeout(HZ / 20);
  2808. }
  2809. for (i = 0; i < NR_AC97 && card && !card->initializing; i++)
  2810. if (card->ac97_codec[i] != NULL
  2811.     && card->ac97_codec[i]->dev_mixer == minor) {
  2812. file->private_data = card->ac97_codec[i];
  2813. return 0;
  2814. }
  2815. }
  2816. return -ENODEV;
  2817. }
  2818. static int ali_ioctl_mixdev(struct inode *inode,
  2819.     struct file *file,
  2820.     unsigned int cmd, unsigned long arg)
  2821. {
  2822. struct ac97_codec *codec = (struct ac97_codec *) file->private_data;
  2823. return codec->mixer_ioctl(codec, cmd, arg);
  2824. }
  2825. static /*const */ struct file_operations ali_mixer_fops = {
  2826. owner:THIS_MODULE, 
  2827. llseek:no_llseek, 
  2828. ioctl:ali_ioctl_mixdev,
  2829. open:ali_open_mixdev,
  2830. };
  2831. /* AC97 codec initialisation.  These small functions exist so we don't
  2832.    duplicate code between module init and apm resume */
  2833. static inline int ali_ac97_exists(struct ali_card *card, int ac97_number)
  2834. {
  2835. unsigned int i = 1;
  2836. u32 reg = inl(card->iobase + ALI_RTSR);
  2837. if (ac97_number) {
  2838. while (i < 100) {
  2839. reg = inl(card->iobase + ALI_RTSR);
  2840. if (reg & 0x40) {
  2841. break;
  2842. } else {
  2843. outl(reg | 0x00000040,
  2844.      card->iobase + 0x34);
  2845. udelay(1);
  2846. }
  2847. i++;
  2848. }
  2849. } else {
  2850. while (i < 100) {
  2851. reg = inl(card->iobase + ALI_RTSR);
  2852. if (reg & 0x80) {
  2853. break;
  2854. } else {
  2855. outl(reg | 0x00000080,
  2856.      card->iobase + 0x34);
  2857. udelay(1);
  2858. }
  2859. i++;
  2860. }
  2861. }
  2862. if (ac97_number)
  2863. return reg & 0x40;
  2864. else
  2865. return reg & 0x80;
  2866. }
  2867. static inline int ali_ac97_enable_variable_rate(struct ac97_codec *codec)
  2868. {
  2869. ali_ac97_set(codec, AC97_EXTENDED_STATUS, 9);
  2870. ali_ac97_set(codec, AC97_EXTENDED_STATUS, ali_ac97_get(codec, AC97_EXTENDED_STATUS) | 0xE800);
  2871. return (ali_ac97_get(codec, AC97_EXTENDED_STATUS) & 1);
  2872. }
  2873. static int ali_ac97_probe_and_powerup(struct ali_card *card, struct ac97_codec *codec)
  2874. {
  2875. /* Returns 0 on failure */
  2876. int i;
  2877. u16 addr;
  2878. if (ac97_probe_codec(codec) == 0)
  2879. return 0;
  2880. /* ac97_probe_codec is success ,then begin to init codec */
  2881. ali_ac97_set(codec, AC97_RESET, 0xffff);
  2882. if (card->channel[0].used == 1) {
  2883. ali_ac97_set(codec, AC97_RECORD_SELECT, 0x0000);
  2884. ali_ac97_set(codec, AC97_LINEIN_VOL, 0x0808);
  2885. ali_ac97_set(codec, AC97_RECORD_GAIN, 0x0F0F);
  2886. }
  2887. if (card->channel[2].used == 1) //if MICin then init codec
  2888. {
  2889. ali_ac97_set(codec, AC97_RECORD_SELECT, 0x0000);
  2890. ali_ac97_set(codec, AC97_MIC_VOL, 0x8808);
  2891. ali_ac97_set(codec, AC97_RECORD_GAIN, 0x0F0F);
  2892. ali_ac97_set(codec, AC97_RECORD_GAIN_MIC, 0x0000);
  2893. }
  2894. ali_ac97_set(codec, AC97_MASTER_VOL_STEREO, 0x0000);
  2895. ali_ac97_set(codec, AC97_HEADPHONE_VOL, 0x0000);
  2896. ali_ac97_set(codec, AC97_PCMOUT_VOL, 0x0000);
  2897. ali_ac97_set(codec, AC97_CD_VOL, 0x0808);
  2898. ali_ac97_set(codec, AC97_VIDEO_VOL, 0x0808);
  2899. ali_ac97_set(codec, AC97_AUX_VOL, 0x0808);
  2900. ali_ac97_set(codec, AC97_PHONE_VOL, 0x8048);
  2901. ali_ac97_set(codec, AC97_PCBEEP_VOL, 0x0000);
  2902. ali_ac97_set(codec, AC97_GENERAL_PURPOSE, AC97_GP_MIX);
  2903. ali_ac97_set(codec, AC97_MASTER_VOL_MONO, 0x0000);
  2904. ali_ac97_set(codec, 0x38, 0x0000);
  2905. addr = ali_ac97_get(codec, 0x2a);
  2906. ali_ac97_set(codec, 0x2a, addr | 0x0001);
  2907. addr = ali_ac97_get(codec, 0x2a);
  2908. addr = ali_ac97_get(codec, 0x28);
  2909. ali_ac97_set(codec, 0x2c, 0xbb80);
  2910. addr = ali_ac97_get(codec, 0x2c);
  2911. /* power it all up */
  2912. ali_ac97_set(codec, AC97_POWER_CONTROL,
  2913.      ali_ac97_get(codec, AC97_POWER_CONTROL) & ~0x7f00);
  2914. /* wait for analog ready */
  2915. for (i = 10; i && ((ali_ac97_get(codec, AC97_POWER_CONTROL) & 0xf) != 0xf); i--) {
  2916. set_current_state(TASK_UNINTERRUPTIBLE);
  2917. schedule_timeout(HZ / 20);
  2918. }
  2919. /* FIXME !! */
  2920. i++;
  2921. return i;
  2922. }
  2923. /* I clone ali5455(2.4.7 )  not clone i810_audio(2.4.18)  */
  2924. static int ali_reset_5455(struct ali_card *card)
  2925. {
  2926. outl(0x80000003, card->iobase + ALI_SCR);
  2927. outl(0x83838383, card->iobase + ALI_FIFOCR1);
  2928. outl(0x83838383, card->iobase + ALI_FIFOCR2);
  2929. if (controller_pcmout_share_spdif_locked > 0) {
  2930. outl((inl(card->iobase + ALI_SPDIFICS) | 0x00000001),
  2931.      card->iobase + ALI_SPDIFICS);
  2932. outl(0x0408000a, card->iobase + ALI_INTERFACECR);
  2933. } else {
  2934. if (codec_independent_spdif_locked > 0) {
  2935. outl((inl(card->iobase + ALI_SCR) | 0x00100000), card->iobase + ALI_SCR); // now I select slot 7 & 8
  2936. outl(0x00200000, card->iobase + ALI_INTERFACECR); //enable codec independent spdifout 
  2937. } else
  2938. outl(0x04080002, card->iobase + ALI_INTERFACECR);
  2939. }
  2940. outl(0x00000000, card->iobase + ALI_INTERRUPTCR);
  2941. outl(0x00000000, card->iobase + ALI_INTERRUPTSR);
  2942. if (controller_independent_spdif_locked > 0)
  2943. outl((inl(card->iobase + ALI_SPDIFICS) | 0x00000001),
  2944.      card->iobase + ALI_SPDIFICS);
  2945. return 1;
  2946. }
  2947. static int ali_ac97_random_init_stuff(struct ali_card
  2948.       *card)
  2949. {
  2950. u32 reg = inl(card->iobase + ALI_SCR);
  2951. int i = 0;
  2952. reg = inl(card->iobase + ALI_SCR);
  2953. if ((reg & 2) == 0) /* Cold required */
  2954. reg |= 2;
  2955. else
  2956. reg |= 1; /* Warm */
  2957. reg &= ~0x80000000; /* ACLink on */
  2958. outl(reg, card->iobase + ALI_SCR);
  2959. while (i < 10) {
  2960. if ((inl(card->iobase + 0x18) & (1 << 1)) == 0)
  2961. break;
  2962. current->state = TASK_UNINTERRUPTIBLE;
  2963. schedule_timeout(HZ / 20);
  2964. i++;
  2965. }
  2966. if (i == 10) {
  2967. printk(KERN_ERR "ali_audio: AC'97 reset failed.n");
  2968. return 0;
  2969. }
  2970. set_current_state(TASK_UNINTERRUPTIBLE);
  2971. schedule_timeout(HZ / 2);
  2972. return 1;
  2973. }
  2974. /* AC97 codec initialisation. */
  2975. static int __init ali_ac97_init(struct ali_card *card)
  2976. {
  2977. int num_ac97 = 0;
  2978. int total_channels = 0;
  2979. struct ac97_codec *codec;
  2980. u16 eid;
  2981. if (!ali_ac97_random_init_stuff(card))
  2982. return 0;
  2983. /* Number of channels supported */
  2984. /* What about the codec?  Just because the ICH supports */
  2985. /* multiple channels doesn't mean the codec does.       */
  2986. /* we'll have to modify this in the codec section below */
  2987. /* to reflect what the codec has.                       */
  2988. /* ICH and ICH0 only support 2 channels so don't bother */
  2989. /* to check....                                         */
  2990. inl(card->iobase + ALI_CPR);
  2991. card->channels = 2;
  2992. for (num_ac97 = 0; num_ac97 < NR_AC97; num_ac97++) {
  2993. /* Assume codec isn't available until we go through the
  2994.  * gauntlet below */
  2995. card->ac97_codec[num_ac97] = NULL;
  2996. /* The ICH programmer's reference says you should   */
  2997. /* check the ready status before probing. So we chk */
  2998. /*   What do we do if it's not ready?  Wait and try */
  2999. /*   again, or abort?                               */
  3000. if (!ali_ac97_exists(card, num_ac97)) {
  3001. if (num_ac97 == 0)
  3002. printk(KERN_ERR "ali_audio: Primary codec not ready.n");
  3003. break;
  3004. }
  3005. if ((codec = kmalloc(sizeof(struct ac97_codec), GFP_KERNEL)) == NULL)
  3006. return -ENOMEM;
  3007. memset(codec, 0, sizeof(struct ac97_codec));
  3008. /* initialize some basic codec information, other fields will be filled
  3009.    in ac97_probe_codec */
  3010. codec->private_data = card;
  3011. codec->id = num_ac97;
  3012. codec->codec_read = ali_ac97_get;
  3013. codec->codec_write = ali_ac97_set;
  3014. if (!ali_ac97_probe_and_powerup(card, codec)) {
  3015. printk(KERN_ERR "ali_audio: timed out waiting for codec %d analog ready",
  3016.      num_ac97);
  3017. kfree(codec);
  3018. break; /* it didn't work */
  3019. }
  3020. /* Store state information about S/PDIF transmitter */
  3021. card->ac97_status = 0;
  3022. /* Don't attempt to get eid until powerup is complete */
  3023. eid = ali_ac97_get(codec, AC97_EXTENDED_ID);
  3024. if (eid == 0xFFFFFF) {
  3025. printk(KERN_ERR "ali_audio: no codec attached ?n");
  3026. kfree(codec);
  3027. break;
  3028. }
  3029. card->ac97_features = eid;
  3030. /* Now check the codec for useful features to make up for
  3031.    the dumbness of the ali5455 hardware engine */
  3032. if (!(eid & 0x0001))
  3033. printk(KERN_WARNING
  3034.        "ali_audio: only 48Khz playback available.n");
  3035. else {
  3036. if (!ali_ac97_enable_variable_rate(codec)) {
  3037. printk(KERN_WARNING
  3038.        "ali_audio: Codec refused to allow VRA, using 48Khz only.n");
  3039. card->ac97_features &= ~1;
  3040. }
  3041. }
  3042. /* Determine how many channels the codec(s) support   */
  3043. /*   - The primary codec always supports 2            */
  3044. /*   - If the codec supports AMAP, surround DACs will */
  3045. /*     automaticlly get assigned to slots.            */
  3046. /*     * Check for surround DACs and increment if     */
  3047. /*       found.                                       */
  3048. /*   - Else check if the codec is revision 2.2        */
  3049. /*     * If surround DACs exist, assign them to slots */
  3050. /*       and increment channel count.                 */
  3051. /* All of this only applies to ICH2 and above. ICH    */
  3052. /* and ICH0 only support 2 channels.  ICH2 will only  */
  3053. /* support multiple codecs in a "split audio" config. */
  3054. /* as described above.                                */
  3055. /* TODO: Remove all the debugging messages!           */
  3056. if ((eid & 0xc000) == 0) /* primary codec */
  3057. total_channels += 2;
  3058. if ((codec->dev_mixer = register_sound_mixer(&ali_mixer_fops, -1)) < 0) {
  3059. printk(KERN_ERR "ali_audio: couldn't register mixer!n");
  3060. kfree(codec);
  3061. break;
  3062. }
  3063. card->ac97_codec[num_ac97] = codec;
  3064. }
  3065. /* pick the minimum of channels supported by ICHx or codec(s) */
  3066. card->channels = (card->channels > total_channels) ? total_channels : card->channels;
  3067. return num_ac97;
  3068. }
  3069. static void __init ali_configure_clocking(void)
  3070. {
  3071. struct ali_card *card;
  3072. struct ali_state *state;
  3073. struct dmabuf *dmabuf;
  3074. unsigned int i, offset, new_offset;
  3075. unsigned long flags;
  3076. card = devs;
  3077. /* We could try to set the clocking for multiple cards, but can you even have
  3078.  * more than one ali in a machine?  Besides, clocking is global, so unless
  3079.  * someone actually thinks more than one ali in a machine is possible and
  3080.  * decides to rewrite that little bit, setting the rate for more than one card
  3081.  * is a waste of time.
  3082.  */
  3083. if (card != NULL) {
  3084. state = card->states[0] = (struct ali_state *)
  3085.     kmalloc(sizeof(struct ali_state), GFP_KERNEL);
  3086. if (state == NULL)
  3087. return;
  3088. memset(state, 0, sizeof(struct ali_state));
  3089. dmabuf = &state->dmabuf;
  3090. dmabuf->write_channel = card->alloc_pcm_channel(card);
  3091. state->virt = 0;
  3092. state->card = card;
  3093. state->magic = ALI5455_STATE_MAGIC;
  3094. init_waitqueue_head(&dmabuf->wait);
  3095. init_MUTEX(&state->open_sem);
  3096. dmabuf->fmt = ALI5455_FMT_STEREO | ALI5455_FMT_16BIT;
  3097. dmabuf->trigger = PCM_ENABLE_OUTPUT;
  3098. ali_set_dac_rate(state, 48000);
  3099. if (prog_dmabuf(state, 0) != 0)
  3100. goto config_out_nodmabuf;
  3101. if (dmabuf->dmasize < 16384)
  3102. goto config_out;
  3103. dmabuf->count = dmabuf->dmasize;
  3104. outb(31, card->iobase + dmabuf->write_channel->port + OFF_LVI);
  3105. save_flags(flags);
  3106. cli();
  3107. start_dac(state);
  3108. offset = ali_get_dma_addr(state, 0);
  3109. mdelay(50);
  3110. new_offset = ali_get_dma_addr(state, 0);
  3111. stop_dac(state);
  3112. outb(2, card->iobase + dmabuf->write_channel->port + OFF_CR);
  3113. restore_flags(flags);
  3114. i = new_offset - offset;
  3115. if (i == 0)
  3116. goto config_out;
  3117. i = i / 4 * 20;
  3118. if (i > 48500 || i < 47500) {
  3119. clocking = clocking * clocking / i;
  3120. }
  3121. config_out:
  3122. dealloc_dmabuf(state);
  3123. config_out_nodmabuf:
  3124. state->card->free_pcm_channel(state->card, state->dmabuf. write_channel->num);
  3125. kfree(state);
  3126. card->states[0] = NULL;
  3127. }
  3128. }
  3129. /* install the driver, we do not allocate hardware channel nor DMA buffer now, they are defered 
  3130.    until "ACCESS" time (in prog_dmabuf called by open/read/write/ioctl/mmap) */
  3131. static int __init ali_probe(struct pci_dev *pci_dev, const struct pci_device_id
  3132.     *pci_id)
  3133. {
  3134. struct ali_card *card;
  3135. if (pci_enable_device(pci_dev))
  3136. return -EIO;
  3137. if (pci_set_dma_mask(pci_dev, ALI5455_DMA_MASK)) {
  3138. printk(KERN_ERR "ali5455: architecture does not support"
  3139.        " 32bit PCI busmaster DMAn");
  3140. return -ENODEV;
  3141. }
  3142. if ((card = kmalloc(sizeof(struct ali_card), GFP_KERNEL)) == NULL) {
  3143. printk(KERN_ERR "ali_audio: out of memoryn");
  3144. return -ENOMEM;
  3145. }
  3146. memset(card, 0, sizeof(*card));
  3147. card->initializing = 1;
  3148. card->iobase = pci_resource_start(pci_dev, 0);
  3149. card->pci_dev = pci_dev;
  3150. card->pci_id = pci_id->device;
  3151. card->irq = pci_dev->irq;
  3152. card->next = devs;
  3153. card->magic = ALI5455_CARD_MAGIC;
  3154. #ifdef CONFIG_PM
  3155. card->pm_suspended = 0;
  3156. #endif
  3157. spin_lock_init(&card->lock);
  3158. devs = card;
  3159. pci_set_master(pci_dev);
  3160. printk(KERN_INFO "ali: %s found at IO 0x%04lx, IRQ %dn",
  3161.        card_names[pci_id->driver_data], card->iobase, card->irq);
  3162. card->alloc_pcm_channel = ali_alloc_pcm_channel;
  3163. card->alloc_rec_pcm_channel = ali_alloc_rec_pcm_channel;
  3164. card->alloc_rec_mic_channel = ali_alloc_rec_mic_channel;
  3165. card->alloc_codec_spdifout_channel = ali_alloc_codec_spdifout_channel;
  3166. card->alloc_controller_spdifout_channel = ali_alloc_controller_spdifout_channel;
  3167. card->free_pcm_channel = ali_free_pcm_channel;
  3168. card->channel[0].offset = 0;
  3169. card->channel[0].port = 0x40;
  3170. card->channel[0].num = 0;
  3171. card->channel[1].offset = 0;
  3172. card->channel[1].port = 0x50;
  3173. card->channel[1].num = 1;
  3174. card->channel[2].offset = 0;
  3175. card->channel[2].port = 0x60;
  3176. card->channel[2].num = 2;
  3177. card->channel[3].offset = 0;
  3178. card->channel[3].port = 0x70;
  3179. card->channel[3].num = 3;
  3180. card->channel[4].offset = 0;
  3181. card->channel[4].port = 0xb0;
  3182. card->channel[4].num = 4;
  3183. /* claim our iospace and irq */
  3184. request_region(card->iobase, 256, card_names[pci_id->driver_data]);
  3185. if (request_irq(card->irq, &ali_interrupt, SA_SHIRQ,
  3186. card_names[pci_id->driver_data], card)) {
  3187. printk(KERN_ERR "ali_audio: unable to allocate irq %dn",
  3188.        card->irq);
  3189. release_region(card->iobase, 256);
  3190. kfree(card);
  3191. return -ENODEV;
  3192. }
  3193. if (ali_reset_5455(card) <= 0) {
  3194. unregister_sound_dsp(card->dev_audio);
  3195. release_region(card->iobase, 256);
  3196. free_irq(card->irq, card);
  3197. kfree(card);
  3198. return -ENODEV;
  3199. }
  3200. /* initialize AC97 codec and register /dev/mixer */
  3201. if (ali_ac97_init(card) < 0) {
  3202. release_region(card->iobase, 256);
  3203. free_irq(card->irq, card);
  3204. kfree(card);
  3205. return -ENODEV;
  3206. }
  3207. pci_set_drvdata(pci_dev, card);
  3208. if (clocking == 0) {
  3209. clocking = 48000;
  3210. ali_configure_clocking();
  3211. }
  3212. /* register /dev/dsp */
  3213. if ((card->dev_audio = register_sound_dsp(&ali_audio_fops, -1)) < 0) {
  3214. int i;
  3215. printk(KERN_ERR"ali_audio: couldn't register DSP device!n");
  3216. release_region(card->iobase, 256);
  3217. free_irq(card->irq, card);
  3218. for (i = 0; i < NR_AC97; i++)
  3219. if (card->ac97_codec[i] != NULL) {
  3220. unregister_sound_mixer(card->ac97_codec[i]->dev_mixer);
  3221. kfree(card->ac97_codec[i]);
  3222. }
  3223. kfree(card);
  3224. return -ENODEV;
  3225. }
  3226. card->initializing = 0;
  3227. return 0;
  3228. }
  3229. static void __devexit ali_remove(struct pci_dev *pci_dev)
  3230. {
  3231. int i;
  3232. struct ali_card *card = pci_get_drvdata(pci_dev);
  3233. /* free hardware resources */
  3234. free_irq(card->irq, devs);
  3235. release_region(card->iobase, 256);
  3236. /* unregister audio devices */
  3237. for (i = 0; i < NR_AC97; i++)
  3238. if (card->ac97_codec[i] != NULL) {
  3239. unregister_sound_mixer(card->ac97_codec[i]->
  3240.        dev_mixer);
  3241. kfree(card->ac97_codec[i]);
  3242. card->ac97_codec[i] = NULL;
  3243. }
  3244. unregister_sound_dsp(card->dev_audio);
  3245. kfree(card);
  3246. }
  3247. #ifdef CONFIG_PM
  3248. static int ali_pm_suspend(struct pci_dev *dev, u32 pm_state)
  3249. {
  3250. struct ali_card *card = pci_get_drvdata(dev);
  3251. struct ali_state *state;
  3252. unsigned long flags;
  3253. struct dmabuf *dmabuf;
  3254. int i, num_ac97;
  3255. if (!card)
  3256. return 0;
  3257. spin_lock_irqsave(&card->lock, flags);
  3258. card->pm_suspended = 1;
  3259. for (i = 0; i < NR_HW_CH; i++) {
  3260. state = card->states[i];
  3261. if (!state)
  3262. continue;
  3263. /* this happens only if there are open files */
  3264. dmabuf = &state->dmabuf;
  3265. if (dmabuf->enable & DAC_RUNNING ||
  3266.     (dmabuf->count
  3267.      && (dmabuf->trigger & PCM_ENABLE_OUTPUT))) {
  3268. state->pm_saved_dac_rate = dmabuf->rate;
  3269. stop_dac(state);
  3270. } else {
  3271. state->pm_saved_dac_rate = 0;
  3272. }
  3273. if (dmabuf->enable & ADC_RUNNING) {
  3274. state->pm_saved_adc_rate = dmabuf->rate;
  3275. stop_adc(state);
  3276. } else {
  3277. state->pm_saved_adc_rate = 0;
  3278. }
  3279. dmabuf->ready = 0;
  3280. dmabuf->swptr = dmabuf->hwptr = 0;
  3281. dmabuf->count = dmabuf->total_bytes = 0;
  3282. }
  3283. spin_unlock_irqrestore(&card->lock, flags);
  3284. /* save mixer settings */
  3285. for (num_ac97 = 0; num_ac97 < NR_AC97; num_ac97++) {
  3286. struct ac97_codec *codec = card->ac97_codec[num_ac97];
  3287. if (!codec)
  3288. continue;
  3289. for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) {
  3290. if ((supported_mixer(codec, i)) && (codec->read_mixer)) {
  3291. card->pm_saved_mixer_settings[i][num_ac97] = codec->read_mixer(codec, i);
  3292. }
  3293. }
  3294. }
  3295. pci_save_state(dev, card->pm_save_state); /* XXX do we need this? */
  3296. pci_disable_device(dev); /* disable busmastering */
  3297. pci_set_power_state(dev, 3); /* Zzz. */
  3298. return 0;
  3299. }
  3300. static int ali_pm_resume(struct pci_dev *dev)
  3301. {
  3302. int num_ac97, i = 0;
  3303. struct ali_card *card = pci_get_drvdata(dev);
  3304. pci_enable_device(dev);
  3305. pci_restore_state(dev, card->pm_save_state);
  3306. /* observation of a toshiba portege 3440ct suggests that the 
  3307.    hardware has to be more or less completely reinitialized from
  3308.    scratch after an apm suspend.  Works For Me.   -dan */
  3309. ali_ac97_random_init_stuff(card);
  3310. for (num_ac97 = 0; num_ac97 < NR_AC97; num_ac97++) {
  3311. struct ac97_codec *codec = card->ac97_codec[num_ac97];
  3312. /* check they haven't stolen the hardware while we were
  3313.    away */
  3314. if (!codec || !ali_ac97_exists(card, num_ac97)) {
  3315. if (num_ac97)
  3316. continue;
  3317. else
  3318. BUG();
  3319. }
  3320. if (!ali_ac97_probe_and_powerup(card, codec))
  3321. BUG();
  3322. if ((card->ac97_features & 0x0001)) {
  3323. /* at probe time we found we could do variable
  3324.    rates, but APM suspend has made it forget
  3325.    its magical powers */
  3326. if (!ali_ac97_enable_variable_rate(codec))
  3327. BUG();
  3328. }
  3329. /* we lost our mixer settings, so restore them */
  3330. for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) {
  3331. if (supported_mixer(codec, i)) {
  3332. int val = card->pm_saved_mixer_settings[i][num_ac97];
  3333. codec->mixer_state[i] = val;
  3334. codec->write_mixer(codec, i,
  3335.    (val & 0xff),
  3336.    ((val >> 8) & 0xff));
  3337. }
  3338. }
  3339. }
  3340. /* we need to restore the sample rate from whatever it was */
  3341. for (i = 0; i < NR_HW_CH; i++) {
  3342. struct ali_state *state = card->states[i];
  3343. if (state) {
  3344. if (state->pm_saved_adc_rate)
  3345. ali_set_adc_rate(state, state->pm_saved_adc_rate);
  3346. if (state->pm_saved_dac_rate)
  3347. ali_set_dac_rate(state, state->pm_saved_dac_rate);
  3348. }
  3349. }
  3350. card->pm_suspended = 0;
  3351. /* any processes that were reading/writing during the suspend
  3352.    probably ended up here */
  3353. for (i = 0; i < NR_HW_CH; i++) {
  3354. struct ali_state *state = card->states[i];
  3355. if (state)
  3356. wake_up(&state->dmabuf.wait);
  3357. }
  3358. return 0;
  3359. }
  3360. #endif /* CONFIG_PM */
  3361. MODULE_AUTHOR("");
  3362. MODULE_DESCRIPTION("ALI 5455 audio support");
  3363. MODULE_LICENSE("GPL");
  3364. MODULE_PARM(clocking, "i");
  3365. MODULE_PARM(strict_clocking, "i");
  3366. MODULE_PARM(codec_pcmout_share_spdif_locked, "i");
  3367. MODULE_PARM(codec_independent_spdif_locked, "i");
  3368. MODULE_PARM(controller_pcmout_share_spdif_locked, "i");
  3369. MODULE_PARM(controller_independent_spdif_locked, "i");
  3370. #define ALI5455_MODULE_NAME "ali5455"
  3371. static struct pci_driver ali_pci_driver = {
  3372. name:ALI5455_MODULE_NAME, id_table:ali_pci_tbl, probe:ali_probe,
  3373.     remove:__devexit_p(ali_remove),
  3374. #ifdef CONFIG_PM
  3375. suspend:ali_pm_suspend, resume:ali_pm_resume,
  3376. #endif /* CONFIG_PM */
  3377. };
  3378. static int __init ali_init_module(void)
  3379. {
  3380. if (!pci_present()) /* No PCI bus in this machine! */
  3381. return -ENODEV;
  3382. printk(KERN_INFO "ALI 5455 + AC97 Audio, version "
  3383.        DRIVER_VERSION ", " __TIME__ " " __DATE__ "n");
  3384. if (codec_independent_spdif_locked > 0) {
  3385. if (codec_independent_spdif_locked == 32000
  3386.     || codec_independent_spdif_locked == 44100
  3387.     || codec_independent_spdif_locked == 48000) {
  3388. printk(KERN_INFO "ali_audio: Enabling S/PDIF at sample rate %dHz.n", codec_independent_spdif_locked);
  3389. } else {
  3390. printk(KERN_INFO "ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.n");
  3391. codec_independent_spdif_locked = 0;
  3392. }
  3393. }
  3394. if (controller_independent_spdif_locked > 0) {
  3395. if (controller_independent_spdif_locked == 32000
  3396.     || controller_independent_spdif_locked == 44100
  3397.     || controller_independent_spdif_locked == 48000) {
  3398. printk(KERN_INFO "ali_audio: Enabling S/PDIF at sample rate %dHz.n", controller_independent_spdif_locked);
  3399. } else {
  3400. printk(KERN_INFO "ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.n");
  3401. controller_independent_spdif_locked = 0;
  3402. }
  3403. }
  3404. if (codec_pcmout_share_spdif_locked > 0) {
  3405. if (codec_pcmout_share_spdif_locked == 32000
  3406.     || codec_pcmout_share_spdif_locked == 44100
  3407.     || codec_pcmout_share_spdif_locked == 48000) {
  3408. printk(KERN_INFO "ali_audio: Enabling S/PDIF at sample rate %dHz.n", codec_pcmout_share_spdif_locked);
  3409. } else {
  3410. printk(KERN_INFO "ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.n");
  3411. codec_pcmout_share_spdif_locked = 0;
  3412. }
  3413. }
  3414. if (controller_pcmout_share_spdif_locked > 0) {
  3415. if (controller_pcmout_share_spdif_locked == 32000
  3416.     || controller_pcmout_share_spdif_locked == 44100
  3417.     || controller_pcmout_share_spdif_locked == 48000) {
  3418. printk(KERN_INFO "ali_audio: Enabling controller S/PDIF at sample rate %dHz.n", controller_pcmout_share_spdif_locked);
  3419. } else {
  3420. printk(KERN_INFO "ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.n");
  3421. controller_pcmout_share_spdif_locked = 0;
  3422. }
  3423. }
  3424. if (!pci_register_driver(&ali_pci_driver)) {
  3425. pci_unregister_driver(&ali_pci_driver);
  3426. return -ENODEV;
  3427. }
  3428. return 0;
  3429. }
  3430. static void __exit ali_cleanup_module(void)
  3431. {
  3432. pci_unregister_driver(&ali_pci_driver);
  3433. }
  3434. module_init(ali_init_module);
  3435. module_exit(ali_cleanup_module);
  3436. /*
  3437. Local Variables:
  3438. c-basic-offset: 8
  3439. End:
  3440. */