hda_controller.h 7.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *  Common functionality for the alsa driver code base for HD Audio.
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License as published by the Free
 *  Software Foundation; either version 2 of the License, or (at your option)
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful, but WITHOUT
 *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 *  more details.
 */

#ifndef __SOUND_HDA_CONTROLLER_H
#define __SOUND_HDA_CONTROLLER_H

18 19
#include <linux/timecounter.h>
#include <linux/interrupt.h>
20
#include <sound/core.h>
21
#include <sound/pcm.h>
22 23
#include <sound/initval.h>
#include "hda_codec.h"
24
#include <sound/hda_register.h>
25

26
#define AZX_MAX_CODECS		HDA_MAX_CODECS
27 28 29 30 31 32 33 34
#define AZX_DEFAULT_CODECS	4

/* driver quirks (capabilities) */
/* bits 0-7 are used for indicating driver type */
#define AZX_DCAPS_NO_TCSEL	(1 << 8)	/* No Intel TCSEL bit */
#define AZX_DCAPS_NO_MSI	(1 << 9)	/* No MSI support */
#define AZX_DCAPS_SNOOP_MASK	(3 << 10)	/* snoop type mask */
#define AZX_DCAPS_SNOOP_OFF	(1 << 12)	/* snoop default off */
35
/* 13 unused */
36
/* 14 unused */
37 38
#define AZX_DCAPS_CTX_WORKAROUND (1 << 15)	/* X-Fi workaround */
#define AZX_DCAPS_POSFIX_LPIB	(1 << 16)	/* Use LPIB as default */
39
/* 17 unused */
40 41 42 43 44 45
#define AZX_DCAPS_NO_64BIT	(1 << 18)	/* No 64bit address */
#define AZX_DCAPS_SYNC_WRITE	(1 << 19)	/* sync each cmd write */
#define AZX_DCAPS_OLD_SSYNC	(1 << 20)	/* Old SSYNC reg for ICH */
#define AZX_DCAPS_NO_ALIGN_BUFSIZE (1 << 21)	/* no buffer size alignment */
/* 22 unused */
#define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23)	/* BDLE in 4k boundary */
46
/* 24 unused */
47 48
#define AZX_DCAPS_COUNT_LPIB_DELAY  (1 << 25)	/* Take LPIB as delay */
#define AZX_DCAPS_PM_RUNTIME	(1 << 26)	/* runtime PM support */
49
#ifdef CONFIG_SND_HDA_I915
50
#define AZX_DCAPS_I915_POWERWELL (1 << 27)	/* HSW i915 powerwell support */
51 52 53
#else
#define AZX_DCAPS_I915_POWERWELL 0		/* NOP */
#endif
54 55 56 57 58 59 60 61 62 63 64 65
#define AZX_DCAPS_CORBRP_SELF_CLEAR (1 << 28)	/* CORBRP clears itself after reset */
#define AZX_DCAPS_NO_MSI64      (1 << 29)	/* Stick to 32-bit MSIs */
#define AZX_DCAPS_SEPARATE_STREAM_TAG	(1 << 30) /* capture and playback use separate stream tag */

enum {
	AZX_SNOOP_TYPE_NONE,
	AZX_SNOOP_TYPE_SCH,
	AZX_SNOOP_TYPE_ATI,
	AZX_SNOOP_TYPE_NVIDIA,
};

struct azx_dev {
66 67
	struct hdac_stream core;

68 69 70 71 72 73 74 75 76 77
	unsigned int irq_pending:1;
	/*
	 * For VIA:
	 *  A flag to ensure DMA position is 0
	 *  when link position is not greater than FIFO size
	 */
	unsigned int insufficient:1;
	unsigned int wc_marked:1;
};

78 79
#define azx_stream(dev)		(&(dev)->core)
#define stream_to_azx_dev(s)	container_of(s, struct azx_dev, core)
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95

struct azx;

/* Functions to read/write to hda registers. */
struct hda_controller_ops {
	/* Disable msi if supported, PCI only */
	int (*disable_msi_reset_irq)(struct azx *);
	int (*substream_alloc_pages)(struct azx *chip,
				     struct snd_pcm_substream *substream,
				     size_t size);
	int (*substream_free_pages)(struct azx *chip,
				    struct snd_pcm_substream *substream);
	void (*pcm_mmap_prepare)(struct snd_pcm_substream *substream,
				 struct vm_area_struct *area);
	/* Check if current position is acceptable */
	int (*position_check)(struct azx *chip, struct azx_dev *azx_dev);
96 97
	/* enable/disable the link power */
	int (*link_power)(struct azx *chip, bool enable);
98 99 100 101 102 103
};

struct azx_pcm {
	struct azx *chip;
	struct snd_pcm *pcm;
	struct hda_codec *codec;
104
	struct hda_pcm *info;
105 106 107 108 109 110 111
	struct list_head list;
};

typedef unsigned int (*azx_get_pos_callback_t)(struct azx *, struct azx_dev *);
typedef int (*azx_get_delay_callback_t)(struct azx *, struct azx_dev *, unsigned int pos);

struct azx {
112 113
	struct hda_bus bus;

114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
	struct snd_card *card;
	struct pci_dev *pci;
	int dev_index;

	/* chip type specific */
	int driver_type;
	unsigned int driver_caps;
	int playback_streams;
	int playback_index_offset;
	int capture_streams;
	int capture_index_offset;
	int num_streams;
	const int *jackpoll_ms; /* per-card jack poll interval */

	/* Register interaction. */
	const struct hda_controller_ops *ops;

	/* position adjustment callbacks */
	azx_get_pos_callback_t get_position[2];
	azx_get_delay_callback_t get_delay[2];

	/* locks */
	struct mutex open_mutex; /* Prevents concurrent open/close operations */

	/* PCM */
	struct list_head pcm_list; /* azx_pcm list */

	/* HD codec */
	int  codec_probe_mask; /* copied from probe_mask option */
	unsigned int beep_mode;

#ifdef CONFIG_SND_HDA_PATCH_LOADER
	const struct firmware *fw;
#endif

	/* flags */
150
	int bdl_pos_adj;
151 152
	int poll_count;
	unsigned int running:1;
153
	unsigned int fallback_to_single_cmd:1;
154 155 156 157 158 159 160
	unsigned int single_cmd:1;
	unsigned int polling_mode:1;
	unsigned int msi:1;
	unsigned int probing:1; /* codec probing phase */
	unsigned int snoop:1;
	unsigned int align_buffer_size:1;
	unsigned int region_requested:1;
161
	unsigned int disabled:1; /* disabled by vga_switcheroo */
162

163 164 165
	/* GTS present */
	unsigned int gts_present:1;

166 167 168 169 170
#ifdef CONFIG_SND_HDA_DSP_LOADER
	struct azx_dev saved_azx_dev;
#endif
};

171 172
#define azx_bus(chip)	(&(chip)->bus.core)
#define bus_to_azx(_bus)	container_of(_bus, struct azx, bus.core)
173

174 175 176 177 178 179 180 181 182 183 184
#ifdef CONFIG_X86
#define azx_snoop(chip)		((chip)->snoop)
#else
#define azx_snoop(chip)		true
#endif

/*
 * macros for easy use
 */

#define azx_writel(chip, reg, value) \
185
	snd_hdac_chip_writel(azx_bus(chip), reg, value)
186
#define azx_readl(chip, reg) \
187
	snd_hdac_chip_readl(azx_bus(chip), reg)
188
#define azx_writew(chip, reg, value) \
189
	snd_hdac_chip_writew(azx_bus(chip), reg, value)
190
#define azx_readw(chip, reg) \
191
	snd_hdac_chip_readw(azx_bus(chip), reg)
192
#define azx_writeb(chip, reg, value) \
193
	snd_hdac_chip_writeb(azx_bus(chip), reg, value)
194
#define azx_readb(chip, reg) \
195
	snd_hdac_chip_readb(azx_bus(chip), reg)
196 197

#define azx_has_pm_runtime(chip) \
198
	((chip)->driver_caps & AZX_DCAPS_PM_RUNTIME)
199 200 201 202 203 204

/* PCM setup */
static inline struct azx_dev *get_azx_dev(struct snd_pcm_substream *substream)
{
	return substream->runtime->private_data;
}
205 206 207
unsigned int azx_get_position(struct azx *chip, struct azx_dev *azx_dev);
unsigned int azx_get_pos_lpib(struct azx *chip, struct azx_dev *azx_dev);
unsigned int azx_get_pos_posbuf(struct azx *chip, struct azx_dev *azx_dev);
208 209

/* Stream control. */
210
void azx_stop_all_streams(struct azx *chip);
211

212
/* Allocation functions. */
213 214 215 216
#define azx_alloc_stream_pages(chip) \
	snd_hdac_bus_alloc_stream_pages(azx_bus(chip))
#define azx_free_stream_pages(chip) \
	snd_hdac_bus_free_stream_pages(azx_bus(chip))
217

218
/* Low level azx interface */
219
void azx_init_chip(struct azx *chip, bool full_reset);
220
void azx_stop_chip(struct azx *chip);
221 222
#define azx_enter_link_reset(chip) \
	snd_hdac_bus_enter_link_reset(azx_bus(chip))
223
irqreturn_t azx_interrupt(int irq, void *dev_id);
224

225
/* Codec interface */
226 227
int azx_bus_init(struct azx *chip, const char *model,
		 const struct hdac_io_ops *io_ops);
228
int azx_probe_codecs(struct azx *chip, unsigned int max_slots);
229
int azx_codec_configure(struct azx *chip);
230 231
int azx_init_streams(struct azx *chip);
void azx_free_streams(struct azx *chip);
232

233
#endif /* __SOUND_HDA_CONTROLLER_H */