/* SPDX-License-Identifier: GPL-2.0-only */1/*2* linux/sound/cs35l34.h -- Platform data for CS35l343*4* Copyright (c) 2016 Cirrus Logic Inc.5*/67#ifndef __CS35L34_H8#define __CS35L34_H910struct cs35l34_platform_data {11/* Set AIF to half drive strength */12bool aif_half_drv;13/* Digital Soft Ramp Disable */14bool digsft_disable;15/* Amplifier Invert */16bool amp_inv;17/* Peak current (mA) */18unsigned int boost_peak;19/* Boost inductor value (nH) */20unsigned int boost_ind;21/* Boost Controller Voltage Setting (mV) */22unsigned int boost_vtge;23/* Gain Change Zero Cross */24bool gain_zc_disable;25/* SDIN Left/Right Selection */26unsigned int i2s_sdinloc;27/* TDM Rising Edge */28bool tdm_rising_edge;29};3031#endif /* __CS35L34_H */323334