1 /* SPDX-License-Identifier: GPL-2.0 */
3 * HD-audio regmap helpers
6 #ifndef __SOUND_HDA_REGMAP_H
7 #define __SOUND_HDA_REGMAP_H
9 #include <linux/regmap.h>
10 #include <sound/core.h>
11 #include <sound/hdaudio.h>
13 #define AC_AMP_FAKE_MUTE 0x10 /* fake mute bit set to amp verbs */
15 int snd_hdac_regmap_init(struct hdac_device
*codec
);
16 void snd_hdac_regmap_exit(struct hdac_device
*codec
);
17 int snd_hdac_regmap_add_vendor_verb(struct hdac_device
*codec
,
19 int snd_hdac_regmap_read_raw(struct hdac_device
*codec
, unsigned int reg
,
21 int snd_hdac_regmap_read_raw_uncached(struct hdac_device
*codec
,
22 unsigned int reg
, unsigned int *val
);
23 int snd_hdac_regmap_write_raw(struct hdac_device
*codec
, unsigned int reg
,
25 int snd_hdac_regmap_update_raw(struct hdac_device
*codec
, unsigned int reg
,
26 unsigned int mask
, unsigned int val
);
29 * snd_hdac_regmap_encode_verb - encode the verb to a pseudo register
33 * Returns an encoded pseudo register.
35 #define snd_hdac_regmap_encode_verb(nid, verb) \
36 (((verb) << 8) | 0x80000 | ((unsigned int)(nid) << 20))
39 * snd_hdac_regmap_encode_amp - encode the AMP verb to a pseudo register
41 * @ch: channel (left = 0, right = 1)
42 * @dir: direction (#HDA_INPUT, #HDA_OUTPUT)
43 * @idx: input index value
45 * Returns an encoded pseudo register.
47 #define snd_hdac_regmap_encode_amp(nid, ch, dir, idx) \
48 (snd_hdac_regmap_encode_verb(nid, AC_VERB_GET_AMP_GAIN_MUTE) | \
49 ((ch) ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT) | \
50 ((dir) == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT) | \
54 * snd_hdac_regmap_encode_amp_stereo - encode a pseudo register for stereo AMPs
56 * @dir: direction (#HDA_INPUT, #HDA_OUTPUT)
57 * @idx: input index value
59 * Returns an encoded pseudo register.
61 #define snd_hdac_regmap_encode_amp_stereo(nid, dir, idx) \
62 (snd_hdac_regmap_encode_verb(nid, AC_VERB_GET_AMP_GAIN_MUTE) | \
63 AC_AMP_SET_LEFT | AC_AMP_SET_RIGHT | /* both bits set! */ \
64 ((dir) == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT) | \
68 * snd_hdac_regmap_write - Write a verb with caching
71 * @val: value to write
73 * For writing an amp value, use snd_hdac_regmap_update_amp().
76 snd_hdac_regmap_write(struct hdac_device
*codec
, hda_nid_t nid
,
77 unsigned int verb
, unsigned int val
)
79 unsigned int cmd
= snd_hdac_regmap_encode_verb(nid
, verb
);
81 return snd_hdac_regmap_write_raw(codec
, cmd
, val
);
85 * snd_hda_regmap_update - Update a verb value with caching
87 * @verb: verb to update
88 * @mask: bit mask to update
89 * @val: value to update
91 * For updating an amp value, use snd_hdac_regmap_update_amp().
94 snd_hdac_regmap_update(struct hdac_device
*codec
, hda_nid_t nid
,
95 unsigned int verb
, unsigned int mask
,
98 unsigned int cmd
= snd_hdac_regmap_encode_verb(nid
, verb
);
100 return snd_hdac_regmap_update_raw(codec
, cmd
, mask
, val
);
104 * snd_hda_regmap_read - Read a verb with caching
106 * @verb: verb to read
107 * @val: pointer to store the value
109 * For reading an amp value, use snd_hda_regmap_get_amp().
112 snd_hdac_regmap_read(struct hdac_device
*codec
, hda_nid_t nid
,
113 unsigned int verb
, unsigned int *val
)
115 unsigned int cmd
= snd_hdac_regmap_encode_verb(nid
, verb
);
117 return snd_hdac_regmap_read_raw(codec
, cmd
, val
);
121 * snd_hdac_regmap_get_amp - Read AMP value
122 * @codec: HD-audio codec
123 * @nid: NID to read the AMP value
124 * @ch: channel (left=0 or right=1)
125 * @direction: #HDA_INPUT or #HDA_OUTPUT
126 * @index: the index value (only for input direction)
127 * @val: the pointer to store the value
129 * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
130 * Returns the value or a negative error.
133 snd_hdac_regmap_get_amp(struct hdac_device
*codec
, hda_nid_t nid
,
134 int ch
, int dir
, int idx
)
136 unsigned int cmd
= snd_hdac_regmap_encode_amp(nid
, ch
, dir
, idx
);
139 err
= snd_hdac_regmap_read_raw(codec
, cmd
, &val
);
140 return err
< 0 ? err
: val
;
144 * snd_hdac_regmap_update_amp - update the AMP value
145 * @codec: HD-audio codec
146 * @nid: NID to read the AMP value
147 * @ch: channel (left=0 or right=1)
148 * @direction: #HDA_INPUT or #HDA_OUTPUT
149 * @idx: the index value (only for input direction)
150 * @mask: bit mask to set
151 * @val: the bits value to set
153 * Update the AMP value with a bit mask.
154 * Returns 0 if the value is unchanged, 1 if changed, or a negative error.
157 snd_hdac_regmap_update_amp(struct hdac_device
*codec
, hda_nid_t nid
,
158 int ch
, int dir
, int idx
, int mask
, int val
)
160 unsigned int cmd
= snd_hdac_regmap_encode_amp(nid
, ch
, dir
, idx
);
162 return snd_hdac_regmap_update_raw(codec
, cmd
, mask
, val
);
166 * snd_hdac_regmap_get_amp_stereo - Read stereo AMP values
167 * @codec: HD-audio codec
168 * @nid: NID to read the AMP value
169 * @ch: channel (left=0 or right=1)
170 * @direction: #HDA_INPUT or #HDA_OUTPUT
171 * @index: the index value (only for input direction)
172 * @val: the pointer to store the value
174 * Read stereo AMP values. The lower byte is left, the upper byte is right.
175 * Returns the value or a negative error.
178 snd_hdac_regmap_get_amp_stereo(struct hdac_device
*codec
, hda_nid_t nid
,
181 unsigned int cmd
= snd_hdac_regmap_encode_amp_stereo(nid
, dir
, idx
);
184 err
= snd_hdac_regmap_read_raw(codec
, cmd
, &val
);
185 return err
< 0 ? err
: val
;
189 * snd_hdac_regmap_update_amp_stereo - update the stereo AMP value
190 * @codec: HD-audio codec
191 * @nid: NID to read the AMP value
192 * @direction: #HDA_INPUT or #HDA_OUTPUT
193 * @idx: the index value (only for input direction)
194 * @mask: bit mask to set
195 * @val: the bits value to set
197 * Update the stereo AMP value with a bit mask.
198 * The lower byte is left, the upper byte is right.
199 * Returns 0 if the value is unchanged, 1 if changed, or a negative error.
202 snd_hdac_regmap_update_amp_stereo(struct hdac_device
*codec
, hda_nid_t nid
,
203 int dir
, int idx
, int mask
, int val
)
205 unsigned int cmd
= snd_hdac_regmap_encode_amp_stereo(nid
, dir
, idx
);
207 return snd_hdac_regmap_update_raw(codec
, cmd
, mask
, val
);
211 * snd_hdac_regmap_sync_node - sync the widget node attributes
212 * @codec: HD-audio codec
216 snd_hdac_regmap_sync_node(struct hdac_device
*codec
, hda_nid_t nid
)
218 regcache_mark_dirty(codec
->regmap
);
219 regcache_sync_region(codec
->regmap
, nid
<< 20, ((nid
+ 1) << 20) - 1);
222 #endif /* __SOUND_HDA_REGMAP_H */