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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * sound/opl3.c
  3.  *
  4.  * A low level driver for Yamaha YM3812 and OPL-3 -chips
  5.  *
  6.  *
  7.  * Copyright (C) by Hannu Savolainen 1993-1997
  8.  *
  9.  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  10.  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  11.  * for more info.
  12.  *
  13.  *
  14.  * Changes
  15.  * Thomas Sailer    ioctl code reworked (vmalloc/vfree removed)
  16.  * Alan Cox modularisation, fixed sound_mem allocs.
  17.  * Christoph Hellwig Adapted to module_init/module_exit
  18.  * Arnaldo C. de Melo get rid of check_region, use request_region for
  19.  * OPL4, release it on exit, some cleanups.
  20.  *
  21.  * Status
  22.  * Believed to work. Badly needs rewriting a bit to support multiple
  23.  * OPL3 devices.
  24.  */
  25. #include <linux/init.h>
  26. #include <linux/module.h>
  27. #include <linux/delay.h>
  28. /*
  29.  * Major improvements to the FM handling 30AUG92 by Rob Hooft,
  30.  * hooft@chem.ruu.nl
  31.  */
  32. #include "sound_config.h"
  33. #include "opl3.h"
  34. #include "opl3_hw.h"
  35. #define MAX_VOICE 18
  36. #define OFFS_4OP 11
  37. struct voice_info
  38. {
  39. unsigned char   keyon_byte;
  40. long            bender;
  41. long            bender_range;
  42. unsigned long   orig_freq;
  43. unsigned long   current_freq;
  44. int             volume;
  45. int             mode;
  46. int             panning; /* 0xffff means not set */
  47. };
  48. typedef struct opl_devinfo
  49. {
  50. int             base;
  51. int             left_io, right_io;
  52. int             nr_voice;
  53. int             lv_map[MAX_VOICE];
  54. struct voice_info voc[MAX_VOICE];
  55. struct voice_alloc_info *v_alloc;
  56. struct channel_info *chn_info;
  57. struct sbi_instrument i_map[SBFM_MAXINSTR];
  58. struct sbi_instrument *act_i[MAX_VOICE];
  59. struct synth_info fm_info;
  60. int             busy;
  61. int             model;
  62. unsigned char   cmask;
  63. int             is_opl4;
  64. int            *osp;
  65. } opl_devinfo;
  66. static struct opl_devinfo *devc = NULL;
  67. static int      detected_model;
  68. static int      store_instr(int instr_no, struct sbi_instrument *instr);
  69. static void     freq_to_fnum(int freq, int *block, int *fnum);
  70. static void     opl3_command(int io_addr, unsigned int addr, unsigned int val);
  71. static int      opl3_kill_note(int dev, int voice, int note, int velocity);
  72. static void enter_4op_mode(void)
  73. {
  74. int i;
  75. static int v4op[MAX_VOICE] = {
  76. 0, 1, 2, 9, 10, 11, 6, 7, 8, 15, 16, 17
  77. };
  78. devc->cmask = 0x3f; /* Connect all possible 4 OP voice operators */
  79. opl3_command(devc->right_io, CONNECTION_SELECT_REGISTER, 0x3f);
  80. for (i = 0; i < 3; i++)
  81. pv_map[i].voice_mode = 4;
  82. for (i = 3; i < 6; i++)
  83. pv_map[i].voice_mode = 0;
  84. for (i = 9; i < 12; i++)
  85. pv_map[i].voice_mode = 4;
  86. for (i = 12; i < 15; i++)
  87. pv_map[i].voice_mode = 0;
  88. for (i = 0; i < 12; i++)
  89. devc->lv_map[i] = v4op[i];
  90. devc->v_alloc->max_voice = devc->nr_voice = 12;
  91. }
  92. static int opl3_ioctl(int dev, unsigned int cmd, caddr_t arg)
  93. {
  94. struct sbi_instrument ins;
  95. switch (cmd) {
  96. case SNDCTL_FM_LOAD_INSTR:
  97. printk(KERN_WARNING "Warning: Obsolete ioctl(SNDCTL_FM_LOAD_INSTR) used. Fix the program.n");
  98. if (copy_from_user(&ins, arg, sizeof(ins)))
  99. return -EFAULT;
  100. if (ins.channel < 0 || ins.channel >= SBFM_MAXINSTR) {
  101. printk(KERN_WARNING "FM Error: Invalid instrument number %dn", ins.channel);
  102. return -EINVAL;
  103. }
  104. return store_instr(ins.channel, &ins);
  105. case SNDCTL_SYNTH_INFO:
  106. devc->fm_info.nr_voices = (devc->nr_voice == 12) ? 6 : devc->nr_voice;
  107. if (copy_to_user(arg, &devc->fm_info, sizeof(devc->fm_info)))
  108. return -EFAULT;
  109. return 0;
  110. case SNDCTL_SYNTH_MEMAVL:
  111. return 0x7fffffff;
  112. case SNDCTL_FM_4OP_ENABLE:
  113. if (devc->model == 2)
  114. enter_4op_mode();
  115. return 0;
  116. default:
  117. return -EINVAL;
  118. }
  119. }
  120. int opl3_detect(int ioaddr, int *osp)
  121. {
  122. /*
  123.  * This function returns 1 if the FM chip is present at the given I/O port
  124.  * The detection algorithm plays with the timer built in the FM chip and
  125.  * looks for a change in the status register.
  126.  *
  127.  * Note! The timers of the FM chip are not connected to AdLib (and compatible)
  128.  * boards.
  129.  *
  130.  * Note2! The chip is initialized if detected.
  131.  */
  132. unsigned char stat1, signature;
  133. int i;
  134. if (devc != NULL)
  135. {
  136. printk(KERN_ERR "opl3: Only one OPL3 supported.n");
  137. return 0;
  138. }
  139. devc = (struct opl_devinfo *)kmalloc(sizeof(*devc), GFP_KERNEL);
  140. if (devc == NULL)
  141. {
  142. printk(KERN_ERR "opl3: Can't allocate memory for the device control "
  143. "structure n ");
  144. return 0;
  145. }
  146. memset(devc, 0, sizeof(*devc));
  147. strcpy(devc->fm_info.name, "OPL2");
  148. if (!request_region(ioaddr, 4, devc->fm_info.name)) {
  149. printk(KERN_WARNING "opl3: I/O port 0x%x already in usen", ioaddr);
  150. goto cleanup_devc;
  151. }
  152. devc->osp = osp;
  153. devc->base = ioaddr;
  154. /* Reset timers 1 and 2 */
  155. opl3_command(ioaddr, TIMER_CONTROL_REGISTER, TIMER1_MASK | TIMER2_MASK);
  156. /* Reset the IRQ of the FM chip */
  157. opl3_command(ioaddr, TIMER_CONTROL_REGISTER, IRQ_RESET);
  158. signature = stat1 = inb(ioaddr); /* Status register */
  159. if (signature != 0x00 && signature != 0x06 && signature != 0x02 &&
  160. signature != 0x0f)
  161. {
  162. MDB(printk(KERN_INFO "OPL3 not detected %xn", signature));
  163. goto cleanup_region;
  164. }
  165. if (signature == 0x06) /* OPL2 */
  166. {
  167. detected_model = 2;
  168. }
  169. else if (signature == 0x00 || signature == 0x0f) /* OPL3 or OPL4 */
  170. {
  171. unsigned char tmp;
  172. detected_model = 3;
  173. /*
  174.  * Detect availability of OPL4 (_experimental_). Works probably
  175.  * only after a cold boot. In addition the OPL4 port
  176.  * of the chip may not be connected to the PC bus at all.
  177.  */
  178. opl3_command(ioaddr + 2, OPL3_MODE_REGISTER, 0x00);
  179. opl3_command(ioaddr + 2, OPL3_MODE_REGISTER, OPL3_ENABLE | OPL4_ENABLE);
  180. if ((tmp = inb(ioaddr)) == 0x02) /* Have a OPL4 */
  181. {
  182. detected_model = 4;
  183. }
  184. if (request_region(ioaddr - 8, 2, "OPL4")) /* OPL4 port was free */
  185. {
  186. int tmp;
  187. outb((0x02), ioaddr - 8); /* Select OPL4 ID register */
  188. udelay(10);
  189. tmp = inb(ioaddr - 7); /* Read it */
  190. udelay(10);
  191. if (tmp == 0x20) /* OPL4 should return 0x20 here */
  192. {
  193. detected_model = 4;
  194. outb((0xF8), ioaddr - 8); /* Select OPL4 FM mixer control */
  195. udelay(10);
  196. outb((0x1B), ioaddr - 7); /* Write value */
  197. udelay(10);
  198. }
  199. else
  200. { /* release OPL4 port */
  201. release_region(ioaddr - 8, 2);
  202. detected_model = 3;
  203. }
  204. }
  205. opl3_command(ioaddr + 2, OPL3_MODE_REGISTER, 0);
  206. }
  207. for (i = 0; i < 9; i++)
  208. opl3_command(ioaddr, KEYON_BLOCK + i, 0); /*
  209.  * Note off
  210.  */
  211. opl3_command(ioaddr, TEST_REGISTER, ENABLE_WAVE_SELECT);
  212. opl3_command(ioaddr, PERCOSSION_REGISTER, 0x00); /*
  213.  * Melodic mode.
  214.  */
  215. return 1;
  216. cleanup_region:
  217. release_region(ioaddr, 4);
  218. cleanup_devc:
  219. kfree(devc);
  220. devc = NULL;
  221. return 0;
  222. }
  223. static int opl3_kill_note  (int devno, int voice, int note, int velocity)
  224. {
  225.  struct physical_voice_info *map;
  226.  if (voice < 0 || voice >= devc->nr_voice)
  227.  return 0;
  228.  devc->v_alloc->map[voice] = 0;
  229.  map = &pv_map[devc->lv_map[voice]];
  230.  DEB(printk("Kill note %dn", voice));
  231.  if (map->voice_mode == 0)
  232.  return 0;
  233.  opl3_command(map->ioaddr, KEYON_BLOCK + map->voice_num, devc->voc[voice].keyon_byte & ~0x20);
  234.  devc->voc[voice].keyon_byte = 0;
  235.  devc->voc[voice].bender = 0;
  236.  devc->voc[voice].volume = 64;
  237.  devc->voc[voice].panning = 0xffff; /* Not set */
  238.  devc->voc[voice].bender_range = 200;
  239.  devc->voc[voice].orig_freq = 0;
  240.  devc->voc[voice].current_freq = 0;
  241.  devc->voc[voice].mode = 0;
  242.  return 0;
  243. }
  244. #define HIHAT 0
  245. #define CYMBAL 1
  246. #define TOMTOM 2
  247. #define SNARE 3
  248. #define BDRUM 4
  249. #define UNDEFINED TOMTOM
  250. #define DEFAULT TOMTOM
  251. static int store_instr(int instr_no, struct sbi_instrument *instr)
  252. {
  253. if (instr->key != FM_PATCH && (instr->key != OPL3_PATCH || devc->model != 2))
  254. printk(KERN_WARNING "FM warning: Invalid patch format field (key) 0x%xn", instr->key);
  255. memcpy((char *) &(devc->i_map[instr_no]), (char *) instr, sizeof(*instr));
  256. return 0;
  257. }
  258. static int opl3_set_instr  (int dev, int voice, int instr_no)
  259. {
  260. if (voice < 0 || voice >= devc->nr_voice)
  261. return 0;
  262. if (instr_no < 0 || instr_no >= SBFM_MAXINSTR)
  263. instr_no = 0; /* Acoustic piano (usually) */
  264. devc->act_i[voice] = &devc->i_map[instr_no];
  265. return 0;
  266. }
  267. /*
  268.  * The next table looks magical, but it certainly is not. Its values have
  269.  * been calculated as table[i]=8*log(i/64)/log(2) with an obvious exception
  270.  * for i=0. This log-table converts a linear volume-scaling (0..127) to a
  271.  * logarithmic scaling as present in the FM-synthesizer chips. so :    Volume
  272.  * 64 =  0 db = relative volume  0 and:    Volume 32 = -6 db = relative
  273.  * volume -8 it was implemented as a table because it is only 128 bytes and
  274.  * it saves a lot of log() calculations. (RH)
  275.  */
  276. static char fm_volume_table[128] =
  277. {
  278. -64, -48, -40, -35, -32, -29, -27, -26,
  279. -24, -23, -21, -20, -19, -18, -18, -17,
  280. -16, -15, -15, -14, -13, -13, -12, -12,
  281. -11, -11, -10, -10, -10, -9, -9, -8,
  282. -8, -8, -7, -7, -7, -6, -6, -6,
  283. -5, -5, -5, -5, -4, -4, -4, -4,
  284. -3, -3, -3, -3, -2, -2, -2, -2,
  285. -2, -1, -1, -1, -1, 0, 0, 0,
  286. 0, 0, 0, 1, 1, 1, 1, 1,
  287. 1, 2, 2, 2, 2, 2, 2, 2,
  288. 3, 3, 3, 3, 3, 3, 3, 4,
  289. 4, 4, 4, 4, 4, 4, 4, 5,
  290. 5, 5, 5, 5, 5, 5, 5, 5,
  291. 6, 6, 6, 6, 6, 6, 6, 6,
  292. 6, 7, 7, 7, 7, 7, 7, 7,
  293. 7, 7, 7, 8, 8, 8, 8, 8
  294. };
  295. static void calc_vol(unsigned char *regbyte, int volume, int main_vol)
  296. {
  297. int level = (~*regbyte & 0x3f);
  298. if (main_vol > 127)
  299. main_vol = 127;
  300. volume = (volume * main_vol) / 127;
  301. if (level)
  302. level += fm_volume_table[volume];
  303. if (level > 0x3f)
  304. level = 0x3f;
  305. if (level < 0)
  306. level = 0;
  307. *regbyte = (*regbyte & 0xc0) | (~level & 0x3f);
  308. }
  309. static void set_voice_volume(int voice, int volume, int main_vol)
  310. {
  311. unsigned char vol1, vol2, vol3, vol4;
  312. struct sbi_instrument *instr;
  313. struct physical_voice_info *map;
  314. if (voice < 0 || voice >= devc->nr_voice)
  315. return;
  316. map = &pv_map[devc->lv_map[voice]];
  317. instr = devc->act_i[voice];
  318. if (!instr)
  319. instr = &devc->i_map[0];
  320. if (instr->channel < 0)
  321. return;
  322. if (devc->voc[voice].mode == 0)
  323. return;
  324. if (devc->voc[voice].mode == 2)
  325. {
  326. vol1 = instr->operators[2];
  327. vol2 = instr->operators[3];
  328. if ((instr->operators[10] & 0x01))
  329. {
  330. calc_vol(&vol1, volume, main_vol);
  331. calc_vol(&vol2, volume, main_vol);
  332. }
  333. else
  334. {
  335. calc_vol(&vol2, volume, main_vol);
  336. }
  337. opl3_command(map->ioaddr, KSL_LEVEL + map->op[0], vol1);
  338. opl3_command(map->ioaddr, KSL_LEVEL + map->op[1], vol2);
  339. }
  340. else
  341. { /*
  342.  * 4 OP voice
  343.  */
  344. int connection;
  345. vol1 = instr->operators[2];
  346. vol2 = instr->operators[3];
  347. vol3 = instr->operators[OFFS_4OP + 2];
  348. vol4 = instr->operators[OFFS_4OP + 3];
  349. /*
  350.  * The connection method for 4 OP devc->voc is defined by the rightmost
  351.  * bits at the offsets 10 and 10+OFFS_4OP
  352.  */
  353. connection = ((instr->operators[10] & 0x01) << 1) | (instr->operators[10 + OFFS_4OP] & 0x01);
  354. switch (connection)
  355. {
  356. case 0:
  357. calc_vol(&vol4, volume, main_vol);
  358. break;
  359. case 1:
  360. calc_vol(&vol2, volume, main_vol);
  361. calc_vol(&vol4, volume, main_vol);
  362. break;
  363. case 2:
  364. calc_vol(&vol1, volume, main_vol);
  365. calc_vol(&vol4, volume, main_vol);
  366. break;
  367. case 3:
  368. calc_vol(&vol1, volume, main_vol);
  369. calc_vol(&vol3, volume, main_vol);
  370. calc_vol(&vol4, volume, main_vol);
  371. break;
  372. default:
  373. ;
  374. }
  375. opl3_command(map->ioaddr, KSL_LEVEL + map->op[0], vol1);
  376. opl3_command(map->ioaddr, KSL_LEVEL + map->op[1], vol2);
  377. opl3_command(map->ioaddr, KSL_LEVEL + map->op[2], vol3);
  378. opl3_command(map->ioaddr, KSL_LEVEL + map->op[3], vol4);
  379. }
  380. }
  381. static int opl3_start_note (int dev, int voice, int note, int volume)
  382. {
  383. unsigned char data, fpc;
  384. int block, fnum, freq, voice_mode, pan;
  385. struct sbi_instrument *instr;
  386. struct physical_voice_info *map;
  387. if (voice < 0 || voice >= devc->nr_voice)
  388. return 0;
  389. map = &pv_map[devc->lv_map[voice]];
  390. pan = devc->voc[voice].panning;
  391. if (map->voice_mode == 0)
  392. return 0;
  393. if (note == 255) /*
  394.  * Just change the volume
  395.  */
  396. {
  397. set_voice_volume(voice, volume, devc->voc[voice].volume);
  398. return 0;
  399. }
  400. /*
  401.  * Kill previous note before playing
  402.  */
  403. opl3_command(map->ioaddr, KSL_LEVEL + map->op[1], 0xff); /*
  404.  * Carrier
  405.  * volume to
  406.  * min
  407.  */
  408. opl3_command(map->ioaddr, KSL_LEVEL + map->op[0], 0xff); /*
  409.  * Modulator
  410.  * volume to
  411.  */
  412. if (map->voice_mode == 4)
  413. {
  414. opl3_command(map->ioaddr, KSL_LEVEL + map->op[2], 0xff);
  415. opl3_command(map->ioaddr, KSL_LEVEL + map->op[3], 0xff);
  416. }
  417. opl3_command(map->ioaddr, KEYON_BLOCK + map->voice_num, 0x00); /*
  418.  * Note
  419.  * off
  420.  */
  421. instr = devc->act_i[voice];
  422. if (!instr)
  423. instr = &devc->i_map[0];
  424. if (instr->channel < 0)
  425. {
  426. printk(KERN_WARNING "opl3: Initializing voice %d with undefined instrumentn", voice);
  427. return 0;
  428. }
  429. if (map->voice_mode == 2 && instr->key == OPL3_PATCH)
  430. return 0; /*
  431.  * Cannot play
  432.  */
  433. voice_mode = map->voice_mode;
  434. if (voice_mode == 4)
  435. {
  436. int voice_shift;
  437. voice_shift = (map->ioaddr == devc->left_io) ? 0 : 3;
  438. voice_shift += map->voice_num;
  439. if (instr->key != OPL3_PATCH) /*
  440.  * Just 2 OP patch
  441.  */
  442. {
  443. voice_mode = 2;
  444. devc->cmask &= ~(1 << voice_shift);
  445. }
  446. else
  447. {
  448. devc->cmask |= (1 << voice_shift);
  449. }
  450. opl3_command(devc->right_io, CONNECTION_SELECT_REGISTER, devc->cmask);
  451. }
  452. /*
  453.  * Set Sound Characteristics
  454.  */
  455. opl3_command(map->ioaddr, AM_VIB + map->op[0], instr->operators[0]);
  456. opl3_command(map->ioaddr, AM_VIB + map->op[1], instr->operators[1]);
  457. /*
  458.  * Set Attack/Decay
  459.  */
  460. opl3_command(map->ioaddr, ATTACK_DECAY + map->op[0], instr->operators[4]);
  461. opl3_command(map->ioaddr, ATTACK_DECAY + map->op[1], instr->operators[5]);
  462. /*
  463.  * Set Sustain/Release
  464.  */
  465. opl3_command(map->ioaddr, SUSTAIN_RELEASE + map->op[0], instr->operators[6]);
  466. opl3_command(map->ioaddr, SUSTAIN_RELEASE + map->op[1], instr->operators[7]);
  467. /*
  468.  * Set Wave Select
  469.  */
  470. opl3_command(map->ioaddr, WAVE_SELECT + map->op[0], instr->operators[8]);
  471. opl3_command(map->ioaddr, WAVE_SELECT + map->op[1], instr->operators[9]);
  472. /*
  473.  * Set Feedback/Connection
  474.  */
  475. fpc = instr->operators[10];
  476. if (pan != 0xffff)
  477. {
  478. fpc &= ~STEREO_BITS;
  479. if (pan < -64)
  480. fpc |= VOICE_TO_LEFT;
  481. else
  482. if (pan > 64)
  483. fpc |= VOICE_TO_RIGHT;
  484. else
  485. fpc |= (VOICE_TO_LEFT | VOICE_TO_RIGHT);
  486. }
  487. if (!(fpc & 0x30))
  488. fpc |= 0x30; /*
  489.  * Ensure that at least one chn is enabled
  490.  */
  491. opl3_command(map->ioaddr, FEEDBACK_CONNECTION + map->voice_num, fpc);
  492. /*
  493.  * If the voice is a 4 OP one, initialize the operators 3 and 4 also
  494.  */
  495. if (voice_mode == 4)
  496. {
  497. /*
  498.  * Set Sound Characteristics
  499.  */
  500. opl3_command(map->ioaddr, AM_VIB + map->op[2], instr->operators[OFFS_4OP + 0]);
  501. opl3_command(map->ioaddr, AM_VIB + map->op[3], instr->operators[OFFS_4OP + 1]);
  502. /*
  503.  * Set Attack/Decay
  504.  */
  505. opl3_command(map->ioaddr, ATTACK_DECAY + map->op[2], instr->operators[OFFS_4OP + 4]);
  506. opl3_command(map->ioaddr, ATTACK_DECAY + map->op[3], instr->operators[OFFS_4OP + 5]);
  507. /*
  508.  * Set Sustain/Release
  509.  */
  510. opl3_command(map->ioaddr, SUSTAIN_RELEASE + map->op[2], instr->operators[OFFS_4OP + 6]);
  511. opl3_command(map->ioaddr, SUSTAIN_RELEASE + map->op[3], instr->operators[OFFS_4OP + 7]);
  512. /*
  513.  * Set Wave Select
  514.  */
  515. opl3_command(map->ioaddr, WAVE_SELECT + map->op[2], instr->operators[OFFS_4OP + 8]);
  516. opl3_command(map->ioaddr, WAVE_SELECT + map->op[3], instr->operators[OFFS_4OP + 9]);
  517. /*
  518.  * Set Feedback/Connection
  519.  */
  520. fpc = instr->operators[OFFS_4OP + 10];
  521. if (!(fpc & 0x30))
  522.  fpc |= 0x30; /*
  523.  * Ensure that at least one chn is enabled
  524.  */
  525. opl3_command(map->ioaddr, FEEDBACK_CONNECTION + map->voice_num + 3, fpc);
  526. }
  527. devc->voc[voice].mode = voice_mode;
  528. set_voice_volume(voice, volume, devc->voc[voice].volume);
  529. freq = devc->voc[voice].orig_freq = note_to_freq(note) / 1000;
  530. /*
  531.  * Since the pitch bender may have been set before playing the note, we
  532.  * have to calculate the bending now.
  533.  */
  534. freq = compute_finetune(devc->voc[voice].orig_freq, devc->voc[voice].bender, devc->voc[voice].bender_range, 0);
  535. devc->voc[voice].current_freq = freq;
  536. freq_to_fnum(freq, &block, &fnum);
  537. /*
  538.  * Play note
  539.  */
  540. data = fnum & 0xff; /*
  541.  * Least significant bits of fnumber
  542.  */
  543. opl3_command(map->ioaddr, FNUM_LOW + map->voice_num, data);
  544. data = 0x20 | ((block & 0x7) << 2) | ((fnum >> 8) & 0x3);
  545.  devc->voc[voice].keyon_byte = data;
  546. opl3_command(map->ioaddr, KEYON_BLOCK + map->voice_num, data);
  547. if (voice_mode == 4)
  548. opl3_command(map->ioaddr, KEYON_BLOCK + map->voice_num + 3, data);
  549. return 0;
  550. }
  551. static void freq_to_fnum    (int freq, int *block, int *fnum)
  552. {
  553. int f, octave;
  554. /*
  555.  * Converts the note frequency to block and fnum values for the FM chip
  556.  */
  557. /*
  558.  * First try to compute the block -value (octave) where the note belongs
  559.  */
  560. f = freq;
  561. octave = 5;
  562. if (f == 0)
  563. octave = 0;
  564. else if (f < 261)
  565. {
  566. while (f < 261)
  567. {
  568. octave--;
  569. f <<= 1;
  570. }
  571. }
  572. else if (f > 493)
  573. {
  574. while (f > 493)
  575. {
  576.  octave++;
  577.  f >>= 1;
  578. }
  579. }
  580. if (octave > 7)
  581. octave = 7;
  582. *fnum = freq * (1 << (20 - octave)) / 49716;
  583. *block = octave;
  584. }
  585. static void opl3_command    (int io_addr, unsigned int addr, unsigned int val)
  586. {
  587.  int i;
  588. /*
  589.  * The original 2-OP synth requires a quite long delay after writing to a
  590.  * register. The OPL-3 survives with just two INBs
  591.  */
  592. outb(((unsigned char) (addr & 0xff)), io_addr);
  593. if (devc->model != 2)
  594. udelay(10);
  595. else
  596. for (i = 0; i < 2; i++)
  597. inb(io_addr);
  598. outb(((unsigned char) (val & 0xff)), io_addr + 1);
  599. if (devc->model != 2)
  600. udelay(30);
  601. else
  602. for (i = 0; i < 2; i++)
  603. inb(io_addr);
  604. }
  605. static void opl3_reset(int devno)
  606. {
  607. int i;
  608. for (i = 0; i < 18; i++)
  609. devc->lv_map[i] = i;
  610. for (i = 0; i < devc->nr_voice; i++)
  611. {
  612. opl3_command(pv_map[devc->lv_map[i]].ioaddr,
  613. KSL_LEVEL + pv_map[devc->lv_map[i]].op[0], 0xff);
  614. opl3_command(pv_map[devc->lv_map[i]].ioaddr,
  615. KSL_LEVEL + pv_map[devc->lv_map[i]].op[1], 0xff);
  616. if (pv_map[devc->lv_map[i]].voice_mode == 4)
  617. {
  618. opl3_command(pv_map[devc->lv_map[i]].ioaddr,
  619. KSL_LEVEL + pv_map[devc->lv_map[i]].op[2], 0xff);
  620. opl3_command(pv_map[devc->lv_map[i]].ioaddr,
  621. KSL_LEVEL + pv_map[devc->lv_map[i]].op[3], 0xff);
  622. }
  623. opl3_kill_note(devno, i, 0, 64);
  624. }
  625. if (devc->model == 2)
  626. {
  627. devc->v_alloc->max_voice = devc->nr_voice = 18;
  628. for (i = 0; i < 18; i++)
  629. pv_map[i].voice_mode = 2;
  630. }
  631. }
  632. static int opl3_open(int dev, int mode)
  633. {
  634. int i;
  635. if (devc->busy)
  636. return -EBUSY;
  637. devc->busy = 1;
  638. devc->v_alloc->max_voice = devc->nr_voice = (devc->model == 2) ? 18 : 9;
  639. devc->v_alloc->timestamp = 0;
  640. for (i = 0; i < 18; i++)
  641. {
  642. devc->v_alloc->map[i] = 0;
  643. devc->v_alloc->alloc_times[i] = 0;
  644. }
  645. devc->cmask = 0x00; /*
  646.  * Just 2 OP mode
  647.  */
  648. if (devc->model == 2)
  649. opl3_command(devc->right_io, CONNECTION_SELECT_REGISTER, devc->cmask);
  650. return 0;
  651. }
  652. static void opl3_close(int dev)
  653. {
  654. devc->busy = 0;
  655. devc->v_alloc->max_voice = devc->nr_voice = (devc->model == 2) ? 18 : 9;
  656. devc->fm_info.nr_drums = 0;
  657. devc->fm_info.perc_mode = 0;
  658. opl3_reset(dev);
  659. }
  660. static void opl3_hw_control(int dev, unsigned char *event)
  661. {
  662. }
  663. static int opl3_load_patch(int dev, int format, const char *addr,
  664. int offs, int count, int pmgr_flag)
  665. {
  666. struct sbi_instrument ins;
  667. if (count <sizeof(ins))
  668. {
  669. printk(KERN_WARNING "FM Error: Patch record too shortn");
  670. return -EINVAL;
  671. }
  672. if(copy_from_user(&((char *) &ins)[offs], &(addr)[offs], sizeof(ins) - offs))
  673. return -EFAULT;
  674. if (ins.channel < 0 || ins.channel >= SBFM_MAXINSTR)
  675. {
  676. printk(KERN_WARNING "FM Error: Invalid instrument number %dn", ins.channel);
  677. return -EINVAL;
  678. }
  679. ins.key = format;
  680. return store_instr(ins.channel, &ins);
  681. }
  682. static void opl3_panning(int dev, int voice, int value)
  683. {
  684. devc->voc[voice].panning = value;
  685. }
  686. static void opl3_volume_method(int dev, int mode)
  687. {
  688. }
  689. #define SET_VIBRATO(cell) { 
  690. tmp = instr->operators[(cell-1)+(((cell-1)/2)*OFFS_4OP)]; 
  691. if (pressure > 110) 
  692. tmp |= 0x40; /* Vibrato on */ 
  693. opl3_command (map->ioaddr, AM_VIB + map->op[cell-1], tmp);}
  694. static void opl3_aftertouch(int dev, int voice, int pressure)
  695. {
  696. int tmp;
  697. struct sbi_instrument *instr;
  698. struct physical_voice_info *map;
  699. if (voice < 0 || voice >= devc->nr_voice)
  700. return;
  701. map = &pv_map[devc->lv_map[voice]];
  702. DEB(printk("Aftertouch %dn", voice));
  703. if (map->voice_mode == 0)
  704. return;
  705. /*
  706.  * Adjust the amount of vibrato depending the pressure
  707.  */
  708. instr = devc->act_i[voice];
  709. if (!instr)
  710. instr = &devc->i_map[0];
  711. if (devc->voc[voice].mode == 4)
  712. {
  713. int connection = ((instr->operators[10] & 0x01) << 1) | (instr->operators[10 + OFFS_4OP] & 0x01);
  714. switch (connection)
  715. {
  716. case 0:
  717. SET_VIBRATO(4);
  718. break;
  719. case 1:
  720. SET_VIBRATO(2);
  721. SET_VIBRATO(4);
  722. break;
  723. case 2:
  724. SET_VIBRATO(1);
  725. SET_VIBRATO(4);
  726. break;
  727. case 3:
  728. SET_VIBRATO(1);
  729. SET_VIBRATO(3);
  730. SET_VIBRATO(4);
  731. break;
  732. }
  733. /*
  734.  * Not implemented yet
  735.  */
  736. }
  737. else
  738. {
  739. SET_VIBRATO(1);
  740. if ((instr->operators[10] & 0x01)) /*
  741.  * Additive synthesis
  742.  */
  743. SET_VIBRATO(2);
  744. }
  745. }
  746. #undef SET_VIBRATO
  747. static void bend_pitch(int dev, int voice, int value)
  748. {
  749. unsigned char data;
  750. int block, fnum, freq;
  751. struct physical_voice_info *map;
  752. map = &pv_map[devc->lv_map[voice]];
  753. if (map->voice_mode == 0)
  754. return;
  755. devc->voc[voice].bender = value;
  756. if (!value)
  757. return;
  758. if (!(devc->voc[voice].keyon_byte & 0x20))
  759. return; /*
  760.  * Not keyed on
  761.  */
  762. freq = compute_finetune(devc->voc[voice].orig_freq, devc->voc[voice].bender, devc->voc[voice].bender_range, 0);
  763. devc->voc[voice].current_freq = freq;
  764. freq_to_fnum(freq, &block, &fnum);
  765. data = fnum & 0xff; /*
  766.  * Least significant bits of fnumber
  767.  */
  768. opl3_command(map->ioaddr, FNUM_LOW + map->voice_num, data);
  769. data = 0x20 | ((block & 0x7) << 2) | ((fnum >> 8) & 0x3);
  770. devc->voc[voice].keyon_byte = data;
  771. opl3_command(map->ioaddr, KEYON_BLOCK + map->voice_num, data);
  772. }
  773. static void opl3_controller (int dev, int voice, int ctrl_num, int value)
  774. {
  775. if (voice < 0 || voice >= devc->nr_voice)
  776. return;
  777. switch (ctrl_num)
  778. {
  779. case CTRL_PITCH_BENDER:
  780. bend_pitch(dev, voice, value);
  781. break;
  782. case CTRL_PITCH_BENDER_RANGE:
  783. devc->voc[voice].bender_range = value;
  784. break;
  785. case CTL_MAIN_VOLUME:
  786. devc->voc[voice].volume = value / 128;
  787. break;
  788. case CTL_PAN:
  789. devc->voc[voice].panning = (value * 2) - 128;
  790. break;
  791. }
  792. }
  793. static void opl3_bender(int dev, int voice, int value)
  794. {
  795. if (voice < 0 || voice >= devc->nr_voice)
  796. return;
  797. bend_pitch(dev, voice, value - 8192);
  798. }
  799. static int opl3_alloc_voice(int dev, int chn, int note, struct voice_alloc_info *alloc)
  800. {
  801. int i, p, best, first, avail, best_time = 0x7fffffff;
  802. struct sbi_instrument *instr;
  803. int is4op;
  804. int instr_no;
  805. if (chn < 0 || chn > 15)
  806. instr_no = 0;
  807. else
  808. instr_no = devc->chn_info[chn].pgm_num;
  809. instr = &devc->i_map[instr_no];
  810. if (instr->channel < 0 || /* Instrument not loaded */
  811. devc->nr_voice != 12) /* Not in 4 OP mode */
  812. is4op = 0;
  813. else if (devc->nr_voice == 12) /* 4 OP mode */
  814. is4op = (instr->key == OPL3_PATCH);
  815. else
  816. is4op = 0;
  817. if (is4op)
  818. {
  819. first = p = 0;
  820. avail = 6;
  821. }
  822. else
  823. {
  824. if (devc->nr_voice == 12) /* 4 OP mode. Use the '2 OP only' operators first */
  825. first = p = 6;
  826. else
  827. first = p = 0;
  828. avail = devc->nr_voice;
  829. }
  830. /*
  831.  *    Now try to find a free voice
  832.  */
  833. best = first;
  834. for (i = 0; i < avail; i++)
  835. {
  836. if (alloc->map[p] == 0)
  837. {
  838. return p;
  839. }
  840. if (alloc->alloc_times[p] < best_time) /* Find oldest playing note */
  841. {
  842. best_time = alloc->alloc_times[p];
  843. best = p;
  844. }
  845. p = (p + 1) % avail;
  846. }
  847. /*
  848.  *    Insert some kind of priority mechanism here.
  849.  */
  850. if (best < 0)
  851. best = 0;
  852. if (best > devc->nr_voice)
  853. best -= devc->nr_voice;
  854. return best; /* All devc->voc in use. Select the first one. */
  855. }
  856. static void opl3_setup_voice(int dev, int voice, int chn)
  857. {
  858. struct channel_info *info =
  859. &synth_devs[dev]->chn_info[chn];
  860. opl3_set_instr(dev, voice, info->pgm_num);
  861. devc->voc[voice].bender = 0;
  862. devc->voc[voice].bender_range = info->bender_range;
  863. devc->voc[voice].volume = info->controllers[CTL_MAIN_VOLUME];
  864. devc->voc[voice].panning = (info->controllers[CTL_PAN] * 2) - 128;
  865. }
  866. static struct synth_operations opl3_operations =
  867. {
  868. owner: THIS_MODULE,
  869. id: "OPL",
  870. info: NULL,
  871. midi_dev: 0,
  872. synth_type: SYNTH_TYPE_FM,
  873. synth_subtype: FM_TYPE_ADLIB,
  874. open: opl3_open,
  875. close: opl3_close,
  876. ioctl: opl3_ioctl,
  877. kill_note: opl3_kill_note,
  878. start_note: opl3_start_note,
  879. set_instr: opl3_set_instr,
  880. reset: opl3_reset,
  881. hw_control: opl3_hw_control,
  882. load_patch: opl3_load_patch,
  883. aftertouch: opl3_aftertouch,
  884. controller: opl3_controller,
  885. panning: opl3_panning,
  886. volume_method: opl3_volume_method,
  887. bender: opl3_bender,
  888. alloc_voice: opl3_alloc_voice,
  889. setup_voice: opl3_setup_voice
  890. };
  891. int opl3_init(int ioaddr, int *osp, struct module *owner)
  892. {
  893. int i;
  894. int me;
  895. if (devc == NULL)
  896. {
  897. printk(KERN_ERR "opl3: Device control structure not initialized.n");
  898. return -1;
  899. }
  900. if ((me = sound_alloc_synthdev()) == -1)
  901. {
  902. printk(KERN_WARNING "opl3: Too many synthesizersn");
  903. return -1;
  904. }
  905. devc->nr_voice = 9;
  906. devc->fm_info.device = 0;
  907. devc->fm_info.synth_type = SYNTH_TYPE_FM;
  908. devc->fm_info.synth_subtype = FM_TYPE_ADLIB;
  909. devc->fm_info.perc_mode = 0;
  910. devc->fm_info.nr_voices = 9;
  911. devc->fm_info.nr_drums = 0;
  912. devc->fm_info.instr_bank_size = SBFM_MAXINSTR;
  913. devc->fm_info.capabilities = 0;
  914. devc->left_io = ioaddr;
  915. devc->right_io = ioaddr + 2;
  916. if (detected_model <= 2)
  917. devc->model = 1;
  918. else
  919. {
  920. devc->model = 2;
  921. if (detected_model == 4)
  922. devc->is_opl4 = 1;
  923. }
  924. opl3_operations.info = &devc->fm_info;
  925. synth_devs[me] = &opl3_operations;
  926. if (owner)
  927. synth_devs[me]->owner = owner;
  928. sequencer_init();
  929. devc->v_alloc = &opl3_operations.alloc;
  930. devc->chn_info = &opl3_operations.chn_info[0];
  931. if (devc->model == 2)
  932. {
  933. if (devc->is_opl4) 
  934. strcpy(devc->fm_info.name, "Yamaha OPL4/OPL3 FM");
  935. else 
  936. strcpy(devc->fm_info.name, "Yamaha OPL3");
  937. devc->v_alloc->max_voice = devc->nr_voice = 18;
  938. devc->fm_info.nr_drums = 0;
  939. devc->fm_info.synth_subtype = FM_TYPE_OPL3;
  940. devc->fm_info.capabilities |= SYNTH_CAP_OPL3;
  941. for (i = 0; i < 18; i++)
  942. {
  943. if (pv_map[i].ioaddr == USE_LEFT)
  944. pv_map[i].ioaddr = devc->left_io;
  945. else
  946. pv_map[i].ioaddr = devc->right_io;
  947. }
  948. opl3_command(devc->right_io, OPL3_MODE_REGISTER, OPL3_ENABLE);
  949. opl3_command(devc->right_io, CONNECTION_SELECT_REGISTER, 0x00);
  950. }
  951. else
  952. {
  953. strcpy(devc->fm_info.name, "Yamaha OPL2");
  954. devc->v_alloc->max_voice = devc->nr_voice = 9;
  955. devc->fm_info.nr_drums = 0;
  956. for (i = 0; i < 18; i++)
  957. pv_map[i].ioaddr = devc->left_io;
  958. };
  959. conf_printf2(devc->fm_info.name, ioaddr, 0, -1, -1);
  960. for (i = 0; i < SBFM_MAXINSTR; i++)
  961. devc->i_map[i].channel = -1;
  962. return me;
  963. }
  964. EXPORT_SYMBOL(opl3_init);
  965. EXPORT_SYMBOL(opl3_detect);
  966. static int me;
  967. static int io = -1;
  968. MODULE_PARM(io, "i");
  969. static int __init init_opl3 (void)
  970. {
  971. printk(KERN_INFO "YM3812 and OPL-3 driver Copyright (C) by Hannu Savolainen, Rob Hooft 1993-1996n");
  972. if (io != -1) /* User loading pure OPL3 module */
  973. {
  974. if (!opl3_detect(io, NULL))
  975. {
  976. return -ENODEV;
  977. }
  978. me = opl3_init(io, NULL, THIS_MODULE);
  979. }
  980. return 0;
  981. }
  982. static void __exit cleanup_opl3(void)
  983. {
  984. if (devc && io != -1)
  985. {
  986. if (devc->base) {
  987. release_region(devc->base,4);
  988. if (devc->is_opl4)
  989. release_region(devc->base - 8, 2);
  990. }
  991. kfree(devc);
  992. devc = NULL;
  993. sound_unload_synthdev(me);
  994. }
  995. }
  996. module_init(init_opl3);
  997. module_exit(cleanup_opl3);
  998. #ifndef MODULE
  999. static int __init setup_opl3(char *str)
  1000. {
  1001.         /* io  */
  1002. int ints[2];
  1003. str = get_options(str, ARRAY_SIZE(ints), ints);
  1004. io = ints[1];
  1005. return 1;
  1006. }
  1007. __setup("opl3=", setup_opl3);
  1008. #endif
  1009. MODULE_LICENSE("GPL");