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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*  -*- linux-c -*-
  2.  *
  3.  * sound/wavfront.c
  4.  *
  5.  * A Linux driver for Turtle Beach WaveFront Series (Maui, Tropez, Tropez Plus)
  6.  *
  7.  * This driver supports the onboard wavetable synthesizer (an ICS2115),
  8.  * including patch, sample and program loading and unloading, conversion
  9.  * of GUS patches during loading, and full user-level access to all
  10.  * WaveFront commands. It tries to provide semi-intelligent patch and
  11.  * sample management as well.
  12.  *
  13.  * It also provides support for the ICS emulation of an MPU-401.  Full
  14.  * support for the ICS emulation's "virtual MIDI mode" is provided in
  15.  * wf_midi.c.
  16.  *
  17.  * Support is also provided for the Tropez Plus' onboard FX processor,
  18.  * a Yamaha YSS225. Currently, code exists to configure the YSS225,
  19.  * and there is an interface allowing tweaking of any of its memory
  20.  * addresses. However, I have been unable to decipher the logical
  21.  * positioning of the configuration info for various effects, so for
  22.  * now, you just get the YSS225 in the same state as Turtle Beach's
  23.  * "SETUPSND.EXE" utility leaves it.
  24.  *
  25.  * The boards' DAC/ADC (a Crystal CS4232) is supported by cs4232.[co],
  26.  * This chip also controls the configuration of the card: the wavefront
  27.  * synth is logical unit 4.
  28.  *
  29.  *
  30.  * Supported devices:
  31.  *
  32.  *   /dev/dsp                      - using cs4232+ad1848 modules, OSS compatible
  33.  *   /dev/midiNN and /dev/midiNN+1 - using wf_midi code, OSS compatible
  34.  *   /dev/synth00                  - raw synth interface
  35.  * 
  36.  **********************************************************************
  37.  *
  38.  * Copyright (C) by Paul Barton-Davis 1998
  39.  *
  40.  * Some portions of this file are taken from work that is
  41.  * copyright (C) by Hannu Savolainen 1993-1996
  42.  *
  43.  * Although the relevant code here is all new, the handling of
  44.  * sample/alias/multi- samples is entirely based on a driver by Matt
  45.  * Martin and Rutger Nijlunsing which demonstrated how to get things
  46.  * to work correctly. The GUS patch loading code has been almost
  47.  * unaltered by me, except to fit formatting and function names in the
  48.  * rest of the file. Many thanks to them.
  49.  *
  50.  * Appreciation and thanks to Hannu Savolainen for his early work on the Maui
  51.  * driver, and answering a few questions while this one was developed.
  52.  *
  53.  * Absolutely NO thanks to Turtle Beach/Voyetra and Yamaha for their
  54.  * complete lack of help in developing this driver, and in particular
  55.  * for their utter silence in response to questions about undocumented
  56.  * aspects of configuring a WaveFront soundcard, particularly the
  57.  * effects processor.
  58.  *
  59.  * $Id: wavfront.c,v 0.7 1998/09/09 15:47:36 pbd Exp $
  60.  *
  61.  * This program is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  62.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  63.  * for more info.
  64.  *
  65.  * Changes:
  66.  * 11-10-2000 Bartlomiej Zolnierkiewicz <bkz@linux-ide.org>
  67.  * Added some __init and __initdata to entries in yss225.c
  68.  */
  69. #include <linux/module.h>
  70. #include <linux/kernel.h>
  71. #include <linux/init.h>
  72. #include <linux/sched.h>
  73. #include <linux/smp_lock.h>
  74. #include <linux/ptrace.h>
  75. #include <linux/fcntl.h>
  76. #include <linux/ioport.h>    
  77. #include <linux/interrupt.h>
  78. #include <linux/config.h>
  79. #include <linux/delay.h>
  80. #include "sound_config.h"
  81. #include <linux/wavefront.h>
  82. #define _MIDI_SYNTH_C_
  83. #define MIDI_SYNTH_NAME "WaveFront MIDI"
  84. #define MIDI_SYNTH_CAPS SYNTH_CAP_INPUT
  85. #include "midi_synth.h"
  86. /* Compile-time control of the extent to which OSS is supported.
  87.    I consider /dev/sequencer to be an anachronism, but given its
  88.    widespread usage by various Linux MIDI software, it seems worth
  89.    offering support to it if its not too painful. Instead of using
  90.    /dev/sequencer, I recommend:
  91.      for synth programming and patch loading: /dev/synthNN
  92.      for kernel-synchronized MIDI sequencing: the ALSA sequencer
  93.      for direct MIDI control: /dev/midiNN
  94.    I have never tried static compilation into the kernel. The #if's
  95.    for this are really just notes to myself about what the code is
  96.    for.
  97. */
  98. #define OSS_SUPPORT_SEQ            0x1  /* use of /dev/sequencer */
  99. #define OSS_SUPPORT_STATIC_INSTALL 0x2  /* static compilation into kernel */
  100. #define OSS_SUPPORT_LEVEL          0x1  /* just /dev/sequencer for now */
  101. #if    OSS_SUPPORT_LEVEL & OSS_SUPPORT_SEQ
  102. static int (*midi_load_patch) (int devno, int format, const char *addr,
  103.        int offs, int count, int pmgr_flag) = NULL;
  104. #endif /* OSS_SUPPORT_SEQ */
  105. /* if WF_DEBUG not defined, no run-time debugging messages will
  106.    be available via the debug flag setting. Given the current
  107.    beta state of the driver, this will remain set until a future 
  108.    version.
  109. */
  110. #define WF_DEBUG 1
  111. #ifdef WF_DEBUG
  112. /* Thank goodness for gcc's preprocessor ... */
  113. #define DPRINT(cond, format, args...) 
  114.        if ((dev.debug & (cond)) == (cond)) { 
  115.      printk (KERN_DEBUG LOGNAME format, ## args); 
  116.        }
  117. #else
  118. #define DPRINT(cond, format, args...)
  119. #endif
  120. #define LOGNAME "WaveFront: "
  121. /* bitmasks for WaveFront status port value */
  122. #define STAT_RINTR_ENABLED 0x01
  123. #define STAT_CAN_READ 0x02
  124. #define STAT_INTR_READ 0x04
  125. #define STAT_WINTR_ENABLED 0x10
  126. #define STAT_CAN_WRITE 0x20
  127. #define STAT_INTR_WRITE 0x40
  128. /*** Module-accessible parameters ***************************************/
  129. int wf_raw;     /* we normally check for "raw state" to firmware
  130.    loading. if set, then during driver loading, the
  131.    state of the board is ignored, and we reset the
  132.    board and load the firmware anyway.
  133. */
  134.    
  135. int fx_raw = 1; /* if this is zero, we'll leave the FX processor in
  136.    whatever state it is when the driver is loaded.
  137.    The default is to download the microprogram and
  138.    associated coefficients to set it up for "default"
  139.    operation, whatever that means.
  140. */
  141. int debug_default;      /* you can set this to control debugging
  142.       during driver loading. it takes any combination
  143.       of the WF_DEBUG_* flags defined in
  144.       wavefront.h
  145.    */
  146. /* XXX this needs to be made firmware and hardware version dependent */
  147. char *ospath = "/etc/sound/wavefront.os"; /* where to find a processed
  148.      version of the WaveFront OS
  149.   */
  150. int wait_polls = 2000; /* This is a number of tries we poll the status register
  151.    before resorting to sleeping. WaveFront being an ISA
  152.    card each poll takes about 1.2us. So before going to
  153.    sleep we wait up to 2.4ms in a loop.
  154. */
  155. int sleep_length = HZ/100; /* This says how long we're going to sleep between polls.
  156.       10ms sounds reasonable for fast response.
  157.    */
  158. int sleep_tries = 50;       /* Wait for status 0.5 seconds total. */
  159. int reset_time = 2;        /* hundreths of a second we wait after a HW reset for
  160.       the expected interrupt.
  161.    */
  162. int ramcheck_time = 20;    /* time in seconds to wait while ROM code
  163.       checks on-board RAM.
  164.    */
  165. int osrun_time = 10;       /* time in seconds we wait for the OS to
  166.       start running.
  167.    */
  168. MODULE_PARM(wf_raw,"i");
  169. MODULE_PARM(fx_raw,"i");
  170. MODULE_PARM(debug_default,"i");
  171. MODULE_PARM(wait_polls,"i");
  172. MODULE_PARM(sleep_length,"i");
  173. MODULE_PARM(sleep_tries,"i");
  174. MODULE_PARM(ospath,"s");
  175. MODULE_PARM(reset_time,"i");
  176. MODULE_PARM(ramcheck_time,"i");
  177. MODULE_PARM(osrun_time,"i");
  178. /***************************************************************************/
  179. /* Note: because this module doesn't export any symbols, this really isn't
  180.    a global variable, even if it looks like one. I was quite confused by
  181.    this when I started writing this as a (newer) module -- pbd.
  182. */
  183. struct wf_config {
  184. int devno;            /* device number from kernel */
  185. int irq;              /* "you were one, one of the few ..." */
  186. int base;             /* low i/o port address */
  187. #define mpu_data_port    base 
  188. #define mpu_command_port base + 1 /* write semantics */
  189. #define mpu_status_port  base + 1 /* read semantics */
  190. #define data_port        base + 2 
  191. #define status_port      base + 3 /* read semantics */
  192. #define control_port     base + 3 /* write semantics  */
  193. #define block_port       base + 4 /* 16 bit, writeonly */
  194. #define last_block_port  base + 6 /* 16 bit, writeonly */
  195. /* FX ports. These are mapped through the ICS2115 to the YS225.
  196.    The ICS2115 takes care of flipping the relevant pins on the
  197.    YS225 so that access to each of these ports does the right
  198.    thing. Note: these are NOT documented by Turtle Beach.
  199. */
  200. #define fx_status       base + 8 
  201. #define fx_op           base + 8 
  202. #define fx_lcr          base + 9 
  203. #define fx_dsp_addr     base + 0xa
  204. #define fx_dsp_page     base + 0xb 
  205. #define fx_dsp_lsb      base + 0xc 
  206. #define fx_dsp_msb      base + 0xd 
  207. #define fx_mod_addr     base + 0xe
  208. #define fx_mod_data     base + 0xf 
  209. volatile int irq_ok;               /* set by interrupt handler */
  210.         volatile int irq_cnt;              /* ditto */
  211. int opened;                        /* flag, holds open(2) mode */
  212. char debug;                        /* debugging flags */
  213. int freemem;                       /* installed RAM, in bytes */ 
  214. int synth_dev;                     /* devno for "raw" synth */
  215. int mididev;                       /* devno for internal MIDI */
  216. int ext_mididev;                   /* devno for external MIDI */ 
  217.         int fx_mididev;                    /* devno for FX MIDI interface */
  218. #if OSS_SUPPORT_LEVEL & OSS_SUPPORT_SEQ
  219. int oss_dev;                      /* devno for OSS sequencer synth */
  220. #endif /* OSS_SUPPORT_SEQ */
  221. char fw_version[2];                /* major = [0], minor = [1] */
  222. char hw_version[2];                /* major = [0], minor = [1] */
  223. char israw;                        /* needs Motorola microcode */
  224. char has_fx;                       /* has FX processor (Tropez+) */
  225. char prog_status[WF_MAX_PROGRAM];  /* WF_SLOT_* */
  226. char patch_status[WF_MAX_PATCH];   /* WF_SLOT_* */
  227. char sample_status[WF_MAX_SAMPLE]; /* WF_ST_* | WF_SLOT_* */
  228. int samples_used;                  /* how many */
  229. char interrupts_on;                /* h/w MPU interrupts enabled ? */
  230. char rom_samples_rdonly;           /* can we write on ROM samples */
  231. wait_queue_head_t interrupt_sleeper; 
  232. } dev;
  233. static int  detect_wffx(void);
  234. static int  wffx_ioctl (wavefront_fx_info *);
  235. static int  wffx_init (void);
  236. static int wavefront_delete_sample (int sampnum);
  237. static int wavefront_find_free_sample (void);
  238. /* From wf_midi.c */
  239. extern int  virtual_midi_enable  (void);
  240. extern int  virtual_midi_disable (void);
  241. extern int  detect_wf_mpu (int, int);
  242. extern int  install_wf_mpu (void);
  243. extern int  uninstall_wf_mpu (void);
  244. typedef struct {
  245. int cmd;
  246. char *action;
  247. unsigned int read_cnt;
  248. unsigned int write_cnt;
  249. int need_ack;
  250. } wavefront_command;
  251. static struct {
  252. int errno;
  253. const char *errstr;
  254. } wavefront_errors[] = {
  255. { 0x01, "Bad sample number" },
  256. { 0x02, "Out of sample memory" },
  257. { 0x03, "Bad patch number" },
  258. { 0x04, "Error in number of voices" },
  259. { 0x06, "Sample load already in progress" },
  260. { 0x0B, "No sample load request pending" },
  261. { 0x0E, "Bad MIDI channel number" },
  262. { 0x10, "Download Record Error" },
  263. { 0x80, "Success" },
  264. { 0x0, 0x0 }
  265. };
  266. #define NEEDS_ACK 1
  267. static wavefront_command wavefront_commands[] = {
  268. { WFC_SET_SYNTHVOL, "set synthesizer volume", 0, 1, NEEDS_ACK },
  269. { WFC_GET_SYNTHVOL, "get synthesizer volume", 1, 0, 0},
  270. { WFC_SET_NVOICES, "set number of voices", 0, 1, NEEDS_ACK },
  271. { WFC_GET_NVOICES, "get number of voices", 1, 0, 0 },
  272. { WFC_SET_TUNING, "set synthesizer tuning", 0, 2, NEEDS_ACK },
  273. { WFC_GET_TUNING, "get synthesizer tuning", 2, 0, 0 },
  274. { WFC_DISABLE_CHANNEL, "disable synth channel", 0, 1, NEEDS_ACK },
  275. { WFC_ENABLE_CHANNEL, "enable synth channel", 0, 1, NEEDS_ACK },
  276. { WFC_GET_CHANNEL_STATUS, "get synth channel status", 3, 0, 0 },
  277. { WFC_MISYNTH_OFF, "disable midi-in to synth", 0, 0, NEEDS_ACK },
  278. { WFC_MISYNTH_ON, "enable midi-in to synth", 0, 0, NEEDS_ACK },
  279. { WFC_VMIDI_ON, "enable virtual midi mode", 0, 0, NEEDS_ACK },
  280. { WFC_VMIDI_OFF, "disable virtual midi mode", 0, 0, NEEDS_ACK },
  281. { WFC_MIDI_STATUS, "report midi status", 1, 0, 0 },
  282. { WFC_FIRMWARE_VERSION, "report firmware version", 2, 0, 0 },
  283. { WFC_HARDWARE_VERSION, "report hardware version", 2, 0, 0 },
  284. { WFC_GET_NSAMPLES, "report number of samples", 2, 0, 0 },
  285. { WFC_INSTOUT_LEVELS, "report instantaneous output levels", 7, 0, 0 },
  286. { WFC_PEAKOUT_LEVELS, "report peak output levels", 7, 0, 0 },
  287. { WFC_DOWNLOAD_SAMPLE, "download sample",
  288.   0, WF_SAMPLE_BYTES, NEEDS_ACK },
  289. { WFC_DOWNLOAD_BLOCK, "download block", 0, 0, NEEDS_ACK},
  290. { WFC_DOWNLOAD_SAMPLE_HEADER, "download sample header",
  291.   0, WF_SAMPLE_HDR_BYTES, NEEDS_ACK },
  292. { WFC_UPLOAD_SAMPLE_HEADER, "upload sample header", 13, 2, 0 },
  293. /* This command requires a variable number of bytes to be written.
  294.    There is a hack in wavefront_cmd() to support this. The actual
  295.    count is passed in as the read buffer ptr, cast appropriately.
  296.    Ugh.
  297. */
  298. { WFC_DOWNLOAD_MULTISAMPLE, "download multisample", 0, 0, NEEDS_ACK },
  299. /* This one is a hack as well. We just read the first byte of the
  300.    response, don't fetch an ACK, and leave the rest to the 
  301.    calling function. Ugly, ugly, ugly.
  302. */
  303. { WFC_UPLOAD_MULTISAMPLE, "upload multisample", 2, 1, 0 },
  304. { WFC_DOWNLOAD_SAMPLE_ALIAS, "download sample alias",
  305.   0, WF_ALIAS_BYTES, NEEDS_ACK },
  306. { WFC_UPLOAD_SAMPLE_ALIAS, "upload sample alias", WF_ALIAS_BYTES, 2, 0},
  307. { WFC_DELETE_SAMPLE, "delete sample", 0, 2, NEEDS_ACK },
  308. { WFC_IDENTIFY_SAMPLE_TYPE, "identify sample type", 5, 2, 0 },
  309. { WFC_UPLOAD_SAMPLE_PARAMS, "upload sample parameters" },
  310. { WFC_REPORT_FREE_MEMORY, "report free memory", 4, 0, 0 },
  311. { WFC_DOWNLOAD_PATCH, "download patch", 0, 134, NEEDS_ACK },
  312. { WFC_UPLOAD_PATCH, "upload patch", 132, 2, 0 },
  313. { WFC_DOWNLOAD_PROGRAM, "download program", 0, 33, NEEDS_ACK },
  314. { WFC_UPLOAD_PROGRAM, "upload program", 32, 1, 0 },
  315. { WFC_DOWNLOAD_EDRUM_PROGRAM, "download enhanced drum program", 0, 9,
  316.   NEEDS_ACK},
  317. { WFC_UPLOAD_EDRUM_PROGRAM, "upload enhanced drum program", 8, 1, 0},
  318. { WFC_SET_EDRUM_CHANNEL, "set enhanced drum program channel",
  319.   0, 1, NEEDS_ACK },
  320. { WFC_DISABLE_DRUM_PROGRAM, "disable drum program", 0, 1, NEEDS_ACK },
  321. { WFC_REPORT_CHANNEL_PROGRAMS, "report channel program numbers",
  322.   32, 0, 0 },
  323. { WFC_NOOP, "the no-op command", 0, 0, NEEDS_ACK },
  324. { 0x00 }
  325. };
  326. static const char *
  327. wavefront_errorstr (int errnum)
  328. {
  329. int i;
  330. for (i = 0; wavefront_errors[i].errstr; i++) {
  331. if (wavefront_errors[i].errno == errnum) {
  332. return wavefront_errors[i].errstr;
  333. }
  334. }
  335. return "Unknown WaveFront error";
  336. }
  337. static wavefront_command *
  338. wavefront_get_command (int cmd) 
  339. {
  340. int i;
  341. for (i = 0; wavefront_commands[i].cmd != 0; i++) {
  342. if (cmd == wavefront_commands[i].cmd) {
  343. return &wavefront_commands[i];
  344. }
  345. }
  346. return (wavefront_command *) 0;
  347. }
  348. static inline int
  349. wavefront_status (void) 
  350. {
  351. return inb (dev.status_port);
  352. }
  353. static int
  354. wavefront_wait (int mask)
  355. {
  356. int i;
  357. for (i = 0; i < wait_polls; i++)
  358. if (wavefront_status() & mask)
  359. return 1;
  360. for (i = 0; i < sleep_tries; i++) {
  361. if (wavefront_status() & mask) {
  362. set_current_state(TASK_RUNNING);
  363. return 1;
  364. }
  365. set_current_state(TASK_INTERRUPTIBLE);
  366. schedule_timeout(sleep_length);
  367. if (signal_pending(current))
  368. break;
  369. }
  370. set_current_state(TASK_RUNNING);
  371. return 0;
  372. }
  373. static int
  374. wavefront_read (void)
  375. {
  376. if (wavefront_wait (STAT_CAN_READ))
  377. return inb (dev.data_port);
  378. DPRINT (WF_DEBUG_DATA, "read timeout.n");
  379. return -1;
  380. }
  381. static int
  382. wavefront_write (unsigned char data)
  383. {
  384. if (wavefront_wait (STAT_CAN_WRITE)) {
  385. outb (data, dev.data_port);
  386. return 0;
  387. }
  388. DPRINT (WF_DEBUG_DATA, "write timeout.n");
  389. return -1;
  390. }
  391. static int
  392. wavefront_cmd (int cmd, unsigned char *rbuf, unsigned char *wbuf)
  393. {
  394. int ack;
  395. int i;
  396. int c;
  397. wavefront_command *wfcmd;
  398. if ((wfcmd = wavefront_get_command (cmd)) == (wavefront_command *) 0) {
  399. printk (KERN_WARNING LOGNAME "command 0x%x not supported.n",
  400. cmd);
  401. return 1;
  402. }
  403. /* Hack to handle the one variable-size write command. See
  404.    wavefront_send_multisample() for the other half of this
  405.    gross and ugly strategy.
  406. */
  407. if (cmd == WFC_DOWNLOAD_MULTISAMPLE) {
  408. wfcmd->write_cnt = (unsigned int) rbuf;
  409. rbuf = 0;
  410. }
  411. DPRINT (WF_DEBUG_CMD, "0x%x [%s] (%d,%d,%d)n",
  412.        cmd, wfcmd->action, wfcmd->read_cnt,
  413.        wfcmd->write_cnt, wfcmd->need_ack);
  414.     
  415. if (wavefront_write (cmd)) { 
  416. DPRINT ((WF_DEBUG_IO|WF_DEBUG_CMD), "cannot request "
  417.      "0x%x [%s].n",
  418.      cmd, wfcmd->action);
  419. return 1;
  420. if (wfcmd->write_cnt > 0) {
  421. DPRINT (WF_DEBUG_DATA, "writing %d bytes "
  422. "for 0x%xn",
  423. wfcmd->write_cnt, cmd);
  424. for (i = 0; i < wfcmd->write_cnt; i++) {
  425. if (wavefront_write (wbuf[i])) {
  426. DPRINT (WF_DEBUG_IO, "bad write for byte "
  427.       "%d of 0x%x [%s].n",
  428.       i, cmd, wfcmd->action);
  429. return 1;
  430. }
  431. DPRINT (WF_DEBUG_DATA, "write[%d] = 0x%xn",
  432. i, wbuf[i]);
  433. }
  434. }
  435. if (wfcmd->read_cnt > 0) {
  436. DPRINT (WF_DEBUG_DATA, "reading %d ints "
  437. "for 0x%xn",
  438. wfcmd->read_cnt, cmd);
  439. for (i = 0; i < wfcmd->read_cnt; i++) {
  440. if ((c = wavefront_read()) == -1) {
  441. DPRINT (WF_DEBUG_IO, "bad read for byte "
  442.       "%d of 0x%x [%s].n",
  443.       i, cmd, wfcmd->action);
  444. return 1;
  445. }
  446. /* Now handle errors. Lots of special cases here */
  447.     
  448. if (c == 0xff) { 
  449. if ((c = wavefront_read ()) == -1) {
  450. DPRINT (WF_DEBUG_IO, "bad read for "
  451.       "error byte at "
  452.       "read byte %d "
  453.       "of 0x%x [%s].n",
  454.       i, cmd,
  455.       wfcmd->action);
  456. return 1;
  457. }
  458. /* Can you believe this madness ? */
  459. if (c == 1 &&
  460.     wfcmd->cmd == WFC_IDENTIFY_SAMPLE_TYPE) {
  461. rbuf[0] = WF_ST_EMPTY;
  462. return (0);
  463. } else if (c == 3 &&
  464.    wfcmd->cmd == WFC_UPLOAD_PATCH) {
  465. return 3;
  466. } else if (c == 1 &&
  467.    wfcmd->cmd == WFC_UPLOAD_PROGRAM) {
  468. return 1;
  469. } else {
  470. DPRINT (WF_DEBUG_IO, "error %d (%s) "
  471.       "during "
  472.       "read for byte "
  473.       "%d of 0x%x "
  474.       "[%s].n",
  475.       c,
  476.       wavefront_errorstr (c),
  477.       i, cmd,
  478.       wfcmd->action);
  479. return 1;
  480. }
  481. } else {
  482. rbuf[i] = c;
  483. }
  484. DPRINT (WF_DEBUG_DATA, "read[%d] = 0x%xn",i, rbuf[i]);
  485. }
  486. }
  487. if ((wfcmd->read_cnt == 0 && wfcmd->write_cnt == 0) || wfcmd->need_ack) {
  488. DPRINT (WF_DEBUG_CMD, "reading ACK for 0x%xn", cmd);
  489. /* Some commands need an ACK, but return zero instead
  490.    of the standard value.
  491. */
  492.     
  493. if ((ack = wavefront_read()) == 0) {
  494. ack = WF_ACK;
  495. }
  496. if (ack != WF_ACK) {
  497. if (ack == -1) {
  498. DPRINT (WF_DEBUG_IO, "cannot read ack for "
  499.       "0x%x [%s].n",
  500.       cmd, wfcmd->action);
  501. return 1;
  502. } else {
  503. int err = -1; /* something unknown */
  504. if (ack == 0xff) { /* explicit error */
  505.     
  506. if ((err = wavefront_read ()) == -1) {
  507. DPRINT (WF_DEBUG_DATA,
  508. "cannot read err "
  509. "for 0x%x [%s].n",
  510. cmd, wfcmd->action);
  511. }
  512. }
  513. DPRINT (WF_DEBUG_IO, "0x%x [%s] "
  514. "failed (0x%x, 0x%x, %s)n",
  515. cmd, wfcmd->action, ack, err,
  516. wavefront_errorstr (err));
  517. return -err;
  518. }
  519. }
  520. DPRINT (WF_DEBUG_DATA, "ack received "
  521. "for 0x%x [%s]n",
  522. cmd, wfcmd->action);
  523. } else {
  524. DPRINT (WF_DEBUG_CMD, "0x%x [%s] does not need "
  525.        "ACK (%d,%d,%d)n",
  526.        cmd, wfcmd->action, wfcmd->read_cnt,
  527.        wfcmd->write_cnt, wfcmd->need_ack);
  528. }
  529. return 0;
  530. }
  531. /***********************************************************************
  532. WaveFront: data munging   
  533. Things here are weird. All data written to the board cannot 
  534. have its most significant bit set. Any data item with values 
  535. potentially > 0x7F (127) must be split across multiple bytes.
  536. Sometimes, we need to munge numeric values that are represented on
  537. the x86 side as 8-32 bit values. Sometimes, we need to munge data
  538. that is represented on the x86 side as an array of bytes. The most
  539. efficient approach to handling both cases seems to be to use 2
  540. different functions for munging and 2 for de-munging. This avoids
  541. weird casting and worrying about bit-level offsets.
  542. **********************************************************************/
  543. static 
  544. unsigned char *
  545. munge_int32 (unsigned int src,
  546.      unsigned char *dst,
  547.      unsigned int dst_size)
  548. {
  549. int i;
  550. for (i = 0;i < dst_size; i++) {
  551. *dst = src & 0x7F;  /* Mask high bit of LSB */
  552. src = src >> 7;     /* Rotate Right 7 bits  */
  553.                             /* Note: we leave the upper bits in place */ 
  554. dst++;
  555.   };
  556. return dst;
  557. };
  558. static int 
  559. demunge_int32 (unsigned char* src, int src_size)
  560. {
  561. int i;
  562.   int outval = 0;
  563.   for (i = src_size - 1; i >= 0; i--) {
  564. outval=(outval<<7)+src[i];
  565. }
  566. return outval;
  567. };
  568. static 
  569. unsigned char *
  570. munge_buf (unsigned char *src, unsigned char *dst, unsigned int dst_size)
  571. {
  572. int i;
  573. unsigned int last = dst_size / 2;
  574. for (i = 0; i < last; i++) {
  575. *dst++ = src[i] & 0x7f;
  576. *dst++ = src[i] >> 7;
  577. }
  578. return dst;
  579. }
  580. static 
  581. unsigned char *
  582. demunge_buf (unsigned char *src, unsigned char *dst, unsigned int src_bytes)
  583. {
  584. int i;
  585. unsigned char *end = src + src_bytes;
  586.     
  587. end = src + src_bytes;
  588. /* NOTE: src and dst *CAN* point to the same address */
  589. for (i = 0; src != end; i++) {
  590. dst[i] = *src++;
  591. dst[i] |= (*src++)<<7;
  592. }
  593. return dst;
  594. }
  595. /***********************************************************************
  596. WaveFront: sample, patch and program management.
  597. ***********************************************************************/
  598. static int
  599. wavefront_delete_sample (int sample_num)
  600. {
  601. unsigned char wbuf[2];
  602. int x;
  603. wbuf[0] = sample_num & 0x7f;
  604. wbuf[1] = sample_num >> 7;
  605. if ((x = wavefront_cmd (WFC_DELETE_SAMPLE, 0, wbuf)) == 0) {
  606. dev.sample_status[sample_num] = WF_ST_EMPTY;
  607. }
  608. return x;
  609. }
  610. static int
  611. wavefront_get_sample_status (int assume_rom)
  612. {
  613. int i;
  614. unsigned char rbuf[32], wbuf[32];
  615. unsigned int    sc_real, sc_alias, sc_multi;
  616. /* check sample status */
  617.     
  618. if (wavefront_cmd (WFC_GET_NSAMPLES, rbuf, wbuf)) {
  619. printk (KERN_WARNING LOGNAME "cannot request sample count.n");
  620. return -1;
  621.     
  622. sc_real = sc_alias = sc_multi = dev.samples_used = 0;
  623.     
  624. for (i = 0; i < WF_MAX_SAMPLE; i++) {
  625. wbuf[0] = i & 0x7f;
  626. wbuf[1] = i >> 7;
  627. if (wavefront_cmd (WFC_IDENTIFY_SAMPLE_TYPE, rbuf, wbuf)) {
  628. printk (KERN_WARNING LOGNAME
  629. "cannot identify sample "
  630. "type of slot %dn", i);
  631. dev.sample_status[i] = WF_ST_EMPTY;
  632. continue;
  633. }
  634. dev.sample_status[i] = (WF_SLOT_FILLED|rbuf[0]);
  635. if (assume_rom) {
  636. dev.sample_status[i] |= WF_SLOT_ROM;
  637. }
  638. switch (rbuf[0] & WF_ST_MASK) {
  639. case WF_ST_SAMPLE:
  640. sc_real++;
  641. break;
  642. case WF_ST_MULTISAMPLE:
  643. sc_multi++;
  644. break;
  645. case WF_ST_ALIAS:
  646. sc_alias++;
  647. break;
  648. case WF_ST_EMPTY:
  649. break;
  650. default:
  651. printk (KERN_WARNING LOGNAME "unknown sample type for "
  652. "slot %d (0x%x)n", 
  653. i, rbuf[0]);
  654. }
  655. if (rbuf[0] != WF_ST_EMPTY) {
  656. dev.samples_used++;
  657. }
  658. printk (KERN_INFO LOGNAME
  659. "%d samples used (%d real, %d aliases, %d multi), "
  660. "%d emptyn", dev.samples_used, sc_real, sc_alias, sc_multi,
  661. WF_MAX_SAMPLE - dev.samples_used);
  662. return (0);
  663. }
  664. static int
  665. wavefront_get_patch_status (void)
  666. {
  667. unsigned char patchbuf[WF_PATCH_BYTES];
  668. unsigned char patchnum[2];
  669. wavefront_patch *p;
  670. int i, x, cnt, cnt2;
  671. for (i = 0; i < WF_MAX_PATCH; i++) {
  672. patchnum[0] = i & 0x7f;
  673. patchnum[1] = i >> 7;
  674. if ((x = wavefront_cmd (WFC_UPLOAD_PATCH, patchbuf,
  675. patchnum)) == 0) {
  676. dev.patch_status[i] |= WF_SLOT_FILLED;
  677. p = (wavefront_patch *) patchbuf;
  678. dev.sample_status
  679. [p->sample_number|(p->sample_msb<<7)] |=
  680. WF_SLOT_USED;
  681.     
  682. } else if (x == 3) { /* Bad patch number */
  683. dev.patch_status[i] = 0;
  684. } else {
  685. printk (KERN_ERR LOGNAME "upload patch "
  686. "error 0x%xn", x);
  687. dev.patch_status[i] = 0;
  688. return 1;
  689. }
  690. }
  691. /* program status has already filled in slot_used bits */
  692. for (i = 0, cnt = 0, cnt2 = 0; i < WF_MAX_PATCH; i++) {
  693. if (dev.patch_status[i] & WF_SLOT_FILLED) {
  694. cnt++;
  695. }
  696. if (dev.patch_status[i] & WF_SLOT_USED) {
  697. cnt2++;
  698. }
  699. }
  700. printk (KERN_INFO LOGNAME
  701. "%d patch slots filled, %d in usen", cnt, cnt2);
  702. return (0);
  703. }
  704. static int
  705. wavefront_get_program_status (void)
  706. {
  707. unsigned char progbuf[WF_PROGRAM_BYTES];
  708. wavefront_program prog;
  709. unsigned char prognum;
  710. int i, x, l, cnt;
  711. for (i = 0; i < WF_MAX_PROGRAM; i++) {
  712. prognum = i;
  713. if ((x = wavefront_cmd (WFC_UPLOAD_PROGRAM, progbuf,
  714. &prognum)) == 0) {
  715. dev.prog_status[i] |= WF_SLOT_USED;
  716. demunge_buf (progbuf, (unsigned char *) &prog,
  717.      WF_PROGRAM_BYTES);
  718. for (l = 0; l < WF_NUM_LAYERS; l++) {
  719. if (prog.layer[l].mute) {
  720. dev.patch_status
  721. [prog.layer[l].patch_number] |=
  722. WF_SLOT_USED;
  723. }
  724. }
  725. } else if (x == 1) { /* Bad program number */
  726. dev.prog_status[i] = 0;
  727. } else {
  728. printk (KERN_ERR LOGNAME "upload program "
  729. "error 0x%xn", x);
  730. dev.prog_status[i] = 0;
  731. }
  732. }
  733. for (i = 0, cnt = 0; i < WF_MAX_PROGRAM; i++) {
  734. if (dev.prog_status[i]) {
  735. cnt++;
  736. }
  737. }
  738. printk (KERN_INFO LOGNAME "%d programs slots in usen", cnt);
  739. return (0);
  740. }
  741. static int
  742. wavefront_send_patch (wavefront_patch_info *header)
  743. {
  744. unsigned char buf[WF_PATCH_BYTES+2];
  745. unsigned char *bptr;
  746. DPRINT (WF_DEBUG_LOAD_PATCH, "downloading patch %dn",
  747.       header->number);
  748. dev.patch_status[header->number] |= WF_SLOT_FILLED;
  749. bptr = buf;
  750. bptr = munge_int32 (header->number, buf, 2);
  751. munge_buf ((unsigned char *)&header->hdr.p, bptr, WF_PATCH_BYTES);
  752.     
  753. if (wavefront_cmd (WFC_DOWNLOAD_PATCH, 0, buf)) {
  754. printk (KERN_ERR LOGNAME "download patch failedn");
  755. return -(EIO);
  756. }
  757. return (0);
  758. }
  759. static int
  760. wavefront_send_program (wavefront_patch_info *header)
  761. {
  762. unsigned char buf[WF_PROGRAM_BYTES+1];
  763. int i;
  764. DPRINT (WF_DEBUG_LOAD_PATCH, "downloading program %dn",
  765. header->number);
  766. dev.prog_status[header->number] = WF_SLOT_USED;
  767. /* XXX need to zero existing SLOT_USED bit for program_status[i]
  768.    where `i' is the program that's being (potentially) overwritten.
  769. */
  770.     
  771. for (i = 0; i < WF_NUM_LAYERS; i++) {
  772. if (header->hdr.pr.layer[i].mute) {
  773. dev.patch_status[header->hdr.pr.layer[i].patch_number] |=
  774. WF_SLOT_USED;
  775. /* XXX need to mark SLOT_USED for sample used by
  776.    patch_number, but this means we have to load it. Ick.
  777. */
  778. }
  779. }
  780. buf[0] = header->number;
  781. munge_buf ((unsigned char *)&header->hdr.pr, &buf[1], WF_PROGRAM_BYTES);
  782.     
  783. if (wavefront_cmd (WFC_DOWNLOAD_PROGRAM, 0, buf)) {
  784. printk (KERN_WARNING LOGNAME "download patch failedn");
  785. return -(EIO);
  786. }
  787. return (0);
  788. }
  789. static int
  790. wavefront_freemem (void)
  791. {
  792. char rbuf[8];
  793. if (wavefront_cmd (WFC_REPORT_FREE_MEMORY, rbuf, 0)) {
  794. printk (KERN_WARNING LOGNAME "can't get memory stats.n");
  795. return -1;
  796. } else {
  797. return demunge_int32 (rbuf, 4);
  798. }
  799. }
  800. static int
  801. wavefront_send_sample (wavefront_patch_info *header,
  802.        UINT16 *dataptr,
  803.        int data_is_unsigned)
  804. {
  805. /* samples are downloaded via a 16-bit wide i/o port
  806.    (you could think of it as 2 adjacent 8-bit wide ports
  807.    but its less efficient that way). therefore, all
  808.    the blocksizes and so forth listed in the documentation,
  809.    and used conventionally to refer to sample sizes,
  810.    which are given in 8-bit units (bytes), need to be
  811.    divided by 2.
  812.         */
  813. UINT16 sample_short;
  814. UINT32 length;
  815. UINT16 *data_end = 0;
  816. unsigned int i;
  817. const int max_blksize = 4096/2;
  818. unsigned int written;
  819. unsigned int blocksize;
  820. int dma_ack;
  821. int blocknum;
  822. unsigned char sample_hdr[WF_SAMPLE_HDR_BYTES];
  823. unsigned char *shptr;
  824. int skip = 0;
  825. int initial_skip = 0;
  826. DPRINT (WF_DEBUG_LOAD_PATCH, "sample %sdownload for slot %d, "
  827.       "type %d, %d bytes from 0x%xn",
  828.       header->size ? "" : "header ", 
  829.       header->number, header->subkey,
  830.       header->size,
  831.       (int) header->dataptr);
  832. if (header->number == WAVEFRONT_FIND_FREE_SAMPLE_SLOT) {
  833. int x;
  834. if ((x = wavefront_find_free_sample ()) < 0) {
  835. return -ENOMEM;
  836. }
  837. printk (KERN_DEBUG LOGNAME "unspecified sample => %dn", x);
  838. header->number = x;
  839. }
  840. if (header->size) {
  841. /* XXX its a debatable point whether or not RDONLY semantics
  842.    on the ROM samples should cover just the sample data or
  843.    the sample header. For now, it only covers the sample data,
  844.    so anyone is free at all times to rewrite sample headers.
  845.    My reason for this is that we have the sample headers
  846.    available in the WFB file for General MIDI, and so these
  847.    can always be reset if needed. The sample data, however,
  848.    cannot be recovered without a complete reset and firmware
  849.    reload of the ICS2115, which is a very expensive operation.
  850.    So, doing things this way allows us to honor the notion of
  851.    "RESETSAMPLES" reasonably cheaply. Note however, that this
  852.    is done purely at user level: there is no WFB parser in
  853.    this driver, and so a complete reset (back to General MIDI,
  854.    or theoretically some other configuration) is the
  855.    responsibility of the user level library. 
  856.    To try to do this in the kernel would be a little
  857.    crazy: we'd need 158K of kernel space just to hold
  858.    a copy of the patch/program/sample header data.
  859. */
  860. if (dev.rom_samples_rdonly) {
  861. if (dev.sample_status[header->number] & WF_SLOT_ROM) {
  862. printk (KERN_ERR LOGNAME "sample slot %d "
  863. "write protectedn",
  864. header->number);
  865. return -EACCES;
  866. }
  867. }
  868. wavefront_delete_sample (header->number);
  869. }
  870. if (header->size) {
  871. dev.freemem = wavefront_freemem ();
  872. if (dev.freemem < header->size) {
  873. printk (KERN_ERR LOGNAME
  874. "insufficient memory to "
  875. "load %d byte sample.n",
  876. header->size);
  877. return -ENOMEM;
  878. }
  879. }
  880. skip = WF_GET_CHANNEL(&header->hdr.s);
  881. if (skip > 0 && header->hdr.s.SampleResolution != LINEAR_16BIT) {
  882. printk (KERN_ERR LOGNAME "channel selection only "
  883. "possible on 16-bit samples");
  884. return -(EINVAL);
  885. }
  886. switch (skip) {
  887. case 0:
  888. initial_skip = 0;
  889. skip = 1;
  890. break;
  891. case 1:
  892. initial_skip = 0;
  893. skip = 2;
  894. break;
  895. case 2:
  896. initial_skip = 1;
  897. skip = 2;
  898. break;
  899. case 3:
  900. initial_skip = 2;
  901. skip = 3;
  902. break;
  903. case 4:
  904. initial_skip = 3;
  905. skip = 4;
  906. break;
  907. case 5:
  908. initial_skip = 4;
  909. skip = 5;
  910. break;
  911. case 6:
  912. initial_skip = 5;
  913. skip = 6;
  914. break;
  915. }
  916. DPRINT (WF_DEBUG_LOAD_PATCH, "channel selection: %d => "
  917.       "initial skip = %d, skip = %dn",
  918.       WF_GET_CHANNEL (&header->hdr.s),
  919.       initial_skip, skip);
  920.     
  921. /* Be safe, and zero the "Unused" bits ... */
  922. WF_SET_CHANNEL(&header->hdr.s, 0);
  923. /* adjust size for 16 bit samples by dividing by two.  We always
  924.    send 16 bits per write, even for 8 bit samples, so the length
  925.    is always half the size of the sample data in bytes.
  926. */
  927. length = header->size / 2;
  928. /* the data we're sent has not been munged, and in fact, the
  929.    header we have to send isn't just a munged copy either.
  930.    so, build the sample header right here.
  931. */
  932. shptr = &sample_hdr[0];
  933. shptr = munge_int32 (header->number, shptr, 2);
  934. if (header->size) {
  935. shptr = munge_int32 (length, shptr, 4);
  936. }
  937. /* Yes, a 4 byte result doesn't contain all of the offset bits,
  938.    but the offset only uses 24 bits.
  939. */
  940. shptr = munge_int32 (*((UINT32 *) &header->hdr.s.sampleStartOffset),
  941.      shptr, 4);
  942. shptr = munge_int32 (*((UINT32 *) &header->hdr.s.loopStartOffset),
  943.      shptr, 4);
  944. shptr = munge_int32 (*((UINT32 *) &header->hdr.s.loopEndOffset),
  945.      shptr, 4);
  946. shptr = munge_int32 (*((UINT32 *) &header->hdr.s.sampleEndOffset),
  947.      shptr, 4);
  948. /* This one is truly weird. What kind of weirdo decided that in
  949.    a system dominated by 16 and 32 bit integers, they would use
  950.    a just 12 bits ?
  951. */
  952. shptr = munge_int32 (header->hdr.s.FrequencyBias, shptr, 3);
  953. /* Why is this nybblified, when the MSB is *always* zero ? 
  954.    Anyway, we can't take address of bitfield, so make a
  955.    good-faith guess at where it starts.
  956. */
  957. shptr = munge_int32 (*(&header->hdr.s.FrequencyBias+1),
  958.      shptr, 2);
  959. if (wavefront_cmd (header->size ?
  960.    WFC_DOWNLOAD_SAMPLE : WFC_DOWNLOAD_SAMPLE_HEADER,
  961.    0, sample_hdr)) {
  962. printk (KERN_WARNING LOGNAME "sample %sdownload refused.n",
  963. header->size ? "" : "header ");
  964. return -(EIO);
  965. }
  966. if (header->size == 0) {
  967. goto sent; /* Sorry. Just had to have one somewhere */
  968. }
  969.     
  970. data_end = dataptr + length;
  971. /* Do any initial skip over an unused channel's data */
  972. dataptr += initial_skip;
  973.     
  974. for (written = 0, blocknum = 0;
  975.      written < length; written += max_blksize, blocknum++) {
  976. if ((length - written) > max_blksize) {
  977. blocksize = max_blksize;
  978. } else {
  979. /* round to nearest 16-byte value */
  980. blocksize = ((length-written+7)&~0x7);
  981. }
  982. if (wavefront_cmd (WFC_DOWNLOAD_BLOCK, 0, 0)) {
  983. printk (KERN_WARNING LOGNAME "download block "
  984. "request refused.n");
  985. return -(EIO);
  986. }
  987. for (i = 0; i < blocksize; i++) {
  988. if (dataptr < data_end) {
  989. __get_user (sample_short, dataptr);
  990. dataptr += skip;
  991. if (data_is_unsigned) { /* GUS ? */
  992. if (WF_SAMPLE_IS_8BIT(&header->hdr.s)) {
  993. /* 8 bit sample
  994.  resolution, sign
  995.  extend both bytes.
  996. */
  997. ((unsigned char*)
  998.  &sample_short)[0] += 0x7f;
  999. ((unsigned char*)
  1000.  &sample_short)[1] += 0x7f;
  1001. } else {
  1002. /* 16 bit sample
  1003.  resolution, sign
  1004.  extend the MSB.
  1005. */
  1006. sample_short += 0x7fff;
  1007. }
  1008. }
  1009. } else {
  1010. /* In padding section of final block:
  1011.    Don't fetch unsupplied data from
  1012.    user space, just continue with
  1013.    whatever the final value was.
  1014. */
  1015. }
  1016.     
  1017. if (i < blocksize - 1) {
  1018. outw (sample_short, dev.block_port);
  1019. } else {
  1020. outw (sample_short, dev.last_block_port);
  1021. }
  1022. }
  1023. /* Get "DMA page acknowledge", even though its really
  1024.    nothing to do with DMA at all.
  1025. */
  1026. if ((dma_ack = wavefront_read ()) != WF_DMA_ACK) {
  1027. if (dma_ack == -1) {
  1028. printk (KERN_ERR LOGNAME "upload sample "
  1029. "DMA ack timeoutn");
  1030. return -(EIO);
  1031. } else {
  1032. printk (KERN_ERR LOGNAME "upload sample "
  1033. "DMA ack error 0x%xn",
  1034. dma_ack);
  1035. return -(EIO);
  1036. }
  1037. }
  1038. }
  1039. dev.sample_status[header->number] = (WF_SLOT_FILLED|WF_ST_SAMPLE);
  1040. /* Note, label is here because sending the sample header shouldn't
  1041.    alter the sample_status info at all.
  1042. */
  1043.  sent:
  1044. return (0);
  1045. }
  1046. static int
  1047. wavefront_send_alias (wavefront_patch_info *header)
  1048. {
  1049. unsigned char alias_hdr[WF_ALIAS_BYTES];
  1050. DPRINT (WF_DEBUG_LOAD_PATCH, "download alias, %d is "
  1051.       "alias for %dn",
  1052.       header->number,
  1053.       header->hdr.a.OriginalSample);
  1054.     
  1055. munge_int32 (header->number, &alias_hdr[0], 2);
  1056. munge_int32 (header->hdr.a.OriginalSample, &alias_hdr[2], 2);
  1057. munge_int32 (*((unsigned int *)&header->hdr.a.sampleStartOffset),
  1058.      &alias_hdr[4], 4);
  1059. munge_int32 (*((unsigned int *)&header->hdr.a.loopStartOffset),
  1060.      &alias_hdr[8], 4);
  1061. munge_int32 (*((unsigned int *)&header->hdr.a.loopEndOffset),
  1062.      &alias_hdr[12], 4);
  1063. munge_int32 (*((unsigned int *)&header->hdr.a.sampleEndOffset),
  1064.      &alias_hdr[16], 4);
  1065. munge_int32 (header->hdr.a.FrequencyBias, &alias_hdr[20], 3);
  1066. munge_int32 (*(&header->hdr.a.FrequencyBias+1), &alias_hdr[23], 2);
  1067. if (wavefront_cmd (WFC_DOWNLOAD_SAMPLE_ALIAS, 0, alias_hdr)) {
  1068. printk (KERN_ERR LOGNAME "download alias failed.n");
  1069. return -(EIO);
  1070. }
  1071. dev.sample_status[header->number] = (WF_SLOT_FILLED|WF_ST_ALIAS);
  1072. return (0);
  1073. }
  1074. static int
  1075. wavefront_send_multisample (wavefront_patch_info *header)
  1076. {
  1077. int i;
  1078. int num_samples;
  1079. unsigned char msample_hdr[WF_MSAMPLE_BYTES];
  1080. munge_int32 (header->number, &msample_hdr[0], 2);
  1081. /* You'll recall at this point that the "number of samples" value
  1082.    in a wavefront_multisample struct is actually the log2 of the
  1083.    real number of samples.
  1084. */
  1085. num_samples = (1<<(header->hdr.ms.NumberOfSamples&7));
  1086. msample_hdr[2] = (unsigned char) header->hdr.ms.NumberOfSamples;
  1087. DPRINT (WF_DEBUG_LOAD_PATCH, "multi %d with %d=%d samplesn",
  1088.       header->number,
  1089.       header->hdr.ms.NumberOfSamples,
  1090.       num_samples);
  1091. for (i = 0; i < num_samples; i++) {
  1092. DPRINT(WF_DEBUG_LOAD_PATCH|WF_DEBUG_DATA, "sample[%d] = %dn",
  1093.        i, header->hdr.ms.SampleNumber[i]);
  1094. munge_int32 (header->hdr.ms.SampleNumber[i],
  1095.      &msample_hdr[3+(i*2)], 2);
  1096. }
  1097.     
  1098. /* Need a hack here to pass in the number of bytes
  1099.    to be written to the synth. This is ugly, and perhaps
  1100.    one day, I'll fix it.
  1101. */
  1102. if (wavefront_cmd (WFC_DOWNLOAD_MULTISAMPLE, 
  1103.    (unsigned char *) ((num_samples*2)+3),
  1104.    msample_hdr)) {
  1105. printk (KERN_ERR LOGNAME "download of multisample failed.n");
  1106. return -(EIO);
  1107. }
  1108. dev.sample_status[header->number] = (WF_SLOT_FILLED|WF_ST_MULTISAMPLE);
  1109. return (0);
  1110. }
  1111. static int
  1112. wavefront_fetch_multisample (wavefront_patch_info *header)
  1113. {
  1114. int i;
  1115. unsigned char log_ns[1];
  1116. unsigned char number[2];
  1117. int num_samples;
  1118. munge_int32 (header->number, number, 2);
  1119.     
  1120. if (wavefront_cmd (WFC_UPLOAD_MULTISAMPLE, log_ns, number)) {
  1121. printk (KERN_ERR LOGNAME "upload multisample failed.n");
  1122. return -(EIO);
  1123. }
  1124.     
  1125. DPRINT (WF_DEBUG_DATA, "msample %d has %d samplesn",
  1126. header->number, log_ns[0]);
  1127. header->hdr.ms.NumberOfSamples = log_ns[0];
  1128. /* get the number of samples ... */
  1129. num_samples = (1 << log_ns[0]);
  1130.     
  1131. for (i = 0; i < num_samples; i++) {
  1132. char d[2];
  1133. if ((d[0] = wavefront_read ()) == -1) {
  1134. printk (KERN_ERR LOGNAME "upload multisample failed "
  1135. "during sample loop.n");
  1136. return -(EIO);
  1137. }
  1138. if ((d[1] = wavefront_read ()) == -1) {
  1139. printk (KERN_ERR LOGNAME "upload multisample failed "
  1140. "during sample loop.n");
  1141. return -(EIO);
  1142. }
  1143. header->hdr.ms.SampleNumber[i] =
  1144. demunge_int32 ((unsigned char *) d, 2);
  1145. DPRINT (WF_DEBUG_DATA, "msample sample[%d] = %dn",
  1146. i, header->hdr.ms.SampleNumber[i]);
  1147. }
  1148. return (0);
  1149. }
  1150. static int
  1151. wavefront_send_drum (wavefront_patch_info *header)
  1152. {
  1153. unsigned char drumbuf[WF_DRUM_BYTES];
  1154. wavefront_drum *drum = &header->hdr.d;
  1155. int i;
  1156. DPRINT (WF_DEBUG_LOAD_PATCH, "downloading edrum for MIDI "
  1157. "note %d, patch = %dn", 
  1158. header->number, drum->PatchNumber);
  1159. drumbuf[0] = header->number & 0x7f;
  1160. for (i = 0; i < 4; i++) {
  1161. munge_int32 (((unsigned char *)drum)[i], &drumbuf[1+(i*2)], 2);
  1162. }
  1163. if (wavefront_cmd (WFC_DOWNLOAD_EDRUM_PROGRAM, 0, drumbuf)) {
  1164. printk (KERN_ERR LOGNAME "download drum failed.n");
  1165. return -(EIO);
  1166. }
  1167. return (0);
  1168. }
  1169. static int 
  1170. wavefront_find_free_sample (void)
  1171. {
  1172. int i;
  1173. for (i = 0; i < WF_MAX_SAMPLE; i++) {
  1174. if (!(dev.sample_status[i] & WF_SLOT_FILLED)) {
  1175. return i;
  1176. }
  1177. }
  1178. printk (KERN_WARNING LOGNAME "no free sample slots!n");
  1179. return -1;
  1180. }
  1181. static int 
  1182. wavefront_find_free_patch (void)
  1183. {
  1184. int i;
  1185. for (i = 0; i < WF_MAX_PATCH; i++) {
  1186. if (!(dev.patch_status[i] & WF_SLOT_FILLED)) {
  1187. return i;
  1188. }
  1189. }
  1190. printk (KERN_WARNING LOGNAME "no free patch slots!n");
  1191. return -1;
  1192. }
  1193. static int 
  1194. log2_2048(int n)
  1195. {
  1196. int tbl[]={0, 0, 2048, 3246, 4096, 4755, 5294, 5749, 6143,
  1197.    6492, 6803, 7084, 7342, 7578, 7797, 8001, 8192,
  1198.    8371, 8540, 8699, 8851, 8995, 9132, 9264, 9390,
  1199.    9510, 9626, 9738, 9845, 9949, 10049, 10146};
  1200. int i;
  1201. /* Returns 2048*log2(n) */
  1202. /* FIXME: this is like doing integer math
  1203.    on quantum particles (RuN) */
  1204. i=0;
  1205. while(n>=32*256) {
  1206. n>>=8;
  1207. i+=2048*8;
  1208. }
  1209. while(n>=32) {
  1210. n>>=1;
  1211. i+=2048;
  1212. }
  1213. i+=tbl[n];
  1214. return(i);
  1215. }
  1216. static int
  1217. wavefront_load_gus_patch (int devno, int format, const char *addr,
  1218.   int offs, int count, int pmgr_flag)
  1219. {
  1220. struct patch_info guspatch;
  1221. wavefront_patch_info samp, pat, prog;
  1222. wavefront_patch *patp;
  1223. wavefront_sample *sampp;
  1224. wavefront_program *progp;
  1225. int i,base_note;
  1226. long sizeof_patch;
  1227. /* Copy in the header of the GUS patch */
  1228. sizeof_patch = (long) &guspatch.data[0] - (long) &guspatch; 
  1229. copy_from_user (&((char *) &guspatch)[offs],
  1230. &(addr)[offs], sizeof_patch - offs);
  1231. if ((i = wavefront_find_free_patch ()) == -1) {
  1232. return -EBUSY;
  1233. }
  1234. pat.number = i;
  1235. pat.subkey = WF_ST_PATCH;
  1236. patp = &pat.hdr.p;
  1237. if ((i = wavefront_find_free_sample ()) == -1) {
  1238. return -EBUSY;
  1239. }
  1240. samp.number = i;
  1241. samp.subkey = WF_ST_SAMPLE;
  1242. samp.size = guspatch.len;
  1243. sampp = &samp.hdr.s;
  1244. prog.number = guspatch.instr_no;
  1245. progp = &prog.hdr.pr;
  1246. /* Setup the patch structure */
  1247. patp->amplitude_bias=guspatch.volume;
  1248. patp->portamento=0;
  1249. patp->sample_number= samp.number & 0xff;
  1250. patp->sample_msb= samp.number>>8;
  1251. patp->pitch_bend= /*12*/ 0;
  1252. patp->mono=1;
  1253. patp->retrigger=1;
  1254. patp->nohold=(guspatch.mode & WAVE_SUSTAIN_ON) ? 0:1;
  1255. patp->frequency_bias=0;
  1256. patp->restart=0;
  1257. patp->reuse=0;
  1258. patp->reset_lfo=1;
  1259. patp->fm_src2=0;
  1260. patp->fm_src1=WF_MOD_MOD_WHEEL;
  1261. patp->am_src=WF_MOD_PRESSURE;
  1262. patp->am_amount=127;
  1263. patp->fc1_mod_amount=0;
  1264. patp->fc2_mod_amount=0; 
  1265. patp->fm_amount1=0;
  1266. patp->fm_amount2=0;
  1267. patp->envelope1.attack_level=127;
  1268. patp->envelope1.decay1_level=127;
  1269. patp->envelope1.decay2_level=127;
  1270. patp->envelope1.sustain_level=127;
  1271. patp->envelope1.release_level=0;
  1272. patp->envelope2.attack_velocity=127;
  1273. patp->envelope2.attack_level=127;
  1274. patp->envelope2.decay1_level=127;
  1275. patp->envelope2.decay2_level=127;
  1276. patp->envelope2.sustain_level=127;
  1277. patp->envelope2.release_level=0;
  1278. patp->envelope2.attack_velocity=127;
  1279. patp->randomizer=0;
  1280. /* Program for this patch */
  1281. progp->layer[0].patch_number= pat.number; /* XXX is this right ? */
  1282. progp->layer[0].mute=1;
  1283. progp->layer[0].pan_or_mod=1;
  1284. progp->layer[0].pan=7;
  1285. progp->layer[0].mix_level=127  /* guspatch.volume */;
  1286. progp->layer[0].split_type=0;
  1287. progp->layer[0].split_point=0;
  1288. progp->layer[0].play_below=0;
  1289. for (i = 1; i < 4; i++) {
  1290. progp->layer[i].mute=0;
  1291. }
  1292. /* Sample data */
  1293. sampp->SampleResolution=((~guspatch.mode & WAVE_16_BITS)<<1);
  1294. for (base_note=0;
  1295.      note_to_freq (base_note) < guspatch.base_note;
  1296.      base_note++);
  1297. if ((guspatch.base_note-note_to_freq(base_note))
  1298.     >(note_to_freq(base_note)-guspatch.base_note))
  1299. base_note++;
  1300. printk(KERN_DEBUG "ref freq=%d,base note=%dn",
  1301.        guspatch.base_freq,
  1302.        base_note);
  1303. sampp->FrequencyBias = (29550 - log2_2048(guspatch.base_freq)
  1304. + base_note*171);
  1305. printk(KERN_DEBUG "Freq Bias is %dn", sampp->FrequencyBias);
  1306. sampp->Loop=(guspatch.mode & WAVE_LOOPING) ? 1:0;
  1307. sampp->sampleStartOffset.Fraction=0;
  1308. sampp->sampleStartOffset.Integer=0;
  1309. sampp->loopStartOffset.Fraction=0;
  1310. sampp->loopStartOffset.Integer=guspatch.loop_start
  1311. >>((guspatch.mode&WAVE_16_BITS) ? 1:0);
  1312. sampp->loopEndOffset.Fraction=0;
  1313. sampp->loopEndOffset.Integer=guspatch.loop_end
  1314. >>((guspatch.mode&WAVE_16_BITS) ? 1:0);
  1315. sampp->sampleEndOffset.Fraction=0;
  1316. sampp->sampleEndOffset.Integer=guspatch.len >> (guspatch.mode&1);
  1317. sampp->Bidirectional=(guspatch.mode&WAVE_BIDIR_LOOP) ? 1:0;
  1318. sampp->Reverse=(guspatch.mode&WAVE_LOOP_BACK) ? 1:0;
  1319. /* Now ship it down */
  1320. wavefront_send_sample (&samp, 
  1321.        (unsigned short *) &(addr)[sizeof_patch],
  1322.        (guspatch.mode & WAVE_UNSIGNED) ? 1:0);
  1323. wavefront_send_patch (&pat);
  1324. wavefront_send_program (&prog);
  1325. /* Now pan as best we can ... use the slave/internal MIDI device
  1326.    number if it exists (since it talks to the WaveFront), or the
  1327.    master otherwise.
  1328. */
  1329. if (dev.mididev > 0) {
  1330. midi_synth_controller (dev.mididev, guspatch.instr_no, 10,
  1331.        ((guspatch.panning << 4) > 127) ?
  1332.        127 : (guspatch.panning << 4));
  1333. }
  1334. return(0);
  1335. }
  1336. static int
  1337. wavefront_load_patch (const char *addr)
  1338. {
  1339. wavefront_patch_info header;
  1340. if (copy_from_user (&header, addr, sizeof(wavefront_patch_info) -
  1341.     sizeof(wavefront_any))) {
  1342. printk (KERN_WARNING LOGNAME "bad address for load patch.n");
  1343. return -(EINVAL);
  1344. }
  1345. DPRINT (WF_DEBUG_LOAD_PATCH, "download "
  1346.       "Sample type: %d "
  1347.       "Sample number: %d "
  1348.       "Sample size: %dn",
  1349.       header.subkey,
  1350.       header.number,
  1351.       header.size);
  1352. switch (header.subkey) {
  1353. case WF_ST_SAMPLE:  /* sample or sample_header, based on patch->size */
  1354. copy_from_user ((unsigned char *) &header.hdr.s,
  1355. (unsigned char *) header.hdrptr,
  1356. sizeof (wavefront_sample));
  1357. return wavefront_send_sample (&header, header.dataptr, 0);
  1358. case WF_ST_MULTISAMPLE:
  1359. copy_from_user ((unsigned char *) &header.hdr.s,
  1360. (unsigned char *) header.hdrptr,
  1361. sizeof (wavefront_multisample));
  1362. return wavefront_send_multisample (&header);
  1363. case WF_ST_ALIAS:
  1364. copy_from_user ((unsigned char *) &header.hdr.a,
  1365. (unsigned char *) header.hdrptr,
  1366. sizeof (wavefront_alias));
  1367. return wavefront_send_alias (&header);
  1368. case WF_ST_DRUM:
  1369. copy_from_user ((unsigned char *) &header.hdr.d, 
  1370. (unsigned char *) header.hdrptr,
  1371. sizeof (wavefront_drum));
  1372. return wavefront_send_drum (&header);
  1373. case WF_ST_PATCH:
  1374. copy_from_user ((unsigned char *) &header.hdr.p, 
  1375. (unsigned char *) header.hdrptr,
  1376. sizeof (wavefront_patch));
  1377. return wavefront_send_patch (&header);
  1378. case WF_ST_PROGRAM:
  1379. copy_from_user ((unsigned char *) &header.hdr.pr, 
  1380. (unsigned char *) header.hdrptr,
  1381. sizeof (wavefront_program));
  1382. return wavefront_send_program (&header);
  1383. default:
  1384. printk (KERN_ERR LOGNAME "unknown patch type %d.n",
  1385. header.subkey);
  1386. return -(EINVAL);
  1387. }
  1388. return 0;
  1389. }
  1390. /***********************************************************************
  1391. WaveFront: /dev/sequencer{,2} and other hardware-dependent interfaces
  1392. ***********************************************************************/
  1393. static void
  1394. process_sample_hdr (UCHAR8 *buf)
  1395. {
  1396. wavefront_sample s;
  1397. UCHAR8 *ptr;
  1398. ptr = buf;
  1399. /* The board doesn't send us an exact copy of a "wavefront_sample"
  1400.    in response to an Upload Sample Header command. Instead, we 
  1401.    have to convert the data format back into our data structure,
  1402.    just as in the Download Sample command, where we have to do
  1403.    something very similar in the reverse direction.
  1404. */
  1405. *((UINT32 *) &s.sampleStartOffset) = demunge_int32 (ptr, 4); ptr += 4;
  1406. *((UINT32 *) &s.loopStartOffset) = demunge_int32 (ptr, 4); ptr += 4;
  1407. *((UINT32 *) &s.loopEndOffset) = demunge_int32 (ptr, 4); ptr += 4;
  1408. *((UINT32 *) &s.sampleEndOffset) = demunge_int32 (ptr, 4); ptr += 4;
  1409. *((UINT32 *) &s.FrequencyBias) = demunge_int32 (ptr, 3); ptr += 3;
  1410. s.SampleResolution = *ptr & 0x3;
  1411. s.Loop = *ptr & 0x8;
  1412. s.Bidirectional = *ptr & 0x10;
  1413. s.Reverse = *ptr & 0x40;
  1414. /* Now copy it back to where it came from */
  1415. memcpy (buf, (unsigned char *) &s, sizeof (wavefront_sample));
  1416. }
  1417. static int
  1418. wavefront_synth_control (int cmd, wavefront_control *wc)
  1419. {
  1420. unsigned char patchnumbuf[2];
  1421. int i;
  1422. DPRINT (WF_DEBUG_CMD, "synth control with "
  1423. "cmd 0x%xn", wc->cmd);
  1424. /* Pre-handling of or for various commands */
  1425. switch (wc->cmd) {
  1426. case WFC_DISABLE_INTERRUPTS:
  1427. printk (KERN_INFO LOGNAME "interrupts disabled.n");
  1428. outb (0x80|0x20, dev.control_port);
  1429. dev.interrupts_on = 0;
  1430. return 0;
  1431. case WFC_ENABLE_INTERRUPTS:
  1432. printk (KERN_INFO LOGNAME "interrupts enabled.n");
  1433. outb (0x80|0x40|0x20, dev.control_port);
  1434. dev.interrupts_on = 1;
  1435. return 0;
  1436. case WFC_INTERRUPT_STATUS:
  1437. wc->rbuf[0] = dev.interrupts_on;
  1438. return 0;
  1439. case WFC_ROMSAMPLES_RDONLY:
  1440. dev.rom_samples_rdonly = wc->wbuf[0];
  1441. wc->status = 0;
  1442. return 0;
  1443. case WFC_IDENTIFY_SLOT_TYPE:
  1444. i = wc->wbuf[0] | (wc->wbuf[1] << 7);
  1445. if (i <0 || i >= WF_MAX_SAMPLE) {
  1446. printk (KERN_WARNING LOGNAME "invalid slot ID %dn",
  1447. i);
  1448. wc->status = EINVAL;
  1449. return 0;
  1450. }
  1451. wc->rbuf[0] = dev.sample_status[i];
  1452. wc->status = 0;
  1453. return 0;
  1454. case WFC_DEBUG_DRIVER:
  1455. dev.debug = wc->wbuf[0];
  1456. printk (KERN_INFO LOGNAME "debug = 0x%xn", dev.debug);
  1457. return 0;
  1458. case WFC_FX_IOCTL:
  1459. wffx_ioctl ((wavefront_fx_info *) &wc->wbuf[0]);
  1460. return 0;
  1461. case WFC_UPLOAD_PATCH:
  1462. munge_int32 (*((UINT32 *) wc->wbuf), patchnumbuf, 2);
  1463. memcpy (wc->wbuf, patchnumbuf, 2);
  1464. break;
  1465. case WFC_UPLOAD_MULTISAMPLE:
  1466. /* multisamples have to be handled differently, and
  1467.    cannot be dealt with properly by wavefront_cmd() alone.
  1468. */
  1469. wc->status = wavefront_fetch_multisample
  1470. ((wavefront_patch_info *) wc->rbuf);
  1471. return 0;
  1472. case WFC_UPLOAD_SAMPLE_ALIAS:
  1473. printk (KERN_INFO LOGNAME "support for sample alias upload "
  1474. "being considered.n");
  1475. wc->status = EINVAL;
  1476. return -EINVAL;
  1477. }
  1478. wc->status = wavefront_cmd (wc->cmd, wc->rbuf, wc->wbuf);
  1479. /* Post-handling of certain commands.
  1480.    In particular, if the command was an upload, demunge the data
  1481.    so that the user-level doesn't have to think about it.
  1482. */
  1483. if (wc->status == 0) {
  1484. switch (wc->cmd) {
  1485. /* intercept any freemem requests so that we know
  1486.    we are always current with the user-level view
  1487.    of things.
  1488. */
  1489. case WFC_REPORT_FREE_MEMORY:
  1490. dev.freemem = demunge_int32 (wc->rbuf, 4);
  1491. break;
  1492. case WFC_UPLOAD_PATCH:
  1493. demunge_buf (wc->rbuf, wc->rbuf, WF_PATCH_BYTES);
  1494. break;
  1495. case WFC_UPLOAD_PROGRAM:
  1496. demunge_buf (wc->rbuf, wc->rbuf, WF_PROGRAM_BYTES);
  1497. break;
  1498. case WFC_UPLOAD_EDRUM_PROGRAM:
  1499. demunge_buf (wc->rbuf, wc->rbuf, WF_DRUM_BYTES - 1);
  1500. break;
  1501. case WFC_UPLOAD_SAMPLE_HEADER:
  1502. process_sample_hdr (wc->rbuf);
  1503. break;
  1504. case WFC_UPLOAD_SAMPLE_ALIAS:
  1505. printk (KERN_INFO LOGNAME "support for "
  1506. "sample aliases still "
  1507. "being considered.n");
  1508. break;
  1509. case WFC_VMIDI_OFF:
  1510. if (virtual_midi_disable () < 0) {
  1511. return -(EIO);
  1512. }
  1513. break;
  1514. case WFC_VMIDI_ON:
  1515. if (virtual_midi_enable () < 0) {
  1516. return -(EIO);
  1517. }
  1518. break;
  1519. }
  1520. }
  1521. return 0;
  1522. }
  1523. /***********************************************************************/
  1524. /* WaveFront: Linux file system interface (for access via raw synth)    */
  1525. /***********************************************************************/
  1526. static int 
  1527. wavefront_open (struct inode *inode, struct file *file)
  1528. {
  1529. /* XXX fix me */
  1530. dev.opened = file->f_flags;
  1531. return 0;
  1532. }
  1533. static int
  1534. wavefront_release(struct inode *inode, struct file *file)
  1535. {
  1536. lock_kernel();
  1537. dev.opened = 0;
  1538. dev.debug = 0;
  1539. unlock_kernel();
  1540. return 0;
  1541. }
  1542. static int
  1543. wavefront_ioctl(struct inode *inode, struct file *file,
  1544. unsigned int cmd, unsigned long arg)
  1545. {
  1546. wavefront_control wc;
  1547. int err;
  1548. switch (cmd) {
  1549. case WFCTL_WFCMD:
  1550. copy_from_user (&wc, (void *) arg, sizeof (wc));
  1551. if ((err = wavefront_synth_control (cmd, &wc)) == 0) {
  1552. copy_to_user ((void *) arg, &wc, sizeof (wc));
  1553. }
  1554. return err;
  1555. case WFCTL_LOAD_SPP:
  1556. return wavefront_load_patch ((const char *) arg);
  1557. default:
  1558. printk (KERN_WARNING LOGNAME "invalid ioctl %#xn", cmd);
  1559. return -(EINVAL);
  1560. }
  1561. return 0;
  1562. }
  1563. static /*const*/ struct file_operations wavefront_fops = {
  1564. owner: THIS_MODULE,
  1565. llseek: no_llseek,
  1566. ioctl: wavefront_ioctl,
  1567. open: wavefront_open,
  1568. release: wavefront_release,
  1569. };
  1570. /***********************************************************************/
  1571. /* WaveFront: OSS installation and support interface                   */
  1572. /***********************************************************************/
  1573. #if OSS_SUPPORT_LEVEL & OSS_SUPPORT_SEQ
  1574. static struct synth_info wavefront_info =
  1575. {"Turtle Beach WaveFront", 0, SYNTH_TYPE_SAMPLE, SAMPLE_TYPE_WAVEFRONT,
  1576.  0, 32, 0, 0, SYNTH_CAP_INPUT};
  1577. static int
  1578. wavefront_oss_open (int devno, int mode)
  1579. {
  1580. dev.opened = mode;
  1581. return 0;
  1582. }
  1583. static void
  1584. wavefront_oss_close (int devno)
  1585. {
  1586. dev.opened = 0;
  1587. dev.debug = 0;
  1588. return;
  1589. }
  1590. static int
  1591. wavefront_oss_ioctl (int devno, unsigned int cmd, caddr_t arg)
  1592. {
  1593. wavefront_control wc;
  1594. int err;
  1595. switch (cmd) {
  1596. case SNDCTL_SYNTH_INFO:
  1597. if(copy_to_user(&((char *) arg)[0], &wavefront_info,
  1598. sizeof (wavefront_info)))
  1599. return -EFAULT;
  1600. return 0;
  1601. case SNDCTL_SEQ_RESETSAMPLES:
  1602. // printk (KERN_WARNING LOGNAME "driver cannot reset samples.n");
  1603. return 0; /* don't force an error */
  1604. case SNDCTL_SEQ_PERCMODE:
  1605. return 0; /* don't force an error */
  1606. case SNDCTL_SYNTH_MEMAVL:
  1607. if ((dev.freemem = wavefront_freemem ()) < 0) {
  1608. printk (KERN_ERR LOGNAME "cannot get memory sizen");
  1609. return -EIO;
  1610. } else {
  1611. return dev.freemem;
  1612. }
  1613. break;
  1614. case SNDCTL_SYNTH_CONTROL:
  1615. if(copy_from_user (&wc, arg, sizeof (wc)))
  1616. err = -EFAULT;
  1617. else if ((err = wavefront_synth_control (cmd, &wc)) == 0) {
  1618. if(copy_to_user (arg, &wc, sizeof (wc)))
  1619. err = -EFAULT;
  1620. }
  1621. return err;
  1622. default:
  1623. return -(EINVAL);
  1624. }
  1625. }
  1626. int
  1627. wavefront_oss_load_patch (int devno, int format, const char *addr,
  1628.   int offs, int count, int pmgr_flag)
  1629. {
  1630. if (format == SYSEX_PATCH) { /* Handled by midi_synth.c */
  1631. if (midi_load_patch == NULL) {
  1632. printk (KERN_ERR LOGNAME
  1633. "SYSEX not loadable: "
  1634. "no midi patch loader!n");
  1635. return -(EINVAL);
  1636. }
  1637. return midi_load_patch (devno, format, addr,
  1638. offs, count, pmgr_flag);
  1639. } else if (format == GUS_PATCH) {
  1640. return wavefront_load_gus_patch (devno, format,
  1641.  addr, offs, count, pmgr_flag);
  1642. } else if (format != WAVEFRONT_PATCH) {
  1643. printk (KERN_ERR LOGNAME "unknown patch format %dn", format);
  1644. return -(EINVAL);
  1645. }
  1646. if (count < sizeof (wavefront_patch_info)) {
  1647. printk (KERN_ERR LOGNAME "sample header too shortn");
  1648. return -(EINVAL);
  1649. }
  1650. /* "addr" points to a user-space wavefront_patch_info */
  1651. return wavefront_load_patch (addr);
  1652. }
  1653. static struct synth_operations wavefront_operations =
  1654. {
  1655. owner: THIS_MODULE,
  1656. id: "WaveFront",
  1657. info: &wavefront_info,
  1658. midi_dev: 0,
  1659. synth_type: SYNTH_TYPE_SAMPLE,
  1660. synth_subtype: SAMPLE_TYPE_WAVEFRONT,
  1661. open: wavefront_oss_open,
  1662. close: wavefront_oss_close,
  1663. ioctl: wavefront_oss_ioctl,
  1664. kill_note: midi_synth_kill_note,
  1665. start_note: midi_synth_start_note,
  1666. set_instr: midi_synth_set_instr,
  1667. reset: midi_synth_reset,
  1668. load_patch: midi_synth_load_patch,
  1669. aftertouch: midi_synth_aftertouch,
  1670. controller: midi_synth_controller,
  1671. panning: midi_synth_panning,
  1672. bender: midi_synth_bender,
  1673. setup_voice: midi_synth_setup_voice
  1674. };
  1675. #endif /* OSS_SUPPORT_SEQ */
  1676. #if OSS_SUPPORT_LEVEL & OSS_SUPPORT_STATIC_INSTALL
  1677. static void __init attach_wavefront (struct address_info *hw_config)
  1678. {
  1679.     (void) install_wavefront ();
  1680. }
  1681. static int __init probe_wavefront (struct address_info *hw_config)
  1682. {
  1683.     return !detect_wavefront (hw_config->irq, hw_config->io_base);
  1684. }
  1685. static void __exit unload_wavefront (struct address_info *hw_config) 
  1686. {
  1687.     (void) uninstall_wavefront ();
  1688. }
  1689. #endif /* OSS_SUPPORT_STATIC_INSTALL */
  1690. /***********************************************************************/
  1691. /* WaveFront: Linux modular sound kernel installation interface        */
  1692. /***********************************************************************/
  1693. void
  1694. wavefrontintr (int irq, void *dev_id, struct pt_regs *dummy)
  1695. {
  1696. struct wf_config *hw = dev_id;
  1697. /*
  1698.    Some comments on interrupts. I attempted a version of this
  1699.    driver that used interrupts throughout the code instead of
  1700.    doing busy and/or sleep-waiting. Alas, it appears that once
  1701.    the Motorola firmware is downloaded, the card *never*
  1702.    generates an RX interrupt. These are successfully generated
  1703.    during firmware loading, and after that wavefront_status()
  1704.    reports that an interrupt is pending on the card from time
  1705.    to time, but it never seems to be delivered to this
  1706.    driver. Note also that wavefront_status() continues to
  1707.    report that RX interrupts are enabled, suggesting that I
  1708.    didn't goof up and disable them by mistake.
  1709.    Thus, I stepped back to a prior version of
  1710.    wavefront_wait(), the only place where this really
  1711.    matters. Its sad, but I've looked through the code to check
  1712.    on things, and I really feel certain that the Motorola
  1713.    firmware prevents RX-ready interrupts.
  1714. */
  1715. if ((wavefront_status() & (STAT_INTR_READ|STAT_INTR_WRITE)) == 0) {
  1716. return;
  1717. }
  1718. hw->irq_ok = 1;
  1719. hw->irq_cnt++;
  1720. wake_up_interruptible (&hw->interrupt_sleeper);
  1721. }
  1722. /* STATUS REGISTER 
  1723. 0 Host Rx Interrupt Enable (1=Enabled)
  1724. 1 Host Rx Register Full (1=Full)
  1725. 2 Host Rx Interrupt Pending (1=Interrupt)
  1726. 3 Unused
  1727. 4 Host Tx Interrupt (1=Enabled)
  1728. 5 Host Tx Register empty (1=Empty)
  1729. 6 Host Tx Interrupt Pending (1=Interrupt)
  1730. 7 Unused
  1731. */
  1732. int
  1733. wavefront_interrupt_bits (int irq)
  1734. {
  1735. int bits;
  1736. switch (irq) {
  1737. case 9:
  1738. bits = 0x00;
  1739. break;
  1740. case 5:
  1741. bits = 0x08;
  1742. break;
  1743. case 12:
  1744. bits = 0x10;
  1745. break;
  1746. case 15:
  1747. bits = 0x18;
  1748. break;
  1749. default:
  1750. printk (KERN_WARNING LOGNAME "invalid IRQ %dn", irq);
  1751. bits = -1;
  1752. }
  1753. return bits;
  1754. }
  1755. void
  1756. wavefront_should_cause_interrupt (int val, int port, int timeout)
  1757. {
  1758. unsigned long flags;
  1759. save_flags (flags);
  1760. cli();
  1761. dev.irq_ok = 0;
  1762. outb (val,port);
  1763. interruptible_sleep_on_timeout (&dev.interrupt_sleeper, timeout);
  1764. restore_flags (flags);
  1765. }
  1766. static int __init wavefront_hw_reset (void)
  1767. {
  1768. int bits;
  1769. int hwv[2];
  1770. unsigned long irq_mask;
  1771. short reported_irq;
  1772. /* IRQ already checked in init_module() */
  1773. bits = wavefront_interrupt_bits (dev.irq);
  1774. printk (KERN_DEBUG LOGNAME "autodetecting WaveFront IRQn");
  1775. sti ();
  1776. irq_mask = probe_irq_on ();
  1777. outb (0x0, dev.control_port); 
  1778. outb (0x80 | 0x40 | bits, dev.data_port);
  1779. wavefront_should_cause_interrupt(0x80|0x40|0x10|0x1,
  1780.  dev.control_port,
  1781.  (reset_time*HZ)/100);
  1782. reported_irq = probe_irq_off (irq_mask);
  1783. if (reported_irq != dev.irq) {
  1784. if (reported_irq == 0) {
  1785. printk (KERN_ERR LOGNAME
  1786. "No unassigned interrupts detected "
  1787. "after h/w resetn");
  1788. } else if (reported_irq < 0) {
  1789. printk (KERN_ERR LOGNAME
  1790. "Multiple unassigned interrupts detected "
  1791. "after h/w resetn");
  1792. } else {
  1793. printk (KERN_ERR LOGNAME "autodetected IRQ %d not the "
  1794. "value provided (%d)n", reported_irq,
  1795. dev.irq);
  1796. }
  1797. dev.irq = -1;
  1798. return 1;
  1799. } else {
  1800. printk (KERN_INFO LOGNAME "autodetected IRQ at %dn",
  1801. reported_irq);
  1802. }
  1803. if (request_irq (dev.irq, wavefrontintr,
  1804.  SA_INTERRUPT|SA_SHIRQ,
  1805.  "wavefront synth", &dev) < 0) {
  1806. printk (KERN_WARNING LOGNAME "IRQ %d not available!n",
  1807. dev.irq);
  1808. return 1;
  1809. }
  1810. /* try reset of port */
  1811.       
  1812. outb (0x0, dev.control_port); 
  1813.   
  1814. /* At this point, the board is in reset, and the H/W initialization
  1815.    register is accessed at the same address as the data port.
  1816.      
  1817.    Bit 7 - Enable IRQ Driver
  1818.    0 - Tri-state the Wave-Board drivers for the PC Bus IRQs
  1819.    1 - Enable IRQ selected by bits 5:3 to be driven onto the PC Bus.
  1820.      
  1821.    Bit 6 - MIDI Interface Select
  1822.    0 - Use the MIDI Input from the 26-pin WaveBlaster
  1823.    compatible header as the serial MIDI source
  1824.    1 - Use the MIDI Input from the 9-pin D connector as the
  1825.    serial MIDI source.
  1826.      
  1827.    Bits 5:3 - IRQ Selection
  1828.    0 0 0 - IRQ 2/9
  1829.    0 0 1 - IRQ 5
  1830.    0 1 0 - IRQ 12
  1831.    0 1 1 - IRQ 15
  1832.    1 0 0 - Reserved
  1833.    1 0 1 - Reserved
  1834.    1 1 0 - Reserved
  1835.    1 1 1 - Reserved
  1836.      
  1837.    Bits 2:1 - Reserved
  1838.    Bit 0 - Disable Boot ROM
  1839.    0 - memory accesses to 03FC30-03FFFFH utilize the internal Boot ROM
  1840.    1 - memory accesses to 03FC30-03FFFFH are directed to external 
  1841.    storage.
  1842.      
  1843. */
  1844. /* configure hardware: IRQ, enable interrupts, 
  1845.    plus external 9-pin MIDI interface selected
  1846. */
  1847. outb (0x80 | 0x40 | bits, dev.data_port);
  1848.   
  1849. /* CONTROL REGISTER
  1850.    0 Host Rx Interrupt Enable (1=Enabled)      0x1
  1851.    1 Unused                                    0x2
  1852.    2 Unused                                    0x4
  1853.    3 Unused                                    0x8
  1854.    4 Host Tx Interrupt Enable                 0x10
  1855.    5 Mute (0=Mute; 1=Play)                    0x20
  1856.    6 Master Interrupt Enable (1=Enabled)      0x40
  1857.    7 Master Reset (0=Reset; 1=Run)            0x80
  1858.    Take us out of reset, mute output, master + TX + RX interrupts on.
  1859.    
  1860.    We'll get an interrupt presumably to tell us that the TX
  1861.    register is clear.
  1862. */
  1863. wavefront_should_cause_interrupt(0x80|0x40|0x10|0x1,
  1864.  dev.control_port,
  1865.  (reset_time*HZ)/100);
  1866. /* Note: data port is now the data port, not the h/w initialization
  1867.    port.
  1868.  */
  1869. if (!dev.irq_ok) {
  1870. printk (KERN_WARNING LOGNAME
  1871. "intr not received after h/w un-reset.n");
  1872. goto gone_bad;
  1873. dev.interrupts_on = 1;
  1874. /* Note: data port is now the data port, not the h/w initialization
  1875.    port.
  1876.    At this point, only "HW VERSION" or "DOWNLOAD OS" commands
  1877.    will work. So, issue one of them, and wait for TX
  1878.    interrupt. This can take a *long* time after a cold boot,
  1879.    while the ISC ROM does its RAM test. The SDK says up to 4
  1880.    seconds - with 12MB of RAM on a Tropez+, it takes a lot
  1881.    longer than that (~16secs). Note that the card understands
  1882.    the difference between a warm and a cold boot, so
  1883.    subsequent ISC2115 reboots (say, caused by module
  1884.    reloading) will get through this much faster.
  1885.    XXX Interesting question: why is no RX interrupt received first ?
  1886. */
  1887. wavefront_should_cause_interrupt(WFC_HARDWARE_VERSION, 
  1888.  dev.data_port, ramcheck_time*HZ);
  1889. if (!dev.irq_ok) {
  1890. printk (KERN_WARNING LOGNAME
  1891. "post-RAM-check interrupt not received.n");
  1892. goto gone_bad;
  1893. if (!wavefront_wait (STAT_CAN_READ)) {
  1894. printk (KERN_WARNING LOGNAME
  1895. "no response to HW version cmd.n");
  1896. goto gone_bad;
  1897. }
  1898. if ((hwv[0] = wavefront_read ()) == -1) {
  1899. printk (KERN_WARNING LOGNAME
  1900. "board not responding correctly.n");
  1901. goto gone_bad;
  1902. }
  1903. if (hwv[0] == 0xFF) { /* NAK */
  1904. /* Board's RAM test failed. Try to read error code,
  1905.    and tell us about it either way.
  1906. */
  1907. if ((hwv[0] = wavefront_read ()) == -1) {
  1908. printk (KERN_WARNING LOGNAME "on-board RAM test failed "
  1909. "(bad error code).n");
  1910. } else {
  1911. printk (KERN_WARNING LOGNAME "on-board RAM test failed "
  1912. "(error code: 0x%x).n",
  1913. hwv[0]);
  1914. }
  1915. goto gone_bad;
  1916. }
  1917. /* We're OK, just get the next byte of the HW version response */
  1918. if ((hwv[1] = wavefront_read ()) == -1) {
  1919. printk (KERN_WARNING LOGNAME "incorrect h/w response.n");
  1920. goto gone_bad;
  1921. }
  1922. printk (KERN_INFO LOGNAME "hardware version %d.%dn",
  1923. hwv[0], hwv[1]);
  1924. return 0;
  1925.      gone_bad:
  1926. if (dev.irq >= 0) {
  1927. free_irq (dev.irq, &dev);
  1928. dev.irq = -1;
  1929. }
  1930. return (1);
  1931. }
  1932. static int __init detect_wavefront (int irq, int io_base)
  1933. {
  1934. unsigned char   rbuf[4], wbuf[4];
  1935. /* TB docs say the device takes up 8 ports, but we know that
  1936.    if there is an FX device present (i.e. a Tropez+) it really
  1937.    consumes 16.
  1938. */
  1939. if (check_region (io_base, 16)) {
  1940. printk (KERN_ERR LOGNAME "IO address range 0x%x - 0x%x "
  1941. "already in use - ignoredn", dev.base,
  1942. dev.base+15);
  1943. return -1;
  1944. }
  1945.   
  1946. dev.irq = irq;
  1947. dev.base = io_base;
  1948. dev.israw = 0;
  1949. dev.debug = debug_default;
  1950. dev.interrupts_on = 0;
  1951. dev.irq_cnt = 0;
  1952. dev.rom_samples_rdonly = 1; /* XXX default lock on ROM sample slots */
  1953. if (wavefront_cmd (WFC_FIRMWARE_VERSION, rbuf, wbuf) == 0) {
  1954. dev.fw_version[0] = rbuf[0];
  1955. dev.fw_version[1] = rbuf[1];
  1956. printk (KERN_INFO LOGNAME
  1957. "firmware %d.%d already loaded.n",
  1958. rbuf[0], rbuf[1]);
  1959. /* check that a command actually works */
  1960.       
  1961. if (wavefront_cmd (WFC_HARDWARE_VERSION,
  1962.    rbuf, wbuf) == 0) {
  1963. dev.hw_version[0] = rbuf[0];
  1964. dev.hw_version[1] = rbuf[1];
  1965. } else {
  1966. printk (KERN_WARNING LOGNAME "not raw, but no "
  1967. "hardware version!n");
  1968. return 0;
  1969. }
  1970. if (!wf_raw) {
  1971. return 1;
  1972. } else {
  1973. printk (KERN_INFO LOGNAME
  1974. "reloading firmware anyway.n");
  1975. dev.israw = 1;
  1976. }
  1977. } else {
  1978. dev.israw = 1;
  1979. printk (KERN_INFO LOGNAME
  1980. "no response to firmware probe, assume raw.n");
  1981. }
  1982. init_waitqueue_head (&dev.interrupt_sleeper);
  1983. if (wavefront_hw_reset ()) {
  1984. printk (KERN_WARNING LOGNAME "hardware reset failedn");
  1985. return 0;
  1986. }
  1987. /* Check for FX device, present only on Tropez+ */
  1988. dev.has_fx = (detect_wffx () == 0);
  1989. return 1;
  1990. }
  1991. #include "os.h"
  1992. #define __KERNEL_SYSCALLS__
  1993. #include <linux/fs.h>
  1994. #include <linux/mm.h>
  1995. #include <linux/slab.h>
  1996. #include <linux/unistd.h>
  1997. #include <asm/uaccess.h>
  1998. static int errno; 
  1999. static int
  2000. wavefront_download_firmware (char *path)
  2001. {
  2002. unsigned char section[WF_SECTION_MAX];
  2003. char section_length; /* yes, just a char; max value is WF_SECTION_MAX */
  2004. int section_cnt_downloaded = 0;
  2005. int fd;
  2006. int c;
  2007. int i;
  2008. mm_segment_t fs;
  2009. /* This tries to be a bit cleverer than the stuff Alan Cox did for
  2010.    the generic sound firmware, in that it actually knows
  2011.    something about the structure of the Motorola firmware. In
  2012.    particular, it uses a version that has been stripped of the
  2013.    20K of useless header information, and had section lengths
  2014.    added, making it possible to load the entire OS without any
  2015.    [kv]malloc() activity, since the longest entity we ever read is
  2016.    42 bytes (well, WF_SECTION_MAX) long.
  2017. */
  2018. fs = get_fs();
  2019. set_fs (get_ds());
  2020. if ((fd = open (path, 0, 0)) < 0) {
  2021. printk (KERN_WARNING LOGNAME "Unable to load "%s".n",
  2022. path);
  2023. return 1;
  2024. }
  2025. while (1) {
  2026. int x;
  2027. if ((x = read (fd, &section_length, sizeof (section_length))) !=
  2028.     sizeof (section_length)) {
  2029. printk (KERN_ERR LOGNAME "firmware read error.n");
  2030. goto failure;
  2031. }
  2032. if (section_length == 0) {
  2033. break;
  2034. }
  2035. if (read (fd, section, section_length) != section_length) {
  2036. printk (KERN_ERR LOGNAME "firmware section "
  2037. "read error.n");
  2038. goto failure;
  2039. }
  2040. /* Send command */
  2041. if (wavefront_write (WFC_DOWNLOAD_OS)) {
  2042. goto failure;
  2043. }
  2044. for (i = 0; i < section_length; i++) {
  2045. if (wavefront_write (section[i])) {
  2046. goto failure;
  2047. }
  2048. }
  2049. /* get ACK */
  2050. if (wavefront_wait (STAT_CAN_READ)) {
  2051. if ((c = inb (dev.data_port)) != WF_ACK) {
  2052. printk (KERN_ERR LOGNAME "download "
  2053. "of section #%d not "
  2054. "acknowledged, ack = 0x%xn",
  2055. section_cnt_downloaded + 1, c);
  2056. goto failure;
  2057. }
  2058. } else {
  2059. printk (KERN_ERR LOGNAME "time out for firmware ACK.n");
  2060. goto failure;
  2061. }
  2062. }
  2063. close (fd);
  2064. set_fs (fs);
  2065. return 0;
  2066.  failure:
  2067. close (fd);
  2068. set_fs (fs);
  2069. printk (KERN_ERR "nWaveFront: firmware download failed!!!n");
  2070. return 1;
  2071. }
  2072. static int __init wavefront_config_midi (void)
  2073. {
  2074. unsigned char rbuf[4], wbuf[4];
  2075.     
  2076. if (detect_wf_mpu (dev.irq, dev.base) < 0) {
  2077. printk (KERN_WARNING LOGNAME
  2078. "could not find working MIDI devicen");
  2079. return -1;
  2080. if ((dev.mididev = install_wf_mpu ()) < 0) {
  2081. printk (KERN_WARNING LOGNAME
  2082. "MIDI interfaces not configuredn");
  2083. return -1;
  2084. }
  2085. /* Route external MIDI to WaveFront synth (by default) */
  2086.     
  2087. if (wavefront_cmd (WFC_MISYNTH_ON, rbuf, wbuf)) {
  2088. printk (KERN_WARNING LOGNAME
  2089. "cannot enable MIDI-IN to synth routing.n");
  2090. /* XXX error ? */
  2091. }
  2092. #if OSS_SUPPORT_LEVEL & OSS_SUPPORT_SEQ
  2093. /* Get the regular MIDI patch loading function, so we can
  2094.    use it if we ever get handed a SYSEX patch. This is
  2095.    unlikely, because its so damn slow, but we may as well
  2096.    leave this functionality from maui.c behind, since it
  2097.    could be useful for sequencer applications that can
  2098.    only use MIDI to do patch loading.
  2099. */
  2100. if (midi_devs[dev.mididev]->converter != NULL) {
  2101. midi_load_patch = midi_devs[dev.mididev]->converter->load_patch;
  2102. midi_devs[dev.mididev]->converter->load_patch =
  2103.     &wavefront_oss_load_patch;
  2104. }
  2105. #endif /* OSS_SUPPORT_SEQ */
  2106. /* Turn on Virtual MIDI, but first *always* turn it off,
  2107.    since otherwise consectutive reloads of the driver will
  2108.    never cause the hardware to generate the initial "internal" or 
  2109.    "external" source bytes in the MIDI data stream. This
  2110.    is pretty important, since the internal hardware generally will
  2111.    be used to generate none or very little MIDI output, and
  2112.    thus the only source of MIDI data is actually external. Without
  2113.    the switch bytes, the driver will think it all comes from
  2114.    the internal interface. Duh.
  2115. */
  2116. if (wavefront_cmd (WFC_VMIDI_OFF, rbuf, wbuf)) { 
  2117. printk (KERN_WARNING LOGNAME
  2118. "virtual MIDI mode not disabledn");
  2119. return 0; /* We're OK, but missing the external MIDI dev */
  2120. }
  2121. if ((dev.ext_mididev = virtual_midi_enable ()) < 0) {
  2122. printk (KERN_WARNING LOGNAME "no virtual MIDI access.n");
  2123. } else {
  2124. if (wavefront_cmd (WFC_VMIDI_ON, rbuf, wbuf)) {
  2125. printk (KERN_WARNING LOGNAME
  2126. "cannot enable virtual MIDI mode.n");
  2127. virtual_midi_disable ();
  2128. }
  2129.     
  2130. return 0;
  2131. }
  2132. static int __init wavefront_do_reset (int atboot)
  2133. {
  2134. char voices[1];
  2135. if (!atboot && wavefront_hw_reset ()) {
  2136. printk (KERN_WARNING LOGNAME "hw reset failed.n");
  2137. goto gone_bad;
  2138. }
  2139. if (dev.israw) {
  2140. if (wavefront_download_firmware (ospath)) {
  2141. goto gone_bad;
  2142. }
  2143. dev.israw = 0;
  2144. /* Wait for the OS to get running. The protocol for
  2145.    this is non-obvious, and was determined by
  2146.    using port-IO tracing in DOSemu and some
  2147.    experimentation here.
  2148.    
  2149.    Rather than using timed waits, use interrupts creatively.
  2150. */
  2151. wavefront_should_cause_interrupt (WFC_NOOP,
  2152.   dev.data_port,
  2153.   (osrun_time*HZ));
  2154. if (!dev.irq_ok) {
  2155. printk (KERN_WARNING LOGNAME
  2156. "no post-OS interrupt.n");
  2157. goto gone_bad;
  2158. }
  2159. /* Now, do it again ! */
  2160. wavefront_should_cause_interrupt (WFC_NOOP,
  2161.   dev.data_port, (10*HZ));
  2162. if (!dev.irq_ok) {
  2163. printk (KERN_WARNING LOGNAME
  2164. "no post-OS interrupt(2).n");
  2165. goto gone_bad;
  2166. }
  2167. /* OK, no (RX/TX) interrupts any more, but leave mute
  2168.    in effect. 
  2169. */
  2170. outb (0x80|0x40, dev.control_port); 
  2171. /* No need for the IRQ anymore */
  2172. free_irq (dev.irq, &dev);
  2173. }
  2174. if (dev.has_fx && fx_raw) {
  2175. wffx_init ();
  2176. }
  2177. /* SETUPSND.EXE asks for sample memory config here, but since i
  2178.    have no idea how to interpret the result, we'll forget
  2179.    about it.
  2180. */
  2181. if ((dev.freemem = wavefront_freemem ()) < 0) {
  2182. goto gone_bad;
  2183. }
  2184. printk (KERN_INFO LOGNAME "available DRAM %dkn", dev.freemem / 1024);
  2185. if (wavefront_write (0xf0) ||
  2186.     wavefront_write (1) ||
  2187.     (wavefront_read () < 0)) {
  2188. dev.debug = 0;
  2189. printk (KERN_WARNING LOGNAME "MPU emulation mode not set.n");
  2190. goto gone_bad;
  2191. }
  2192. voices[0] = 32;
  2193. if (wavefront_cmd (WFC_SET_NVOICES, 0, voices)) {
  2194. printk (KERN_WARNING LOGNAME
  2195. "cannot set number of voices to 32.n");
  2196. goto gone_bad;
  2197. }
  2198. return 0;
  2199.  gone_bad:
  2200. /* reset that sucker so that it doesn't bother us. */
  2201. outb (0x0, dev.control_port);
  2202. dev.interrupts_on = 0;
  2203. if (dev.irq >= 0) {
  2204. free_irq (dev.irq, &dev);
  2205. }
  2206. return 1;
  2207. }
  2208. static int __init wavefront_init (int atboot)
  2209. {
  2210. int samples_are_from_rom;
  2211. if (dev.israw) {
  2212. samples_are_from_rom = 1;
  2213. } else {
  2214. /* XXX is this always true ? */
  2215. samples_are_from_rom = 0;
  2216. }
  2217. if (dev.israw || fx_raw) {
  2218. if (wavefront_do_reset (atboot)) {
  2219. return -1;
  2220. }
  2221. }
  2222. wavefront_get_sample_status (samples_are_from_rom);
  2223. wavefront_get_program_status ();
  2224. wavefront_get_patch_status ();
  2225. /* Start normal operation: unreset, master interrupt enabled, no mute
  2226. */
  2227. outb (0x80|0x40|0x20, dev.control_port); 
  2228. return (0);
  2229. }
  2230. static int __init install_wavefront (void)
  2231. {
  2232. if ((dev.synth_dev = register_sound_synth (&wavefront_fops, -1)) < 0) {
  2233. printk (KERN_ERR LOGNAME "cannot register raw synthn");
  2234. return -1;
  2235. }
  2236. #if OSS_SUPPORT_LEVEL & OSS_SUPPORT_SEQ
  2237. if ((dev.oss_dev = sound_alloc_synthdev()) == -1) {
  2238. printk (KERN_ERR LOGNAME "Too many sequencersn");
  2239. return -1;
  2240. } else {
  2241. synth_devs[dev.oss_dev] = &wavefront_operations;
  2242. }
  2243. #endif /* OSS_SUPPORT_SEQ */
  2244. if (wavefront_init (1) < 0) {
  2245. printk (KERN_WARNING LOGNAME "initialization failed.n");
  2246. #if OSS_SUPPORT_LEVEL & OSS_SUPPORT_SEQ
  2247. sound_unload_synthdev (dev.oss_dev);
  2248. #endif /* OSS_SUPPORT_SEQ */ 
  2249. return -1;
  2250. }
  2251.     
  2252. request_region (dev.base+2, 6, "wavefront synth");
  2253. if (dev.has_fx) {
  2254. request_region (dev.base+8, 8, "wavefront fx");
  2255. }
  2256. if (wavefront_config_midi ()) {
  2257. printk (KERN_WARNING LOGNAME "could not initialize MIDI.n");
  2258. }
  2259. return dev.oss_dev;
  2260. }
  2261. static void __exit uninstall_wavefront (void)
  2262. {
  2263. /* the first two i/o addresses are freed by the wf_mpu code */
  2264. release_region (dev.base+2, 6);
  2265. if (dev.has_fx) {
  2266. release_region (dev.base+8, 8);
  2267. }
  2268. unregister_sound_synth (dev.synth_dev);
  2269. #if OSS_SUPPORT_LEVEL & OSS_SUPPORT_SEQ
  2270. sound_unload_synthdev (dev.oss_dev);
  2271. #endif /* OSS_SUPPORT_SEQ */ 
  2272. uninstall_wf_mpu ();
  2273. }
  2274. /***********************************************************************/
  2275. /*   WaveFront FX control                                              */
  2276. /***********************************************************************/
  2277. #include "yss225.h"
  2278. /* Control bits for the Load Control Register
  2279.  */
  2280. #define FX_LSB_TRANSFER 0x01    /* transfer after DSP LSB byte written */
  2281. #define FX_MSB_TRANSFER 0x02    /* transfer after DSP MSB byte written */
  2282. #define FX_AUTO_INCR    0x04    /* auto-increment DSP address after transfer */
  2283. static int
  2284. wffx_idle (void) 
  2285.     
  2286. {
  2287. int i;
  2288. unsigned int x = 0x80;
  2289.     
  2290. for (i = 0; i < 1000; i++) {
  2291. x = inb (dev.fx_status);
  2292. if ((x & 0x80) == 0) {
  2293. break;
  2294. }
  2295. }
  2296.     
  2297. if (x & 0x80) {
  2298. printk (KERN_ERR LOGNAME "FX device never idle.n");
  2299. return 0;
  2300. }
  2301.     
  2302. return (1);
  2303. }
  2304. int __init detect_wffx (void)
  2305. {
  2306. /* This is a crude check, but its the best one I have for now.
  2307.    Certainly on the Maui and the Tropez, wffx_idle() will
  2308.    report "never idle", which suggests that this test should
  2309.    work OK.
  2310. */
  2311. if (inb (dev.fx_status) & 0x80) {
  2312. printk (KERN_INFO LOGNAME "Hmm, probably a Maui or Tropez.n");
  2313. return -1;
  2314. }
  2315. return 0;
  2316. }
  2317. int __init attach_wffx (void)
  2318. {
  2319. if ((dev.fx_mididev = sound_alloc_mididev ()) < 0) {
  2320. printk (KERN_WARNING LOGNAME "cannot install FX Midi drivern");
  2321. return -1;
  2322. }
  2323. return 0;
  2324. }
  2325. void
  2326. wffx_mute (int onoff)
  2327.     
  2328. {
  2329. if (!wffx_idle()) {
  2330. return;
  2331. }
  2332.     
  2333. outb (onoff ? 0x02 : 0x00, dev.fx_op);
  2334. }
  2335. static int
  2336. wffx_memset (int page,
  2337.      int addr, int cnt, unsigned short *data)
  2338. {
  2339. if (page < 0 || page > 7) {
  2340. printk (KERN_ERR LOGNAME "FX memset: "
  2341. "page must be >= 0 and <= 7n");
  2342. return -(EINVAL);
  2343. }
  2344. if (addr < 0 || addr > 0x7f) {
  2345. printk (KERN_ERR LOGNAME "FX memset: "
  2346. "addr must be >= 0 and <= 7fn");
  2347. return -(EINVAL);
  2348. }
  2349. if (cnt == 1) {
  2350. outb (FX_LSB_TRANSFER, dev.fx_lcr);
  2351. outb (page, dev.fx_dsp_page);
  2352. outb (addr, dev.fx_dsp_addr);
  2353. outb ((data[0] >> 8), dev.fx_dsp_msb);
  2354. outb ((data[0] & 0xff), dev.fx_dsp_lsb);
  2355. printk (KERN_INFO LOGNAME "FX: addr %d:%x set to 0x%xn",
  2356. page, addr, data[0]);
  2357. } else {
  2358. int i;
  2359. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2360. outb (page, dev.fx_dsp_page);
  2361. outb (addr, dev.fx_dsp_addr);
  2362. for (i = 0; i < cnt; i++) {
  2363. outb ((data[i] >> 8), dev.fx_dsp_msb);
  2364. outb ((data[i] & 0xff), dev.fx_dsp_lsb);
  2365. if (!wffx_idle ()) {
  2366. break;
  2367. }
  2368. }
  2369. if (i != cnt) {
  2370. printk (KERN_WARNING LOGNAME
  2371. "FX memset "
  2372. "(0x%x, 0x%x, 0x%x, %d) incompleten",
  2373. page, addr, (int) data, cnt);
  2374. return -(EIO);
  2375. }
  2376. }
  2377. return 0;
  2378. }
  2379. static int
  2380. wffx_ioctl (wavefront_fx_info *r)
  2381. {
  2382. unsigned short page_data[256];
  2383. unsigned short *pd;
  2384. switch (r->request) {
  2385. case WFFX_MUTE:
  2386. wffx_mute (r->data[0]);
  2387. return 0;
  2388. case WFFX_MEMSET:
  2389. if (r->data[2] <= 0) {
  2390. printk (KERN_ERR LOGNAME "cannot write "
  2391. "<= 0 bytes to FXn");
  2392. return -(EINVAL);
  2393. } else if (r->data[2] == 1) {
  2394. pd = (unsigned short *) &r->data[3];
  2395. } else {
  2396. if (r->data[2] > sizeof (page_data)) {
  2397. printk (KERN_ERR LOGNAME "cannot write "
  2398. "> 255 bytes to FXn");
  2399. return -(EINVAL);
  2400. }
  2401. copy_from_user (page_data, (unsigned char *) r->data[3],
  2402. r->data[2]);
  2403. pd = page_data;
  2404. }
  2405. return wffx_memset (r->data[0], /* page */
  2406.     r->data[1], /* addr */
  2407.     r->data[2], /* cnt */
  2408.     pd);
  2409. default:
  2410. printk (KERN_WARNING LOGNAME
  2411. "FX: ioctl %d not yet supportedn",
  2412. r->request);
  2413. return -(EINVAL);
  2414. }
  2415. }
  2416. /* YSS225 initialization.
  2417.    This code was developed using DOSEMU. The Turtle Beach SETUPSND
  2418.    utility was run with I/O tracing in DOSEMU enabled, and a reconstruction
  2419.    of the port I/O done, using the Yamaha faxback document as a guide
  2420.    to add more logic to the code. Its really pretty weird.
  2421.    There was an alternative approach of just dumping the whole I/O
  2422.    sequence as a series of port/value pairs and a simple loop
  2423.    that output it. However, I hope that eventually I'll get more
  2424.    control over what this code does, and so I tried to stick with
  2425.    a somewhat "algorithmic" approach.
  2426. */
  2427. static int __init wffx_init (void)
  2428. {
  2429. int i;
  2430. int j;
  2431. /* Set all bits for all channels on the MOD unit to zero */
  2432. /* XXX But why do this twice ? */
  2433. for (j = 0; j < 2; j++) {
  2434. for (i = 0x10; i <= 0xff; i++) {
  2435.     
  2436. if (!wffx_idle ()) {
  2437. return (-1);
  2438. }
  2439.     
  2440. outb (i, dev.fx_mod_addr);
  2441. outb (0x0, dev.fx_mod_data);
  2442. }
  2443. }
  2444. if (!wffx_idle()) return (-1);
  2445. outb (0x02, dev.fx_op);                        /* mute on */
  2446. if (!wffx_idle()) return (-1);
  2447. outb (0x07, dev.fx_dsp_page);
  2448. outb (0x44, dev.fx_dsp_addr);
  2449. outb (0x00, dev.fx_dsp_msb);
  2450. outb (0x00, dev.fx_dsp_lsb);
  2451. if (!wffx_idle()) return (-1);
  2452. outb (0x07, dev.fx_dsp_page);
  2453. outb (0x42, dev.fx_dsp_addr);
  2454. outb (0x00, dev.fx_dsp_msb);
  2455. outb (0x00, dev.fx_dsp_lsb);
  2456. if (!wffx_idle()) return (-1);
  2457. outb (0x07, dev.fx_dsp_page);
  2458. outb (0x43, dev.fx_dsp_addr);
  2459. outb (0x00, dev.fx_dsp_msb);
  2460. outb (0x00, dev.fx_dsp_lsb);
  2461. if (!wffx_idle()) return (-1);
  2462. outb (0x07, dev.fx_dsp_page);
  2463. outb (0x7c, dev.fx_dsp_addr);
  2464. outb (0x00, dev.fx_dsp_msb);
  2465. outb (0x00, dev.fx_dsp_lsb);
  2466. if (!wffx_idle()) return (-1);
  2467. outb (0x07, dev.fx_dsp_page);
  2468. outb (0x7e, dev.fx_dsp_addr);
  2469. outb (0x00, dev.fx_dsp_msb);
  2470. outb (0x00, dev.fx_dsp_lsb);
  2471. if (!wffx_idle()) return (-1);
  2472. outb (0x07, dev.fx_dsp_page);
  2473. outb (0x46, dev.fx_dsp_addr);
  2474. outb (0x00, dev.fx_dsp_msb);
  2475. outb (0x00, dev.fx_dsp_lsb);
  2476. if (!wffx_idle()) return (-1);
  2477. outb (0x07, dev.fx_dsp_page);
  2478. outb (0x49, dev.fx_dsp_addr);
  2479. outb (0x00, dev.fx_dsp_msb);
  2480. outb (0x00, dev.fx_dsp_lsb);
  2481. if (!wffx_idle()) return (-1);
  2482. outb (0x07, dev.fx_dsp_page);
  2483. outb (0x47, dev.fx_dsp_addr);
  2484. outb (0x00, dev.fx_dsp_msb);
  2485. outb (0x00, dev.fx_dsp_lsb);
  2486. if (!wffx_idle()) return (-1);
  2487. outb (0x07, dev.fx_dsp_page);
  2488. outb (0x4a, dev.fx_dsp_addr);
  2489. outb (0x00, dev.fx_dsp_msb);
  2490. outb (0x00, dev.fx_dsp_lsb);
  2491. /* either because of stupidity by TB's programmers, or because it
  2492.    actually does something, rezero the MOD page.
  2493. */
  2494. for (i = 0x10; i <= 0xff; i++) {
  2495. if (!wffx_idle ()) {
  2496. return (-1);
  2497. }
  2498. outb (i, dev.fx_mod_addr);
  2499. outb (0x0, dev.fx_mod_data);
  2500. }
  2501. /* load page zero */
  2502. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2503. outb (0x00, dev.fx_dsp_page);
  2504. outb (0x00, dev.fx_dsp_addr);
  2505. for (i = 0; i < sizeof (page_zero); i += 2) {
  2506. outb (page_zero[i], dev.fx_dsp_msb);
  2507. outb (page_zero[i+1], dev.fx_dsp_lsb);
  2508. if (!wffx_idle()) return (-1);
  2509. }
  2510. /* Now load page one */
  2511. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2512. outb (0x01, dev.fx_dsp_page);
  2513. outb (0x00, dev.fx_dsp_addr);
  2514. for (i = 0; i < sizeof (page_one); i += 2) {
  2515. outb (page_one[i], dev.fx_dsp_msb);
  2516. outb (page_one[i+1], dev.fx_dsp_lsb);
  2517. if (!wffx_idle()) return (-1);
  2518. }
  2519.     
  2520. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2521. outb (0x02, dev.fx_dsp_page);
  2522. outb (0x00, dev.fx_dsp_addr);
  2523. for (i = 0; i < sizeof (page_two); i++) {
  2524. outb (page_two[i], dev.fx_dsp_lsb);
  2525. if (!wffx_idle()) return (-1);
  2526. }
  2527.     
  2528. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2529. outb (0x03, dev.fx_dsp_page);
  2530. outb (0x00, dev.fx_dsp_addr);
  2531. for (i = 0; i < sizeof (page_three); i++) {
  2532. outb (page_three[i], dev.fx_dsp_lsb);
  2533. if (!wffx_idle()) return (-1);
  2534. }
  2535.     
  2536. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2537. outb (0x04, dev.fx_dsp_page);
  2538. outb (0x00, dev.fx_dsp_addr);
  2539. for (i = 0; i < sizeof (page_four); i++) {
  2540. outb (page_four[i], dev.fx_dsp_lsb);
  2541. if (!wffx_idle()) return (-1);
  2542. }
  2543. /* Load memory area (page six) */
  2544.     
  2545. outb (FX_LSB_TRANSFER, dev.fx_lcr); 
  2546. outb (0x06, dev.fx_dsp_page); 
  2547. for (i = 0; i < sizeof (page_six); i += 3) {
  2548. outb (page_six[i], dev.fx_dsp_addr);
  2549. outb (page_six[i+1], dev.fx_dsp_msb);
  2550. outb (page_six[i+2], dev.fx_dsp_lsb);
  2551. if (!wffx_idle()) return (-1);
  2552. }
  2553.     
  2554. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2555. outb (0x07, dev.fx_dsp_page);
  2556. outb (0x00, dev.fx_dsp_addr);
  2557. for (i = 0; i < sizeof (page_seven); i += 2) {
  2558. outb (page_seven[i], dev.fx_dsp_msb);
  2559. outb (page_seven[i+1], dev.fx_dsp_lsb);
  2560. if (!wffx_idle()) return (-1);
  2561. }
  2562. /* Now setup the MOD area. We do this algorithmically in order to
  2563.    save a little data space. It could be done in the same fashion
  2564.    as the "pages".
  2565. */
  2566. for (i = 0x00; i <= 0x0f; i++) {
  2567. outb (0x01, dev.fx_mod_addr);
  2568. outb (i, dev.fx_mod_data);
  2569. if (!wffx_idle()) return (-1);
  2570. outb (0x02, dev.fx_mod_addr);
  2571. outb (0x00, dev.fx_mod_data);
  2572. if (!wffx_idle()) return (-1);
  2573. }
  2574. for (i = 0xb0; i <= 0xbf; i++) {
  2575. outb (i, dev.fx_mod_addr);
  2576. outb (0x20, dev.fx_mod_data);
  2577. if (!wffx_idle()) return (-1);
  2578. }
  2579. for (i = 0xf0; i <= 0xff; i++) {
  2580. outb (i, dev.fx_mod_addr);
  2581. outb (0x20, dev.fx_mod_data);
  2582. if (!wffx_idle()) return (-1);
  2583. }
  2584. for (i = 0x10; i <= 0x1d; i++) {
  2585. outb (i, dev.fx_mod_addr);
  2586. outb (0xff, dev.fx_mod_data);
  2587. if (!wffx_idle()) return (-1);
  2588. }
  2589. outb (0x1e, dev.fx_mod_addr);
  2590. outb (0x40, dev.fx_mod_data);
  2591. if (!wffx_idle()) return (-1);
  2592. for (i = 0x1f; i <= 0x2d; i++) {
  2593. outb (i, dev.fx_mod_addr);
  2594. outb (0xff, dev.fx_mod_data);
  2595. if (!wffx_idle()) return (-1);
  2596. }
  2597. outb (0x2e, dev.fx_mod_addr);
  2598. outb (0x00, dev.fx_mod_data);
  2599. if (!wffx_idle()) return (-1);
  2600. for (i = 0x2f; i <= 0x3e; i++) {
  2601. outb (i, dev.fx_mod_addr);
  2602. outb (0x00, dev.fx_mod_data);
  2603. if (!wffx_idle()) return (-1);
  2604. }
  2605. outb (0x3f, dev.fx_mod_addr);
  2606. outb (0x20, dev.fx_mod_data);
  2607. if (!wffx_idle()) return (-1);
  2608. for (i = 0x40; i <= 0x4d; i++) {
  2609. outb (i, dev.fx_mod_addr);
  2610. outb (0x00, dev.fx_mod_data);
  2611. if (!wffx_idle()) return (-1);
  2612. }
  2613. outb (0x4e, dev.fx_mod_addr);
  2614. outb (0x0e, dev.fx_mod_data);
  2615. if (!wffx_idle()) return (-1);
  2616. outb (0x4f, dev.fx_mod_addr);
  2617. outb (0x0e, dev.fx_mod_data);
  2618. if (!wffx_idle()) return (-1);
  2619. for (i = 0x50; i <= 0x6b; i++) {
  2620. outb (i, dev.fx_mod_addr);
  2621. outb (0x00, dev.fx_mod_data);
  2622. if (!wffx_idle()) return (-1);
  2623. }
  2624. outb (0x6c, dev.fx_mod_addr);
  2625. outb (0x40, dev.fx_mod_data);
  2626. if (!wffx_idle()) return (-1);
  2627. outb (0x6d, dev.fx_mod_addr);
  2628. outb (0x00, dev.fx_mod_data);
  2629. if (!wffx_idle()) return (-1);
  2630. outb (0x6e, dev.fx_mod_addr);
  2631. outb (0x40, dev.fx_mod_data);
  2632. if (!wffx_idle()) return (-1);
  2633. outb (0x6f, dev.fx_mod_addr);
  2634. outb (0x40, dev.fx_mod_data);
  2635. if (!wffx_idle()) return (-1);
  2636. for (i = 0x70; i <= 0x7f; i++) {
  2637. outb (i, dev.fx_mod_addr);
  2638. outb (0xc0, dev.fx_mod_data);
  2639. if (!wffx_idle()) return (-1);
  2640. }
  2641.     
  2642. for (i = 0x80; i <= 0xaf; i++) {
  2643. outb (i, dev.fx_mod_addr);
  2644. outb (0x00, dev.fx_mod_data);
  2645. if (!wffx_idle()) return (-1);
  2646. }
  2647. for (i = 0xc0; i <= 0xdd; i++) {
  2648. outb (i, dev.fx_mod_addr);
  2649. outb (0x00, dev.fx_mod_data);
  2650. if (!wffx_idle()) return (-1);
  2651. }
  2652. outb (0xde, dev.fx_mod_addr);
  2653. outb (0x10, dev.fx_mod_data);
  2654. if (!wffx_idle()) return (-1);
  2655. outb (0xdf, dev.fx_mod_addr);
  2656. outb (0x10, dev.fx_mod_data);
  2657. if (!wffx_idle()) return (-1);
  2658. for (i = 0xe0; i <= 0xef; i++) {
  2659. outb (i, dev.fx_mod_addr);
  2660. outb (0x00, dev.fx_mod_data);
  2661. if (!wffx_idle()) return (-1);
  2662. }
  2663. for (i = 0x00; i <= 0x0f; i++) {
  2664. outb (0x01, dev.fx_mod_addr);
  2665. outb (i, dev.fx_mod_data);
  2666. outb (0x02, dev.fx_mod_addr);
  2667. outb (0x01, dev.fx_mod_data);
  2668. if (!wffx_idle()) return (-1);
  2669. }
  2670. outb (0x02, dev.fx_op); /* mute on */
  2671. /* Now set the coefficients and so forth for the programs above */
  2672. for (i = 0; i < sizeof (coefficients); i += 4) {
  2673. outb (coefficients[i], dev.fx_dsp_page);
  2674. outb (coefficients[i+1], dev.fx_dsp_addr);
  2675. outb (coefficients[i+2], dev.fx_dsp_msb);
  2676. outb (coefficients[i+3], dev.fx_dsp_lsb);
  2677. if (!wffx_idle()) return (-1);
  2678. }
  2679. /* Some settings (?) that are too small to bundle into loops */
  2680. if (!wffx_idle()) return (-1);
  2681. outb (0x1e, dev.fx_mod_addr);
  2682. outb (0x14, dev.fx_mod_data);
  2683. if (!wffx_idle()) return (-1);
  2684. outb (0xde, dev.fx_mod_addr);
  2685. outb (0x20, dev.fx_mod_data);
  2686. if (!wffx_idle()) return (-1);
  2687. outb (0xdf, dev.fx_mod_addr);
  2688. outb (0x20, dev.fx_mod_data);
  2689.     
  2690. /* some more coefficients */
  2691. if (!wffx_idle()) return (-1);
  2692. outb (0x06, dev.fx_dsp_page);
  2693. outb (0x78, dev.fx_dsp_addr);
  2694. outb (0x00, dev.fx_dsp_msb);
  2695. outb (0x40, dev.fx_dsp_lsb);
  2696. if (!wffx_idle()) return (-1);
  2697. outb (0x07, dev.fx_dsp_page);
  2698. outb (0x03, dev.fx_dsp_addr);
  2699. outb (0x0f, dev.fx_dsp_msb);
  2700. outb (0xff, dev.fx_dsp_lsb);
  2701. if (!wffx_idle()) return (-1);
  2702. outb (0x07, dev.fx_dsp_page);
  2703. outb (0x0b, dev.fx_dsp_addr);
  2704. outb (0x0f, dev.fx_dsp_msb);
  2705. outb (0xff, dev.fx_dsp_lsb);
  2706. if (!wffx_idle()) return (-1);
  2707. outb (0x07, dev.fx_dsp_page);
  2708. outb (0x02, dev.fx_dsp_addr);
  2709. outb (0x00, dev.fx_dsp_msb);
  2710. outb (0x00, dev.fx_dsp_lsb);
  2711. if (!wffx_idle()) return (-1);
  2712. outb (0x07, dev.fx_dsp_page);
  2713. outb (0x0a, dev.fx_dsp_addr);
  2714. outb (0x00, dev.fx_dsp_msb);
  2715. outb (0x00, dev.fx_dsp_lsb);
  2716. if (!wffx_idle()) return (-1);
  2717. outb (0x07, dev.fx_dsp_page);
  2718. outb (0x46, dev.fx_dsp_addr);
  2719. outb (0x00, dev.fx_dsp_msb);
  2720. outb (0x00, dev.fx_dsp_lsb);
  2721. if (!wffx_idle()) return (-1);
  2722. outb (0x07, dev.fx_dsp_page);
  2723. outb (0x49, dev.fx_dsp_addr);
  2724. outb (0x00, dev.fx_dsp_msb);
  2725. outb (0x00, dev.fx_dsp_lsb);
  2726.     
  2727. /* Now, for some strange reason, lets reload every page
  2728.    and all the coefficients over again. I have *NO* idea
  2729.    why this is done. I do know that no sound is produced
  2730.    is this phase is omitted.
  2731. */
  2732. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2733. outb (0x00, dev.fx_dsp_page);  
  2734. outb (0x10, dev.fx_dsp_addr);
  2735. for (i = 0; i < sizeof (page_zero_v2); i += 2) {
  2736. outb (page_zero_v2[i], dev.fx_dsp_msb);
  2737. outb (page_zero_v2[i+1], dev.fx_dsp_lsb);
  2738. if (!wffx_idle()) return (-1);
  2739. }
  2740.     
  2741. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2742. outb (0x01, dev.fx_dsp_page);
  2743. outb (0x10, dev.fx_dsp_addr);
  2744. for (i = 0; i < sizeof (page_one_v2); i += 2) {
  2745. outb (page_one_v2[i], dev.fx_dsp_msb);
  2746. outb (page_one_v2[i+1], dev.fx_dsp_lsb);
  2747. if (!wffx_idle()) return (-1);
  2748. }
  2749.     
  2750. if (!wffx_idle()) return (-1);
  2751. if (!wffx_idle()) return (-1);
  2752.     
  2753. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2754. outb (0x02, dev.fx_dsp_page);
  2755. outb (0x10, dev.fx_dsp_addr);
  2756. for (i = 0; i < sizeof (page_two_v2); i++) {
  2757. outb (page_two_v2[i], dev.fx_dsp_lsb);
  2758. if (!wffx_idle()) return (-1);
  2759. }
  2760. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2761. outb (0x03, dev.fx_dsp_page);
  2762. outb (0x10, dev.fx_dsp_addr);
  2763. for (i = 0; i < sizeof (page_three_v2); i++) {
  2764. outb (page_three_v2[i], dev.fx_dsp_lsb);
  2765. if (!wffx_idle()) return (-1);
  2766. }
  2767.     
  2768. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2769. outb (0x04, dev.fx_dsp_page);
  2770. outb (0x10, dev.fx_dsp_addr);
  2771. for (i = 0; i < sizeof (page_four_v2); i++) {
  2772. outb (page_four_v2[i], dev.fx_dsp_lsb);
  2773. if (!wffx_idle()) return (-1);
  2774. }
  2775.     
  2776. outb (FX_LSB_TRANSFER, dev.fx_lcr);
  2777. outb (0x06, dev.fx_dsp_page);
  2778. /* Page six v.2 is algorithmic */
  2779.     
  2780. for (i = 0x10; i <= 0x3e; i += 2) {
  2781. outb (i, dev.fx_dsp_addr);
  2782. outb (0x00, dev.fx_dsp_msb);
  2783. outb (0x00, dev.fx_dsp_lsb);
  2784. if (!wffx_idle()) return (-1);
  2785. }
  2786. outb (FX_AUTO_INCR|FX_LSB_TRANSFER, dev.fx_lcr);
  2787. outb (0x07, dev.fx_dsp_page);
  2788. outb (0x10, dev.fx_dsp_addr);
  2789. for (i = 0; i < sizeof (page_seven_v2); i += 2) {
  2790. outb (page_seven_v2[i], dev.fx_dsp_msb);
  2791. outb (page_seven_v2[i+1], dev.fx_dsp_lsb);
  2792. if (!wffx_idle()) return (-1);
  2793. }
  2794. for (i = 0x00; i < sizeof(mod_v2); i += 2) {
  2795. outb (mod_v2[i], dev.fx_mod_addr);
  2796. outb (mod_v2[i+1], dev.fx_mod_data);
  2797. if (!wffx_idle()) return (-1);
  2798. }
  2799. for (i = 0; i < sizeof (coefficients2); i += 4) {
  2800. outb (coefficients2[i], dev.fx_dsp_page);
  2801. outb (coefficients2[i+1], dev.fx_dsp_addr);
  2802. outb (coefficients2[i+2], dev.fx_dsp_msb);
  2803. outb (coefficients2[i+3], dev.fx_dsp_lsb);
  2804. if (!wffx_idle()) return (-1);
  2805. }
  2806. for (i = 0; i < sizeof (coefficients3); i += 2) {
  2807. int x;
  2808. outb (0x07, dev.fx_dsp_page);
  2809. x = (i % 4) ? 0x4e : 0x4c;
  2810. outb (x, dev.fx_dsp_addr);
  2811. outb (coefficients3[i], dev.fx_dsp_msb);
  2812. outb (coefficients3[i+1], dev.fx_dsp_lsb);
  2813. }
  2814. outb (0x00, dev.fx_op); /* mute off */
  2815. if (!wffx_idle()) return (-1);
  2816. return (0);
  2817. }
  2818. static int io = -1;
  2819. static int irq = -1;
  2820. MODULE_AUTHOR      ("Paul Barton-Davis <pbd@op.net>");
  2821. MODULE_DESCRIPTION ("Turtle Beach WaveFront Linux Driver");
  2822. MODULE_LICENSE("GPL");
  2823. MODULE_PARM        (io,"i");
  2824. MODULE_PARM        (irq,"i");
  2825. static int __init init_wavfront (void)
  2826. {
  2827. printk ("Turtle Beach WaveFront Drivern"
  2828. "Copyright (C) by Hannu Solvainen, "
  2829. "Paul Barton-Davis 1993-1998.n");
  2830. /* XXX t'would be lovely to ask the CS4232 for these values, eh ? */
  2831. if (io == -1 || irq == -1) {
  2832. printk (KERN_INFO LOGNAME "irq and io options must be set.n");
  2833. return -EINVAL;
  2834. }
  2835. if (wavefront_interrupt_bits (irq) < 0) {
  2836. printk (KERN_INFO LOGNAME
  2837. "IRQ must be 9, 5, 12 or 15 (not %d)n", irq);
  2838. return -ENODEV;
  2839. }
  2840. if (detect_wavefront (irq, io) < 0) {
  2841. return -ENODEV;
  2842. if (install_wavefront () < 0) {
  2843. return -EIO;
  2844. }
  2845. return 0;
  2846. }
  2847. static void __exit cleanup_wavfront (void)
  2848. {
  2849. uninstall_wavefront ();
  2850. }
  2851. module_init(init_wavfront);
  2852. module_exit(cleanup_wavfront);