vxpocket.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Driver for Digigram VXpocket soundcards
  3. *
  4. * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #ifndef __VXPOCKET_H
  21. #define __VXPOCKET_H
  22. #include <sound/vx_core.h>
  23. #include <pcmcia/cs_types.h>
  24. #include <pcmcia/cs.h>
  25. #include <pcmcia/cistpl.h>
  26. #include <pcmcia/ds.h>
  27. struct snd_vxpocket {
  28. struct vx_core core;
  29. unsigned long port;
  30. int mic_level; /* analog mic level (or boost) */
  31. unsigned int regCDSP; /* current CDSP register */
  32. unsigned int regDIALOG; /* current DIALOG register */
  33. int index; /* card index */
  34. /* pcmcia stuff */
  35. struct pcmcia_device *p_dev;
  36. dev_node_t node;
  37. };
  38. extern struct snd_vx_ops snd_vxpocket_ops;
  39. void vx_set_mic_boost(struct vx_core *chip, int boost);
  40. void vx_set_mic_level(struct vx_core *chip, int level);
  41. int vxp_add_mic_controls(struct vx_core *chip);
  42. /* Constants used to access the CDSP register (0x08). */
  43. #define CDSP_MAGIC 0xA7 /* magic value (for read) */
  44. /* for write */
  45. #define VXP_CDSP_CLOCKIN_SEL_MASK 0x80 /* 0 (internal), 1 (AES/EBU) */
  46. #define VXP_CDSP_DATAIN_SEL_MASK 0x40 /* 0 (analog), 1 (UER) */
  47. #define VXP_CDSP_SMPTE_SEL_MASK 0x20
  48. #define VXP_CDSP_RESERVED_MASK 0x10
  49. #define VXP_CDSP_MIC_SEL_MASK 0x08
  50. #define VXP_CDSP_VALID_IRQ_MASK 0x04
  51. #define VXP_CDSP_CODEC_RESET_MASK 0x02
  52. #define VXP_CDSP_DSP_RESET_MASK 0x01
  53. /* VXPOCKET 240/440 */
  54. #define P24_CDSP_MICS_SEL_MASK 0x18
  55. #define P24_CDSP_MIC20_SEL_MASK 0x10
  56. #define P24_CDSP_MIC38_SEL_MASK 0x08
  57. /* Constants used to access the MEMIRQ register (0x0C). */
  58. #define P44_MEMIRQ_MASTER_SLAVE_SEL_MASK 0x08
  59. #define P44_MEMIRQ_SYNCED_ALONE_SEL_MASK 0x04
  60. #define P44_MEMIRQ_WCLK_OUT_IN_SEL_MASK 0x02 /* Not used */
  61. #define P44_MEMIRQ_WCLK_UER_SEL_MASK 0x01 /* Not used */
  62. /* Micro levels (0x0C) */
  63. /* Constants used to access the DIALOG register (0x0D). */
  64. #define VXP_DLG_XILINX_REPROG_MASK 0x80 /* W */
  65. #define VXP_DLG_DATA_XICOR_MASK 0x80 /* R */
  66. #define VXP_DLG_RESERVED4_0_MASK 0x40
  67. #define VXP_DLG_RESERVED2_0_MASK 0x20
  68. #define VXP_DLG_RESERVED1_0_MASK 0x10
  69. #define VXP_DLG_DMAWRITE_SEL_MASK 0x08 /* W */
  70. #define VXP_DLG_DMAREAD_SEL_MASK 0x04 /* W */
  71. #define VXP_DLG_MEMIRQ_MASK 0x02 /* R */
  72. #define VXP_DLG_DMA16_SEL_MASK 0x02 /* W */
  73. #define VXP_DLG_ACK_MEMIRQ_MASK 0x01 /* R/W */
  74. #endif /* __VXPOCKET_H */