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

嵌入式Linux

开发平台:

Unix_Linux

  1. #undef FKS_LOGGING
  2. #undef FKS_TEST
  3. /*
  4.  * tabs should be 4 spaces, in vi(m): set tabstop=4
  5.  *
  6.  * TODO:  consistency speed calculations!!
  7.  * cleanup!
  8.  * ????: Did I break MIDI support?
  9.  *
  10.  * History:
  11.  *
  12.  * Rolf Fokkens  (Dec 20 1998): ES188x recording level support on a per
  13.  * fokkensr@vertis.nl input basis.
  14.  *  (Dec 24 1998): Recognition of ES1788, ES1887, ES1888,
  15.  * ES1868, ES1869 and ES1878. Could be used for
  16.  * specific handling in the future. All except
  17.  * ES1887 and ES1888 and ES688 are handled like
  18.  * ES1688.
  19.  *  (Dec 27 1998): RECLEV for all (?) ES1688+ chips. ES188x now
  20.  * have the "Dec 20" support + RECLEV
  21.  *  (Jan  2 1999): Preparation for Full Duplex. This means
  22.  * Audio 2 is now used for playback when dma16
  23.  * is specified. The next step would be to use
  24.  * Audio 1 and Audio 2 at the same time.
  25.  *  (Jan  9 1999): Put all ESS stuff into sb_ess.[ch], this
  26.  * includes both the ESS stuff that has been in
  27.  * sb_*[ch] before I touched it and the ESS support
  28.  * I added later
  29.  *  (Jan 23 1999): Full Duplex seems to work. I wrote a small
  30.  * test proggy which works OK. Haven't found
  31.  * any applications to test it though. So why did
  32.  * I bother to create it anyway?? :) Just for
  33.  * fun.
  34.  *  (May  2 1999): I tried to be too smart by "introducing"
  35.  * ess_calc_best_speed (). The idea was that two
  36.  * dividers could be used to setup a samplerate,
  37.  * ess_calc_best_speed () would choose the best.
  38.  * This works for playback, but results in
  39.  * recording problems for high samplerates. I
  40.  * fixed this by removing ess_calc_best_speed ()
  41.  * and just doing what the documentation says. 
  42.  * Andy Sloane   (Jun  4 1999): Stole some code from ALSA to fix the playback
  43.  * andy@guildsoftware.com speed on ES1869, ES1879, ES1887, and ES1888.
  44.  *  1879's were previously ignored by this driver;
  45.  *  added (untested) support for those.
  46.  * Cvetan Ivanov (Oct 27 1999): Fixed ess_dsp_init to call ess_set_dma_hw for
  47.  * zezo@inet.bg _ALL_ ESS models, not only ES1887
  48.  *
  49.  * This files contains ESS chip specifics. It's based on the existing ESS
  50.  * handling as it resided in sb_common.c, sb_mixer.c and sb_audio.c. This
  51.  * file adds features like:
  52.  * - Chip Identification (as shown in /proc/sound)
  53.  * - RECLEV support for ES1688 and later
  54.  * - 6 bits playback level support chips later than ES1688
  55.  * - Recording level support on a per-device basis for ES1887
  56.  * - Full-Duplex for ES1887
  57.  *
  58.  * Full duplex is enabled by specifying dma16. While the normal dma must
  59.  * be one of 0, 1 or 3, dma16 can be one of 0, 1, 3 or 5. DMA 5 is a 16 bit
  60.  * DMA channel, while the others are 8 bit..
  61.  *
  62.  * ESS detection isn't full proof (yet). If it fails an additional module
  63.  * parameter esstype can be specified to be one of the following:
  64.  * -1, 0, 688, 1688, 1868, 1869, 1788, 1887, 1888
  65.  * -1 means: mimic 2.0 behaviour, 
  66.  *  0 means: auto detect.
  67.  *   others: explicitly specify chip
  68.  * -1 is default, cause auto detect still doesn't work.
  69.  */
  70. /*
  71.  * About the documentation
  72.  *
  73.  * I don't know if the chips all are OK, but the documentation is buggy. 'cause
  74.  * I don't have all the cips myself, there's a lot I cannot verify. I'll try to
  75.  * keep track of my latest insights about his here. If you have additional info,
  76.  * please enlighten me (fokkensr@vertis.nl)!
  77.  *
  78.  * I had the impression that ES1688 also has 6 bit master volume control. The
  79.  * documentation about ES1888 (rev C, october '95) claims that ES1888 has
  80.  * the following features ES1688 doesn't have:
  81.  * - 6 bit master volume
  82.  * - Full Duplex
  83.  * So ES1688 apparently doesn't have 6 bit master volume control, but the
  84.  * ES1688 does have RECLEV control. Makes me wonder: does ES688 have it too?
  85.  * Without RECLEV ES688 won't be much fun I guess.
  86.  *
  87.  * From the ES1888 (rev C, october '95) documentation I got the impression
  88.  * that registers 0x68 to 0x6e don't exist which means: no recording volume
  89.  * controls. To my surprise the ES888 documentation (1/14/96) claims that
  90.  * ES888 does have these record mixer registers, but that ES1888 doesn't have
  91.  * 0x69 and 0x6b. So the rest should be there.
  92.  *
  93.  * I'm trying to get ES1887 Full Duplex. Audio 2 is playback only, while Audio 2
  94.  * is both record and playback. I think I should use Audio 2 for all playback.
  95.  *
  96.  * The documentation is an adventure: it's close but not fully accurate. I
  97.  * found out that after a reset some registers are *NOT* reset, though the
  98.  * docs say the would be. Interresting ones are 0x7f, 0x7d and 0x7a. They are
  99.  * related to the Audio 2 channel. I also was suprised about the consequenses
  100.  * of writing 0x00 to 0x7f (which should be done by reset): The ES1887 moves
  101.  * into ES1888 mode. This means that it claims IRQ 11, which happens to be my
  102.  * ISDN adapter. Needless to say it no longer worked. I now understand why
  103.  * after rebooting 0x7f already was 0x05, the value of my choice: the BIOS
  104.  * did it.
  105.  *
  106.  * Oh, and this is another trap: in ES1887 docs mixer register 0x70 is decribed
  107.  * as if it's exactly the same as register 0xa1. This is *NOT* true. The
  108.  * description of 0x70 in ES1869 docs is accurate however.
  109.  * Well, the assumption about ES1869 was wrong: register 0x70 is very much
  110.  * like register 0xa1, except that bit 7 is allways 1, whatever you want
  111.  * it to be.
  112.  *
  113.  * When using audio 2 mixer register 0x72 seems te be meaningless. Only 0xa2
  114.  * has effect.
  115.  *
  116.  * Software reset not being able to reset all registers is great! Especially
  117.  * the fact that register 0x78 isn't reset is great when you wanna change back
  118.  * to single dma operation (simplex): audio 2 is still operation, and uses the
  119.  * same dma as audio 1: your ess changes into a funny echo machine.
  120.  *
  121.  * Received the new that ES1688 is detected as a ES1788. Did some thinking:
  122.  * the ES1887 detection scheme suggests in step 2 to try if bit 3 of register
  123.  * 0x64 can be changed. This is inaccurate, first I inverted the * check: "If
  124.  * can be modified, it's a 1688", which lead to a correct detection
  125.  * of my ES1887. It resulted however in bad detection of 1688 (reported by mail)
  126.  * and 1868 (if no PnP detection first): they result in a 1788 being detected.
  127.  * I don't have docs on 1688, but I do have docs on 1868: The documentation is
  128.  * probably inaccurate in the fact that I should check bit 2, not bit 3. This
  129.  * is what I do now.
  130.  */
  131. /*
  132.  * About recognition of ESS chips
  133.  *
  134.  * The distinction of ES688, ES1688, ES1788, ES1887 and ES1888 is described in
  135.  * a (preliminary ??) datasheet on ES1887. It's aim is to identify ES1887, but
  136.  * during detection the text claims that "this chip may be ..." when a step
  137.  * fails. This scheme is used to distinct between the above chips.
  138.  * It appears however that some PnP chips like ES1868 are recognized as ES1788
  139.  * by the ES1887 detection scheme. These PnP chips can be detected in another
  140.  * way however: ES1868, ES1869 and ES1878 can be recognized (full proof I think)
  141.  * by repeatedly reading mixer register 0x40. This is done by ess_identify in
  142.  * sb_common.c.
  143.  * This results in the following detection steps:
  144.  * - distinct between ES688 and ES1688+ (as always done in this driver)
  145.  *   if ES688 we're ready
  146.  * - try to detect ES1868, ES1869 or ES1878
  147.  *   if successful we're ready
  148.  * - try to detect ES1888, ES1887 or ES1788
  149.  *   if successful we're ready
  150.  * - Dunno. Must be 1688. Will do in general
  151.  *
  152.  * About RECLEV support:
  153.  *
  154.  * The existing ES1688 support didn't take care of the ES1688+ recording
  155.  * levels very well. Whenever a device was selected (recmask) for recording
  156.  * it's recording level was loud, and it couldn't be changed. The fact that
  157.  * internal register 0xb4 could take care of RECLEV, didn't work meaning until
  158.  * it's value was restored every time the chip was reset; this reset the
  159.  * value of 0xb4 too. I guess that's what 4front also had (have?) trouble with.
  160.  *
  161.  * About ES1887 support:
  162.  *
  163.  * The ES1887 has separate registers to control the recording levels, for all
  164.  * inputs. The ES1887 specific software makes these levels the same as their
  165.  * corresponding playback levels, unless recmask says they aren't recorded. In
  166.  * the latter case the recording volumes are 0.
  167.  * Now recording levels of inputs can be controlled, by changing the playback
  168.  * levels. Futhermore several devices can be recorded together (which is not
  169.  * possible with the ES1688.
  170.  * Besides the separate recording level control for each input, the common
  171.  * recordig level can also be controlled by RECLEV as described above.
  172.  *
  173.  * Not only ES1887 have this recording mixer. I know the following from the
  174.  * documentation:
  175.  * ES688 no
  176.  * ES1688 no
  177.  * ES1868 no
  178.  * ES1869 yes
  179.  * ES1878 no
  180.  * ES1879 yes
  181.  * ES1888 no/yes Contradicting documentation; most recent: yes
  182.  * ES1946 yes This is a PCI chip; not handled by this driver
  183.  */
  184. #include <linux/delay.h>
  185. #include <linux/spinlock.h>
  186. #include "sound_config.h"
  187. #include "sb_mixer.h"
  188. #include "sb.h"
  189. #include "sb_ess.h"
  190. #define ESSTYPE_LIKE20 -1 /* Mimic 2.0 behaviour */
  191. #define ESSTYPE_DETECT 0 /* Mimic 2.0 behaviour */
  192. #define SUBMDL_ES1788 0x10 /* Subtype ES1788 for specific handling */
  193. #define SUBMDL_ES1868 0x11 /* Subtype ES1868 for specific handling */
  194. #define SUBMDL_ES1869 0x12 /* Subtype ES1869 for specific handling */
  195. #define SUBMDL_ES1878 0x13 /* Subtype ES1878 for specific handling */
  196. #define SUBMDL_ES1879 0x16    /* ES1879 was initially forgotten */
  197. #define SUBMDL_ES1887 0x14 /* Subtype ES1887 for specific handling */
  198. #define SUBMDL_ES1888 0x15 /* Subtype ES1888 for specific handling */
  199. #define SB_CAP_ES18XX_RATE 0x100
  200. #define ES1688_CLOCK1 795444 /* 128 - div */
  201. #define ES1688_CLOCK2 397722 /* 256 - div */
  202. #define ES18XX_CLOCK1 793800 /* 128 - div */
  203. #define ES18XX_CLOCK2 768000 /* 256 - div */
  204. #ifdef FKS_LOGGING
  205. static void ess_show_mixerregs (sb_devc *devc);
  206. #endif
  207. static int ess_read (sb_devc * devc, unsigned char reg);
  208. static int ess_write (sb_devc * devc, unsigned char reg, unsigned char data);
  209. static void ess_chgmixer
  210. (sb_devc * devc, unsigned int reg, unsigned int mask, unsigned int val);
  211. /****************************************************************************
  212.  * *
  213.  * ESS audio *
  214.  * *
  215.  ****************************************************************************/
  216. struct ess_command {short cmd; short data;};
  217. /*
  218.  * Commands for initializing Audio 1 for input (record)
  219.  */
  220. static struct ess_command ess_i08m[] = /* input 8 bit mono */
  221. { {0xb7, 0x51}, {0xb7, 0xd0}, {-1, 0} };
  222. static struct ess_command ess_i16m[] = /* input 16 bit mono */
  223. { {0xb7, 0x71}, {0xb7, 0xf4}, {-1, 0} };
  224. static struct ess_command ess_i08s[] = /* input 8 bit stereo */
  225. { {0xb7, 0x51}, {0xb7, 0x98}, {-1, 0} };
  226. static struct ess_command ess_i16s[] = /* input 16 bit stereo */
  227. { {0xb7, 0x71}, {0xb7, 0xbc}, {-1, 0} };
  228. static struct ess_command *ess_inp_cmds[] =
  229. { ess_i08m, ess_i16m, ess_i08s, ess_i16s };
  230. /*
  231.  * Commands for initializing Audio 1 for output (playback)
  232.  */
  233. static struct ess_command ess_o08m[] = /* output 8 bit mono */
  234. { {0xb6, 0x80}, {0xb7, 0x51}, {0xb7, 0xd0}, {-1, 0} };
  235. static struct ess_command ess_o16m[] = /* output 16 bit mono */
  236. { {0xb6, 0x00}, {0xb7, 0x71}, {0xb7, 0xf4}, {-1, 0} };
  237. static struct ess_command ess_o08s[] = /* output 8 bit stereo */
  238. { {0xb6, 0x80}, {0xb7, 0x51}, {0xb7, 0x98}, {-1, 0} };
  239. static struct ess_command ess_o16s[] = /* output 16 bit stereo */
  240. { {0xb6, 0x00}, {0xb7, 0x71}, {0xb7, 0xbc}, {-1, 0} };
  241. static struct ess_command *ess_out_cmds[] =
  242. { ess_o08m, ess_o16m, ess_o08s, ess_o16s };
  243. static void ess_exec_commands
  244. (sb_devc *devc, struct ess_command *cmdtab[])
  245. {
  246. struct ess_command *cmd;
  247. cmd = cmdtab [ ((devc->channels != 1) << 1) + (devc->bits != AFMT_U8) ];
  248. while (cmd->cmd != -1) {
  249. ess_write (devc, cmd->cmd, cmd->data);
  250. cmd++;
  251. }
  252. }
  253. static void ess_change
  254. (sb_devc *devc, unsigned int reg, unsigned int mask, unsigned int val)
  255. {
  256. int value;
  257. value = ess_read (devc, reg);
  258. value = (value & ~mask) | (val & mask);
  259. ess_write (devc, reg, value);
  260. }
  261. static void ess_set_output_parms
  262. (int dev, unsigned long buf, int nr_bytes, int intrflag)
  263. {
  264. sb_devc *devc = audio_devs[dev]->devc;
  265. if (devc->duplex) {
  266. devc->trg_buf_16 = buf;
  267. devc->trg_bytes_16 = nr_bytes;
  268. devc->trg_intrflag_16 = intrflag;
  269. devc->irq_mode_16 = IMODE_OUTPUT;
  270. } else {
  271. devc->trg_buf = buf;
  272. devc->trg_bytes = nr_bytes;
  273. devc->trg_intrflag = intrflag;
  274. devc->irq_mode = IMODE_OUTPUT;
  275. }
  276. }
  277. static void ess_set_input_parms
  278. (int dev, unsigned long buf, int count, int intrflag)
  279. {
  280. sb_devc *devc = audio_devs[dev]->devc;
  281. devc->trg_buf = buf;
  282. devc->trg_bytes = count;
  283. devc->trg_intrflag = intrflag;
  284. devc->irq_mode = IMODE_INPUT;
  285. }
  286. static int ess_calc_div (int clock, int revert, int *speedp, int *diffp)
  287. {
  288. int divider;
  289. int speed, diff;
  290. int retval;
  291. speed   = *speedp;
  292. divider = (clock + speed / 2) / speed;
  293. retval  = revert - divider;
  294. if (retval > revert - 1) {
  295. retval  = revert - 1;
  296. divider = revert - retval;
  297. }
  298. /* This line is suggested. Must be wrong I think
  299. *speedp = (clock + divider / 2) / divider;
  300. So I chose the next one */
  301. *speedp = clock / divider;
  302. diff = speed - *speedp;
  303. if (diff < 0) diff =-diff;
  304. *diffp  = diff;
  305. return retval;
  306. }
  307. static int ess_calc_best_speed
  308. (int clock1, int rev1, int clock2, int rev2, int *divp, int *speedp)
  309. {
  310. int speed1 = *speedp, speed2 = *speedp;
  311. int div1, div2;
  312. int diff1, diff2;
  313. int retval;
  314. div1 = ess_calc_div (clock1, rev1, &speed1, &diff1);
  315. div2 = ess_calc_div (clock2, rev2, &speed2, &diff2);
  316. if (diff1 < diff2) {
  317. *divp   = div1;
  318. *speedp = speed1;
  319. retval  = 1;
  320. } else {
  321. /* *divp   = div2; */
  322. *divp   = 0x80 | div2;
  323. *speedp = speed2;
  324. retval  = 2;
  325. }
  326. return retval;
  327. }
  328. /*
  329.  * Depending on the audiochannel ESS devices can
  330.  * have different clock settings. These are made consistent for duplex
  331.  * however.
  332.  * callers of ess_speed only do an audionum suggestion, which means
  333.  * input suggests 1, output suggests 2. This suggestion is only true
  334.  * however when doing duplex.
  335.  */
  336. static void ess_common_speed (sb_devc *devc, int *speedp, int *divp)
  337. {
  338. int diff = 0, div;
  339. if (devc->duplex) {
  340. /*
  341.  * The 0x80 is important for the first audio channel
  342.  */
  343. if (devc->submodel == SUBMDL_ES1888) {
  344. div = 0x80 | ess_calc_div (795500, 256, speedp, &diff);
  345. } else {
  346. div = 0x80 | ess_calc_div (795500, 128, speedp, &diff);
  347. }
  348. } else if(devc->caps & SB_CAP_ES18XX_RATE) {
  349. if (devc->submodel == SUBMDL_ES1888) {
  350. ess_calc_best_speed(397700, 128, 795500, 256, 
  351. &div, speedp);
  352. } else {
  353. ess_calc_best_speed(ES18XX_CLOCK1, 128, ES18XX_CLOCK2, 256, 
  354. &div, speedp);
  355. }
  356. } else {
  357. if (*speedp > 22000) {
  358. div = 0x80 | ess_calc_div (ES1688_CLOCK1, 256, speedp, &diff);
  359. } else {
  360. div = 0x00 | ess_calc_div (ES1688_CLOCK2, 128, speedp, &diff);
  361. }
  362. }
  363. *divp = div;
  364. }
  365. static void ess_speed (sb_devc *devc, int audionum)
  366. {
  367. int speed;
  368. int div, div2;
  369. ess_common_speed (devc, &(devc->speed), &div);
  370. #ifdef FKS_REG_LOGGING
  371. printk (KERN_INFO "FKS: ess_speed (%d) b speed = %d, div=%xn", audionum, devc->speed, div);
  372. #endif
  373. /* Set filter roll-off to 90% of speed/2 */
  374. speed = (devc->speed * 9) / 20;
  375. div2 = 256 - 7160000 / (speed * 82);
  376. if (!devc->duplex) audionum = 1;
  377. if (audionum == 1) {
  378. /* Change behaviour of register A1 *
  379. sb_chg_mixer(devc, 0x71, 0x20, 0x20)
  380. * For ES1869 only??? */
  381. ess_write (devc, 0xa1, div);
  382. ess_write (devc, 0xa2, div2);
  383. } else {
  384. ess_setmixer (devc, 0x70, div);
  385. /*
  386.  * FKS: fascinating: 0x72 doesn't seem to work.
  387.  */
  388. ess_write (devc, 0xa2, div2);
  389. ess_setmixer (devc, 0x72, div2);
  390. }
  391. }
  392. static int ess_audio_prepare_for_input(int dev, int bsize, int bcount)
  393. {
  394. sb_devc *devc = audio_devs[dev]->devc;
  395. ess_speed(devc, 1);
  396. sb_dsp_command(devc, DSP_CMD_SPKOFF);
  397. ess_write (devc, 0xb8, 0x0e); /* Auto init DMA mode */
  398. ess_change (devc, 0xa8, 0x03, 3 - devc->channels); /* Mono/stereo */
  399. ess_write (devc, 0xb9, 2); /* Demand mode (4 bytes/DMA request) */
  400. ess_exec_commands (devc, ess_inp_cmds);
  401. ess_change (devc, 0xb1, 0xf0, 0x50);
  402. ess_change (devc, 0xb2, 0xf0, 0x50);
  403. devc->trigger_bits = 0;
  404. return 0;
  405. }
  406. static int ess_audio_prepare_for_output_audio1 (int dev, int bsize, int bcount)
  407. {
  408. sb_devc *devc = audio_devs[dev]->devc;
  409. sb_dsp_reset(devc);
  410. ess_speed(devc, 1);
  411. ess_write (devc, 0xb8, 4); /* Auto init DMA mode */
  412. ess_change (devc, 0xa8, 0x03, 3 - devc->channels); /* Mono/stereo */
  413. ess_write (devc, 0xb9, 2); /* Demand mode (4 bytes/request) */
  414. ess_exec_commands (devc, ess_out_cmds);
  415. ess_change (devc, 0xb1, 0xf0, 0x50); /* Enable DMA */
  416. ess_change (devc, 0xb2, 0xf0, 0x50); /* Enable IRQ */
  417. sb_dsp_command(devc, DSP_CMD_SPKON); /* There be sound! */
  418. devc->trigger_bits = 0;
  419. return 0;
  420. }
  421. static int ess_audio_prepare_for_output_audio2 (int dev, int bsize, int bcount)
  422. {
  423. sb_devc *devc = audio_devs[dev]->devc;
  424. unsigned char bits;
  425. /* FKS: qqq
  426. sb_dsp_reset(devc);
  427. */
  428. /*
  429.  * Auto-Initialize:
  430.  * DMA mode + demand mode (8 bytes/request, yes I want it all!)
  431.  * But leave 16-bit DMA bit untouched!
  432.  */
  433. ess_chgmixer (devc, 0x78, 0xd0, 0xd0);
  434. ess_speed(devc, 2);
  435. /* bits 4:3 on ES1887 represent recording source. Keep them! */
  436. bits = ess_getmixer (devc, 0x7a) & 0x18;
  437. /* Set stereo/mono */
  438. if (devc->channels != 1) bits |= 0x02;
  439. /* Init DACs; UNSIGNED mode for 8 bit; SIGNED mode for 16 bit */
  440. if (devc->bits != AFMT_U8) bits |= 0x05; /* 16 bit */
  441. /* Enable DMA, IRQ will be shared (hopefully)*/
  442. bits |= 0x60;
  443. ess_setmixer (devc, 0x7a, bits);
  444. ess_mixer_reload (devc, SOUND_MIXER_PCM); /* There be sound! */
  445. devc->trigger_bits = 0;
  446. return 0;
  447. }
  448. static int ess_audio_prepare_for_output(int dev, int bsize, int bcount)
  449. {
  450. sb_devc *devc = audio_devs[dev]->devc;
  451. #ifdef FKS_REG_LOGGING
  452. printk(KERN_INFO "ess_audio_prepare_for_output: dma_out=%d,dma_in=%dn"
  453. , audio_devs[dev]->dmap_out->dma, audio_devs[dev]->dmap_in->dma);
  454. #endif
  455. if (devc->duplex) {
  456. return ess_audio_prepare_for_output_audio2 (dev, bsize, bcount);
  457. } else {
  458. return ess_audio_prepare_for_output_audio1 (dev, bsize, bcount);
  459. }
  460. }
  461. static void ess_audio_halt_xfer(int dev)
  462. {
  463. unsigned long flags;
  464. sb_devc *devc = audio_devs[dev]->devc;
  465. spin_lock_irqsave(&devc->lock, flags);
  466. sb_dsp_reset(devc);
  467. spin_unlock_irqrestore(&devc->lock, flags);
  468. /*
  469.  * Audio 2 may still be operational! Creates awful sounds!
  470.  */
  471. if (devc->duplex) ess_chgmixer(devc, 0x78, 0x03, 0x00);
  472. }
  473. static void ess_audio_start_input
  474. (int dev, unsigned long buf, int nr_bytes, int intrflag)
  475. {
  476. int count = nr_bytes;
  477. sb_devc *devc = audio_devs[dev]->devc;
  478. short c = -nr_bytes;
  479. /*
  480.  * Start a DMA input to the buffer pointed by dmaqtail
  481.  */
  482. if (audio_devs[dev]->dmap_in->dma > 3) count >>= 1;
  483. count--;
  484. devc->irq_mode = IMODE_INPUT;
  485. ess_write (devc, 0xa4, (unsigned char) ((unsigned short) c & 0xff));
  486. ess_write (devc, 0xa5, (unsigned char) (((unsigned short) c >> 8) & 0xff));
  487. ess_change (devc, 0xb8, 0x0f, 0x0f); /* Go */
  488. devc->intr_active = 1;
  489. }
  490. static void ess_audio_output_block_audio1
  491. (int dev, unsigned long buf, int nr_bytes, int intrflag)
  492. {
  493. int count = nr_bytes;
  494. sb_devc *devc = audio_devs[dev]->devc;
  495. short c = -nr_bytes;
  496. if (audio_devs[dev]->dmap_out->dma > 3)
  497. count >>= 1;
  498. count--;
  499. devc->irq_mode = IMODE_OUTPUT;
  500. ess_write (devc, 0xa4, (unsigned char) ((unsigned short) c & 0xff));
  501. ess_write (devc, 0xa5, (unsigned char) (((unsigned short) c >> 8) & 0xff));
  502. ess_change (devc, 0xb8, 0x05, 0x05); /* Go */
  503. devc->intr_active = 1;
  504. }
  505. static void ess_audio_output_block_audio2
  506. (int dev, unsigned long buf, int nr_bytes, int intrflag)
  507. {
  508. int count = nr_bytes;
  509. sb_devc *devc = audio_devs[dev]->devc;
  510. short c = -nr_bytes;
  511. if (audio_devs[dev]->dmap_out->dma > 3) count >>= 1;
  512. count--;
  513. ess_setmixer (devc, 0x74, (unsigned char) ((unsigned short) c & 0xff));
  514. ess_setmixer (devc, 0x76, (unsigned char) (((unsigned short) c >> 8) & 0xff));
  515. ess_chgmixer (devc, 0x78, 0x03, 0x03);   /* Go */
  516. devc->irq_mode_16 = IMODE_OUTPUT;
  517. devc->intr_active_16 = 1;
  518. }
  519. static void ess_audio_output_block
  520. (int dev, unsigned long buf, int nr_bytes, int intrflag)
  521. {
  522. sb_devc *devc = audio_devs[dev]->devc;
  523. if (devc->duplex) {
  524. ess_audio_output_block_audio2 (dev, buf, nr_bytes, intrflag);
  525. } else {
  526. ess_audio_output_block_audio1 (dev, buf, nr_bytes, intrflag);
  527. }
  528. }
  529. /*
  530.  * FKS: the if-statements for both bits and bits_16 are quite alike.
  531.  * Combine this...
  532.  */
  533. static void ess_audio_trigger(int dev, int bits)
  534. {
  535. sb_devc *devc = audio_devs[dev]->devc;
  536. int bits_16 = bits & devc->irq_mode_16;
  537. bits &= devc->irq_mode;
  538. if (!bits && !bits_16) {
  539. /* FKS oh oh.... wrong?? for dma 16? */
  540. sb_dsp_command(devc, 0xd0); /* Halt DMA */
  541. }
  542. if (bits) {
  543. switch (devc->irq_mode)
  544. {
  545. case IMODE_INPUT:
  546. ess_audio_start_input(dev, devc->trg_buf, devc->trg_bytes,
  547. devc->trg_intrflag);
  548. break;
  549. case IMODE_OUTPUT:
  550. ess_audio_output_block(dev, devc->trg_buf, devc->trg_bytes,
  551. devc->trg_intrflag);
  552. break;
  553. }
  554. }
  555. if (bits_16) {
  556. switch (devc->irq_mode_16) {
  557. case IMODE_INPUT:
  558. ess_audio_start_input(dev, devc->trg_buf_16, devc->trg_bytes_16,
  559. devc->trg_intrflag_16);
  560. break;
  561. case IMODE_OUTPUT:
  562. ess_audio_output_block(dev, devc->trg_buf_16, devc->trg_bytes_16,
  563. devc->trg_intrflag_16);
  564. break;
  565. }
  566. }
  567. devc->trigger_bits = bits | bits_16;
  568. }
  569. static int ess_audio_set_speed(int dev, int speed)
  570. {
  571. sb_devc *devc = audio_devs[dev]->devc;
  572. int minspeed, maxspeed, dummydiv;
  573. if (speed > 0) {
  574. minspeed = (devc->duplex ? 6215  : 5000 );
  575. maxspeed = (devc->duplex ? 44100 : 48000);
  576. if (speed < minspeed) speed = minspeed;
  577. if (speed > maxspeed) speed = maxspeed;
  578. ess_common_speed (devc, &speed, &dummydiv);
  579. devc->speed = speed;
  580. }
  581. return devc->speed;
  582. }
  583. /*
  584.  * FKS: This is a one-on-one copy of sb1_audio_set_bits
  585.  */
  586. static unsigned int ess_audio_set_bits(int dev, unsigned int bits)
  587. {
  588. sb_devc *devc = audio_devs[dev]->devc;
  589. if (bits != 0) {
  590. if (bits == AFMT_U8 || bits == AFMT_S16_LE) {
  591. devc->bits = bits;
  592. } else {
  593. devc->bits = AFMT_U8;
  594. }
  595. }
  596. return devc->bits;
  597. }
  598. /*
  599.  * FKS: This is a one-on-one copy of sbpro_audio_set_channels
  600.  * (*) Modified it!!
  601.  */
  602. static short ess_audio_set_channels(int dev, short channels)
  603. {
  604. sb_devc *devc = audio_devs[dev]->devc;
  605. if (channels == 1 || channels == 2) devc->channels = channels;
  606. return devc->channels;
  607. }
  608. static struct audio_driver ess_audio_driver =   /* ESS ES688/1688 */
  609. {
  610. owner: THIS_MODULE,
  611. open: sb_audio_open,
  612. close: sb_audio_close,
  613. output_block: ess_set_output_parms,
  614. start_input: ess_set_input_parms,
  615. prepare_for_input: ess_audio_prepare_for_input,
  616. prepare_for_output: ess_audio_prepare_for_output,
  617. halt_io: ess_audio_halt_xfer,
  618. trigger: ess_audio_trigger,
  619. set_speed: ess_audio_set_speed,
  620. set_bits: ess_audio_set_bits,
  621. set_channels: ess_audio_set_channels
  622. };
  623. /*
  624.  * ess_audio_init must be called from sb_audio_init
  625.  */
  626. struct audio_driver *ess_audio_init
  627. (sb_devc *devc, int *audio_flags, int *format_mask)
  628. {
  629. *audio_flags = DMA_AUTOMODE;
  630. *format_mask |= AFMT_S16_LE;
  631. if (devc->duplex) {
  632. int tmp_dma;
  633. /*
  634.  * sb_audio_init thinks dma8 is for playback and
  635.  * dma16 is for record. Not now! So swap them.
  636.  */
  637. tmp_dma = devc->dma16;
  638. devc->dma16 = devc->dma8;
  639. devc->dma8 = tmp_dma;
  640. *audio_flags |= DMA_DUPLEX;
  641. }
  642. return &ess_audio_driver;
  643. }
  644. /****************************************************************************
  645.  * *
  646.  * ESS common *
  647.  * *
  648.  ****************************************************************************/
  649. static void ess_handle_channel
  650. (char *channel, int dev, int intr_active, unsigned char flag, int irq_mode)
  651. {
  652. if (!intr_active || !flag) return;
  653. #ifdef FKS_REG_LOGGING
  654. printk(KERN_INFO "FKS: ess_handle_channel %s irq_mode=%dn", channel, irq_mode);
  655. #endif
  656. switch (irq_mode) {
  657. case IMODE_OUTPUT:
  658. DMAbuf_outputintr (dev, 1);
  659. break;
  660. case IMODE_INPUT:
  661. DMAbuf_inputintr (dev);
  662. break;
  663. case IMODE_INIT:
  664. break;
  665. default:;
  666. /* printk(KERN_WARN "ESS: Unexpected interruptn"); */
  667. }
  668. }
  669. /*
  670.  * FKS: TODO!!! Finish this!
  671.  *
  672.  * I think midi stuff uses uart401, without interrupts.
  673.  * So IMODE_MIDI isn't a value for devc->irq_mode.
  674.  */
  675. void ess_intr (sb_devc *devc)
  676. {
  677. int status;
  678. unsigned char src;
  679. if (devc->submodel == SUBMDL_ES1887) {
  680. src = ess_getmixer (devc, 0x7f) >> 4;
  681. } else {
  682. src = 0xff;
  683. }
  684. #ifdef FKS_REG_LOGGING
  685. printk(KERN_INFO "FKS: sbintr src=%xn",(int)src);
  686. #endif
  687. ess_handle_channel
  688. ( "Audio 1"
  689. , devc->dev, devc->intr_active   , src & 0x01, devc->irq_mode   );
  690. ess_handle_channel
  691. ( "Audio 2"
  692. , devc->dev, devc->intr_active_16, src & 0x02, devc->irq_mode_16);
  693. /*
  694.  * Acknowledge interrupts
  695.  */
  696. if (devc->submodel == SUBMDL_ES1887 && (src & 0x02)) {
  697. ess_chgmixer (devc, 0x7a, 0x80, 0x00);
  698. }
  699. if (src & 0x01) {
  700. status = inb(DSP_DATA_AVAIL);
  701. }
  702. }
  703. static void ess_extended (sb_devc * devc)
  704. {
  705. /* Enable extended mode */
  706. sb_dsp_command(devc, 0xc6);
  707. }
  708. static int ess_write (sb_devc * devc, unsigned char reg, unsigned char data)
  709. {
  710. #ifdef FKS_REG_LOGGING
  711. printk(KERN_INFO "FKS: write reg %x: %xn", reg, data);
  712. #endif
  713. /* Write a byte to an extended mode register of ES1688 */
  714. if (!sb_dsp_command(devc, reg))
  715. return 0;
  716. return sb_dsp_command(devc, data);
  717. }
  718. static int ess_read (sb_devc * devc, unsigned char reg)
  719. {
  720. /* Read a byte from an extended mode register of ES1688 */
  721. /* Read register command */
  722. if (!sb_dsp_command(devc, 0xc0)) return -1;
  723. if (!sb_dsp_command(devc, reg )) return -1;
  724. return sb_dsp_get_byte(devc);
  725. }
  726. int ess_dsp_reset(sb_devc * devc)
  727. {
  728. int loopc;
  729. #ifdef FKS_REG_LOGGING
  730. printk(KERN_INFO "FKS: ess_dsp_reset 1n");
  731. ess_show_mixerregs (devc);
  732. #endif
  733. DEB(printk("Entered ess_dsp_reset()n"));
  734. outb(3, DSP_RESET); /* Reset FIFO too */
  735. udelay(10);
  736. outb(0, DSP_RESET);
  737. udelay(30);
  738. for (loopc = 0; loopc < 1000 && !(inb(DSP_DATA_AVAIL) & 0x80); loopc++);
  739. if (inb(DSP_READ) != 0xAA) {
  740. DDB(printk("sb: No response to RESETn"));
  741. return 0;   /* Sorry */
  742. }
  743. ess_extended (devc);
  744. DEB(printk("sb_dsp_reset() OKn"));
  745. #ifdef FKS_LOGGING
  746. printk(KERN_INFO "FKS: dsp_reset 2n");
  747. ess_show_mixerregs (devc);
  748. #endif
  749. return 1;
  750. }
  751. static int ess_irq_bits (int irq)
  752. {
  753. switch (irq) {
  754. case 2:
  755. case 9:
  756. return 0;
  757. case 5:
  758. return 1;
  759. case 7:
  760. return 2;
  761. case 10:
  762. return 3;
  763. default:
  764. printk(KERN_ERR "ESS1688: Invalid IRQ %dn", irq);
  765. return -1;
  766. }
  767. }
  768. /*
  769.  * Set IRQ configuration register for all ESS models
  770.  */
  771. static int ess_common_set_irq_hw (sb_devc * devc)
  772. {
  773. int irq_bits;
  774. if ((irq_bits = ess_irq_bits (devc->irq)) == -1) return 0;
  775. if (!ess_write (devc, 0xb1, 0x50 | (irq_bits << 2))) {
  776. printk(KERN_ERR "ES1688: Failed to write to IRQ config registern");
  777. return 0;
  778. }
  779. return 1;
  780. }
  781. /*
  782.  * I wanna use modern ES1887 mixer irq handling. Funny is the
  783.  * fact that my BIOS wants the same. But suppose someone's BIOS
  784.  * doesn't do this!
  785.  * This is independent of duplex. If there's a 1887 this will
  786.  * prevent it from going into 1888 mode.
  787.  */
  788. static void ess_es1887_set_irq_hw (sb_devc * devc)
  789. {
  790. int irq_bits;
  791. if ((irq_bits = ess_irq_bits (devc->irq)) == -1) return;
  792. ess_chgmixer (devc, 0x7f, 0x0f, 0x01 | ((irq_bits + 1) << 1));
  793. }
  794. static int ess_set_irq_hw (sb_devc * devc)
  795. {
  796. if (devc->submodel == SUBMDL_ES1887) ess_es1887_set_irq_hw (devc);
  797. return ess_common_set_irq_hw (devc);
  798. }
  799. #ifdef FKS_TEST
  800. /*
  801.  * FKS_test:
  802.  * for ES1887: 00, 18, non wr bits: 0001 1000
  803.  * for ES1868: 00, b8, non wr bits: 1011 1000
  804.  * for ES1888: 00, f8, non wr bits: 1111 1000
  805.  * for ES1688: 00, f8, non wr bits: 1111 1000
  806.  * +   ES968
  807.  */
  808. static void FKS_test (sb_devc * devc)
  809. {
  810. int val1, val2;
  811. val1 = ess_getmixer (devc, 0x64);
  812. ess_setmixer (devc, 0x64, ~val1);
  813. val2 = ess_getmixer (devc, 0x64) ^ ~val1;
  814. ess_setmixer (devc, 0x64, val1);
  815. val1 ^= ess_getmixer (devc, 0x64);
  816. printk (KERN_INFO "FKS: FKS_test %02x, %02xn", (val1 & 0x0ff), (val2 & 0x0ff));
  817. };
  818. #endif
  819. static unsigned int ess_identify (sb_devc * devc)
  820. {
  821. unsigned int val;
  822. unsigned long flags;
  823. spin_lock_irqsave(&devc->lock, flags);
  824. outb(((unsigned char) (0x40 & 0xff)), MIXER_ADDR);
  825. udelay(20);
  826. val  = inb(MIXER_DATA) << 8;
  827. udelay(20);
  828. val |= inb(MIXER_DATA);
  829. udelay(20);
  830. spin_unlock_irqrestore(&devc->lock, flags);
  831. return val;
  832. }
  833. /*
  834.  * ESS technology describes a detection scheme in their docs. It involves
  835.  * fiddling with the bits in certain mixer registers. ess_probe is supposed
  836.  * to help.
  837.  *
  838.  * FKS: tracing shows ess_probe writes wrong value to 0x64. Bit 3 reads 1, but
  839.  * should be written 0 only. Check this.
  840.  */
  841. static int ess_probe (sb_devc * devc, int reg, int xorval)
  842. {
  843. int  val1, val2, val3;
  844. val1 = ess_getmixer (devc, reg);
  845. val2 = val1 ^ xorval;
  846. ess_setmixer (devc, reg, val2);
  847. val3 = ess_getmixer (devc, reg);
  848. ess_setmixer (devc, reg, val1);
  849. return (val2 == val3);
  850. }
  851. int ess_init(sb_devc * devc, struct address_info *hw_config)
  852. {
  853. unsigned char cfg;
  854. int ess_major = 0, ess_minor = 0;
  855. int i;
  856. static char name[100], modelname[10];
  857. /*
  858.  * Try to detect ESS chips.
  859.  */
  860. sb_dsp_command(devc, 0xe7); /* Return identification */
  861. for (i = 1000; i; i--) {
  862. if (inb(DSP_DATA_AVAIL) & 0x80) {
  863. if (ess_major == 0) {
  864. ess_major = inb(DSP_READ);
  865. } else {
  866. ess_minor = inb(DSP_READ);
  867. break;
  868. }
  869. }
  870. }
  871. if (ess_major == 0) return 0;
  872. if (ess_major == 0x48 && (ess_minor & 0xf0) == 0x80) {
  873. sprintf(name, "ESS ES488 AudioDrive (rev %d)",
  874. ess_minor & 0x0f);
  875. hw_config->name = name;
  876. devc->model = MDL_SBPRO;
  877. return 1;
  878. }
  879. /*
  880.  * This the detection heuristic of ESS technology, though somewhat
  881.  * changed to actually make it work.
  882.  * This results in the following detection steps:
  883.  * - distinct between ES688 and ES1688+ (as always done in this driver)
  884.  *   if ES688 we're ready
  885.  * - try to detect ES1868, ES1869 or ES1878 (ess_identify)
  886.  *   if successful we're ready
  887.  * - try to detect ES1888, ES1887 or ES1788 (aim: detect ES1887)
  888.  *   if successful we're ready
  889.  * - Dunno. Must be 1688. Will do in general
  890.  *
  891.  * This is the most BETA part of the software: Will the detection
  892.  * always work?
  893.  */
  894. devc->model = MDL_ESS;
  895. devc->submodel = ess_minor & 0x0f;
  896. if (ess_major == 0x68 && (ess_minor & 0xf0) == 0x80) {
  897. char *chip = NULL;
  898. int submodel = -1;
  899. switch (devc->sbmo.esstype) {
  900. case ESSTYPE_DETECT:
  901. case ESSTYPE_LIKE20:
  902. break;
  903. case 688:
  904. submodel = 0x00;
  905. break;
  906. case 1688:
  907. submodel = 0x08;
  908. break;
  909. case 1868:
  910. submodel = SUBMDL_ES1868;
  911. break;
  912. case 1869:
  913. submodel = SUBMDL_ES1869;
  914. break;
  915. case 1788:
  916. submodel = SUBMDL_ES1788;
  917. break;
  918. case 1878:
  919. submodel = SUBMDL_ES1878;
  920. break;
  921. case 1879:
  922. submodel = SUBMDL_ES1879;
  923. break;
  924. case 1887:
  925. submodel = SUBMDL_ES1887;
  926. break;
  927. case 1888:
  928. submodel = SUBMDL_ES1888;
  929. break;
  930. default:
  931. printk (KERN_ERR "Invalid esstype=%d specifiedn", devc->sbmo.esstype);
  932. return 0;
  933. };
  934. if (submodel != -1) {
  935. devc->submodel = submodel;
  936. sprintf (modelname, "ES%d", devc->sbmo.esstype);
  937. chip = modelname;
  938. };
  939. if (chip == NULL && (ess_minor & 0x0f) < 8) {
  940. chip = "ES688";
  941. };
  942. #ifdef FKS_TEST
  943. FKS_test (devc);
  944. #endif
  945. /*
  946.  * If Nothing detected yet, and we want 2.0 behaviour...
  947.  * Then let's assume it's ES1688.
  948.  */
  949. if (chip == NULL && devc->sbmo.esstype == ESSTYPE_LIKE20) {
  950. chip = "ES1688";
  951. };
  952. if (chip == NULL) {
  953. int type;
  954. type = ess_identify (devc);
  955. switch (type) {
  956. case 0x1868:
  957. chip = "ES1868";
  958. devc->submodel = SUBMDL_ES1868;
  959. break;
  960. case 0x1869:
  961. chip = "ES1869";
  962. devc->submodel = SUBMDL_ES1869;
  963. break;
  964. case 0x1878:
  965. chip = "ES1878";
  966. devc->submodel = SUBMDL_ES1878;
  967. break;
  968. case 0x1879:
  969. chip = "ES1879";
  970. devc->submodel = SUBMDL_ES1879;
  971. break;
  972. default:
  973. if ((type & 0x00ff) != ((type >> 8) & 0x00ff)) {
  974. printk ("ess_init: Unrecognized %04xn", type);
  975. }
  976. };
  977. };
  978. #if 0
  979. /*
  980.  * this one failed:
  981.  * the probing of bit 4 is another thought: from ES1788 and up, all
  982.  * chips seem to have hardware volume control. Bit 4 is readonly to
  983.  * check if a hardware volume interrupt has fired.
  984.  * Cause ES688/ES1688 don't have this feature, bit 4 might be writeable
  985.  * for these chips.
  986.  */
  987. if (chip == NULL && !ess_probe(devc, 0x64, (1 << 4))) {
  988. #endif
  989. /*
  990.  * the probing of bit 2 is my idea. The ES1887 docs want me to probe
  991.  * bit 3. This results in ES1688 being detected as ES1788.
  992.  * Bit 2 is for "Enable HWV IRQE", but as ES(1)688 chips don't have
  993.  * HardWare Volume, I think they don't have this IRQE.
  994.  */
  995. if (chip == NULL && ess_probe(devc, 0x64, (1 << 2))) {
  996. if (ess_probe (devc, 0x70, 0x7f)) {
  997. if (ess_probe (devc, 0x64, (1 << 5))) {
  998. chip = "ES1887";
  999. devc->submodel = SUBMDL_ES1887;
  1000. } else {
  1001. chip = "ES1888";
  1002. devc->submodel = SUBMDL_ES1888;
  1003. }
  1004. } else {
  1005. chip = "ES1788";
  1006. devc->submodel = SUBMDL_ES1788;
  1007. }
  1008. };
  1009. if (chip == NULL) {
  1010. chip = "ES1688";
  1011. };
  1012.     printk ( KERN_INFO "ESS chip %s %s%sn"
  1013.                , chip
  1014.                , ( devc->sbmo.esstype == ESSTYPE_DETECT || devc->sbmo.esstype == ESSTYPE_LIKE20
  1015.                  ? "detected"
  1016.                  : "specified"
  1017.                  )
  1018.                , ( devc->sbmo.esstype == ESSTYPE_LIKE20
  1019.                  ? " (kernel 2.0 compatible)"
  1020.                  : ""
  1021.                  )
  1022.                );
  1023. sprintf(name,"ESS %s AudioDrive (rev %d)", chip, ess_minor & 0x0f);
  1024. } else {
  1025. strcpy(name, "Jazz16");
  1026. }
  1027. /* AAS: info stolen from ALSA: these boards have different clocks */
  1028. switch(devc->submodel) {
  1029. /* APPARENTLY NOT 1869 AND 1887
  1030. case SUBMDL_ES1869:
  1031. case SUBMDL_ES1887:
  1032. */
  1033. case SUBMDL_ES1888:
  1034. devc->caps |= SB_CAP_ES18XX_RATE;
  1035. break;
  1036. }
  1037. hw_config->name = name;
  1038. /* FKS: sb_dsp_reset to enable extended mode???? */
  1039. sb_dsp_reset(devc); /* Turn on extended mode */
  1040. /*
  1041.  *  Enable joystick and OPL3
  1042.  */
  1043. cfg = ess_getmixer (devc, 0x40);
  1044. ess_setmixer (devc, 0x40, cfg | 0x03);
  1045. if (devc->submodel >= 8) { /* ES1688 */
  1046. devc->caps |= SB_NO_MIDI;   /* ES1688 uses MPU401 MIDI mode */
  1047. }
  1048. sb_dsp_reset (devc);
  1049. /*
  1050.  * This is important! If it's not done, the IRQ probe in sb_dsp_init
  1051.  * may fail.
  1052.  */
  1053. return ess_set_irq_hw (devc);
  1054. }
  1055. static int ess_set_dma_hw(sb_devc * devc)
  1056. {
  1057. unsigned char cfg, dma_bits = 0, dma16_bits;
  1058. int dma;
  1059. #ifdef FKS_LOGGING
  1060. printk(KERN_INFO "ess_set_dma_hw: dma8=%d,dma16=%d,dup=%dn"
  1061. , devc->dma8, devc->dma16, devc->duplex);
  1062. #endif
  1063. /*
  1064.  * FKS: It seems as if this duplex flag isn't set yet. Check it.
  1065.  */
  1066. dma = devc->dma8;
  1067. if (dma > 3 || dma < 0 || dma == 2) {
  1068. dma_bits = 0;
  1069. printk(KERN_ERR "ESS1688: Invalid DMA8 %dn", dma);
  1070. return 0;
  1071. } else {
  1072. /* Extended mode DMA enable */
  1073. cfg = 0x50;
  1074. if (dma == 3) {
  1075. dma_bits = 3;
  1076. } else {
  1077. dma_bits = dma + 1;
  1078. }
  1079. }
  1080. if (!ess_write (devc, 0xb2, cfg | (dma_bits << 2))) {
  1081. printk(KERN_ERR "ESS1688: Failed to write to DMA config registern");
  1082. return 0;
  1083. }
  1084. if (devc->duplex) {
  1085. dma = devc->dma16;
  1086. dma16_bits = 0;
  1087. if (dma >= 0) {
  1088. switch (dma) {
  1089. case 0:
  1090. dma_bits = 0x04;
  1091. break;
  1092. case 1:
  1093. dma_bits = 0x05;
  1094. break;
  1095. case 3:
  1096. dma_bits = 0x06;
  1097. break;
  1098. case 5:
  1099. dma_bits   = 0x07;
  1100. dma16_bits = 0x20;
  1101. break;
  1102. default:
  1103. printk(KERN_ERR "ESS1887: Invalid DMA16 %dn", dma);
  1104. return 0;
  1105. };
  1106. ess_chgmixer (devc, 0x78, 0x20, dma16_bits);
  1107. ess_chgmixer (devc, 0x7d, 0x07, dma_bits);
  1108. }
  1109. }
  1110. return 1;
  1111. }
  1112. /*
  1113.  * This one is called from sb_dsp_init.
  1114.  *
  1115.  * Return values:
  1116.  *  0: Failed
  1117.  *  1: Succeeded or doesn't apply (not SUBMDL_ES1887)
  1118.  */
  1119. int ess_dsp_init (sb_devc *devc, struct address_info *hw_config)
  1120. {
  1121. /*
  1122.  * Caller also checks this, but anyway
  1123.  */
  1124. if (devc->model != MDL_ESS) {
  1125. printk (KERN_INFO "ess_dsp_init for non ESS chipn");
  1126. return 1;
  1127. }
  1128. /*
  1129.  * This for ES1887 to run Full Duplex. Actually ES1888
  1130.  * is allowed to do so too. I have no idea yet if this
  1131.  * will work for ES1888 however.
  1132.  *
  1133.  * For SB16 having both dma8 and dma16 means enable
  1134.  * Full Duplex. Let's try this for ES1887 too
  1135.  *
  1136.  */
  1137. if (devc->submodel == SUBMDL_ES1887) {
  1138. if (hw_config->dma2 != -1) {
  1139. devc->dma16 = hw_config->dma2;
  1140. }
  1141. /*
  1142.  * devc->duplex initialization is put here, cause
  1143.  * ess_set_dma_hw needs it.
  1144.  */
  1145. if (devc->dma8 != devc->dma16 && devc->dma16 != -1) {
  1146. devc->duplex = 1;
  1147. }
  1148. }
  1149. if (!ess_set_dma_hw (devc)) {
  1150. free_irq(devc->irq, devc);
  1151. return 0;
  1152. }
  1153. return 1;
  1154. }
  1155. /****************************************************************************
  1156.  * *
  1157.  * ESS mixer *
  1158.  * *
  1159.  ****************************************************************************/
  1160. #define ES688_RECORDING_DEVICES
  1161. ( SOUND_MASK_LINE | SOUND_MASK_MIC | SOUND_MASK_CD )
  1162. #define ES688_MIXER_DEVICES
  1163. ( SOUND_MASK_SYNTH | SOUND_MASK_PCM | SOUND_MASK_LINE
  1164. | SOUND_MASK_MIC | SOUND_MASK_CD | SOUND_MASK_VOLUME
  1165. | SOUND_MASK_LINE2 | SOUND_MASK_SPEAKER )
  1166. #define ES1688_RECORDING_DEVICES
  1167. ( ES688_RECORDING_DEVICES )
  1168. #define ES1688_MIXER_DEVICES
  1169. ( ES688_MIXER_DEVICES | SOUND_MASK_RECLEV )
  1170. #define ES1887_RECORDING_DEVICES
  1171. ( ES1688_RECORDING_DEVICES | SOUND_MASK_LINE2 | SOUND_MASK_SYNTH)
  1172. #define ES1887_MIXER_DEVICES
  1173. ( ES1688_MIXER_DEVICES )
  1174. /*
  1175.  * Mixer registers of ES1887
  1176.  *
  1177.  * These registers specifically take care of recording levels. To make the
  1178.  * mapping from playback devices to recording devices every recording
  1179.  * devices = playback device + ES_REC_MIXER_RECDIFF
  1180.  */
  1181. #define ES_REC_MIXER_RECBASE (SOUND_MIXER_LINE3 + 1)
  1182. #define ES_REC_MIXER_RECDIFF (ES_REC_MIXER_RECBASE - SOUND_MIXER_SYNTH)
  1183. #define ES_REC_MIXER_RECSYNTH (SOUND_MIXER_SYNTH  + ES_REC_MIXER_RECDIFF)
  1184. #define ES_REC_MIXER_RECPCM (SOUND_MIXER_PCM  + ES_REC_MIXER_RECDIFF)
  1185. #define ES_REC_MIXER_RECSPEAKER (SOUND_MIXER_SPEAKER + ES_REC_MIXER_RECDIFF)
  1186. #define ES_REC_MIXER_RECLINE (SOUND_MIXER_LINE  + ES_REC_MIXER_RECDIFF)
  1187. #define ES_REC_MIXER_RECMIC (SOUND_MIXER_MIC  + ES_REC_MIXER_RECDIFF)
  1188. #define ES_REC_MIXER_RECCD (SOUND_MIXER_CD  + ES_REC_MIXER_RECDIFF)
  1189. #define ES_REC_MIXER_RECIMIX (SOUND_MIXER_IMIX  + ES_REC_MIXER_RECDIFF)
  1190. #define ES_REC_MIXER_RECALTPCM (SOUND_MIXER_ALTPCM  + ES_REC_MIXER_RECDIFF)
  1191. #define ES_REC_MIXER_RECRECLEV (SOUND_MIXER_RECLEV  + ES_REC_MIXER_RECDIFF)
  1192. #define ES_REC_MIXER_RECIGAIN (SOUND_MIXER_IGAIN  + ES_REC_MIXER_RECDIFF)
  1193. #define ES_REC_MIXER_RECOGAIN (SOUND_MIXER_OGAIN  + ES_REC_MIXER_RECDIFF)
  1194. #define ES_REC_MIXER_RECLINE1 (SOUND_MIXER_LINE1  + ES_REC_MIXER_RECDIFF)
  1195. #define ES_REC_MIXER_RECLINE2 (SOUND_MIXER_LINE2  + ES_REC_MIXER_RECDIFF)
  1196. #define ES_REC_MIXER_RECLINE3 (SOUND_MIXER_LINE3  + ES_REC_MIXER_RECDIFF)
  1197. static mixer_tab es688_mix = {
  1198. MIX_ENT(SOUND_MIXER_VOLUME, 0x32, 7, 4, 0x32, 3, 4),
  1199. MIX_ENT(SOUND_MIXER_BASS, 0x00, 0, 0, 0x00, 0, 0),
  1200. MIX_ENT(SOUND_MIXER_TREBLE, 0x00, 0, 0, 0x00, 0, 0),
  1201. MIX_ENT(SOUND_MIXER_SYNTH, 0x36, 7, 4, 0x36, 3, 4),
  1202. MIX_ENT(SOUND_MIXER_PCM, 0x14, 7, 4, 0x14, 3, 4),
  1203. MIX_ENT(SOUND_MIXER_SPEAKER, 0x3c, 2, 3, 0x00, 0, 0),
  1204. MIX_ENT(SOUND_MIXER_LINE, 0x3e, 7, 4, 0x3e, 3, 4),
  1205. MIX_ENT(SOUND_MIXER_MIC, 0x1a, 7, 4, 0x1a, 3, 4),
  1206. MIX_ENT(SOUND_MIXER_CD, 0x38, 7, 4, 0x38, 3, 4),
  1207. MIX_ENT(SOUND_MIXER_IMIX, 0x00, 0, 0, 0x00, 0, 0),
  1208. MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
  1209. MIX_ENT(SOUND_MIXER_RECLEV, 0x00, 0, 0, 0x00, 0, 0),
  1210. MIX_ENT(SOUND_MIXER_IGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1211. MIX_ENT(SOUND_MIXER_OGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1212. MIX_ENT(SOUND_MIXER_LINE1, 0x00, 0, 0, 0x00, 0, 0),
  1213. MIX_ENT(SOUND_MIXER_LINE2, 0x3a, 7, 4, 0x3a, 3, 4),
  1214. MIX_ENT(SOUND_MIXER_LINE3, 0x00, 0, 0, 0x00, 0, 0)
  1215. };
  1216. /*
  1217.  * The ES1688 specifics... hopefully correct...
  1218.  * - 6 bit master volume
  1219.  *   I was wrong, ES1888 docs say ES1688 didn't have it.
  1220.  * - RECLEV control
  1221.  * These may apply to ES688 too. I have no idea.
  1222.  */
  1223. static mixer_tab es1688_mix = {
  1224. MIX_ENT(SOUND_MIXER_VOLUME, 0x32, 7, 4, 0x32, 3, 4),
  1225. MIX_ENT(SOUND_MIXER_BASS, 0x00, 0, 0, 0x00, 0, 0),
  1226. MIX_ENT(SOUND_MIXER_TREBLE, 0x00, 0, 0, 0x00, 0, 0),
  1227. MIX_ENT(SOUND_MIXER_SYNTH, 0x36, 7, 4, 0x36, 3, 4),
  1228. MIX_ENT(SOUND_MIXER_PCM, 0x14, 7, 4, 0x14, 3, 4),
  1229. MIX_ENT(SOUND_MIXER_SPEAKER, 0x3c, 2, 3, 0x00, 0, 0),
  1230. MIX_ENT(SOUND_MIXER_LINE, 0x3e, 7, 4, 0x3e, 3, 4),
  1231. MIX_ENT(SOUND_MIXER_MIC, 0x1a, 7, 4, 0x1a, 3, 4),
  1232. MIX_ENT(SOUND_MIXER_CD, 0x38, 7, 4, 0x38, 3, 4),
  1233. MIX_ENT(SOUND_MIXER_IMIX, 0x00, 0, 0, 0x00, 0, 0),
  1234. MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
  1235. MIX_ENT(SOUND_MIXER_RECLEV, 0xb4, 7, 4, 0xb4, 3, 4),
  1236. MIX_ENT(SOUND_MIXER_IGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1237. MIX_ENT(SOUND_MIXER_OGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1238. MIX_ENT(SOUND_MIXER_LINE1, 0x00, 0, 0, 0x00, 0, 0),
  1239. MIX_ENT(SOUND_MIXER_LINE2, 0x3a, 7, 4, 0x3a, 3, 4),
  1240. MIX_ENT(SOUND_MIXER_LINE3, 0x00, 0, 0, 0x00, 0, 0)
  1241. };
  1242. static mixer_tab es1688later_mix = {
  1243. MIX_ENT(SOUND_MIXER_VOLUME, 0x60, 5, 6, 0x62, 5, 6),
  1244. MIX_ENT(SOUND_MIXER_BASS, 0x00, 0, 0, 0x00, 0, 0),
  1245. MIX_ENT(SOUND_MIXER_TREBLE, 0x00, 0, 0, 0x00, 0, 0),
  1246. MIX_ENT(SOUND_MIXER_SYNTH, 0x36, 7, 4, 0x36, 3, 4),
  1247. MIX_ENT(SOUND_MIXER_PCM, 0x14, 7, 4, 0x14, 3, 4),
  1248. MIX_ENT(SOUND_MIXER_SPEAKER, 0x3c, 2, 3, 0x00, 0, 0),
  1249. MIX_ENT(SOUND_MIXER_LINE, 0x3e, 7, 4, 0x3e, 3, 4),
  1250. MIX_ENT(SOUND_MIXER_MIC, 0x1a, 7, 4, 0x1a, 3, 4),
  1251. MIX_ENT(SOUND_MIXER_CD, 0x38, 7, 4, 0x38, 3, 4),
  1252. MIX_ENT(SOUND_MIXER_IMIX, 0x00, 0, 0, 0x00, 0, 0),
  1253. MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
  1254. MIX_ENT(SOUND_MIXER_RECLEV, 0xb4, 7, 4, 0xb4, 3, 4),
  1255. MIX_ENT(SOUND_MIXER_IGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1256. MIX_ENT(SOUND_MIXER_OGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1257. MIX_ENT(SOUND_MIXER_LINE1, 0x00, 0, 0, 0x00, 0, 0),
  1258. MIX_ENT(SOUND_MIXER_LINE2, 0x3a, 7, 4, 0x3a, 3, 4),
  1259. MIX_ENT(SOUND_MIXER_LINE3, 0x00, 0, 0, 0x00, 0, 0)
  1260. };
  1261. /*
  1262.  * This one is for all ESS chips with a record mixer.
  1263.  * It's not used (yet) however
  1264.  */
  1265. static mixer_tab es_rec_mix = {
  1266. MIX_ENT(SOUND_MIXER_VOLUME, 0x60, 5, 6, 0x62, 5, 6),
  1267. MIX_ENT(SOUND_MIXER_BASS, 0x00, 0, 0, 0x00, 0, 0),
  1268. MIX_ENT(SOUND_MIXER_TREBLE, 0x00, 0, 0, 0x00, 0, 0),
  1269. MIX_ENT(SOUND_MIXER_SYNTH, 0x36, 7, 4, 0x36, 3, 4),
  1270. MIX_ENT(SOUND_MIXER_PCM, 0x14, 7, 4, 0x14, 3, 4),
  1271. MIX_ENT(SOUND_MIXER_SPEAKER, 0x3c, 2, 3, 0x00, 0, 0),
  1272. MIX_ENT(SOUND_MIXER_LINE, 0x3e, 7, 4, 0x3e, 3, 4),
  1273. MIX_ENT(SOUND_MIXER_MIC, 0x1a, 7, 4, 0x1a, 3, 4),
  1274. MIX_ENT(SOUND_MIXER_CD, 0x38, 7, 4, 0x38, 3, 4),
  1275. MIX_ENT(SOUND_MIXER_IMIX, 0x00, 0, 0, 0x00, 0, 0),
  1276. MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
  1277. MIX_ENT(SOUND_MIXER_RECLEV, 0xb4, 7, 4, 0xb4, 3, 4),
  1278. MIX_ENT(SOUND_MIXER_IGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1279. MIX_ENT(SOUND_MIXER_OGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1280. MIX_ENT(SOUND_MIXER_LINE1, 0x00, 0, 0, 0x00, 0, 0),
  1281. MIX_ENT(SOUND_MIXER_LINE2, 0x3a, 7, 4, 0x3a, 3, 4),
  1282. MIX_ENT(SOUND_MIXER_LINE3, 0x00, 0, 0, 0x00, 0, 0),
  1283. MIX_ENT(ES_REC_MIXER_RECSYNTH, 0x6b, 7, 4, 0x6b, 3, 4),
  1284. MIX_ENT(ES_REC_MIXER_RECPCM, 0x00, 0, 0, 0x00, 0, 0),
  1285. MIX_ENT(ES_REC_MIXER_RECSPEAKER, 0x00, 0, 0, 0x00, 0, 0),
  1286. MIX_ENT(ES_REC_MIXER_RECLINE, 0x6e, 7, 4, 0x6e, 3, 4),
  1287. MIX_ENT(ES_REC_MIXER_RECMIC, 0x68, 7, 4, 0x68, 3, 4),
  1288. MIX_ENT(ES_REC_MIXER_RECCD, 0x6a, 7, 4, 0x6a, 3, 4),
  1289. MIX_ENT(ES_REC_MIXER_RECIMIX, 0x00, 0, 0, 0x00, 0, 0),
  1290. MIX_ENT(ES_REC_MIXER_RECALTPCM, 0x00, 0, 0, 0x00, 0, 0),
  1291. MIX_ENT(ES_REC_MIXER_RECRECLEV, 0x00, 0, 0, 0x00, 0, 0),
  1292. MIX_ENT(ES_REC_MIXER_RECIGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1293. MIX_ENT(ES_REC_MIXER_RECOGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1294. MIX_ENT(ES_REC_MIXER_RECLINE1, 0x00, 0, 0, 0x00, 0, 0),
  1295. MIX_ENT(ES_REC_MIXER_RECLINE2, 0x6c, 7, 4, 0x6c, 3, 4),
  1296. MIX_ENT(ES_REC_MIXER_RECLINE3, 0x00, 0, 0, 0x00, 0, 0)
  1297. };
  1298. /*
  1299.  * This one is for ES1887. It's little different from es_rec_mix: it
  1300.  * has 0x7c for PCM playback level. This is because ES1887 uses
  1301.  * Audio 2 for playback.
  1302.  */
  1303. static mixer_tab es1887_mix = {
  1304. MIX_ENT(SOUND_MIXER_VOLUME, 0x60, 5, 6, 0x62, 5, 6),
  1305. MIX_ENT(SOUND_MIXER_BASS, 0x00, 0, 0, 0x00, 0, 0),
  1306. MIX_ENT(SOUND_MIXER_TREBLE, 0x00, 0, 0, 0x00, 0, 0),
  1307. MIX_ENT(SOUND_MIXER_SYNTH, 0x36, 7, 4, 0x36, 3, 4),
  1308. MIX_ENT(SOUND_MIXER_PCM, 0x7c, 7, 4, 0x7c, 3, 4),
  1309. MIX_ENT(SOUND_MIXER_SPEAKER, 0x3c, 2, 3, 0x00, 0, 0),
  1310. MIX_ENT(SOUND_MIXER_LINE, 0x3e, 7, 4, 0x3e, 3, 4),
  1311. MIX_ENT(SOUND_MIXER_MIC, 0x1a, 7, 4, 0x1a, 3, 4),
  1312. MIX_ENT(SOUND_MIXER_CD, 0x38, 7, 4, 0x38, 3, 4),
  1313. MIX_ENT(SOUND_MIXER_IMIX, 0x00, 0, 0, 0x00, 0, 0),
  1314. MIX_ENT(SOUND_MIXER_ALTPCM, 0x00, 0, 0, 0x00, 0, 0),
  1315. MIX_ENT(SOUND_MIXER_RECLEV, 0xb4, 7, 4, 0xb4, 3, 4),
  1316. MIX_ENT(SOUND_MIXER_IGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1317. MIX_ENT(SOUND_MIXER_OGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1318. MIX_ENT(SOUND_MIXER_LINE1, 0x00, 0, 0, 0x00, 0, 0),
  1319. MIX_ENT(SOUND_MIXER_LINE2, 0x3a, 7, 4, 0x3a, 3, 4),
  1320. MIX_ENT(SOUND_MIXER_LINE3, 0x00, 0, 0, 0x00, 0, 0),
  1321. MIX_ENT(ES_REC_MIXER_RECSYNTH, 0x6b, 7, 4, 0x6b, 3, 4),
  1322. MIX_ENT(ES_REC_MIXER_RECPCM, 0x00, 0, 0, 0x00, 0, 0),
  1323. MIX_ENT(ES_REC_MIXER_RECSPEAKER, 0x00, 0, 0, 0x00, 0, 0),
  1324. MIX_ENT(ES_REC_MIXER_RECLINE, 0x6e, 7, 4, 0x6e, 3, 4),
  1325. MIX_ENT(ES_REC_MIXER_RECMIC, 0x68, 7, 4, 0x68, 3, 4),
  1326. MIX_ENT(ES_REC_MIXER_RECCD, 0x6a, 7, 4, 0x6a, 3, 4),
  1327. MIX_ENT(ES_REC_MIXER_RECIMIX, 0x00, 0, 0, 0x00, 0, 0),
  1328. MIX_ENT(ES_REC_MIXER_RECALTPCM, 0x00, 0, 0, 0x00, 0, 0),
  1329. MIX_ENT(ES_REC_MIXER_RECRECLEV, 0x00, 0, 0, 0x00, 0, 0),
  1330. MIX_ENT(ES_REC_MIXER_RECIGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1331. MIX_ENT(ES_REC_MIXER_RECOGAIN, 0x00, 0, 0, 0x00, 0, 0),
  1332. MIX_ENT(ES_REC_MIXER_RECLINE1, 0x00, 0, 0, 0x00, 0, 0),
  1333. MIX_ENT(ES_REC_MIXER_RECLINE2, 0x6c, 7, 4, 0x6c, 3, 4),
  1334. MIX_ENT(ES_REC_MIXER_RECLINE3, 0x00, 0, 0, 0x00, 0, 0)
  1335. };
  1336. static int ess_has_rec_mixer (int submodel)
  1337. {
  1338. switch (submodel) {
  1339. case SUBMDL_ES1887:
  1340. return 1;
  1341. default:
  1342. return 0;
  1343. };
  1344. };
  1345. #ifdef FKS_LOGGING
  1346. static int ess_mixer_mon_regs[]
  1347. = { 0x70, 0x71, 0x72, 0x74, 0x76, 0x78, 0x7a, 0x7c, 0x7d, 0x7f
  1348.   , 0xa1, 0xa2, 0xa4, 0xa5, 0xa8, 0xa9
  1349.   , 0xb1, 0xb2, 0xb4, 0xb5, 0xb6, 0xb7, 0xb9
  1350.   , 0x00};
  1351. static void ess_show_mixerregs (sb_devc *devc)
  1352. {
  1353. int *mp = ess_mixer_mon_regs;
  1354. return;
  1355. while (*mp != 0) {
  1356. printk (KERN_INFO "res (%x)=%xn", *mp, (int)(ess_getmixer (devc, *mp)));
  1357. mp++;
  1358. }
  1359. }
  1360. #endif
  1361. void ess_setmixer (sb_devc * devc, unsigned int port, unsigned int value)
  1362. {
  1363. unsigned long flags;
  1364. #ifdef FKS_LOGGING
  1365. printk(KERN_INFO "FKS: write mixer %x: %xn", port, value);
  1366. #endif
  1367. spin_lock_irqsave(&devc->lock, flags);
  1368. if (port >= 0xa0) {
  1369. ess_write (devc, port, value);
  1370. } else {
  1371. outb(((unsigned char) (port & 0xff)), MIXER_ADDR);
  1372. udelay(20);
  1373. outb(((unsigned char) (value & 0xff)), MIXER_DATA);
  1374. udelay(20);
  1375. };
  1376. spin_unlock_irqrestore(&devc->lock, flags);
  1377. }
  1378. unsigned int ess_getmixer (sb_devc * devc, unsigned int port)
  1379. {
  1380. unsigned int val;
  1381. unsigned long flags;
  1382. spin_lock_irqsave(&devc->lock, flags);
  1383. if (port >= 0xa0) {
  1384. val = ess_read (devc, port);
  1385. } else {
  1386. outb(((unsigned char) (port & 0xff)), MIXER_ADDR);
  1387. udelay(20);
  1388. val = inb(MIXER_DATA);
  1389. udelay(20);
  1390. }
  1391. spin_unlock_irqrestore(&devc->lock, flags);
  1392. return val;
  1393. }
  1394. static void ess_chgmixer
  1395. (sb_devc * devc, unsigned int reg, unsigned int mask, unsigned int val)
  1396. {
  1397. int value;
  1398. value = ess_getmixer (devc, reg);
  1399. value = (value & ~mask) | (val & mask);
  1400. ess_setmixer (devc, reg, value);
  1401. }
  1402. /*
  1403.  * ess_mixer_init must be called from sb_mixer_init
  1404.  */
  1405. void ess_mixer_init (sb_devc * devc)
  1406. {
  1407. devc->mixer_caps = SOUND_CAP_EXCL_INPUT;
  1408. /*
  1409. * Take care of ES1887 specifics...
  1410. */
  1411. switch (devc->submodel) {
  1412. case SUBMDL_ES1887:
  1413. devc->supported_devices = ES1887_MIXER_DEVICES;
  1414. devc->supported_rec_devices = ES1887_RECORDING_DEVICES;
  1415. #ifdef FKS_LOGGING
  1416. printk (KERN_INFO "FKS: ess_mixer_init dup = %dn", devc->duplex);
  1417. #endif
  1418. if (devc->duplex) {
  1419. devc->iomap = &es1887_mix;
  1420. } else {
  1421. devc->iomap = &es_rec_mix;
  1422. }
  1423. break;
  1424. default:
  1425. if (devc->submodel < 8) {
  1426. devc->supported_devices = ES688_MIXER_DEVICES;
  1427. devc->supported_rec_devices = ES688_RECORDING_DEVICES;
  1428. devc->iomap = &es688_mix;
  1429. } else {
  1430. /*
  1431.  * es1688 has 4 bits master vol.
  1432.  * later chips have 6 bits (?)
  1433.  */
  1434. devc->supported_devices = ES1688_MIXER_DEVICES;
  1435. devc->supported_rec_devices = ES1688_RECORDING_DEVICES;
  1436. if (devc->submodel < 0x10) {
  1437. devc->iomap = &es1688_mix;
  1438. } else {
  1439. devc->iomap = &es1688later_mix;
  1440. }
  1441. }
  1442. }
  1443. }
  1444. /*
  1445.  * Changing playback levels at an ESS chip with record mixer means having to
  1446.  * take care of recording levels of recorded inputs (devc->recmask) too!
  1447.  */
  1448. int ess_mixer_set(sb_devc *devc, int dev, int left, int right)
  1449. {
  1450. if (ess_has_rec_mixer (devc->submodel) && (devc->recmask & (1 << dev))) {
  1451. sb_common_mixer_set (devc, dev + ES_REC_MIXER_RECDIFF, left, right);
  1452. }
  1453. return sb_common_mixer_set (devc, dev, left, right);
  1454. }
  1455. /*
  1456.  * After a sb_dsp_reset extended register 0xb4 (RECLEV) is reset too. After
  1457.  * sb_dsp_reset RECLEV has to be restored. This is where ess_mixer_reload
  1458.  * helps.
  1459.  */
  1460. void ess_mixer_reload (sb_devc *devc, int dev)
  1461. {
  1462. int left, right, value;
  1463. value = devc->levels[dev];
  1464. left  = value & 0x000000ff;
  1465. right = (value & 0x0000ff00) >> 8;
  1466. sb_common_mixer_set(devc, dev, left, right);
  1467. }
  1468. int es_rec_set_recmask(sb_devc * devc, int mask)
  1469. {
  1470. int i, i_mask, cur_mask, diff_mask;
  1471. int value, left, right;
  1472. #ifdef FKS_LOGGING
  1473. printk (KERN_INFO "FKS: es_rec_set_recmask mask = %xn", mask);
  1474. #endif
  1475. /*
  1476.  * Changing the recmask on an ESS chip with recording mixer means:
  1477.  * (1) Find the differences
  1478.  * (2) For "turned-on"  inputs: make the recording level the playback level
  1479.  * (3) For "turned-off" inputs: make the recording level zero
  1480.  */
  1481. cur_mask  = devc->recmask;
  1482. diff_mask = (cur_mask ^ mask);
  1483. for (i = 0; i < 32; i++) {
  1484. i_mask = (1 << i);
  1485. if (diff_mask & i_mask) { /* Difference? (1)  */
  1486. if (mask & i_mask) { /* Turn it on  (2)  */
  1487. value = devc->levels[i];
  1488. left  = value & 0x000000ff;
  1489. right = (value & 0x0000ff00) >> 8;
  1490. } else { /* Turn it off (3)  */
  1491. left  = 0;
  1492. left  = 0;
  1493. right = 0;
  1494. }
  1495. sb_common_mixer_set(devc, i + ES_REC_MIXER_RECDIFF, left, right);
  1496. }
  1497. }
  1498. return mask;
  1499. }
  1500. int ess_set_recmask(sb_devc * devc, int *mask)
  1501. {
  1502. /* This applies to ESS chips with record mixers only! */
  1503. if (ess_has_rec_mixer (devc->submodel)) {
  1504. *mask = es_rec_set_recmask (devc, *mask);
  1505. return 1; /* Applied */
  1506. } else {
  1507. return 0; /* Not applied */
  1508. }
  1509. }
  1510. /*
  1511.  * ess_mixer_reset must be called from sb_mixer_reset
  1512.  */
  1513. int ess_mixer_reset (sb_devc * devc)
  1514. {
  1515. /*
  1516.  * Separate actions for ESS chips with a record mixer:
  1517.  */
  1518. if (ess_has_rec_mixer (devc->submodel)) {
  1519. switch (devc->submodel) {
  1520. case SUBMDL_ES1887:
  1521. /*
  1522.  * Separate actions for ES1887:
  1523.  * Change registers 7a and 1c to make the record mixer the
  1524.  * actual recording source.
  1525.  */
  1526. ess_chgmixer(devc, 0x7a, 0x18, 0x08);
  1527. ess_chgmixer(devc, 0x1c, 0x07, 0x07);
  1528. break;
  1529. };
  1530. /*
  1531.  * Call set_recmask for proper initialization
  1532.  */
  1533. devc->recmask = devc->supported_rec_devices;
  1534. es_rec_set_recmask(devc, 0);
  1535. devc->recmask = 0;
  1536. return 1; /* We took care of recmask. */
  1537. } else {
  1538. return 0; /* We didn't take care; caller do it */
  1539. }
  1540. }
  1541. /****************************************************************************
  1542.  * *
  1543.  * ESS midi *
  1544.  * *
  1545.  ****************************************************************************/
  1546. /*
  1547.  * FKS: IRQ may be shared. Hm. And if so? Then What?
  1548.  */
  1549. int ess_midi_init(sb_devc * devc, struct address_info *hw_config)
  1550. {
  1551. unsigned char   cfg, tmp;
  1552. cfg = ess_getmixer (devc, 0x40) & 0x03;
  1553. if (devc->submodel < 8) {
  1554. ess_setmixer (devc, 0x40, cfg | 0x03); /* Enable OPL3 & joystick */
  1555. return 0;    /* ES688 doesn't support MPU401 mode */
  1556. }
  1557. tmp = (hw_config->io_base & 0x0f0) >> 4;
  1558. if (tmp > 3) {
  1559. ess_setmixer (devc, 0x40, cfg);
  1560. return 0;
  1561. }
  1562. cfg |= tmp << 3;
  1563. tmp = 1; /* MPU enabled without interrupts */
  1564. /* May be shared: if so the value is -ve */
  1565. switch (abs(hw_config->irq)) {
  1566. case 9:
  1567. tmp = 0x4;
  1568. break;
  1569. case 5:
  1570. tmp = 0x5;
  1571. break;
  1572. case 7:
  1573. tmp = 0x6;
  1574. break;
  1575. case 10:
  1576. tmp = 0x7;
  1577. break;
  1578. default:
  1579. return 0;
  1580. }
  1581. cfg |= tmp << 5;
  1582. ess_setmixer (devc, 0x40, cfg | 0x03);
  1583. return 1;
  1584. }