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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * sound/awe_hw.h
  3.  *
  4.  * Access routines and definitions for the low level driver for the 
  5.  * Creative AWE32/SB32/AWE64 wave table synth.
  6.  *   version 0.4.4; Jan. 4, 2000
  7.  *
  8.  * Copyright (C) 1996-2000 Takashi Iwai
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  */
  24. #ifndef AWE_HW_H_DEF
  25. #define AWE_HW_H_DEF
  26. /*
  27.  * Emu-8000 control registers
  28.  * name(channel) reg, port
  29.  */
  30. #define awe_cmd_idx(reg,ch) (((reg)<< 5) | (ch))
  31. #define Data0    0 /* 0x620: doubleword r/w */
  32. #define Data1    1 /* 0xA20: doubleword r/w */
  33. #define Data2    2 /* 0xA22: word r/w */
  34. #define Data3    3 /* 0xE20: word r/w */
  35. #define Pointer  4 /* 0xE22 register pointer r/w */
  36. #define AWE_CPF(ch) awe_cmd_idx(0,ch), Data0 /* DW: current pitch and fractional address */
  37. #define AWE_PTRX(ch) awe_cmd_idx(1,ch), Data0 /* DW: pitch target and reverb send */
  38. #define AWE_CVCF(ch) awe_cmd_idx(2,ch), Data0 /* DW: current volume and filter cutoff */
  39. #define AWE_VTFT(ch) awe_cmd_idx(3,ch), Data0 /* DW: volume and filter cutoff targets */
  40. #define AWE_0080(ch) awe_cmd_idx(4,ch), Data0 /* DW: ?? */
  41. #define AWE_00A0(ch) awe_cmd_idx(5,ch), Data0 /* DW: ?? */
  42. #define AWE_PSST(ch) awe_cmd_idx(6,ch), Data0 /* DW: pan send and loop start address */
  43. #define AWE_CSL(ch) awe_cmd_idx(7,ch), Data0 /* DW: chorus send and loop end address */
  44. #define AWE_CCCA(ch) awe_cmd_idx(0,ch), Data1 /* DW: Q, control bits, and current address */
  45. #define AWE_HWCF4 awe_cmd_idx(1,9),  Data1 /* DW: config dw 4 */
  46. #define AWE_HWCF5 awe_cmd_idx(1,10), Data1 /* DW: config dw 5 */
  47. #define AWE_HWCF6 awe_cmd_idx(1,13), Data1 /* DW: config dw 6 */
  48. #define AWE_HWCF7 awe_cmd_idx(1,14), Data1 /* DW: config dw 7? (not documented) */
  49. #define AWE_SMALR awe_cmd_idx(1,20), Data1 /* DW: sound memory address for left read */
  50. #define AWE_SMARR awe_cmd_idx(1,21), Data1 /* DW:    for right read */
  51. #define AWE_SMALW awe_cmd_idx(1,22), Data1 /* DW: sound memory address for left write */
  52. #define AWE_SMARW awe_cmd_idx(1,23), Data1 /* DW:    for right write */
  53. #define AWE_SMLD awe_cmd_idx(1,26), Data1 /* W: sound memory left data */
  54. #define AWE_SMRD awe_cmd_idx(1,26), Data2 /* W:    right data */
  55. #define AWE_WC awe_cmd_idx(1,27), Data2 /* W: sample counter */
  56. #define AWE_WC_Cmd awe_cmd_idx(1,27)
  57. #define AWE_WC_Port Data2
  58. #define AWE_HWCF1 awe_cmd_idx(1,29), Data1 /* W: config w 1 */
  59. #define AWE_HWCF2 awe_cmd_idx(1,30), Data1 /* W: config w 2 */
  60. #define AWE_HWCF3 awe_cmd_idx(1,31), Data1 /* W: config w 3 */
  61. #define AWE_INIT1(ch) awe_cmd_idx(2,ch), Data1 /* W: init array 1 */
  62. #define AWE_INIT2(ch) awe_cmd_idx(2,ch), Data2 /* W: init array 2 */
  63. #define AWE_INIT3(ch) awe_cmd_idx(3,ch), Data1 /* W: init array 3 */
  64. #define AWE_INIT4(ch) awe_cmd_idx(3,ch), Data2 /* W: init array 4 */
  65. #define AWE_ENVVOL(ch) awe_cmd_idx(4,ch), Data1 /* W: volume envelope delay */
  66. #define AWE_DCYSUSV(ch) awe_cmd_idx(5,ch), Data1 /* W: volume envelope sustain and decay */
  67. #define AWE_ENVVAL(ch) awe_cmd_idx(6,ch), Data1 /* W: modulation envelope delay */
  68. #define AWE_DCYSUS(ch) awe_cmd_idx(7,ch), Data1 /* W: modulation envelope sustain and decay */
  69. #define AWE_ATKHLDV(ch) awe_cmd_idx(4,ch), Data2 /* W: volume envelope attack and hold */
  70. #define AWE_LFO1VAL(ch) awe_cmd_idx(5,ch), Data2 /* W: LFO#1 Delay */
  71. #define AWE_ATKHLD(ch) awe_cmd_idx(6,ch), Data2 /* W: modulation envelope attack and hold */
  72. #define AWE_LFO2VAL(ch) awe_cmd_idx(7,ch), Data2 /* W: LFO#2 Delay */
  73. #define AWE_IP(ch) awe_cmd_idx(0,ch), Data3 /* W: initial pitch */
  74. #define AWE_IFATN(ch) awe_cmd_idx(1,ch), Data3 /* W: initial filter cutoff and attenuation */
  75. #define AWE_PEFE(ch) awe_cmd_idx(2,ch), Data3 /* W: pitch and filter envelope heights */
  76. #define AWE_FMMOD(ch) awe_cmd_idx(3,ch), Data3 /* W: vibrato and filter modulation freq */
  77. #define AWE_TREMFRQ(ch) awe_cmd_idx(4,ch), Data3 /* W: LFO#1 tremolo amount and freq */
  78. #define AWE_FM2FRQ2(ch) awe_cmd_idx(5,ch), Data3 /* W: LFO#2 vibrato amount and freq */
  79. /* used during detection (returns ROM version?; not documented in ADIP) */
  80. #define AWE_U1 0xE0, Data3   /* (R)(W) used in initialization */
  81. #define AWE_U2(ch) 0xC0+(ch), Data3  /* (W)(W) used in init envelope  */
  82. #define AWE_MAX_VOICES 32
  83. #define AWE_NORMAL_VOICES 30 /*30&31 are reserved for DRAM refresh*/
  84. #define AWE_MAX_CHANNELS 32 /* max midi channels (must >= voices) */
  85. #define AWE_MAX_LAYERS AWE_MAX_VOICES /* maximum number of multiple layers */
  86. #define AWE_DRAM_OFFSET 0x200000
  87. #define AWE_MAX_DRAM_SIZE (28 * 1024) /* 28 MB is max onboard memory */
  88. #endif