Lines Matching +full:invert +full:- +full:ext
11 such, can easily co-exist with the other PM systems.
60 Audio DAPM widgets fall into a number of types:-
127 (Widgets are defined in include/sound/soc-dapm.h)
130 There are convenience macros defined in soc-dapm.h that can be used to quickly
133 Most widgets have a name, register, shift and invert. Some widgets have extra
138 ---------------------
144 Stream widgets have the following format:-
147 SND_SOC_DAPM_DAC(name, stream name, reg, shift, invert),
148 SND_SOC_DAPM_AIF_IN(name, stream, slot, reg, shift, invert)
167 -------------------
170 audio paths within the audio subsystem. They have the following form:-
173 SND_SOC_DAPM_PGA(name, reg, shift, invert, controls, num_controls)
196 ----------------------
210 when the Mic is inserted:-::
222 -------------------
230 ---------------
234 a virtual widget - a widget with no control bits e.g.
274 So we have :-
283 Interconnections are created with a call to:-
295 -------------------------------
302 /* ext speaker connected to codec pins LOUT2, ROUT2 */
303 {"Ext Spk", NULL , "ROUT2"},
304 {"Ext Spk", NULL , "LOUT2"},
343 SND_SOC_DAPM_SPK("Ext Spk", corgi_amp_event);
345 Please see soc-dapm.h for all other widgets that support events.
349 -----------