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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  *
  3.  *      ESS Maestro/Maestro-2/Maestro-2E driver for Linux 2.[23].x
  4.  *
  5.  *      This program is free software; you can redistribute it and/or modify
  6.  *      it under the terms of the GNU General Public License as published by
  7.  *      the Free Software Foundation; either version 2 of the License, or
  8.  *      (at your option) any later version.
  9.  *
  10.  *      This program is distributed in the hope that it will be useful,
  11.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *      GNU General Public License for more details.
  14.  *
  15.  *      You should have received a copy of the GNU General Public License
  16.  *      along with this program; if not, write to the Free Software
  17.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  * (c) Copyright 1999  Alan Cox <alan.cox@linux.org>
  20.  *
  21.  * Based heavily on SonicVibes.c:
  22.  *      Copyright (C) 1998-1999  Thomas Sailer (sailer@ife.ee.ethz.ch)
  23.  *
  24.  * Heavily modified by Zach Brown <zab@zabbo.net> based on lunch
  25.  * with ESS engineers.  Many thanks to Howard Kim for providing 
  26.  * contacts and hardware.  Honorable mention goes to Eric 
  27.  * Brombaugh for all sorts of things.  Best regards to the 
  28.  * proprietors of Hack Central for fine lodging.
  29.  *
  30.  *  Supported devices:
  31.  *  /dev/dsp0-3    standard /dev/dsp device, (mostly) OSS compatible
  32.  *  /dev/mixer  standard /dev/mixer device, (mostly) OSS compatible
  33.  *
  34.  *  Hardware Description
  35.  *
  36.  * A working Maestro setup contains the Maestro chip wired to a 
  37.  * codec or 2.  In the Maestro we have the APUs, the ASSP, and the
  38.  * Wavecache.  The APUs can be though of as virtual audio routing
  39.  * channels.  They can take data from a number of sources and perform
  40.  * basic encodings of the data.  The wavecache is a storehouse for
  41.  * PCM data.  Typically it deals with PCI and interracts with the
  42.  * APUs.  The ASSP is a wacky DSP like device that ESS is loth
  43.  * to release docs on.  Thankfully it isn't required on the Maestro
  44.  * until you start doing insane things like FM emulation and surround
  45.  * encoding.  The codecs are almost always AC-97 compliant codecs, 
  46.  * but it appears that early Maestros may have had PT101 (an ESS
  47.  * part?) wired to them.  The only real difference in the Maestro
  48.  * families is external goop like docking capability, memory for
  49.  * the ASSP, and initialization differences.
  50.  *
  51.  *  Driver Operation
  52.  *
  53.  * We only drive the APU/Wavecache as typical DACs and drive the
  54.  * mixers in the codecs.  There are 64 APUs.  We assign 6 to each
  55.  * /dev/dsp? device.  2 channels for output, and 4 channels for
  56.  * input.
  57.  *
  58.  * Each APU can do a number of things, but we only really use
  59.  * 3 basic functions.  For playback we use them to convert PCM
  60.  * data fetched over PCI by the wavecahche into analog data that
  61.  * is handed to the codec.  One APU for mono, and a pair for stereo.
  62.  * When in stereo, the combination of smarts in the APU and Wavecache
  63.  * decide which wavecache gets the left or right channel.
  64.  *
  65.  * For record we still use the old overly mono system.  For each in
  66.  * coming channel the data comes in from the codec, through a 'input'
  67.  * APU, through another rate converter APU, and then into memory via
  68.  * the wavecache and PCI.  If its stereo, we mash it back into LRLR in
  69.  * software.  The pass between the 2 APUs is supposedly what requires us
  70.  * to have a 512 byte buffer sitting around in wavecache/memory.
  71.  *
  72.  * The wavecache makes our life even more fun.  First off, it can
  73.  * only address the first 28 bits of PCI address space, making it
  74.  * useless on quite a few architectures.  Secondly, its insane.
  75.  * It claims to fetch from 4 regions of PCI space, each 4 meg in length.
  76.  * But that doesn't really work.  You can only use 1 region.  So all our
  77.  * allocations have to be in 4meg of each other.  Booo.  Hiss.
  78.  * So we have a module parameter, dsps_order, that is the order of
  79.  * the number of dsps to provide.  All their buffer space is allocated
  80.  * on open time.  The sonicvibes OSS routines we inherited really want
  81.  * power of 2 buffers, so we have all those next to each other, then
  82.  * 512 byte regions for the recording wavecaches.  This ends up
  83.  * wasting quite a bit of memory.  The only fixes I can see would be 
  84.  * getting a kernel allocator that could work in zones, or figuring out
  85.  * just how to coerce the WP into doing what we want.
  86.  *
  87.  * The indirection of the various registers means we have to spinlock
  88.  * nearly all register accesses.  We have the main register indirection
  89.  * like the wave cache, maestro registers, etc.  Then we have beasts
  90.  * like the APU interface that is indirect registers gotten at through
  91.  * the main maestro indirection.  Ouch.  We spinlock around the actual
  92.  * ports on a per card basis.  This means spinlock activity at each IO
  93.  * operation, but the only IO operation clusters are in non critical 
  94.  * paths and it makes the code far easier to follow.  Interrupts are
  95.  * blocked while holding the locks because the int handler has to
  96.  * get at some of them :(.  The mixer interface doesn't, however.
  97.  * We also have an OSS state lock that is thrown around in a few
  98.  * places.
  99.  *
  100.  * This driver has brute force APM suspend support.  We catch suspend
  101.  * notifications and stop all work being done on the chip.  Any people
  102.  * that try between this shutdown and the real suspend operation will
  103.  * be put to sleep.  When we resume we restore our software state on
  104.  * the chip and wake up the people that were using it.  The code thats
  105.  * being used now is quite dirty and assumes we're on a uni-processor
  106.  * machine.  Much of it will need to be cleaned up for SMP ACPI or 
  107.  * similar.
  108.  *
  109.  * We also pay attention to PCI power management now.  The driver
  110.  * will power down units of the chip that it knows aren't needed.
  111.  * The WaveProcessor and company are only powered on when people
  112.  * have /dev/dsp*s open.  On removal the driver will
  113.  * power down the maestro entirely.  There could still be
  114.  * trouble with BIOSen that magically change power states 
  115.  * themselves, but we'll see.  
  116.  *
  117.  * History
  118.  *  v0.15 - May 21 2001 - Marcus Meissner <mm@caldera.de>
  119.  *      Ported to Linux 2.4 PCI API. Some clean ups, global devs list
  120.  *      removed (now using pci device driver data).
  121.  *      PM needs to be polished still. Bumped version.
  122.  *  (still kind of v0.14) May 13 2001 - Ben Pfaff <pfaffben@msu.edu>
  123.  *      Add support for 978 docking and basic hardware volume control
  124.  *  (still kind of v0.14) Nov 23 - Alan Cox <alan@redhat.com>
  125.  * Add clocking= for people with seriously warped hardware
  126.  *  (still v0.14) Nov 10 2000 - Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
  127.  * add __init to maestro_ac97_init() and maestro_install()
  128.  *  (still based on v0.14) Mar 29 2000 - Zach Brown <zab@redhat.com>
  129.  * move to 2.3 power management interface, which
  130.  * required hacking some suspend/resume/check paths 
  131.  * make static compilation work
  132.  *  v0.14 - Jan 28 2000 - Zach Brown <zab@redhat.com>
  133.  * add PCI power management through ACPI regs.
  134.  * we now shut down on machine reboot/halt
  135.  * leave scary PCI config items alone (isa stuff, mostly)
  136.  * enable 1921s, it seems only mine was broke.
  137.  * fix swapped left/right pcm dac.  har har.
  138.  * up bob freq, increase buffers, fix pointers at underflow
  139.  * silly compilation problems
  140.  *  v0.13 - Nov 18 1999 - Zach Brown <zab@redhat.com>
  141.  * fix nec Versas?  man would that be cool.
  142.  *  v0.12 - Nov 12 1999 - Zach Brown <zab@redhat.com>
  143.  * brown bag volume max fix..
  144.  *  v0.11 - Nov 11 1999 - Zach Brown <zab@redhat.com>
  145.  * use proper stereo apu decoding, mmap/write should work.
  146.  * make volume sliders more useful, tweak rate calculation.
  147.  * fix lame 8bit format reporting bug.  duh. apm apu saving buglet also
  148.  * fix maestro 1 clock freq "bug", remove pt101 support
  149.  *  v0.10 - Oct 28 1999 - Zach Brown <zab@redhat.com>
  150.  * aha, so, sometimes the WP writes a status word to offset 0
  151.  *   from one of the PCMBARs.  rearrange allocation accordingly..
  152.  *   cheers again to Eric for being a good hacker in investigating this.
  153.  * Jeroen Hoogervorst submits 7500 fix out of nowhere.  yay.  :)
  154.  *  v0.09 - Oct 23 1999 - Zach Brown <zab@redhat.com>
  155.  * added APM support.
  156.  * re-order something such that some 2Es now work.  Magic!
  157.  * new codec reset routine.  made some codecs come to life.
  158.  * fix clear_advance, sync some control with ESS.
  159.  * now write to all base regs to be paranoid.
  160.  *  v0.08 - Oct 20 1999 - Zach Brown <zab@redhat.com>
  161.  * Fix initial buflen bug.  I am so smart.  also smp compiling..
  162.  * I owe Eric yet another beer: fixed recmask, igain, 
  163.  *   muting, and adc sync consistency.  Go Team.
  164.  *  v0.07 - Oct 4 1999 - Zach Brown <zab@redhat.com>
  165.  * tweak adc/dac, formating, and stuff to allow full duplex
  166.  * allocate dsps memory at open() so we can fit in the wavecache window
  167.  * fix wavecache braindamage.  again.  no more scribbling?
  168.  * fix ess 1921 codec bug on some laptops.
  169.  * fix dumb pci scanning bug
  170.  * started 2.3 cleanup, redid spinlocks, little cleanups
  171.  *  v0.06 - Sep 20 1999 - Zach Brown <zab@redhat.com>
  172.  * fix wavecache thinkos.  limit to 1 /dev/dsp.
  173.  * eric is wearing his thinking toque this week.
  174.  * spotted apu mode bugs and gain ramping problem
  175.  * don't touch weird mixer regs, make recmask optional
  176.  * fixed igain inversion, defaults for mixers, clean up rec_start
  177.  * make mono recording work.
  178.  * report subsystem stuff, please send reports.
  179.  * littles: parallel out, amp now
  180.  *  v0.05 - Sep 17 1999 - Zach Brown <zab@redhat.com>
  181.  * merged and fixed up Eric's initial recording code
  182.  * munged format handling to catch misuse, needs rewrite.
  183.  * revert ring bus init, fixup shared int, add pci busmaster setting
  184.  * fix mixer oss interface, fix mic mute and recmask
  185.  * mask off unsupported mixers, reset with all 1s, modularize defaults
  186.  * make sure bob is running while we need it
  187.  * got rid of device limit, initial minimal apm hooks
  188.  * pull out dead code/includes, only allow multimedia/audio maestros
  189.  *  v0.04 - Sep 01 1999 - Zach Brown <zab@redhat.com>
  190.  * copied memory leak fix from sonicvibes driver
  191.  * different ac97 reset, play with 2.0 ac97, simplify ring bus setup
  192.  * bob freq code, region sanity, jitter sync fix; all from Eric 
  193.  *
  194.  * TODO
  195.  * fix bob frequency
  196.  * endianness
  197.  * do smart things with ac97 2.0 bits.
  198.  * dual codecs
  199.  * leave 54->61 open
  200.  *
  201.  * it also would be fun to have a mode that would not use pci dma at all
  202.  * but would copy into the wavecache on board memory and use that 
  203.  * on architectures that don't like the maestro's pci dma ickiness.
  204.  */
  205. /*****************************************************************************/
  206. #include <linux/version.h>
  207. #include <linux/module.h>
  208. #include <linux/sched.h>
  209. #include <linux/smp_lock.h>
  210. #include <linux/wrapper.h>
  211. #include <linux/string.h>
  212. #include <linux/ctype.h>
  213. #include <linux/ioport.h>
  214. #include <linux/delay.h>
  215. #include <linux/sound.h>
  216. #include <linux/slab.h>
  217. #include <linux/soundcard.h>
  218. #include <linux/pci.h>
  219. #include <linux/spinlock.h>
  220. #include <asm/io.h>
  221. #include <asm/dma.h>
  222. #include <linux/init.h>
  223. #include <linux/poll.h>
  224. #include <linux/reboot.h>
  225. #include <asm/uaccess.h>
  226. #include <asm/hardirq.h>
  227. #include <linux/bitops.h>
  228. #include <linux/pm.h>
  229. static int maestro_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *d);
  230. #include "maestro.h"
  231. static struct pci_driver maestro_pci_driver;
  232. /* --------------------------------------------------------------------- */
  233. #define M_DEBUG 1
  234. #ifdef M_DEBUG
  235. static int debug=0;
  236. #define M_printk(args...) {if (debug) printk(args);}
  237. #else
  238. #define M_printk(x)
  239. #endif
  240. /* we try to setup 2^(dsps_order) /dev/dsp devices */
  241. static int dsps_order=0;
  242. /* wether or not we mess around with power management */
  243. static int use_pm=2; /* set to 1 for force */
  244. /* clocking for broken hardware - a few laptops seem to use a 50Khz clock
  245. ie insmod with clocking=50000 or so */
  246. static int clocking=48000;
  247. MODULE_AUTHOR("Zach Brown <zab@zabbo.net>, Alan Cox <alan@redhat.com>");
  248. MODULE_DESCRIPTION("ESS Maestro Driver");
  249. MODULE_LICENSE("GPL");
  250. #ifdef M_DEBUG
  251. MODULE_PARM(debug,"i");
  252. #endif
  253. MODULE_PARM(dsps_order,"i");
  254. MODULE_PARM(use_pm,"i");
  255. MODULE_PARM(clocking, "i");
  256. /* --------------------------------------------------------------------- */
  257. #define DRIVER_VERSION "0.15"
  258. #ifndef PCI_VENDOR_ESS
  259. #define PCI_VENDOR_ESS 0x125D
  260. #define PCI_DEVICE_ID_ESS_ESS1968 0x1968 /* Maestro 2 */
  261. #define PCI_DEVICE_ID_ESS_ESS1978       0x1978 /* Maestro 2E */
  262. #define PCI_VENDOR_ESS_OLD 0x1285 /* Platform Tech, 
  263. the people the maestro 
  264. was bought from */
  265. #define PCI_DEVICE_ID_ESS_ESS0100 0x0100 /* maestro 1 */
  266. #endif /* PCI_VENDOR_ESS */
  267. #define ESS_CHAN_HARD 0x100
  268. /* NEC Versas ? */
  269. #define NEC_VERSA_SUBID1 0x80581033
  270. #define NEC_VERSA_SUBID2 0x803c1033
  271. /* changed so that I could actually find all the
  272. references and fix them up.  its a little more readable now. */
  273. #define ESS_FMT_STEREO 0x01
  274. #define ESS_FMT_16BIT 0x02
  275. #define ESS_FMT_MASK 0x03
  276. #define ESS_DAC_SHIFT 0   
  277. #define ESS_ADC_SHIFT 4
  278. #define ESS_STATE_MAGIC 0x125D1968
  279. #define ESS_CARD_MAGIC 0x19283746
  280. #define DAC_RUNNING 1
  281. #define ADC_RUNNING 2
  282. #define MAX_DSP_ORDER 2
  283. #define MAX_DSPS (1<<MAX_DSP_ORDER)
  284. #define NR_DSPS (1<<dsps_order)
  285. #define NR_IDRS 32
  286. #define NR_APUS 64
  287. #define NR_APU_REGS 16
  288. /* acpi states */
  289. enum {
  290. ACPI_D0=0,
  291. ACPI_D1,
  292. ACPI_D2,
  293. ACPI_D3
  294. };
  295. /* bits in the acpi masks */
  296. #define ACPI_12MHZ ( 1 << 15)
  297. #define ACPI_24MHZ ( 1 << 14)
  298. #define ACPI_978 ( 1 << 13)
  299. #define ACPI_SPDIF ( 1 << 12)
  300. #define ACPI_GLUE ( 1 << 11)
  301. #define ACPI__10 ( 1 << 10) /* reserved */
  302. #define ACPI_PCIINT ( 1 << 9)
  303. #define ACPI_HV ( 1 << 8) /* hardware volume */
  304. #define ACPI_GPIO ( 1 << 7)
  305. #define ACPI_ASSP ( 1 << 6)
  306. #define ACPI_SB ( 1 << 5) /* sb emul */
  307. #define ACPI_FM ( 1 << 4) /* fm emul */
  308. #define ACPI_RB ( 1 << 3) /* ringbus / aclink */
  309. #define ACPI_MIDI ( 1 << 2) 
  310. #define ACPI_GP ( 1 << 1) /* game port */
  311. #define ACPI_WP ( 1 << 0) /* wave processor */
  312. #define ACPI_ALL (0xffff)
  313. #define ACPI_SLEEP (~(ACPI_SPDIF|ACPI_ASSP|ACPI_SB|ACPI_FM| 
  314. ACPI_MIDI|ACPI_GP|ACPI_WP))
  315. #define ACPI_NONE (ACPI__10)
  316. /* these masks indicate which units we care about at
  317. which states */
  318. u16 acpi_state_mask[] = {
  319. [ACPI_D0] = ACPI_ALL,
  320. [ACPI_D1] = ACPI_SLEEP,
  321. [ACPI_D2] = ACPI_SLEEP,
  322. [ACPI_D3] = ACPI_NONE
  323. };
  324. static char version[] __devinitdata =
  325. KERN_INFO "maestro: version " DRIVER_VERSION " time " __TIME__ " " __DATE__ "n";
  326. static const unsigned sample_size[] = { 1, 2, 2, 4 };
  327. static const unsigned sample_shift[] = { 0, 1, 1, 2 };
  328. enum card_types_t {
  329. TYPE_MAESTRO,
  330. TYPE_MAESTRO2,
  331. TYPE_MAESTRO2E
  332. };
  333. static const char *card_names[]={
  334. [TYPE_MAESTRO] = "ESS Maestro",
  335. [TYPE_MAESTRO2] = "ESS Maestro 2",
  336. [TYPE_MAESTRO2E] = "ESS Maestro 2E"
  337. };
  338. static int clock_freq[]={
  339. [TYPE_MAESTRO] = (49152000L / 1024L),
  340. [TYPE_MAESTRO2] = (50000000L / 1024L),
  341. [TYPE_MAESTRO2E] = (50000000L / 1024L)
  342. };
  343. static int maestro_notifier(struct notifier_block *nb, unsigned long event, void *buf);
  344. static struct notifier_block maestro_nb = {maestro_notifier, NULL, 0};
  345. /* --------------------------------------------------------------------- */
  346. struct ess_state {
  347. unsigned int magic;
  348. /* FIXME: we probably want submixers in here, but only one record pair */
  349. u8 apu[6]; /* l/r output, l/r intput converters, l/r input apus */
  350. u8 apu_mode[6]; /* Running mode for this APU */
  351. u8 apu_pan[6]; /* Panning setup for this APU */
  352. u32 apu_base[6]; /* base address for this apu */
  353. struct ess_card *card; /* Card info */
  354. /* wave stuff */
  355. unsigned int rateadc, ratedac;
  356. unsigned char fmt, enable;
  357. int index;
  358. /* this locks around the oss state in the driver */
  359. spinlock_t lock;
  360. /* only let 1 be opening at a time */
  361. struct semaphore open_sem;
  362. wait_queue_head_t open_wait;
  363. mode_t open_mode;
  364. /* soundcore stuff */
  365. int dev_audio;
  366. struct dmabuf {
  367. void *rawbuf;
  368. unsigned buforder;
  369. unsigned numfrag;
  370. unsigned fragshift;
  371. /* XXX zab - swptr only in here so that it can be referenced by
  372. clear_advance, as far as I can tell :( */
  373. unsigned hwptr, swptr;
  374. unsigned total_bytes;
  375. int count;
  376. unsigned error; /* over/underrun */
  377. wait_queue_head_t wait;
  378. /* redundant, but makes calculations easier */
  379. unsigned fragsize;
  380. unsigned dmasize;
  381. unsigned fragsamples;
  382. /* OSS stuff */
  383. unsigned mapped:1;
  384. unsigned ready:1; /* our oss buffers are ready to go */
  385. unsigned endcleared:1;
  386. unsigned ossfragshift;
  387. int ossmaxfrags;
  388. unsigned subdivision;
  389. u16 base; /* Offset for ptr */
  390. } dma_dac, dma_adc;
  391. /* pointer to each dsp?s piece of the apu->src buffer page */
  392. void *mixbuf;
  393. };
  394. struct ess_card {
  395. unsigned int magic;
  396. /* We keep maestro cards in a linked list */
  397. struct ess_card *next;
  398. int dev_mixer;
  399. int card_type;
  400. /* as most of this is static,
  401. perhaps it should be a pointer to a global struct */
  402. struct mixer_goo {
  403. int modcnt;
  404. int supported_mixers;
  405. int stereo_mixers;
  406. int record_sources;
  407. /* the caller must guarantee arg sanity before calling these */
  408. /* int (*read_mixer)(struct ess_card *card, int index);*/
  409. void (*write_mixer)(struct ess_card *card,int mixer, unsigned int left,unsigned int right);
  410. int (*recmask_io)(struct ess_card *card,int rw,int mask);
  411. unsigned int mixer_state[SOUND_MIXER_NRDEVICES];
  412. } mix;
  413. int power_regs;
  414. int in_suspend;
  415. wait_queue_head_t suspend_queue;
  416. struct ess_state channels[MAX_DSPS];
  417. u16 maestro_map[NR_IDRS]; /* Register map */
  418. /* we have to store this junk so that we can come back from a
  419. suspend */
  420. u16 apu_map[NR_APUS][NR_APU_REGS]; /* contents of apu regs */
  421. /* this locks around the physical registers on the card */
  422. spinlock_t lock;
  423. /* memory for this card.. wavecache limited :(*/
  424. void *dmapages;
  425. int dmaorder;
  426. /* hardware resources */
  427. struct pci_dev *pcidev;
  428. u32 iobase;
  429. u32 irq;
  430. int bob_freq;
  431. char dsps_open;
  432. int dock_mute_vol;
  433. };
  434. static void set_mixer(struct ess_card *card,unsigned int mixer, unsigned int val );
  435. static unsigned 
  436. ld2(unsigned int x)
  437. {
  438. unsigned r = 0;
  439. if (x >= 0x10000) {
  440. x >>= 16;
  441. r += 16;
  442. }
  443. if (x >= 0x100) {
  444. x >>= 8;
  445. r += 8;
  446. }
  447. if (x >= 0x10) {
  448. x >>= 4;
  449. r += 4;
  450. }
  451. if (x >= 4) {
  452. x >>= 2;
  453. r += 2;
  454. }
  455. if (x >= 2)
  456. r++;
  457. return r;
  458. }
  459. /* --------------------------------------------------------------------- */
  460. static void check_suspend(struct ess_card *card);
  461. /* --------------------------------------------------------------------- */
  462. /*
  463.  * ESS Maestro AC97 codec programming interface.
  464.  */
  465.  
  466. static void maestro_ac97_set(struct ess_card *card, u8 cmd, u16 val)
  467. {
  468. int io = card->iobase;
  469. int i;
  470. /*
  471.  * Wait for the codec bus to be free 
  472.  */
  473. check_suspend(card);
  474.  
  475. for(i=0;i<10000;i++)
  476. {
  477. if(!(inb(io+ESS_AC97_INDEX)&1)) 
  478. break;
  479. }
  480. /*
  481.  * Write the bus
  482.  */ 
  483. outw(val, io+ESS_AC97_DATA);
  484. mdelay(1);
  485. outb(cmd, io+ESS_AC97_INDEX);
  486. mdelay(1);
  487. }
  488. static u16 maestro_ac97_get(struct ess_card *card, u8 cmd)
  489. {
  490. int io = card->iobase;
  491. int sanity=10000;
  492. u16 data;
  493. int i;
  494. check_suspend(card);
  495. /*
  496.  * Wait for the codec bus to be free 
  497.  */
  498.  
  499. for(i=0;i<10000;i++)
  500. {
  501. if(!(inb(io+ESS_AC97_INDEX)&1))
  502. break;
  503. }
  504. outb(cmd|0x80, io+ESS_AC97_INDEX);
  505. mdelay(1);
  506. while(inb(io+ESS_AC97_INDEX)&1)
  507. {
  508. sanity--;
  509. if(!sanity)
  510. {
  511. printk(KERN_ERR "maestro: ac97 codec timeout reading 0x%x.n",cmd);
  512. return 0;
  513. }
  514. }
  515. data=inw(io+ESS_AC97_DATA);
  516. mdelay(1);
  517. return data;
  518. }
  519. /* OSS interface to the ac97s.. */
  520. #define AC97_STEREO_MASK (SOUND_MASK_VOLUME|
  521. SOUND_MASK_PCM|SOUND_MASK_LINE|SOUND_MASK_CD|
  522. SOUND_MASK_VIDEO|SOUND_MASK_LINE1|SOUND_MASK_IGAIN)
  523. #define AC97_SUPPORTED_MASK (AC97_STEREO_MASK | 
  524. SOUND_MASK_BASS|SOUND_MASK_TREBLE|SOUND_MASK_MIC|
  525. SOUND_MASK_SPEAKER)
  526. #define AC97_RECORD_MASK (SOUND_MASK_MIC|
  527. SOUND_MASK_CD| SOUND_MASK_VIDEO| SOUND_MASK_LINE1| SOUND_MASK_LINE|
  528. SOUND_MASK_PHONEIN)
  529. #define supported_mixer(CARD,FOO) ( CARD->mix.supported_mixers & (1<<FOO) )
  530. /* this table has default mixer values for all OSS mixers.
  531. be sure to fill it in if you add oss mixers
  532. to anyone's supported mixer defines */
  533.  unsigned int mixer_defaults[SOUND_MIXER_NRDEVICES] = {
  534. [SOUND_MIXER_VOLUME] =          0x3232,
  535. [SOUND_MIXER_BASS] =            0x3232,
  536. [SOUND_MIXER_TREBLE] =          0x3232,
  537. [SOUND_MIXER_SPEAKER] =         0x3232,
  538. [SOUND_MIXER_MIC] =     0x8000, /* annoying */
  539. [SOUND_MIXER_LINE] =    0x3232,
  540. [SOUND_MIXER_CD] =      0x3232,
  541. [SOUND_MIXER_VIDEO] =   0x3232,
  542. [SOUND_MIXER_LINE1] =   0x3232,
  543. [SOUND_MIXER_PCM] =             0x3232,
  544. [SOUND_MIXER_IGAIN] =           0x3232
  545. };
  546. static struct ac97_mixer_hw {
  547. unsigned char offset;
  548. int scale;
  549. } ac97_hw[SOUND_MIXER_NRDEVICES]= {
  550. [SOUND_MIXER_VOLUME] = {0x02,63},
  551. [SOUND_MIXER_BASS] = {0x08,15},
  552. [SOUND_MIXER_TREBLE] = {0x08,15},
  553. [SOUND_MIXER_SPEAKER] = {0x0a,15},
  554. [SOUND_MIXER_MIC] = {0x0e,31},
  555. [SOUND_MIXER_LINE] = {0x10,31},
  556. [SOUND_MIXER_CD] = {0x12,31},
  557. [SOUND_MIXER_VIDEO] = {0x14,31},
  558. [SOUND_MIXER_LINE1] = {0x16,31},
  559. [SOUND_MIXER_PCM] = {0x18,31},
  560. [SOUND_MIXER_IGAIN] = {0x1c,15}
  561. };
  562. #if 0 /* *shrug* removed simply because we never used it.
  563. feel free to implement again if needed */
  564. /* reads the given OSS mixer from the ac97
  565. the caller must have insured that the ac97 knows
  566. about that given mixer, and should be holding a
  567. spinlock for the card */
  568. static int ac97_read_mixer(struct ess_card *card, int mixer) 
  569. {
  570. u16 val;
  571. int ret=0;
  572. struct ac97_mixer_hw *mh = &ac97_hw[mixer];
  573. val = maestro_ac97_get(card, mh->offset);
  574. if(AC97_STEREO_MASK & (1<<mixer)) {
  575. /* nice stereo mixers .. */
  576. int left,right;
  577. left = (val >> 8)  & 0x7f;
  578. right = val  & 0x7f;
  579. if (mixer == SOUND_MIXER_IGAIN) {
  580. right = (right * 100) / mh->scale;
  581. left = (left * 100) / mh->scale;
  582. else {
  583. right = 100 - ((right * 100) / mh->scale);
  584. left = 100 - ((left * 100) / mh->scale);
  585. }
  586. ret = left | (right << 8);
  587. } else if (mixer == SOUND_MIXER_SPEAKER) {
  588. ret = 100 - ((((val & 0x1e)>>1) * 100) / mh->scale);
  589. } else if (mixer == SOUND_MIXER_MIC) {
  590. ret = 100 - (((val & 0x1f) * 100) / mh->scale);
  591. /*  the low bit is optional in the tone sliders and masking
  592. it lets is avoid the 0xf 'bypass'.. */
  593. } else if (mixer == SOUND_MIXER_BASS) {
  594. ret = 100 - ((((val >> 8) & 0xe) * 100) / mh->scale);
  595. } else if (mixer == SOUND_MIXER_TREBLE) {
  596. ret = 100 - (((val & 0xe) * 100) / mh->scale);
  597. }
  598. M_printk("read mixer %d (0x%x) %x -> %xn",mixer,mh->offset,val,ret);
  599. return ret;
  600. }
  601. #endif
  602. /* write the OSS encoded volume to the given OSS encoded mixer,
  603. again caller's job to make sure all is well in arg land,
  604. call with spinlock held */
  605. /* linear scale -> log */
  606. static unsigned char lin2log[101] = 
  607. {
  608. 0, 0 , 15 , 23 , 30 , 34 , 38 , 42 , 45 , 47 ,
  609. 50 , 52 , 53 , 55 , 57 , 58 , 60 , 61 , 62 ,
  610. 63 , 65 , 66 , 67 , 68 , 69 , 69 , 70 , 71 ,
  611. 72 , 73 , 73 , 74 , 75 , 75 , 76 , 77 , 77 ,
  612. 78 , 78 , 79 , 80 , 80 , 81 , 81 , 82 , 82 ,
  613. 83 , 83 , 84 , 84 , 84 , 85 , 85 , 86 , 86 ,
  614. 87 , 87 , 87 , 88 , 88 , 88 , 89 , 89 , 89 ,
  615. 90 , 90 , 90 , 91 , 91 , 91 , 92 , 92 , 92 ,
  616. 93 , 93 , 93 , 94 , 94 , 94 , 94 , 95 , 95 ,
  617. 95 , 95 , 96 , 96 , 96 , 96 , 97 , 97 , 97 ,
  618. 97 , 98 , 98 , 98 , 98 , 99 , 99 , 99 , 99 , 99 
  619. };
  620. static void ac97_write_mixer(struct ess_card *card,int mixer, unsigned int left, unsigned int right)
  621. {
  622. u16 val=0;
  623. struct ac97_mixer_hw *mh = &ac97_hw[mixer];
  624. M_printk("wrote mixer %d (0x%x) %d,%d",mixer,mh->offset,left,right);
  625. if(AC97_STEREO_MASK & (1<<mixer)) {
  626. /* stereo mixers, mute them if we can */
  627. if (mixer == SOUND_MIXER_IGAIN) {
  628. /* igain's slider is reversed.. */
  629. right = (right * mh->scale) / 100;
  630. left = (left * mh->scale) / 100;
  631. if ((left == 0) && (right == 0))
  632. val |= 0x8000;
  633. } else {
  634. /* log conversion for the stereo controls */
  635. if((left == 0) && (right == 0))
  636. val = 0x8000;
  637. right = ((100 - lin2log[right]) * mh->scale) / 100;
  638. left = ((100 - lin2log[left]) * mh->scale) / 100;
  639. }
  640. val |= (left << 8) | right;
  641. } else if (mixer == SOUND_MIXER_SPEAKER) {
  642. val = (((100 - left) * mh->scale) / 100) << 1;
  643. } else if (mixer == SOUND_MIXER_MIC) {
  644. val = maestro_ac97_get(card, mh->offset) & ~0x801f;
  645. val |= (((100 - left) * mh->scale) / 100);
  646. /*  the low bit is optional in the tone sliders and masking
  647. it lets is avoid the 0xf 'bypass'.. */
  648. } else if (mixer == SOUND_MIXER_BASS) {
  649. val = maestro_ac97_get(card , mh->offset) & ~0x0f00;
  650. val |= ((((100 - left) * mh->scale) / 100) << 8) & 0x0e00;
  651. } else if (mixer == SOUND_MIXER_TREBLE)  {
  652. val = maestro_ac97_get(card , mh->offset) & ~0x000f;
  653. val |= (((100 - left) * mh->scale) / 100) & 0x000e;
  654. }
  655. maestro_ac97_set(card , mh->offset, val);
  656. M_printk(" -> %xn",val);
  657. }
  658. /* the following tables allow us to go from 
  659. OSS <-> ac97 quickly. */
  660. enum ac97_recsettings {
  661. AC97_REC_MIC=0,
  662. AC97_REC_CD,
  663. AC97_REC_VIDEO,
  664. AC97_REC_AUX,
  665. AC97_REC_LINE,
  666. AC97_REC_STEREO, /* combination of all enabled outputs..  */
  667. AC97_REC_MONO,        /*.. or the mono equivalent */
  668. AC97_REC_PHONE        
  669. };
  670. static unsigned int ac97_oss_mask[] = {
  671. [AC97_REC_MIC] = SOUND_MASK_MIC, 
  672. [AC97_REC_CD] = SOUND_MASK_CD, 
  673. [AC97_REC_VIDEO] = SOUND_MASK_VIDEO, 
  674. [AC97_REC_AUX] = SOUND_MASK_LINE1, 
  675. [AC97_REC_LINE] = SOUND_MASK_LINE, 
  676. [AC97_REC_PHONE] = SOUND_MASK_PHONEIN
  677. };
  678. /* indexed by bit position */
  679. static unsigned int ac97_oss_rm[] = {
  680. [SOUND_MIXER_MIC] = AC97_REC_MIC,
  681. [SOUND_MIXER_CD] = AC97_REC_CD,
  682. [SOUND_MIXER_VIDEO] = AC97_REC_VIDEO,
  683. [SOUND_MIXER_LINE1] = AC97_REC_AUX,
  684. [SOUND_MIXER_LINE] = AC97_REC_LINE,
  685. [SOUND_MIXER_PHONEIN] = AC97_REC_PHONE
  686. };
  687. /* read or write the recmask 
  688. the ac97 can really have left and right recording
  689. inputs independantly set, but OSS doesn't seem to 
  690. want us to express that to the user. 
  691. the caller guarantees that we have a supported bit set,
  692. and they must be holding the card's spinlock */
  693. static int 
  694. ac97_recmask_io(struct ess_card *card, int read, int mask) 
  695. {
  696. unsigned int val = ac97_oss_mask[ maestro_ac97_get(card, 0x1a) & 0x7 ];
  697. if (read) return val;
  698. /* oss can have many inputs, maestro cant.  try
  699. to pick the 'new' one */
  700. if (mask != val) mask &= ~val;
  701. val = ffs(mask) - 1; 
  702. val = ac97_oss_rm[val];
  703. val |= val << 8;  /* set both channels */
  704. M_printk("maestro: setting ac97 recmask to 0x%xn",val);
  705. maestro_ac97_set(card,0x1a,val);
  706. return 0;
  707. };
  708. /*
  709.  * The Maestro can be wired to a standard AC97 compliant codec
  710.  * (see www.intel.com for the pdf's on this), or to a PT101 codec
  711.  * which appears to be the ES1918 (data sheet on the esstech.com.tw site)
  712.  *
  713.  * The PT101 setup is untested.
  714.  */
  715.  
  716. static u16 __init maestro_ac97_init(struct ess_card *card)
  717. {
  718. u16 vend1, vend2, caps;
  719. card->mix.supported_mixers = AC97_SUPPORTED_MASK;
  720. card->mix.stereo_mixers = AC97_STEREO_MASK;
  721. card->mix.record_sources = AC97_RECORD_MASK;
  722. /* card->mix.read_mixer = ac97_read_mixer;*/
  723. card->mix.write_mixer = ac97_write_mixer;
  724. card->mix.recmask_io = ac97_recmask_io;
  725. vend1 = maestro_ac97_get(card, 0x7c);
  726. vend2 = maestro_ac97_get(card, 0x7e);
  727. caps = maestro_ac97_get(card, 0x00);
  728. printk(KERN_INFO "maestro: AC97 Codec detected: v: 0x%2x%2x caps: 0x%x pwr: 0x%xn",
  729. vend1,vend2,caps,maestro_ac97_get(card,0x26) & 0xf);
  730. if (! (caps & 0x4) ) {
  731. /* no bass/treble nobs */
  732. card->mix.supported_mixers &= ~(SOUND_MASK_BASS|SOUND_MASK_TREBLE);
  733. }
  734. /* XXX endianness, dork head. */
  735. /* vendor specifc bits.. */
  736. switch ((long)(vend1 << 16) | vend2) {
  737. case 0x545200ff: /* TriTech */
  738. /* no idea what this does */
  739. maestro_ac97_set(card,0x2a,0x0001);
  740. maestro_ac97_set(card,0x2c,0x0000);
  741. maestro_ac97_set(card,0x2c,0xffff);
  742. break;
  743. #if 0 /* i thought the problems I was seeing were with
  744. the 1921, but apparently they were with the pci board
  745. it was on, so this code is commented out.
  746.  lets see if this holds true. */
  747. case 0x83847609: /* ESS 1921 */
  748. /* writing to 0xe (mic) or 0x1a (recmask) seems
  749. to hang this codec */
  750. card->mix.supported_mixers &= ~(SOUND_MASK_MIC);
  751. card->mix.record_sources = 0;
  752. card->mix.recmask_io = NULL;
  753. #if 0 /* don't ask.  I have yet to see what these actually do. */
  754. maestro_ac97_set(card,0x76,0xABBA); /* o/~ Take a chance on me o/~ */
  755. udelay(20);
  756. maestro_ac97_set(card,0x78,0x3002);
  757. udelay(20);
  758. maestro_ac97_set(card,0x78,0x3802);
  759. udelay(20);
  760. #endif
  761. break;
  762. #endif
  763. default: break;
  764. }
  765. maestro_ac97_set(card, 0x1E, 0x0404);
  766. /* null misc stuff */
  767. maestro_ac97_set(card, 0x20, 0x0000);
  768. return 0;
  769. }
  770. #if 0  /* there has been 1 person on the planet with a pt101 that we
  771. know of.  If they care, they can put this back in :) */
  772. static u16 maestro_pt101_init(struct ess_card *card,int iobase)
  773. {
  774. printk(KERN_INFO "maestro: PT101 Codec detected, initializing but _not_ installing mixer device.n");
  775. /* who knows.. */
  776. maestro_ac97_set(iobase, 0x2A, 0x0001);
  777. maestro_ac97_set(iobase, 0x2C, 0x0000);
  778. maestro_ac97_set(iobase, 0x2C, 0xFFFF);
  779. maestro_ac97_set(iobase, 0x10, 0x9F1F);
  780. maestro_ac97_set(iobase, 0x12, 0x0808);
  781. maestro_ac97_set(iobase, 0x14, 0x9F1F);
  782. maestro_ac97_set(iobase, 0x16, 0x9F1F);
  783. maestro_ac97_set(iobase, 0x18, 0x0404);
  784. maestro_ac97_set(iobase, 0x1A, 0x0000);
  785. maestro_ac97_set(iobase, 0x1C, 0x0000);
  786. maestro_ac97_set(iobase, 0x02, 0x0404);
  787. maestro_ac97_set(iobase, 0x04, 0x0808);
  788. maestro_ac97_set(iobase, 0x0C, 0x801F);
  789. maestro_ac97_set(iobase, 0x0E, 0x801F);
  790. return 0;
  791. }
  792. #endif
  793. /* this is very magic, and very slow.. */
  794. static void 
  795. maestro_ac97_reset(int ioaddr, struct pci_dev *pcidev)
  796. {
  797. u16 save_68;
  798. u16 w;
  799. u32 vend;
  800. outw( inw(ioaddr + 0x38) & 0xfffc, ioaddr + 0x38);
  801. outw( inw(ioaddr + 0x3a) & 0xfffc, ioaddr + 0x3a);
  802. outw( inw(ioaddr + 0x3c) & 0xfffc, ioaddr + 0x3c);
  803. /* reset the first codec */
  804. outw(0x0000,  ioaddr+0x36);
  805. save_68 = inw(ioaddr+0x68);
  806. pci_read_config_word(pcidev, 0x58, &w); /* something magical with gpio and bus arb. */
  807. pci_read_config_dword(pcidev, PCI_SUBSYSTEM_VENDOR_ID, &vend);
  808. if( w & 0x1)
  809. save_68 |= 0x10;
  810. outw(0xfffe, ioaddr + 0x64); /* tickly gpio 0.. */
  811. outw(0x0001, ioaddr + 0x68);
  812. outw(0x0000, ioaddr + 0x60);
  813. udelay(20);
  814. outw(0x0001, ioaddr + 0x60);
  815. mdelay(20);
  816. outw(save_68 | 0x1, ioaddr + 0x68); /* now restore .. */
  817. outw( (inw(ioaddr + 0x38) & 0xfffc)|0x1, ioaddr + 0x38);
  818. outw( (inw(ioaddr + 0x3a) & 0xfffc)|0x1, ioaddr + 0x3a);
  819. outw( (inw(ioaddr + 0x3c) & 0xfffc)|0x1, ioaddr + 0x3c);
  820. /* now the second codec */
  821. outw(0x0000,  ioaddr+0x36);
  822. outw(0xfff7, ioaddr + 0x64);
  823. save_68 = inw(ioaddr+0x68);
  824. outw(0x0009, ioaddr + 0x68);
  825. outw(0x0001, ioaddr + 0x60);
  826. udelay(20);
  827. outw(0x0009, ioaddr + 0x60);
  828. mdelay(500); /* .. ouch.. */
  829. outw( inw(ioaddr + 0x38) & 0xfffc, ioaddr + 0x38);
  830. outw( inw(ioaddr + 0x3a) & 0xfffc, ioaddr + 0x3a);
  831. outw( inw(ioaddr + 0x3c) & 0xfffc, ioaddr + 0x3c);
  832. #if 0 /* the loop here needs to be much better if we want it.. */
  833. M_printk("trying software resetn");
  834. /* try and do a software reset */
  835. outb(0x80|0x7c, ioaddr + 0x30);
  836. for (w=0; ; w++) {
  837. if ((inw(ioaddr+ 0x30) & 1) == 0) {
  838. if(inb(ioaddr + 0x32) !=0) break;
  839. outb(0x80|0x7d, ioaddr + 0x30);
  840. if (((inw(ioaddr+ 0x30) & 1) == 0) && (inb(ioaddr + 0x32) !=0)) break;
  841. outb(0x80|0x7f, ioaddr + 0x30);
  842. if (((inw(ioaddr+ 0x30) & 1) == 0) && (inb(ioaddr + 0x32) !=0)) break;
  843. }
  844. if( w > 10000) {
  845. outb( inb(ioaddr + 0x37) | 0x08, ioaddr + 0x37);  /* do a software reset */
  846. mdelay(500); /* oh my.. */
  847. outb( inb(ioaddr + 0x37) & ~0x08, ioaddr + 0x37);  
  848. udelay(1);
  849. outw( 0x80, ioaddr+0x30);
  850. for(w = 0 ; w < 10000; w++) {
  851. if((inw(ioaddr + 0x30) & 1) ==0) break;
  852. }
  853. }
  854. }
  855. #endif
  856. if ( vend == NEC_VERSA_SUBID1 || vend == NEC_VERSA_SUBID2) {
  857. /* turn on external amp? */
  858. outw(0xf9ff, ioaddr + 0x64);
  859. outw(inw(ioaddr+0x68) | 0x600, ioaddr + 0x68);
  860. outw(0x0209, ioaddr + 0x60);
  861. }
  862. /* Turn on the 978 docking chip.
  863.    First frob the "master output enable" bit,
  864.    then set most of the playback volume control registers to max. */
  865. outb(inb(ioaddr+0xc0)|(1<<5), ioaddr+0xc0);
  866. outb(0xff, ioaddr+0xc3);
  867. outb(0xff, ioaddr+0xc4);
  868. outb(0xff, ioaddr+0xc6);
  869. outb(0xff, ioaddr+0xc8);
  870. outb(0x3f, ioaddr+0xcf);
  871. outb(0x3f, ioaddr+0xd0);
  872. }
  873. /*
  874.  * Indirect register access. Not all registers are readable so we
  875.  * need to keep register state ourselves
  876.  */
  877.  
  878. #define WRITEABLE_MAP 0xEFFFFF
  879. #define READABLE_MAP 0x64003F
  880. /*
  881.  * The Maestro engineers were a little indirection happy. These indirected
  882.  * registers themselves include indirect registers at another layer
  883.  */
  884. static void __maestro_write(struct ess_card *card, u16 reg, u16 data)
  885. {
  886. long ioaddr = card->iobase;
  887. outw(reg, ioaddr+0x02);
  888. outw(data, ioaddr+0x00);
  889. if( reg >= NR_IDRS) printk("maestro: IDR %d out of bounds!n",reg);
  890. else card->maestro_map[reg]=data;
  891. }
  892.  
  893. static void maestro_write(struct ess_state *s, u16 reg, u16 data)
  894. {
  895. unsigned long flags;
  896. check_suspend(s->card);
  897. spin_lock_irqsave(&s->card->lock,flags);
  898. __maestro_write(s->card,reg,data);
  899. spin_unlock_irqrestore(&s->card->lock,flags);
  900. }
  901. static u16 __maestro_read(struct ess_card *card, u16 reg)
  902. {
  903. long ioaddr = card->iobase;
  904. outw(reg, ioaddr+0x02);
  905. return card->maestro_map[reg]=inw(ioaddr+0x00);
  906. }
  907. static u16 maestro_read(struct ess_state *s, u16 reg)
  908. {
  909. if(READABLE_MAP & (1<<reg))
  910. {
  911. unsigned long flags;
  912. check_suspend(s->card);
  913. spin_lock_irqsave(&s->card->lock,flags);
  914. __maestro_read(s->card,reg);
  915. spin_unlock_irqrestore(&s->card->lock,flags);
  916. }
  917. return s->card->maestro_map[reg];
  918. }
  919. /*
  920.  * These routines handle accessing the second level indirections to the
  921.  * wave ram.
  922.  */
  923. /*
  924.  * The register names are the ones ESS uses (see 104T31.ZIP)
  925.  */
  926.  
  927. #define IDR0_DATA_PORT 0x00
  928. #define IDR1_CRAM_POINTER 0x01
  929. #define IDR2_CRAM_DATA 0x02
  930. #define IDR3_WAVE_DATA 0x03
  931. #define IDR4_WAVE_PTR_LOW 0x04
  932. #define IDR5_WAVE_PTR_HI 0x05
  933. #define IDR6_TIMER_CTRL 0x06
  934. #define IDR7_WAVE_ROMRAM 0x07
  935. static void apu_index_set(struct ess_card *card, u16 index)
  936. {
  937. int i;
  938. __maestro_write(card, IDR1_CRAM_POINTER, index);
  939. for(i=0;i<1000;i++)
  940. if(__maestro_read(card, IDR1_CRAM_POINTER)==index)
  941. return;
  942. printk(KERN_WARNING "maestro: APU register select failed.n");
  943. }
  944. static void apu_data_set(struct ess_card *card, u16 data)
  945. {
  946. int i;
  947. for(i=0;i<1000;i++)
  948. {
  949. if(__maestro_read(card, IDR0_DATA_PORT)==data)
  950. return;
  951. __maestro_write(card, IDR0_DATA_PORT, data);
  952. }
  953. }
  954. /*
  955.  * This is the public interface for APU manipulation. It handles the
  956.  * interlock to avoid two APU writes in parallel etc. Don't diddle
  957.  * directly with the stuff above.
  958.  */
  959. static void apu_set_register(struct ess_state *s, u16 channel, u8 reg, u16 data)
  960. {
  961. unsigned long flags;
  962. check_suspend(s->card);
  963. if(channel&ESS_CHAN_HARD)
  964. channel&=~ESS_CHAN_HARD;
  965. else
  966. {
  967. if(channel>5)
  968. printk("BAD CHANNEL %d.n",channel);
  969. else
  970. channel = s->apu[channel];
  971. /* store based on real hardware apu/reg */
  972. s->card->apu_map[channel][reg]=data;
  973. }
  974. reg|=(channel<<4);
  975. /* hooray for double indirection!! */
  976. spin_lock_irqsave(&s->card->lock,flags);
  977. apu_index_set(s->card, reg);
  978. apu_data_set(s->card, data);
  979. spin_unlock_irqrestore(&s->card->lock,flags);
  980. }
  981. static u16 apu_get_register(struct ess_state *s, u16 channel, u8 reg)
  982. {
  983. unsigned long flags;
  984. u16 v;
  985. check_suspend(s->card);
  986. if(channel&ESS_CHAN_HARD)
  987. channel&=~ESS_CHAN_HARD;
  988. else
  989. channel = s->apu[channel];
  990. reg|=(channel<<4);
  991. spin_lock_irqsave(&s->card->lock,flags);
  992. apu_index_set(s->card, reg);
  993. v=__maestro_read(s->card, IDR0_DATA_PORT);
  994. spin_unlock_irqrestore(&s->card->lock,flags);
  995. return v;
  996. }
  997. /*
  998.  * The wavecache buffers between the APUs and
  999.  * pci bus mastering
  1000.  */
  1001.  
  1002. static void wave_set_register(struct ess_state *s, u16 reg, u16 value)
  1003. {
  1004. long ioaddr = s->card->iobase;
  1005. unsigned long flags;
  1006. check_suspend(s->card);
  1007. spin_lock_irqsave(&s->card->lock,flags);
  1008. outw(reg, ioaddr+0x10);
  1009. outw(value, ioaddr+0x12);
  1010. spin_unlock_irqrestore(&s->card->lock,flags);
  1011. }
  1012. static u16 wave_get_register(struct ess_state *s, u16 reg)
  1013. {
  1014. long ioaddr = s->card->iobase;
  1015. unsigned long flags;
  1016. u16 value;
  1017. check_suspend(s->card);
  1018. spin_lock_irqsave(&s->card->lock,flags);
  1019. outw(reg, ioaddr+0x10);
  1020. value=inw(ioaddr+0x12);
  1021. spin_unlock_irqrestore(&s->card->lock,flags);
  1022. return value;
  1023. }
  1024. static void sound_reset(int ioaddr)
  1025. {
  1026. outw(0x2000, 0x18+ioaddr);
  1027. udelay(1);
  1028. outw(0x0000, 0x18+ioaddr);
  1029. udelay(1);
  1030. }
  1031. /* sets the play formats of these apus, should be passed the already shifted format */
  1032. static void set_apu_fmt(struct ess_state *s, int apu, int mode)
  1033. {
  1034. int apu_fmt = 0x10;
  1035. if(!(mode&ESS_FMT_16BIT)) apu_fmt+=0x20; 
  1036. if((mode&ESS_FMT_STEREO)) apu_fmt+=0x10; 
  1037. s->apu_mode[apu]   = apu_fmt;
  1038. s->apu_mode[apu+1] = apu_fmt;
  1039. }
  1040. /* this only fixes the output apu mode to be later set by start_dac and
  1041. company.  output apu modes are set in ess_rec_setup */
  1042. static void set_fmt(struct ess_state *s, unsigned char mask, unsigned char data)
  1043. {
  1044. s->fmt = (s->fmt & mask) | data;
  1045. set_apu_fmt(s, 0, (s->fmt >> ESS_DAC_SHIFT) & ESS_FMT_MASK);
  1046. }
  1047. /* this is off by a little bit.. */
  1048. static u32 compute_rate(struct ess_state *s, u32 freq)
  1049. {
  1050. u32 clock = clock_freq[s->card->card_type];     
  1051. freq = (freq * clocking)/48000;
  1052. if (freq == 48000) 
  1053. return 0x10000;
  1054. return ((freq / clock) <<16 )+  
  1055. (((freq % clock) << 16) / clock);
  1056. }
  1057. static void set_dac_rate(struct ess_state *s, unsigned int rate)
  1058. {
  1059. u32 freq;
  1060. int fmt = (s->fmt >> ESS_DAC_SHIFT) & ESS_FMT_MASK;
  1061. if (rate > 48000)
  1062. rate = 48000;
  1063. if (rate < 4000)
  1064. rate = 4000;
  1065. s->ratedac = rate;
  1066. if(! (fmt & ESS_FMT_16BIT) && !(fmt & ESS_FMT_STEREO))
  1067. rate >>= 1;
  1068. /* M_printk("computing dac rate %d with mode %dn",rate,s->fmt);*/
  1069. freq = compute_rate(s, rate);
  1070. /* Load the frequency, turn on 6dB */
  1071. apu_set_register(s, 0, 2,(apu_get_register(s, 0, 2)&0x00FF)|
  1072. ( ((freq&0xFF)<<8)|0x10 ));
  1073. apu_set_register(s, 0, 3, freq>>8);
  1074. apu_set_register(s, 1, 2,(apu_get_register(s, 1, 2)&0x00FF)|
  1075. ( ((freq&0xFF)<<8)|0x10 ));
  1076. apu_set_register(s, 1, 3, freq>>8);
  1077. }
  1078. static void set_adc_rate(struct ess_state *s, unsigned rate)
  1079. {
  1080. u32 freq;
  1081. /* Sample Rate conversion APUs don't like 0x10000 for their rate */
  1082. if (rate > 47999)
  1083. rate = 47999;
  1084. if (rate < 4000)
  1085. rate = 4000;
  1086. s->rateadc = rate;
  1087. freq = compute_rate(s, rate);
  1088. /* Load the frequency, turn on 6dB */
  1089. apu_set_register(s, 2, 2,(apu_get_register(s, 2, 2)&0x00FF)|
  1090. ( ((freq&0xFF)<<8)|0x10 ));
  1091. apu_set_register(s, 2, 3, freq>>8);
  1092. apu_set_register(s, 3, 2,(apu_get_register(s, 3, 2)&0x00FF)|
  1093. ( ((freq&0xFF)<<8)|0x10 ));
  1094. apu_set_register(s, 3, 3, freq>>8);
  1095. /* fix mixer rate at 48khz.  and its _must_ be 0x10000. */
  1096. freq = 0x10000;
  1097. apu_set_register(s, 4, 2,(apu_get_register(s, 4, 2)&0x00FF)|
  1098. ( ((freq&0xFF)<<8)|0x10 ));
  1099. apu_set_register(s, 4, 3, freq>>8);
  1100. apu_set_register(s, 5, 2,(apu_get_register(s, 5, 2)&0x00FF)|
  1101. ( ((freq&0xFF)<<8)|0x10 ));
  1102. apu_set_register(s, 5, 3, freq>>8);
  1103. }
  1104. /* Stop our host of recording apus */
  1105. static inline void stop_adc(struct ess_state *s)
  1106. {
  1107. /* XXX lets hope we don't have to lock around this */
  1108. if (! (s->enable & ADC_RUNNING)) return;
  1109. s->enable &= ~ADC_RUNNING;
  1110. apu_set_register(s, 2, 0, apu_get_register(s, 2, 0)&0xFF0F);
  1111. apu_set_register(s, 3, 0, apu_get_register(s, 3, 0)&0xFF0F);
  1112. apu_set_register(s, 4, 0, apu_get_register(s, 2, 0)&0xFF0F);
  1113. apu_set_register(s, 5, 0, apu_get_register(s, 3, 0)&0xFF0F);
  1114. }
  1115. /* stop output apus */
  1116. static void stop_dac(struct ess_state *s)
  1117. {
  1118. /* XXX have to lock around this? */
  1119. if (! (s->enable & DAC_RUNNING)) return;
  1120. s->enable &= ~DAC_RUNNING;
  1121. apu_set_register(s, 0, 0, apu_get_register(s, 0, 0)&0xFF0F);
  1122. apu_set_register(s, 1, 0, apu_get_register(s, 1, 0)&0xFF0F);
  1123. }
  1124. static void start_dac(struct ess_state *s)
  1125. {
  1126. /* XXX locks? */
  1127. if ( (s->dma_dac.mapped || s->dma_dac.count > 0) && 
  1128. s->dma_dac.ready &&
  1129. (! (s->enable & DAC_RUNNING)) ) {
  1130. s->enable |= DAC_RUNNING;
  1131. apu_set_register(s, 0, 0, 
  1132. (apu_get_register(s, 0, 0)&0xFF0F)|s->apu_mode[0]);
  1133. if((s->fmt >> ESS_DAC_SHIFT)  & ESS_FMT_STEREO) 
  1134. apu_set_register(s, 1, 0, 
  1135. (apu_get_register(s, 1, 0)&0xFF0F)|s->apu_mode[1]);
  1136. }
  1137. }
  1138. static void start_adc(struct ess_state *s)
  1139. {
  1140. /* XXX locks? */
  1141. if ((s->dma_adc.mapped || s->dma_adc.count < (signed)(s->dma_adc.dmasize - 2*s->dma_adc.fragsize)) 
  1142.     && s->dma_adc.ready && (! (s->enable & ADC_RUNNING)) ) {
  1143. s->enable |= ADC_RUNNING;
  1144. apu_set_register(s, 2, 0, 
  1145. (apu_get_register(s, 2, 0)&0xFF0F)|s->apu_mode[2]);
  1146. apu_set_register(s, 4, 0, 
  1147. (apu_get_register(s, 4, 0)&0xFF0F)|s->apu_mode[4]);
  1148. if( s->fmt & (ESS_FMT_STEREO << ESS_ADC_SHIFT)) {
  1149. apu_set_register(s, 3, 0, 
  1150. (apu_get_register(s, 3, 0)&0xFF0F)|s->apu_mode[3]);
  1151. apu_set_register(s, 5, 0, 
  1152. (apu_get_register(s, 5, 0)&0xFF0F)|s->apu_mode[5]);
  1153. }
  1154. }
  1155. }
  1156. /*
  1157.  * Native play back driver 
  1158.  */
  1159. /* the mode passed should be already shifted and masked */
  1160. static void 
  1161. ess_play_setup(struct ess_state *ess, int mode, u32 rate, void *buffer, int size)
  1162. {
  1163. u32 pa;
  1164. u32 tmpval;
  1165. int high_apu = 0;
  1166. int channel;
  1167. M_printk("mode=%d rate=%d buf=%p len=%d.n",
  1168. mode, rate, buffer, size);
  1169. /* all maestro sizes are in 16bit words */
  1170. size >>=1;
  1171. if(mode&ESS_FMT_STEREO) {
  1172. high_apu++;
  1173. /* only 16/stereo gets size divided */
  1174. if(mode&ESS_FMT_16BIT)
  1175. size>>=1;
  1176. }
  1177. for(channel=0; channel <= high_apu; channel++)
  1178. {
  1179. pa = virt_to_bus(buffer);
  1180. /* set the wavecache control reg */
  1181. tmpval = (pa - 0x10) & 0xFFF8;
  1182. if(!(mode & ESS_FMT_16BIT)) tmpval |= 4;
  1183. if(mode & ESS_FMT_STEREO) tmpval |= 2;
  1184. ess->apu_base[channel]=tmpval;
  1185. wave_set_register(ess, ess->apu[channel]<<3, tmpval);
  1186. pa -= virt_to_bus(ess->card->dmapages);
  1187. pa>>=1; /* words */
  1188. /* base offset of dma calcs when reading the pointer
  1189. on the left one */
  1190. if(!channel) ess->dma_dac.base = pa&0xFFFF;
  1191. pa|=0x00400000; /* System RAM */
  1192. /* XXX the 16bit here might not be needed.. */
  1193. if((mode & ESS_FMT_STEREO) && (mode & ESS_FMT_16BIT)) {
  1194. if(channel) 
  1195. pa|=0x00800000; /* Stereo */
  1196. pa>>=1;
  1197. }
  1198. /* XXX think about endianess when writing these registers */
  1199. M_printk("maestro: ess_play_setup: APU[%d] pa = 0x%xn", ess->apu[channel], pa);
  1200. /* start of sample */
  1201. apu_set_register(ess, channel, 4, ((pa>>16)&0xFF)<<8);
  1202. apu_set_register(ess, channel, 5, pa&0xFFFF);
  1203. /* sample end */
  1204. apu_set_register(ess, channel, 6, (pa+size)&0xFFFF);
  1205. /* setting loop len == sample len */
  1206. apu_set_register(ess, channel, 7, size);
  1207. /* clear effects/env.. */
  1208. apu_set_register(ess, channel, 8, 0x0000);
  1209. /* set amp now to 0xd0 (?), low byte is 'amplitude dest'? */
  1210. apu_set_register(ess, channel, 9, 0xD000);
  1211. /* clear routing stuff */
  1212. apu_set_register(ess, channel, 11, 0x0000);
  1213. /* dma on, no envelopes, filter to all 1s) */
  1214. apu_set_register(ess, channel, 0, 0x400F);
  1215. if(mode&ESS_FMT_16BIT)
  1216. ess->apu_mode[channel]=0x10;
  1217. else
  1218. ess->apu_mode[channel]=0x30;
  1219. if(mode&ESS_FMT_STEREO) {
  1220. /* set panning: left or right */
  1221. apu_set_register(ess, channel, 10, 0x8F00 | (channel ? 0 : 0x10));
  1222. ess->apu_mode[channel] += 0x10;
  1223. } else
  1224. apu_set_register(ess, channel, 10, 0x8F08);
  1225. }
  1226. /* clear WP interrupts */
  1227. outw(1, ess->card->iobase+0x04);
  1228. /* enable WP ints */
  1229. outw(inw(ess->card->iobase+0x18)|4, ess->card->iobase+0x18);
  1230. /* go team! */
  1231. set_dac_rate(ess,rate);
  1232. start_dac(ess);
  1233. }
  1234. /*
  1235.  * Native record driver 
  1236.  */
  1237. /* again, passed mode is alrady shifted/masked */
  1238. static void 
  1239. ess_rec_setup(struct ess_state *ess, int mode, u32 rate, void *buffer, int size)
  1240. {
  1241. int apu_step = 2;
  1242. int channel;
  1243. M_printk("maestro: ess_rec_setup: mode=%d rate=%d buf=0x%p len=%d.n",
  1244. mode, rate, buffer, size);
  1245. /* all maestro sizes are in 16bit words */
  1246. size >>=1;
  1247. /* we're given the full size of the buffer, but
  1248. in stereo each channel will only use its half */
  1249. if(mode&ESS_FMT_STEREO) {
  1250. size >>=1; 
  1251. apu_step = 1;
  1252. }
  1253. /* APU assignments: 2 = mono/left SRC
  1254.                     3 = right SRC
  1255.                     4 = mono/left Input Mixer
  1256.                     5 = right Input Mixer */
  1257. for(channel=2;channel<6;channel+=apu_step)
  1258. {
  1259. int i;
  1260. int bsize, route;
  1261. u32 pa;
  1262. u32 tmpval;
  1263. /* data seems to flow from the codec, through an apu into
  1264. the 'mixbuf' bit of page, then through the SRC apu
  1265. and out to the real 'buffer'.  ok.  sure.  */
  1266. if(channel & 0x04) {
  1267. /* ok, we're an input mixer going from adc
  1268. through the mixbuf to the other apus */
  1269. if(!(channel & 0x01)) { 
  1270. pa = virt_to_bus(ess->mixbuf);
  1271. } else {
  1272. pa = virt_to_bus(ess->mixbuf + (PAGE_SIZE >> 4));
  1273. }
  1274. /* we source from a 'magic' apu */
  1275. bsize = PAGE_SIZE >> 5; /* half of this channels alloc, in words */
  1276. route = 0x14 + (channel - 4); /* parallel in crap, see maestro reg 0xC [8-11] */
  1277. ess->apu_mode[channel] = 0x90;  /* Input Mixer */
  1278. } else {  
  1279. /* we're a rate converter taking
  1280. input from the input apus and outputing it to
  1281. system memory */
  1282. if(!(channel & 0x01))  {
  1283. pa = virt_to_bus(buffer);
  1284. } else {
  1285. /* right channel records its split half.
  1286. *2 accomodates for rampant shifting earlier */
  1287. pa = virt_to_bus(buffer + size*2);
  1288. }
  1289. ess->apu_mode[channel] = 0xB0;  /* Sample Rate Converter */
  1290. bsize = size; 
  1291. /* get input from inputing apu */
  1292. route = channel + 2;
  1293. }
  1294. M_printk("maestro: ess_rec_setup: getting pa 0x%x from %dn",pa,channel);
  1295. /* set the wavecache control reg */
  1296. tmpval = (pa - 0x10) & 0xFFF8;
  1297. ess->apu_base[channel]=tmpval;
  1298. wave_set_register(ess, ess->apu[channel]<<3, tmpval);
  1299. pa -= virt_to_bus(ess->card->dmapages);
  1300. pa>>=1; /* words */
  1301. /* base offset of dma calcs when reading the pointer
  1302. on this left one */
  1303. if(channel==2) ess->dma_adc.base = pa&0xFFFF;
  1304. pa|=0x00400000; /* bit 22 -> System RAM */
  1305. M_printk("maestro: ess_rec_setup: APU[%d] pa = 0x%x size = 0x%x route = 0x%xn", 
  1306. ess->apu[channel], pa, bsize, route);
  1307. /* Begin loading the APU */
  1308. for(i=0;i<15;i++) /* clear all PBRs */
  1309. apu_set_register(ess, channel, i, 0x0000);
  1310. apu_set_register(ess, channel, 0, 0x400F);
  1311. /* need to enable subgroups.. and we should probably
  1312. have different groups for different /dev/dsps..  */
  1313.   apu_set_register(ess, channel, 2, 0x8);
  1314. /* Load the buffer into the wave engine */
  1315. apu_set_register(ess, channel, 4, ((pa>>16)&0xFF)<<8);
  1316. /* XXX reg is little endian.. */
  1317. apu_set_register(ess, channel, 5, pa&0xFFFF);
  1318. apu_set_register(ess, channel, 6, (pa+bsize)&0xFFFF);
  1319. apu_set_register(ess, channel, 7, bsize);
  1320. /* clear effects/env.. */
  1321. apu_set_register(ess, channel, 8, 0x00F0);
  1322. /* amplitude now?  sure.  why not.  */
  1323. apu_set_register(ess, channel, 9, 0x0000);
  1324. /* set filter tune, radius, polar pan */
  1325. apu_set_register(ess, channel, 10, 0x8F08);
  1326. /* route input */
  1327. apu_set_register(ess, channel, 11, route);
  1328. }
  1329. /* clear WP interrupts */
  1330. outw(1, ess->card->iobase+0x04);
  1331. /* enable WP ints */
  1332. outw(inw(ess->card->iobase+0x18)|4, ess->card->iobase+0x18);
  1333. /* let 'er rip */
  1334. set_adc_rate(ess,rate);
  1335. start_adc(ess);
  1336. }
  1337. /* --------------------------------------------------------------------- */
  1338. static void set_dmaa(struct ess_state *s, unsigned int addr, unsigned int count)
  1339. {
  1340. M_printk("set_dmaa??n");
  1341. }
  1342. static void set_dmac(struct ess_state *s, unsigned int addr, unsigned int count)
  1343. {
  1344. M_printk("set_dmac??n");
  1345. }
  1346. /* Playback pointer */
  1347. static inline unsigned get_dmaa(struct ess_state *s)
  1348. {
  1349. int offset;
  1350. offset = apu_get_register(s,0,5);
  1351. /* M_printk("dmaa: offset: %d, base: %dn",offset,s->dma_dac.base); */
  1352. offset-=s->dma_dac.base;
  1353. return (offset&0xFFFE)<<1; /* hardware is in words */
  1354. }
  1355. /* Record pointer */
  1356. static inline unsigned get_dmac(struct ess_state *s)
  1357. {
  1358. int offset;
  1359. offset = apu_get_register(s,2,5);
  1360. /* M_printk("dmac: offset: %d, base: %dn",offset,s->dma_adc.base); */
  1361. /* The offset is an address not a position relative to base */
  1362. offset-=s->dma_adc.base;
  1363. return (offset&0xFFFE)<<1; /* hardware is in words */
  1364. }
  1365. /*
  1366.  * Meet Bob, the timer...
  1367.  */
  1368. static void ess_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  1369. static void stop_bob(struct ess_state *s)
  1370. {
  1371. /* Mask IDR 11,17 */
  1372. maestro_write(s,  0x11, maestro_read(s, 0x11)&~1);
  1373. maestro_write(s,  0x17, maestro_read(s, 0x17)&~1);
  1374. }
  1375. /* eventually we could be clever and limit bob ints
  1376. to the frequency at which our smallest duration
  1377. chunks may expire */
  1378. #define ESS_SYSCLK 50000000
  1379. static void start_bob(struct ess_state *s)
  1380. {
  1381. int prescale;
  1382. int divide;
  1383. /* XXX make freq selector much smarter, see calc_bob_rate */
  1384. int freq = 200; 
  1385. /* compute ideal interrupt frequency for buffer size & play rate */
  1386. /* first, find best prescaler value to match freq */
  1387. for(prescale=5;prescale<12;prescale++)
  1388. if(freq > (ESS_SYSCLK>>(prescale+9)))
  1389. break;
  1390. /* next, back off prescaler whilst getting divider into optimum range */
  1391. divide=1;
  1392. while((prescale > 5) && (divide<32))
  1393. {
  1394. prescale--;
  1395. divide <<=1;
  1396. }
  1397. divide>>=1;
  1398. /* now fine-tune the divider for best match */
  1399. for(;divide<31;divide++)
  1400. if(freq >= ((ESS_SYSCLK>>(prescale+9))/(divide+1)))
  1401. break;
  1402. /* divide = 0 is illegal, but don't let prescale = 4! */
  1403. if(divide == 0)
  1404. {
  1405. divide++;
  1406. if(prescale>5)
  1407. prescale--;
  1408. }
  1409. maestro_write(s, 6, 0x9000 | (prescale<<5) | divide); /* set reg */
  1410. /* Now set IDR 11/17 */
  1411. maestro_write(s, 0x11, maestro_read(s, 0x11)|1);
  1412. maestro_write(s, 0x17, maestro_read(s, 0x17)|1);
  1413. }
  1414. /* --------------------------------------------------------------------- */
  1415. /* this quickly calculates the frequency needed for bob
  1416. and sets it if its different than what bob is
  1417. currently running at.  its called often so 
  1418. needs to be fairly quick. */
  1419. #define BOB_MIN 50
  1420. #define BOB_MAX 400
  1421. static void calc_bob_rate(struct ess_state *s) {
  1422. #if 0 /* this thing tries to set the frequency of bob such that
  1423. there are 2 interrupts / buffer walked by the dac/adc.  That
  1424. is probably very wrong for people who actually care about 
  1425. mid buffer positioning.  it should be calculated as bytes/interrupt
  1426. and that needs to be decided :)  so for now just use the static 150
  1427. in start_bob.*/
  1428. unsigned int dac_rate=2,adc_rate=1,newrate;
  1429. static int israte=-1;
  1430. if (s->dma_dac.fragsize == 0) dac_rate = BOB_MIN;
  1431. else  {
  1432. dac_rate = (2 * s->ratedac * sample_size[(s->fmt >> ESS_DAC_SHIFT) & ESS_FMT_MASK]) /
  1433. (s->dma_dac.fragsize) ;
  1434. }
  1435. if (s->dma_adc.fragsize == 0) adc_rate = BOB_MIN;
  1436. else {
  1437. adc_rate = (2 * s->rateadc * sample_size[(s->fmt >> ESS_DAC_SHIFT) & ESS_FMT_MASK]) /
  1438. (s->dma_adc.fragsize) ;
  1439. }
  1440. if(dac_rate > adc_rate) newrate = adc_rate;
  1441. else newrate=dac_rate;
  1442. if(newrate > BOB_MAX) newrate = BOB_MAX;
  1443. else {
  1444. if(newrate < BOB_MIN) 
  1445. newrate = BOB_MIN;
  1446. }
  1447. if( israte != newrate) {
  1448. printk("dac: %d  adc: %d rate: %dn",dac_rate,adc_rate,israte);
  1449. israte=newrate;
  1450. }
  1451. #endif
  1452. }
  1453. static int 
  1454. prog_dmabuf(struct ess_state *s, unsigned rec)
  1455. {
  1456. struct dmabuf *db = rec ? &s->dma_adc : &s->dma_dac;
  1457. unsigned rate = rec ? s->rateadc : s->ratedac;
  1458. unsigned bytepersec;
  1459. unsigned bufs;
  1460. unsigned char fmt;
  1461. unsigned long flags;
  1462. spin_lock_irqsave(&s->lock, flags);
  1463. fmt = s->fmt;
  1464. if (rec) {
  1465. stop_adc(s);
  1466. fmt >>= ESS_ADC_SHIFT;
  1467. } else {
  1468. stop_dac(s);
  1469. fmt >>= ESS_DAC_SHIFT;
  1470. }
  1471. spin_unlock_irqrestore(&s->lock, flags);
  1472. fmt &= ESS_FMT_MASK;
  1473. db->hwptr = db->swptr = db->total_bytes = db->count = db->error = db->endcleared = 0;
  1474. /* this algorithm is a little nuts.. where did /1000 come from? */
  1475. bytepersec = rate << sample_shift[fmt];
  1476. bufs = PAGE_SIZE << db->buforder;
  1477. if (db->ossfragshift) {
  1478. if ((1000 << db->ossfragshift) < bytepersec)
  1479. db->fragshift = ld2(bytepersec/1000);
  1480. else
  1481. db->fragshift = db->ossfragshift;
  1482. } else {
  1483. db->fragshift = ld2(bytepersec/100/(db->subdivision ? db->subdivision : 1));
  1484. if (db->fragshift < 3)
  1485. db->fragshift = 3; 
  1486. }
  1487. db->numfrag = bufs >> db->fragshift;
  1488. while (db->numfrag < 4 && db->fragshift > 3) {
  1489. db->fragshift--;
  1490. db->numfrag = bufs >> db->fragshift;
  1491. }
  1492. db->fragsize = 1 << db->fragshift;
  1493. if (db->ossmaxfrags >= 4 && db->ossmaxfrags < db->numfrag)
  1494. db->numfrag = db->ossmaxfrags;
  1495. db->fragsamples = db->fragsize >> sample_shift[fmt];
  1496. db->dmasize = db->numfrag << db->fragshift;
  1497. M_printk("maestro: setup oss: numfrag: %d fragsize: %d dmasize: %dn",db->numfrag,db->fragsize,db->dmasize);
  1498. memset(db->rawbuf, (fmt & ESS_FMT_16BIT) ? 0 : 0x80, db->dmasize);
  1499. spin_lock_irqsave(&s->lock, flags);
  1500. if (rec) 
  1501. ess_rec_setup(s, fmt, s->rateadc, db->rawbuf, db->dmasize);
  1502. else 
  1503. ess_play_setup(s, fmt, s->ratedac, db->rawbuf, db->dmasize);
  1504. spin_unlock_irqrestore(&s->lock, flags);
  1505. db->ready = 1;
  1506. return 0;
  1507. }
  1508. static __inline__ void 
  1509. clear_advance(struct ess_state *s)
  1510. {
  1511. unsigned char c = ((s->fmt >> ESS_DAC_SHIFT) & ESS_FMT_16BIT) ? 0 : 0x80;
  1512. unsigned char *buf = s->dma_dac.rawbuf;
  1513. unsigned bsize = s->dma_dac.dmasize;
  1514. unsigned bptr = s->dma_dac.swptr;
  1515. unsigned len = s->dma_dac.fragsize;
  1516. if (bptr + len > bsize) {
  1517. unsigned x = bsize - bptr;
  1518. memset(buf + bptr, c, x);
  1519. /* account for wrapping? */
  1520. bptr = 0;
  1521. len -= x;
  1522. }
  1523. memset(buf + bptr, c, len);
  1524. }
  1525. /* call with spinlock held! */
  1526. static void 
  1527. ess_update_ptr(struct ess_state *s)
  1528. {
  1529. unsigned hwptr;
  1530. int diff;
  1531. /* update ADC pointer */
  1532. if (s->dma_adc.ready) {
  1533. /* oh boy should this all be re-written.  everything in the current code paths think
  1534. that the various counters/pointers are expressed in bytes to the user but we have
  1535. two apus doing stereo stuff so we fix it up here.. it propogates to all the various
  1536. counters from here.  */
  1537. if ( s->fmt & (ESS_FMT_STEREO << ESS_ADC_SHIFT)) {
  1538. hwptr = (get_dmac(s)*2) % s->dma_adc.dmasize;
  1539. } else {
  1540. hwptr = get_dmac(s) % s->dma_adc.dmasize;
  1541. }
  1542. diff = (s->dma_adc.dmasize + hwptr - s->dma_adc.hwptr) % s->dma_adc.dmasize;
  1543. s->dma_adc.hwptr = hwptr;
  1544. s->dma_adc.total_bytes += diff;
  1545. s->dma_adc.count += diff;
  1546. if (s->dma_adc.count >= (signed)s->dma_adc.fragsize) 
  1547. wake_up(&s->dma_adc.wait);
  1548. if (!s->dma_adc.mapped) {
  1549. if (s->dma_adc.count > (signed)(s->dma_adc.dmasize - ((3 * s->dma_adc.fragsize) >> 1))) {
  1550. /* FILL ME 
  1551. wrindir(s, SV_CIENABLE, s->enable); */
  1552. stop_adc(s); 
  1553. /* brute force everyone back in sync, sigh */
  1554. s->dma_adc.count = 0;
  1555. s->dma_adc.swptr = 0;
  1556. s->dma_adc.hwptr = 0;
  1557. s->dma_adc.error++;
  1558. }
  1559. }
  1560. }
  1561. /* update DAC pointer */
  1562. if (s->dma_dac.ready) {
  1563. hwptr = get_dmaa(s) % s->dma_dac.dmasize; 
  1564. /* the apu only reports the length it has seen, not the
  1565. length of the memory that has been used (the WP
  1566. knows that) */
  1567. if ( ((s->fmt >> ESS_DAC_SHIFT) & ESS_FMT_MASK) == (ESS_FMT_STEREO|ESS_FMT_16BIT))
  1568. hwptr<<=1;
  1569. diff = (s->dma_dac.dmasize + hwptr - s->dma_dac.hwptr) % s->dma_dac.dmasize;
  1570. /* M_printk("updating dac: hwptr: %d diff: %dn",hwptr,diff);*/
  1571. s->dma_dac.hwptr = hwptr;
  1572. s->dma_dac.total_bytes += diff;
  1573. if (s->dma_dac.mapped) {
  1574. s->dma_dac.count += diff;
  1575. if (s->dma_dac.count >= (signed)s->dma_dac.fragsize) {
  1576. wake_up(&s->dma_dac.wait);
  1577. }
  1578. } else {
  1579. s->dma_dac.count -= diff;
  1580. /* M_printk("maestro: ess_update_ptr: diff: %d, count: %dn", diff, s->dma_dac.count); */
  1581. if (s->dma_dac.count <= 0) {
  1582. M_printk("underflow! diff: %d count: %d hw: %d sw: %dn", diff, s->dma_dac.count, 
  1583. hwptr, s->dma_dac.swptr);
  1584. /* FILL ME 
  1585. wrindir(s, SV_CIENABLE, s->enable); */
  1586. /* XXX how on earth can calling this with the lock held work.. */
  1587. stop_dac(s);
  1588. /* brute force everyone back in sync, sigh */
  1589. s->dma_dac.count = 0; 
  1590. s->dma_dac.swptr = hwptr; 
  1591. s->dma_dac.error++;
  1592. } else if (s->dma_dac.count <= (signed)s->dma_dac.fragsize && !s->dma_dac.endcleared) {
  1593. clear_advance(s);
  1594. s->dma_dac.endcleared = 1;
  1595. }
  1596. if (s->dma_dac.count + (signed)s->dma_dac.fragsize <= (signed)s->dma_dac.dmasize) {
  1597. wake_up(&s->dma_dac.wait);
  1598. /* printk("waking up DAC count: %d sw: %d hw: %dn",s->dma_dac.count, s->dma_dac.swptr, 
  1599. hwptr);*/
  1600. }
  1601. }
  1602. }
  1603. }
  1604. static void 
  1605. ess_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1606. {
  1607.         struct ess_state *s;
  1608.         struct ess_card *c = (struct ess_card *)dev_id;
  1609. int i;
  1610. u32 event;
  1611. if ( ! (event = inb(c->iobase+0x1A)) ) return;
  1612. outw(inw(c->iobase+4)&1, c->iobase+4);
  1613. /* M_printk("maestro int: %xn",event);*/
  1614. if(event&(1<<6))
  1615. {
  1616. int x;
  1617. enum {UP_EVT, DOWN_EVT, MUTE_EVT} vol_evt;
  1618. int volume;
  1619. /* Figure out which volume control button was pushed,
  1620.    based on differences from the default register
  1621.    values. */
  1622. x = inb(c->iobase+0x1c);
  1623. if (x&1) vol_evt = MUTE_EVT;
  1624. else if (((x>>1)&7) > 4) vol_evt = UP_EVT;
  1625. else vol_evt = DOWN_EVT;
  1626. /* Reset the volume control registers. */
  1627. outb(0x88, c->iobase+0x1c);
  1628. outb(0x88, c->iobase+0x1d);
  1629. outb(0x88, c->iobase+0x1e);
  1630. outb(0x88, c->iobase+0x1f);
  1631. /* Deal with the button press in a hammer-handed
  1632.    manner by adjusting the master mixer volume. */
  1633. volume = c->mix.mixer_state[0] & 0xff;
  1634. if (vol_evt == UP_EVT) {
  1635. volume += 10;
  1636. if (volume > 100)
  1637. volume = 100;
  1638. }
  1639. else if (vol_evt == DOWN_EVT) {
  1640. volume -= 10;
  1641. if (volume < 0)
  1642. volume = 0;
  1643. } else {
  1644. /* vol_evt == MUTE_EVT */
  1645. if (volume == 0)
  1646. volume = c->dock_mute_vol;
  1647. else {
  1648. c->dock_mute_vol = volume;
  1649. volume = 0;
  1650. }
  1651. }
  1652. set_mixer (c, 0, (volume << 8) | volume);
  1653. }
  1654. /* Ack all the interrupts. */
  1655. outb(0xFF, c->iobase+0x1A);
  1656. /*
  1657.  * Update the pointers for all APU's we are running.
  1658.  */
  1659. for(i=0;i<NR_DSPS;i++)
  1660. {
  1661. s=&c->channels[i];
  1662. if(s->dev_audio == -1)
  1663. break;
  1664. spin_lock(&s->lock);
  1665. ess_update_ptr(s);
  1666. spin_unlock(&s->lock);
  1667. }
  1668. }
  1669. /* --------------------------------------------------------------------- */
  1670. static const char invalid_magic[] = KERN_CRIT "maestro: invalid magic value in %sn";
  1671. #define VALIDATE_MAGIC(FOO,MAG)                         
  1672. ({                                                
  1673. if (!(FOO) || (FOO)->magic != MAG) { 
  1674. printk(invalid_magic,__FUNCTION__);            
  1675. return -ENXIO;                    
  1676. }                                         
  1677. })
  1678. #define VALIDATE_STATE(a) VALIDATE_MAGIC(a,ESS_STATE_MAGIC)
  1679. #define VALIDATE_CARD(a) VALIDATE_MAGIC(a,ESS_CARD_MAGIC)
  1680. static void set_mixer(struct ess_card *card,unsigned int mixer, unsigned int val ) 
  1681. {
  1682. unsigned int left,right;
  1683. /* cleanse input a little */
  1684. right = ((val >> 8)  & 0xff) ;
  1685. left = (val  & 0xff) ;
  1686. if(right > 100) right = 100;
  1687. if(left > 100) left = 100;
  1688. card->mix.mixer_state[mixer]=(right << 8) | left;
  1689. card->mix.write_mixer(card,mixer,left,right);
  1690. }
  1691. static void
  1692. mixer_push_state(struct ess_card *card)
  1693. {
  1694. int i;
  1695. for(i = 0 ; i < SOUND_MIXER_NRDEVICES ; i++) {
  1696. if( ! supported_mixer(card,i)) continue;
  1697. set_mixer(card,i,card->mix.mixer_state[i]);
  1698. }
  1699. }
  1700. static int mixer_ioctl(struct ess_card *card, unsigned int cmd, unsigned long arg)
  1701. {
  1702. int i, val=0;
  1703.        unsigned long flags;
  1704. VALIDATE_CARD(card);
  1705.         if (cmd == SOUND_MIXER_INFO) {
  1706. mixer_info info;
  1707. strncpy(info.id, card_names[card->card_type], sizeof(info.id));
  1708. strncpy(info.name,card_names[card->card_type],sizeof(info.name));
  1709. info.modify_counter = card->mix.modcnt;
  1710. if (copy_to_user((void *)arg, &info, sizeof(info)))
  1711. return -EFAULT;
  1712. return 0;
  1713. }
  1714. if (cmd == SOUND_OLD_MIXER_INFO) {
  1715. _old_mixer_info info;
  1716. strncpy(info.id, card_names[card->card_type], sizeof(info.id));
  1717. strncpy(info.name,card_names[card->card_type],sizeof(info.name));
  1718. if (copy_to_user((void *)arg, &info, sizeof(info)))
  1719. return -EFAULT;
  1720. return 0;
  1721. }
  1722. if (cmd == OSS_GETVERSION)
  1723. return put_user(SOUND_VERSION, (int *)arg);
  1724. if (_IOC_TYPE(cmd) != 'M' || _IOC_SIZE(cmd) != sizeof(int))
  1725.                 return -EINVAL;
  1726.         if (_IOC_DIR(cmd) == _IOC_READ) {
  1727.                 switch (_IOC_NR(cmd)) {
  1728.                 case SOUND_MIXER_RECSRC: /* give them the current record source */
  1729. if(!card->mix.recmask_io) {
  1730. val = 0;
  1731. } else {
  1732.                                spin_lock_irqsave(&card->lock, flags);
  1733. val = card->mix.recmask_io(card,1,0);
  1734.                                spin_unlock_irqrestore(&card->lock, flags);
  1735. }
  1736. break;
  1737.                 case SOUND_MIXER_DEVMASK: /* give them the supported mixers */
  1738. val = card->mix.supported_mixers;
  1739. break;
  1740.                 case SOUND_MIXER_RECMASK: /* Arg contains a bit for each supported recording source */
  1741. val = card->mix.record_sources;
  1742. break;
  1743.                 case SOUND_MIXER_STEREODEVS: /* Mixer channels supporting stereo */
  1744. val = card->mix.stereo_mixers;
  1745. break;
  1746.                 case SOUND_MIXER_CAPS:
  1747. val = SOUND_CAP_EXCL_INPUT;
  1748. break;
  1749. default: /* read a specific mixer */
  1750. i = _IOC_NR(cmd);
  1751. if ( ! supported_mixer(card,i)) 
  1752. return -EINVAL;
  1753. /* do we ever want to touch the hardware? */
  1754. /*                     spin_lock_irqsave(&card->lock, flags);
  1755. val = card->mix.read_mixer(card,i);
  1756.                        spin_unlock_irqrestore(&card->lock, flags);*/
  1757. val = card->mix.mixer_state[i];
  1758. /* M_printk("returned 0x%x for mixer %dn",val,i);*/
  1759. break;
  1760. }
  1761. return put_user(val,(int *)arg);
  1762. }
  1763.         if (_IOC_DIR(cmd) != (_IOC_WRITE|_IOC_READ))
  1764. return -EINVAL;
  1765. card->mix.modcnt++;
  1766. if (get_user(val, (int *)arg))
  1767. return -EFAULT;
  1768. switch (_IOC_NR(cmd)) {
  1769. case SOUND_MIXER_RECSRC: /* Arg contains a bit for each recording source */
  1770. if (!card->mix.recmask_io) return -EINVAL;
  1771. if(!val) return 0;
  1772. if(! (val &= card->mix.record_sources)) return -EINVAL;
  1773.                spin_lock_irqsave(&card->lock, flags);
  1774. card->mix.recmask_io(card,0,val);
  1775.                spin_unlock_irqrestore(&card->lock, flags);
  1776. return 0;
  1777. default:
  1778. i = _IOC_NR(cmd);
  1779. if ( ! supported_mixer(card,i)) 
  1780. return -EINVAL;
  1781.                spin_lock_irqsave(&card->lock, flags);
  1782. set_mixer(card,i,val);
  1783.                spin_unlock_irqrestore(&card->lock, flags);
  1784. return 0;
  1785. }
  1786. }
  1787. /* --------------------------------------------------------------------- */
  1788. static int ess_open_mixdev(struct inode *inode, struct file *file)
  1789. {
  1790. int minor = MINOR(inode->i_rdev);
  1791. struct ess_card *card = NULL;
  1792. struct pci_dev *pdev;
  1793. struct pci_driver *drvr;
  1794. pci_for_each_dev(pdev) {
  1795. drvr = pci_dev_driver (pdev);
  1796. if (drvr == &maestro_pci_driver) {
  1797. card = (struct ess_card*)pci_get_drvdata (pdev);
  1798. if (!card)
  1799. continue;
  1800. if (card->dev_mixer == minor)
  1801. break;
  1802. }
  1803. }
  1804. if (!card)
  1805. return -ENODEV;
  1806. file->private_data = card;
  1807. return 0;
  1808. }
  1809. static int ess_release_mixdev(struct inode *inode, struct file *file)
  1810. {
  1811. struct ess_card *card = (struct ess_card *)file->private_data;
  1812. VALIDATE_CARD(card);
  1813. return 0;
  1814. }
  1815. static int ess_ioctl_mixdev(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  1816. {
  1817. struct ess_card *card = (struct ess_card *)file->private_data;
  1818. VALIDATE_CARD(card);
  1819. return mixer_ioctl(card, cmd, arg);
  1820. }
  1821. static /*const*/ struct file_operations ess_mixer_fops = {
  1822. owner: THIS_MODULE,
  1823. llseek:         no_llseek,
  1824. ioctl:          ess_ioctl_mixdev,
  1825. open:           ess_open_mixdev,
  1826. release:        ess_release_mixdev,
  1827. };
  1828. /* --------------------------------------------------------------------- */
  1829. static int drain_dac(struct ess_state *s, int nonblock)
  1830. {
  1831. DECLARE_WAITQUEUE(wait,current);
  1832. unsigned long flags;
  1833. int count;
  1834. signed long tmo;
  1835. if (s->dma_dac.mapped || !s->dma_dac.ready)
  1836. return 0;
  1837. current->state = TASK_INTERRUPTIBLE;
  1838.         add_wait_queue(&s->dma_dac.wait, &wait);
  1839.         for (;;) {
  1840. /* XXX uhm.. questionable locking*/
  1841.                 spin_lock_irqsave(&s->lock, flags);
  1842. count = s->dma_dac.count;
  1843.                 spin_unlock_irqrestore(&s->lock, flags);
  1844. if (count <= 0)
  1845. break;
  1846. if (signal_pending(current))
  1847.                         break;
  1848.                 if (nonblock) {
  1849.                         remove_wait_queue(&s->dma_dac.wait, &wait);
  1850. current->state = TASK_RUNNING;
  1851.                         return -EBUSY;
  1852.                 }
  1853. tmo = (count * HZ) / s->ratedac;
  1854. tmo >>= sample_shift[(s->fmt >> ESS_DAC_SHIFT) & ESS_FMT_MASK];
  1855. /* XXX this is just broken.  someone is waking us up alot, or schedule_timeout is broken.
  1856. or something.  who cares. - zach */
  1857. if (!schedule_timeout(tmo ? tmo : 1) && tmo)
  1858. M_printk(KERN_DEBUG "maestro: dma timed out?? %ldn",jiffies);
  1859.         }
  1860.         remove_wait_queue(&s->dma_dac.wait, &wait);
  1861. current->state = TASK_RUNNING;
  1862.         if (signal_pending(current))
  1863.                 return -ERESTARTSYS;
  1864.         return 0;
  1865. }
  1866. /* --------------------------------------------------------------------- */
  1867. /* Zach sez: "god this is gross.." */
  1868. static int 
  1869. comb_stereo(unsigned char *real_buffer,unsigned char  *tmp_buffer, int offset, 
  1870. int count, int bufsize)
  1871. {  
  1872. /* No such thing as stereo recording, so we
  1873. use dual input mixers.  which means we have to 
  1874. combine mono to stereo buffer.  yuck. 
  1875. but we don't have to be able to work a byte at a time..*/
  1876. unsigned char *so,*left,*right;
  1877. int i;
  1878. so = tmp_buffer;
  1879. left = real_buffer + offset;
  1880. right = real_buffer + bufsize/2 + offset;
  1881. /* M_printk("comb_stereo writing %d to %p from %p and %p, offset: %d size: %dn",count/2, tmp_buffer,left,right,offset,bufsize);*/
  1882. for(i=count/4; i ; i--) {
  1883. (*(so+2)) = *(right++);
  1884. (*(so+3)) = *(right++);
  1885. (*so) = *(left++);
  1886. (*(so+1)) = *(left++);
  1887. so+=4;
  1888. }
  1889. return 0;
  1890. }
  1891. /* in this loop, dma_adc.count signifies the amount of data thats waiting
  1892. to be copied to the user's buffer.  it is filled by the interrupt
  1893. handler and drained by this loop. */
  1894. static ssize_t 
  1895. ess_read(struct file *file, char *buffer, size_t count, loff_t *ppos)
  1896. {
  1897. struct ess_state *s = (struct ess_state *)file->private_data;
  1898. ssize_t ret;
  1899. unsigned long flags;
  1900. unsigned swptr;
  1901. int cnt;
  1902. unsigned char *combbuf = NULL;
  1903. VALIDATE_STATE(s);
  1904. if (ppos != &file->f_pos)
  1905. return -ESPIPE;
  1906. if (s->dma_adc.mapped)
  1907. return -ENXIO;
  1908. if (!s->dma_adc.ready && (ret = prog_dmabuf(s, 1)))
  1909. return ret;
  1910. if (!access_ok(VERIFY_WRITE, buffer, count))
  1911. return -EFAULT;
  1912. if(!(combbuf = kmalloc(count,GFP_KERNEL)))
  1913. return -ENOMEM;
  1914. ret = 0;
  1915. calc_bob_rate(s);
  1916. while (count > 0) {
  1917. spin_lock_irqsave(&s->lock, flags);
  1918. /* remember, all these things are expressed in bytes to be
  1919. sent to the user.. hence the evil / 2 down below */
  1920. swptr = s->dma_adc.swptr;
  1921. cnt = s->dma_adc.dmasize-swptr;
  1922. if (s->dma_adc.count < cnt)
  1923. cnt = s->dma_adc.count;
  1924. spin_unlock_irqrestore(&s->lock, flags);
  1925. if (cnt > count)
  1926. cnt = count;
  1927. if ( cnt > 0 ) cnt &= ~3;
  1928. if (cnt <= 0) {
  1929. start_adc(s);
  1930. if (file->f_flags & O_NONBLOCK) 
  1931. {
  1932. ret = ret ? ret : -EAGAIN;
  1933. goto rec_return_free;
  1934. }
  1935. if (!interruptible_sleep_on_timeout(&s->dma_adc.wait, HZ)) {
  1936. if(! s->card->in_suspend) printk(KERN_DEBUG "maestro: read: chip lockup? dmasz %u fragsz %u count %i hwptr %u swptr %un",
  1937.        s->dma_adc.dmasize, s->dma_adc.fragsize, s->dma_adc.count, 
  1938.        s->dma_adc.hwptr, s->dma_adc.swptr);
  1939. stop_adc(s);
  1940. spin_lock_irqsave(&s->lock, flags);
  1941. set_dmac(s, virt_to_bus(s->dma_adc.rawbuf), s->dma_adc.numfrag << s->dma_adc.fragshift);
  1942. /* program enhanced mode registers */
  1943. /* FILL ME */
  1944. /* wrindir(s, SV_CIDMACBASECOUNT1, (s->dma_adc.fragsamples-1) >> 8);
  1945. wrindir(s, SV_CIDMACBASECOUNT0, s->dma_adc.fragsamples-1); */
  1946. s->dma_adc.count = s->dma_adc.hwptr = s->dma_adc.swptr = 0;
  1947. spin_unlock_irqrestore(&s->lock, flags);
  1948. }
  1949. if (signal_pending(current)) 
  1950. {
  1951. ret = ret ? ret : -ERESTARTSYS;
  1952. goto rec_return_free;
  1953. }
  1954. continue;
  1955. }
  1956. if(s->fmt & (ESS_FMT_STEREO << ESS_ADC_SHIFT)) {
  1957. /* swptr/2 so that we know the real offset in each apu's buffer */
  1958. comb_stereo(s->dma_adc.rawbuf,combbuf,swptr/2,cnt,s->dma_adc.dmasize);
  1959. if (copy_to_user(buffer, combbuf, cnt)) {
  1960. ret = ret ? ret : -EFAULT;
  1961. goto rec_return_free;
  1962. }
  1963. } else  {
  1964. if (copy_to_user(buffer, s->dma_adc.rawbuf + swptr, cnt)) {
  1965. ret = ret ? ret : -EFAULT;
  1966. goto rec_return_free;
  1967. }
  1968. }
  1969. swptr = (swptr + cnt) % s->dma_adc.dmasize;
  1970. spin_lock_irqsave(&s->lock, flags);
  1971. s->dma_adc.swptr = swptr;
  1972. s->dma_adc.count -= cnt;
  1973. spin_unlock_irqrestore(&s->lock, flags);
  1974. count -= cnt;
  1975. buffer += cnt;
  1976. ret += cnt;
  1977. start_adc(s);
  1978. }
  1979. rec_return_free:
  1980. if(combbuf) kfree(combbuf);
  1981. return ret;
  1982. }
  1983. static ssize_t 
  1984. ess_write(struct file *file, const char *buffer, size_t count, loff_t *ppos)
  1985. {
  1986. struct ess_state *s = (struct ess_state *)file->private_data;
  1987. ssize_t ret;
  1988. unsigned long flags;
  1989. unsigned swptr;
  1990. int cnt;
  1991. VALIDATE_STATE(s);
  1992. if (ppos != &file->f_pos)
  1993. return -ESPIPE;
  1994. if (s->dma_dac.mapped)
  1995. return -ENXIO;
  1996. if (!s->dma_dac.ready && (ret = prog_dmabuf(s, 0)))
  1997. return ret;
  1998. if (!access_ok(VERIFY_READ, buffer, count))
  1999. return -EFAULT;
  2000. ret = 0;
  2001. calc_bob_rate(s);
  2002. while (count > 0) {
  2003. spin_lock_irqsave(&s->lock, flags);
  2004. if (s->dma_dac.count < 0) {
  2005. s->dma_dac.count = 0;
  2006. s->dma_dac.swptr = s->dma_dac.hwptr;
  2007. }
  2008. swptr = s->dma_dac.swptr;
  2009. cnt = s->dma_dac.dmasize-swptr;
  2010. if (s->dma_dac.count + cnt > s->dma_dac.dmasize)
  2011. cnt = s->dma_dac.dmasize - s->dma_dac.count;
  2012. spin_unlock_irqrestore(&s->lock, flags);
  2013. if (cnt > count)
  2014. cnt = count;
  2015. if (cnt <= 0) {
  2016. start_dac(s);
  2017. if (file->f_flags & O_NONBLOCK) {
  2018. if(!ret) ret = -EAGAIN;
  2019. goto return_free;
  2020. }
  2021. if (!interruptible_sleep_on_timeout(&s->dma_dac.wait, HZ)) {
  2022. if(! s->card->in_suspend) printk(KERN_DEBUG "maestro: write: chip lockup? dmasz %u fragsz %u count %i hwptr %u swptr %un",
  2023.        s->dma_dac.dmasize, s->dma_dac.fragsize, s->dma_dac.count, 
  2024.        s->dma_dac.hwptr, s->dma_dac.swptr);
  2025. stop_dac(s);
  2026. spin_lock_irqsave(&s->lock, flags);
  2027. set_dmaa(s, virt_to_bus(s->dma_dac.rawbuf), s->dma_dac.numfrag << s->dma_dac.fragshift);
  2028. /* program enhanced mode registers */
  2029. /* wrindir(s, SV_CIDMAABASECOUNT1, (s->dma_dac.fragsamples-1) >> 8);
  2030. wrindir(s, SV_CIDMAABASECOUNT0, s->dma_dac.fragsamples-1); */
  2031. /* FILL ME */
  2032. s->dma_dac.count = s->dma_dac.hwptr = s->dma_dac.swptr = 0;
  2033. spin_unlock_irqrestore(&s->lock, flags);
  2034. }
  2035. if (signal_pending(current)) {
  2036. if (!ret) ret = -ERESTARTSYS;
  2037. goto return_free;
  2038. }
  2039. continue;
  2040. }
  2041. if (copy_from_user(s->dma_dac.rawbuf + swptr, buffer, cnt)) {
  2042. if (!ret) ret = -EFAULT;
  2043. goto return_free;
  2044. }
  2045. /* printk("wrote %d bytes at sw: %d cnt: %d while hw: %dn",cnt, swptr, s->dma_dac.count, s->dma_dac.hwptr);*/
  2046. swptr = (swptr + cnt) % s->dma_dac.dmasize;
  2047. spin_lock_irqsave(&s->lock, flags);
  2048. s->dma_dac.swptr = swptr;
  2049. s->dma_dac.count += cnt;
  2050. s->dma_dac.endcleared = 0;
  2051. spin_unlock_irqrestore(&s->lock, flags);
  2052. count -= cnt;
  2053. buffer += cnt;
  2054. ret += cnt;
  2055. start_dac(s);
  2056. }
  2057. return_free:
  2058. return ret;
  2059. }
  2060. /* No kernel lock - we have our own spinlock */
  2061. static unsigned int ess_poll(struct file *file, struct poll_table_struct *wait)
  2062. {
  2063. struct ess_state *s = (struct ess_state *)file->private_data;
  2064. unsigned long flags;
  2065. unsigned int mask = 0;
  2066. VALIDATE_STATE(s);
  2067. /* In 0.14 prog_dmabuf always returns success anyway ... */
  2068. if (file->f_mode & FMODE_WRITE) {
  2069. if (!s->dma_dac.ready && prog_dmabuf(s, 0)) 
  2070. return 0;
  2071. }
  2072. if (file->f_mode & FMODE_READ) {
  2073.    if (!s->dma_adc.ready && prog_dmabuf(s, 1))
  2074. return 0;
  2075. }
  2076. if (file->f_mode & FMODE_WRITE)
  2077. poll_wait(file, &s->dma_dac.wait, wait);
  2078. if (file->f_mode & FMODE_READ)
  2079. poll_wait(file, &s->dma_adc.wait, wait);
  2080. spin_lock_irqsave(&s->lock, flags);
  2081. ess_update_ptr(s);
  2082. if (file->f_mode & FMODE_READ) {
  2083. if (s->dma_adc.count >= (signed)s->dma_adc.fragsize)
  2084. mask |= POLLIN | POLLRDNORM;
  2085. }
  2086. if (file->f_mode & FMODE_WRITE) {
  2087. if (s->dma_dac.mapped) {
  2088. if (s->dma_dac.count >= (signed)s->dma_dac.fragsize) 
  2089. mask |= POLLOUT | POLLWRNORM;
  2090. } else {
  2091. if ((signed)s->dma_dac.dmasize >= s->dma_dac.count + (signed)s->dma_dac.fragsize)
  2092. mask |= POLLOUT | POLLWRNORM;
  2093. }
  2094. }
  2095. spin_unlock_irqrestore(&s->lock, flags);
  2096. return mask;
  2097. }
  2098. static int ess_mmap(struct file *file, struct vm_area_struct *vma)
  2099. {
  2100. struct ess_state *s = (struct ess_state *)file->private_data;
  2101. struct dmabuf *db;
  2102. int ret = -EINVAL;
  2103. unsigned long size;
  2104. VALIDATE_STATE(s);
  2105. lock_kernel();
  2106. if (vma->vm_flags & VM_WRITE) {
  2107. if ((ret = prog_dmabuf(s, 1)) != 0)
  2108. goto out;
  2109. db = &s->dma_dac;
  2110. } else 
  2111. #if 0
  2112. /* if we can have the wp/wc do the combining
  2113. we can turn this back on.  */
  2114.       if (vma->vm_flags & VM_READ) {
  2115. if ((ret = prog_dmabuf(s, 0)) != 0)
  2116. goto out;
  2117. db = &s->dma_adc;
  2118. } else  
  2119. #endif
  2120. goto out;
  2121. ret = -EINVAL;
  2122. if (vma->vm_pgoff != 0)
  2123. goto out;
  2124. size = vma->vm_end - vma->vm_start;
  2125. if (size > (PAGE_SIZE << db->buforder))
  2126. goto out;
  2127. ret = -EAGAIN;
  2128. if (remap_page_range(vma->vm_start, virt_to_phys(db->rawbuf), size, vma->vm_page_prot))
  2129. goto out;
  2130. db->mapped = 1;
  2131. ret = 0;
  2132. out:
  2133. unlock_kernel();
  2134. return ret;
  2135. }
  2136. static int ess_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  2137. {
  2138. struct ess_state *s = (struct ess_state *)file->private_data;
  2139. unsigned long flags;
  2140.         audio_buf_info abinfo;
  2141.         count_info cinfo;
  2142. int val, mapped, ret;
  2143. unsigned char fmtm, fmtd;
  2144. /* printk("maestro: ess_ioctl: cmd %dn", cmd);*/
  2145. VALIDATE_STATE(s);
  2146.         mapped = ((file->f_mode & FMODE_WRITE) && s->dma_dac.mapped) ||
  2147. ((file->f_mode & FMODE_READ) && s->dma_adc.mapped);
  2148. switch (cmd) {
  2149. case OSS_GETVERSION:
  2150. return put_user(SOUND_VERSION, (int *)arg);
  2151. case SNDCTL_DSP_SYNC:
  2152. if (file->f_mode & FMODE_WRITE)
  2153. return drain_dac(s, file->f_flags & O_NONBLOCK);
  2154. return 0;
  2155. case SNDCTL_DSP_SETDUPLEX:
  2156. /* XXX fix */
  2157. return 0;
  2158. case SNDCTL_DSP_GETCAPS:
  2159. return put_user(DSP_CAP_DUPLEX | DSP_CAP_REALTIME | DSP_CAP_TRIGGER | DSP_CAP_MMAP, (int *)arg);
  2160.         case SNDCTL_DSP_RESET:
  2161. if (file->f_mode & FMODE_WRITE) {
  2162. stop_dac(s);
  2163. synchronize_irq();
  2164. s->dma_dac.swptr = s->dma_dac.hwptr = s->dma_dac.count = s->dma_dac.total_bytes = 0;
  2165. }
  2166. if (file->f_mode & FMODE_READ) {
  2167. stop_adc(s);
  2168. synchronize_irq();
  2169. s->dma_adc.swptr = s->dma_adc.hwptr = s->dma_adc.count = s->dma_adc.total_bytes = 0;
  2170. }
  2171. return 0;
  2172.         case SNDCTL_DSP_SPEED:
  2173.                 if (get_user(val, (int *)arg))
  2174. return -EFAULT;
  2175. if (val >= 0) {
  2176. if (file->f_mode & FMODE_READ) {
  2177. stop_adc(s);
  2178. s->dma_adc.ready = 0;
  2179. set_adc_rate(s, val);
  2180. }
  2181. if (file->f_mode & FMODE_WRITE) {
  2182. stop_dac(s);
  2183. s->dma_dac.ready = 0;
  2184. set_dac_rate(s, val);
  2185. }
  2186. }
  2187. return put_user((file->f_mode & FMODE_READ) ? s->rateadc : s->ratedac, (int *)arg);
  2188.         case SNDCTL_DSP_STEREO:
  2189. if (get_user(val, (int *)arg))
  2190. return -EFAULT;
  2191. fmtd = 0;
  2192. fmtm = ~0;
  2193. if (file->f_mode & FMODE_READ) {
  2194. stop_adc(s);
  2195. s->dma_adc.ready = 0;
  2196. if (val)
  2197. fmtd |= ESS_FMT_STEREO << ESS_ADC_SHIFT;
  2198. else
  2199. fmtm &= ~(ESS_FMT_STEREO << ESS_ADC_SHIFT);
  2200. }
  2201. if (file->f_mode & FMODE_WRITE) {
  2202. stop_dac(s);
  2203. s->dma_dac.ready = 0;
  2204. if (val)
  2205. fmtd |= ESS_FMT_STEREO << ESS_DAC_SHIFT;
  2206. else
  2207. fmtm &= ~(ESS_FMT_STEREO << ESS_DAC_SHIFT);
  2208. }
  2209. set_fmt(s, fmtm, fmtd);
  2210. return 0;
  2211.         case SNDCTL_DSP_CHANNELS:
  2212.                 if (get_user(val, (int *)arg))
  2213. return -EFAULT;
  2214. if (val != 0) {
  2215. fmtd = 0;
  2216. fmtm = ~0;
  2217. if (file->f_mode & FMODE_READ) {
  2218. stop_adc(s);
  2219. s->dma_adc.ready = 0;
  2220. if (val >= 2)
  2221. fmtd |= ESS_FMT_STEREO << ESS_ADC_SHIFT;
  2222. else
  2223. fmtm &= ~(ESS_FMT_STEREO << ESS_ADC_SHIFT);
  2224. }
  2225. if (file->f_mode & FMODE_WRITE) {
  2226. stop_dac(s);
  2227. s->dma_dac.ready = 0;
  2228. if (val >= 2)
  2229. fmtd |= ESS_FMT_STEREO << ESS_DAC_SHIFT;
  2230. else
  2231. fmtm &= ~(ESS_FMT_STEREO << ESS_DAC_SHIFT);
  2232. }
  2233. set_fmt(s, fmtm, fmtd);
  2234. }
  2235. return put_user((s->fmt & ((file->f_mode & FMODE_READ) ? (ESS_FMT_STEREO << ESS_ADC_SHIFT) 
  2236.    : (ESS_FMT_STEREO << ESS_DAC_SHIFT))) ? 2 : 1, (int *)arg);
  2237. case SNDCTL_DSP_GETFMTS: /* Returns a mask */
  2238.                 return put_user(AFMT_U8|AFMT_S16_LE, (int *)arg);
  2239. case SNDCTL_DSP_SETFMT: /* Selects ONE fmt*/
  2240. if (get_user(val, (int *)arg))
  2241. return -EFAULT;
  2242. if (val != AFMT_QUERY) {
  2243. fmtd = 0;
  2244. fmtm = ~0;
  2245. if (file->f_mode & FMODE_READ) {
  2246. stop_adc(s);
  2247. s->dma_adc.ready = 0;
  2248. /* fixed at 16bit for now */
  2249. fmtd |= ESS_FMT_16BIT << ESS_ADC_SHIFT;
  2250. #if 0
  2251. if (val == AFMT_S16_LE)
  2252. fmtd |= ESS_FMT_16BIT << ESS_ADC_SHIFT;
  2253. else
  2254. fmtm &= ~(ESS_FMT_16BIT << ESS_ADC_SHIFT);
  2255. #endif
  2256. }
  2257. if (file->f_mode & FMODE_WRITE) {
  2258. stop_dac(s);
  2259. s->dma_dac.ready = 0;
  2260. if (val == AFMT_S16_LE)
  2261. fmtd |= ESS_FMT_16BIT << ESS_DAC_SHIFT;
  2262. else
  2263. fmtm &= ~(ESS_FMT_16BIT << ESS_DAC_SHIFT);
  2264. }
  2265. set_fmt(s, fmtm, fmtd);
  2266. }
  2267.   return put_user((s->fmt & ((file->f_mode & FMODE_READ) ? 
  2268. (ESS_FMT_16BIT << ESS_ADC_SHIFT) 
  2269. : (ESS_FMT_16BIT << ESS_DAC_SHIFT))) ? 
  2270. AFMT_S16_LE : 
  2271. AFMT_U8, 
  2272. (int *)arg);
  2273. case SNDCTL_DSP_POST:
  2274.                 return 0;
  2275.         case SNDCTL_DSP_GETTRIGGER:
  2276. val = 0;
  2277. if ((file->f_mode & FMODE_READ) && (s->enable & ADC_RUNNING))
  2278. val |= PCM_ENABLE_INPUT;
  2279. if ((file->f_mode & FMODE_WRITE) && (s->enable & DAC_RUNNING)) 
  2280. val |= PCM_ENABLE_OUTPUT;
  2281. return put_user(val, (int *)arg);
  2282. case SNDCTL_DSP_SETTRIGGER:
  2283. if (get_user(val, (int *)arg))
  2284. return -EFAULT;
  2285. if (file->f_mode & FMODE_READ) {
  2286. if (val & PCM_ENABLE_INPUT) {
  2287. if (!s->dma_adc.ready && (ret =  prog_dmabuf(s, 1)))
  2288. return ret;
  2289. start_adc(s);
  2290. } else
  2291. stop_adc(s);
  2292. }
  2293. if (file->f_mode & FMODE_WRITE) {
  2294. if (val & PCM_ENABLE_OUTPUT) {
  2295. if (!s->dma_dac.ready && (ret = prog_dmabuf(s, 0)))
  2296. return ret;
  2297. start_dac(s);
  2298. } else
  2299. stop_dac(s);
  2300. }
  2301. return 0;
  2302. case SNDCTL_DSP_GETOSPACE:
  2303. if (!(file->f_mode & FMODE_WRITE))
  2304. return -EINVAL;
  2305. if (!s->dma_dac.ready && (ret = prog_dmabuf(s, 0)))
  2306. return ret;
  2307. spin_lock_irqsave(&s->lock, flags);
  2308. ess_update_ptr(s);
  2309. abinfo.fragsize = s->dma_dac.fragsize;
  2310.                 abinfo.bytes = s->dma_dac.dmasize - s->dma_dac.count;
  2311.                 abinfo.fragstotal = s->dma_dac.numfrag;
  2312.                 abinfo.fragments = abinfo.bytes >> s->dma_dac.fragshift;      
  2313. spin_unlock_irqrestore(&s->lock, flags);
  2314. return copy_to_user((void *)arg, &abinfo, sizeof(abinfo)) ? -EFAULT : 0;
  2315. case SNDCTL_DSP_GETISPACE:
  2316. if (!(file->f_mode & FMODE_READ))
  2317. return -EINVAL;
  2318. if (!s->dma_adc.ready && (ret =  prog_dmabuf(s, 1)))
  2319. return ret;
  2320. spin_lock_irqsave(&s->lock, flags);
  2321. ess_update_ptr(s);
  2322. abinfo.fragsize = s->dma_adc.fragsize;
  2323.                 abinfo.bytes = s->dma_adc.count;
  2324.                 abinfo.fragstotal = s->dma_adc.numfrag;
  2325.                 abinfo.fragments = abinfo.bytes >> s->dma_adc.fragshift;      
  2326. spin_unlock_irqrestore(&s->lock, flags);
  2327. return copy_to_user((void *)arg, &abinfo, sizeof(abinfo)) ? -EFAULT : 0;
  2328.         case SNDCTL_DSP_NONBLOCK:
  2329.                 file->f_flags |= O_NONBLOCK;
  2330.                 return 0;
  2331.         case SNDCTL_DSP_GETODELAY:
  2332. if (!(file->f_mode & FMODE_WRITE))
  2333. return -EINVAL;
  2334. if (!s->dma_dac.ready && (ret = prog_dmabuf(s, 0)))
  2335. return ret;
  2336. spin_lock_irqsave(&s->lock, flags);
  2337. ess_update_ptr(s);
  2338.                 val = s->dma_dac.count;
  2339. spin_unlock_irqrestore(&s->lock, flags);
  2340. return put_user(val, (int *)arg);
  2341.         case SNDCTL_DSP_GETIPTR:
  2342. if (!(file->f_mode & FMODE_READ))
  2343. return -EINVAL;
  2344. if (!s->dma_adc.ready && (ret =  prog_dmabuf(s, 1)))
  2345. return ret;
  2346. spin_lock_irqsave(&s->lock, flags);
  2347. ess_update_ptr(s);
  2348.                 cinfo.bytes = s->dma_adc.total_bytes;
  2349.                 cinfo.blocks = s->dma_adc.count >> s->dma_adc.fragshift;
  2350.                 cinfo.ptr = s->dma_adc.hwptr;
  2351. if (s->dma_adc.mapped)
  2352. s->dma_adc.count &= s->dma_adc.fragsize-1;
  2353. spin_unlock_irqrestore(&s->lock, flags);
  2354.                 return copy_to_user((void *)arg, &cinfo, sizeof(cinfo));
  2355.         case SNDCTL_DSP_GETOPTR:
  2356. if (!(file->f_mode & FMODE_WRITE))
  2357. return -EINVAL;
  2358. if (!s->dma_dac.ready && (ret = prog_dmabuf(s, 0)))
  2359. return ret;
  2360. spin_lock_irqsave(&s->lock, flags);
  2361. ess_update_ptr(s);
  2362.                 cinfo.bytes = s->dma_dac.total_bytes;
  2363.                 cinfo.blocks = s->dma_dac.count >> s->dma_dac.fragshift;
  2364.                 cinfo.ptr = s->dma_dac.hwptr;
  2365. if (s->dma_dac.mapped)
  2366. s->dma_dac.count &= s->dma_dac.fragsize-1;
  2367. spin_unlock_irqrestore(&s->lock, flags);
  2368.                 return copy_to_user((void *)arg, &cinfo, sizeof(cinfo));
  2369.         case SNDCTL_DSP_GETBLKSIZE:
  2370. if (file->f_mode & FMODE_WRITE) {
  2371. if ((val = prog_dmabuf(s, 0)))
  2372. return val;
  2373. return put_user(s->dma_dac.fragsize, (int *)arg);
  2374. }
  2375. if ((val = prog_dmabuf(s, 1)))
  2376. return val;
  2377. return put_user(s->dma_adc.fragsize, (int *)arg);
  2378.         case SNDCTL_DSP_SETFRAGMENT:
  2379.                 if (get_user(val, (int *)arg))
  2380. return -EFAULT;
  2381. M_printk("maestro: SETFRAGMENT: %0xn",val);
  2382. if (file->f_mode & FMODE_READ) {
  2383. s->dma_adc.ossfragshift = val & 0xffff;
  2384. s->dma_adc.ossmaxfrags = (val >> 16) & 0xffff;
  2385. if (s->dma_adc.ossfragshift < 4)
  2386. s->dma_adc.ossfragshift = 4;
  2387. if (s->dma_adc.ossfragshift > 15)
  2388. s->dma_adc.ossfragshift = 15;
  2389. if (s->dma_adc.ossmaxfrags < 4)
  2390. s->dma_adc.ossmaxfrags = 4;
  2391. }
  2392. if (file->f_mode & FMODE_WRITE) {
  2393. s->dma_dac.ossfragshift = val & 0xffff;
  2394. s->dma_dac.ossmaxfrags = (val >> 16) & 0xffff;
  2395. if (s->dma_dac.ossfragshift < 4)
  2396. s->dma_dac.ossfragshift = 4;
  2397. if (s->dma_dac.ossfragshift > 15)
  2398. s->dma_dac.ossfragshift = 15;
  2399. if (s->dma_dac.ossmaxfrags < 4)
  2400. s->dma_dac.ossmaxfrags = 4;
  2401. }
  2402. return 0;
  2403.         case SNDCTL_DSP_SUBDIVIDE:
  2404. if ((file->f_mode & FMODE_READ && s->dma_adc.subdivision) ||
  2405.     (file->f_mode & FMODE_WRITE && s->dma_dac.subdivision))
  2406. return -EINVAL;
  2407.                 if (get_user(val, (int *)arg))
  2408. return -EFAULT;
  2409. if (val != 1 && val != 2 && val != 4)
  2410. return -EINVAL;
  2411. if (file->f_mode & FMODE_READ)
  2412. s->dma_adc.subdivision = val;
  2413. if (file->f_mode & FMODE_WRITE)
  2414. s->dma_dac.subdivision = val;
  2415. return 0;
  2416.         case SOUND_PCM_READ_RATE:
  2417. return put_user((file->f_mode & FMODE_READ) ? s->rateadc : s->ratedac, (int *)arg);
  2418.         case SOUND_PCM_READ_CHANNELS:
  2419. return put_user((s->fmt & ((file->f_mode & FMODE_READ) ? (ESS_FMT_STEREO << ESS_ADC_SHIFT) 
  2420.    : (ESS_FMT_STEREO << ESS_DAC_SHIFT))) ? 2 : 1, (int *)arg);
  2421.         case SOUND_PCM_READ_BITS:
  2422. return put_user((s->fmt & ((file->f_mode & FMODE_READ) ? (ESS_FMT_16BIT << ESS_ADC_SHIFT) 
  2423.    : (ESS_FMT_16BIT << ESS_DAC_SHIFT))) ? 16 : 8, (int *)arg);
  2424.         case SOUND_PCM_WRITE_FILTER:
  2425.         case SNDCTL_DSP_SETSYNCRO:
  2426.         case SOUND_PCM_READ_FILTER:
  2427.                 return -EINVAL;
  2428. }
  2429. return -EINVAL;
  2430. }
  2431. static void
  2432. set_base_registers(struct ess_state *s,void *vaddr)
  2433. {
  2434. unsigned long packed_phys = virt_to_bus(vaddr)>>12;
  2435. wave_set_register(s, 0x01FC , packed_phys);
  2436. wave_set_register(s, 0x01FD , packed_phys);
  2437. wave_set_register(s, 0x01FE , packed_phys);
  2438. wave_set_register(s, 0x01FF , packed_phys);
  2439. }
  2440. /* 
  2441.  * this guy makes sure we're in the right power
  2442.  * state for what we want to be doing 
  2443.  */
  2444. static void maestro_power(struct ess_card *card, int tostate)
  2445. {
  2446. u16 active_mask = acpi_state_mask[tostate];
  2447. u8 state;
  2448. if(!use_pm) return;
  2449. pci_read_config_byte(card->pcidev, card->power_regs+0x4, &state);
  2450. state&=3;
  2451. /* make sure we're in the right state */
  2452. if(state != tostate) {
  2453. M_printk(KERN_WARNING "maestro: dev %02x:%02x.%x switching from D%d to D%dn",
  2454. card->pcidev->bus->number, 
  2455. PCI_SLOT(card->pcidev->devfn),
  2456. PCI_FUNC(card->pcidev->devfn),
  2457. state,tostate);
  2458. pci_write_config_byte(card->pcidev, card->power_regs+0x4, tostate);
  2459. }
  2460. /* and make sure the units we care about are on 
  2461. XXX we might want to do this before state flipping? */
  2462. pci_write_config_word(card->pcidev, 0x54, ~ active_mask);
  2463. pci_write_config_word(card->pcidev, 0x56, ~ active_mask);
  2464. }
  2465. /* we allocate a large power of two for all our memory.
  2466. this is cut up into (not to scale :):
  2467. |silly fifo word | 512byte mixbuf per adc | dac/adc * channels |
  2468. */
  2469. static int
  2470. allocate_buffers(struct ess_state *s)
  2471. {
  2472. void *rawbuf=NULL;
  2473. int order,i;
  2474. struct page *page, *pend;
  2475. /* alloc as big a chunk as we can */
  2476. for (order = (dsps_order + (16-PAGE_SHIFT) + 1); order >= (dsps_order + 2 + 1); order--)
  2477. if((rawbuf = (void *)__get_free_pages(GFP_KERNEL|GFP_DMA, order)))
  2478. break;
  2479. if (!rawbuf)
  2480. return 1;
  2481. M_printk("maestro: allocated %ld (%d) bytes at %pn",PAGE_SIZE<<order,order, rawbuf);
  2482. if ((virt_to_bus(rawbuf) + (PAGE_SIZE << order) - 1) & ~((1<<28)-1))  {
  2483. printk(KERN_ERR "maestro: DMA buffer beyond 256MB! busaddr 0x%lx  size %ldn",
  2484. virt_to_bus(rawbuf), PAGE_SIZE << order);
  2485. kfree(rawbuf);
  2486. return 1;
  2487. }
  2488. s->card->dmapages = rawbuf;
  2489. s->card->dmaorder = order;
  2490. for(i=0;i<NR_DSPS;i++) {
  2491. struct ess_state *ess = &s->card->channels[i];
  2492. if(ess->dev_audio == -1)
  2493. continue;
  2494. ess->dma_dac.ready = s->dma_dac.mapped = 0;
  2495. ess->dma_adc.ready = s->dma_adc.mapped = 0;
  2496. ess->dma_adc.buforder = ess->dma_dac.buforder = order - 1 - dsps_order - 1;
  2497. /* offset dac and adc buffers starting half way through and then at each [da][ad]c's
  2498. order's intervals.. */
  2499. ess->dma_dac.rawbuf = rawbuf + (PAGE_SIZE<<(order-1)) + (i * ( PAGE_SIZE << (ess->dma_dac.buforder + 1 )));
  2500. ess->dma_adc.rawbuf = ess->dma_dac.rawbuf + ( PAGE_SIZE << ess->dma_dac.buforder);
  2501. /* offset mixbuf by a mixbuf so that the lame status fifo can
  2502. happily scribble away.. */ 
  2503. ess->mixbuf = rawbuf + (512 * (i+1));
  2504. M_printk("maestro: setup apu %d: dac: %p adc: %p mix: %pn",i,ess->dma_dac.rawbuf,
  2505. ess->dma_adc.rawbuf, ess->mixbuf);
  2506. }
  2507. /* now mark the pages as reserved; otherwise remap_page_range doesn't do what we want */
  2508. pend = virt_to_page(rawbuf + (PAGE_SIZE << order) - 1);
  2509. for (page = virt_to_page(rawbuf); page <= pend; page++)
  2510. mem_map_reserve(page);
  2511. return 0;
  2512. static void
  2513. free_buffers(struct ess_state *s)
  2514. {
  2515. struct page *page, *pend;
  2516. s->dma_dac.rawbuf = s->dma_adc.rawbuf = NULL;
  2517. s->dma_dac.mapped = s->dma_adc.mapped = 0;
  2518. s->dma_dac.ready = s->dma_adc.ready = 0;
  2519. M_printk("maestro: freeing %pn",s->card->dmapages);
  2520. /* undo marking the pages as reserved */
  2521. pend = virt_to_page(s->card->dmapages + (PAGE_SIZE << s->card->dmaorder) - 1);
  2522. for (page = virt_to_page(s->card->dmapages); page <= pend; page++)
  2523. mem_map_unreserve(page);
  2524. free_pages((unsigned long)s->card->dmapages,s->card->dmaorder);
  2525. s->card->dmapages = NULL;
  2526. }
  2527. static int 
  2528. ess_open(struct inode *inode, struct file *file)
  2529. {
  2530. int minor = MINOR(inode->i_rdev);
  2531. struct ess_state *s = NULL;
  2532. unsigned char fmtm = ~0, fmts = 0;
  2533. struct pci_dev *pdev;
  2534. /*
  2535.  * Scan the cards and find the channel. We only
  2536.  * do this at open time so it is ok
  2537.  */
  2538. pci_for_each_dev(pdev) {
  2539. struct ess_card *c;
  2540. struct pci_driver *drvr;
  2541. drvr = pci_dev_driver (pdev);
  2542. if (drvr == &maestro_pci_driver) {
  2543. int i;
  2544. struct ess_state *sp;
  2545. c = (struct ess_card*)pci_get_drvdata (pdev);
  2546. if (!c)
  2547. continue;
  2548. for(i=0;i<NR_DSPS;i++)
  2549. {
  2550. sp=&c->channels[i];
  2551. if(sp->dev_audio < 0)
  2552. continue;
  2553. if((sp->dev_audio ^ minor) & ~0xf)
  2554. continue;
  2555. s=sp;
  2556. }
  2557. }
  2558. }
  2559. if (!s)
  2560. return -ENODEV;
  2561.         VALIDATE_STATE(s);
  2562. file->private_data = s;
  2563. /* wait for device to become free */
  2564. down(&s->open_sem);
  2565. while (s->open_mode & file->f_mode) {
  2566. if (file->f_flags & O_NONBLOCK) {
  2567. up(&s->open_sem);
  2568. return -EWOULDBLOCK;
  2569. }
  2570. up(&s->open_sem);
  2571. interruptible_sleep_on(&s->open_wait);
  2572. if (signal_pending(current))
  2573. return -ERESTARTSYS;
  2574. down(&s->open_sem);
  2575. }
  2576. /* under semaphore.. */
  2577. if ((s->card->dmapages==NULL) && allocate_buffers(s)) {
  2578. up(&s->open_sem);
  2579. return -ENOMEM;
  2580. }
  2581. /* we're covered by the open_sem */
  2582. if( ! s->card->dsps_open )  {
  2583. maestro_power(s->card,ACPI_D0);
  2584. start_bob(s);
  2585. }
  2586. s->card->dsps_open++;
  2587. M_printk("maestro: open, %d bobs nown",s->card->dsps_open);
  2588. /* ok, lets write WC base regs now that we've 
  2589. powered up the chip */
  2590. M_printk("maestro: writing 0x%lx (bus 0x%lx) to the wpn",virt_to_bus(s->card->dmapages),
  2591. ((virt_to_bus(s->card->dmapages))&0xFFE00000)>>12);
  2592. set_base_registers(s,s->card->dmapages);
  2593. if (file->f_mode & FMODE_READ) {
  2594. /*
  2595. fmtm &= ~((ESS_FMT_STEREO | ESS_FMT_16BIT) << ESS_ADC_SHIFT);
  2596. if ((minor & 0xf) == SND_DEV_DSP16)
  2597. fmts |= ESS_FMT_16BIT << ESS_ADC_SHIFT; */
  2598. fmtm &= ~((ESS_FMT_STEREO|ESS_FMT_16BIT) << ESS_ADC_SHIFT);
  2599. fmts = (ESS_FMT_STEREO|ESS_FMT_16BIT) << ESS_ADC_SHIFT;
  2600. s->dma_adc.ossfragshift = s->dma_adc.ossmaxfrags = s->dma_adc.subdivision = 0;
  2601. set_adc_rate(s, 8000);
  2602. }
  2603. if (file->f_mode & FMODE_WRITE) {
  2604. fmtm &= ~((ESS_FMT_STEREO | ESS_FMT_16BIT) << ESS_DAC_SHIFT);
  2605. if ((minor & 0xf) == SND_DEV_DSP16)
  2606. fmts |= ESS_FMT_16BIT << ESS_DAC_SHIFT;
  2607. s->dma_dac.ossfragshift = s->dma_dac.ossmaxfrags = s->dma_dac.subdivision = 0;
  2608. set_dac_rate(s, 8000);
  2609. }
  2610. set_fmt(s, fmtm, fmts);
  2611. s->open_mode |= file->f_mode & (FMODE_READ | FMODE_WRITE);
  2612. up(&s->open_sem);
  2613. return 0;
  2614. }
  2615. static int 
  2616. ess_release(struct inode *inode, struct file *file)
  2617. {
  2618. struct ess_state *s = (struct ess_state *)file->private_data;
  2619. VALIDATE_STATE(s);
  2620. lock_kernel();
  2621. if (file->f_mode & FMODE_WRITE)
  2622. drain_dac(s, file->f_flags & O_NONBLOCK);
  2623. down(&s->open_sem);
  2624. if (file->f_mode & FMODE_WRITE) {
  2625. stop_dac(s);
  2626. }
  2627. if (file->f_mode & FMODE_READ) {
  2628. stop_adc(s);
  2629. }
  2630. s->open_mode &= (~file->f_mode) & (FMODE_READ|FMODE_WRITE);
  2631. /* we're covered by the open_sem */
  2632. M_printk("maestro: %d dsps now aliven",s->card->dsps_open-1);
  2633. if( --s->card->dsps_open <= 0) {
  2634. s->card->dsps_open = 0;
  2635. stop_bob(s);
  2636. free_buffers(s);
  2637. maestro_power(s->card,ACPI_D2);
  2638. }
  2639. up(&s->open_sem);
  2640. wake_up(&s->open_wait);
  2641. unlock_kernel();
  2642. return 0;
  2643. }
  2644. static struct file_operations ess_audio_fops = {
  2645. owner: THIS_MODULE,
  2646. llseek:         no_llseek,
  2647. read:           ess_read,
  2648. write:          ess_write,
  2649. poll:           ess_poll,
  2650. ioctl:          ess_ioctl,
  2651. mmap:           ess_mmap,
  2652. open:           ess_open,
  2653. release:        ess_release,
  2654. };
  2655. static int
  2656. maestro_config(struct ess_card *card) 
  2657. {
  2658. struct pci_dev *pcidev = card->pcidev;
  2659. struct ess_state *ess = &card->channels[0];
  2660. int apu,iobase  = card->iobase;
  2661. u16 w;
  2662. u32 n;
  2663. /* We used to muck around with pci config space that
  2664.  * we had no business messing with.  We don't know enough
  2665.  * about the machine to know which DMA mode is appropriate, 
  2666.  * etc.  We were guessing wrong on some machines and making
  2667.  * them unhappy.  We now trust in the BIOS to do things right,
  2668.  * which almost certainly means a new host of problems will
  2669.  * arise with broken BIOS implementations.  screw 'em. 
  2670.  * We're already intolerant of machines that don't assign
  2671.  * IRQs.
  2672.  */
  2673. /* do config work at full power */
  2674. maestro_power(card,ACPI_D0);
  2675.  
  2676. pci_read_config_word(pcidev, 0x50, &w);
  2677. w&=~(1<<5); /* Don't swap left/right (undoc)*/
  2678. pci_write_config_word(pcidev, 0x50, w);
  2679. pci_read_config_word(pcidev, 0x52, &w);
  2680. w&=~(1<<15); /* Turn off internal clock multiplier */
  2681. /* XXX how do we know which to use? */
  2682. w&=~(1<<14); /* External clock */
  2683. w|= (1<<7); /* Hardware volume control on */
  2684. w|= (1<<6); /* Debounce off: easier to push the HWV buttons. */
  2685. w&=~(1<<5); /* GPIO 4:5 */
  2686. w|= (1<<4);             /* Disconnect from the CHI.  Enabling this made a dell 7500 work. */
  2687. w&=~(1<<2); /* MIDI fix off (undoc) */
  2688. w&=~(1<<1); /* reserved, always write 0 */
  2689. pci_write_config_word(pcidev, 0x52, w);
  2690. /*
  2691.  * Legacy mode
  2692.  */
  2693. pci_read_config_word(pcidev, 0x40, &w);
  2694. w|=(1<<15); /* legacy decode off */
  2695. w&=~(1<<14); /* Disable SIRQ */
  2696. w&=~(0x1f); /* disable mpu irq/io, game port, fm, SB */
  2697.  
  2698. pci_write_config_word(pcidev, 0x40, w);
  2699. /* Set up 978 docking control chip. */
  2700. pci_read_config_word(pcidev, 0x58, &w);
  2701. w|=1<<2; /* Enable 978. */
  2702. w|=1<<3; /* Turn on 978 hardware volume control. */
  2703. w&=~(1<<11); /* Turn on 978 mixer volume control. */
  2704. pci_write_config_word(pcidev, 0x58, w);
  2705. sound_reset(iobase);
  2706. /*
  2707.  * Ring Bus Setup
  2708.  */
  2709. /* setup usual 0x34 stuff.. 0x36 may be chip specific */
  2710.         outw(0xC090, iobase+0x34); /* direct sound, stereo */
  2711.         udelay(20);
  2712.         outw(0x3000, iobase+0x36); /* direct sound, stereo */
  2713.         udelay(20);
  2714. /*
  2715.  * Reset the CODEC
  2716.  */
  2717.  
  2718. maestro_ac97_reset(iobase,pcidev);
  2719. /*
  2720.  * Ring Bus Setup
  2721.  */
  2722.    
  2723. n=inl(iobase+0x34);
  2724. n&=~0xF000;
  2725. n|=12<<12; /* Direct Sound, Stereo */
  2726. outl(n, iobase+0x34);
  2727. n=inl(iobase+0x34);
  2728. n&=~0x0F00; /* Modem off */
  2729. outl(n, iobase+0x34);
  2730. n=inl(iobase+0x34);
  2731. n&=~0x00F0;
  2732. n|=9<<4; /* DAC, Stereo */
  2733. outl(n, iobase+0x34);
  2734. n=inl(iobase+0x34);
  2735. n&=~0x000F; /* ASSP off */
  2736. outl(n, iobase+0x34);
  2737. n=inl(iobase+0x34);
  2738. n|=(1<<29); /* Enable ring bus */
  2739. outl(n, iobase+0x34);
  2740. n=inl(iobase+0x34);
  2741. n|=(1<<28); /* Enable serial bus */
  2742. outl(n, iobase+0x34);
  2743. n=inl(iobase+0x34);
  2744. n&=~0x00F00000; /* MIC off */
  2745. outl(n, iobase+0x34);
  2746. n=inl(iobase+0x34);
  2747. n&=~0x000F0000; /* I2S off */
  2748. outl(n, iobase+0x34);
  2749. w=inw(iobase+0x18);
  2750. w&=~(1<<7); /* ClkRun off */
  2751. outw(w, iobase+0x18);
  2752. w=inw(iobase+0x18);
  2753. w&=~(1<<6); /* Hardware volume control interrupt off... for now. */
  2754. outw(w, iobase+0x18);
  2755. w=inw(iobase+0x18);
  2756. w&=~(1<<4); /* ASSP irq off */
  2757. outw(w, iobase+0x18);
  2758. w=inw(iobase+0x18);
  2759. w&=~(1<<3); /* ISDN irq off */
  2760. outw(w, iobase+0x18);
  2761. w=inw(iobase+0x18);
  2762. w|=(1<<2); /* Direct Sound IRQ on */
  2763. outw(w, iobase+0x18);
  2764. w=inw(iobase+0x18);
  2765. w&=~(1<<1); /* MPU401 IRQ off */
  2766. outw(w, iobase+0x18);
  2767. w=inw(iobase+0x18);
  2768. w|=(1<<0); /* SB IRQ on */
  2769. outw(w, iobase+0x18);
  2770. /* Set hardware volume control registers to midpoints.
  2771.    We can tell which button was pushed based on how they change. */
  2772. outb(0x88, iobase+0x1c);
  2773. outb(0x88, iobase+0x1d);
  2774. outb(0x88, iobase+0x1e);
  2775. outb(0x88, iobase+0x1f);
  2776. /* it appears some maestros (dell 7500) only work if these are set,
  2777. regardless of wether we use the assp or not. */
  2778. outb(0, iobase+0xA4); 
  2779. outb(3, iobase+0xA2); 
  2780. outb(0, iobase+0xA6);
  2781. for(apu=0;apu<16;apu++)
  2782. {
  2783. /* Write 0 into the buffer area 0x1E0->1EF */
  2784. outw(0x01E0+apu, 0x10+iobase);
  2785. outw(0x0000, 0x12+iobase);
  2786. /*
  2787.  * The 1.10 test program seem to write 0 into the buffer area
  2788.  * 0x1D0-0x1DF too.
  2789.  */
  2790. outw(0x01D0+apu, 0x10+iobase);
  2791. outw(0x0000, 0x12+iobase);
  2792. }
  2793. #if 1
  2794. wave_set_register(ess, IDR7_WAVE_ROMRAM, 
  2795. (wave_get_register(ess, IDR7_WAVE_ROMRAM)&0xFF00));
  2796. wave_set_register(ess, IDR7_WAVE_ROMRAM,
  2797. wave_get_register(ess, IDR7_WAVE_ROMRAM)|0x100);
  2798. wave_set_register(ess, IDR7_WAVE_ROMRAM,
  2799. wave_get_register(ess, IDR7_WAVE_ROMRAM)&~0x200);
  2800. wave_set_register(ess, IDR7_WAVE_ROMRAM,
  2801. wave_get_register(ess, IDR7_WAVE_ROMRAM)|~0x400);
  2802. #else
  2803. maestro_write(ess, IDR7_WAVE_ROMRAM, 
  2804. (maestro_read(ess, IDR7_WAVE_ROMRAM)&0xFF00));
  2805. maestro_write(ess, IDR7_WAVE_ROMRAM,
  2806. maestro_read(ess, IDR7_WAVE_ROMRAM)|0x100);
  2807. maestro_write(ess, IDR7_WAVE_ROMRAM,
  2808. maestro_read(ess, IDR7_WAVE_ROMRAM)&~0x200);
  2809. maestro_write(ess, IDR7_WAVE_ROMRAM,
  2810. maestro_read(ess, IDR7_WAVE_ROMRAM)|0x400);
  2811. #endif
  2812. maestro_write(ess, IDR2_CRAM_DATA, 0x0000);
  2813. maestro_write(ess, 0x08, 0xB004);
  2814. /* Now back to the DirectSound stuff */
  2815. maestro_write(ess, 0x09, 0x001B);
  2816. maestro_write(ess, 0x0A, 0x8000);
  2817. maestro_write(ess, 0x0B, 0x3F37);
  2818. maestro_write(ess, 0x0C, 0x0098);
  2819. /* parallel out ?? */
  2820. maestro_write(ess, 0x0C, 
  2821. (maestro_read(ess, 0x0C)&~0xF000)|0x8000); 
  2822. /* parallel in, has something to do with recording :) */
  2823. maestro_write(ess, 0x0C, 
  2824. (maestro_read(ess, 0x0C)&~0x0F00)|0x0500);
  2825. maestro_write(ess, 0x0D, 0x7632);
  2826. /* Wave cache control on - test off, sg off, 
  2827. enable, enable extra chans 1Mb */
  2828. outw(inw(0x14+iobase)|(1<<8),0x14+iobase);
  2829. outw(inw(0x14+iobase)&0xFE03,0x14+iobase);
  2830. outw((inw(0x14+iobase)&0xFFFC), 0x14+iobase);
  2831. outw(inw(0x14+iobase)|(1<<7),0x14+iobase);
  2832. outw(0xA1A0, 0x14+iobase);      /* 0300 ? */
  2833. /* Now clear the APU control ram */
  2834. for(apu=0;apu<NR_APUS;apu++)
  2835. {
  2836. for(w=0;w<NR_APU_REGS;w++)
  2837. apu_set_register(ess, apu|ESS_CHAN_HARD, w, 0);
  2838. }
  2839. return 0;
  2840. }
  2841. /* this guy tries to find the pci power management
  2842.  * register bank.  this should really be in core
  2843.  * code somewhere.  1 on success. */
  2844. int
  2845. parse_power(struct ess_card *card, struct pci_dev *pcidev)
  2846. {
  2847. u32 n;
  2848. u16 w;
  2849. u8 next;
  2850. int max = 64;  /* an a 8bit guy pointing to 32bit guys
  2851. can only express so much. */
  2852. card->power_regs = 0;
  2853. /* check to see if we have a capabilities list in
  2854. the config register */
  2855. pci_read_config_word(pcidev, PCI_STATUS, &w);
  2856. if(! w & PCI_STATUS_CAP_LIST) return 0;
  2857. /* walk the list, starting at the head. */
  2858. pci_read_config_byte(pcidev,PCI_CAPABILITY_LIST,&next);
  2859. while(next && max--) {
  2860. pci_read_config_dword(pcidev, next & ~3, &n);
  2861. if((n & 0xff) == PCI_CAP_ID_PM) {
  2862. card->power_regs = next;
  2863. break;
  2864. }
  2865. next = ((n>>8) & 0xff);
  2866. }
  2867. return card->power_regs ? 1 : 0;
  2868. }
  2869. static int __init
  2870. maestro_probe(struct pci_dev *pcidev,const struct pci_device_id *pdid)
  2871. {
  2872. int card_type = pdid->driver_data;
  2873. u32 n;
  2874. int iobase;
  2875. int i, ret;
  2876. struct ess_card *card;
  2877. struct ess_state *ess;
  2878. struct pm_dev *pmdev;
  2879. int num = 0;
  2880. /* when built into the kernel, we only print version if device is found */
  2881. #ifndef MODULE
  2882. static int printed_version;
  2883. if (!printed_version++)
  2884. printk(version);
  2885. #endif
  2886. /* don't pick up weird modem maestros */
  2887. if(((pcidev->class >> 8) & 0xffff) != PCI_CLASS_MULTIMEDIA_AUDIO)
  2888. return -ENODEV;
  2889. if ((ret=pci_enable_device(pcidev)))
  2890. return ret;
  2891. iobase = pci_resource_start(pcidev,0);
  2892. if (!iobase || !(pci_resource_flags(pcidev, 0 ) & IORESOURCE_IO))
  2893. return -ENODEV;
  2894. if(pcidev->irq == 0)
  2895. return -ENODEV;
  2896. /* stake our claim on the iospace */
  2897. if( request_region(iobase, 256, card_names[card_type]) == NULL )
  2898. {
  2899. printk(KERN_WARNING "maestro: can't allocate 256 bytes I/O at 0x%4.4xn", iobase);
  2900. return -EBUSY;
  2901. }
  2902. /* just to be sure */
  2903. pci_set_master(pcidev);
  2904. card = kmalloc(sizeof(struct ess_card), GFP_KERNEL);
  2905. if(card == NULL)
  2906. {
  2907. printk(KERN_WARNING "maestro: out of memoryn");
  2908. release_region(iobase, 256);
  2909. return -ENOMEM;
  2910. }
  2911. memset(card, 0, sizeof(*card));
  2912. card->pcidev = pcidev;
  2913. pmdev = pm_register(PM_PCI_DEV, PM_PCI_ID(pcidev),
  2914. maestro_pm_callback);
  2915. if (pmdev)
  2916. pmdev->data = card;
  2917. card->iobase = iobase;
  2918. card->card_type = card_type;
  2919. card->irq = pcidev->irq;
  2920. card->magic = ESS_CARD_MAGIC;
  2921. spin_lock_init(&card->lock);
  2922. init_waitqueue_head(&card->suspend_queue);
  2923. card->dock_mute_vol = 50;
  2924. /* init our groups of 6 apus */
  2925. for(i=0;i<NR_DSPS;i++)
  2926. {
  2927. struct ess_state *s=&card->channels[i];
  2928. s->index = i;
  2929. s->card = card;
  2930. init_waitqueue_head(&s->dma_adc.wait);
  2931. init_waitqueue_head(&s->dma_dac.wait);
  2932. init_waitqueue_head(&s->open_wait);
  2933. spin_lock_init(&s->lock);
  2934. init_MUTEX(&s->open_sem);
  2935. s->magic = ESS_STATE_MAGIC;
  2936. s->apu[0] = 6*i;
  2937. s->apu[1] = (6*i)+1;
  2938. s->apu[2] = (6*i)+2;
  2939. s->apu[3] = (6*i)+3;
  2940. s->apu[4] = (6*i)+4;
  2941. s->apu[5] = (6*i)+5;
  2942. if(s->dma_adc.ready || s->dma_dac.ready || s->dma_adc.rawbuf)
  2943. printk("maestro: BOTCH!n");
  2944. /* register devices */
  2945. if ((s->dev_audio = register_sound_dsp(&ess_audio_fops, -1)) < 0)
  2946. break;
  2947. }
  2948. num = i;
  2949. /* clear the rest if we ran out of slots to register */
  2950. for(;i<NR_DSPS;i++)
  2951. {
  2952. struct ess_state *s=&card->channels[i];
  2953. s->dev_audio = -1;
  2954. }
  2955. ess = &card->channels[0];
  2956. /*
  2957.  * Ok card ready. Begin setup proper
  2958.  */
  2959. printk(KERN_INFO "maestro: Configuring %s found at IO 0x%04X IRQ %dn", 
  2960. card_names[card_type],iobase,card->irq);
  2961. pci_read_config_dword(pcidev, PCI_SUBSYSTEM_VENDOR_ID, &n);
  2962. printk(KERN_INFO "maestro:  subvendor id: 0x%08xn",n); 
  2963. /* turn off power management unless:
  2964.  * - the user explicitly asks for it
  2965.  *  or
  2966.  * - we're not a 2e, lesser chipps seem to have problems.
  2967.  * - we're not on our _very_ small whitelist.  some implemenetations
  2968.  * really dont' like the pm code, others require it.
  2969.  * feel free to expand this as required.
  2970.  */
  2971. #define SUBSYSTEM_VENDOR(x) (x&0xffff)
  2972. if( (use_pm != 1) && 
  2973. ((card_type != TYPE_MAESTRO2E) || (SUBSYSTEM_VENDOR(n) != 0x1028)))
  2974. use_pm = 0;
  2975. if(!use_pm) 
  2976. printk(KERN_INFO "maestro: not attempting power management.n");
  2977. else {
  2978. if(!parse_power(card,pcidev)) 
  2979. printk(KERN_INFO "maestro: no PCI power management interface found.n");
  2980. else {
  2981. pci_read_config_dword(pcidev, card->power_regs, &n);
  2982. printk(KERN_INFO "maestro: PCI power management capability: 0x%xn",n>>16);
  2983. }
  2984. }
  2985. maestro_config(card);
  2986. if(maestro_ac97_get(card, 0x00)==0x0080) {
  2987. printk(KERN_ERR "maestro: my goodness!  you seem to have a pt101 codec, which is quite rare.n"
  2988. "tyou should tell someone about this.n");
  2989. } else {
  2990. maestro_ac97_init(card);
  2991. }
  2992. if ((card->dev_mixer = register_sound_mixer(&ess_mixer_fops, -1)) < 0) {
  2993. printk("maestro: couldn't register mixer!n");
  2994. } else {
  2995. memcpy(card->mix.mixer_state,mixer_defaults,sizeof(card->mix.mixer_state));
  2996. mixer_push_state(card);
  2997. }
  2998. if((ret=request_irq(card->irq, ess_interrupt, SA_SHIRQ, card_names[card_type], card)))
  2999. {
  3000. printk(KERN_ERR "maestro: unable to allocate irq %d,n", card->irq);
  3001. unregister_sound_mixer(card->dev_mixer);
  3002. for(i=0;i<NR_DSPS;i++)
  3003. {
  3004. struct ess_state *s = &card->channels[i];
  3005. if(s->dev_audio != -1)
  3006. unregister_sound_dsp(s->dev_audio);
  3007. }
  3008. release_region(card->iobase, 256);
  3009. unregister_reboot_notifier(&maestro_nb);
  3010. kfree(card);
  3011. return ret;
  3012. }
  3013. /* Turn on hardware volume control interrupt.
  3014.    This has to come after we grab the IRQ above,
  3015.    or a crash will result on installation if a button has been pressed,
  3016.    because in that case we'll get an immediate interrupt. */
  3017. n = inw(iobase+0x18);
  3018. n|=(1<<6);
  3019. outw(n, iobase+0x18);
  3020. pci_set_drvdata(pcidev,card);
  3021. /* now go to sleep 'till something interesting happens */
  3022. maestro_power(card,ACPI_D2);
  3023. printk(KERN_INFO "maestro: %d channels configured.n", num);
  3024. return 0;
  3025. }
  3026. static void maestro_remove(struct pci_dev *pcidev) {
  3027. struct ess_card *card = pci_get_drvdata(pcidev);
  3028. int i;
  3029. /* XXX maybe should force stop bob, but should be all 
  3030. stopped by _release by now */
  3031. free_irq(card->irq, card);
  3032. unregister_sound_mixer(card->dev_mixer);
  3033. for(i=0;i<NR_DSPS;i++)
  3034. {
  3035. struct ess_state *ess = &card->channels[i];
  3036. if(ess->dev_audio != -1)
  3037. unregister_sound_dsp(ess->dev_audio);
  3038. }
  3039. /* Goodbye, Mr. Bond. */
  3040. maestro_power(card,ACPI_D3);
  3041.   release_region(card->iobase, 256);
  3042. kfree(card);
  3043. pci_set_drvdata(pcidev,NULL);
  3044. }
  3045. static struct pci_device_id maestro_pci_tbl[] __devinitdata = {
  3046. {PCI_VENDOR_ESS, PCI_DEVICE_ID_ESS_ESS1968, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_MAESTRO2},
  3047. {PCI_VENDOR_ESS, PCI_DEVICE_ID_ESS_ESS1978, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_MAESTRO2E},
  3048. {PCI_VENDOR_ESS_OLD, PCI_DEVICE_ID_ESS_ESS0100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, TYPE_MAESTRO},
  3049. {0,}
  3050. };
  3051. MODULE_DEVICE_TABLE(pci, maestro_pci_tbl);
  3052. static struct pci_driver maestro_pci_driver = {
  3053. name:"maestro",
  3054. id_table:maestro_pci_tbl,
  3055. probe:maestro_probe,
  3056. remove:maestro_remove,
  3057. };
  3058. int __init init_maestro(void)
  3059. {
  3060. int rc;
  3061. rc = pci_module_init(&maestro_pci_driver);
  3062. if (rc < 0)
  3063. return rc;
  3064. if (register_reboot_notifier(&maestro_nb))
  3065. printk(KERN_WARNING "maestro: reboot notifier registration failed; may not reboot properly.n");
  3066. #ifdef MODULE
  3067. printk(version);
  3068. #endif
  3069. if (dsps_order < 0)   {
  3070. dsps_order = 1;
  3071. printk(KERN_WARNING "maestro: clipping dsps_order to %dn",dsps_order);
  3072. }
  3073. else if (dsps_order > MAX_DSP_ORDER)  {
  3074. dsps_order = MAX_DSP_ORDER;
  3075. printk(KERN_WARNING "maestro: clipping dsps_order to %dn",dsps_order);
  3076. }
  3077. return 0;
  3078. }
  3079. static int maestro_notifier(struct notifier_block *nb, unsigned long event, void *buf)
  3080. {
  3081. /* this notifier is called when the kernel is really shut down. */
  3082. M_printk("maestro: shutting downn");
  3083. /* this will remove all card instances too */
  3084. pci_unregister_driver(&maestro_pci_driver);
  3085. /* XXX dunno about power management */
  3086. return NOTIFY_OK;
  3087. }
  3088. /* --------------------------------------------------------------------- */
  3089. void cleanup_maestro(void) {
  3090. M_printk("maestro: unloadingn");
  3091. pci_unregister_driver(&maestro_pci_driver);
  3092. pm_unregister_all(maestro_pm_callback);
  3093. unregister_reboot_notifier(&maestro_nb);
  3094. }
  3095. /* --------------------------------------------------------------------- */
  3096. void
  3097. check_suspend(struct ess_card *card)
  3098. {
  3099. DECLARE_WAITQUEUE(wait, current);
  3100. if(!card->in_suspend) return;
  3101. card->in_suspend++;
  3102. add_wait_queue(&(card->suspend_queue), &wait);
  3103. current->state = TASK_UNINTERRUPTIBLE;
  3104. schedule();
  3105. remove_wait_queue(&(card->suspend_queue), &wait);
  3106. current->state = TASK_RUNNING;
  3107. }
  3108. static int 
  3109. maestro_suspend(struct ess_card *card)
  3110. {
  3111. unsigned long flags;
  3112. int i,j;
  3113. save_flags(flags); 
  3114. cli(); /* over-kill */
  3115. M_printk("maestro: apm in dev %pn",card);
  3116. /* we have to read from the apu regs, need
  3117. to power it up */
  3118. maestro_power(card,ACPI_D0);
  3119. for(i=0;i<NR_DSPS;i++) {
  3120. struct ess_state *s = &card->channels[i];
  3121. if(s->dev_audio == -1)
  3122. continue;
  3123. M_printk("maestro: stopping apus for device %dn",i);
  3124. stop_dac(s);
  3125. stop_adc(s);
  3126. for(j=0;j<6;j++) 
  3127. card->apu_map[s->apu[j]][5]=apu_get_register(s,j,5);
  3128. }
  3129. /* get rid of interrupts? */
  3130. if( card->dsps_open > 0)
  3131. stop_bob(&card->channels[0]);
  3132. card->in_suspend++;
  3133. restore_flags(flags);
  3134. /* we trust in the bios to power down the chip on suspend.
  3135.  * XXX I'm also not sure that in_suspend will protect
  3136.  * against all reg accesses from here on out. 
  3137.  */
  3138. return 0;
  3139. }
  3140. static int 
  3141. maestro_resume(struct ess_card *card)
  3142. {
  3143. unsigned long flags;
  3144. int i;
  3145. save_flags(flags);
  3146. cli(); /* over-kill */
  3147. card->in_suspend = 0;
  3148. M_printk("maestro: resuming card at %pn",card);
  3149. /* restore all our config */
  3150. maestro_config(card);
  3151. /* need to restore the base pointers.. */ 
  3152. if(card->dmapages) 
  3153. set_base_registers(&card->channels[0],card->dmapages);
  3154. mixer_push_state(card);
  3155. /* set each channels' apu control registers before
  3156.  * restoring audio 
  3157.  */
  3158. for(i=0;i<NR_DSPS;i++) {
  3159. struct ess_state *s = &card->channels[i];
  3160. int chan,reg;
  3161. if(s->dev_audio == -1)
  3162. continue;
  3163. for(chan = 0 ; chan < 6 ; chan++) {
  3164. wave_set_register(s,s->apu[chan]<<3,s->apu_base[chan]);
  3165. for(reg = 1 ; reg < NR_APU_REGS ; reg++)  
  3166. apu_set_register(s,chan,reg,s->card->apu_map[s->apu[chan]][reg]);
  3167. }
  3168. for(chan = 0 ; chan < 6 ; chan++)  
  3169. apu_set_register(s,chan,0,s->card->apu_map[s->apu[chan]][0] & 0xFF0F);
  3170. }
  3171. /* now we flip on the music */
  3172. if( card->dsps_open <= 0) {
  3173. /* this card's idle */
  3174. maestro_power(card,ACPI_D2);
  3175. } else {
  3176. /* ok, we're actually playing things on
  3177. this card */
  3178. maestro_power(card,ACPI_D0);
  3179. start_bob(&card->channels[0]);
  3180. for(i=0;i<NR_DSPS;i++) {
  3181. struct ess_state *s = &card->channels[i];
  3182. /* these use the apu_mode, and can handle
  3183. spurious calls */
  3184. start_dac(s);
  3185. start_adc(s);
  3186. }
  3187. }
  3188. restore_flags(flags);
  3189. /* all right, we think things are ready, 
  3190. wake up people who were using the device
  3191. when we suspended */
  3192. wake_up(&(card->suspend_queue));
  3193. return 0;
  3194. }
  3195. int 
  3196. maestro_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *data) 
  3197. {
  3198. struct ess_card *card = (struct ess_card*) dev->data;
  3199. if ( ! card ) goto out;
  3200. M_printk("maestro: pm event 0x%x received for card %pn", rqst, card);
  3201. switch (rqst) {
  3202. case PM_SUSPEND: 
  3203. maestro_suspend(card);
  3204. break;
  3205. case PM_RESUME: 
  3206. maestro_resume(card);
  3207. break;
  3208. /*
  3209.  * we'd also like to find out about
  3210.  * power level changes because some biosen
  3211.  * do mean things to the maestro when they
  3212.  * change their power state.
  3213.  */
  3214.         }
  3215. out:
  3216. return 0;
  3217. }
  3218. module_init(init_maestro);
  3219. module_exit(cleanup_maestro);