blob: 487a9f34d191ca5b073734015fad44774c9675bb [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * wm8711.h -- WM8711 Soc Audio driver
4 *
5 * Copyright 2006 Wolfson Microelectronics
6 *
7 * Author: Mike Arthur <linux@wolfsonmicro.com>
8 *
9 * Based on wm8731.h
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010 */
11
12#ifndef _WM8711_H
13#define _WM8711_H
14
15/* WM8711 register space */
16
17#define WM8711_LOUT1V 0x02
18#define WM8711_ROUT1V 0x03
19#define WM8711_APANA 0x04
20#define WM8711_APDIGI 0x05
21#define WM8711_PWR 0x06
22#define WM8711_IFACE 0x07
23#define WM8711_SRATE 0x08
24#define WM8711_ACTIVE 0x09
25#define WM8711_RESET 0x0f
26
27#define WM8711_CACHEREGNUM 8
28
29#define WM8711_SYSCLK 0
30#define WM8711_DAI 0
31
32struct wm8711_setup_data {
33 unsigned short i2c_address;
34};
35
36#endif