Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * wm8711.h  --  WM8711 Soc Audio driver
0004  *
0005  * Copyright 2006 Wolfson Microelectronics
0006  *
0007  * Author: Mike Arthur <linux@wolfsonmicro.com>
0008  *
0009  * Based on wm8731.h
0010  */
0011 
0012 #ifndef _WM8711_H
0013 #define _WM8711_H
0014 
0015 /* WM8711 register space */
0016 
0017 #define WM8711_LOUT1V   0x02
0018 #define WM8711_ROUT1V   0x03
0019 #define WM8711_APANA    0x04
0020 #define WM8711_APDIGI   0x05
0021 #define WM8711_PWR      0x06
0022 #define WM8711_IFACE    0x07
0023 #define WM8711_SRATE    0x08
0024 #define WM8711_ACTIVE   0x09
0025 #define WM8711_RESET    0x0f
0026 
0027 #define WM8711_CACHEREGNUM  8
0028 
0029 #define WM8711_SYSCLK   0
0030 #define WM8711_DAI      0
0031 
0032 struct wm8711_setup_data {
0033     unsigned short i2c_address;
0034 };
0035 
0036 #endif