Commit 59bbe86b authored by Praveen Talari's avatar Praveen Talari Committed by Mark Brown

soc: qcom: geni-se: Add SPI Device mode support for GENI based QuPv3

Add device mode supported registers and masks.
Signed-off-by: default avatarPraveen Talari <quic_ptalari@quicinc.com>
Reviewed-by: default avatarVijaya Krishna Nivarthi <quic_vnivarth@quicinc.com>
Link: https://lore.kernel.org/r/20230714042203.14251-2-quic_ptalari@quicinc.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 893aa09e
...@@ -35,6 +35,7 @@ enum geni_se_protocol_type { ...@@ -35,6 +35,7 @@ enum geni_se_protocol_type {
GENI_SE_UART, GENI_SE_UART,
GENI_SE_I2C, GENI_SE_I2C,
GENI_SE_I3C, GENI_SE_I3C,
GENI_SE_SPI_SLAVE,
}; };
struct geni_wrapper; struct geni_wrapper;
...@@ -73,12 +74,14 @@ struct geni_se { ...@@ -73,12 +74,14 @@ struct geni_se {
/* Common SE registers */ /* Common SE registers */
#define GENI_FORCE_DEFAULT_REG 0x20 #define GENI_FORCE_DEFAULT_REG 0x20
#define GENI_OUTPUT_CTRL 0x24
#define SE_GENI_STATUS 0x40 #define SE_GENI_STATUS 0x40
#define GENI_SER_M_CLK_CFG 0x48 #define GENI_SER_M_CLK_CFG 0x48
#define GENI_SER_S_CLK_CFG 0x4c #define GENI_SER_S_CLK_CFG 0x4c
#define GENI_IF_DISABLE_RO 0x64 #define GENI_IF_DISABLE_RO 0x64
#define GENI_FW_REVISION_RO 0x68 #define GENI_FW_REVISION_RO 0x68
#define SE_GENI_CLK_SEL 0x7c #define SE_GENI_CLK_SEL 0x7c
#define SE_GENI_CFG_SEQ_START 0x84
#define SE_GENI_DMA_MODE_EN 0x258 #define SE_GENI_DMA_MODE_EN 0x258
#define SE_GENI_M_CMD0 0x600 #define SE_GENI_M_CMD0 0x600
#define SE_GENI_M_CMD_CTRL_REG 0x604 #define SE_GENI_M_CMD_CTRL_REG 0x604
...@@ -111,6 +114,9 @@ struct geni_se { ...@@ -111,6 +114,9 @@ struct geni_se {
/* GENI_FORCE_DEFAULT_REG fields */ /* GENI_FORCE_DEFAULT_REG fields */
#define FORCE_DEFAULT BIT(0) #define FORCE_DEFAULT BIT(0)
/* GENI_OUTPUT_CTRL fields */
#define GENI_IO_MUX_0_EN BIT(0)
/* GENI_STATUS fields */ /* GENI_STATUS fields */
#define M_GENI_CMD_ACTIVE BIT(0) #define M_GENI_CMD_ACTIVE BIT(0)
#define S_GENI_CMD_ACTIVE BIT(12) #define S_GENI_CMD_ACTIVE BIT(12)
...@@ -130,6 +136,9 @@ struct geni_se { ...@@ -130,6 +136,9 @@ struct geni_se {
/* GENI_CLK_SEL fields */ /* GENI_CLK_SEL fields */
#define CLK_SEL_MSK GENMASK(2, 0) #define CLK_SEL_MSK GENMASK(2, 0)
/* SE_GENI_CFG_SEQ_START fields */
#define START_TRIGGER BIT(0)
/* SE_GENI_DMA_MODE_EN */ /* SE_GENI_DMA_MODE_EN */
#define GENI_DMA_MODE_EN BIT(0) #define GENI_DMA_MODE_EN BIT(0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment