Merge branches 'ib-mfd-iio-input-5.1', 'ib-mfd-input-watchdog-5.1' and 'ib-mfd-platform-5.1' into ibs-for-mfd-merged
This commit is contained in:
@@ -281,16 +281,6 @@ int cros_ec_cmd_xfer(struct cros_ec_device *ec_dev,
|
||||
int cros_ec_cmd_xfer_status(struct cros_ec_device *ec_dev,
|
||||
struct cros_ec_command *msg);
|
||||
|
||||
/**
|
||||
* cros_ec_remove() - Remove a ChromeOS EC.
|
||||
* @ec_dev: Device to register.
|
||||
*
|
||||
* Call this to deregister a ChromeOS EC, then clean up any private data.
|
||||
*
|
||||
* Return: 0 on success or negative error code.
|
||||
*/
|
||||
int cros_ec_remove(struct cros_ec_device *ec_dev);
|
||||
|
||||
/**
|
||||
* cros_ec_register() - Register a new ChromeOS EC, using the provided info.
|
||||
* @ec_dev: Device to register.
|
||||
@@ -335,15 +325,4 @@ int cros_ec_get_next_event(struct cros_ec_device *ec_dev, bool *wake_event);
|
||||
*/
|
||||
u32 cros_ec_get_host_event(struct cros_ec_device *ec_dev);
|
||||
|
||||
/* sysfs stuff */
|
||||
extern struct attribute_group cros_ec_attr_group;
|
||||
extern struct attribute_group cros_ec_lightbar_attr_group;
|
||||
extern struct attribute_group cros_ec_vbc_attr_group;
|
||||
|
||||
/* debugfs stuff */
|
||||
int cros_ec_debugfs_init(struct cros_ec_dev *ec);
|
||||
void cros_ec_debugfs_remove(struct cros_ec_dev *ec);
|
||||
void cros_ec_debugfs_suspend(struct cros_ec_dev *ec);
|
||||
void cros_ec_debugfs_resume(struct cros_ec_dev *ec);
|
||||
|
||||
#endif /* __LINUX_MFD_CROS_EC_H */
|
||||
|
@@ -2790,6 +2790,100 @@ struct ec_response_battery_vendor_param {
|
||||
uint32_t value;
|
||||
} __packed;
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Commands for I2S recording on audio codec. */
|
||||
|
||||
#define EC_CMD_CODEC_I2S 0x00BC
|
||||
|
||||
enum ec_codec_i2s_subcmd {
|
||||
EC_CODEC_SET_SAMPLE_DEPTH = 0x0,
|
||||
EC_CODEC_SET_GAIN = 0x1,
|
||||
EC_CODEC_GET_GAIN = 0x2,
|
||||
EC_CODEC_I2S_ENABLE = 0x3,
|
||||
EC_CODEC_I2S_SET_CONFIG = 0x4,
|
||||
EC_CODEC_I2S_SET_TDM_CONFIG = 0x5,
|
||||
EC_CODEC_I2S_SET_BCLK = 0x6,
|
||||
};
|
||||
|
||||
enum ec_sample_depth_value {
|
||||
EC_CODEC_SAMPLE_DEPTH_16 = 0,
|
||||
EC_CODEC_SAMPLE_DEPTH_24 = 1,
|
||||
};
|
||||
|
||||
enum ec_i2s_config {
|
||||
EC_DAI_FMT_I2S = 0,
|
||||
EC_DAI_FMT_RIGHT_J = 1,
|
||||
EC_DAI_FMT_LEFT_J = 2,
|
||||
EC_DAI_FMT_PCM_A = 3,
|
||||
EC_DAI_FMT_PCM_B = 4,
|
||||
EC_DAI_FMT_PCM_TDM = 5,
|
||||
};
|
||||
|
||||
struct ec_param_codec_i2s {
|
||||
/*
|
||||
* enum ec_codec_i2s_subcmd
|
||||
*/
|
||||
uint8_t cmd;
|
||||
union {
|
||||
/*
|
||||
* EC_CODEC_SET_SAMPLE_DEPTH
|
||||
* Value should be one of ec_sample_depth_value.
|
||||
*/
|
||||
uint8_t depth;
|
||||
|
||||
/*
|
||||
* EC_CODEC_SET_GAIN
|
||||
* Value should be 0~43 for both channels.
|
||||
*/
|
||||
struct ec_param_codec_i2s_set_gain {
|
||||
uint8_t left;
|
||||
uint8_t right;
|
||||
} __packed gain;
|
||||
|
||||
/*
|
||||
* EC_CODEC_I2S_ENABLE
|
||||
* 1 to enable, 0 to disable.
|
||||
*/
|
||||
uint8_t i2s_enable;
|
||||
|
||||
/*
|
||||
* EC_CODEC_I2S_SET_COFNIG
|
||||
* Value should be one of ec_i2s_config.
|
||||
*/
|
||||
uint8_t i2s_config;
|
||||
|
||||
/*
|
||||
* EC_CODEC_I2S_SET_TDM_CONFIG
|
||||
* Value should be one of ec_i2s_config.
|
||||
*/
|
||||
struct ec_param_codec_i2s_tdm {
|
||||
/*
|
||||
* 0 to 496
|
||||
*/
|
||||
int16_t ch0_delay;
|
||||
/*
|
||||
* -1 to 496
|
||||
*/
|
||||
int16_t ch1_delay;
|
||||
uint8_t adjacent_to_ch0;
|
||||
uint8_t adjacent_to_ch1;
|
||||
} __packed tdm_param;
|
||||
|
||||
/*
|
||||
* EC_CODEC_I2S_SET_BCLK
|
||||
*/
|
||||
uint32_t bclk;
|
||||
};
|
||||
} __packed;
|
||||
|
||||
/*
|
||||
* For subcommand EC_CODEC_GET_GAIN.
|
||||
*/
|
||||
struct ec_response_codec_gain {
|
||||
uint8_t left;
|
||||
uint8_t right;
|
||||
} __packed;
|
||||
|
||||
/*****************************************************************************/
|
||||
/* System commands */
|
||||
|
||||
|
@@ -41,7 +41,7 @@
|
||||
#define TCU_TCSR_PRESCALE_LSB 3
|
||||
#define TCU_TCSR_PRESCALE_MASK 0x38
|
||||
|
||||
#define TCU_TCSR_PWM_SD BIT(9) /* 0: Shutdown abruptly 1: gracefully */
|
||||
#define TCU_TCSR_PWM_SD BIT(9) /* 0: Shutdown gracefully 1: abruptly */
|
||||
#define TCU_TCSR_PWM_INITL_HIGH BIT(8) /* Sets the initial output level */
|
||||
#define TCU_TCSR_PWM_EN BIT(7) /* PWM pin output enable */
|
||||
|
||||
|
@@ -15,6 +15,7 @@
|
||||
#include <linux/gpio/consumer.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/mfd/madera/pdata.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/notifier.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/regulator/consumer.h>
|
||||
@@ -37,6 +38,8 @@ enum madera_type {
|
||||
|
||||
#define MADERA_MAX_MICBIAS 4
|
||||
|
||||
#define MADERA_MAX_HP_OUTPUT 3
|
||||
|
||||
/* Notifier events */
|
||||
#define MADERA_NOTIFY_VOICE_TRIGGER 0x1
|
||||
#define MADERA_NOTIFY_HPDET 0x2
|
||||
@@ -183,6 +186,10 @@ struct madera {
|
||||
unsigned int num_childbias[MADERA_MAX_MICBIAS];
|
||||
|
||||
struct snd_soc_dapm_context *dapm;
|
||||
struct mutex dapm_ptr_lock;
|
||||
unsigned int hp_ena;
|
||||
bool out_clamp[MADERA_MAX_HP_OUTPUT];
|
||||
bool out_shorted[MADERA_MAX_HP_OUTPUT];
|
||||
|
||||
struct blocking_notifier_head notifier;
|
||||
};
|
||||
|
212
include/linux/mfd/stpmic1.h
Normal file
212
include/linux/mfd/stpmic1.h
Normal file
@@ -0,0 +1,212 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (C) STMicroelectronics 2018 - All Rights Reserved
|
||||
* Author: Philippe Peurichard <philippe.peurichard@st.com>,
|
||||
* Pascal Paillet <p.paillet@st.com> for STMicroelectronics.
|
||||
*/
|
||||
|
||||
#ifndef __LINUX_MFD_STPMIC1_H
|
||||
#define __LINUX_MFD_STPMIC1_H
|
||||
|
||||
#define TURN_ON_SR 0x1
|
||||
#define TURN_OFF_SR 0x2
|
||||
#define ICC_LDO_TURN_OFF_SR 0x3
|
||||
#define ICC_BUCK_TURN_OFF_SR 0x4
|
||||
#define RREQ_STATE_SR 0x5
|
||||
#define VERSION_SR 0x6
|
||||
|
||||
#define SWOFF_PWRCTRL_CR 0x10
|
||||
#define PADS_PULL_CR 0x11
|
||||
#define BUCKS_PD_CR 0x12
|
||||
#define LDO14_PD_CR 0x13
|
||||
#define LDO56_VREF_PD_CR 0x14
|
||||
#define VBUS_DET_VIN_CR 0x15
|
||||
#define PKEY_TURNOFF_CR 0x16
|
||||
#define BUCKS_MASK_RANK_CR 0x17
|
||||
#define BUCKS_MASK_RESET_CR 0x18
|
||||
#define LDOS_MASK_RANK_CR 0x19
|
||||
#define LDOS_MASK_RESET_CR 0x1A
|
||||
#define WCHDG_CR 0x1B
|
||||
#define WCHDG_TIMER_CR 0x1C
|
||||
#define BUCKS_ICCTO_CR 0x1D
|
||||
#define LDOS_ICCTO_CR 0x1E
|
||||
|
||||
#define BUCK1_ACTIVE_CR 0x20
|
||||
#define BUCK2_ACTIVE_CR 0x21
|
||||
#define BUCK3_ACTIVE_CR 0x22
|
||||
#define BUCK4_ACTIVE_CR 0x23
|
||||
#define VREF_DDR_ACTIVE_CR 0x24
|
||||
#define LDO1_ACTIVE_CR 0x25
|
||||
#define LDO2_ACTIVE_CR 0x26
|
||||
#define LDO3_ACTIVE_CR 0x27
|
||||
#define LDO4_ACTIVE_CR 0x28
|
||||
#define LDO5_ACTIVE_CR 0x29
|
||||
#define LDO6_ACTIVE_CR 0x2A
|
||||
|
||||
#define BUCK1_STDBY_CR 0x30
|
||||
#define BUCK2_STDBY_CR 0x31
|
||||
#define BUCK3_STDBY_CR 0x32
|
||||
#define BUCK4_STDBY_CR 0x33
|
||||
#define VREF_DDR_STDBY_CR 0x34
|
||||
#define LDO1_STDBY_CR 0x35
|
||||
#define LDO2_STDBY_CR 0x36
|
||||
#define LDO3_STDBY_CR 0x37
|
||||
#define LDO4_STDBY_CR 0x38
|
||||
#define LDO5_STDBY_CR 0x39
|
||||
#define LDO6_STDBY_CR 0x3A
|
||||
|
||||
#define BST_SW_CR 0x40
|
||||
|
||||
#define INT_PENDING_R1 0x50
|
||||
#define INT_PENDING_R2 0x51
|
||||
#define INT_PENDING_R3 0x52
|
||||
#define INT_PENDING_R4 0x53
|
||||
|
||||
#define INT_DBG_LATCH_R1 0x60
|
||||
#define INT_DBG_LATCH_R2 0x61
|
||||
#define INT_DBG_LATCH_R3 0x62
|
||||
#define INT_DBG_LATCH_R4 0x63
|
||||
|
||||
#define INT_CLEAR_R1 0x70
|
||||
#define INT_CLEAR_R2 0x71
|
||||
#define INT_CLEAR_R3 0x72
|
||||
#define INT_CLEAR_R4 0x73
|
||||
|
||||
#define INT_MASK_R1 0x80
|
||||
#define INT_MASK_R2 0x81
|
||||
#define INT_MASK_R3 0x82
|
||||
#define INT_MASK_R4 0x83
|
||||
|
||||
#define INT_SET_MASK_R1 0x90
|
||||
#define INT_SET_MASK_R2 0x91
|
||||
#define INT_SET_MASK_R3 0x92
|
||||
#define INT_SET_MASK_R4 0x93
|
||||
|
||||
#define INT_CLEAR_MASK_R1 0xA0
|
||||
#define INT_CLEAR_MASK_R2 0xA1
|
||||
#define INT_CLEAR_MASK_R3 0xA2
|
||||
#define INT_CLEAR_MASK_R4 0xA3
|
||||
|
||||
#define INT_SRC_R1 0xB0
|
||||
#define INT_SRC_R2 0xB1
|
||||
#define INT_SRC_R3 0xB2
|
||||
#define INT_SRC_R4 0xB3
|
||||
|
||||
#define PMIC_MAX_REGISTER_ADDRESS INT_SRC_R4
|
||||
|
||||
#define STPMIC1_PMIC_NUM_IRQ_REGS 4
|
||||
|
||||
#define TURN_OFF_SR_ICC_EVENT 0x08
|
||||
|
||||
#define LDO_VOLTAGE_MASK GENMASK(6, 2)
|
||||
#define BUCK_VOLTAGE_MASK GENMASK(7, 2)
|
||||
#define LDO_BUCK_VOLTAGE_SHIFT 2
|
||||
|
||||
#define LDO_ENABLE_MASK BIT(0)
|
||||
#define BUCK_ENABLE_MASK BIT(0)
|
||||
|
||||
#define BUCK_HPLP_ENABLE_MASK BIT(1)
|
||||
#define BUCK_HPLP_SHIFT 1
|
||||
|
||||
#define STDBY_ENABLE_MASK BIT(0)
|
||||
|
||||
#define BUCKS_PD_CR_REG_MASK GENMASK(7, 0)
|
||||
#define BUCK_MASK_RANK_REGISTER_MASK GENMASK(3, 0)
|
||||
#define BUCK_MASK_RESET_REGISTER_MASK GENMASK(3, 0)
|
||||
#define LDO1234_PULL_DOWN_REGISTER_MASK GENMASK(7, 0)
|
||||
#define LDO56_VREF_PD_CR_REG_MASK GENMASK(5, 0)
|
||||
#define LDO_MASK_RANK_REGISTER_MASK GENMASK(5, 0)
|
||||
#define LDO_MASK_RESET_REGISTER_MASK GENMASK(5, 0)
|
||||
|
||||
#define BUCK1_PULL_DOWN_REG BUCKS_PD_CR
|
||||
#define BUCK1_PULL_DOWN_MASK BIT(0)
|
||||
#define BUCK2_PULL_DOWN_REG BUCKS_PD_CR
|
||||
#define BUCK2_PULL_DOWN_MASK BIT(2)
|
||||
#define BUCK3_PULL_DOWN_REG BUCKS_PD_CR
|
||||
#define BUCK3_PULL_DOWN_MASK BIT(4)
|
||||
#define BUCK4_PULL_DOWN_REG BUCKS_PD_CR
|
||||
#define BUCK4_PULL_DOWN_MASK BIT(6)
|
||||
|
||||
#define LDO1_PULL_DOWN_REG LDO14_PD_CR
|
||||
#define LDO1_PULL_DOWN_MASK BIT(0)
|
||||
#define LDO2_PULL_DOWN_REG LDO14_PD_CR
|
||||
#define LDO2_PULL_DOWN_MASK BIT(2)
|
||||
#define LDO3_PULL_DOWN_REG LDO14_PD_CR
|
||||
#define LDO3_PULL_DOWN_MASK BIT(4)
|
||||
#define LDO4_PULL_DOWN_REG LDO14_PD_CR
|
||||
#define LDO4_PULL_DOWN_MASK BIT(6)
|
||||
#define LDO5_PULL_DOWN_REG LDO56_VREF_PD_CR
|
||||
#define LDO5_PULL_DOWN_MASK BIT(0)
|
||||
#define LDO6_PULL_DOWN_REG LDO56_VREF_PD_CR
|
||||
#define LDO6_PULL_DOWN_MASK BIT(2)
|
||||
#define VREF_DDR_PULL_DOWN_REG LDO56_VREF_PD_CR
|
||||
#define VREF_DDR_PULL_DOWN_MASK BIT(4)
|
||||
|
||||
#define BUCKS_ICCTO_CR_REG_MASK GENMASK(6, 0)
|
||||
#define LDOS_ICCTO_CR_REG_MASK GENMASK(5, 0)
|
||||
|
||||
#define LDO_BYPASS_MASK BIT(7)
|
||||
|
||||
/* Main PMIC Control Register
|
||||
* SWOFF_PWRCTRL_CR
|
||||
* Address : 0x10
|
||||
*/
|
||||
#define ICC_EVENT_ENABLED BIT(4)
|
||||
#define PWRCTRL_POLARITY_HIGH BIT(3)
|
||||
#define PWRCTRL_PIN_VALID BIT(2)
|
||||
#define RESTART_REQUEST_ENABLED BIT(1)
|
||||
#define SOFTWARE_SWITCH_OFF_ENABLED BIT(0)
|
||||
|
||||
/* Main PMIC PADS Control Register
|
||||
* PADS_PULL_CR
|
||||
* Address : 0x11
|
||||
*/
|
||||
#define WAKEUP_DETECTOR_DISABLED BIT(4)
|
||||
#define PWRCTRL_PD_ACTIVE BIT(3)
|
||||
#define PWRCTRL_PU_ACTIVE BIT(2)
|
||||
#define WAKEUP_PD_ACTIVE BIT(1)
|
||||
#define PONKEY_PU_INACTIVE BIT(0)
|
||||
|
||||
/* Main PMIC VINLOW Control Register
|
||||
* VBUS_DET_VIN_CRC DMSC
|
||||
* Address : 0x15
|
||||
*/
|
||||
#define SWIN_DETECTOR_ENABLED BIT(7)
|
||||
#define SWOUT_DETECTOR_ENABLED BIT(6)
|
||||
#define VINLOW_ENABLED BIT(0)
|
||||
#define VINLOW_CTRL_REG_MASK GENMASK(7, 0)
|
||||
|
||||
/* USB Control Register
|
||||
* Address : 0x40
|
||||
*/
|
||||
#define BOOST_OVP_DISABLED BIT(7)
|
||||
#define VBUS_OTG_DETECTION_DISABLED BIT(6)
|
||||
#define SW_OUT_DISCHARGE BIT(5)
|
||||
#define VBUS_OTG_DISCHARGE BIT(4)
|
||||
#define OCP_LIMIT_HIGH BIT(3)
|
||||
#define SWIN_SWOUT_ENABLED BIT(2)
|
||||
#define USBSW_OTG_SWITCH_ENABLED BIT(1)
|
||||
#define BOOST_ENABLED BIT(0)
|
||||
|
||||
/* PKEY_TURNOFF_CR
|
||||
* Address : 0x16
|
||||
*/
|
||||
#define PONKEY_PWR_OFF BIT(7)
|
||||
#define PONKEY_CC_FLAG_CLEAR BIT(6)
|
||||
#define PONKEY_TURNOFF_TIMER_MASK GENMASK(3, 0)
|
||||
#define PONKEY_TURNOFF_MASK GENMASK(7, 0)
|
||||
|
||||
/*
|
||||
* struct stpmic1 - stpmic1 master device for sub-drivers
|
||||
* @dev: master device of the chip (can be used to access platform data)
|
||||
* @irq: main IRQ number
|
||||
* @regmap_irq_chip_data: irq chip data
|
||||
*/
|
||||
struct stpmic1 {
|
||||
struct device *dev;
|
||||
struct regmap *regmap;
|
||||
int irq;
|
||||
struct regmap_irq_chip_data *irq_data;
|
||||
};
|
||||
|
||||
#endif /* __LINUX_MFD_STPMIC1_H */
|
@@ -78,6 +78,8 @@
|
||||
#define STEPCONFIG_YNN BIT(8)
|
||||
#define STEPCONFIG_XNP BIT(9)
|
||||
#define STEPCONFIG_YPN BIT(10)
|
||||
#define STEPCONFIG_RFP(val) ((val) << 12)
|
||||
#define STEPCONFIG_RFP_VREFP (0x3 << 12)
|
||||
#define STEPCONFIG_INM_MASK (0xF << 15)
|
||||
#define STEPCONFIG_INM(val) ((val) << 15)
|
||||
#define STEPCONFIG_INM_ADCREFM STEPCONFIG_INM(8)
|
||||
@@ -86,6 +88,8 @@
|
||||
#define STEPCONFIG_INP_AN4 STEPCONFIG_INP(4)
|
||||
#define STEPCONFIG_INP_ADCREFM STEPCONFIG_INP(8)
|
||||
#define STEPCONFIG_FIFO1 BIT(26)
|
||||
#define STEPCONFIG_RFM(val) ((val) << 23)
|
||||
#define STEPCONFIG_RFM_VREFN (0x3 << 23)
|
||||
|
||||
/* Delay register */
|
||||
#define STEPDELAY_OPEN_MASK (0x3FFFF << 0)
|
||||
|
@@ -79,7 +79,7 @@
|
||||
/* Some controllers have a CBSY bit */
|
||||
#define TMIO_MMC_HAVE_CBSY BIT(11)
|
||||
|
||||
/* Some controllers that support HS400 use use 4 taps while others use 8. */
|
||||
/* Some controllers that support HS400 use 4 taps while others use 8. */
|
||||
#define TMIO_MMC_HAVE_4TAP_HS400 BIT(13)
|
||||
|
||||
int tmio_core_mmc_enable(void __iomem *cnf, int shift, unsigned long base);
|
||||
|
Reference in New Issue
Block a user