miro.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef _MIRO_H_
  2. #define _MIRO_H_
  3. #define ACI_REG_COMMAND 0 /* write register offset */
  4. #define ACI_REG_STATUS 1 /* read register offset */
  5. #define ACI_REG_BUSY 2 /* busy register offset */
  6. #define ACI_REG_RDS 2 /* PCM20: RDS register offset */
  7. #define ACI_MINTIME 500 /* ACI time out limit */
  8. #define ACI_SET_MUTE 0x0d
  9. #define ACI_SET_POWERAMP 0x0f
  10. #define ACI_SET_TUNERMUTE 0xa3
  11. #define ACI_SET_TUNERMONO 0xa4
  12. #define ACI_SET_IDE 0xd0
  13. #define ACI_SET_WSS 0xd1
  14. #define ACI_SET_SOLOMODE 0xd2
  15. #define ACI_SET_PREAMP 0x03
  16. #define ACI_GET_PREAMP 0x21
  17. #define ACI_WRITE_TUNE 0xa7
  18. #define ACI_READ_TUNERSTEREO 0xa8
  19. #define ACI_READ_TUNERSTATION 0xa9
  20. #define ACI_READ_VERSION 0xf1
  21. #define ACI_READ_IDCODE 0xf2
  22. #define ACI_INIT 0xff
  23. #define ACI_STATUS 0xf0
  24. #define ACI_S_GENERAL 0x00
  25. #define ACI_ERROR_OP 0xdf
  26. /* ACI Mixer */
  27. /* These are the values for the right channel GET registers.
  28. Add an offset of 0x01 for the left channel register.
  29. (left=right+0x01) */
  30. #define ACI_GET_MASTER 0x03
  31. #define ACI_GET_MIC 0x05
  32. #define ACI_GET_LINE 0x07
  33. #define ACI_GET_CD 0x09
  34. #define ACI_GET_SYNTH 0x0b
  35. #define ACI_GET_PCM 0x0d
  36. #define ACI_GET_LINE1 0x10 /* Radio on PCM20 */
  37. #define ACI_GET_LINE2 0x12
  38. #define ACI_GET_EQ1 0x22 /* from Bass ... */
  39. #define ACI_GET_EQ2 0x24
  40. #define ACI_GET_EQ3 0x26
  41. #define ACI_GET_EQ4 0x28
  42. #define ACI_GET_EQ5 0x2a
  43. #define ACI_GET_EQ6 0x2c
  44. #define ACI_GET_EQ7 0x2e /* ... to Treble */
  45. /* And these are the values for the right channel SET registers.
  46. For left channel access you have to add an offset of 0x08.
  47. MASTER is an exception, which needs an offset of 0x01 */
  48. #define ACI_SET_MASTER 0x00
  49. #define ACI_SET_MIC 0x30
  50. #define ACI_SET_LINE 0x31
  51. #define ACI_SET_CD 0x34
  52. #define ACI_SET_SYNTH 0x33
  53. #define ACI_SET_PCM 0x32
  54. #define ACI_SET_LINE1 0x35 /* Radio on PCM20 */
  55. #define ACI_SET_LINE2 0x36
  56. #define ACI_SET_EQ1 0x40 /* from Bass ... */
  57. #define ACI_SET_EQ2 0x41
  58. #define ACI_SET_EQ3 0x42
  59. #define ACI_SET_EQ4 0x43
  60. #define ACI_SET_EQ5 0x44
  61. #define ACI_SET_EQ6 0x45
  62. #define ACI_SET_EQ7 0x46 /* ... to Treble */
  63. #endif /* _MIRO_H_ */