2023-09-23 15:17:59

by Matti Lehtimäki

[permalink] [raw]
Subject: [PATCH v2 0/2] MPM pin mappings for MSM8226 and MSM8974

This series adds the MPM wakeirq mappings for MSM8226 and MSM8974.

Changes in v2:
- Add missing entry to MSM8226 mapping
- Add Reviewed-by tag to MSM8974 patch

Matti Lehtimäki (2):
pinctrl: qcom: msm8226: Add MPM pin mappings
pinctrl: qcom: msm8974: Add MPM pin mappings

drivers/pinctrl/qcom/pinctrl-msm8226.c | 12 ++++++++++++
drivers/pinctrl/qcom/pinctrl-msm8x74.c | 12 ++++++++++++
2 files changed, 24 insertions(+)

--
2.39.2


2023-09-23 17:40:58

by Matti Lehtimäki

[permalink] [raw]
Subject: [PATCH v2 1/2] pinctrl: qcom: msm8226: Add MPM pin mappings

Add pin <-> wakeirq mappings to allow for waking up the AP from sleep
through MPM-connected pins.

Signed-off-by: Matti Lehtimäki <[email protected]>
---
Changes in v2:
- Add missing entry to mapping
---
drivers/pinctrl/qcom/pinctrl-msm8226.c | 12 ++++++++++++
1 file changed, 12 insertions(+)

diff --git a/drivers/pinctrl/qcom/pinctrl-msm8226.c b/drivers/pinctrl/qcom/pinctrl-msm8226.c
index 994619840a70..4030baa3715f 100644
--- a/drivers/pinctrl/qcom/pinctrl-msm8226.c
+++ b/drivers/pinctrl/qcom/pinctrl-msm8226.c
@@ -612,6 +612,16 @@ static const struct msm_pingroup msm8226_groups[] = {

#define NUM_GPIO_PINGROUPS 117

+static const struct msm_gpio_wakeirq_map msm8226_mpm_map[] = {
+ { 1, 3 }, { 4, 4 }, { 5, 5 }, { 9, 6 }, { 13, 7 }, { 17, 8 },
+ { 21, 9 }, { 27, 10 }, { 29, 11 }, { 31, 12 }, { 33, 13 }, { 35, 14 },
+ { 37, 15 }, { 38, 16 }, { 39, 17 }, { 41, 18 }, { 46, 19 }, { 48, 20 },
+ { 49, 21 }, { 50, 22 }, { 51, 23 }, { 52, 24 }, { 54, 25 }, { 62, 26 },
+ { 63, 27 }, { 64, 28 }, { 65, 29 }, { 66, 30 }, { 67, 31 }, { 68, 32 },
+ { 69, 33 }, { 71, 34 }, { 72, 35 }, { 106, 36 }, { 107, 37 }, { 108, 38 },
+ { 109, 39 }, { 110, 40 }, { 111, 54 }, { 113, 55 }, { 115, 41 },
+};
+
static const struct msm_pinctrl_soc_data msm8226_pinctrl = {
.pins = msm8226_pins,
.npins = ARRAY_SIZE(msm8226_pins),
@@ -620,6 +630,8 @@ static const struct msm_pinctrl_soc_data msm8226_pinctrl = {
.groups = msm8226_groups,
.ngroups = ARRAY_SIZE(msm8226_groups),
.ngpios = NUM_GPIO_PINGROUPS,
+ .wakeirq_map = msm8226_mpm_map,
+ .nwakeirq_map = ARRAY_SIZE(msm8226_mpm_map),
};

static int msm8226_pinctrl_probe(struct platform_device *pdev)
--
2.39.2

2023-09-27 18:03:53

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH v2 1/2] pinctrl: qcom: msm8226: Add MPM pin mappings

On Sat, Sep 23, 2023 at 3:14 PM Matti Lehtimäki
<[email protected]> wrote:

> Add pin <-> wakeirq mappings to allow for waking up the AP from sleep
> through MPM-connected pins.
>
> Signed-off-by: Matti Lehtimäki <[email protected]>

Both v2 patches applied!

Yours,
Linus Walleij