/* * wm9713.h -- WM9713 Soc Audio driver */ #ifndef _WM9713_H #define _WM9713_H /* clock inputs */ #define WM9713_CLKA_PIN 0 #define WM9713_CLKB_PIN 1 /* clock divider ID's */ #define WM9713_PCMCLK_DIV 0 #define WM9713_CLKA_MULT 1 #define WM9713_CLKB_MULT 2 #define WM9713_HIFI_DIV 3 #define WM9713_PCMBCLK_DIV 4 #define WM9713_PCMCLK_PLL_DIV 5 #define WM9713_HIFI_PLL_DIV 6 /* Calculate the appropriate bit mask for the external PCM clock divider */ #define WM9713_PCMDIV(x) ((x - 1) << 8) /* Calculate the appropriate bit mask for the external HiFi clock divider */ #define WM9713_HIFIDIV(x) ((x - 1) << 12) /* MCLK clock mulitipliers */ #define WM9713_CLKA_X1 (0 << 1) #define WM9713_CLKA_X2 (1 << 1) #define WM9713_CLKB_X1 (0 << 2) #define WM9713_CLKB_X2 (1 << 2) /* MCLK clock MUX */ #define WM9713_CLK_MUX_A (0 << 0) #define WM9713_CLK_MUX_B (1 << 0) /* Voice DAI BCLK divider */ #define WM9713_PCMBCLK_DIV_1 (0 << 9) #define WM9713_PCMBCLK_DIV_2 (1 << 9) #define WM9713_PCMBCLK_DIV_4 (2 << 9) #define WM9713_PCMBCLK_DIV_8 (3 << 9) #define WM9713_PCMBCLK_DIV_16 (4 << 9) #endif s-private-remove net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/include/net/tc_act/tc_ife.h
tr>
AgeCommit message (Expand)AuthorFilesLines
context:
space:
mode:
authorAxel Haslam <ahaslam@baylibre.com>2016-11-03 12:11:42 +0100
committerMark Brown <broonie@kernel.org>2016-11-04 12:15:25 -0600
commit1b5b42216469b05ef4b5916cb40b127dfab1da88 (patch)
tree088f4074ec93c863025c27126c400f85009ad92a /include/dt-bindings/sound/tas2552.h
parent1001354ca34179f3db924eb66672442a173147dc (diff)
regulator: core: Add new API to poll for error conditions
Regulator consumers can receive event notifications when errors are reported to the driver, but currently, there is no way for a regulator consumer to know when the error is over. To allow a regulator consumer to poll for error conditions add a new API: regulator_get_error_flags. Signed-off-by: Axel Haslam <ahaslam@baylibre.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/dt-bindings/sound/tas2552.h')