vwsnd.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:95k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Sound driver for Silicon Graphics 320 and 540 Visual Workstations'
  3.  * onboard audio.  See notes in ../../Documentation/sound/vwsnd .
  4.  *
  5.  * Copyright 1999 Silicon Graphics, Inc.  All rights reserved.
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  */
  21. #undef VWSND_DEBUG /* define for debugging */
  22. /*
  23.  * XXX to do -
  24.  *
  25.  * External sync.
  26.  * Rename swbuf, hwbuf, u&i, hwptr&swptr to something rational.
  27.  * Bug - if select() called before read(), pcm_setup() not called.
  28.  * Bug - output doesn't stop soon enough if process killed.
  29.  */
  30. /*
  31.  * Things to test -
  32.  *
  33.  * Will readv/writev work?  Write a test.
  34.  *
  35.  * insmod/rmmod 100 million times.
  36.  *
  37.  * Run I/O until int ptrs wrap around (roughly 6.2 hours @ DAT
  38.  * rate).
  39.  *
  40.  * Concurrent threads banging on mixer simultaneously, both UP
  41.  * and SMP kernels.  Especially, watch for thread A changing
  42.  * OUTSRC while thread B changes gain -- both write to the same
  43.  * ad1843 register.
  44.  *
  45.  * What happens if a client opens /dev/audio then forks?
  46.  * Do two procs have /dev/audio open?  Test.
  47.  *
  48.  * Pump audio through the CD, MIC and line inputs and verify that
  49.  * they mix/mute into the output.
  50.  *
  51.  * Apps:
  52.  * amp
  53.  * mpg123
  54.  * x11amp
  55.  * mxv
  56.  * kmedia
  57.  * esound
  58.  * need more input apps
  59.  *
  60.  * Run tests while bombarding with signals.  setitimer(2) will do it...  */
  61. /*
  62.  * This driver is organized in nine sections.
  63.  * The nine sections are:
  64.  *
  65.  * debug stuff
  66.  *  low level lithium access
  67.  * high level lithium access
  68.  * AD1843 access
  69.  * PCM I/O
  70.  * audio driver
  71.  * mixer driver
  72.  * probe/attach/unload
  73.  * initialization and loadable kernel module interface
  74.  *
  75.  * That is roughly the order of increasing abstraction, so forward
  76.  * dependencies are minimal.
  77.  */
  78. /*
  79.  * Locking Notes
  80.  *
  81.  * INC_USE_COUNT and DEC_USE_COUNT keep track of the number of
  82.  * open descriptors to this driver. They store it in vwsnd_use_count.
  83.  *  The global device list, vwsnd_dev_list, is immutable when the IN_USE
  84.  * is true.
  85.  *
  86.  * devc->open_lock is a semaphore that is used to enforce the
  87.  * single reader/single writer rule for /dev/audio.  The rule is
  88.  * that each device may have at most one reader and one writer.
  89.  * Open will block until the previous client has closed the
  90.  * device, unless O_NONBLOCK is specified.
  91.  *
  92.  * The semaphore devc->io_sema serializes PCM I/O syscalls.  This
  93.  * is unnecessary in Linux 2.2, because the kernel lock
  94.  * serializes read, write, and ioctl globally, but it's there,
  95.  * ready for the brave, new post-kernel-lock world.
  96.  *
  97.  * Locking between interrupt and baselevel is handled by the
  98.  * "lock" spinlock in vwsnd_port (one lock each for read and
  99.  * write).  Each half holds the lock just long enough to see what
  100.  * area it owns and update its pointers.  See pcm_output() and
  101.  * pcm_input() for most of the gory stuff.
  102.  *
  103.  * devc->mix_sema serializes all mixer ioctls.  This is also
  104.  * redundant because of the kernel lock.
  105.  *
  106.  * The lowest level lock is lith->lithium_lock.  It is a
  107.  * spinlock which is held during the two-register tango of
  108.  * reading/writing an AD1843 register.  See
  109.  * li_{read,write}_ad1843_reg().
  110.  */
  111. /*
  112.  * Sample Format Notes
  113.  *
  114.  * Lithium's DMA engine has two formats: 16-bit 2's complement
  115.  * and 8-bit unsigned .  16-bit transfers the data unmodified, 2
  116.  * bytes per sample.  8-bit unsigned transfers 1 byte per sample
  117.  * and XORs each byte with 0x80.  Lithium can input or output
  118.  * either mono or stereo in either format.
  119.  *
  120.  * The AD1843 has four formats: 16-bit 2's complement, 8-bit
  121.  * unsigned, 8-bit mu-Law and 8-bit A-Law.
  122.  *
  123.  * This driver supports five formats: AFMT_S8, AFMT_U8,
  124.  * AFMT_MU_LAW, AFMT_A_LAW, and AFMT_S16_LE.
  125.  *
  126.  * For AFMT_U8 output, we keep the AD1843 in 16-bit mode, and
  127.  * rely on Lithium's XOR to translate between U8 and S8.
  128.  *
  129.  * For AFMT_S8, AFMT_MU_LAW and AFMT_A_LAW output, we have to XOR
  130.  * the 0x80 bit in software to compensate for Lithium's XOR.
  131.  * This happens in pcm_copy_{in,out}().
  132.  *
  133.  * Changes:
  134.  * 11-10-2000 Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
  135.  * Added some __init/__exit
  136.  */
  137. #include <linux/module.h>
  138. #include <linux/init.h>
  139. #include <linux/sched.h>
  140. #include <linux/semaphore.h>
  141. #include <linux/stddef.h>
  142. #include <linux/spinlock.h>
  143. #include <linux/smp_lock.h>
  144. #include <asm/fixmap.h>
  145. #include <asm/cobalt.h>
  146. #include <asm/semaphore.h>
  147. #include "sound_config.h"
  148. /*****************************************************************************/
  149. /* debug stuff */
  150. #ifdef VWSND_DEBUG
  151. #include <linux/interrupt.h> /* for in_interrupt() */
  152. static int shut_up = 1;
  153. /*
  154.  * dbgassert - called when an assertion fails.
  155.  */
  156. static void dbgassert(const char *fcn, int line, const char *expr)
  157. {
  158. if (in_interrupt())
  159. panic("ASSERTION FAILED IN INTERRUPT, %s:%s:%d %sn",
  160.       __FILE__, fcn, line, expr);
  161. else {
  162. int x;
  163. printk(KERN_ERR "ASSERTION FAILED, %s:%s:%d %sn",
  164.        __FILE__, fcn, line, expr);
  165. x = * (volatile int *) 0; /* force proc to exit */
  166. }
  167. }
  168. /*
  169.  * Bunch of useful debug macros:
  170.  *
  171.  * ASSERT - print unless e nonzero (panic if in interrupt)
  172.  * DBGDO - include arbitrary code if debugging
  173.  * DBGX - debug print raw (w/o function name)
  174.  * DBGP - debug print w/ function name
  175.  * DBGE - debug print function entry
  176.  * DBGC - debug print function call
  177.  * DBGR - debug print function return
  178.  * DBGXV - debug print raw when verbose
  179.  * DBGPV - debug print when verbose
  180.  * DBGEV - debug print function entry when verbose
  181.  * DBGRV - debug print function return when verbose
  182.  */
  183. #define ASSERT(e)      ((e) ? (void) 0 : dbgassert(__FUNCTION__, __LINE__, #e))
  184. #define DBGDO(x)            x
  185. #define DBGX(fmt, args...)  (in_interrupt() ? 0 : printk(KERN_ERR fmt, ##args))
  186. #define DBGP(fmt, args...)  (DBGX(__FUNCTION__ ": " fmt, ##args))
  187. #define DBGE(fmt, args...)  (DBGX(__FUNCTION__ fmt, ##args))
  188. #define DBGC(rtn)           (DBGP("calling %sn", rtn))
  189. #define DBGR()              (DBGP("returningn"))
  190. #define DBGXV(fmt, args...) (shut_up ? 0 : DBGX(fmt, ##args))
  191. #define DBGPV(fmt, args...) (shut_up ? 0 : DBGP(fmt, ##args))
  192. #define DBGEV(fmt, args...) (shut_up ? 0 : DBGE(fmt, ##args))
  193. #define DBGCV(rtn)          (shut_up ? 0 : DBGC(rtn))
  194. #define DBGRV()             (shut_up ? 0 : DBGR())
  195. #else /* !VWSND_DEBUG */
  196. #define ASSERT(e)           ((void) 0)
  197. #define DBGDO(x)            /* don't */
  198. #define DBGX(fmt, args...)  ((void) 0)
  199. #define DBGP(fmt, args...)  ((void) 0)
  200. #define DBGE(fmt, args...)  ((void) 0)
  201. #define DBGC(rtn)           ((void) 0)
  202. #define DBGR()              ((void) 0)
  203. #define DBGPV(fmt, args...) ((void) 0)
  204. #define DBGXV(fmt, args...) ((void) 0)
  205. #define DBGEV(fmt, args...) ((void) 0)
  206. #define DBGCV(rtn)          ((void) 0)
  207. #define DBGRV()             ((void) 0)
  208. #endif /* !VWSND_DEBUG */
  209. /*****************************************************************************/
  210. /* low level lithium access */
  211. /*
  212.  * We need to talk to Lithium registers on three pages.  Here are
  213.  * the pages' offsets from the base address (0xFF001000).
  214.  */
  215. enum {
  216. LI_PAGE0_OFFSET = 0x01000 - 0x1000, /* FF001000 */
  217. LI_PAGE1_OFFSET = 0x0F000 - 0x1000, /* FF00F000 */
  218. LI_PAGE2_OFFSET = 0x10000 - 0x1000, /* FF010000 */
  219. };
  220. /* low-level lithium data */
  221. typedef struct lithium {
  222. caddr_t page0; /* virtual addresses */
  223. caddr_t page1;
  224. caddr_t page2;
  225. spinlock_t lock; /* protects codec and UST/MSC access */
  226. } lithium_t;
  227. /*
  228.  * li_create initializes the lithium_t structure and sets up vm mappings
  229.  * to access the registers.
  230.  * Returns 0 on success, -errno on failure.
  231.  */
  232. static int li_create(lithium_t *lith, unsigned long baseaddr)
  233. {
  234. static void li_destroy(lithium_t *);
  235. lith->lock = SPIN_LOCK_UNLOCKED;
  236. lith->page0 = ioremap_nocache(baseaddr + LI_PAGE0_OFFSET, PAGE_SIZE);
  237. lith->page1 = ioremap_nocache(baseaddr + LI_PAGE1_OFFSET, PAGE_SIZE);
  238. lith->page2 = ioremap_nocache(baseaddr + LI_PAGE2_OFFSET, PAGE_SIZE);
  239. if (!lith->page0 || !lith->page1 || !lith->page2) {
  240. li_destroy(lith);
  241. return -ENOMEM;
  242. }
  243. return 0;
  244. }
  245. /*
  246.  * li_destroy destroys the lithium_t structure and vm mappings.
  247.  */
  248. static void li_destroy(lithium_t *lith)
  249. {
  250. if (lith->page0) {
  251. iounmap(lith->page0);
  252. lith->page0 = NULL;
  253. }
  254. if (lith->page1) {
  255. iounmap(lith->page1);
  256. lith->page1 = NULL;
  257. }
  258. if (lith->page2) {
  259. iounmap(lith->page2);
  260. lith->page2 = NULL;
  261. }
  262. }
  263. /*
  264.  * basic register accessors - read/write long/byte
  265.  */
  266. static __inline__ unsigned long li_readl(lithium_t *lith, int off)
  267. {
  268. return * (volatile unsigned long *) (lith->page0 + off);
  269. }
  270. static __inline__ unsigned char li_readb(lithium_t *lith, int off)
  271. {
  272. return * (volatile unsigned char *) (lith->page0 + off);
  273. }
  274. static __inline__ void li_writel(lithium_t *lith, int off, unsigned long val)
  275. {
  276. * (volatile unsigned long *) (lith->page0 + off) = val;
  277. }
  278. static __inline__ void li_writeb(lithium_t *lith, int off, unsigned char val)
  279. {
  280. * (volatile unsigned char *) (lith->page0 + off) = val;
  281. }
  282. /*****************************************************************************/
  283. /* High Level Lithium Access */
  284. /*
  285.  * Lithium DMA Notes
  286.  *
  287.  * Lithium has two dedicated DMA channels for audio.  They are known
  288.  * as comm1 and comm2 (communication areas 1 and 2).  Comm1 is for
  289.  * input, and comm2 is for output.  Each is controlled by three
  290.  * registers: BASE (base address), CFG (config) and CCTL
  291.  * (config/control).
  292.  *
  293.  * Each DMA channel points to a physically contiguous ring buffer in
  294.  * main memory of up to 8 Kbytes.  (This driver always uses 8 Kb.)
  295.  * There are three pointers into the ring buffer: read, write, and
  296.  * trigger.  The pointers are 8 bits each.  Each pointer points to
  297.  * 32-byte "chunks" of data.  The DMA engine moves 32 bytes at a time,
  298.  * so there is no finer-granularity control.
  299.  *
  300.  * In comm1, the hardware updates the write ptr, and software updates
  301.  * the read ptr.  In comm2, it's the opposite: hardware updates the
  302.  * read ptr, and software updates the write ptr.  I designate the
  303.  * hardware-updated ptr as the hwptr, and the software-updated ptr as
  304.  * the swptr.
  305.  *
  306.  * The trigger ptr and trigger mask are used to trigger interrupts.
  307.  * From the Lithium spec, section 5.6.8, revision of 12/15/1998:
  308.  *
  309.  * Trigger Mask Value
  310.  *
  311.  * A three bit wide field that represents a power of two mask
  312.  * that is used whenever the trigger pointer is compared to its
  313.  * respective read or write pointer.  A value of zero here
  314.  * implies a mask of 0xFF and a value of seven implies a mask
  315.  * 0x01.  This value can be used to sub-divide the ring buffer
  316.  * into pie sections so that interrupts monitor the progress of
  317.  * hardware from section to section.
  318.  *
  319.  * My interpretation of that is, whenever the hw ptr is updated, it is
  320.  * compared with the trigger ptr, and the result is masked by the
  321.  * trigger mask.  (Actually, by the complement of the trigger mask.)
  322.  * If the result is zero, an interrupt is triggered.  I.e., interrupt
  323.  * if ((hwptr & ~mask) == (trptr & ~mask)).  The mask is formed from
  324.  * the trigger register value as mask = (1 << (8 - tmreg)) - 1.
  325.  *
  326.  * In yet different words, setting tmreg to 0 causes an interrupt after
  327.  * every 256 DMA chunks (8192 bytes) or once per traversal of the
  328.  * ring buffer.  Setting it to 7 caues an interrupt every 2 DMA chunks
  329.  * (64 bytes) or 128 times per traversal of the ring buffer.
  330.  */
  331. /* Lithium register offsets and bit definitions */
  332. #define LI_HOST_CONTROLLER 0x000
  333. # define LI_HC_RESET  0x00008000
  334. # define LI_HC_LINK_ENABLE  0x00004000
  335. # define LI_HC_LINK_FAILURE  0x00000004
  336. # define LI_HC_LINK_CODEC  0x00000002
  337. # define LI_HC_LINK_READY  0x00000001
  338. #define LI_INTR_STATUS 0x010
  339. #define LI_INTR_MASK 0x014
  340. # define LI_INTR_LINK_ERR  0x00008000
  341. # define LI_INTR_COMM2_TRIG  0x00000008
  342. # define LI_INTR_COMM2_UNDERFLOW 0x00000004
  343. # define LI_INTR_COMM1_TRIG  0x00000002
  344. # define LI_INTR_COMM1_OVERFLOW  0x00000001
  345. #define LI_CODEC_COMMAND 0x018
  346. # define LI_CC_BUSY  0x00008000
  347. # define LI_CC_DIR  0x00000080
  348. #  define LI_CC_DIR_RD   LI_CC_DIR
  349. #  define LI_CC_DIR_WR (!LI_CC_DIR)
  350. # define LI_CC_ADDR_MASK  0x0000007F
  351. #define LI_CODEC_DATA 0x01C
  352. #define LI_COMM1_BASE 0x100
  353. #define LI_COMM1_CTL 0x104
  354. # define LI_CCTL_RESET  0x80000000
  355. # define LI_CCTL_SIZE  0x70000000
  356. # define LI_CCTL_DMA_ENABLE  0x08000000
  357. # define LI_CCTL_TMASK  0x07000000 /* trigger mask */
  358. # define LI_CCTL_TPTR  0x00FF0000 /* trigger pointer */
  359. # define LI_CCTL_RPTR  0x0000FF00
  360. # define LI_CCTL_WPTR  0x000000FF
  361. #define LI_COMM1_CFG 0x108
  362. # define LI_CCFG_LOCK  0x00008000
  363. # define LI_CCFG_SLOT  0x00000070
  364. # define LI_CCFG_DIRECTION  0x00000008
  365. #  define LI_CCFG_DIR_IN (!LI_CCFG_DIRECTION)
  366. #  define LI_CCFG_DIR_OUT   LI_CCFG_DIRECTION
  367. # define LI_CCFG_MODE  0x00000004
  368. #  define LI_CCFG_MODE_MONO (!LI_CCFG_MODE)
  369. #  define LI_CCFG_MODE_STEREO   LI_CCFG_MODE
  370. # define LI_CCFG_FORMAT  0x00000003
  371. #  define LI_CCFG_FMT_8BIT   0x00000000
  372. #  define LI_CCFG_FMT_16BIT   0x00000001
  373. #define LI_COMM2_BASE 0x10C
  374. #define LI_COMM2_CTL 0x110
  375.  /* bit definitions are the same as LI_COMM1_CTL */
  376. #define LI_COMM2_CFG 0x114
  377.  /* bit definitions are the same as LI_COMM1_CFG */
  378. #define LI_UST_LOW 0x200 /* 64-bit Unadjusted System Time is */
  379. #define LI_UST_HIGH 0x204 /* microseconds since boot */
  380. #define LI_AUDIO1_UST 0x300 /* UST-MSC pairs */
  381. #define LI_AUDIO1_MSC 0x304 /* MSC (Media Stream Counter) */
  382. #define LI_AUDIO2_UST 0x308 /* counts samples actually */
  383. #define LI_AUDIO2_MSC 0x30C /* processed as of time UST */
  384. /* 
  385.  * Lithium's DMA engine operates on chunks of 32 bytes.  We call that
  386.  * a DMACHUNK.
  387.  */
  388. #define DMACHUNK_SHIFT 5
  389. #define DMACHUNK_SIZE (1 << DMACHUNK_SHIFT)
  390. #define BYTES_TO_CHUNKS(bytes) ((bytes) >> DMACHUNK_SHIFT)
  391. #define CHUNKS_TO_BYTES(chunks) ((chunks) << DMACHUNK_SHIFT)
  392. /*
  393.  * Two convenient macros to shift bitfields into/out of position.
  394.  *
  395.  * Observe that (mask & -mask) is (1 << low_set_bit_of(mask)).
  396.  * As long as mask is constant, we trust the compiler will change the
  397.  * multipy and divide into shifts.
  398.  */
  399. #define SHIFT_FIELD(val, mask) (((val) * ((mask) & -(mask))) & (mask))
  400. #define UNSHIFT_FIELD(val, mask) (((val) & (mask)) / ((mask) & -(mask)))
  401. /*
  402.  * dma_chan_desc is invariant information about a Lithium
  403.  * DMA channel.  There are two instances, li_comm1 and li_comm2.
  404.  *
  405.  * Note that the CCTL register fields are write ptr and read ptr, but what
  406.  * we care about are which pointer is updated by software and which by
  407.  * hardware.
  408.  */
  409. typedef struct dma_chan_desc {
  410. int basereg;
  411. int cfgreg;
  412. int ctlreg;
  413. int hwptrreg;
  414. int swptrreg;
  415. int ustreg;
  416. int mscreg;
  417. unsigned long swptrmask;
  418. int ad1843_slot;
  419. int direction; /* LI_CCTL_DIR_IN/OUT */
  420. } dma_chan_desc_t;
  421. static const dma_chan_desc_t li_comm1 = {
  422. LI_COMM1_BASE, /* base register offset */
  423. LI_COMM1_CFG, /* config register offset */
  424. LI_COMM1_CTL, /* control register offset */
  425. LI_COMM1_CTL + 0, /* hw ptr reg offset (write ptr) */
  426. LI_COMM1_CTL + 1, /* sw ptr reg offset (read ptr) */
  427. LI_AUDIO1_UST, /* ust reg offset */
  428. LI_AUDIO1_MSC, /* msc reg offset */
  429. LI_CCTL_RPTR, /* sw ptr bitmask in ctlval */
  430. 2, /* ad1843 serial slot */
  431. LI_CCFG_DIR_IN /* direction */
  432. };
  433. static const dma_chan_desc_t li_comm2 = {
  434. LI_COMM2_BASE, /* base register offset */
  435. LI_COMM2_CFG, /* config register offset */
  436. LI_COMM2_CTL, /* control register offset */
  437. LI_COMM2_CTL + 1, /* hw ptr reg offset (read ptr) */
  438. LI_COMM2_CTL + 0, /* sw ptr reg offset (writr ptr) */
  439. LI_AUDIO2_UST, /* ust reg offset */
  440. LI_AUDIO2_MSC, /* msc reg offset */
  441. LI_CCTL_WPTR, /* sw ptr bitmask in ctlval */
  442. 2, /* ad1843 serial slot */
  443. LI_CCFG_DIR_OUT /* direction */
  444. };
  445. /*
  446.  * dma_chan is variable information about a Lithium DMA channel.
  447.  *
  448.  * The desc field points to invariant information.
  449.  * The lith field points to a lithium_t which is passed
  450.  * to li_read* and li_write* to access the registers.
  451.  * The *val fields shadow the lithium registers' contents.
  452.  */
  453. typedef struct dma_chan {
  454. const dma_chan_desc_t *desc;
  455. lithium_t      *lith;
  456. unsigned long   baseval;
  457. unsigned long cfgval;
  458. unsigned long ctlval;
  459. } dma_chan_t;
  460. /*
  461.  * ustmsc is a UST/MSC pair (Unadjusted System Time/Media Stream Counter).
  462.  * UST is time in microseconds since the system booted, and MSC is a
  463.  * counter that increments with every audio sample.
  464.  */
  465. typedef struct ustmsc {
  466. unsigned long long ust;
  467. unsigned long msc;
  468. } ustmsc_t;
  469. /*
  470.  * li_ad1843_wait waits until lithium says the AD1843 register
  471.  * exchange is not busy.  Returns 0 on success, -EBUSY on timeout.
  472.  *
  473.  * Locking: must be called with lithium_lock held.
  474.  */
  475. static int li_ad1843_wait(lithium_t *lith)
  476. {
  477. unsigned long later = jiffies + 2;
  478. while (li_readl(lith, LI_CODEC_COMMAND) & LI_CC_BUSY)
  479. if (jiffies >= later)
  480. return -EBUSY;
  481. return 0;
  482. }
  483. /*
  484.  * li_read_ad1843_reg returns the current contents of a 16 bit AD1843 register.
  485.  *
  486.  * Returns unsigned register value on success, -errno on failure.
  487.  */
  488. static int li_read_ad1843_reg(lithium_t *lith, int reg)
  489. {
  490. int val;
  491. ASSERT(!in_interrupt());
  492. spin_lock(&lith->lock);
  493. {
  494. val = li_ad1843_wait(lith);
  495. if (val == 0) {
  496. li_writel(lith, LI_CODEC_COMMAND, LI_CC_DIR_RD | reg);
  497. val = li_ad1843_wait(lith);
  498. }
  499. if (val == 0)
  500. val = li_readl(lith, LI_CODEC_DATA);
  501. }
  502. spin_unlock(&lith->lock);
  503. DBGXV("li_read_ad1843_reg(lith=0x%p, reg=%d) returns 0x%04xn",
  504.       lith, reg, val);
  505. return val;
  506. }
  507. /*
  508.  * li_write_ad1843_reg writes the specified value to a 16 bit AD1843 register.
  509.  */
  510. static void li_write_ad1843_reg(lithium_t *lith, int reg, int newval)
  511. {
  512. spin_lock(&lith->lock);
  513. {
  514. if (li_ad1843_wait(lith) == 0) {
  515. li_writel(lith, LI_CODEC_DATA, newval);
  516. li_writel(lith, LI_CODEC_COMMAND, LI_CC_DIR_WR | reg);
  517. }
  518. }
  519. spin_unlock(&lith->lock);
  520. }
  521. /*
  522.  * li_setup_dma calculates all the register settings for DMA in a particular
  523.  * mode.  It takes too many arguments.
  524.  */
  525. static void li_setup_dma(dma_chan_t *chan,
  526.  const dma_chan_desc_t *desc,
  527.  lithium_t *lith,
  528.  unsigned long buffer_paddr,
  529.  int bufshift,
  530.  int fragshift,
  531.  int channels,
  532.  int sampsize)
  533. {
  534. unsigned long mode, format;
  535. unsigned long size, tmask;
  536. DBGEV("(chan=0x%p, desc=0x%p, lith=0x%p, buffer_paddr=0x%lx, "
  537.      "bufshift=%d, fragshift=%d, channels=%d, sampsize=%d)n",
  538.      chan, desc, lith, buffer_paddr,
  539.      bufshift, fragshift, channels, sampsize);
  540. /* Reset the channel first. */
  541. li_writel(lith, desc->ctlreg, LI_CCTL_RESET);
  542. ASSERT(channels == 1 || channels == 2);
  543. if (channels == 2)
  544. mode = LI_CCFG_MODE_STEREO;
  545. else
  546. mode = LI_CCFG_MODE_MONO;
  547. ASSERT(sampsize == 1 || sampsize == 2);
  548. if (sampsize == 2)
  549. format = LI_CCFG_FMT_16BIT;
  550. else
  551. format = LI_CCFG_FMT_8BIT;
  552. chan->desc = desc;
  553. chan->lith = lith;
  554. /*
  555.  * Lithium DMA address register takes a 40-bit physical
  556.  * address, right-shifted by 8 so it fits in 32 bits.  Bit 37
  557.  * must be set -- it enables cache coherence.
  558.  */
  559. ASSERT(!(buffer_paddr & 0xFF));
  560. chan->baseval = (buffer_paddr >> 8) | 1 << (37 - 8);
  561. chan->cfgval = (!LI_CCFG_LOCK |
  562. SHIFT_FIELD(desc->ad1843_slot, LI_CCFG_SLOT) |
  563. desc->direction |
  564. mode |
  565. format);
  566. size = bufshift - 6;
  567. tmask = 13 - fragshift; /* See Lithium DMA Notes above. */
  568. ASSERT(size >= 2 && size <= 7);
  569. ASSERT(tmask >= 1 && tmask <= 7);
  570. chan->ctlval = (!LI_CCTL_RESET |
  571. SHIFT_FIELD(size, LI_CCTL_SIZE) |
  572. !LI_CCTL_DMA_ENABLE |
  573. SHIFT_FIELD(tmask, LI_CCTL_TMASK) |
  574. SHIFT_FIELD(0, LI_CCTL_TPTR));
  575. DBGPV("basereg 0x%x = 0x%lxn", desc->basereg, chan->baseval);
  576. DBGPV("cfgreg 0x%x = 0x%lxn", desc->cfgreg, chan->cfgval);
  577. DBGPV("ctlreg 0x%x = 0x%lxn", desc->ctlreg, chan->ctlval);
  578. li_writel(lith, desc->basereg, chan->baseval);
  579. li_writel(lith, desc->cfgreg, chan->cfgval);
  580. li_writel(lith, desc->ctlreg, chan->ctlval);
  581. DBGRV();
  582. }
  583. static void li_shutdown_dma(dma_chan_t *chan)
  584. {
  585. lithium_t *lith = chan->lith;
  586. caddr_t lith1 = lith->page1;
  587. DBGEV("(chan=0x%p)n", chan);
  588. chan->ctlval &= ~LI_CCTL_DMA_ENABLE;
  589. DBGPV("ctlreg 0x%x = 0x%lxn", chan->desc->ctlreg, chan->ctlval);
  590. li_writel(lith, chan->desc->ctlreg, chan->ctlval);
  591. /*
  592.  * Offset 0x500 on Lithium page 1 is an undocumented,
  593.  * unsupported register that holds the zero sample value.
  594.  * Lithium is supposed to output zero samples when DMA is
  595.  * inactive, and repeat the last sample when DMA underflows.
  596.  * But it has a bug, where, after underflow occurs, the zero
  597.  * sample is not reset.
  598.  *
  599.  * I expect this to break in a future rev of Lithium.
  600.  */
  601. if (lith1 && chan->desc->direction == LI_CCFG_DIR_OUT)
  602. * (volatile unsigned long *) (lith1 + 0x500) = 0;
  603. }
  604. /*
  605.  * li_activate_dma always starts dma at the beginning of the buffer.
  606.  *
  607.  * N.B., these may be called from interrupt.
  608.  */
  609. static __inline__ void li_activate_dma(dma_chan_t *chan)
  610. {
  611. chan->ctlval |= LI_CCTL_DMA_ENABLE;
  612. DBGPV("ctlval = 0x%lxn", chan->ctlval);
  613. li_writel(chan->lith, chan->desc->ctlreg, chan->ctlval);
  614. }
  615. static void li_deactivate_dma(dma_chan_t *chan)
  616. {
  617. lithium_t *lith = chan->lith;
  618. caddr_t lith2 = lith->page2;
  619. chan->ctlval &= ~(LI_CCTL_DMA_ENABLE | LI_CCTL_RPTR | LI_CCTL_WPTR);
  620. DBGPV("ctlval = 0x%lxn", chan->ctlval);
  621. DBGPV("ctlreg 0x%x = 0x%lxn", chan->desc->ctlreg, chan->ctlval);
  622. li_writel(lith, chan->desc->ctlreg, chan->ctlval);
  623. /*
  624.  * Offsets 0x98 and 0x9C on Lithium page 2 are undocumented,
  625.  * unsupported registers that are internal copies of the DMA
  626.  * read and write pointers.  Because of a Lithium bug, these
  627.  * registers aren't zeroed correctly when DMA is shut off.  So
  628.  * we whack them directly.
  629.  *
  630.  * I expect this to break in a future rev of Lithium.
  631.  */
  632. if (lith2 && chan->desc->direction == LI_CCFG_DIR_OUT) {
  633. * (volatile unsigned long *) (lith2 + 0x98) = 0;
  634. * (volatile unsigned long *) (lith2 + 0x9C) = 0;
  635. }
  636. }
  637. /*
  638.  * read/write the ring buffer pointers.  These routines' arguments and results
  639.  * are byte offsets from the beginning of the ring buffer.
  640.  */
  641. static __inline__ int li_read_swptr(dma_chan_t *chan)
  642. {
  643. const unsigned long mask = chan->desc->swptrmask;
  644. return CHUNKS_TO_BYTES(UNSHIFT_FIELD(chan->ctlval, mask));
  645. }
  646. static __inline__ int li_read_hwptr(dma_chan_t *chan)
  647. {
  648. return CHUNKS_TO_BYTES(li_readb(chan->lith, chan->desc->hwptrreg));
  649. }
  650. static __inline__ void li_write_swptr(dma_chan_t *chan, int val)
  651. {
  652. const unsigned long mask = chan->desc->swptrmask;
  653. ASSERT(!(val & ~CHUNKS_TO_BYTES(0xFF)));
  654. val = BYTES_TO_CHUNKS(val);
  655. chan->ctlval = (chan->ctlval & ~mask) | SHIFT_FIELD(val, mask);
  656. li_writeb(chan->lith, chan->desc->swptrreg, val);
  657. }
  658. /* li_read_USTMSC() returns a UST/MSC pair for the given channel. */
  659. static void li_read_USTMSC(dma_chan_t *chan, ustmsc_t *ustmsc)
  660. {
  661. lithium_t *lith = chan->lith;
  662. const dma_chan_desc_t *desc = chan->desc;
  663. unsigned long now_low, now_high0, now_high1, chan_ust;
  664. spin_lock(&lith->lock);
  665. {
  666. /*
  667.  * retry until we do all five reads without the
  668.  * high word changing.  (High word increments
  669.  * every 2^32 microseconds, i.e., not often)
  670.  */
  671. do {
  672. now_high0 = li_readl(lith, LI_UST_HIGH);
  673. now_low = li_readl(lith, LI_UST_LOW);
  674. /*
  675.  * Lithium guarantees these two reads will be
  676.  * atomic -- ust will not increment after msc
  677.  * is read.
  678.  */
  679. ustmsc->msc = li_readl(lith, desc->mscreg);
  680. chan_ust = li_readl(lith, desc->ustreg);
  681. now_high1 = li_readl(lith, LI_UST_HIGH);
  682. } while (now_high0 != now_high1);
  683. }
  684. spin_unlock(&lith->lock);
  685. ustmsc->ust = ((unsigned long long) now_high0 << 32 | chan_ust);
  686. }
  687. static void li_enable_interrupts(lithium_t *lith, unsigned int mask)
  688. {
  689. DBGEV("(lith=0x%p, mask=0x%x)n", lith, mask);
  690. /* clear any already-pending interrupts. */
  691. li_writel(lith, LI_INTR_STATUS, mask);
  692. /* enable the interrupts. */
  693. mask |= li_readl(lith, LI_INTR_MASK);
  694. li_writel(lith, LI_INTR_MASK, mask);
  695. }
  696. static void li_disable_interrupts(lithium_t *lith, unsigned int mask)
  697. {
  698. unsigned int keepmask;
  699. DBGEV("(lith=0x%p, mask=0x%x)n", lith, mask);
  700. /* disable the interrupts */
  701. keepmask = li_readl(lith, LI_INTR_MASK) & ~mask;
  702. li_writel(lith, LI_INTR_MASK, keepmask);
  703. /* clear any pending interrupts. */
  704. li_writel(lith, LI_INTR_STATUS, mask);
  705. }
  706. /* Get the interrupt status and clear all pending interrupts. */
  707. static unsigned int li_get_clear_intr_status(lithium_t *lith)
  708. {
  709. unsigned int status;
  710. status = li_readl(lith, LI_INTR_STATUS);
  711. li_writel(lith, LI_INTR_STATUS, ~0);
  712. return status & li_readl(lith, LI_INTR_MASK);
  713. }
  714. static int li_init(lithium_t *lith)
  715. {
  716. /* 1. System power supplies stabilize. */
  717. /* 2. Assert the ~RESET signal. */
  718. li_writel(lith, LI_HOST_CONTROLLER, LI_HC_RESET);
  719. udelay(1);
  720. /* 3. Deassert the ~RESET signal and enter a wait period to allow
  721.    the AD1843 internal clocks and the external crystal oscillator
  722.    to stabilize. */
  723. li_writel(lith, LI_HOST_CONTROLLER, LI_HC_LINK_ENABLE);
  724. udelay(1);
  725. return 0;
  726. }
  727. /*****************************************************************************/
  728. /* AD1843 access */
  729. /*
  730.  * AD1843 bitfield definitions.  All are named as in the AD1843 data
  731.  * sheet, with ad1843_ prepended and individual bit numbers removed.
  732.  *
  733.  * E.g., bits LSS0 through LSS2 become ad1843_LSS.
  734.  *
  735.  * Only the bitfields we need are defined.
  736.  */
  737. typedef struct ad1843_bitfield {
  738. char reg;
  739. char lo_bit;
  740. char nbits;
  741. } ad1843_bitfield_t;
  742. static const ad1843_bitfield_t
  743. ad1843_PDNO   = {  0, 14,  1 }, /* Converter Power-Down Flag */
  744. ad1843_INIT   = {  0, 15,  1 }, /* Clock Initialization Flag */
  745. ad1843_RIG    = {  2,  0,  4 }, /* Right ADC Input Gain */
  746. ad1843_RMGE   = {  2,  4,  1 }, /* Right ADC Mic Gain Enable */
  747. ad1843_RSS    = {  2,  5,  3 }, /* Right ADC Source Select */
  748. ad1843_LIG    = {  2,  8,  4 }, /* Left ADC Input Gain */
  749. ad1843_LMGE   = {  2, 12,  1 }, /* Left ADC Mic Gain Enable */
  750. ad1843_LSS    = {  2, 13,  3 }, /* Left ADC Source Select */
  751. ad1843_RX1M   = {  4,  0,  5 }, /* Right Aux 1 Mix Gain/Atten */
  752. ad1843_RX1MM  = {  4,  7,  1 }, /* Right Aux 1 Mix Mute */
  753. ad1843_LX1M   = {  4,  8,  5 }, /* Left Aux 1 Mix Gain/Atten */
  754. ad1843_LX1MM  = {  4, 15,  1 }, /* Left Aux 1 Mix Mute */
  755. ad1843_RX2M   = {  5,  0,  5 }, /* Right Aux 2 Mix Gain/Atten */
  756. ad1843_RX2MM  = {  5,  7,  1 }, /* Right Aux 2 Mix Mute */
  757. ad1843_LX2M   = {  5,  8,  5 }, /* Left Aux 2 Mix Gain/Atten */
  758. ad1843_LX2MM  = {  5, 15,  1 }, /* Left Aux 2 Mix Mute */
  759. ad1843_RMCM   = {  7,  0,  5 }, /* Right Mic Mix Gain/Atten */
  760. ad1843_RMCMM  = {  7,  7,  1 }, /* Right Mic Mix Mute */
  761. ad1843_LMCM   = {  7,  8,  5 }, /* Left Mic Mix Gain/Atten */
  762. ad1843_LMCMM  = {  7, 15,  1 }, /* Left Mic Mix Mute */
  763. ad1843_HPOS   = {  8,  4,  1 }, /* Headphone Output Voltage Swing */
  764. ad1843_HPOM   = {  8,  5,  1 }, /* Headphone Output Mute */
  765. ad1843_RDA1G  = {  9,  0,  6 }, /* Right DAC1 Analog/Digital Gain */
  766. ad1843_RDA1GM = {  9,  7,  1 }, /* Right DAC1 Analog Mute */
  767. ad1843_LDA1G  = {  9,  8,  6 }, /* Left DAC1 Analog/Digital Gain */
  768. ad1843_LDA1GM = {  9, 15,  1 }, /* Left DAC1 Analog Mute */
  769. ad1843_RDA1AM = { 11,  7,  1 }, /* Right DAC1 Digital Mute */
  770. ad1843_LDA1AM = { 11, 15,  1 }, /* Left DAC1 Digital Mute */
  771. ad1843_ADLC   = { 15,  0,  2 }, /* ADC Left Sample Rate Source */
  772. ad1843_ADRC   = { 15,  2,  2 }, /* ADC Right Sample Rate Source */
  773. ad1843_DA1C   = { 15,  8,  2 }, /* DAC1 Sample Rate Source */
  774. ad1843_C1C    = { 17,  0, 16 }, /* Clock 1 Sample Rate Select */
  775. ad1843_C2C    = { 20,  0, 16 }, /* Clock 1 Sample Rate Select */
  776. ad1843_DAADL  = { 25,  4,  2 }, /* Digital ADC Left Source Select */
  777. ad1843_DAADR  = { 25,  6,  2 }, /* Digital ADC Right Source Select */
  778. ad1843_DRSFLT = { 25, 15,  1 }, /* Digital Reampler Filter Mode */
  779. ad1843_ADLF   = { 26,  0,  2 }, /* ADC Left Channel Data Format */
  780. ad1843_ADRF   = { 26,  2,  2 }, /* ADC Right Channel Data Format */
  781. ad1843_ADTLK  = { 26,  4,  1 }, /* ADC Transmit Lock Mode Select */
  782. ad1843_SCF    = { 26,  7,  1 }, /* SCLK Frequency Select */
  783. ad1843_DA1F   = { 26,  8,  2 }, /* DAC1 Data Format Select */
  784. ad1843_DA1SM  = { 26, 14,  1 }, /* DAC1 Stereo/Mono Mode Select */
  785. ad1843_ADLEN  = { 27,  0,  1 }, /* ADC Left Channel Enable */
  786. ad1843_ADREN  = { 27,  1,  1 }, /* ADC Right Channel Enable */
  787. ad1843_AAMEN  = { 27,  4,  1 }, /* Analog to Analog Mix Enable */
  788. ad1843_ANAEN  = { 27,  7,  1 }, /* Analog Channel Enable */
  789. ad1843_DA1EN  = { 27,  8,  1 }, /* DAC1 Enable */
  790. ad1843_DA2EN  = { 27,  9,  1 }, /* DAC2 Enable */
  791. ad1843_C1EN   = { 28, 11,  1 }, /* Clock Generator 1 Enable */
  792. ad1843_C2EN   = { 28, 12,  1 }, /* Clock Generator 2 Enable */
  793. ad1843_PDNI   = { 28, 15,  1 }; /* Converter Power Down */
  794. /*
  795.  * The various registers of the AD1843 use three different formats for
  796.  * specifying gain.  The ad1843_gain structure parameterizes the
  797.  * formats.
  798.  */
  799. typedef struct ad1843_gain {
  800. int negative; /* nonzero if gain is negative. */
  801. const ad1843_bitfield_t *lfield;
  802. const ad1843_bitfield_t *rfield;
  803. } ad1843_gain_t;
  804. static const ad1843_gain_t ad1843_gain_RECLEV
  805. = { 0, &ad1843_LIG,   &ad1843_RIG };
  806. static const ad1843_gain_t ad1843_gain_LINE
  807. = { 1, &ad1843_LX1M,  &ad1843_RX1M };
  808. static const ad1843_gain_t ad1843_gain_CD
  809. = { 1, &ad1843_LX2M,  &ad1843_RX2M };
  810. static const ad1843_gain_t ad1843_gain_MIC
  811. = { 1, &ad1843_LMCM,  &ad1843_RMCM };
  812. static const ad1843_gain_t ad1843_gain_PCM
  813. = { 1, &ad1843_LDA1G, &ad1843_RDA1G };
  814. /* read the current value of an AD1843 bitfield. */
  815. static int ad1843_read_bits(lithium_t *lith, const ad1843_bitfield_t *field)
  816. {
  817. int w = li_read_ad1843_reg(lith, field->reg);
  818. int val = w >> field->lo_bit & ((1 << field->nbits) - 1);
  819. DBGXV("ad1843_read_bits(lith=0x%p, field->{%d %d %d}) returns 0x%xn",
  820.       lith, field->reg, field->lo_bit, field->nbits, val);
  821. return val;
  822. }
  823. /*
  824.  * write a new value to an AD1843 bitfield and return the old value.
  825.  */
  826. static int ad1843_write_bits(lithium_t *lith,
  827.      const ad1843_bitfield_t *field,
  828.      int newval)
  829. {
  830. int w = li_read_ad1843_reg(lith, field->reg);
  831. int mask = ((1 << field->nbits) - 1) << field->lo_bit;
  832. int oldval = (w & mask) >> field->lo_bit;
  833. int newbits = (newval << field->lo_bit) & mask;
  834. w = (w & ~mask) | newbits;
  835. (void) li_write_ad1843_reg(lith, field->reg, w);
  836. DBGXV("ad1843_write_bits(lith=0x%p, field->{%d %d %d}, val=0x%x) "
  837.       "returns 0x%xn",
  838.       lith, field->reg, field->lo_bit, field->nbits, newval,
  839.       oldval);
  840. return oldval;
  841. }
  842. /*
  843.  * ad1843_read_multi reads multiple bitfields from the same AD1843
  844.  * register.  It uses a single read cycle to do it.  (Reading the
  845.  * ad1843 requires 256 bit times at 12.288 MHz, or nearly 20
  846.  * microseconds.)
  847.  *
  848.  * Called ike this.
  849.  *
  850.  *  ad1843_read_multi(lith, nfields,
  851.  *       &ad1843_FIELD1, &val1,
  852.  *       &ad1843_FIELD2, &val2, ...);
  853.  */
  854. static void ad1843_read_multi(lithium_t *lith, int argcount, ...)
  855. {
  856. va_list ap;
  857. const ad1843_bitfield_t *fp;
  858. int w = 0, mask, *value, reg = -1;
  859. va_start(ap, argcount);
  860. while (--argcount >= 0) {
  861. fp = va_arg(ap, const ad1843_bitfield_t *);
  862. value = va_arg(ap, int *);
  863. if (reg == -1) {
  864. reg = fp->reg;
  865. w = li_read_ad1843_reg(lith, reg);
  866. }
  867. ASSERT(reg == fp->reg);
  868. mask = (1 << fp->nbits) - 1;
  869. *value = w >> fp->lo_bit & mask;
  870. }
  871. va_end(ap);
  872. }
  873. /*
  874.  * ad1843_write_multi stores multiple bitfields into the same AD1843
  875.  * register.  It uses one read and one write cycle to do it.
  876.  *
  877.  * Called like this.
  878.  *
  879.  *  ad1843_write_multi(lith, nfields,
  880.  *        &ad1843_FIELD1, val1,
  881.  *        &ad1843_FIELF2, val2, ...);
  882.  */
  883. static void ad1843_write_multi(lithium_t *lith, int argcount, ...)
  884. {
  885. va_list ap;
  886. int reg;
  887. const ad1843_bitfield_t *fp;
  888. int value;
  889. int w, m, mask, bits;
  890. mask = 0;
  891. bits = 0;
  892. reg = -1;
  893. va_start(ap, argcount);
  894. while (--argcount >= 0) {
  895. fp = va_arg(ap, const ad1843_bitfield_t *);
  896. value = va_arg(ap, int);
  897. if (reg == -1)
  898. reg = fp->reg;
  899. ASSERT(fp->reg == reg);
  900. m = ((1 << fp->nbits) - 1) << fp->lo_bit;
  901. mask |= m;
  902. bits |= (value << fp->lo_bit) & m;
  903. }
  904. va_end(ap);
  905. ASSERT(!(bits & ~mask));
  906. if (~mask & 0xFFFF)
  907. w = li_read_ad1843_reg(lith, reg);
  908. else
  909. w = 0;
  910. w = (w & ~mask) | bits;
  911. (void) li_write_ad1843_reg(lith, reg, w);
  912. }
  913. /*
  914.  * ad1843_get_gain reads the specified register and extracts the gain value
  915.  * using the supplied gain type.  It returns the gain in OSS format.
  916.  */
  917. static int ad1843_get_gain(lithium_t *lith, const ad1843_gain_t *gp)
  918. {
  919. int lg, rg;
  920. unsigned short mask = (1 << gp->lfield->nbits) - 1;
  921. ad1843_read_multi(lith, 2, gp->lfield, &lg, gp->rfield, &rg);
  922. if (gp->negative) {
  923. lg = mask - lg;
  924. rg = mask - rg;
  925. }
  926. lg = (lg * 100 + (mask >> 1)) / mask;
  927. rg = (rg * 100 + (mask >> 1)) / mask;
  928. return lg << 0 | rg << 8;
  929. }
  930. /*
  931.  * Set an audio channel's gain. Converts from OSS format to AD1843's
  932.  * format.
  933.  *
  934.  * Returns the new gain, which may be lower than the old gain.
  935.  */
  936. static int ad1843_set_gain(lithium_t *lith,
  937.    const ad1843_gain_t *gp,
  938.    int newval)
  939. {
  940. unsigned short mask = (1 << gp->lfield->nbits) - 1;
  941. int lg = newval >> 0 & 0xFF;
  942. int rg = newval >> 8;
  943. if (lg < 0 || lg > 100 || rg < 0 || rg > 100)
  944. return -EINVAL;
  945. lg = (lg * mask + (mask >> 1)) / 100;
  946. rg = (rg * mask + (mask >> 1)) / 100;
  947. if (gp->negative) {
  948. lg = mask - lg;
  949. rg = mask - rg;
  950. }
  951. ad1843_write_multi(lith, 2, gp->lfield, lg, gp->rfield, rg);
  952. return ad1843_get_gain(lith, gp);
  953. }
  954. /* Returns the current recording source, in OSS format. */
  955. static int ad1843_get_recsrc(lithium_t *lith)
  956. {
  957. int ls = ad1843_read_bits(lith, &ad1843_LSS);
  958. switch (ls) {
  959. case 1:
  960. return SOUND_MASK_MIC;
  961. case 2:
  962. return SOUND_MASK_LINE;
  963. case 3:
  964. return SOUND_MASK_CD;
  965. case 6:
  966. return SOUND_MASK_PCM;
  967. default:
  968. ASSERT(0);
  969. return -1;
  970. }
  971. }
  972. /*
  973.  * Enable/disable digital resample mode in the AD1843.
  974.  *
  975.  * The AD1843 requires that ADL, ADR, DA1 and DA2 be powered down
  976.  * while switching modes.  So we save DA1's state (DA2's state is not
  977.  * interesting), power them down, switch into/out of resample mode,
  978.  * power them up, and restore state.
  979.  *
  980.  * This will cause audible glitches if D/A or A/D is going on, so the
  981.  * driver disallows that (in mixer_write_ioctl()).
  982.  *
  983.  * The open question is, is this worth doing?  I'm leaving it in,
  984.  * because it's written, but...
  985.  */
  986. static void ad1843_set_resample_mode(lithium_t *lith, int onoff)
  987. {
  988. /* Save DA1 mute and gain (addr 9 is DA1 analog gain/attenuation) */
  989. int save_da1 = li_read_ad1843_reg(lith, 9);
  990. /* Power down A/D and D/A. */
  991. ad1843_write_multi(lith, 4,
  992.    &ad1843_DA1EN, 0,
  993.    &ad1843_DA2EN, 0,
  994.    &ad1843_ADLEN, 0,
  995.    &ad1843_ADREN, 0);
  996. /* Switch mode */
  997. ASSERT(onoff == 0 || onoff == 1);
  998. ad1843_write_bits(lith, &ad1843_DRSFLT, onoff);
  999.   /* Power up A/D and D/A. */
  1000. ad1843_write_multi(lith, 3,
  1001.    &ad1843_DA1EN, 1,
  1002.    &ad1843_ADLEN, 1,
  1003.    &ad1843_ADREN, 1);
  1004. /* Restore DA1 mute and gain. */
  1005. li_write_ad1843_reg(lith, 9, save_da1);
  1006. }
  1007. /*
  1008.  * Set recording source.  Arg newsrc specifies an OSS channel mask.
  1009.  *
  1010.  * The complication is that when we switch into/out of loopback mode
  1011.  * (i.e., src = SOUND_MASK_PCM), we change the AD1843 into/out of
  1012.  * digital resampling mode.
  1013.  *
  1014.  * Returns newsrc on success, -errno on failure.
  1015.  */
  1016. static int ad1843_set_recsrc(lithium_t *lith, int newsrc)
  1017. {
  1018. int bits;
  1019. int oldbits;
  1020. switch (newsrc) {
  1021. case SOUND_MASK_PCM:
  1022. bits = 6;
  1023. break;
  1024. case SOUND_MASK_MIC:
  1025. bits = 1;
  1026. break;
  1027. case SOUND_MASK_LINE:
  1028. bits = 2;
  1029. break;
  1030. case SOUND_MASK_CD:
  1031. bits = 3;
  1032. break;
  1033. default:
  1034. return -EINVAL;
  1035. }
  1036. oldbits = ad1843_read_bits(lith, &ad1843_LSS);
  1037. if (newsrc == SOUND_MASK_PCM && oldbits != 6) {
  1038. DBGP("enabling digital resample moden");
  1039. ad1843_set_resample_mode(lith, 1);
  1040. ad1843_write_multi(lith, 2,
  1041.    &ad1843_DAADL, 2,
  1042.    &ad1843_DAADR, 2);
  1043. } else if (newsrc != SOUND_MASK_PCM && oldbits == 6) {
  1044. DBGP("disabling digital resample moden");
  1045. ad1843_set_resample_mode(lith, 0);
  1046. ad1843_write_multi(lith, 2,
  1047.    &ad1843_DAADL, 0,
  1048.    &ad1843_DAADR, 0);
  1049. }
  1050. ad1843_write_multi(lith, 2, &ad1843_LSS, bits, &ad1843_RSS, bits);
  1051. return newsrc;
  1052. }
  1053. /*
  1054.  * Return current output sources, in OSS format.
  1055.  */
  1056. static int ad1843_get_outsrc(lithium_t *lith)
  1057. {
  1058. int pcm, line, mic, cd;
  1059. pcm  = ad1843_read_bits(lith, &ad1843_LDA1GM) ? 0 : SOUND_MASK_PCM;
  1060. line = ad1843_read_bits(lith, &ad1843_LX1MM)  ? 0 : SOUND_MASK_LINE;
  1061. cd   = ad1843_read_bits(lith, &ad1843_LX2MM)  ? 0 : SOUND_MASK_CD;
  1062. mic  = ad1843_read_bits(lith, &ad1843_LMCMM)  ? 0 : SOUND_MASK_MIC;
  1063. return pcm | line | cd | mic;
  1064. }
  1065. /*
  1066.  * Set output sources.  Arg is a mask of active sources in OSS format.
  1067.  *
  1068.  * Returns source mask on success, -errno on failure.
  1069.  */
  1070. static int ad1843_set_outsrc(lithium_t *lith, int mask)
  1071. {
  1072. int pcm, line, mic, cd;
  1073. if (mask & ~(SOUND_MASK_PCM | SOUND_MASK_LINE |
  1074.      SOUND_MASK_CD | SOUND_MASK_MIC))
  1075. return -EINVAL;
  1076. pcm  = (mask & SOUND_MASK_PCM)  ? 0 : 1;
  1077. line = (mask & SOUND_MASK_LINE) ? 0 : 1;
  1078. mic  = (mask & SOUND_MASK_MIC)  ? 0 : 1;
  1079. cd   = (mask & SOUND_MASK_CD)   ? 0 : 1;
  1080. ad1843_write_multi(lith, 2, &ad1843_LDA1GM, pcm, &ad1843_RDA1GM, pcm);
  1081. ad1843_write_multi(lith, 2, &ad1843_LX1MM, line, &ad1843_RX1MM, line);
  1082. ad1843_write_multi(lith, 2, &ad1843_LX2MM, cd,   &ad1843_RX2MM, cd);
  1083. ad1843_write_multi(lith, 2, &ad1843_LMCMM, mic,  &ad1843_RMCMM, mic);
  1084. return mask;
  1085. }
  1086. /* Setup ad1843 for D/A conversion. */
  1087. static void ad1843_setup_dac(lithium_t *lith,
  1088.      int framerate,
  1089.      int fmt,
  1090.      int channels)
  1091. {
  1092. int ad_fmt = 0, ad_mode = 0;
  1093. DBGEV("(lith=0x%p, framerate=%d, fmt=%d, channels=%d)n",
  1094.       lith, framerate, fmt, channels);
  1095. switch (fmt) {
  1096. case AFMT_S8: ad_fmt = 1; break;
  1097. case AFMT_U8: ad_fmt = 1; break;
  1098. case AFMT_S16_LE: ad_fmt = 1; break;
  1099. case AFMT_MU_LAW: ad_fmt = 2; break;
  1100. case AFMT_A_LAW: ad_fmt = 3; break;
  1101. default: ASSERT(0);
  1102. }
  1103. switch (channels) {
  1104. case 2: ad_mode = 0; break;
  1105. case 1: ad_mode = 1; break;
  1106. default: ASSERT(0);
  1107. }
  1108. DBGPV("ad_mode = %d, ad_fmt = %dn", ad_mode, ad_fmt);
  1109. ASSERT(framerate >= 4000 && framerate <= 49000);
  1110. ad1843_write_bits(lith, &ad1843_C1C, framerate);
  1111. ad1843_write_multi(lith, 2,
  1112.    &ad1843_DA1SM, ad_mode, &ad1843_DA1F, ad_fmt);
  1113. }
  1114. static void ad1843_shutdown_dac(lithium_t *lith)
  1115. {
  1116. ad1843_write_bits(lith, &ad1843_DA1F, 1);
  1117. }
  1118. static void ad1843_setup_adc(lithium_t *lith, int framerate, int fmt, int channels)
  1119. {
  1120. int da_fmt = 0;
  1121. DBGEV("(lith=0x%p, framerate=%d, fmt=%d, channels=%d)n",
  1122.       lith, framerate, fmt, channels);
  1123. switch (fmt) {
  1124. case AFMT_S8: da_fmt = 1; break;
  1125. case AFMT_U8: da_fmt = 1; break;
  1126. case AFMT_S16_LE: da_fmt = 1; break;
  1127. case AFMT_MU_LAW: da_fmt = 2; break;
  1128. case AFMT_A_LAW: da_fmt = 3; break;
  1129. default: ASSERT(0);
  1130. }
  1131. DBGPV("da_fmt = %dn", da_fmt);
  1132. ASSERT(framerate >= 4000 && framerate <= 49000);
  1133. ad1843_write_bits(lith, &ad1843_C2C, framerate);
  1134. ad1843_write_multi(lith, 2,
  1135.    &ad1843_ADLF, da_fmt, &ad1843_ADRF, da_fmt);
  1136. }
  1137. static void ad1843_shutdown_adc(lithium_t *lith)
  1138. {
  1139. /* nothing to do */
  1140. }
  1141. /*
  1142.  * Fully initialize the ad1843.  As described in the AD1843 data
  1143.  * sheet, section "START-UP SEQUENCE".  The numbered comments are
  1144.  * subsection headings from the data sheet.  See the data sheet, pages
  1145.  * 52-54, for more info.
  1146.  *
  1147.  * return 0 on success, -errno on failure.  */
  1148. static int __init ad1843_init(lithium_t *lith)
  1149. {
  1150. unsigned long later;
  1151. int err;
  1152. err = li_init(lith);
  1153. if (err)
  1154. return err;
  1155. if (ad1843_read_bits(lith, &ad1843_INIT) != 0) {
  1156. printk(KERN_ERR "vwsnd sound: AD1843 won't initializen");
  1157. return -EIO;
  1158. }
  1159. ad1843_write_bits(lith, &ad1843_SCF, 1);
  1160. /* 4. Put the conversion resources into standby. */
  1161. ad1843_write_bits(lith, &ad1843_PDNI, 0);
  1162. later = jiffies + HZ / 2; /* roughly half a second */
  1163. DBGDO(shut_up++);
  1164. while (ad1843_read_bits(lith, &ad1843_PDNO)) {
  1165. if (jiffies > later) {
  1166. printk(KERN_ERR
  1167.        "vwsnd audio: AD1843 won't power upn");
  1168. return -EIO;
  1169. }
  1170. schedule();
  1171. }
  1172. DBGDO(shut_up--);
  1173. /* 5. Power up the clock generators and enable clock output pins. */
  1174. ad1843_write_multi(lith, 2, &ad1843_C1EN, 1, &ad1843_C2EN, 1);
  1175. /* 6. Configure conversion resources while they are in standby. */
  1176.   /* DAC1 uses clock 1 as source, ADC uses clock 2.  Always. */
  1177. ad1843_write_multi(lith, 3,
  1178.    &ad1843_DA1C, 1,
  1179.    &ad1843_ADLC, 2,
  1180.    &ad1843_ADRC, 2);
  1181. /* 7. Enable conversion resources. */
  1182. ad1843_write_bits(lith, &ad1843_ADTLK, 1);
  1183. ad1843_write_multi(lith, 5,
  1184.    &ad1843_ANAEN, 1,
  1185.    &ad1843_AAMEN, 1,
  1186.    &ad1843_DA1EN, 1,
  1187.    &ad1843_ADLEN, 1,
  1188.    &ad1843_ADREN, 1);
  1189. /* 8. Configure conversion resources while they are enabled. */
  1190. ad1843_write_bits(lith, &ad1843_DA1C, 1);
  1191. /* Unmute all channels. */
  1192. ad1843_set_outsrc(lith,
  1193.   (SOUND_MASK_PCM | SOUND_MASK_LINE |
  1194.    SOUND_MASK_MIC | SOUND_MASK_CD));
  1195. ad1843_write_multi(lith, 2, &ad1843_LDA1AM, 0, &ad1843_RDA1AM, 0);
  1196. /* Set default recording source to Line In and set
  1197.  * mic gain to +20 dB.
  1198.  */
  1199. ad1843_set_recsrc(lith, SOUND_MASK_LINE);
  1200. ad1843_write_multi(lith, 2, &ad1843_LMGE, 1, &ad1843_RMGE, 1);
  1201. /* Set Speaker Out level to +/- 4V and unmute it. */
  1202. ad1843_write_multi(lith, 2, &ad1843_HPOS, 1, &ad1843_HPOM, 0);
  1203. return 0;
  1204. }
  1205. /*****************************************************************************/
  1206. /* PCM I/O */
  1207. #define READ_INTR_MASK  (LI_INTR_COMM1_TRIG | LI_INTR_COMM1_OVERFLOW)
  1208. #define WRITE_INTR_MASK (LI_INTR_COMM2_TRIG | LI_INTR_COMM2_UNDERFLOW)
  1209. typedef enum vwsnd_port_swstate { /* software state */
  1210. SW_OFF,
  1211. SW_INITIAL,
  1212. SW_RUN,
  1213. SW_DRAIN,
  1214. } vwsnd_port_swstate_t;
  1215. typedef enum vwsnd_port_hwstate { /* hardware state */
  1216. HW_STOPPED,
  1217. HW_RUNNING,
  1218. } vwsnd_port_hwstate_t;
  1219. /*
  1220.  * These flags are read by ISR, but only written at baseline.
  1221.  */
  1222. typedef enum vwsnd_port_flags {
  1223. DISABLED = 1 << 0,
  1224. ERFLOWN  = 1 << 1, /* overflown or underflown */
  1225. HW_BUSY  = 1 << 2,
  1226. } vwsnd_port_flags_t;
  1227. /*
  1228.  * vwsnd_port is the per-port data structure.  Each device has two
  1229.  * ports, one for input and one for output.
  1230.  *
  1231.  * Locking:
  1232.  *
  1233.  * port->lock protects: hwstate, flags, swb_[iu]_avail.
  1234.  *
  1235.  * devc->io_sema protects: swstate, sw_*, swb_[iu]_idx.
  1236.  *
  1237.  * everything else is only written by open/release or
  1238.  * pcm_{setup,shutdown}(), which are serialized by a
  1239.  * combination of devc->open_sema and devc->io_sema.
  1240.  */
  1241. typedef struct vwsnd_port {
  1242. spinlock_t lock;
  1243. wait_queue_head_t queue;
  1244. vwsnd_port_swstate_t swstate;
  1245. vwsnd_port_hwstate_t hwstate;
  1246. vwsnd_port_flags_t flags;
  1247. int sw_channels;
  1248. int sw_samplefmt;
  1249. int sw_framerate;
  1250. int sample_size;
  1251. int frame_size;
  1252. unsigned int zero_word; /* zero for the sample format */
  1253. int sw_fragshift;
  1254. int sw_fragcount;
  1255. int sw_subdivshift;
  1256. unsigned int hw_fragshift;
  1257. unsigned int hw_fragsize;
  1258. unsigned int hw_fragcount;
  1259. int hwbuf_size;
  1260. unsigned long hwbuf_paddr;
  1261. unsigned long hwbuf_vaddr;
  1262. caddr_t hwbuf; /* hwbuf == hwbuf_vaddr */
  1263. int hwbuf_max; /* max bytes to preload */
  1264. caddr_t swbuf;
  1265. unsigned int swbuf_size; /* size in bytes */
  1266. unsigned int swb_u_idx; /* index of next user byte */
  1267. unsigned int swb_i_idx; /* index of next intr byte */
  1268. unsigned int swb_u_avail; /* # bytes avail to user */
  1269. unsigned int swb_i_avail; /* # bytes avail to intr */
  1270. dma_chan_t chan;
  1271. /* Accounting */
  1272. int byte_count;
  1273. int frag_count;
  1274. int MSC_offset;
  1275. } vwsnd_port_t;
  1276. /* vwsnd_dev is the per-device data structure. */
  1277. typedef struct vwsnd_dev {
  1278. struct vwsnd_dev *next_dev;
  1279. int audio_minor; /* minor number of audio device */
  1280. int mixer_minor; /* minor number of mixer device */
  1281. struct semaphore open_sema;
  1282. struct semaphore io_sema;
  1283. struct semaphore mix_sema;
  1284. mode_t open_mode;
  1285. wait_queue_head_t open_wait;
  1286. lithium_t lith;
  1287. vwsnd_port_t rport;
  1288. vwsnd_port_t wport;
  1289. } vwsnd_dev_t;
  1290. static vwsnd_dev_t *vwsnd_dev_list; /* linked list of all devices */
  1291. static atomic_t vwsnd_use_count = ATOMIC_INIT(0);
  1292. # define INC_USE_COUNT (atomic_inc(&vwsnd_use_count))
  1293. # define DEC_USE_COUNT (atomic_dec(&vwsnd_use_count))
  1294. # define IN_USE        (atomic_read(&vwsnd_use_count) != 0)
  1295. /*
  1296.  * Lithium can only DMA multiples of 32 bytes.  Its DMA buffer may
  1297.  * be up to 8 Kb.  This driver always uses 8 Kb.
  1298.  *
  1299.  * Memory bug workaround -- I'm not sure what's going on here, but
  1300.  * somehow pcm_copy_out() was triggering segv's going on to the next
  1301.  * page of the hw buffer.  So, I make the hw buffer one size bigger
  1302.  * than we actually use.  That way, the following page is allocated
  1303.  * and mapped, and no error.  I suspect that something is broken
  1304.  * in Cobalt, but haven't really investigated.  HBO is the actual
  1305.  * size of the buffer, and HWBUF_ORDER is what we allocate.
  1306.  */
  1307. #define HWBUF_SHIFT 13
  1308. #define HWBUF_SIZE (1 << HWBUF_SHIFT)
  1309. # define HBO         (HWBUF_SHIFT > PAGE_SHIFT ? HWBUF_SHIFT - PAGE_SHIFT : 0)
  1310. # define HWBUF_ORDER (HBO + 1) /* next size bigger */
  1311. #define MIN_SPEED 4000
  1312. #define MAX_SPEED 49000
  1313. #define MIN_FRAGSHIFT (DMACHUNK_SHIFT + 1)
  1314. #define MAX_FRAGSHIFT (PAGE_SHIFT)
  1315. #define MIN_FRAGSIZE (1 << MIN_FRAGSHIFT)
  1316. #define MAX_FRAGSIZE (1 << MAX_FRAGSHIFT)
  1317. #define MIN_FRAGCOUNT(fragsize) 3
  1318. #define MAX_FRAGCOUNT(fragsize) (32 * PAGE_SIZE / (fragsize))
  1319. #define DEFAULT_FRAGSHIFT 12
  1320. #define DEFAULT_FRAGCOUNT 16
  1321. #define DEFAULT_SUBDIVSHIFT 0
  1322. /*
  1323.  * The software buffer (swbuf) is a ring buffer shared between user
  1324.  * level and interrupt level.  Each level owns some of the bytes in
  1325.  * the buffer, and may give bytes away by calling swb_inc_{u,i}().
  1326.  * User level calls _u for user, and interrupt level calls _i for
  1327.  * interrupt.
  1328.  *
  1329.  * port->swb_{u,i}_avail is the number of bytes available to that level.
  1330.  *
  1331.  * port->swb_{u,i}_idx is the index of the first available byte in the
  1332.  * buffer.
  1333.  *
  1334.  * Each level calls swb_inc_{u,i}() to atomically increment its index,
  1335.  * recalculate the number of bytes available for both sides, and
  1336.  * return the number of bytes available.  Since each side can only
  1337.  * give away bytes, the other side can only increase the number of
  1338.  * bytes available to this side.  Each side updates its own index
  1339.  * variable, swb_{u,i}_idx, so no lock is needed to read it.
  1340.  *
  1341.  * To query the number of bytes available, call swb_inc_{u,i} with an
  1342.  * increment of zero.
  1343.  */
  1344. static __inline__ unsigned int __swb_inc_u(vwsnd_port_t *port, int inc)
  1345. {
  1346. if (inc) {
  1347. port->swb_u_idx += inc;
  1348. port->swb_u_idx %= port->swbuf_size;
  1349. port->swb_u_avail -= inc;
  1350. port->swb_i_avail += inc;
  1351. }
  1352. return port->swb_u_avail;
  1353. }
  1354. static __inline__ unsigned int swb_inc_u(vwsnd_port_t *port, int inc)
  1355. {
  1356. unsigned long flags;
  1357. unsigned int ret;
  1358. spin_lock_irqsave(&port->lock, flags);
  1359. {
  1360. ret = __swb_inc_u(port, inc);
  1361. }
  1362. spin_unlock_irqrestore(&port->lock, flags);
  1363. return ret;
  1364. }
  1365. static __inline__ unsigned int __swb_inc_i(vwsnd_port_t *port, int inc)
  1366. {
  1367. if (inc) {
  1368. port->swb_i_idx += inc;
  1369. port->swb_i_idx %= port->swbuf_size;
  1370. port->swb_i_avail -= inc;
  1371. port->swb_u_avail += inc;
  1372. }
  1373. return port->swb_i_avail;
  1374. }
  1375. static __inline__ unsigned int swb_inc_i(vwsnd_port_t *port, int inc)
  1376. {
  1377. unsigned long flags;
  1378. unsigned int ret;
  1379. spin_lock_irqsave(&port->lock, flags);
  1380. {
  1381. ret = __swb_inc_i(port, inc);
  1382. }
  1383. spin_unlock_irqrestore(&port->lock, flags);
  1384. return ret;
  1385. }
  1386. /*
  1387.  * pcm_setup - this routine initializes all port state after
  1388.  * mode-setting ioctls have been done, but before the first I/O is
  1389.  * done.
  1390.  *
  1391.  * Locking: called with devc->io_sema held.
  1392.  *
  1393.  * Returns 0 on success, -errno on failure.
  1394.  */
  1395. static int pcm_setup(vwsnd_dev_t *devc,
  1396.      vwsnd_port_t *rport,
  1397.      vwsnd_port_t *wport)
  1398. {
  1399. vwsnd_port_t *aport = rport ? rport : wport;
  1400. int sample_size;
  1401. unsigned int zero_word;
  1402. DBGEV("(devc=0x%p, rport=0x%p, wport=0x%p)n", devc, rport, wport);
  1403. ASSERT(aport != NULL);
  1404. if (aport->swbuf != NULL)
  1405. return 0;
  1406. switch (aport->sw_samplefmt) {
  1407. case AFMT_MU_LAW:
  1408. sample_size = 1;
  1409. zero_word = 0xFFFFFFFF ^ 0x80808080;
  1410. break;
  1411. case AFMT_A_LAW:
  1412. sample_size = 1;
  1413. zero_word = 0xD5D5D5D5 ^ 0x80808080;
  1414. break;
  1415. case AFMT_U8:
  1416. sample_size = 1;
  1417. zero_word = 0x80808080;
  1418. break;
  1419. case AFMT_S8:
  1420. sample_size = 1;
  1421. zero_word = 0x00000000;
  1422. break;
  1423. case AFMT_S16_LE:
  1424. sample_size = 2;
  1425. zero_word = 0x00000000;
  1426. break;
  1427. default:
  1428. sample_size = 0; /* prevent compiler warning */
  1429. zero_word = 0;
  1430. ASSERT(0);
  1431. }
  1432. aport->sample_size  = sample_size;
  1433. aport->zero_word    = zero_word;
  1434. aport->frame_size   = aport->sw_channels * aport->sample_size;
  1435. aport->hw_fragshift = aport->sw_fragshift - aport->sw_subdivshift;
  1436. aport->hw_fragsize  = 1 << aport->hw_fragshift;
  1437. aport->hw_fragcount = aport->sw_fragcount << aport->sw_subdivshift;
  1438. ASSERT(aport->hw_fragsize >= MIN_FRAGSIZE);
  1439. ASSERT(aport->hw_fragsize <= MAX_FRAGSIZE);
  1440. ASSERT(aport->hw_fragcount >= MIN_FRAGCOUNT(aport->hw_fragsize));
  1441. ASSERT(aport->hw_fragcount <= MAX_FRAGCOUNT(aport->hw_fragsize));
  1442. if (rport) {
  1443. int hwfrags, swfrags;
  1444. rport->hwbuf_max = aport->hwbuf_size - DMACHUNK_SIZE;
  1445. hwfrags = rport->hwbuf_max >> aport->hw_fragshift;
  1446. swfrags = aport->hw_fragcount - hwfrags;
  1447. if (swfrags < 2)
  1448. swfrags = 2;
  1449. rport->swbuf_size = swfrags * aport->hw_fragsize;
  1450. DBGPV("hwfrags = %d, swfrags = %dn", hwfrags, swfrags);
  1451. DBGPV("read hwbuf_max = %d, swbuf_size = %dn",
  1452.      rport->hwbuf_max, rport->swbuf_size);
  1453. }
  1454. if (wport) {
  1455. int hwfrags, swfrags;
  1456. int total_bytes = aport->hw_fragcount * aport->hw_fragsize;
  1457. wport->hwbuf_max = aport->hwbuf_size - DMACHUNK_SIZE;
  1458. if (wport->hwbuf_max > total_bytes)
  1459. wport->hwbuf_max = total_bytes;
  1460. hwfrags = wport->hwbuf_max >> aport->hw_fragshift;
  1461. DBGPV("hwfrags = %dn", hwfrags);
  1462. swfrags = aport->hw_fragcount - hwfrags;
  1463. if (swfrags < 2)
  1464. swfrags = 2;
  1465. wport->swbuf_size = swfrags * aport->hw_fragsize;
  1466. DBGPV("hwfrags = %d, swfrags = %dn", hwfrags, swfrags);
  1467. DBGPV("write hwbuf_max = %d, swbuf_size = %dn",
  1468.      wport->hwbuf_max, wport->swbuf_size);
  1469. }
  1470. aport->swb_u_idx    = 0;
  1471. aport->swb_i_idx    = 0;
  1472. aport->byte_count   = 0;
  1473. /*
  1474.  * Is this a Cobalt bug?  We need to make this buffer extend
  1475.  * one page further than we actually use -- somehow memcpy
  1476.  * causes an exceptoin otherwise.  I suspect there's a bug in
  1477.  * Cobalt (or somewhere) where it's generating a fault on a
  1478.  * speculative load or something.  Obviously, I haven't taken
  1479.  * the time to track it down.
  1480.  */
  1481. aport->swbuf        = vmalloc(aport->swbuf_size + PAGE_SIZE);
  1482. if (!aport->swbuf)
  1483. return -ENOMEM;
  1484. if (rport && wport) {
  1485. ASSERT(aport == rport);
  1486. ASSERT(wport->swbuf == NULL);
  1487. /* One extra page - see comment above. */
  1488. wport->swbuf = vmalloc(aport->swbuf_size + PAGE_SIZE);
  1489. if (!wport->swbuf) {
  1490. vfree(aport->swbuf);
  1491. aport->swbuf = NULL;
  1492. return -ENOMEM;
  1493. }
  1494. wport->sample_size  = rport->sample_size;
  1495. wport->zero_word    = rport->zero_word;
  1496. wport->frame_size   = rport->frame_size;
  1497. wport->hw_fragshift = rport->hw_fragshift;
  1498. wport->hw_fragsize  = rport->hw_fragsize;
  1499. wport->hw_fragcount = rport->hw_fragcount;
  1500. wport->swbuf_size   = rport->swbuf_size;
  1501. wport->hwbuf_max    = rport->hwbuf_max;
  1502. wport->swb_u_idx    = rport->swb_u_idx;
  1503. wport->swb_i_idx    = rport->swb_i_idx;
  1504. wport->byte_count   = rport->byte_count;
  1505. }
  1506. if (rport) {
  1507. rport->swb_u_avail = 0;
  1508. rport->swb_i_avail = rport->swbuf_size;
  1509. rport->swstate = SW_RUN;
  1510. li_setup_dma(&rport->chan,
  1511.      &li_comm1,
  1512.      &devc->lith,
  1513.      rport->hwbuf_paddr,
  1514.      HWBUF_SHIFT,
  1515.      rport->hw_fragshift,
  1516.      rport->sw_channels,
  1517.      rport->sample_size);
  1518. ad1843_setup_adc(&devc->lith,
  1519.  rport->sw_framerate,
  1520.  rport->sw_samplefmt,
  1521.  rport->sw_channels);
  1522. li_enable_interrupts(&devc->lith, READ_INTR_MASK);
  1523. if (!(rport->flags & DISABLED)) {
  1524. ustmsc_t ustmsc;
  1525. rport->hwstate = HW_RUNNING;
  1526. li_activate_dma(&rport->chan);
  1527. li_read_USTMSC(&rport->chan, &ustmsc);
  1528. rport->MSC_offset = ustmsc.msc;
  1529. }
  1530. }
  1531. if (wport) {
  1532. if (wport->hwbuf_max > wport->swbuf_size)
  1533. wport->hwbuf_max = wport->swbuf_size;
  1534. wport->flags &= ~ERFLOWN;
  1535. wport->swb_u_avail = wport->swbuf_size;
  1536. wport->swb_i_avail = 0;
  1537. wport->swstate = SW_RUN;
  1538. li_setup_dma(&wport->chan,
  1539.      &li_comm2,
  1540.      &devc->lith,
  1541.      wport->hwbuf_paddr,
  1542.      HWBUF_SHIFT,
  1543.      wport->hw_fragshift,
  1544.      wport->sw_channels,
  1545.      wport->sample_size);
  1546. ad1843_setup_dac(&devc->lith,
  1547.  wport->sw_framerate,
  1548.  wport->sw_samplefmt,
  1549.  wport->sw_channels);
  1550. li_enable_interrupts(&devc->lith, WRITE_INTR_MASK);
  1551. }
  1552. DBGRV();
  1553. return 0;
  1554. }
  1555. /*
  1556.  * pcm_shutdown_port - shut down one port (direction) for PCM I/O.
  1557.  * Only called from pcm_shutdown.
  1558.  */
  1559. static void pcm_shutdown_port(vwsnd_dev_t *devc,
  1560.       vwsnd_port_t *aport,
  1561.       unsigned int mask)
  1562. {
  1563. unsigned long flags;
  1564. vwsnd_port_hwstate_t hwstate;
  1565. DECLARE_WAITQUEUE(wait, current);
  1566. aport->swstate = SW_INITIAL;
  1567. add_wait_queue(&aport->queue, &wait);
  1568. while (1) {
  1569. set_current_state(TASK_UNINTERRUPTIBLE);
  1570. spin_lock_irqsave(&aport->lock, flags);
  1571. {
  1572. hwstate = aport->hwstate;
  1573. }
  1574. spin_unlock_irqrestore(&aport->lock, flags);
  1575. if (hwstate == HW_STOPPED)
  1576. break;
  1577. schedule();
  1578. }
  1579. current->state = TASK_RUNNING;
  1580. remove_wait_queue(&aport->queue, &wait);
  1581. li_disable_interrupts(&devc->lith, mask);
  1582. if (aport == &devc->rport)
  1583. ad1843_shutdown_adc(&devc->lith);
  1584. else /* aport == &devc->wport) */
  1585. ad1843_shutdown_dac(&devc->lith);
  1586. li_shutdown_dma(&aport->chan);
  1587. vfree(aport->swbuf);
  1588. aport->swbuf = NULL;
  1589. aport->byte_count = 0;
  1590. }
  1591. /*
  1592.  * pcm_shutdown undoes what pcm_setup did.
  1593.  * Also sets the ports' swstate to newstate.
  1594.  */
  1595. static void pcm_shutdown(vwsnd_dev_t *devc,
  1596.  vwsnd_port_t *rport,
  1597.  vwsnd_port_t *wport)
  1598. {
  1599. DBGEV("(devc=0x%p, rport=0x%p, wport=0x%p)n", devc, rport, wport);
  1600. if (rport && rport->swbuf) {
  1601. DBGPV("shutting down rportn");
  1602. pcm_shutdown_port(devc, rport, READ_INTR_MASK);
  1603. }
  1604. if (wport && wport->swbuf) {
  1605. DBGPV("shutting down wportn");
  1606. pcm_shutdown_port(devc, wport, WRITE_INTR_MASK);
  1607. }
  1608. DBGRV();
  1609. }
  1610. static void pcm_copy_in(vwsnd_port_t *rport, int swidx, int hwidx, int nb)
  1611. {
  1612. char *src = rport->hwbuf + hwidx;
  1613. char *dst = rport->swbuf + swidx;
  1614. int fmt = rport->sw_samplefmt;
  1615. DBGPV("swidx = %d, hwidx = %dn", swidx, hwidx);
  1616. ASSERT(rport->hwbuf != NULL);
  1617. ASSERT(rport->swbuf != NULL);
  1618. ASSERT(nb > 0 && (nb % 32) == 0);
  1619. ASSERT(swidx % 32 == 0 && hwidx % 32 == 0);
  1620. ASSERT(swidx >= 0 && swidx + nb <= rport->swbuf_size);
  1621. ASSERT(hwidx >= 0 && hwidx + nb <= rport->hwbuf_size);
  1622. if (fmt == AFMT_MU_LAW || fmt == AFMT_A_LAW || fmt == AFMT_S8) {
  1623. /* See Sample Format Notes above. */
  1624. char *end = src + nb;
  1625. while (src < end)
  1626. *dst++ = *src++ ^ 0x80;
  1627. } else
  1628. memcpy(dst, src, nb);
  1629. }
  1630. static void pcm_copy_out(vwsnd_port_t *wport, int swidx, int hwidx, int nb)
  1631. {
  1632. char *src = wport->swbuf + swidx;
  1633. char *dst = wport->hwbuf + hwidx;
  1634. int fmt = wport->sw_samplefmt;
  1635. ASSERT(nb > 0 && (nb % 32) == 0);
  1636. ASSERT(wport->hwbuf != NULL);
  1637. ASSERT(wport->swbuf != NULL);
  1638. ASSERT(swidx % 32 == 0 && hwidx % 32 == 0);
  1639. ASSERT(swidx >= 0 && swidx + nb <= wport->swbuf_size);
  1640. ASSERT(hwidx >= 0 && hwidx + nb <= wport->hwbuf_size);
  1641. if (fmt == AFMT_MU_LAW || fmt == AFMT_A_LAW || fmt == AFMT_S8) {
  1642. /* See Sample Format Notes above. */
  1643. char *end = src + nb;
  1644. while (src < end)
  1645. *dst++ = *src++ ^ 0x80;
  1646. } else
  1647. memcpy(dst, src, nb);
  1648. }
  1649. /*
  1650.  * pcm_output() is called both from baselevel and from interrupt level.
  1651.  * This is where audio frames are copied into the hardware-accessible
  1652.  * ring buffer.
  1653.  *
  1654.  * Locking note: The part of this routine that figures out what to do
  1655.  * holds wport->lock.  The longer part releases wport->lock, but sets
  1656.  * wport->flags & HW_BUSY.  Afterward, it reacquires wport->lock, and
  1657.  * checks for more work to do.
  1658.  *
  1659.  * If another thread calls pcm_output() while HW_BUSY is set, it
  1660.  * returns immediately, knowing that the thread that set HW_BUSY will
  1661.  * look for more work to do before returning.
  1662.  *
  1663.  * This has the advantage that port->lock is held for several short
  1664.  * periods instead of one long period.  Also, when pcm_output is
  1665.  * called from base level, it reenables interrupts.
  1666.  */
  1667. static void pcm_output(vwsnd_dev_t *devc, int erflown, int nb)
  1668. {
  1669. vwsnd_port_t *wport = &devc->wport;
  1670. const int hwmax  = wport->hwbuf_max;
  1671. const int hwsize = wport->hwbuf_size;
  1672. const int swsize = wport->swbuf_size;
  1673. const int fragsize = wport->hw_fragsize;
  1674. unsigned long iflags;
  1675. DBGEV("(devc=0x%p, erflown=%d, nb=%d)n", devc, erflown, nb);
  1676. spin_lock_irqsave(&wport->lock, iflags);
  1677. if (erflown)
  1678. wport->flags |= ERFLOWN;
  1679. (void) __swb_inc_u(wport, nb);
  1680. if (wport->flags & HW_BUSY) {
  1681. spin_unlock_irqrestore(&wport->lock, iflags);
  1682. DBGPV("returning: HW BUSYn");
  1683. return;
  1684. }
  1685. if (wport->flags & DISABLED) {
  1686. spin_unlock_irqrestore(&wport->lock, iflags);
  1687. DBGPV("returning: DISABLEDn");
  1688. return;
  1689. }
  1690. wport->flags |= HW_BUSY;
  1691. while (1) {
  1692. int swptr, hwptr, hw_avail, sw_avail, swidx;
  1693. vwsnd_port_hwstate_t hwstate = wport->hwstate;
  1694. vwsnd_port_swstate_t swstate = wport->swstate;
  1695. int hw_unavail;
  1696. ustmsc_t ustmsc;
  1697. hwptr = li_read_hwptr(&wport->chan);
  1698. swptr = li_read_swptr(&wport->chan);
  1699. hw_unavail = (swptr - hwptr + hwsize) % hwsize;
  1700. hw_avail = (hwmax - hw_unavail) & -fragsize;
  1701. sw_avail = wport->swb_i_avail & -fragsize;
  1702. if (sw_avail && swstate == SW_RUN) {
  1703. if (wport->flags & ERFLOWN) {
  1704. wport->flags &= ~ERFLOWN;
  1705. }
  1706. } else if (swstate == SW_INITIAL ||
  1707.  swstate == SW_OFF ||
  1708.  (swstate == SW_DRAIN &&
  1709.   !sw_avail &&
  1710.   (wport->flags & ERFLOWN))) {
  1711. DBGP("stopping.  hwstate = %dn", hwstate);
  1712. if (hwstate != HW_STOPPED) {
  1713. li_deactivate_dma(&wport->chan);
  1714. wport->hwstate = HW_STOPPED;
  1715. }
  1716. wake_up(&wport->queue);
  1717. break;
  1718. }
  1719. if (!sw_avail || !hw_avail)
  1720. break;
  1721. spin_unlock_irqrestore(&wport->lock, iflags);
  1722. /*
  1723.  * We gave up the port lock, but we have the HW_BUSY flag.
  1724.  * Proceed without accessing any nonlocal state.
  1725.  * Do not exit the loop -- must check for more work.
  1726.  */
  1727. swidx = wport->swb_i_idx;
  1728. nb = hw_avail;
  1729. if (nb > sw_avail)
  1730. nb = sw_avail;
  1731. if (nb > hwsize - swptr)
  1732. nb = hwsize - swptr; /* don't overflow hwbuf */
  1733. if (nb > swsize - swidx)
  1734. nb = swsize - swidx; /* don't overflow swbuf */
  1735. ASSERT(nb > 0);
  1736. if (nb % fragsize) {
  1737. DBGP("nb = %d, fragsize = %dn", nb, fragsize);
  1738. DBGP("hw_avail = %dn", hw_avail);
  1739. DBGP("sw_avail = %dn", sw_avail);
  1740. DBGP("hwsize = %d, swptr = %dn", hwsize, swptr);
  1741. DBGP("swsize = %d, swidx = %dn", swsize, swidx);
  1742. }
  1743. ASSERT(!(nb % fragsize));
  1744. DBGPV("copying swb[%d..%d] to hwb[%d..%d]n",
  1745.       swidx, swidx + nb, swptr, swptr + nb);
  1746. pcm_copy_out(wport, swidx, swptr, nb);
  1747. li_write_swptr(&wport->chan, (swptr + nb) % hwsize);
  1748. spin_lock_irqsave(&wport->lock, iflags);
  1749. if (hwstate == HW_STOPPED) {
  1750. DBGPV("startingn");
  1751. li_activate_dma(&wport->chan);
  1752. wport->hwstate = HW_RUNNING;
  1753. li_read_USTMSC(&wport->chan, &ustmsc);
  1754. ASSERT(wport->byte_count % wport->frame_size == 0);
  1755. wport->MSC_offset = ustmsc.msc - wport->byte_count / wport->frame_size;
  1756. }
  1757. __swb_inc_i(wport, nb);
  1758. wport->byte_count += nb;
  1759. wport->frag_count += nb / fragsize;
  1760. ASSERT(nb % fragsize == 0);
  1761. wake_up(&wport->queue);
  1762. }
  1763. wport->flags &= ~HW_BUSY;
  1764. spin_unlock_irqrestore(&wport->lock, iflags);
  1765. DBGRV();
  1766. }
  1767. /*
  1768.  * pcm_input() is called both from baselevel and from interrupt level.
  1769.  * This is where audio frames are copied out of the hardware-accessible
  1770.  * ring buffer.
  1771.  *
  1772.  * Locking note: The part of this routine that figures out what to do
  1773.  * holds rport->lock.  The longer part releases rport->lock, but sets
  1774.  * rport->flags & HW_BUSY.  Afterward, it reacquires rport->lock, and
  1775.  * checks for more work to do.
  1776.  *
  1777.  * If another thread calls pcm_input() while HW_BUSY is set, it
  1778.  * returns immediately, knowing that the thread that set HW_BUSY will
  1779.  * look for more work to do before returning.
  1780.  *
  1781.  * This has the advantage that port->lock is held for several short
  1782.  * periods instead of one long period.  Also, when pcm_input is
  1783.  * called from base level, it reenables interrupts.
  1784.  */
  1785. static void pcm_input(vwsnd_dev_t *devc, int erflown, int nb)
  1786. {
  1787. vwsnd_port_t *rport = &devc->rport;
  1788. const int hwmax  = rport->hwbuf_max;
  1789. const int hwsize = rport->hwbuf_size;
  1790. const int swsize = rport->swbuf_size;
  1791. const int fragsize = rport->hw_fragsize;
  1792. unsigned long iflags;
  1793. DBGEV("(devc=0x%p, erflown=%d, nb=%d)n", devc, erflown, nb);
  1794. spin_lock_irqsave(&rport->lock, iflags);
  1795. if (erflown)
  1796. rport->flags |= ERFLOWN;
  1797. (void) __swb_inc_u(rport, nb);
  1798. if (rport->flags & HW_BUSY || !rport->swbuf) {
  1799. spin_unlock_irqrestore(&rport->lock, iflags);
  1800. DBGPV("returning: HW BUSY or !swbufn");
  1801. return;
  1802. }
  1803. if (rport->flags & DISABLED) {
  1804. spin_unlock_irqrestore(&rport->lock, iflags);
  1805. DBGPV("returning: DISABLEDn");
  1806. return;
  1807. }
  1808. rport->flags |= HW_BUSY;
  1809. while (1) {
  1810. int swptr, hwptr, hw_avail, sw_avail, swidx;
  1811. vwsnd_port_hwstate_t hwstate = rport->hwstate;
  1812. vwsnd_port_swstate_t swstate = rport->swstate;
  1813. hwptr = li_read_hwptr(&rport->chan);
  1814. swptr = li_read_swptr(&rport->chan);
  1815. hw_avail = (hwptr - swptr + hwsize) % hwsize & -fragsize;
  1816. if (hw_avail > hwmax)
  1817. hw_avail = hwmax;
  1818. sw_avail = rport->swb_i_avail & -fragsize;
  1819. if (swstate != SW_RUN) {
  1820. DBGP("stopping.  hwstate = %dn", hwstate);
  1821. if (hwstate != HW_STOPPED) {
  1822. li_deactivate_dma(&rport->chan);
  1823. rport->hwstate = HW_STOPPED;
  1824. }
  1825. wake_up(&rport->queue);
  1826. break;
  1827. }
  1828. if (!sw_avail || !hw_avail)
  1829. break;
  1830. spin_unlock_irqrestore(&rport->lock, iflags);
  1831. /*
  1832.  * We gave up the port lock, but we have the HW_BUSY flag.
  1833.  * Proceed without accessing any nonlocal state.
  1834.  * Do not exit the loop -- must check for more work.
  1835.  */
  1836. swidx = rport->swb_i_idx;
  1837. nb = hw_avail;
  1838. if (nb > sw_avail)
  1839. nb = sw_avail;
  1840. if (nb > hwsize - swptr)
  1841. nb = hwsize - swptr; /* don't overflow hwbuf */
  1842. if (nb > swsize - swidx)
  1843. nb = swsize - swidx; /* don't overflow swbuf */
  1844. ASSERT(nb > 0);
  1845. if (nb % fragsize) {
  1846. DBGP("nb = %d, fragsize = %dn", nb, fragsize);
  1847. DBGP("hw_avail = %dn", hw_avail);
  1848. DBGP("sw_avail = %dn", sw_avail);
  1849. DBGP("hwsize = %d, swptr = %dn", hwsize, swptr);
  1850. DBGP("swsize = %d, swidx = %dn", swsize, swidx);
  1851. }
  1852. ASSERT(!(nb % fragsize));
  1853. DBGPV("copying hwb[%d..%d] to swb[%d..%d]n",
  1854.       swptr, swptr + nb, swidx, swidx + nb);
  1855. pcm_copy_in(rport, swidx, swptr, nb);
  1856. li_write_swptr(&rport->chan, (swptr + nb) % hwsize);
  1857. spin_lock_irqsave(&rport->lock, iflags);
  1858. __swb_inc_i(rport, nb);
  1859. rport->byte_count += nb;
  1860. rport->frag_count += nb / fragsize;
  1861. ASSERT(nb % fragsize == 0);
  1862. wake_up(&rport->queue);
  1863. }
  1864. rport->flags &= ~HW_BUSY;
  1865. spin_unlock_irqrestore(&rport->lock, iflags);
  1866. DBGRV();
  1867. }
  1868. /*
  1869.  * pcm_flush_frag() writes zero samples to fill the current fragment,
  1870.  * then flushes it to the hardware.
  1871.  *
  1872.  * It is only meaningful to flush output, not input.
  1873.  */
  1874. static void pcm_flush_frag(vwsnd_dev_t *devc)
  1875. {
  1876. vwsnd_port_t *wport = &devc->wport;
  1877. DBGPV("swstate = %dn", wport->swstate);
  1878. if (wport->swstate == SW_RUN) {
  1879. int idx = wport->swb_u_idx;
  1880. int end = (idx + wport->hw_fragsize - 1)
  1881. >> wport->hw_fragshift
  1882. << wport->hw_fragshift;
  1883. int nb = end - idx;
  1884. DBGPV("clearing %d bytesn", nb);
  1885. if (nb)
  1886. memset(wport->swbuf + idx,
  1887.        (char) wport->zero_word,
  1888.        nb);
  1889. wport->swstate = SW_DRAIN;
  1890. pcm_output(devc, 0, nb);
  1891. }
  1892. DBGRV();
  1893. }
  1894. /*
  1895.  * Wait for output to drain.  This sleeps uninterruptibly because
  1896.  * there is nothing intelligent we can do if interrupted.  This
  1897.  * means the process will be delayed in responding to the signal.
  1898.  */
  1899. static void pcm_write_sync(vwsnd_dev_t *devc)
  1900. {
  1901. vwsnd_port_t *wport = &devc->wport;
  1902. DECLARE_WAITQUEUE(wait, current);
  1903. unsigned long flags;
  1904. vwsnd_port_hwstate_t hwstate;
  1905. DBGEV("(devc=0x%p)n", devc);
  1906. add_wait_queue(&wport->queue, &wait);
  1907. while (1) {
  1908. set_current_state(TASK_UNINTERRUPTIBLE);
  1909. spin_lock_irqsave(&wport->lock, flags);
  1910. {
  1911. hwstate = wport->hwstate;
  1912. }
  1913. spin_unlock_irqrestore(&wport->lock, flags);
  1914. if (hwstate == HW_STOPPED)
  1915. break;
  1916. schedule();
  1917. }
  1918. current->state = TASK_RUNNING;
  1919. remove_wait_queue(&wport->queue, &wait);
  1920. DBGPV("swstate = %d, hwstate = %dn", wport->swstate, wport->hwstate);
  1921. DBGRV();
  1922. }
  1923. /*****************************************************************************/
  1924. /* audio driver */
  1925. /*
  1926.  * seek on an audio device always fails.
  1927.  */
  1928. static void vwsnd_audio_read_intr(vwsnd_dev_t *devc, unsigned int status)
  1929. {
  1930. int overflown = status & LI_INTR_COMM1_OVERFLOW;
  1931. if (status & READ_INTR_MASK)
  1932. pcm_input(devc, overflown, 0);
  1933. }
  1934. static void vwsnd_audio_write_intr(vwsnd_dev_t *devc, unsigned int status)
  1935. {
  1936. int underflown = status & LI_INTR_COMM2_UNDERFLOW;
  1937. if (status & WRITE_INTR_MASK)
  1938. pcm_output(devc, underflown, 0);
  1939. }
  1940. static void vwsnd_audio_intr(int irq, void *dev_id, struct pt_regs *regs)
  1941. {
  1942. vwsnd_dev_t *devc = (vwsnd_dev_t *) dev_id;
  1943. unsigned int status;
  1944. DBGEV("(irq=%d, dev_id=0x%p, regs=0x%p)n", irq, dev_id, regs);
  1945. status = li_get_clear_intr_status(&devc->lith);
  1946. vwsnd_audio_read_intr(devc, status);
  1947. vwsnd_audio_write_intr(devc, status);
  1948. }
  1949. static ssize_t vwsnd_audio_do_read(struct file *file,
  1950.    char *buffer,
  1951.    size_t count,
  1952.    loff_t *ppos)
  1953. {
  1954. vwsnd_dev_t *devc = file->private_data;
  1955. vwsnd_port_t *rport = ((file->f_mode & FMODE_READ) ?
  1956.        &devc->rport : NULL);
  1957. int ret, nb;
  1958. DBGEV("(file=0x%p, buffer=0x%p, count=%d, ppos=0x%p)n",
  1959.      file, buffer, count, ppos);
  1960. if (!rport)
  1961. return -EINVAL;
  1962. if (rport->swbuf == NULL) {
  1963. vwsnd_port_t *wport = (file->f_mode & FMODE_WRITE) ?
  1964. &devc->wport : NULL;
  1965. ret = pcm_setup(devc, rport, wport);
  1966. if (ret < 0)
  1967. return ret;
  1968. }
  1969. if (!access_ok(VERIFY_READ, buffer, count))
  1970. return -EFAULT;
  1971. ret = 0;
  1972. while (count) {
  1973. DECLARE_WAITQUEUE(wait, current);
  1974. add_wait_queue(&rport->queue, &wait);
  1975. while ((nb = swb_inc_u(rport, 0)) == 0) {
  1976. DBGPV("blockingn");
  1977. set_current_state(TASK_INTERRUPTIBLE);
  1978. if (rport->flags & DISABLED ||
  1979.     file->f_flags & O_NONBLOCK) {
  1980. current->state = TASK_RUNNING;
  1981. remove_wait_queue(&rport->queue, &wait);
  1982. return ret ? ret : -EAGAIN;
  1983. }
  1984. schedule();
  1985. if (signal_pending(current)) {
  1986. current->state = TASK_RUNNING;
  1987. remove_wait_queue(&rport->queue, &wait);
  1988. return ret ? ret : -ERESTARTSYS;
  1989. }
  1990. }
  1991. current->state = TASK_RUNNING;
  1992. remove_wait_queue(&rport->queue, &wait);
  1993. pcm_input(devc, 0, 0);
  1994. /* nb bytes are available in userbuf. */
  1995. if (nb > count)
  1996. nb = count;
  1997. DBGPV("nb = %dn", nb);
  1998. copy_to_user(buffer, rport->swbuf + rport->swb_u_idx, nb);
  1999. (void) swb_inc_u(rport, nb);
  2000. buffer += nb;
  2001. count -= nb;
  2002. ret += nb;
  2003. }
  2004. DBGPV("returning %dn", ret);
  2005. return ret;
  2006. }
  2007. static ssize_t vwsnd_audio_read(struct file *file,
  2008. char *buffer,
  2009. size_t count,
  2010. loff_t *ppos)
  2011. {
  2012. vwsnd_dev_t *devc = file->private_data;
  2013. ssize_t ret;
  2014. down(&devc->io_sema);
  2015. ret = vwsnd_audio_do_read(file, buffer, count, ppos);
  2016. up(&devc->io_sema);
  2017. return ret;
  2018. }
  2019. static ssize_t vwsnd_audio_do_write(struct file *file,
  2020.     const char *buffer,
  2021.     size_t count,
  2022.     loff_t *ppos)
  2023. {
  2024. vwsnd_dev_t *devc = file->private_data;
  2025. vwsnd_port_t *wport = ((file->f_mode & FMODE_WRITE) ?
  2026.        &devc->wport : NULL);
  2027. int ret, nb;
  2028. DBGEV("(file=0x%p, buffer=0x%p, count=%d, ppos=0x%p)n",
  2029.       file, buffer, count, ppos);
  2030. if (!wport)
  2031. return -EINVAL;
  2032. if (wport->swbuf == NULL) {
  2033. vwsnd_port_t *rport = (file->f_mode & FMODE_READ) ?
  2034. &devc->rport : NULL;
  2035. ret = pcm_setup(devc, rport, wport);
  2036. if (ret < 0)
  2037. return ret;
  2038. }
  2039. if (!access_ok(VERIFY_WRITE, buffer, count))
  2040. return -EFAULT;
  2041. ret = 0;
  2042. while (count) {
  2043. DECLARE_WAITQUEUE(wait, current);
  2044. add_wait_queue(&wport->queue, &wait);
  2045. while ((nb = swb_inc_u(wport, 0)) == 0) {
  2046. set_current_state(TASK_INTERRUPTIBLE);
  2047. if (wport->flags & DISABLED ||
  2048.     file->f_flags & O_NONBLOCK) {
  2049. current->state = TASK_RUNNING;
  2050. remove_wait_queue(&wport->queue, &wait);
  2051. return ret ? ret : -EAGAIN;
  2052. }
  2053. schedule();
  2054. if (signal_pending(current)) {
  2055. current->state = TASK_RUNNING;
  2056. remove_wait_queue(&wport->queue, &wait);
  2057. return ret ? ret : -ERESTARTSYS;
  2058. }
  2059. }
  2060. current->state = TASK_RUNNING;
  2061. remove_wait_queue(&wport->queue, &wait);
  2062. /* nb bytes are available in userbuf. */
  2063. if (nb > count)
  2064. nb = count;
  2065. DBGPV("nb = %dn", nb);
  2066. copy_from_user(wport->swbuf + wport->swb_u_idx, buffer, nb);
  2067. pcm_output(devc, 0, nb);
  2068. buffer += nb;
  2069. count -= nb;
  2070. ret += nb;
  2071. }
  2072. DBGPV("returning %dn", ret);
  2073. return ret;
  2074. }
  2075. static ssize_t vwsnd_audio_write(struct file *file,
  2076.  const char *buffer,
  2077.  size_t count,
  2078.  loff_t *ppos)
  2079. {
  2080. vwsnd_dev_t *devc = file->private_data;
  2081. ssize_t ret;
  2082. down(&devc->io_sema);
  2083. ret = vwsnd_audio_do_write(file, buffer, count, ppos);
  2084. up(&devc->io_sema);
  2085. return ret;
  2086. }
  2087. /* No kernel lock - fine */
  2088. static unsigned int vwsnd_audio_poll(struct file *file,
  2089.      struct poll_table_struct *wait)
  2090. {
  2091. vwsnd_dev_t *devc = (vwsnd_dev_t *) file->private_data;
  2092. vwsnd_port_t *rport = (file->f_mode & FMODE_READ) ?
  2093. &devc->rport : NULL;
  2094. vwsnd_port_t *wport = (file->f_mode & FMODE_WRITE) ?
  2095. &devc->wport : NULL;
  2096. unsigned int mask = 0;
  2097. DBGEV("(file=0x%p, wait=0x%p)n", file, wait);
  2098. ASSERT(rport || wport);
  2099. if (rport) {
  2100. poll_wait(file, &rport->queue, wait);
  2101. if (swb_inc_u(rport, 0))
  2102. mask |= (POLLIN | POLLRDNORM);
  2103. }
  2104. if (wport) {
  2105. poll_wait(file, &wport->queue, wait);
  2106. if (wport->swbuf == NULL || swb_inc_u(wport, 0))
  2107. mask |= (POLLOUT | POLLWRNORM);
  2108. }
  2109. DBGPV("returning 0x%xn", mask);
  2110. return mask;
  2111. }
  2112. static int vwsnd_audio_do_ioctl(struct inode *inode,
  2113. struct file *file,
  2114. unsigned int cmd,
  2115. unsigned long arg)
  2116. {
  2117. vwsnd_dev_t *devc = (vwsnd_dev_t *) file->private_data;
  2118. vwsnd_port_t *rport = (file->f_mode & FMODE_READ) ?
  2119. &devc->rport : NULL;
  2120. vwsnd_port_t *wport = (file->f_mode & FMODE_WRITE) ?
  2121. &devc->wport : NULL;
  2122. vwsnd_port_t *aport = rport ? rport : wport;
  2123. struct audio_buf_info buf_info;
  2124. struct count_info info;
  2125. unsigned long flags;
  2126. int ival;
  2127. DBGEV("(inode=0x%p, file=0x%p, cmd=0x%x, arg=0x%lx)n",
  2128.       inode, file, cmd, arg);
  2129. switch (cmd) {
  2130. case OSS_GETVERSION: /* _SIOR ('M', 118, int) */
  2131. DBGX("OSS_GETVERSIONn");
  2132. ival = SOUND_VERSION;
  2133. return put_user(ival, (int *) arg);
  2134. case SNDCTL_DSP_GETCAPS: /* _SIOR ('P',15, int) */
  2135. DBGX("SNDCTL_DSP_GETCAPSn");
  2136. ival = DSP_CAP_DUPLEX | DSP_CAP_REALTIME | DSP_CAP_TRIGGER;
  2137. return put_user(ival, (int *) arg);
  2138. case SNDCTL_DSP_GETFMTS: /* _SIOR ('P',11, int) */
  2139. DBGX("SNDCTL_DSP_GETFMTSn");
  2140. ival = (AFMT_S16_LE | AFMT_MU_LAW | AFMT_A_LAW |
  2141. AFMT_U8 | AFMT_S8);
  2142. return put_user(ival, (int *) arg);
  2143. break;
  2144. case SOUND_PCM_READ_RATE: /* _SIOR ('P', 2, int) */
  2145. DBGX("SOUND_PCM_READ_RATEn");
  2146. ival = aport->sw_framerate;
  2147. return put_user(ival, (int *) arg);
  2148. case SOUND_PCM_READ_CHANNELS: /* _SIOR ('P', 6, int) */
  2149. DBGX("SOUND_PCM_READ_CHANNELSn");
  2150. ival = aport->sw_channels;
  2151. return put_user(ival, (int *) arg);
  2152. case SNDCTL_DSP_SPEED: /* _SIOWR('P', 2, int) */
  2153. if (get_user(ival, (int *) arg))
  2154. return -EFAULT;
  2155. DBGX("SNDCTL_DSP_SPEED %dn", ival);
  2156. if (ival) {
  2157. if (aport->swstate != SW_INITIAL) {
  2158. DBGX("SNDCTL_DSP_SPEED failed: swstate = %dn",
  2159.      aport->swstate);
  2160. return -EINVAL;
  2161. }
  2162. if (ival < MIN_SPEED)
  2163. ival = MIN_SPEED;
  2164. if (ival > MAX_SPEED)
  2165. ival = MAX_SPEED;
  2166. if (rport)
  2167. rport->sw_framerate = ival;
  2168. if (wport)
  2169. wport->sw_framerate = ival;
  2170. } else
  2171. ival = aport->sw_framerate;
  2172. return put_user(ival, (int *) arg);
  2173. case SNDCTL_DSP_STEREO: /* _SIOWR('P', 3, int) */
  2174. if (get_user(ival, (int *) arg))
  2175. return -EFAULT;
  2176. DBGX("SNDCTL_DSP_STEREO %dn", ival);
  2177. if (ival != 0 && ival != 1)
  2178. return -EINVAL;
  2179. if (aport->swstate != SW_INITIAL)
  2180. return -EINVAL;
  2181. if (rport)
  2182. rport->sw_channels = ival + 1;
  2183. if (wport)
  2184. wport->sw_channels = ival + 1;
  2185. return put_user(ival, (int *) arg);
  2186. case SNDCTL_DSP_CHANNELS: /* _SIOWR('P', 6, int) */
  2187. if (get_user(ival, (int *) arg))
  2188. return -EFAULT;
  2189. DBGX("SNDCTL_DSP_CHANNELS %dn", ival);
  2190. if (ival != 1 && ival != 2)
  2191. return -EINVAL;
  2192. if (aport->swstate != SW_INITIAL)
  2193. return -EINVAL;
  2194. if (rport)
  2195. rport->sw_channels = ival;
  2196. if (wport)
  2197. wport->sw_channels = ival;
  2198. return put_user(ival, (int *) arg);
  2199. case SNDCTL_DSP_GETBLKSIZE: /* _SIOWR('P', 4, int) */
  2200. ival = pcm_setup(devc, rport, wport);
  2201. if (ival < 0) {
  2202. DBGX("SNDCTL_DSP_GETBLKSIZE failed, errno %dn", ival);
  2203. return ival;
  2204. }
  2205. ival = 1 << aport->sw_fragshift;
  2206. DBGX("SNDCTL_DSP_GETBLKSIZE returning %dn", ival);
  2207. return put_user(ival, (int *) arg);
  2208. case SNDCTL_DSP_SETFRAGMENT: /* _SIOWR('P',10, int) */
  2209. if (get_user(ival, (int *) arg))
  2210. return -EFAULT;
  2211. DBGX("SNDCTL_DSP_SETFRAGMENT %d:%dn",
  2212.      ival >> 16, ival & 0xFFFF);
  2213. if (aport->swstate != SW_INITIAL)
  2214. return -EINVAL;
  2215. {
  2216. int sw_fragshift = ival & 0xFFFF;
  2217. int sw_subdivshift = aport->sw_subdivshift;
  2218. int hw_fragshift = sw_fragshift - sw_subdivshift;
  2219. int sw_fragcount = (ival >> 16) & 0xFFFF;
  2220. int hw_fragsize;
  2221. if (hw_fragshift < MIN_FRAGSHIFT)
  2222. hw_fragshift = MIN_FRAGSHIFT;
  2223. if (hw_fragshift > MAX_FRAGSHIFT)
  2224. hw_fragshift = MAX_FRAGSHIFT;
  2225. sw_fragshift = hw_fragshift + aport->sw_subdivshift;
  2226. hw_fragsize = 1 << hw_fragshift;
  2227. if (sw_fragcount < MIN_FRAGCOUNT(hw_fragsize))
  2228. sw_fragcount = MIN_FRAGCOUNT(hw_fragsize);
  2229. if (sw_fragcount > MAX_FRAGCOUNT(hw_fragsize))
  2230. sw_fragcount = MAX_FRAGCOUNT(hw_fragsize);
  2231. DBGPV("sw_fragshift = %dn", sw_fragshift);
  2232. DBGPV("rport = 0x%p, wport = 0x%pn", rport, wport);
  2233. if (rport) {
  2234. rport->sw_fragshift = sw_fragshift;
  2235. rport->sw_fragcount = sw_fragcount;
  2236. }
  2237. if (wport) {
  2238. wport->sw_fragshift = sw_fragshift;
  2239. wport->sw_fragcount = sw_fragcount;
  2240. }
  2241. ival = sw_fragcount << 16 | sw_fragshift;
  2242. }
  2243. DBGX("SNDCTL_DSP_SETFRAGMENT returns %d:%dn",
  2244.       ival >> 16, ival & 0xFFFF);
  2245. return put_user(ival, (int *) arg);
  2246. case SNDCTL_DSP_SUBDIVIDE: /* _SIOWR('P', 9, int) */
  2247.                 if (get_user(ival, (int *) arg))
  2248. return -EFAULT;
  2249. DBGX("SNDCTL_DSP_SUBDIVIDE %dn", ival);
  2250. if (aport->swstate != SW_INITIAL)
  2251. return -EINVAL;
  2252. {
  2253. int subdivshift;
  2254. int hw_fragshift, hw_fragsize, hw_fragcount;
  2255. switch (ival) {
  2256. case 1: subdivshift = 0; break;
  2257. case 2: subdivshift = 1; break;
  2258. case 4: subdivshift = 2; break;
  2259. default: return -EINVAL;
  2260. }
  2261. hw_fragshift = aport->sw_fragshift - subdivshift;
  2262. if (hw_fragshift < MIN_FRAGSHIFT ||
  2263.     hw_fragshift > MAX_FRAGSHIFT)
  2264. return -EINVAL;
  2265. hw_fragsize = 1 << hw_fragshift;
  2266. hw_fragcount = aport->sw_fragcount >> subdivshift;
  2267. if (hw_fragcount < MIN_FRAGCOUNT(hw_fragsize) ||
  2268.     hw_fragcount > MAX_FRAGCOUNT(hw_fragsize))
  2269. return -EINVAL;
  2270. if (rport)
  2271. rport->sw_subdivshift = subdivshift;
  2272. if (wport)
  2273. wport->sw_subdivshift = subdivshift;
  2274. }
  2275. return 0;
  2276. case SNDCTL_DSP_SETFMT: /* _SIOWR('P',5, int) */
  2277. if (get_user(ival, (int *) arg))
  2278. return -EFAULT;
  2279. DBGX("SNDCTL_DSP_SETFMT %dn", ival);
  2280. if (ival != AFMT_QUERY) {
  2281. if (aport->swstate != SW_INITIAL) {
  2282. DBGP("SETFMT failed, swstate = %dn",
  2283.      aport->swstate);
  2284. return -EINVAL;
  2285. }
  2286. switch (ival) {
  2287. case AFMT_MU_LAW:
  2288. case AFMT_A_LAW:
  2289. case AFMT_U8:
  2290. case AFMT_S8:
  2291. case AFMT_S16_LE:
  2292. if (rport)
  2293. rport->sw_samplefmt = ival;
  2294. if (wport)
  2295. wport->sw_samplefmt = ival;
  2296. break;
  2297. default:
  2298. return -EINVAL;
  2299. }
  2300. }
  2301. ival = aport->sw_samplefmt;
  2302. return put_user(ival, (int *) arg);
  2303. case SNDCTL_DSP_GETOSPACE: /* _SIOR ('P',12, audio_buf_info) */
  2304. DBGXV("SNDCTL_DSP_GETOSPACEn");
  2305. if (!wport)
  2306. return -EINVAL;
  2307. ival = pcm_setup(devc, rport, wport);
  2308. if (ival < 0)
  2309. return ival;
  2310. ival = swb_inc_u(wport, 0);
  2311. buf_info.fragments = ival >> wport->sw_fragshift;
  2312. buf_info.fragstotal = wport->sw_fragcount;
  2313. buf_info.fragsize = 1 << wport->sw_fragshift;
  2314. buf_info.bytes = ival;
  2315. DBGXV("SNDCTL_DSP_GETOSPACE returns { %d %d %d %d }n",
  2316.      buf_info.fragments, buf_info.fragstotal,
  2317.      buf_info.fragsize, buf_info.bytes);
  2318. return copy_to_user((void *) arg, &buf_info, sizeof buf_info);
  2319. case SNDCTL_DSP_GETISPACE: /* _SIOR ('P',13, audio_buf_info) */
  2320. DBGX("SNDCTL_DSP_GETISPACEn");
  2321. if (!rport)
  2322. return -EINVAL;
  2323. ival = pcm_setup(devc, rport, wport);
  2324. if (ival < 0)
  2325. return ival;
  2326. ival = swb_inc_u(rport, 0);
  2327. buf_info.fragments = ival >> rport->sw_fragshift;
  2328. buf_info.fragstotal = rport->sw_fragcount;
  2329. buf_info.fragsize = 1 << rport->sw_fragshift;
  2330. buf_info.bytes = ival;
  2331. DBGX("SNDCTL_DSP_GETISPACE returns { %d %d %d %d }n",
  2332.      buf_info.fragments, buf_info.fragstotal,
  2333.      buf_info.fragsize, buf_info.bytes);
  2334. return copy_to_user((void *) arg, &buf_info, sizeof buf_info);
  2335. case SNDCTL_DSP_NONBLOCK: /* _SIO  ('P',14) */
  2336. DBGX("SNDCTL_DSP_NONBLOCKn");
  2337. file->f_flags |= O_NONBLOCK;
  2338. return 0;
  2339. case SNDCTL_DSP_RESET: /* _SIO  ('P', 0) */
  2340. DBGX("SNDCTL_DSP_RESETn");
  2341. /*
  2342.  * Nothing special needs to be done for input.  Input
  2343.  * samples sit in swbuf, but it will be reinitialized
  2344.  * to empty when pcm_setup() is called.
  2345.  */
  2346. if (wport && wport->swbuf) {
  2347. wport->swstate = SW_INITIAL;
  2348. pcm_output(devc, 0, 0);
  2349. pcm_write_sync(devc);
  2350. }
  2351. pcm_shutdown(devc, rport, wport);
  2352. return 0;
  2353. case SNDCTL_DSP_SYNC: /* _SIO  ('P', 1) */
  2354. DBGX("SNDCTL_DSP_SYNCn");
  2355. if (wport) {
  2356. pcm_flush_frag(devc);
  2357. pcm_write_sync(devc);
  2358. }
  2359. pcm_shutdown(devc, rport, wport);
  2360. return 0;
  2361. case SNDCTL_DSP_POST: /* _SIO  ('P', 8) */
  2362. DBGX("SNDCTL_DSP_POSTn");
  2363. if (!wport)
  2364. return -EINVAL;
  2365. pcm_flush_frag(devc);
  2366. return 0;
  2367. case SNDCTL_DSP_GETIPTR: /* _SIOR ('P', 17, count_info) */
  2368. DBGX("SNDCTL_DSP_GETIPTRn");
  2369. if (!rport)
  2370. return -EINVAL;
  2371. spin_lock_irqsave(&rport->lock, flags);
  2372. {
  2373. ustmsc_t ustmsc;
  2374. if (rport->hwstate == HW_RUNNING) {
  2375. ASSERT(rport->swstate == SW_RUN);
  2376. li_read_USTMSC(&rport->chan, &ustmsc);
  2377. info.bytes = ustmsc.msc - rport->MSC_offset;
  2378. info.bytes *= rport->frame_size;
  2379. } else {
  2380. info.bytes = rport->byte_count;
  2381. }
  2382. info.blocks = rport->frag_count;
  2383. info.ptr = 0; /* not implemented */
  2384. rport->frag_count = 0;
  2385. }
  2386. spin_unlock_irqrestore(&rport->lock, flags);
  2387. return copy_to_user((void *) arg, &info, sizeof info);
  2388. case SNDCTL_DSP_GETOPTR: /* _SIOR ('P',18, count_info) */
  2389. DBGX("SNDCTL_DSP_GETOPTRn");
  2390. if (!wport)
  2391. return -EINVAL;
  2392. spin_lock_irqsave(&wport->lock, flags);
  2393. {
  2394. ustmsc_t ustmsc;
  2395. if (wport->hwstate == HW_RUNNING) {
  2396. ASSERT(wport->swstate == SW_RUN);
  2397. li_read_USTMSC(&wport->chan, &ustmsc);
  2398. info.bytes = ustmsc.msc - wport->MSC_offset;
  2399. info.bytes *= wport->frame_size;
  2400. } else {
  2401. info.bytes = wport->byte_count;
  2402. }
  2403. info.blocks = wport->frag_count;
  2404. info.ptr = 0; /* not implemented */
  2405. wport->frag_count = 0;
  2406. }
  2407. spin_unlock_irqrestore(&wport->lock, flags);
  2408. return copy_to_user((void *) arg, &info, sizeof info);
  2409. case SNDCTL_DSP_GETODELAY: /* _SIOR ('P', 23, int) */
  2410. DBGX("SNDCTL_DSP_GETODELAYn");
  2411. if (!wport)
  2412. return -EINVAL;
  2413. spin_lock_irqsave(&wport->lock, flags);
  2414. {
  2415. int fsize = wport->frame_size;
  2416. ival = wport->swb_i_avail / fsize;
  2417. if (wport->hwstate == HW_RUNNING) {
  2418. int swptr, hwptr, hwframes, hwbytes, hwsize;
  2419. int totalhwbytes;
  2420. ustmsc_t ustmsc;
  2421. hwsize = wport->hwbuf_size;
  2422. swptr = li_read_swptr(&wport->chan);
  2423. li_read_USTMSC(&wport->chan, &ustmsc);
  2424. hwframes = ustmsc.msc - wport->MSC_offset;
  2425. totalhwbytes = hwframes * fsize;
  2426. hwptr = totalhwbytes % hwsize;
  2427. hwbytes = (swptr - hwptr + hwsize) % hwsize;
  2428. ival += hwbytes / fsize;
  2429. }
  2430. }
  2431. spin_unlock_irqrestore(&wport->lock, flags);
  2432. return put_user(ival, (int *) arg);
  2433. case SNDCTL_DSP_PROFILE: /* _SIOW ('P', 23, int) */
  2434. DBGX("SNDCTL_DSP_PROFILEn");
  2435. /*
  2436.  * Thomas Sailer explains SNDCTL_DSP_PROFILE
  2437.  * (private email, March 24, 1999):
  2438.  *
  2439.  *     This gives the sound driver a hint on what it
  2440.  *     should do with partial fragments
  2441.  *     (i.e. fragments partially filled with write).
  2442.  *     This can direct the driver to zero them or
  2443.  *     leave them alone.  But don't ask me what this
  2444.  *     is good for, my driver just zeroes the last
  2445.  *     fragment before the receiver stops, no idea
  2446.  *     what good for any other behaviour could
  2447.  *     be. Implementing it as NOP seems safe.
  2448.  */
  2449. break;
  2450. case SNDCTL_DSP_GETTRIGGER: /* _SIOR ('P',16, int) */
  2451. DBGX("SNDCTL_DSP_GETTRIGGERn");
  2452. ival = 0;
  2453. if (rport) {
  2454. spin_lock_irqsave(&rport->lock, flags);
  2455. {
  2456. if (!(rport->flags & DISABLED))
  2457. ival |= PCM_ENABLE_INPUT;
  2458. }
  2459. spin_unlock_irqrestore(&rport->lock, flags);
  2460. }
  2461. if (wport) {
  2462. spin_lock_irqsave(&wport->lock, flags);
  2463. {
  2464. if (!(wport->flags & DISABLED))
  2465. ival |= PCM_ENABLE_OUTPUT;
  2466. }
  2467. spin_unlock_irqrestore(&wport->lock, flags);
  2468. }
  2469. return put_user(ival, (int *) arg);
  2470. case SNDCTL_DSP_SETTRIGGER: /* _SIOW ('P',16, int) */
  2471. if (get_user(ival, (int *) arg))
  2472. return -EFAULT;
  2473. DBGX("SNDCTL_DSP_SETTRIGGER %dn", ival);
  2474. /*
  2475.  * If user is disabling I/O and port is not in initial
  2476.  * state, fail with EINVAL.
  2477.  */
  2478. if (((rport && !(ival & PCM_ENABLE_INPUT)) ||
  2479.      (wport && !(ival & PCM_ENABLE_OUTPUT))) &&
  2480.     aport->swstate != SW_INITIAL)
  2481. return -EINVAL;
  2482. if (rport) {
  2483. vwsnd_port_hwstate_t hwstate;
  2484. spin_lock_irqsave(&rport->lock, flags);
  2485. {
  2486. hwstate = rport->hwstate;
  2487. if (ival & PCM_ENABLE_INPUT)
  2488. rport->flags &= ~DISABLED;
  2489. else
  2490. rport->flags |= DISABLED;
  2491. }
  2492. spin_unlock_irqrestore(&rport->lock, flags);
  2493. if (hwstate != HW_RUNNING && ival & PCM_ENABLE_INPUT) {
  2494. if (rport->swstate == SW_INITIAL)
  2495. pcm_setup(devc, rport, wport);
  2496. else
  2497. li_activate_dma(&rport->chan);
  2498. }
  2499. }
  2500. if (wport) {
  2501. vwsnd_port_flags_t pflags;
  2502. spin_lock_irqsave(&wport->lock, flags);
  2503. {
  2504. pflags = wport->flags;
  2505. if (ival & PCM_ENABLE_OUTPUT)
  2506. wport->flags &= ~DISABLED;
  2507. else
  2508. wport->flags |= DISABLED;
  2509. }
  2510. spin_unlock_irqrestore(&wport->lock, flags);
  2511. if (pflags & DISABLED && ival & PCM_ENABLE_OUTPUT) {
  2512. if (wport->swstate == SW_RUN)
  2513. pcm_output(devc, 0, 0);
  2514. }
  2515. }
  2516. return 0;
  2517. default:
  2518. DBGP("unknown ioctl 0x%xn", cmd);
  2519. return -EINVAL;
  2520. }
  2521. DBGP("unimplemented ioctl 0x%xn", cmd);
  2522. return -EINVAL;
  2523. }
  2524. static int vwsnd_audio_ioctl(struct inode *inode,
  2525. struct file *file,
  2526. unsigned int cmd,
  2527. unsigned long arg)
  2528. {
  2529. vwsnd_dev_t *devc = (vwsnd_dev_t *) file->private_data;
  2530. int ret;
  2531. down(&devc->io_sema);
  2532. ret = vwsnd_audio_do_ioctl(inode, file, cmd, arg);
  2533. up(&devc->io_sema);
  2534. return ret;
  2535. }
  2536. /* No mmap. */
  2537. static int vwsnd_audio_mmap(struct file *file, struct vm_area_struct *vma)
  2538. {
  2539. DBGE("(file=0x%p, vma=0x%p)n", file, vma);
  2540. return -ENODEV;
  2541. }
  2542. /*
  2543.  * Open the audio device for read and/or write.
  2544.  *
  2545.  * Returns 0 on success, -errno on failure.
  2546.  */
  2547. static int vwsnd_audio_open(struct inode *inode, struct file *file)
  2548. {
  2549. vwsnd_dev_t *devc;
  2550. dev_t minor = MINOR(inode->i_rdev);
  2551. int sw_samplefmt;
  2552. DBGE("(inode=0x%p, file=0x%p)n", inode, file);
  2553. INC_USE_COUNT;
  2554. for (devc = vwsnd_dev_list; devc; devc = devc->next_dev)
  2555. if ((devc->audio_minor & ~0x0F) == (minor & ~0x0F))
  2556. break;
  2557. if (devc == NULL) {
  2558. DEC_USE_COUNT;
  2559. return -ENODEV;
  2560. }
  2561. down(&devc->open_sema);
  2562. while (devc->open_mode & file->f_mode) {
  2563. up(&devc->open_sema);
  2564. if (file->f_flags & O_NONBLOCK) {
  2565. DEC_USE_COUNT;
  2566. return -EBUSY;
  2567. }
  2568. interruptible_sleep_on(&devc->open_wait);
  2569. if (signal_pending(current)) {
  2570. DEC_USE_COUNT;
  2571. return -ERESTARTSYS;
  2572. }
  2573. down(&devc->open_sema);
  2574. }
  2575. devc->open_mode |= file->f_mode & (FMODE_READ | FMODE_WRITE);
  2576. up(&devc->open_sema);
  2577. /* get default sample format from minor number. */
  2578. sw_samplefmt = 0;
  2579. if ((minor & 0xF) == SND_DEV_DSP)
  2580. sw_samplefmt = AFMT_U8;
  2581. else if ((minor & 0xF) == SND_DEV_AUDIO)
  2582. sw_samplefmt = AFMT_MU_LAW;
  2583. else if ((minor & 0xF) == SND_DEV_DSP16)
  2584. sw_samplefmt = AFMT_S16_LE;
  2585. else
  2586. ASSERT(0);
  2587. /* Initialize vwsnd_ports. */
  2588. down(&devc->io_sema);
  2589. {
  2590. if (file->f_mode & FMODE_READ) {
  2591. devc->rport.swstate        = SW_INITIAL;
  2592. devc->rport.flags          = 0;
  2593. devc->rport.sw_channels    = 1;
  2594. devc->rport.sw_samplefmt   = sw_samplefmt;
  2595. devc->rport.sw_framerate   = 8000;
  2596. devc->rport.sw_fragshift   = DEFAULT_FRAGSHIFT;
  2597. devc->rport.sw_fragcount   = DEFAULT_FRAGCOUNT;
  2598. devc->rport.sw_subdivshift = DEFAULT_SUBDIVSHIFT;
  2599. devc->rport.byte_count     = 0;
  2600. devc->rport.frag_count     = 0;
  2601. }
  2602. if (file->f_mode & FMODE_WRITE) {
  2603. devc->wport.swstate        = SW_INITIAL;
  2604. devc->wport.flags          = 0;
  2605. devc->wport.sw_channels    = 1;
  2606. devc->wport.sw_samplefmt   = sw_samplefmt;
  2607. devc->wport.sw_framerate   = 8000;
  2608. devc->wport.sw_fragshift   = DEFAULT_FRAGSHIFT;
  2609. devc->wport.sw_fragcount   = DEFAULT_FRAGCOUNT;
  2610. devc->wport.sw_subdivshift = DEFAULT_SUBDIVSHIFT;
  2611. devc->wport.byte_count     = 0;
  2612. devc->wport.frag_count     = 0;
  2613. }
  2614. }
  2615. up(&devc->io_sema);
  2616. file->private_data = devc;
  2617. DBGRV();
  2618. return 0;
  2619. }
  2620. /*
  2621.  * Release (close) the audio device.
  2622.  */
  2623. static int vwsnd_audio_release(struct inode *inode, struct file *file)
  2624. {
  2625. vwsnd_dev_t *devc = (vwsnd_dev_t *) file->private_data;
  2626. vwsnd_port_t *wport = NULL, *rport = NULL;
  2627. int err = 0;
  2628. lock_kernel();
  2629. down(&devc->io_sema);
  2630. {
  2631. DBGEV("(inode=0x%p, file=0x%p)n", inode, file);
  2632. if (file->f_mode & FMODE_READ)
  2633. rport = &devc->rport;
  2634. if (file->f_mode & FMODE_WRITE) {
  2635. wport = &devc->wport;
  2636. pcm_flush_frag(devc);
  2637. pcm_write_sync(devc);
  2638. }
  2639. pcm_shutdown(devc, rport, wport);
  2640. if (rport)
  2641. rport->swstate = SW_OFF;
  2642. if (wport)
  2643. wport->swstate = SW_OFF;
  2644. }
  2645. up(&devc->io_sema);
  2646. down(&devc->open_sema);
  2647. {
  2648. devc->open_mode &= ~file->f_mode;
  2649. }
  2650. up(&devc->open_sema);
  2651. wake_up(&devc->open_wait);
  2652. DEC_USE_COUNT;
  2653. DBGR();
  2654. unlock_kernel();
  2655. return err;
  2656. }
  2657. static struct file_operations vwsnd_audio_fops = {
  2658. owner: THIS_MODULE,
  2659. llseek: no_llseek,
  2660. read: vwsnd_audio_read,
  2661. write: vwsnd_audio_write,
  2662. poll: vwsnd_audio_poll,
  2663. ioctl: vwsnd_audio_ioctl,
  2664. mmap: vwsnd_audio_mmap,
  2665. open: vwsnd_audio_open,
  2666. release: vwsnd_audio_release,
  2667. };
  2668. /*****************************************************************************/
  2669. /* mixer driver */
  2670. /* open the mixer device. */
  2671. static int vwsnd_mixer_open(struct inode *inode, struct file *file)
  2672. {
  2673. vwsnd_dev_t *devc;
  2674. DBGEV("(inode=0x%p, file=0x%p)n", inode, file);
  2675. INC_USE_COUNT;
  2676. for (devc = vwsnd_dev_list; devc; devc = devc->next_dev)
  2677. if (devc->mixer_minor == MINOR(inode->i_rdev))
  2678. break;
  2679. if (devc == NULL) {
  2680. DEC_USE_COUNT;
  2681. return -ENODEV;
  2682. }
  2683. file->private_data = devc;
  2684. return 0;
  2685. }
  2686. /* release (close) the mixer device. */
  2687. static int vwsnd_mixer_release(struct inode *inode, struct file *file)
  2688. {
  2689. DBGEV("(inode=0x%p, file=0x%p)n", inode, file);
  2690. DEC_USE_COUNT;
  2691. return 0;
  2692. }
  2693. /* mixer_read_ioctl handles all read ioctls on the mixer device. */
  2694. static int mixer_read_ioctl(vwsnd_dev_t *devc, unsigned int nr, caddr_t arg)
  2695. {
  2696. int val = -1;
  2697. DBGEV("(devc=0x%p, nr=0x%x, arg=0x%p)n", devc, nr, arg);
  2698. switch (nr) {
  2699. case SOUND_MIXER_CAPS:
  2700. val = SOUND_CAP_EXCL_INPUT;
  2701. break;
  2702. case SOUND_MIXER_DEVMASK:
  2703. val = (SOUND_MASK_PCM | SOUND_MASK_LINE |
  2704.        SOUND_MASK_MIC | SOUND_MASK_CD | SOUND_MASK_RECLEV);
  2705. break;
  2706. case SOUND_MIXER_STEREODEVS:
  2707. val = (SOUND_MASK_PCM | SOUND_MASK_LINE |
  2708.        SOUND_MASK_MIC | SOUND_MASK_CD | SOUND_MASK_RECLEV);
  2709. break;
  2710. case SOUND_MIXER_OUTMASK:
  2711. val = (SOUND_MASK_PCM | SOUND_MASK_LINE |
  2712.        SOUND_MASK_MIC | SOUND_MASK_CD);
  2713. break;
  2714. case SOUND_MIXER_RECMASK:
  2715. val = (SOUND_MASK_PCM | SOUND_MASK_LINE |
  2716.        SOUND_MASK_MIC | SOUND_MASK_CD);
  2717. break;
  2718. case SOUND_MIXER_PCM:
  2719. val = ad1843_get_gain(&devc->lith, &ad1843_gain_PCM);
  2720. break;
  2721. case SOUND_MIXER_LINE:
  2722. val = ad1843_get_gain(&devc->lith, &ad1843_gain_LINE);
  2723. break;
  2724. case SOUND_MIXER_MIC:
  2725. val = ad1843_get_gain(&devc->lith, &ad1843_gain_MIC);
  2726. break;
  2727. case SOUND_MIXER_CD:
  2728. val = ad1843_get_gain(&devc->lith, &ad1843_gain_CD);
  2729. break;
  2730. case SOUND_MIXER_RECLEV:
  2731. val = ad1843_get_gain(&devc->lith, &ad1843_gain_RECLEV);
  2732. break;
  2733. case SOUND_MIXER_RECSRC:
  2734. val = ad1843_get_recsrc(&devc->lith);
  2735. break;
  2736. case SOUND_MIXER_OUTSRC:
  2737. val = ad1843_get_outsrc(&devc->lith);
  2738. break;
  2739. default:
  2740. return -EINVAL;
  2741. }
  2742. return put_user(val, (int *) arg);
  2743. }
  2744. /* mixer_write_ioctl handles all write ioctls on the mixer device. */
  2745. static int mixer_write_ioctl(vwsnd_dev_t *devc, unsigned int nr, caddr_t arg)
  2746. {
  2747. int val;
  2748. int err;
  2749. DBGEV("(devc=0x%p, nr=0x%x, arg=0x%p)n", devc, nr, arg);
  2750. err = get_user(val, (int *) arg);
  2751. if (err)
  2752. return -EFAULT;
  2753. switch (nr) {
  2754. case SOUND_MIXER_PCM:
  2755. val = ad1843_set_gain(&devc->lith, &ad1843_gain_PCM, val);
  2756. break;
  2757. case SOUND_MIXER_LINE:
  2758. val = ad1843_set_gain(&devc->lith, &ad1843_gain_LINE, val);
  2759. break;
  2760. case SOUND_MIXER_MIC:
  2761. val = ad1843_set_gain(&devc->lith, &ad1843_gain_MIC, val);
  2762. break;
  2763. case SOUND_MIXER_CD:
  2764. val = ad1843_set_gain(&devc->lith, &ad1843_gain_CD, val);
  2765. break;
  2766. case SOUND_MIXER_RECLEV:
  2767. val = ad1843_set_gain(&devc->lith, &ad1843_gain_RECLEV, val);
  2768. break;
  2769. case SOUND_MIXER_RECSRC:
  2770. if (devc->rport.swbuf || devc->wport.swbuf)
  2771. return -EBUSY; /* can't change recsrc while running */
  2772. val = ad1843_set_recsrc(&devc->lith, val);
  2773. break;
  2774. case SOUND_MIXER_OUTSRC:
  2775. val = ad1843_set_outsrc(&devc->lith, val);
  2776. break;
  2777. default:
  2778. return -EINVAL;
  2779. }
  2780. if (val < 0)
  2781. return val;
  2782. return put_user(val, (int *) arg);
  2783. }
  2784. /* This is the ioctl entry to the mixer driver. */
  2785. static int vwsnd_mixer_ioctl(struct inode *ioctl,
  2786.       struct file *file,
  2787.       unsigned int cmd,
  2788.       unsigned long arg)
  2789. {
  2790. vwsnd_dev_t *devc = (vwsnd_dev_t *) file->private_data;
  2791. const unsigned int nrmask = _IOC_NRMASK << _IOC_NRSHIFT;
  2792. const unsigned int nr = (cmd & nrmask) >> _IOC_NRSHIFT;
  2793. int retval;
  2794. DBGEV("(devc=0x%p, cmd=0x%x, arg=0x%lx)n", devc, cmd, arg);
  2795. down(&devc->mix_sema);
  2796. {
  2797. if ((cmd & ~nrmask) == MIXER_READ(0))
  2798. retval = mixer_read_ioctl(devc, nr, (caddr_t) arg);
  2799. else if ((cmd & ~nrmask) == MIXER_WRITE(0))
  2800. retval = mixer_write_ioctl(devc, nr, (caddr_t) arg);
  2801. else
  2802. retval = -EINVAL;
  2803. }
  2804. up(&devc->mix_sema);
  2805. return retval;
  2806. }
  2807. static struct file_operations vwsnd_mixer_fops = {
  2808. owner: THIS_MODULE,
  2809. llseek: no_llseek,
  2810. ioctl: vwsnd_mixer_ioctl,
  2811. open: vwsnd_mixer_open,
  2812. release: vwsnd_mixer_release,
  2813. };
  2814. /*****************************************************************************/
  2815. /* probe/attach/unload */
  2816. /* driver probe routine.  Return nonzero if hardware is found. */
  2817. static int __init probe_vwsnd(struct address_info *hw_config)
  2818. {
  2819. lithium_t lith;
  2820. int w;
  2821. unsigned long later;
  2822. DBGEV("(hw_config=0x%p)n", hw_config);
  2823. /* XXX verify lithium present (to prevent crash on non-vw) */
  2824. if (li_create(&lith, hw_config->io_base) != 0) {
  2825. printk(KERN_WARNING "probe_vwsnd: can't map lithiumn");
  2826. return 0;
  2827. }
  2828. later = jiffies + 2;
  2829. li_writel(&lith, LI_HOST_CONTROLLER, LI_HC_LINK_ENABLE);
  2830. do {
  2831. w = li_readl(&lith, LI_HOST_CONTROLLER);
  2832. } while (w == LI_HC_LINK_ENABLE && jiffies < later);
  2833. li_destroy(&lith);
  2834. DBGPV("HC = 0x%04xn", w);
  2835. if ((w == LI_HC_LINK_ENABLE) || (w & LI_HC_LINK_CODEC)) {
  2836. /* This may indicate a beta machine with no audio,
  2837.  * or a future machine with different audio.
  2838.  * On beta-release 320 w/ no audio, HC == 0x4000 */
  2839. printk(KERN_WARNING "probe_vwsnd: audio codec not foundn");
  2840. return 0;
  2841. }
  2842. if (w & LI_HC_LINK_FAILURE) {
  2843. printk(KERN_WARNING "probe_vwsnd: can't init audio codecn");
  2844. return 0;
  2845. }
  2846. printk(KERN_INFO "probe_vwsnd: lithium audio foundn");
  2847. return 1;
  2848. }
  2849. /*
  2850.  * driver attach routine.  Initialize driver data structures and
  2851.  * initialize hardware.  A new vwsnd_dev_t is allocated and put
  2852.  * onto the global list, vwsnd_dev_list.
  2853.  *
  2854.  * Return +minor_dev on success, -errno on failure.
  2855.  */
  2856. static int __init attach_vwsnd(struct address_info *hw_config)
  2857. {
  2858. vwsnd_dev_t *devc = NULL;
  2859. int err = -ENOMEM;
  2860. DBGEV("(hw_config=0x%p)n", hw_config);
  2861. devc = kmalloc(sizeof (vwsnd_dev_t), GFP_KERNEL);
  2862. if (devc == NULL)
  2863. goto fail0;
  2864. err = li_create(&devc->lith, hw_config->io_base);
  2865. if (err)
  2866. goto fail1;
  2867. init_waitqueue(&devc->open_wait);
  2868. devc->rport.hwbuf_size = HWBUF_SIZE;
  2869. devc->rport.hwbuf_vaddr = __get_free_pages(GFP_KERNEL, HWBUF_ORDER);
  2870. if (!devc->rport.hwbuf_vaddr)
  2871. goto fail2;
  2872. devc->rport.hwbuf = (caddr_t) devc->rport.hwbuf_vaddr;
  2873. devc->rport.hwbuf_paddr = virt_to_phys(devc->rport.hwbuf);
  2874. /*
  2875.  * Quote from the NT driver:
  2876.  *
  2877.  * // WARNING!!! HACK to setup output dma!!!
  2878.  * // This is required because even on output there is some data
  2879.  * // trickling into the input DMA channel.  This is a bug in the
  2880.  * // Lithium microcode.
  2881.  * // --sde
  2882.  *
  2883.  * We set the input side's DMA base address here.  It will remain
  2884.  * valid until the driver is unloaded.
  2885.  */
  2886. li_writel(&devc->lith, LI_COMM1_BASE,
  2887.   devc->rport.hwbuf_paddr >> 8 | 1 << (37 - 8));
  2888. devc->wport.hwbuf_size = HWBUF_SIZE;
  2889. devc->wport.hwbuf_vaddr = __get_free_pages(GFP_KERNEL, HWBUF_ORDER);
  2890. if (!devc->wport.hwbuf_vaddr)
  2891. goto fail3;
  2892. devc->wport.hwbuf = (caddr_t) devc->wport.hwbuf_vaddr;
  2893. devc->wport.hwbuf_paddr = virt_to_phys(devc->wport.hwbuf);
  2894. DBGP("wport hwbuf = 0x%pn", devc->wport.hwbuf);
  2895. DBGDO(shut_up++);
  2896. err = ad1843_init(&devc->lith);
  2897. DBGDO(shut_up--);
  2898. if (err)
  2899. goto fail4;
  2900. /* install interrupt handler */
  2901. err = request_irq(hw_config->irq, vwsnd_audio_intr, 0, "vwsnd", devc);
  2902. if (err)
  2903. goto fail5;
  2904. /* register this device's drivers. */
  2905. devc->audio_minor = register_sound_dsp(&vwsnd_audio_fops, -1);
  2906. if ((err = devc->audio_minor) < 0) {
  2907. DBGDO(printk(KERN_WARNING
  2908.      "attach_vwsnd: register_sound_dsp error %dn",
  2909.      err));
  2910. goto fail6;
  2911. }
  2912. devc->mixer_minor = register_sound_mixer(&vwsnd_mixer_fops,
  2913.  devc->audio_minor >> 4);
  2914. if ((err = devc->mixer_minor) < 0) {
  2915. DBGDO(printk(KERN_WARNING
  2916.      "attach_vwsnd: register_sound_mixer error %dn",
  2917.      err));
  2918. goto fail7;
  2919. }
  2920. /* Squirrel away device indices for unload routine. */
  2921. hw_config->slots[0] = devc->audio_minor;
  2922. /* Initialize as much of *devc as possible */
  2923. devc->open_sema = MUTEX;
  2924. devc->io_sema = MUTEX;
  2925. devc->mix_sema = MUTEX;
  2926. devc->open_mode = 0;
  2927. devc->rport.lock = SPIN_LOCK_UNLOCKED;
  2928. init_waitqueue(&devc->rport.queue);
  2929. devc->rport.swstate = SW_OFF;
  2930. devc->rport.hwstate = HW_STOPPED;
  2931. devc->rport.flags = 0;
  2932. devc->rport.swbuf = NULL;
  2933. devc->wport.lock = SPIN_LOCK_UNLOCKED;
  2934. init_waitqueue(&devc->wport.queue);
  2935. devc->wport.swstate = SW_OFF;
  2936. devc->wport.hwstate = HW_STOPPED;
  2937. devc->wport.flags = 0;
  2938. devc->wport.swbuf = NULL;
  2939. /* Success.  Link us onto the local device list. */
  2940. devc->next_dev = vwsnd_dev_list;
  2941. vwsnd_dev_list = devc;
  2942. return devc->audio_minor;
  2943. /* So many ways to fail.  Undo what we did. */
  2944.  fail7:
  2945. unregister_sound_dsp(devc->audio_minor);
  2946.  fail6:
  2947. free_irq(hw_config->irq, devc);
  2948.  fail5:
  2949.  fail4:
  2950. free_pages(devc->wport.hwbuf_vaddr, HWBUF_ORDER);
  2951.  fail3:
  2952. free_pages(devc->rport.hwbuf_vaddr, HWBUF_ORDER);
  2953.  fail2:
  2954. li_destroy(&devc->lith);
  2955.  fail1:
  2956. kfree(devc);
  2957.  fail0:
  2958. return err;
  2959. }
  2960. static int __exit unload_vwsnd(struct address_info *hw_config)
  2961. {
  2962. vwsnd_dev_t *devc, **devcp;
  2963. DBGE("()n");
  2964. devcp = &vwsnd_dev_list;
  2965. while ((devc = *devcp)) {
  2966. if (devc->audio_minor == hw_config->slots[0]) {
  2967. *devcp = devc->next_dev;
  2968. break;
  2969. }
  2970. devcp = &devc->next_dev;
  2971. }
  2972. if (!devc)
  2973. return -ENODEV;
  2974. unregister_sound_mixer(devc->mixer_minor);
  2975. unregister_sound_dsp(devc->audio_minor);
  2976. free_irq(hw_config->irq, devc);
  2977. free_pages(devc->wport.hwbuf_vaddr, HWBUF_ORDER);
  2978. free_pages(devc->rport.hwbuf_vaddr, HWBUF_ORDER);
  2979. li_destroy(&devc->lith);
  2980. kfree(devc);
  2981. return 0;
  2982. }
  2983. /*****************************************************************************/
  2984. /* initialization and loadable kernel module interface */
  2985. static struct address_info the_hw_config = {
  2986. 0xFF001000, /* lithium phys addr  */
  2987. CO_IRQ(CO_APIC_LI_AUDIO) /* irq */
  2988. };
  2989. MODULE_DESCRIPTION("SGI Visual Workstation sound module");
  2990. MODULE_AUTHOR("Bob Miller <kbob@sgi.com>");
  2991. MODULE_LICENSE("GPL");
  2992. static int __init init_vwsnd(void)
  2993. {
  2994. int err;
  2995. DBGXV("n");
  2996. DBGXV("sound::vwsnd::init_module()n");
  2997. if(!probe_vwsnd(&the_hw_config))
  2998. return -ENODEV;
  2999. err = attach_vwsnd(&the_hw_config);
  3000. if (err < 0)
  3001. return err;
  3002. return 0;
  3003. }
  3004. static void __exit cleanup_vwsnd(void)
  3005. {
  3006. DBGX("sound::vwsnd::cleanup_module()n");
  3007. unload_vwsnd(&the_hw_config);
  3008. }
  3009. module_init(init_vwsnd);
  3010. module_exit(cleanup_vwsnd);