Lines Matching refs:chip
89 unsigned char (*in8)(struct vx_core *chip, int reg);
90 unsigned int (*in32)(struct vx_core *chip, int reg);
91 void (*out8)(struct vx_core *chip, int reg, unsigned char val);
92 void (*out32)(struct vx_core *chip, int reg, unsigned int val);
94 int (*test_and_ack)(struct vx_core *chip);
95 void (*validate_irq)(struct vx_core *chip, int enable);
97 void (*write_codec)(struct vx_core *chip, int codec, unsigned int data);
98 void (*akm_write)(struct vx_core *chip, int reg, unsigned int data);
99 void (*reset_codec)(struct vx_core *chip);
100 void (*change_audio_source)(struct vx_core *chip, int src);
103 int (*load_dsp)(struct vx_core *chip, int idx, const struct firmware *fw);
104 void (*reset_dsp)(struct vx_core *chip);
105 void (*reset_board)(struct vx_core *chip, int cold_reset);
106 int (*add_controls)(struct vx_core *chip);
108 void (*dma_write)(struct vx_core *chip, struct snd_pcm_runtime *runtime,
110 void (*dma_read)(struct vx_core *chip, struct snd_pcm_runtime *runtime,
211 int snd_vx_setup_firmware(struct vx_core *chip);
212 int snd_vx_load_boot_image(struct vx_core *chip, const struct firmware *dsp);
213 int snd_vx_dsp_boot(struct vx_core *chip, const struct firmware *dsp);
214 int snd_vx_dsp_load(struct vx_core *chip, const struct firmware *dsp);
216 void snd_vx_free_firmware(struct vx_core *chip);
227 static inline int vx_test_and_ack(struct vx_core *chip) in vx_test_and_ack() argument
229 return chip->ops->test_and_ack(chip); in vx_test_and_ack()
232 static inline void vx_validate_irq(struct vx_core *chip, int enable) in vx_validate_irq() argument
234 chip->ops->validate_irq(chip, enable); in vx_validate_irq()
237 static inline unsigned char snd_vx_inb(struct vx_core *chip, int reg) in snd_vx_inb() argument
239 return chip->ops->in8(chip, reg); in snd_vx_inb()
242 static inline unsigned int snd_vx_inl(struct vx_core *chip, int reg) in snd_vx_inl() argument
244 return chip->ops->in32(chip, reg); in snd_vx_inl()
247 static inline void snd_vx_outb(struct vx_core *chip, int reg, unsigned char val) in snd_vx_outb() argument
249 chip->ops->out8(chip, reg, val); in snd_vx_outb()
252 static inline void snd_vx_outl(struct vx_core *chip, int reg, unsigned int val) in snd_vx_outl() argument
254 chip->ops->out32(chip, reg, val); in snd_vx_outl()
257 #define vx_inb(chip,reg) snd_vx_inb(chip, VX_##reg) argument
258 #define vx_outb(chip,reg,val) snd_vx_outb(chip, VX_##reg,val) argument
259 #define vx_inl(chip,reg) snd_vx_inl(chip, VX_##reg) argument
260 #define vx_outl(chip,reg,val) snd_vx_outl(chip, VX_##reg,val) argument
262 static inline void vx_reset_dsp(struct vx_core *chip) in vx_reset_dsp() argument
264 chip->ops->reset_dsp(chip); in vx_reset_dsp()
267 int vx_send_msg(struct vx_core *chip, struct vx_rmh *rmh);
268 int vx_send_msg_nolock(struct vx_core *chip, struct vx_rmh *rmh);
269 int vx_send_rih(struct vx_core *chip, int cmd);
270 int vx_send_rih_nolock(struct vx_core *chip, int cmd);
272 void vx_reset_codec(struct vx_core *chip, int cold_reset);
279 int snd_vx_check_reg_bit(struct vx_core *chip, int reg, int mask, int bit, int time);
280 #define vx_check_isr(chip,mask,bit,time) snd_vx_check_reg_bit(chip, VX_ISR, mask, bit, time) argument
281 #define vx_wait_isr_bit(chip,bit) vx_check_isr(chip, bit, bit, 200) argument
282 #define vx_wait_for_rx_full(chip) vx_wait_isr_bit(chip, ISR_RX_FULL) argument
288 static inline void vx_pseudo_dma_write(struct vx_core *chip, struct snd_pcm_runtime *runtime, in vx_pseudo_dma_write() argument
291 chip->ops->dma_write(chip, runtime, pipe, count); in vx_pseudo_dma_write()
294 static inline void vx_pseudo_dma_read(struct vx_core *chip, struct snd_pcm_runtime *runtime, in vx_pseudo_dma_read() argument
297 chip->ops->dma_read(chip, runtime, pipe, count); in vx_pseudo_dma_read()
312 int snd_vx_pcm_new(struct vx_core *chip);
313 void vx_pcm_update_intr(struct vx_core *chip, unsigned int events);
318 int snd_vx_mixer_new(struct vx_core *chip);
319 void vx_toggle_dac_mute(struct vx_core *chip, int mute);
320 int vx_sync_audio_source(struct vx_core *chip);
321 int vx_set_monitor_level(struct vx_core *chip, int audio, int level, int active);
326 void vx_set_iec958_status(struct vx_core *chip, unsigned int bits);
327 int vx_set_clock(struct vx_core *chip, unsigned int freq);
328 void vx_set_internal_clock(struct vx_core *chip, unsigned int freq);
329 int vx_change_frequency(struct vx_core *chip);
342 #define vx_has_new_dsp(chip) ((chip)->type != VX_TYPE_BOARD) argument
343 #define vx_is_pcmcia(chip) ((chip)->type >= VX_TYPE_VXPOCKET) argument