hda_controller.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. /*
  2. * Common functionality for the alsa driver code base for HD Audio.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. */
  14. #ifndef __SOUND_HDA_CONTROLLER_H
  15. #define __SOUND_HDA_CONTROLLER_H
  16. #include <linux/timecounter.h>
  17. #include <linux/interrupt.h>
  18. #include <sound/core.h>
  19. #include <sound/pcm.h>
  20. #include <sound/initval.h>
  21. #include "hda_codec.h"
  22. #include <sound/hda_register.h>
  23. #define AZX_MAX_CODECS HDA_MAX_CODECS
  24. #define AZX_DEFAULT_CODECS 4
  25. /* driver quirks (capabilities) */
  26. /* bits 0-7 are used for indicating driver type */
  27. #define AZX_DCAPS_NO_TCSEL (1 << 8) /* No Intel TCSEL bit */
  28. #define AZX_DCAPS_NO_MSI (1 << 9) /* No MSI support */
  29. #define AZX_DCAPS_SNOOP_MASK (3 << 10) /* snoop type mask */
  30. #define AZX_DCAPS_SNOOP_OFF (1 << 12) /* snoop default off */
  31. /* 13 unused */
  32. /* 14 unused */
  33. #define AZX_DCAPS_CTX_WORKAROUND (1 << 15) /* X-Fi workaround */
  34. #define AZX_DCAPS_POSFIX_LPIB (1 << 16) /* Use LPIB as default */
  35. /* 17 unused */
  36. #define AZX_DCAPS_NO_64BIT (1 << 18) /* No 64bit address */
  37. #define AZX_DCAPS_SYNC_WRITE (1 << 19) /* sync each cmd write */
  38. #define AZX_DCAPS_OLD_SSYNC (1 << 20) /* Old SSYNC reg for ICH */
  39. #define AZX_DCAPS_NO_ALIGN_BUFSIZE (1 << 21) /* no buffer size alignment */
  40. /* 22 unused */
  41. #define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23) /* BDLE in 4k boundary */
  42. /* 24 unused */
  43. #define AZX_DCAPS_COUNT_LPIB_DELAY (1 << 25) /* Take LPIB as delay */
  44. #define AZX_DCAPS_PM_RUNTIME (1 << 26) /* runtime PM support */
  45. #ifdef CONFIG_SND_HDA_I915
  46. #define AZX_DCAPS_I915_POWERWELL (1 << 27) /* HSW i915 powerwell support */
  47. #else
  48. #define AZX_DCAPS_I915_POWERWELL 0 /* NOP */
  49. #endif
  50. #define AZX_DCAPS_CORBRP_SELF_CLEAR (1 << 28) /* CORBRP clears itself after reset */
  51. #define AZX_DCAPS_NO_MSI64 (1 << 29) /* Stick to 32-bit MSIs */
  52. #define AZX_DCAPS_SEPARATE_STREAM_TAG (1 << 30) /* capture and playback use separate stream tag */
  53. enum {
  54. AZX_SNOOP_TYPE_NONE,
  55. AZX_SNOOP_TYPE_SCH,
  56. AZX_SNOOP_TYPE_ATI,
  57. AZX_SNOOP_TYPE_NVIDIA,
  58. };
  59. struct azx_dev {
  60. struct hdac_stream core;
  61. unsigned int irq_pending:1;
  62. /*
  63. * For VIA:
  64. * A flag to ensure DMA position is 0
  65. * when link position is not greater than FIFO size
  66. */
  67. unsigned int insufficient:1;
  68. unsigned int wc_marked:1;
  69. };
  70. #define azx_stream(dev) (&(dev)->core)
  71. #define stream_to_azx_dev(s) container_of(s, struct azx_dev, core)
  72. struct azx;
  73. /* Functions to read/write to hda registers. */
  74. struct hda_controller_ops {
  75. /* Disable msi if supported, PCI only */
  76. int (*disable_msi_reset_irq)(struct azx *);
  77. int (*substream_alloc_pages)(struct azx *chip,
  78. struct snd_pcm_substream *substream,
  79. size_t size);
  80. int (*substream_free_pages)(struct azx *chip,
  81. struct snd_pcm_substream *substream);
  82. void (*pcm_mmap_prepare)(struct snd_pcm_substream *substream,
  83. struct vm_area_struct *area);
  84. /* Check if current position is acceptable */
  85. int (*position_check)(struct azx *chip, struct azx_dev *azx_dev);
  86. /* enable/disable the link power */
  87. int (*link_power)(struct azx *chip, bool enable);
  88. };
  89. struct azx_pcm {
  90. struct azx *chip;
  91. struct snd_pcm *pcm;
  92. struct hda_codec *codec;
  93. struct hda_pcm *info;
  94. struct list_head list;
  95. };
  96. typedef unsigned int (*azx_get_pos_callback_t)(struct azx *, struct azx_dev *);
  97. typedef int (*azx_get_delay_callback_t)(struct azx *, struct azx_dev *, unsigned int pos);
  98. struct azx {
  99. struct hda_bus bus;
  100. struct snd_card *card;
  101. struct pci_dev *pci;
  102. int dev_index;
  103. /* chip type specific */
  104. int driver_type;
  105. unsigned int driver_caps;
  106. int playback_streams;
  107. int playback_index_offset;
  108. int capture_streams;
  109. int capture_index_offset;
  110. int num_streams;
  111. const int *jackpoll_ms; /* per-card jack poll interval */
  112. /* Register interaction. */
  113. const struct hda_controller_ops *ops;
  114. /* position adjustment callbacks */
  115. azx_get_pos_callback_t get_position[2];
  116. azx_get_delay_callback_t get_delay[2];
  117. /* locks */
  118. struct mutex open_mutex; /* Prevents concurrent open/close operations */
  119. /* PCM */
  120. struct list_head pcm_list; /* azx_pcm list */
  121. /* HD codec */
  122. int codec_probe_mask; /* copied from probe_mask option */
  123. unsigned int beep_mode;
  124. #ifdef CONFIG_SND_HDA_PATCH_LOADER
  125. const struct firmware *fw;
  126. #endif
  127. /* flags */
  128. int bdl_pos_adj;
  129. int poll_count;
  130. unsigned int running:1;
  131. unsigned int single_cmd:1;
  132. unsigned int polling_mode:1;
  133. unsigned int msi:1;
  134. unsigned int probing:1; /* codec probing phase */
  135. unsigned int snoop:1;
  136. unsigned int align_buffer_size:1;
  137. unsigned int region_requested:1;
  138. unsigned int disabled:1; /* disabled by vga_switcheroo */
  139. /* GTS present */
  140. unsigned int gts_present:1;
  141. #ifdef CONFIG_SND_HDA_DSP_LOADER
  142. struct azx_dev saved_azx_dev;
  143. #endif
  144. };
  145. #define azx_bus(chip) (&(chip)->bus.core)
  146. #define bus_to_azx(_bus) container_of(_bus, struct azx, bus.core)
  147. #ifdef CONFIG_X86
  148. #define azx_snoop(chip) ((chip)->snoop)
  149. #else
  150. #define azx_snoop(chip) true
  151. #endif
  152. /*
  153. * macros for easy use
  154. */
  155. #define azx_writel(chip, reg, value) \
  156. snd_hdac_chip_writel(azx_bus(chip), reg, value)
  157. #define azx_readl(chip, reg) \
  158. snd_hdac_chip_readl(azx_bus(chip), reg)
  159. #define azx_writew(chip, reg, value) \
  160. snd_hdac_chip_writew(azx_bus(chip), reg, value)
  161. #define azx_readw(chip, reg) \
  162. snd_hdac_chip_readw(azx_bus(chip), reg)
  163. #define azx_writeb(chip, reg, value) \
  164. snd_hdac_chip_writeb(azx_bus(chip), reg, value)
  165. #define azx_readb(chip, reg) \
  166. snd_hdac_chip_readb(azx_bus(chip), reg)
  167. #define azx_has_pm_runtime(chip) \
  168. ((chip)->driver_caps & AZX_DCAPS_PM_RUNTIME)
  169. /* PCM setup */
  170. static inline struct azx_dev *get_azx_dev(struct snd_pcm_substream *substream)
  171. {
  172. return substream->runtime->private_data;
  173. }
  174. unsigned int azx_get_position(struct azx *chip, struct azx_dev *azx_dev);
  175. unsigned int azx_get_pos_lpib(struct azx *chip, struct azx_dev *azx_dev);
  176. unsigned int azx_get_pos_posbuf(struct azx *chip, struct azx_dev *azx_dev);
  177. /* Stream control. */
  178. void azx_stop_all_streams(struct azx *chip);
  179. /* Allocation functions. */
  180. #define azx_alloc_stream_pages(chip) \
  181. snd_hdac_bus_alloc_stream_pages(azx_bus(chip))
  182. #define azx_free_stream_pages(chip) \
  183. snd_hdac_bus_free_stream_pages(azx_bus(chip))
  184. /* Low level azx interface */
  185. void azx_init_chip(struct azx *chip, bool full_reset);
  186. void azx_stop_chip(struct azx *chip);
  187. #define azx_enter_link_reset(chip) \
  188. snd_hdac_bus_enter_link_reset(azx_bus(chip))
  189. irqreturn_t azx_interrupt(int irq, void *dev_id);
  190. /* Codec interface */
  191. int azx_bus_init(struct azx *chip, const char *model,
  192. const struct hdac_io_ops *io_ops);
  193. int azx_probe_codecs(struct azx *chip, unsigned int max_slots);
  194. int azx_codec_configure(struct azx *chip);
  195. int azx_init_streams(struct azx *chip);
  196. void azx_free_streams(struct azx *chip);
  197. #endif /* __SOUND_HDA_CONTROLLER_H */