blob: e8edb02c12d308eed0c9de02bfe90f459b8cd36c [file] [log] [blame]
Dylan Reid05e84872014-02-28 15:41:22 -08001/*
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
15#ifndef __SOUND_HDA_CONTROLLER_H
16#define __SOUND_HDA_CONTROLLER_H
17
Takashi Iwai89a93fe2015-02-19 18:04:17 +010018#include <linux/timecounter.h>
19#include <linux/interrupt.h>
Dylan Reid05e84872014-02-28 15:41:22 -080020#include <sound/core.h>
Takashi Iwai89a93fe2015-02-19 18:04:17 +010021#include <sound/pcm.h>
Dylan Reid05e84872014-02-28 15:41:22 -080022#include <sound/initval.h>
23#include "hda_codec.h"
Takashi Iwai14752412015-04-14 12:15:47 +020024#include <sound/hda_register.h>
Takashi Iwai89a93fe2015-02-19 18:04:17 +010025
Takashi Iwai14752412015-04-14 12:15:47 +020026#define AZX_MAX_CODECS HDA_MAX_CODECS
Takashi Iwai89a93fe2015-02-19 18:04:17 +010027#define AZX_DEFAULT_CODECS 4
Takashi Iwai89a93fe2015-02-19 18:04:17 +010028
29/* driver quirks (capabilities) */
30/* bits 0-7 are used for indicating driver type */
31#define AZX_DCAPS_NO_TCSEL (1 << 8) /* No Intel TCSEL bit */
32#define AZX_DCAPS_NO_MSI (1 << 9) /* No MSI support */
33#define AZX_DCAPS_SNOOP_MASK (3 << 10) /* snoop type mask */
34#define AZX_DCAPS_SNOOP_OFF (1 << 12) /* snoop default off */
35#define AZX_DCAPS_RIRB_DELAY (1 << 13) /* Long delay in read loop */
36#define AZX_DCAPS_RIRB_PRE_DELAY (1 << 14) /* Put a delay before read */
37#define AZX_DCAPS_CTX_WORKAROUND (1 << 15) /* X-Fi workaround */
38#define AZX_DCAPS_POSFIX_LPIB (1 << 16) /* Use LPIB as default */
39#define AZX_DCAPS_POSFIX_VIA (1 << 17) /* Use VIACOMBO as default */
40#define AZX_DCAPS_NO_64BIT (1 << 18) /* No 64bit address */
41#define AZX_DCAPS_SYNC_WRITE (1 << 19) /* sync each cmd write */
42#define AZX_DCAPS_OLD_SSYNC (1 << 20) /* Old SSYNC reg for ICH */
43#define AZX_DCAPS_NO_ALIGN_BUFSIZE (1 << 21) /* no buffer size alignment */
44/* 22 unused */
45#define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23) /* BDLE in 4k boundary */
46#define AZX_DCAPS_REVERSE_ASSIGN (1 << 24) /* Assign devices in reverse order */
47#define AZX_DCAPS_COUNT_LPIB_DELAY (1 << 25) /* Take LPIB as delay */
48#define AZX_DCAPS_PM_RUNTIME (1 << 26) /* runtime PM support */
49#define AZX_DCAPS_I915_POWERWELL (1 << 27) /* HSW i915 powerwell support */
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
54enum {
55 AZX_SNOOP_TYPE_NONE,
56 AZX_SNOOP_TYPE_SCH,
57 AZX_SNOOP_TYPE_ATI,
58 AZX_SNOOP_TYPE_NVIDIA,
59};
60
Takashi Iwai89a93fe2015-02-19 18:04:17 +010061struct azx_dev {
Takashi Iwai7833c3f2015-04-14 18:13:13 +020062 struct hdac_stream core;
Takashi Iwai89a93fe2015-02-19 18:04:17 +010063
Takashi Iwai89a93fe2015-02-19 18:04:17 +010064 unsigned int irq_pending:1;
65 unsigned int prepared:1;
Takashi Iwai89a93fe2015-02-19 18:04:17 +010066 /*
67 * For VIA:
68 * A flag to ensure DMA position is 0
69 * when link position is not greater than FIFO size
70 */
71 unsigned int insufficient:1;
72 unsigned int wc_marked:1;
Takashi Iwai89a93fe2015-02-19 18:04:17 +010073};
74
Takashi Iwai7833c3f2015-04-14 18:13:13 +020075#define azx_stream(dev) (&(dev)->core)
76#define stream_to_azx_dev(s) container_of(s, struct azx_dev, core)
77
Takashi Iwai89a93fe2015-02-19 18:04:17 +010078struct azx;
79
80/* Functions to read/write to hda registers. */
81struct hda_controller_ops {
Takashi Iwai89a93fe2015-02-19 18:04:17 +010082 /* Disable msi if supported, PCI only */
83 int (*disable_msi_reset_irq)(struct azx *);
Takashi Iwai89a93fe2015-02-19 18:04:17 +010084 int (*substream_alloc_pages)(struct azx *chip,
85 struct snd_pcm_substream *substream,
86 size_t size);
87 int (*substream_free_pages)(struct azx *chip,
88 struct snd_pcm_substream *substream);
89 void (*pcm_mmap_prepare)(struct snd_pcm_substream *substream,
90 struct vm_area_struct *area);
91 /* Check if current position is acceptable */
92 int (*position_check)(struct azx *chip, struct azx_dev *azx_dev);
93};
94
95struct azx_pcm {
96 struct azx *chip;
97 struct snd_pcm *pcm;
98 struct hda_codec *codec;
Takashi Iwai820cc6c2015-02-20 12:50:46 +010099 struct hda_pcm *info;
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100100 struct list_head list;
101};
102
103typedef unsigned int (*azx_get_pos_callback_t)(struct azx *, struct azx_dev *);
104typedef int (*azx_get_delay_callback_t)(struct azx *, struct azx_dev *, unsigned int pos);
105
106struct azx {
Takashi Iwaia41d1222015-04-14 22:13:18 +0200107 struct hda_bus bus;
108
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100109 struct snd_card *card;
110 struct pci_dev *pci;
111 int dev_index;
112
113 /* chip type specific */
114 int driver_type;
115 unsigned int driver_caps;
116 int playback_streams;
117 int playback_index_offset;
118 int capture_streams;
119 int capture_index_offset;
120 int num_streams;
121 const int *jackpoll_ms; /* per-card jack poll interval */
122
123 /* Register interaction. */
124 const struct hda_controller_ops *ops;
125
126 /* position adjustment callbacks */
127 azx_get_pos_callback_t get_position[2];
128 azx_get_delay_callback_t get_delay[2];
129
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100130 /* locks */
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100131 struct mutex open_mutex; /* Prevents concurrent open/close operations */
132
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100133 /* PCM */
134 struct list_head pcm_list; /* azx_pcm list */
135
136 /* HD codec */
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100137 int codec_probe_mask; /* copied from probe_mask option */
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100138 unsigned int beep_mode;
139
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100140#ifdef CONFIG_SND_HDA_PATCH_LOADER
141 const struct firmware *fw;
142#endif
143
144 /* flags */
145 const int *bdl_pos_adj;
146 int poll_count;
147 unsigned int running:1;
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100148 unsigned int single_cmd:1;
149 unsigned int polling_mode:1;
150 unsigned int msi:1;
151 unsigned int probing:1; /* codec probing phase */
152 unsigned int snoop:1;
153 unsigned int align_buffer_size:1;
154 unsigned int region_requested:1;
155 unsigned int disabled:1; /* disabled by VGA-switcher */
156
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100157#ifdef CONFIG_SND_HDA_DSP_LOADER
158 struct azx_dev saved_azx_dev;
159#endif
160};
161
Takashi Iwaia41d1222015-04-14 22:13:18 +0200162#define azx_bus(chip) (&(chip)->bus.core)
163#define bus_to_azx(_bus) container_of(_bus, struct azx, bus.core)
Takashi Iwaia43ff5b2015-04-14 17:26:00 +0200164
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100165#ifdef CONFIG_X86
166#define azx_snoop(chip) ((chip)->snoop)
167#else
168#define azx_snoop(chip) true
169#endif
170
171/*
172 * macros for easy use
173 */
174
175#define azx_writel(chip, reg, value) \
Takashi Iwaia41d1222015-04-14 22:13:18 +0200176 snd_hdac_chip_writel(azx_bus(chip), reg, value)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100177#define azx_readl(chip, reg) \
Takashi Iwaia41d1222015-04-14 22:13:18 +0200178 snd_hdac_chip_readl(azx_bus(chip), reg)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100179#define azx_writew(chip, reg, value) \
Takashi Iwaia41d1222015-04-14 22:13:18 +0200180 snd_hdac_chip_writew(azx_bus(chip), reg, value)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100181#define azx_readw(chip, reg) \
Takashi Iwaia41d1222015-04-14 22:13:18 +0200182 snd_hdac_chip_readw(azx_bus(chip), reg)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100183#define azx_writeb(chip, reg, value) \
Takashi Iwaia41d1222015-04-14 22:13:18 +0200184 snd_hdac_chip_writeb(azx_bus(chip), reg, value)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100185#define azx_readb(chip, reg) \
Takashi Iwaia41d1222015-04-14 22:13:18 +0200186 snd_hdac_chip_readb(azx_bus(chip), reg)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100187
188#define azx_sd_writel(chip, dev, reg, value) \
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200189 snd_hdac_stream_writel(&(dev)->core, reg, value)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100190#define azx_sd_readl(chip, dev, reg) \
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200191 snd_hdac_stream_readl(&(dev)->core, reg)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100192#define azx_sd_writew(chip, dev, reg, value) \
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200193 snd_hdac_stream_writew(&(dev)->core, reg, value)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100194#define azx_sd_readw(chip, dev, reg) \
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200195 snd_hdac_stream_readw(&(dev)->core, reg)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100196#define azx_sd_writeb(chip, dev, reg, value) \
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200197 snd_hdac_stream_writeb(&(dev)->core, reg, value)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100198#define azx_sd_readb(chip, dev, reg) \
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200199 snd_hdac_stream_readb(&(dev)->core, reg)
Takashi Iwai89a93fe2015-02-19 18:04:17 +0100200
201#define azx_has_pm_runtime(chip) \
202 (!AZX_DCAPS_PM_RUNTIME || ((chip)->driver_caps & AZX_DCAPS_PM_RUNTIME))
Dylan Reid05e84872014-02-28 15:41:22 -0800203
204/* PCM setup */
Dylan Reid05e84872014-02-28 15:41:22 -0800205static inline struct azx_dev *get_azx_dev(struct snd_pcm_substream *substream)
206{
207 return substream->runtime->private_data;
208}
Takashi Iwaib6050ef2014-06-26 16:50:16 +0200209unsigned int azx_get_position(struct azx *chip, struct azx_dev *azx_dev);
210unsigned int azx_get_pos_lpib(struct azx *chip, struct azx_dev *azx_dev);
211unsigned int azx_get_pos_posbuf(struct azx *chip, struct azx_dev *azx_dev);
Dylan Reid05e84872014-02-28 15:41:22 -0800212
213/* Stream control. */
Takashi Iwai7833c3f2015-04-14 18:13:13 +0200214void azx_stop_all_streams(struct azx *chip);
Dylan Reid05e84872014-02-28 15:41:22 -0800215
Dylan Reid67908992014-02-28 15:41:23 -0800216/* Allocation functions. */
Takashi Iwaia41d1222015-04-14 22:13:18 +0200217#define azx_alloc_stream_pages(chip) \
218 snd_hdac_bus_alloc_stream_pages(azx_bus(chip))
219#define azx_free_stream_pages(chip) \
220 snd_hdac_bus_free_stream_pages(azx_bus(chip))
Dylan Reid67908992014-02-28 15:41:23 -0800221
Dylan Reidf43923f2014-02-28 15:41:27 -0800222/* Low level azx interface */
Thierry Reding17c3ad02014-04-09 12:30:57 +0200223void azx_init_chip(struct azx *chip, bool full_reset);
Dylan Reidf43923f2014-02-28 15:41:27 -0800224void azx_stop_chip(struct azx *chip);
Takashi Iwaia41d1222015-04-14 22:13:18 +0200225#define azx_enter_link_reset(chip) \
226 snd_hdac_bus_enter_link_reset(azx_bus(chip))
Dylan Reidf0b1df82014-02-28 15:41:29 -0800227irqreturn_t azx_interrupt(int irq, void *dev_id);
Dylan Reidf43923f2014-02-28 15:41:27 -0800228
Dylan Reid154867c2014-02-28 15:41:30 -0800229/* Codec interface */
Takashi Iwaia41d1222015-04-14 22:13:18 +0200230int azx_bus_init(struct azx *chip, const char *model,
231 const struct hdac_io_ops *io_ops);
Takashi Iwai96d2bd62015-02-19 18:12:22 +0100232int azx_probe_codecs(struct azx *chip, unsigned int max_slots);
Dylan Reid154867c2014-02-28 15:41:30 -0800233int azx_codec_configure(struct azx *chip);
Takashi Iwaia41d1222015-04-14 22:13:18 +0200234int azx_init_streams(struct azx *chip);
235void azx_free_streams(struct azx *chip);
Dylan Reid154867c2014-02-28 15:41:30 -0800236
Dylan Reid05e84872014-02-28 15:41:22 -0800237#endif /* __SOUND_HDA_CONTROLLER_H */