Blame view

include/sound/wss.h 7.76 KB
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  /* SPDX-License-Identifier: GPL-2.0-or-later */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
2
3
  #ifndef __SOUND_WSS_H
  #define __SOUND_WSS_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
5
  
  /*
c1017a4cd   Jaroslav Kysela   [ALSA] Changed Ja...
6
   *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
   *  Definitions for CS4231 & InterWave chips & compatible chips
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
   */
a1ce39288   David Howells   UAPI: (Scripted) ...
9
10
11
  #include <sound/control.h>
  #include <sound/pcm.h>
  #include <sound/timer.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
12

a1ce39288   David Howells   UAPI: (Scripted) ...
13
  #include <sound/cs4231-regs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
  
  /* defines for codec.mode */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
16
17
18
19
20
  #define WSS_MODE_NONE	0x0000
  #define WSS_MODE_PLAY	0x0001
  #define WSS_MODE_RECORD	0x0002
  #define WSS_MODE_TIMER	0x0004
  #define WSS_MODE_OPEN	(WSS_MODE_PLAY|WSS_MODE_RECORD|WSS_MODE_TIMER)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
22
  
  /* defines for codec.hardware */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  #define WSS_HW_DETECT        0x0000	/* let CS4231 driver detect chip */
  #define WSS_HW_DETECT3	0x0001	/* allow mode 3 */
  #define WSS_HW_TYPE_MASK	0xff00	/* type mask */
  #define WSS_HW_CS4231_MASK   0x0100	/* CS4231 serie */
  #define WSS_HW_CS4231        0x0100	/* CS4231 chip */
  #define WSS_HW_CS4231A       0x0101	/* CS4231A chip */
  #define WSS_HW_AD1845	0x0102	/* AD1845 chip */
  #define WSS_HW_CS4232_MASK   0x0200	/* CS4232 serie (has control ports) */
  #define WSS_HW_CS4232        0x0200	/* CS4232 */
  #define WSS_HW_CS4232A       0x0201	/* CS4232A */
  #define WSS_HW_CS4236	0x0202	/* CS4236 */
  #define WSS_HW_CS4236B_MASK	0x0400	/* CS4236B serie (has extended control regs) */
  #define WSS_HW_CS4235	0x0400	/* CS4235 - Crystal Clear (tm) stereo enhancement */
  #define WSS_HW_CS4236B       0x0401	/* CS4236B */
  #define WSS_HW_CS4237B       0x0402	/* CS4237B - SRS 3D */
  #define WSS_HW_CS4238B	0x0403	/* CS4238B - QSOUND 3D */
  #define WSS_HW_CS4239	0x0404	/* CS4239 - Crystal Clear (tm) stereo enhancement */
ece11c9b6   Krzysztof Helt   ALSA: wss_lib: us...
40
41
42
43
44
45
  #define WSS_HW_AD1848_MASK	0x0800	/* AD1848 serie (half duplex) */
  #define WSS_HW_AD1847		0x0801	/* AD1847 chip */
  #define WSS_HW_AD1848		0x0802	/* AD1848 chip */
  #define WSS_HW_CS4248		0x0803	/* CS4248 chip */
  #define WSS_HW_CMI8330		0x0804	/* CMI8330 chip */
  #define WSS_HW_THINKPAD		0x0805	/* Thinkpad 360/750/755 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
  /* compatible, but clones */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
47
48
49
  #define WSS_HW_INTERWAVE     0x1000	/* InterWave chip */
  #define WSS_HW_OPL3SA2       0x1101	/* OPL3-SA2 chip, similar to cs4231 */
  #define WSS_HW_OPTI93X 	0x1102	/* Opti 930/931/933 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
  
  /* defines for codec.hwshare */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
52
53
54
  #define WSS_HWSHARE_IRQ	(1<<0)
  #define WSS_HWSHARE_DMA1	(1<<1)
  #define WSS_HWSHARE_DMA2	(1<<2)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55

ead893c0d   Krzysztof Helt   ALSA: wss_lib: us...
56
57
58
59
  /* IBM Thinkpad specific stuff */
  #define AD1848_THINKPAD_CTL_PORT1		0x15e8
  #define AD1848_THINKPAD_CTL_PORT2		0x15e9
  #define AD1848_THINKPAD_CS4248_ENABLE_BIT	0x02
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
60
  struct snd_wss {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
  	unsigned long port;		/* base i/o port */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
63
64
65
66
67
  	struct resource *res_port;
  	unsigned long cport;		/* control base i/o port (CS4236) */
  	struct resource *res_cport;
  	int irq;			/* IRQ line */
  	int dma1;			/* playback DMA */
  	int dma2;			/* record DMA */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
  	unsigned short version;		/* version of CODEC chip */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
69
70
  	unsigned short mode;		/* see to WSS_MODE_XXXX */
  	unsigned short hardware;	/* see to WSS_HW_XXXX */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
  	unsigned short hwshare;		/* shared resources */
241b3ee70   Krzysztof Helt   ALSA: wss_lib: us...
72
73
74
75
  	unsigned short single_dma:1,	/* forced single DMA mode (GUS 16-bit */
  					/* daughter board) or dma1 == dma2 */
  		       ebus_flag:1,	/* SPARC: EBUS present */
  		       thinkpad_flag:1;	/* Thinkpad CS4248 needs extra help */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76

ba2375a45   Takashi Iwai   [ALSA] Remove xxx...
77
78
79
80
81
  	struct snd_card *card;
  	struct snd_pcm *pcm;
  	struct snd_pcm_substream *playback_substream;
  	struct snd_pcm_substream *capture_substream;
  	struct snd_timer *timer;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
82
83
84
85
86
87
88
  
  	unsigned char image[32];	/* registers image */
  	unsigned char eimage[32];	/* extended registers image */
  	unsigned char cimage[16];	/* control registers image */
  	int mce_bit;
  	int calibrate_mute;
  	int sw_3d_bit;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
  	unsigned int p_dma_size;
  	unsigned int c_dma_size;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
92
  
  	spinlock_t reg_lock;
8b7547f95   Ingo Molnar   [ALSA] semaphore ...
93
94
  	struct mutex mce_mutex;
  	struct mutex open_mutex;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95

ba2375a45   Takashi Iwai   [ALSA] Remove xxx...
96
  	int (*rate_constraint) (struct snd_pcm_runtime *runtime);
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
97
98
99
100
101
102
103
  	void (*set_playback_format) (struct snd_wss *chip,
  				     struct snd_pcm_hw_params *hw_params,
  				     unsigned char pdfr);
  	void (*set_capture_format) (struct snd_wss *chip,
  				    struct snd_pcm_hw_params *hw_params,
  				    unsigned char cdfr);
  	void (*trigger) (struct snd_wss *chip, unsigned int what, int start);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
  #ifdef CONFIG_PM
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
105
106
  	void (*suspend) (struct snd_wss *chip);
  	void (*resume) (struct snd_wss *chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
  #endif
  	void *dma_private_data;
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
109
110
111
112
  	int (*claim_dma) (struct snd_wss *chip,
  			  void *dma_private_data, int dma);
  	int (*release_dma) (struct snd_wss *chip,
  			    void *dma_private_data, int dma);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
113
114
115
  };
  
  /* exported functions */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
116
117
118
119
120
121
122
  void snd_wss_out(struct snd_wss *chip, unsigned char reg, unsigned char val);
  unsigned char snd_wss_in(struct snd_wss *chip, unsigned char reg);
  void snd_cs4236_ext_out(struct snd_wss *chip,
  			unsigned char reg, unsigned char val);
  unsigned char snd_cs4236_ext_in(struct snd_wss *chip, unsigned char reg);
  void snd_wss_mce_up(struct snd_wss *chip);
  void snd_wss_mce_down(struct snd_wss *chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123

7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
124
  void snd_wss_overrange(struct snd_wss *chip);
abf1f5aaf   Krzysztof Helt   ALSA: opti93x: ad...
125

7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
126
  irqreturn_t snd_wss_interrupt(int irq, void *dev_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
127

7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
128
  const char *snd_wss_chip_id(struct snd_wss *chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
129

7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
130
  int snd_wss_create(struct snd_card *card,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131
132
133
134
135
  		      unsigned long port,
  		      unsigned long cport,
  		      int irq, int dma1, int dma2,
  		      unsigned short hardware,
  		      unsigned short hwshare,
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
136
  		      struct snd_wss **rchip);
fa60c0656   Lars-Peter Clausen   ALSA: wss: Remove...
137
138
  int snd_wss_pcm(struct snd_wss *chip, int device);
  int snd_wss_timer(struct snd_wss *chip, int device);
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
139
  int snd_wss_mixer(struct snd_wss *chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
140

ead893c0d   Krzysztof Helt   ALSA: wss_lib: us...
141
  const struct snd_pcm_ops *snd_wss_get_pcm_ops(int direction);
ba2375a45   Takashi Iwai   [ALSA] Remove xxx...
142
  int snd_cs4236_create(struct snd_card *card,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
143
144
145
146
147
  		      unsigned long port,
  		      unsigned long cport,
  		      int irq, int dma1, int dma2,
  		      unsigned short hardware,
  		      unsigned short hwshare,
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
148
  		      struct snd_wss **rchip);
fa60c0656   Lars-Peter Clausen   ALSA: wss: Remove...
149
  int snd_cs4236_pcm(struct snd_wss *chip, int device);
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
150
  int snd_cs4236_mixer(struct snd_wss *chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
153
154
  
  /*
   *  mixer library
   */
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
155
156
157
158
159
160
161
  #define WSS_SINGLE(xname, xindex, reg, shift, mask, invert) \
  { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
    .name = xname, \
    .index = xindex, \
    .info = snd_wss_info_single, \
    .get = snd_wss_get_single, \
    .put = snd_wss_put_single, \
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
162
    .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  int snd_wss_info_single(struct snd_kcontrol *kcontrol,
  			struct snd_ctl_elem_info *uinfo);
  int snd_wss_get_single(struct snd_kcontrol *kcontrol,
  			struct snd_ctl_elem_value *ucontrol);
  int snd_wss_put_single(struct snd_kcontrol *kcontrol,
  			struct snd_ctl_elem_value *ucontrol);
  
  #define WSS_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
  { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
    .name = xname, \
    .index = xindex, \
    .info = snd_wss_info_double, \
    .get = snd_wss_get_double, \
    .put = snd_wss_put_double, \
    .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | \
  		   (shift_right << 19) | (mask << 24) | (invert << 22) }
5664daa1c   Krzysztof Helt   ALSA: wss_lib: us...
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
  #define WSS_SINGLE_TLV(xname, xindex, reg, shift, mask, invert, xtlv) \
  { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
    .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
    .name = xname, \
    .index = xindex, \
    .info = snd_wss_info_single, \
    .get = snd_wss_get_single, \
    .put = snd_wss_put_single, \
    .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24), \
    .tlv = { .p = (xtlv) } }
  
  #define WSS_DOUBLE_TLV(xname, xindex, left_reg, right_reg, \
  			shift_left, shift_right, mask, invert, xtlv) \
  { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
    .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
    .name = xname, \
    .index = xindex, \
    .info = snd_wss_info_double, \
    .get = snd_wss_get_double, \
    .put = snd_wss_put_double, \
    .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | \
  		   (shift_right << 19) | (mask << 24) | (invert << 22), \
    .tlv = { .p = (xtlv) } }
7779f75f0   Krzysztof Helt   ALSA: wss_lib: re...
202
203
204
205
206
207
208
209
  int snd_wss_info_double(struct snd_kcontrol *kcontrol,
  			struct snd_ctl_elem_info *uinfo);
  int snd_wss_get_double(struct snd_kcontrol *kcontrol,
  			struct snd_ctl_elem_value *ucontrol);
  int snd_wss_put_double(struct snd_kcontrol *kcontrol,
  			struct snd_ctl_elem_value *ucontrol);
  
  #endif /* __SOUND_WSS_H */