Merge tag 'gpio-v5.9-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux...
[linux-2.6-block.git] / sound / soc / codecs / wm_hubs.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
a2342ae3
MB
2/*
3 * wm_hubs.h -- WM899x common code
4 *
5 * Copyright 2009 Wolfson Microelectronics plc
6 *
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
a2342ae3
MB
8 */
9
10#ifndef _WM_HUBS_H
11#define _WM_HUBS_H
12
d96ca3cd
MB
13#include <linux/completion.h>
14#include <linux/interrupt.h>
94aa733a 15#include <linux/list.h>
c340304d 16#include <sound/control.h>
d96ca3cd 17
00a6941c 18struct snd_soc_component;
a2342ae3
MB
19
20extern const unsigned int wm_hubs_spkmix_tlv[];
21
3ed7074c
MB
22/* This *must* be the first element of the codec->private_data struct */
23struct wm_hubs_data {
4537c4e7
MB
24 int dcs_codes_l;
25 int dcs_codes_r;
8437f700 26 int dcs_readback_mode;
3ed7074c 27 int hp_startup_mode;
f9acf9fe 28 int series_startup;
780b75b4 29 int no_series_update;
811c5494 30 bool micd_scthr;
fec6dd83 31
af31a227 32 bool no_cache_dac_hp_direct;
94aa733a 33 struct list_head dcs_cache;
00a6941c 34 bool (*check_class_w_digital)(struct snd_soc_component *);
d96ca3cd 35
02e79476
MB
36 int micb1_delay;
37 int micb2_delay;
38
5f2f3890
MB
39 bool lineout1_se;
40 bool lineout1n_ena;
41 bool lineout1p_ena;
42
43 bool lineout2_se;
44 bool lineout2n_ena;
45 bool lineout2p_ena;
46
d96ca3cd
MB
47 bool dcs_done_irq;
48 struct completion dcs_done;
8cb8e83b 49
00a6941c 50 struct snd_soc_component *component;
3ed7074c
MB
51};
52
00a6941c
KM
53extern int wm_hubs_add_analogue_controls(struct snd_soc_component *);
54extern int wm_hubs_add_analogue_routes(struct snd_soc_component *, int, int);
55extern int wm_hubs_handle_analogue_pdata(struct snd_soc_component *,
aa983d9d
MB
56 int lineout1_diff, int lineout2_diff,
57 int lineout1fb, int lineout2fb,
58 int jd_scthr, int jd_thr,
02e79476 59 int micbias1_dly, int micbias2_dly,
aa983d9d 60 int micbias1_lvl, int micbias2_lvl);
a2342ae3 61
d96ca3cd 62extern irqreturn_t wm_hubs_dcs_done(int irq, void *data);
00a6941c
KM
63extern void wm_hubs_vmid_ena(struct snd_soc_component *component);
64extern void wm_hubs_set_bias_level(struct snd_soc_component *component,
5f2f3890 65 enum snd_soc_bias_level level);
00a6941c 66extern void wm_hubs_update_class_w(struct snd_soc_component *component);
c340304d
MB
67
68extern const struct snd_kcontrol_new wm_hubs_hpl_mux;
69extern const struct snd_kcontrol_new wm_hubs_hpr_mux;
d96ca3cd 70
a2342ae3 71#endif