hda_local.h 23.7 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11 12
/*
 * Universal Interface for Intel High Definition Audio Codec
 *
 * Local helper functions
 *
 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
 */

#ifndef __SOUND_HDA_LOCAL_H
#define __SOUND_HDA_LOCAL_H

13 14 15 16 17 18 19 20
/* We abuse kcontrol_new.subdev field to pass the NID corresponding to
 * the given new control.  If id.subdev has a bit flag HDA_SUBDEV_NID_FLAG,
 * snd_hda_ctl_add() takes the lower-bit subdev value as a valid NID.
 * 
 * Note that the subdevice field is cleared again before the real registration
 * in snd_hda_ctl_add(), so that this value won't appear in the outside.
 */
#define HDA_SUBDEV_NID_FLAG	(1U << 31)
21
#define HDA_SUBDEV_AMP_FLAG	(1U << 30)
22

L
Linus Torvalds 已提交
23 24 25
/*
 * for mixer controls
 */
26 27
#define HDA_COMPOSE_AMP_VAL_OFS(nid,chs,idx,dir,ofs)		\
	((nid) | ((chs)<<16) | ((dir)<<18) | ((idx)<<19) | ((ofs)<<23))
28
#define HDA_AMP_VAL_MIN_MUTE (1<<29)
29
#define HDA_COMPOSE_AMP_VAL(nid,chs,idx,dir) \
30
	HDA_COMPOSE_AMP_VAL_OFS(nid, chs, idx, dir, 0)
T
Takashi Iwai 已提交
31
/* mono volume with index (index=0,1,...) (channel=1,2) */
32
#define HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, channel, xindex, dir, flags) \
L
Linus Torvalds 已提交
33
	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx,  \
34
	  .subdevice = HDA_SUBDEV_AMP_FLAG, \
35 36 37
	  .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
	  	    SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
	  	    SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
L
Linus Torvalds 已提交
38 39 40
	  .info = snd_hda_mixer_amp_volume_info, \
	  .get = snd_hda_mixer_amp_volume_get, \
	  .put = snd_hda_mixer_amp_volume_put, \
41
	  .tlv = { .c = snd_hda_mixer_amp_tlv },		\
42
	  .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, dir) | flags }
T
Takashi Iwai 已提交
43
/* stereo volume with index */
L
Linus Torvalds 已提交
44
#define HDA_CODEC_VOLUME_IDX(xname, xcidx, nid, xindex, direction) \
45
	HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, 3, xindex, direction, 0)
T
Takashi Iwai 已提交
46
/* mono volume */
L
Linus Torvalds 已提交
47
#define HDA_CODEC_VOLUME_MONO(xname, nid, channel, xindex, direction) \
48
	HDA_CODEC_VOLUME_MONO_IDX(xname, 0, nid, channel, xindex, direction, 0)
T
Takashi Iwai 已提交
49
/* stereo volume */
L
Linus Torvalds 已提交
50 51
#define HDA_CODEC_VOLUME(xname, nid, xindex, direction) \
	HDA_CODEC_VOLUME_MONO(xname, nid, 3, xindex, direction)
52 53 54 55
/* stereo volume with min=mute */
#define HDA_CODEC_VOLUME_MIN_MUTE(xname, nid, xindex, direction) \
	HDA_CODEC_VOLUME_MONO_IDX(xname, 0, nid, 3, xindex, direction, \
				  HDA_AMP_VAL_MIN_MUTE)
T
Takashi Iwai 已提交
56
/* mono mute switch with index (index=0,1,...) (channel=1,2) */
L
Linus Torvalds 已提交
57 58
#define HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \
	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \
59
	  .subdevice = HDA_SUBDEV_AMP_FLAG, \
L
Linus Torvalds 已提交
60 61 62 63
	  .info = snd_hda_mixer_amp_switch_info, \
	  .get = snd_hda_mixer_amp_switch_get, \
	  .put = snd_hda_mixer_amp_switch_put, \
	  .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, direction) }
T
Takashi Iwai 已提交
64
/* stereo mute switch with index */
L
Linus Torvalds 已提交
65 66
#define HDA_CODEC_MUTE_IDX(xname, xcidx, nid, xindex, direction) \
	HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, 3, xindex, direction)
T
Takashi Iwai 已提交
67
/* mono mute switch */
L
Linus Torvalds 已提交
68 69
#define HDA_CODEC_MUTE_MONO(xname, nid, channel, xindex, direction) \
	HDA_CODEC_MUTE_MONO_IDX(xname, 0, nid, channel, xindex, direction)
T
Takashi Iwai 已提交
70
/* stereo mute switch */
L
Linus Torvalds 已提交
71 72
#define HDA_CODEC_MUTE(xname, nid, xindex, direction) \
	HDA_CODEC_MUTE_MONO(xname, nid, 3, xindex, direction)
73
#ifdef CONFIG_SND_HDA_INPUT_BEEP
74 75 76
/* special beep mono mute switch with index (index=0,1,...) (channel=1,2) */
#define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \
	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \
77
	  .subdevice = HDA_SUBDEV_AMP_FLAG, \
78
	  .info = snd_hda_mixer_amp_switch_info, \
79
	  .get = snd_hda_mixer_amp_switch_get_beep, \
80 81
	  .put = snd_hda_mixer_amp_switch_put_beep, \
	  .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, direction) }
82 83 84 85 86
#else
/* no digital beep - just the standard one */
#define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, ch, xidx, dir) \
	HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, ch, xidx, dir)
#endif /* CONFIG_SND_HDA_INPUT_BEEP */
87 88 89 90 91 92
/* special beep mono mute switch */
#define HDA_CODEC_MUTE_BEEP_MONO(xname, nid, channel, xindex, direction) \
	HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, 0, nid, channel, xindex, direction)
/* special beep stereo mute switch */
#define HDA_CODEC_MUTE_BEEP(xname, nid, xindex, direction) \
	HDA_CODEC_MUTE_BEEP_MONO(xname, nid, 3, xindex, direction)
L
Linus Torvalds 已提交
93

94 95
extern const char *snd_hda_pcm_type_name[];

96 97 98 99 100 101 102 103 104 105 106 107 108 109
int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
				  struct snd_ctl_elem_info *uinfo);
int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_value *ucontrol);
int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_value *ucontrol);
int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
			  unsigned int size, unsigned int __user *tlv);
int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
				  struct snd_ctl_elem_info *uinfo);
int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_value *ucontrol);
int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_value *ucontrol);
110
#ifdef CONFIG_SND_HDA_INPUT_BEEP
111 112
int snd_hda_mixer_amp_switch_get_beep(struct snd_kcontrol *kcontrol,
				      struct snd_ctl_elem_value *ucontrol);
113 114
int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol,
				      struct snd_ctl_elem_value *ucontrol);
115
#endif
116
/* lowlevel accessor with caching; use carefully */
117 118
#define snd_hda_codec_amp_read(codec, nid, ch, dir, idx) \
	snd_hdac_regmap_get_amp(&(codec)->core, nid, ch, dir, idx)
119 120
int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
			     int ch, int dir, int idx, int mask, int val);
121 122
int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
			     int dir, int idx, int mask, int val);
123 124 125 126
int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
			   int direction, int idx, int mask, int val);
int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
				  int dir, int idx, int mask, int val);
127 128 129 130
void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
			     unsigned int *tlv);
struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
					    const char *name);
131
int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
132 133
			  unsigned int *tlv, const char * const *followers,
			  const char *suffix, bool init_follower_vol,
134
			  struct snd_kcontrol **ctl_ret);
135 136
#define snd_hda_add_vmaster(codec, name, tlv, followers, suffix) \
	__snd_hda_add_vmaster(codec, name, tlv, followers, suffix, true, NULL)
137
int snd_hda_codec_reset(struct hda_codec *codec);
138
void snd_hda_codec_register(struct hda_codec *codec);
139
void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec);
140

141 142
#define snd_hda_regmap_sync(codec)	snd_hdac_regmap_sync(&(codec)->core)

143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
enum {
	HDA_VMUTE_OFF,
	HDA_VMUTE_ON,
	HDA_VMUTE_FOLLOW_MASTER,
};

struct hda_vmaster_mute_hook {
	/* below two fields must be filled by the caller of
	 * snd_hda_add_vmaster_hook() beforehand
	 */
	struct snd_kcontrol *sw_kctl;
	void (*hook)(void *, int);
	/* below are initialized automatically */
	unsigned int mute_mode; /* HDA_VMUTE_XXX */
	struct hda_codec *codec;
};

int snd_hda_add_vmaster_hook(struct hda_codec *codec,
161 162
			     struct hda_vmaster_mute_hook *hook,
			     bool expose_enum_ctl);
163 164
void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook);

165 166 167 168 169
/* amp value bits */
#define HDA_AMP_MUTE	0x80
#define HDA_AMP_UNMUTE	0x00
#define HDA_AMP_VOLMASK	0x7f

170 171 172
/*
 * SPDIF I/O
 */
173 174 175 176 177
int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
				hda_nid_t associated_nid,
				hda_nid_t cvt_nid, int type);
#define snd_hda_create_spdif_out_ctls(codec, anid, cnid) \
	snd_hda_create_dig_out_ctls(codec, anid, cnid, HDA_PCM_TYPE_SPDIF)
L
Linus Torvalds 已提交
178 179 180 181 182
int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid);

/*
 * input MUX helper
 */
183
#define HDA_MAX_NUM_INPUTS	16
L
Linus Torvalds 已提交
184
struct hda_input_mux_item {
185
	char label[32];
L
Linus Torvalds 已提交
186 187 188 189 190 191 192
	unsigned int index;
};
struct hda_input_mux {
	unsigned int num_items;
	struct hda_input_mux_item items[HDA_MAX_NUM_INPUTS];
};

193 194 195 196
int snd_hda_input_mux_info(const struct hda_input_mux *imux,
			   struct snd_ctl_elem_info *uinfo);
int snd_hda_input_mux_put(struct hda_codec *codec,
			  const struct hda_input_mux *imux,
197
			  struct snd_ctl_elem_value *ucontrol, hda_nid_t nid,
L
Linus Torvalds 已提交
198
			  unsigned int *cur_val);
199 200
int snd_hda_add_imux_item(struct hda_codec *codec,
			  struct hda_input_mux *imux, const char *label,
201
			  int index, int *type_index_ret);
L
Linus Torvalds 已提交
202 203 204 205 206 207 208 209

/*
 * Multi-channel / digital-out PCM helper
 */

enum { HDA_FRONT, HDA_REAR, HDA_CLFE, HDA_SIDE }; /* index for dac_nidx */
enum { HDA_DIG_NONE, HDA_DIG_EXCLUSIVE, HDA_DIG_ANALOG_DUP }; /* dig_out_used */

210 211
#define HDA_MAX_OUTS	5

L
Linus Torvalds 已提交
212 213
struct hda_multi_out {
	int num_dacs;		/* # of DACs, must be more than 1 */
214
	const hda_nid_t *dac_nids;	/* DAC list */
L
Linus Torvalds 已提交
215
	hda_nid_t hp_nid;	/* optional DAC for HP, 0 when not exists */
216 217
	hda_nid_t hp_out_nid[HDA_MAX_OUTS];	/* DACs for multiple HPs */
	hda_nid_t extra_out_nid[HDA_MAX_OUTS];	/* other (e.g. speaker) DACs */
L
Linus Torvalds 已提交
218
	hda_nid_t dig_out_nid;	/* digital out audio widget */
219
	const hda_nid_t *follower_dig_outs;
L
Linus Torvalds 已提交
220 221
	int max_channels;	/* currently supported analog channels */
	int dig_out_used;	/* current usage of digital out (HDA_DIG_XXX) */
222
	int no_share_stream;	/* don't share a stream with multiple pins */
223 224 225 226 227 228 229 230
	int share_spdif;	/* share SPDIF pin */
	/* PCM information for both analog and SPDIF DACs */
	unsigned int analog_rates;
	unsigned int analog_maxbps;
	u64 analog_formats;
	unsigned int spdif_rates;
	unsigned int spdif_maxbps;
	u64 spdif_formats;
L
Linus Torvalds 已提交
231 232
};

233 234
int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
				  struct hda_multi_out *mout);
235 236 237 238
int snd_hda_multi_out_dig_open(struct hda_codec *codec,
			       struct hda_multi_out *mout);
int snd_hda_multi_out_dig_close(struct hda_codec *codec,
				struct hda_multi_out *mout);
239 240 241 242 243
int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
				  struct hda_multi_out *mout,
				  unsigned int stream_tag,
				  unsigned int format,
				  struct snd_pcm_substream *substream);
244 245
int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
				  struct hda_multi_out *mout);
246 247
int snd_hda_multi_out_analog_open(struct hda_codec *codec,
				  struct hda_multi_out *mout,
248 249
				  struct snd_pcm_substream *substream,
				  struct hda_pcm_stream *hinfo);
250 251
int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
				     struct hda_multi_out *mout,
L
Linus Torvalds 已提交
252 253
				     unsigned int stream_tag,
				     unsigned int format,
254
				     struct snd_pcm_substream *substream);
255 256
int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
				     struct hda_multi_out *mout);
L
Linus Torvalds 已提交
257 258 259 260

/*
 * generic proc interface
 */
261
#ifdef CONFIG_SND_PROC_FS
L
Linus Torvalds 已提交
262 263 264 265 266
int snd_hda_codec_proc_new(struct hda_codec *codec);
#else
static inline int snd_hda_codec_proc_new(struct hda_codec *codec) { return 0; }
#endif

267 268 269
#define SND_PRINT_BITS_ADVISED_BUFSIZE	16
void snd_print_pcm_bits(int pcm, char *buf, int buflen);

L
Linus Torvalds 已提交
270 271 272
/*
 * Misc
 */
273
int snd_hda_add_new_ctls(struct hda_codec *codec,
274
			 const struct snd_kcontrol_new *knew);
L
Linus Torvalds 已提交
275

276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
/*
 * Fix-up pin default configurations and add default verbs
 */

struct hda_pintbl {
	hda_nid_t nid;
	u32 val;
};

struct hda_model_fixup {
	const int id;
	const char *name;
};

struct hda_fixup {
	int type;
292 293
	bool chained:1;		/* call the chained fixup(s) after this */
	bool chained_before:1;	/* call the chained fixup(s) before this */
294 295 296 297 298 299 300 301 302 303
	int chain_id;
	union {
		const struct hda_pintbl *pins;
		const struct hda_verb *verbs;
		void (*func)(struct hda_codec *codec,
			     const struct hda_fixup *fix,
			     int action);
	} v;
};

304 305 306 307 308 309 310 311 312 313
struct snd_hda_pin_quirk {
	unsigned int codec;             /* Codec vendor/device ID */
	unsigned short subvendor;	/* PCI subvendor ID */
	const struct hda_pintbl *pins;  /* list of matching pins */
#ifdef CONFIG_SND_DEBUG_VERBOSE
	const char *name;
#endif
	int value;			/* quirk value */
};

314 315 316 317 318 319 320
#ifdef CONFIG_SND_DEBUG_VERBOSE

#define SND_HDA_PIN_QUIRK(_codec, _subvendor, _name, _value, _pins...) \
	{ .codec = _codec,\
	  .subvendor = _subvendor,\
	  .name = _name,\
	  .value = _value,\
321
	  .pins = (const struct hda_pintbl[]) { _pins, {0, 0}} \
322 323 324 325 326 327 328
	}
#else

#define SND_HDA_PIN_QUIRK(_codec, _subvendor, _name, _value, _pins...) \
	{ .codec = _codec,\
	  .subvendor = _subvendor,\
	  .value = _value,\
329
	  .pins = (const struct hda_pintbl[]) { _pins, {0, 0}} \
330 331 332 333
	}

#endif

334 335
#define HDA_FIXUP_ID_NOT_SET -1
#define HDA_FIXUP_ID_NO_FIXUP -2
336

337 338 339 340 341 342
/* fixup types */
enum {
	HDA_FIXUP_INVALID,
	HDA_FIXUP_PINS,
	HDA_FIXUP_VERBS,
	HDA_FIXUP_FUNC,
343
	HDA_FIXUP_PINCTLS,
344 345 346 347 348 349 350 351
};

/* fixup action definitions */
enum {
	HDA_FIXUP_ACT_PRE_PROBE,
	HDA_FIXUP_ACT_PROBE,
	HDA_FIXUP_ACT_INIT,
	HDA_FIXUP_ACT_BUILD,
352
	HDA_FIXUP_ACT_FREE,
353 354 355 356 357 358 359 360 361 362 363
};

int snd_hda_add_verbs(struct hda_codec *codec, const struct hda_verb *list);
void snd_hda_apply_verbs(struct hda_codec *codec);
void snd_hda_apply_pincfgs(struct hda_codec *codec,
			   const struct hda_pintbl *cfg);
void snd_hda_apply_fixup(struct hda_codec *codec, int action);
void snd_hda_pick_fixup(struct hda_codec *codec,
			const struct hda_model_fixup *models,
			const struct snd_pci_quirk *quirk,
			const struct hda_fixup *fixlist);
364 365
void snd_hda_pick_pin_fixup(struct hda_codec *codec,
			    const struct snd_hda_pin_quirk *pin_quirk,
366 367
			    const struct hda_fixup *fixlist,
			    bool match_all_pins);
368

369
/* helper macros to retrieve pin default-config values */
370 371 372 373 374 375 376 377 378 379
#define get_defcfg_connect(cfg) \
	((cfg & AC_DEFCFG_PORT_CONN) >> AC_DEFCFG_PORT_CONN_SHIFT)
#define get_defcfg_association(cfg) \
	((cfg & AC_DEFCFG_DEF_ASSOC) >> AC_DEFCFG_ASSOC_SHIFT)
#define get_defcfg_location(cfg) \
	((cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT)
#define get_defcfg_sequence(cfg) \
	(cfg & AC_DEFCFG_SEQUENCE)
#define get_defcfg_device(cfg) \
	((cfg & AC_DEFCFG_DEVICE) >> AC_DEFCFG_DEVICE_SHIFT)
380 381
#define get_defcfg_misc(cfg) \
	((cfg & AC_DEFCFG_MISC) >> AC_DEFCFG_MISC_SHIFT)
382

383 384 385
/* amp values */
#define AMP_IN_MUTE(idx)	(0x7080 | ((idx)<<8))
#define AMP_IN_UNMUTE(idx)	(0x7000 | ((idx)<<8))
386 387 388
#define AMP_OUT_MUTE		0xb080
#define AMP_OUT_UNMUTE		0xb000
#define AMP_OUT_ZERO		0xb000
389
/* pinctl values */
390
#define PIN_IN			(AC_PINCTL_IN_EN)
391
#define PIN_VREFHIZ		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ)
392
#define PIN_VREF50		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_50)
393
#define PIN_VREFGRD		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD)
394
#define PIN_VREF80		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_80)
395 396
#define PIN_VREF100		(AC_PINCTL_IN_EN | AC_PINCTL_VREF_100)
#define PIN_OUT			(AC_PINCTL_OUT_EN)
397 398
#define PIN_HP			(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN)
#define PIN_HP_AMP		(AC_PINCTL_HP_EN)
399

400
unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin);
401 402
unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
				     hda_nid_t pin, unsigned int val);
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
			 unsigned int val, bool cached);

/**
 * _snd_hda_set_pin_ctl - Set a pin-control value safely
 * @codec: the codec instance
 * @pin: the pin NID to set the control
 * @val: the pin-control value (AC_PINCTL_* bits)
 *
 * This function sets the pin-control value to the given pin, but
 * filters out the invalid pin-control bits when the pin has no such
 * capabilities.  For example, when PIN_HP is passed but the pin has no
 * HP-drive capability, the HP bit is omitted.
 *
 * The function doesn't check the input VREF capability bits, though.
418
 * Use snd_hda_get_default_vref() to guess the right value.
419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
 * Also, this function is only for analog pins, not for HDMI pins.
 */
static inline int
snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, unsigned int val)
{
	return _snd_hda_set_pin_ctl(codec, pin, val, false);
}

/**
 * snd_hda_set_pin_ctl_cache - Set a pin-control value safely
 * @codec: the codec instance
 * @pin: the pin NID to set the control
 * @val: the pin-control value (AC_PINCTL_* bits)
 *
 * Just like snd_hda_set_pin_ctl() but write to cache as well.
 */
static inline int
snd_hda_set_pin_ctl_cache(struct hda_codec *codec, hda_nid_t pin,
			  unsigned int val)
{
	return _snd_hda_set_pin_ctl(codec, pin, val, true);
}

442 443 444 445
int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid);
int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
				 unsigned int val);

446 447 448
#define for_each_hda_codec_node(nid, codec) \
	for ((nid) = (codec)->core.start_nid; (nid) < (codec)->core.end_nid; (nid)++)

449 450 451 452 453
/*
 * get widget capabilities
 */
static inline u32 get_wcaps(struct hda_codec *codec, hda_nid_t nid)
{
454 455
	if (nid < codec->core.start_nid ||
	    nid >= codec->core.start_nid + codec->core.num_nodes)
456
		return 0;
457
	return codec->wcaps[nid - codec->core.start_nid];
458 459
}

460
/* get the widget type from widget capability bits */
461 462 463 464 465 466
static inline int get_wcaps_type(unsigned int wcaps)
{
	if (!wcaps)
		return -1; /* invalid type */
	return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
}
467

468 469 470 471 472 473 474 475 476 477
static inline unsigned int get_wcaps_channels(u32 wcaps)
{
	unsigned int chans;

	chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13;
	chans = ((chans << 1) | 1) + 1;

	return chans;
}

478 479 480
static inline void snd_hda_override_wcaps(struct hda_codec *codec,
					  hda_nid_t nid, u32 val)
{
481 482 483
	if (nid >= codec->core.start_nid &&
	    nid < codec->core.start_nid + codec->core.num_nodes)
		codec->wcaps[nid - codec->core.start_nid] = val;
484 485
}

486
u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction);
487 488
int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
			      unsigned int caps);
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
/**
 * snd_hda_query_pin_caps - Query PIN capabilities
 * @codec: the HD-auio codec
 * @nid: the NID to query
 *
 * Query PIN capabilities for the given widget.
 * Returns the obtained capability bits.
 *
 * When cap bits have been already read, this doesn't read again but
 * returns the cached value.
 */
static inline u32
snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
{
	return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);

}

/**
 * snd_hda_override_pin_caps - Override the pin capabilities
 * @codec: the CODEC
 * @nid: the NID to override
 * @caps: the capability bits to set
 *
 * Override the cached PIN capabilitiy bits value by the given one.
 *
 * Returns zero if successful or a negative error code.
 */
static inline int
snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid,
			  unsigned int caps)
{
	return snd_hdac_override_parm(&codec->core, nid, AC_PAR_PIN_CAP, caps);
}

524 525 526 527 528 529 530 531
bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
			   int dir, unsigned int bits);

#define nid_has_mute(codec, nid, dir) \
	snd_hda_check_amp_caps(codec, nid, dir, (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE))
#define nid_has_volume(codec, nid, dir) \
	snd_hda_check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)

532

533 534 535
/* flags for hda_nid_item */
#define HDA_NID_ITEM_AMP	(1<<0)

536 537
struct hda_nid_item {
	struct snd_kcontrol *kctl;
538
	unsigned int index;
539
	hda_nid_t nid;
540
	unsigned short flags;
541 542 543 544
};

int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
		    struct snd_kcontrol *kctl);
545 546
int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
		    unsigned int index, hda_nid_t nid);
T
Takashi Iwai 已提交
547 548
void snd_hda_ctls_clear(struct hda_codec *codec);

549 550 551
/*
 * hwdep interface
 */
552
#ifdef CONFIG_SND_HDA_HWDEP
553
int snd_hda_create_hwdep(struct hda_codec *codec);
554 555 556
#else
static inline int snd_hda_create_hwdep(struct hda_codec *codec) { return 0; }
#endif
557

558 559 560 561 562
void snd_hda_sysfs_init(struct hda_codec *codec);
void snd_hda_sysfs_clear(struct hda_codec *codec);

extern const struct attribute_group *snd_hda_dev_attr_groups[];

563 564 565
#ifdef CONFIG_SND_HDA_RECONFIG
const char *snd_hda_get_hint(struct hda_codec *codec, const char *key);
int snd_hda_get_bool_hint(struct hda_codec *codec, const char *key);
566
int snd_hda_get_int_hint(struct hda_codec *codec, const char *key, int *valp);
567 568 569 570 571 572 573 574 575 576 577 578
#else
static inline
const char *snd_hda_get_hint(struct hda_codec *codec, const char *key)
{
	return NULL;
}

static inline
int snd_hda_get_bool_hint(struct hda_codec *codec, const char *key)
{
	return -ENOENT;
}
579 580 581 582 583 584

static inline
int snd_hda_get_int_hint(struct hda_codec *codec, const char *key, int *valp)
{
	return -ENOENT;
}
585 586
#endif

587 588 589 590 591 592 593 594 595 596 597 598 599
/*
 * power-management
 */

void snd_hda_schedule_power_save(struct hda_codec *codec);

struct hda_amp_list {
	hda_nid_t nid;
	unsigned char dir;
	unsigned char idx;
};

struct hda_loopback_check {
600
	const struct hda_amp_list *amplist;
601 602 603 604 605 606 607
	int power_on;
};

int snd_hda_check_amp_list_power(struct hda_codec *codec,
				 struct hda_loopback_check *check,
				 hda_nid_t nid);

608 609 610 611 612
/* check whether the actual power state matches with the target state */
static inline bool
snd_hda_check_power_state(struct hda_codec *codec, hda_nid_t nid,
			  unsigned int target_state)
{
V
Vinod Koul 已提交
613
	return snd_hdac_check_power_state(&codec->core, nid, target_state);
614
}
L
Lukas Wunner 已提交
615 616 617 618

static inline unsigned int snd_hda_sync_power_state(struct hda_codec *codec,
						    hda_nid_t nid,
						    unsigned int target_state)
619 620 621
{
	return snd_hdac_sync_power_state(&codec->core, nid, target_state);
}
622 623 624 625
unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
					     hda_nid_t nid,
					     unsigned int power_state);

626 627 628 629
/*
 * AMP control callbacks
 */
/* retrieve parameters from private_value */
630 631
#define get_amp_nid_(pv)	((pv) & 0xffff)
#define get_amp_nid(kc)		get_amp_nid_((kc)->private_value)
632
#define get_amp_channels(kc)	(((kc)->private_value >> 16) & 0x3)
633 634
#define get_amp_direction_(pv)	(((pv) >> 18) & 0x1)
#define get_amp_direction(kc)	get_amp_direction_((kc)->private_value)
635 636
#define get_amp_index_(pv)	(((pv) >> 19) & 0xf)
#define get_amp_index(kc)	get_amp_index_((kc)->private_value)
637
#define get_amp_offset(kc)	(((kc)->private_value >> 23) & 0x3f)
638
#define get_amp_min_mute(kc)	(((kc)->private_value >> 29) & 0x1)
639

640 641 642 643 644 645 646 647 648
/*
 * enum control helper
 */
int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
			     struct snd_ctl_elem_info *uinfo,
			     int num_entries, const char * const *texts);
#define snd_hda_enum_bool_helper_info(kcontrol, uinfo) \
	snd_hda_enum_helper_info(kcontrol, uinfo, 0, NULL)

649 650 651 652 653 654 655 656 657 658 659 660 661
/*
 * CEA Short Audio Descriptor data
 */
struct cea_sad {
	int	channels;
	int	format;		/* (format == 0) indicates invalid SAD */
	int	rates;
	int	sample_bits;	/* for LPCM */
	int	max_bitrate;	/* for AC3...ATRAC */
	int	profile;	/* for WMAPRO */
};

#define ELD_FIXED_BYTES	20
662
#define ELD_MAX_SIZE    256
663 664 665 666 667 668
#define ELD_MAX_MNL	16
#define ELD_MAX_SAD	16

/*
 * ELD: EDID Like Data
 */
669 670 671 672
struct parsed_hdmi_eld {
	/*
	 * all fields will be cleared before updating ELD
	 */
673
	int	baseline_len;
674
	int	eld_ver;
675 676 677 678 679 680 681 682 683 684 685 686
	int	cea_edid_ver;
	char	monitor_name[ELD_MAX_MNL + 1];
	int	manufacture_id;
	int	product_id;
	u64	port_id;
	int	support_hdcp;
	int	support_ai;
	int	conn_type;
	int	aud_synch_delay;
	int	spk_alloc;
	int	sad_count;
	struct cea_sad sad[ELD_MAX_SAD];
687 688 689 690 691 692
};

struct hdmi_eld {
	bool	monitor_present;
	bool	eld_valid;
	int	eld_size;
693
	char    eld_buffer[ELD_MAX_SIZE];
694
	struct parsed_hdmi_eld info;
695 696 697
};

int snd_hdmi_get_eld_size(struct hda_codec *codec, hda_nid_t nid);
698 699
int snd_hdmi_get_eld(struct hda_codec *codec, hda_nid_t nid,
		     unsigned char *buf, int *eld_size);
700
int snd_hdmi_parse_eld(struct hda_codec *codec, struct parsed_hdmi_eld *e,
701
		       const unsigned char *buf, int size);
702
void snd_hdmi_show_eld(struct hda_codec *codec, struct parsed_hdmi_eld *e);
703
void snd_hdmi_eld_update_pcm_info(struct parsed_hdmi_eld *e,
704
			      struct hda_pcm_stream *hinfo);
705

706 707 708 709
int snd_hdmi_get_eld_ati(struct hda_codec *codec, hda_nid_t nid,
			 unsigned char *buf, int *eld_size,
			 bool rev3_or_later);

710
#ifdef CONFIG_SND_PROC_FS
711 712 713 714
void snd_hdmi_print_eld_info(struct hdmi_eld *eld,
			     struct snd_info_buffer *buffer);
void snd_hdmi_write_eld_info(struct hdmi_eld *eld,
			     struct snd_info_buffer *buffer);
715 716
#endif

717 718 719
#define SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE 80
void snd_print_channel_allocation(int spk_alloc, char *buf, int buflen);

720 721
/*
 */
722 723 724 725 726 727 728 729
#define codec_err(codec, fmt, args...) \
	dev_err(hda_codec_dev(codec), fmt, ##args)
#define codec_warn(codec, fmt, args...) \
	dev_warn(hda_codec_dev(codec), fmt, ##args)
#define codec_info(codec, fmt, args...) \
	dev_info(hda_codec_dev(codec), fmt, ##args)
#define codec_dbg(codec, fmt, args...) \
	dev_dbg(hda_codec_dev(codec), fmt, ##args)
730

L
Linus Torvalds 已提交
731
#endif /* __SOUND_HDA_LOCAL_H */