blob: 02e1d777835495b1d1726bc9eed10715df6c0b36 [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 * linux/sound/rt5670.h -- Platform data for RT5670
4 *
5 * Copyright 2014 Realtek Microelectronics
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#ifndef __LINUX_SND_RT5670_H
9#define __LINUX_SND_RT5670_H
10
11struct rt5670_platform_data {
12 int jd_mode;
13 bool in2_diff;
14 bool dev_gpio;
Olivier Deprez0e641232021-09-23 10:07:05 +020015 bool gpio1_is_ext_spk_en;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016
17 bool dmic_en;
18 unsigned int dmic1_data_pin;
19 /* 0 = GPIO6; 1 = IN2P; 3 = GPIO7*/
20 unsigned int dmic2_data_pin;
21 /* 0 = GPIO8; 1 = IN3N; */
22 unsigned int dmic3_data_pin;
23 /* 0 = GPIO9; 1 = GPIO10; 2 = GPIO5*/
24};
25
26#endif