Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb68ce5d authored by Nitin Rawat's avatar Nitin Rawat
Browse files

pinctrl: qcom: Expose ufs_reset as gpio on shima



The ufs_reset pin is expected to be wired to the reset pin of the
primary UFS memory but is pretty much just a general purpose output pin.
Reorder the pins and expose it as gpio 204, so that the UFS driver can
toggle it.

Change-Id: Id35739a32bf05eaf310857fa07d9c7fbdb3abf86
Signed-off-by: default avatarNitin Rawat <nitirawa@codeaurora.org>
parent 6c710cb3
Loading
Loading
Loading
Loading
+26 −25
Original line number Diff line number Diff line
@@ -331,14 +331,15 @@ static const struct pinctrl_pin_desc shima_pins[] = {
	PINCTRL_PIN(201, "GPIO_201"),
	PINCTRL_PIN(202, "GPIO_202"),
	PINCTRL_PIN(203, "GPIO_203"),
	PINCTRL_PIN(204, "SDC1_RCLK"),
	PINCTRL_PIN(205, "SDC1_CLK"),
	PINCTRL_PIN(206, "SDC1_CMD"),
	PINCTRL_PIN(207, "SDC1_DATA"),
	PINCTRL_PIN(208, "SDC2_CLK"),
	PINCTRL_PIN(209, "SDC2_CMD"),
	PINCTRL_PIN(210, "SDC2_DATA"),
	PINCTRL_PIN(211, "UFS_RESET"),
	PINCTRL_PIN(204, "UFS_RESET"),
	PINCTRL_PIN(205, "SDC1_RCLK"),
	PINCTRL_PIN(206, "SDC1_CLK"),
	PINCTRL_PIN(207, "SDC1_CMD"),
	PINCTRL_PIN(208, "SDC1_DATA"),
	PINCTRL_PIN(209, "SDC2_CLK"),
	PINCTRL_PIN(210, "SDC2_CMD"),
	PINCTRL_PIN(211, "SDC2_DATA"),

};

#define DECLARE_MSM_GPIO_PINS(pin) \
@@ -548,14 +549,14 @@ DECLARE_MSM_GPIO_PINS(201);
DECLARE_MSM_GPIO_PINS(202);
DECLARE_MSM_GPIO_PINS(203);

static const unsigned int sdc1_rclk_pins[] = { 204 };
static const unsigned int sdc1_clk_pins[] = { 205 };
static const unsigned int sdc1_cmd_pins[] = { 206 };
static const unsigned int sdc1_data_pins[] = { 207 };
static const unsigned int sdc2_clk_pins[] = { 208 };
static const unsigned int sdc2_cmd_pins[] = { 209 };
static const unsigned int sdc2_data_pins[] = { 210 };
static const unsigned int ufs_reset_pins[] = { 211 };
static const unsigned int sdc1_rclk_pins[] = { 205 };
static const unsigned int sdc1_clk_pins[] = { 206 };
static const unsigned int sdc1_cmd_pins[] = { 207 };
static const unsigned int sdc1_data_pins[] = { 208 };
static const unsigned int sdc2_clk_pins[] = { 209 };
static const unsigned int sdc2_cmd_pins[] = { 210};
static const unsigned int sdc2_data_pins[] = { 211 };
static const unsigned int ufs_reset_pins[] = { 204 };

enum shima_functions {
	msm_mux_gpio,
@@ -1856,14 +1857,14 @@ static const struct msm_pingroup shima_groups[] = {
			 0xCC004, 12),
	[203] = PINGROUP(203, forced_usb, NA, NA, NA, NA, NA, NA, NA, NA,
			 0, -1),
	[204] = SDC_QDSD_PINGROUP(sdc1_rclk, 0x1d0000, 15, 0),
	[205] = SDC_QDSD_PINGROUP(sdc1_clk, 0x1d0000, 13, 6),
	[206] = SDC_QDSD_PINGROUP(sdc1_cmd, 0x1d0000, 11, 3),
	[207] = SDC_QDSD_PINGROUP(sdc1_data, 0x1d0000, 9, 0),
	[208] = SDC_QDSD_PINGROUP(sdc2_clk, 0x1d1000, 14, 6),
	[209] = SDC_QDSD_PINGROUP(sdc2_cmd, 0x1d1000, 11, 3),
	[210] = SDC_QDSD_PINGROUP(sdc2_data, 0x1d1000, 9, 0),
	[211] = UFS_RESET(ufs_reset, 0x1db000),
	[204] = UFS_RESET(ufs_reset, 0x1db000),
	[205] = SDC_QDSD_PINGROUP(sdc1_rclk, 0x1d0000, 15, 0),
	[206] = SDC_QDSD_PINGROUP(sdc1_clk, 0x1d0000, 13, 6),
	[207] = SDC_QDSD_PINGROUP(sdc1_cmd, 0x1d0000, 11, 3),
	[208] = SDC_QDSD_PINGROUP(sdc1_data, 0x1d0000, 9, 0),
	[209] = SDC_QDSD_PINGROUP(sdc2_clk, 0x1d1000, 14, 6),
	[210] = SDC_QDSD_PINGROUP(sdc2_cmd, 0x1d1000, 11, 3),
	[211] = SDC_QDSD_PINGROUP(sdc2_data, 0x1d1000, 9, 0),
};
static struct pinctrl_qup shima_qup_regs[] = {
	QUP_I3C(0, QUP_I3C_0_MODE_OFFSET),
@@ -1879,7 +1880,7 @@ static const struct msm_pinctrl_soc_data shima_pinctrl = {
	.nfunctions = ARRAY_SIZE(shima_functions),
	.groups = shima_groups,
	.ngroups = ARRAY_SIZE(shima_groups),
	.ngpios = 204,
	.ngpios = 205,
	.qup_regs = shima_qup_regs,
	.nqup_regs = ARRAY_SIZE(shima_qup_regs),
};