brintos

brintos / linux-shallow public Read only

0
0
Text · 684 B · 487a9f3 Raw
37 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * wm8711.h  --  WM8711 Soc Audio driver4 *5 * Copyright 2006 Wolfson Microelectronics6 *7 * Author: Mike Arthur <linux@wolfsonmicro.com>8 *9 * Based on wm8731.h10 */11 12#ifndef _WM8711_H13#define _WM8711_H14 15/* WM8711 register space */16 17#define WM8711_LOUT1V   0x0218#define WM8711_ROUT1V   0x0319#define WM8711_APANA    0x0420#define WM8711_APDIGI   0x0521#define WM8711_PWR      0x0622#define WM8711_IFACE    0x0723#define WM8711_SRATE    0x0824#define WM8711_ACTIVE   0x0925#define WM8711_RESET	0x0f26 27#define WM8711_CACHEREGNUM 	828 29#define WM8711_SYSCLK	030#define WM8711_DAI		031 32struct wm8711_setup_data {33	unsigned short i2c_address;34};35 36#endif37