53 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * wm8900.h -- WM890 Soc Audio driver4 */5 6#ifndef _WM8900_H7#define _WM8900_H8 9#define WM8900_FLL 110 11#define WM8900_BCLK_DIV 112#define WM8900_ADC_CLKDIV 213#define WM8900_DAC_CLKDIV 314#define WM8900_ADC_LRCLK 415#define WM8900_DAC_LRCLK 516#define WM8900_OPCLK_DIV 617#define WM8900_LRCLK_MODE 718 19#define WM8900_BCLK_DIV_1 0x0020#define WM8900_BCLK_DIV_1_5 0x0221#define WM8900_BCLK_DIV_2 0x0422#define WM8900_BCLK_DIV_3 0x0623#define WM8900_BCLK_DIV_4 0x0824#define WM8900_BCLK_DIV_5_5 0x0a25#define WM8900_BCLK_DIV_6 0x0c26#define WM8900_BCLK_DIV_8 0x0e27#define WM8900_BCLK_DIV_11 0x1028#define WM8900_BCLK_DIV_12 0x1229#define WM8900_BCLK_DIV_16 0x1430#define WM8900_BCLK_DIV_22 0x1631#define WM8900_BCLK_DIV_24 0x1832#define WM8900_BCLK_DIV_32 0x1a33#define WM8900_BCLK_DIV_44 0x1c34#define WM8900_BCLK_DIV_48 0x1e35 36#define WM8900_ADC_CLKDIV_1 0x0037#define WM8900_ADC_CLKDIV_1_5 0x2038#define WM8900_ADC_CLKDIV_2 0x4039#define WM8900_ADC_CLKDIV_3 0x6040#define WM8900_ADC_CLKDIV_4 0x8041#define WM8900_ADC_CLKDIV_5_5 0xa042#define WM8900_ADC_CLKDIV_6 0xc043 44#define WM8900_DAC_CLKDIV_1 0x0045#define WM8900_DAC_CLKDIV_1_5 0x0446#define WM8900_DAC_CLKDIV_2 0x0847#define WM8900_DAC_CLKDIV_3 0x0c48#define WM8900_DAC_CLKDIV_4 0x1049#define WM8900_DAC_CLKDIV_5_5 0x1450#define WM8900_DAC_CLKDIV_6 0x1851 52#endif53