ssi.h 461 B

123456789101112131415161718
  1. #ifndef __MACH_SSI_H
  2. #define __MACH_SSI_H
  3. struct snd_ac97;
  4. extern unsigned char imx_ssi_fiq_start, imx_ssi_fiq_end;
  5. extern unsigned long imx_ssi_fiq_base, imx_ssi_fiq_tx_buffer, imx_ssi_fiq_rx_buffer;
  6. struct imx_ssi_platform_data {
  7. unsigned int flags;
  8. #define IMX_SSI_DMA (1 << 0)
  9. #define IMX_SSI_USE_AC97 (1 << 1)
  10. void (*ac97_reset) (struct snd_ac97 *ac97);
  11. void (*ac97_warm_reset)(struct snd_ac97 *ac97);
  12. };
  13. #endif /* __MACH_SSI_H */