* [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support
@ 2020-03-06 17:44 Nicolas Saenz Julienne
2020-03-06 17:44 ` [PATCH v2 10/11] ARM: dts: bcm2711: Update expgpio's GPIO labels Nicolas Saenz Julienne
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Nicolas Saenz Julienne @ 2020-03-06 17:44 UTC (permalink / raw)
To: adrian.hunter, linux-kernel
Cc: phil, linux-mmc, linux-arm-kernel, f.fainelli, stefan.wahren,
bcm-kernel-feedback-list, linux-rpi-kernel,
Nicolas Saenz Julienne, devicetree
The series first cleans up a common pattern, which is ultimately needed
to integrate the regulator with bcm2711's sdhci-iproc. It then
introduces the relevant device-tree changes.
---
Changes since v1:
- Use helper function istead of quirk
- Add GPIO label
Nicolas Saenz Julienne (11):
mmc: sdhci: Introduce sdhci_set_power_and_bus_voltage()
mmc: sdhci: arasan: Use sdhci_set_power_and_voltage()
mmc: sdhci: milbeaut: Use sdhci_set_power_and_voltage()
mmc: sdhci: at91: Use sdhci_set_power_and_voltage()
mmc: sdhci: pxav3: Use sdhci_set_power_and_voltage()
mmc: sdhci: xenon: Use sdhci_set_power_and_voltage()
mmc: sdhci: am654: Use sdhci_set_power_and_voltage()
mmc: sdhci: Unexport sdhci_set_power_noreg()
mmc: sdhci: iproc: Add custom set_power() callback for bcm2711
ARM: dts: bcm2711: Update expgpio's GPIO labels
ARM: dts: bcm2711: Add vmmc regulator in emmc2
arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 13 ++++++++++++-
drivers/mmc/host/sdhci-iproc.c | 17 ++++++++++++++++-
drivers/mmc/host/sdhci-milbeaut.c | 13 +------------
drivers/mmc/host/sdhci-of-arasan.c | 15 ++-------------
drivers/mmc/host/sdhci-of-at91.c | 18 +-----------------
drivers/mmc/host/sdhci-pxav3.c | 20 +-------------------
drivers/mmc/host/sdhci-xenon.c | 20 +-------------------
drivers/mmc/host/sdhci.c | 24 +++++++++++++++++++++---
drivers/mmc/host/sdhci.h | 5 +++--
drivers/mmc/host/sdhci_am654.c | 17 +++--------------
10 files changed, 61 insertions(+), 101 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 10/11] ARM: dts: bcm2711: Update expgpio's GPIO labels
2020-03-06 17:44 [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Nicolas Saenz Julienne
@ 2020-03-06 17:44 ` Nicolas Saenz Julienne
2020-03-27 11:21 ` Nicolas Saenz Julienne
2020-03-06 17:44 ` [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2 Nicolas Saenz Julienne
2020-03-12 13:08 ` [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Ulf Hansson
2 siblings, 1 reply; 10+ messages in thread
From: Nicolas Saenz Julienne @ 2020-03-06 17:44 UTC (permalink / raw)
To: adrian.hunter, linux-kernel, Rob Herring, Nicolas Saenz Julienne
Cc: phil, linux-mmc, linux-arm-kernel, f.fainelli, stefan.wahren,
bcm-kernel-feedback-list, linux-rpi-kernel, devicetree
The 6th line of the GPIO expander is used to power the board's SD card.
Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
---
arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
index 1d4b589fe233..b0ea8233b636 100644
--- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
+++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
@@ -68,7 +68,7 @@ expgpio: gpio {
"GLOBAL_RESET",
"VDD_SD_IO_SEL",
"CAM_GPIO",
- "",
+ "SD_PWR_ON",
"";
status = "okay";
};
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2
2020-03-06 17:44 [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Nicolas Saenz Julienne
2020-03-06 17:44 ` [PATCH v2 10/11] ARM: dts: bcm2711: Update expgpio's GPIO labels Nicolas Saenz Julienne
@ 2020-03-06 17:44 ` Nicolas Saenz Julienne
2020-03-09 20:00 ` Stefan Wahren
2020-03-27 11:22 ` Nicolas Saenz Julienne
2020-03-12 13:08 ` [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Ulf Hansson
2 siblings, 2 replies; 10+ messages in thread
From: Nicolas Saenz Julienne @ 2020-03-06 17:44 UTC (permalink / raw)
To: adrian.hunter, linux-kernel, Rob Herring, Nicolas Saenz Julienne
Cc: phil, linux-mmc, linux-arm-kernel, f.fainelli, stefan.wahren,
bcm-kernel-feedback-list, linux-rpi-kernel, devicetree
The SD card power can be controlled trough a pin routed into the board's
external GPIO expander. Turn that into a regulator and provide it to
emmc2.
Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
---
arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
index b0ea8233b636..a2da058396fe 100644
--- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
+++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
@@ -55,6 +55,16 @@ sd_io_1v8_reg: sd_io_1v8_reg {
3300000 0x0>;
status = "okay";
};
+
+ sd_vcc_reg: sd_vcc_reg {
+ compatible = "regulator-fixed";
+ regulator-name = "vcc-sd";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ regulator-boot-on;
+ enable-active-high;
+ gpio = <&expgpio 6 GPIO_ACTIVE_HIGH>;
+ };
};
&firmware {
@@ -173,6 +183,7 @@ brcmf: wifi@1 {
/* EMMC2 is used to drive the SD card */
&emmc2 {
vqmmc-supply = <&sd_io_1v8_reg>;
+ vmmc-supply = <&sd_vcc_reg>;
broken-cd;
status = "okay";
};
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2
2020-03-06 17:44 ` [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2 Nicolas Saenz Julienne
@ 2020-03-09 20:00 ` Stefan Wahren
2020-03-09 20:01 ` Nicolas Saenz Julienne
2020-03-27 11:22 ` Nicolas Saenz Julienne
1 sibling, 1 reply; 10+ messages in thread
From: Stefan Wahren @ 2020-03-09 20:00 UTC (permalink / raw)
To: Nicolas Saenz Julienne, adrian.hunter, linux-kernel, Rob Herring
Cc: phil, linux-mmc, linux-arm-kernel, f.fainelli,
bcm-kernel-feedback-list, linux-rpi-kernel, devicetree
Hi Nicolas,
Am 06.03.20 um 18:44 schrieb Nicolas Saenz Julienne:
> The SD card power can be controlled trough a pin routed into the board's
> external GPIO expander. Turn that into a regulator and provide it to
> emmc2.
>
> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
> ---
> arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
> index b0ea8233b636..a2da058396fe 100644
> --- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
> +++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
> @@ -55,6 +55,16 @@ sd_io_1v8_reg: sd_io_1v8_reg {
> 3300000 0x0>;
> status = "okay";
> };
> +
> + sd_vcc_reg: sd_vcc_reg {
> + compatible = "regulator-fixed";
i think we need to enable CONFIG_REGULATOR_FIXED_VOLTAGE in
bcm2835_defconfig
Best regards
Stefan
> + regulator-name = "vcc-sd";
> + regulator-min-microvolt = <3300000>;
> + regulator-max-microvolt = <3300000>;
> + regulator-boot-on;
> + enable-active-high;
> + gpio = <&expgpio 6 GPIO_ACTIVE_HIGH>;
> + };
> };
>
> &firmware {
> @@ -173,6 +183,7 @@ brcmf: wifi@1 {
> /* EMMC2 is used to drive the SD card */
> &emmc2 {
> vqmmc-supply = <&sd_io_1v8_reg>;
> + vmmc-supply = <&sd_vcc_reg>;
> broken-cd;
> status = "okay";
> };
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2
2020-03-09 20:00 ` Stefan Wahren
@ 2020-03-09 20:01 ` Nicolas Saenz Julienne
0 siblings, 0 replies; 10+ messages in thread
From: Nicolas Saenz Julienne @ 2020-03-09 20:01 UTC (permalink / raw)
To: Stefan Wahren, adrian.hunter, linux-kernel, Rob Herring
Cc: devicetree, f.fainelli, linux-mmc, bcm-kernel-feedback-list,
linux-rpi-kernel, phil, linux-arm-kernel
[-- Attachment #1: Type: text/plain, Size: 1070 bytes --]
On Mon, 2020-03-09 at 21:00 +0100, Stefan Wahren wrote:
> Hi Nicolas,
>
> Am 06.03.20 um 18:44 schrieb Nicolas Saenz Julienne:
> > The SD card power can be controlled trough a pin routed into the board's
> > external GPIO expander. Turn that into a regulator and provide it to
> > emmc2.
> >
> > Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
> > ---
> > arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 11 +++++++++++
> > 1 file changed, 11 insertions(+)
> >
> > diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
> > b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
> > index b0ea8233b636..a2da058396fe 100644
> > --- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
> > +++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
> > @@ -55,6 +55,16 @@ sd_io_1v8_reg: sd_io_1v8_reg {
> > 3300000 0x0>;
> > status = "okay";
> > };
> > +
> > + sd_vcc_reg: sd_vcc_reg {
> > + compatible = "regulator-fixed";
>
> i think we need to enable CONFIG_REGULATOR_FIXED_VOLTAGE in
> bcm2835_defconfig
I'll take it into account for v3,
Thanks!
Nicolas
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support
2020-03-06 17:44 [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Nicolas Saenz Julienne
2020-03-06 17:44 ` [PATCH v2 10/11] ARM: dts: bcm2711: Update expgpio's GPIO labels Nicolas Saenz Julienne
2020-03-06 17:44 ` [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2 Nicolas Saenz Julienne
@ 2020-03-12 13:08 ` Ulf Hansson
2020-03-12 13:13 ` Nicolas Saenz Julienne
2 siblings, 1 reply; 10+ messages in thread
From: Ulf Hansson @ 2020-03-12 13:08 UTC (permalink / raw)
To: Nicolas Saenz Julienne
Cc: Adrian Hunter, Linux Kernel Mailing List, phil,
linux-mmc@vger.kernel.org, Linux ARM, Florian Fainelli,
Stefan Wahren, BCM Kernel Feedback, linux-rpi-kernel, DTML
On Fri, 6 Mar 2020 at 18:44, Nicolas Saenz Julienne
<nsaenzjulienne@suse.de> wrote:
>
> The series first cleans up a common pattern, which is ultimately needed
> to integrate the regulator with bcm2711's sdhci-iproc. It then
> introduces the relevant device-tree changes.
>
> ---
>
> Changes since v1:
> - Use helper function istead of quirk
> - Add GPIO label
>
> Nicolas Saenz Julienne (11):
> mmc: sdhci: Introduce sdhci_set_power_and_bus_voltage()
> mmc: sdhci: arasan: Use sdhci_set_power_and_voltage()
> mmc: sdhci: milbeaut: Use sdhci_set_power_and_voltage()
> mmc: sdhci: at91: Use sdhci_set_power_and_voltage()
> mmc: sdhci: pxav3: Use sdhci_set_power_and_voltage()
> mmc: sdhci: xenon: Use sdhci_set_power_and_voltage()
> mmc: sdhci: am654: Use sdhci_set_power_and_voltage()
> mmc: sdhci: Unexport sdhci_set_power_noreg()
> mmc: sdhci: iproc: Add custom set_power() callback for bcm2711
> ARM: dts: bcm2711: Update expgpio's GPIO labels
> ARM: dts: bcm2711: Add vmmc regulator in emmc2
>
> arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 13 ++++++++++++-
> drivers/mmc/host/sdhci-iproc.c | 17 ++++++++++++++++-
> drivers/mmc/host/sdhci-milbeaut.c | 13 +------------
> drivers/mmc/host/sdhci-of-arasan.c | 15 ++-------------
> drivers/mmc/host/sdhci-of-at91.c | 18 +-----------------
> drivers/mmc/host/sdhci-pxav3.c | 20 +-------------------
> drivers/mmc/host/sdhci-xenon.c | 20 +-------------------
> drivers/mmc/host/sdhci.c | 24 +++++++++++++++++++++---
> drivers/mmc/host/sdhci.h | 5 +++--
> drivers/mmc/host/sdhci_am654.c | 17 +++--------------
> 10 files changed, 61 insertions(+), 101 deletions(-)
>
> --
> 2.25.1
>
Patch 1-4, 6, 9 applied for next, thanks!
Kind regards
Uffe
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support
2020-03-12 13:08 ` [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Ulf Hansson
@ 2020-03-12 13:13 ` Nicolas Saenz Julienne
2020-03-12 14:06 ` Ulf Hansson
0 siblings, 1 reply; 10+ messages in thread
From: Nicolas Saenz Julienne @ 2020-03-12 13:13 UTC (permalink / raw)
To: Ulf Hansson
Cc: Adrian Hunter, Linux Kernel Mailing List, phil,
linux-mmc@vger.kernel.org, Linux ARM, Florian Fainelli,
Stefan Wahren, BCM Kernel Feedback, linux-rpi-kernel, DTML
[-- Attachment #1: Type: text/plain, Size: 2075 bytes --]
Hi Ulf,
On Thu, 2020-03-12 at 14:08 +0100, Ulf Hansson wrote:
> On Fri, 6 Mar 2020 at 18:44, Nicolas Saenz Julienne
> <nsaenzjulienne@suse.de> wrote:
> > The series first cleans up a common pattern, which is ultimately needed
> > to integrate the regulator with bcm2711's sdhci-iproc. It then
> > introduces the relevant device-tree changes.
> >
> > ---
> >
> > Changes since v1:
> > - Use helper function istead of quirk
> > - Add GPIO label
> >
> > Nicolas Saenz Julienne (11):
> > mmc: sdhci: Introduce sdhci_set_power_and_bus_voltage()
> > mmc: sdhci: arasan: Use sdhci_set_power_and_voltage()
> > mmc: sdhci: milbeaut: Use sdhci_set_power_and_voltage()
> > mmc: sdhci: at91: Use sdhci_set_power_and_voltage()
> > mmc: sdhci: pxav3: Use sdhci_set_power_and_voltage()
> > mmc: sdhci: xenon: Use sdhci_set_power_and_voltage()
> > mmc: sdhci: am654: Use sdhci_set_power_and_voltage()
> > mmc: sdhci: Unexport sdhci_set_power_noreg()
> > mmc: sdhci: iproc: Add custom set_power() callback for bcm2711
> > ARM: dts: bcm2711: Update expgpio's GPIO labels
> > ARM: dts: bcm2711: Add vmmc regulator in emmc2
> >
> > arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 13 ++++++++++++-
> > drivers/mmc/host/sdhci-iproc.c | 17 ++++++++++++++++-
> > drivers/mmc/host/sdhci-milbeaut.c | 13 +------------
> > drivers/mmc/host/sdhci-of-arasan.c | 15 ++-------------
> > drivers/mmc/host/sdhci-of-at91.c | 18 +-----------------
> > drivers/mmc/host/sdhci-pxav3.c | 20 +-------------------
> > drivers/mmc/host/sdhci-xenon.c | 20 +-------------------
> > drivers/mmc/host/sdhci.c | 24 +++++++++++++++++++++---
> > drivers/mmc/host/sdhci.h | 5 +++--
> > drivers/mmc/host/sdhci_am654.c | 17 +++--------------
> > 10 files changed, 61 insertions(+), 101 deletions(-)
> >
> > --
> > 2.25.1
> >
>
> Patch 1-4, 6, 9 applied for next, thanks!
I think you meant to apply 1-4, 7 and 9. Patch 6 is one of the contentious
ones.
Regards,
Nicolas
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support
2020-03-12 13:13 ` Nicolas Saenz Julienne
@ 2020-03-12 14:06 ` Ulf Hansson
0 siblings, 0 replies; 10+ messages in thread
From: Ulf Hansson @ 2020-03-12 14:06 UTC (permalink / raw)
To: Nicolas Saenz Julienne
Cc: Adrian Hunter, Linux Kernel Mailing List, phil,
linux-mmc@vger.kernel.org, Linux ARM, Florian Fainelli,
Stefan Wahren, BCM Kernel Feedback, linux-rpi-kernel, DTML
On Thu, 12 Mar 2020 at 14:13, Nicolas Saenz Julienne
<nsaenzjulienne@suse.de> wrote:
>
> Hi Ulf,
>
> On Thu, 2020-03-12 at 14:08 +0100, Ulf Hansson wrote:
> > On Fri, 6 Mar 2020 at 18:44, Nicolas Saenz Julienne
> > <nsaenzjulienne@suse.de> wrote:
> > > The series first cleans up a common pattern, which is ultimately needed
> > > to integrate the regulator with bcm2711's sdhci-iproc. It then
> > > introduces the relevant device-tree changes.
> > >
> > > ---
> > >
> > > Changes since v1:
> > > - Use helper function istead of quirk
> > > - Add GPIO label
> > >
> > > Nicolas Saenz Julienne (11):
> > > mmc: sdhci: Introduce sdhci_set_power_and_bus_voltage()
> > > mmc: sdhci: arasan: Use sdhci_set_power_and_voltage()
> > > mmc: sdhci: milbeaut: Use sdhci_set_power_and_voltage()
> > > mmc: sdhci: at91: Use sdhci_set_power_and_voltage()
> > > mmc: sdhci: pxav3: Use sdhci_set_power_and_voltage()
> > > mmc: sdhci: xenon: Use sdhci_set_power_and_voltage()
> > > mmc: sdhci: am654: Use sdhci_set_power_and_voltage()
> > > mmc: sdhci: Unexport sdhci_set_power_noreg()
> > > mmc: sdhci: iproc: Add custom set_power() callback for bcm2711
> > > ARM: dts: bcm2711: Update expgpio's GPIO labels
> > > ARM: dts: bcm2711: Add vmmc regulator in emmc2
> > >
> > > arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 13 ++++++++++++-
> > > drivers/mmc/host/sdhci-iproc.c | 17 ++++++++++++++++-
> > > drivers/mmc/host/sdhci-milbeaut.c | 13 +------------
> > > drivers/mmc/host/sdhci-of-arasan.c | 15 ++-------------
> > > drivers/mmc/host/sdhci-of-at91.c | 18 +-----------------
> > > drivers/mmc/host/sdhci-pxav3.c | 20 +-------------------
> > > drivers/mmc/host/sdhci-xenon.c | 20 +-------------------
> > > drivers/mmc/host/sdhci.c | 24 +++++++++++++++++++++---
> > > drivers/mmc/host/sdhci.h | 5 +++--
> > > drivers/mmc/host/sdhci_am654.c | 17 +++--------------
> > > 10 files changed, 61 insertions(+), 101 deletions(-)
> > >
> > > --
> > > 2.25.1
> > >
> >
> > Patch 1-4, 6, 9 applied for next, thanks!
>
> I think you meant to apply 1-4, 7 and 9. Patch 6 is one of the contentious
> ones.
Yes, that's what I did, but told you about 6. :-)
Thanks and sorry for the noise.
Kind regards
Uffe
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 10/11] ARM: dts: bcm2711: Update expgpio's GPIO labels
2020-03-06 17:44 ` [PATCH v2 10/11] ARM: dts: bcm2711: Update expgpio's GPIO labels Nicolas Saenz Julienne
@ 2020-03-27 11:21 ` Nicolas Saenz Julienne
0 siblings, 0 replies; 10+ messages in thread
From: Nicolas Saenz Julienne @ 2020-03-27 11:21 UTC (permalink / raw)
To: adrian.hunter, linux-kernel, Rob Herring
Cc: stefan.wahren, devicetree, f.fainelli, linux-mmc,
bcm-kernel-feedback-list, linux-rpi-kernel, phil,
linux-arm-kernel
[-- Attachment #1: Type: text/plain, Size: 262 bytes --]
On Fri, 2020-03-06 at 18:44 +0100, Nicolas Saenz Julienne wrote:
> The 6th line of the GPIO expander is used to power the board's SD card.
>
> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
> ---
Applied for-next.
Regards,
Nicolas
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2
2020-03-06 17:44 ` [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2 Nicolas Saenz Julienne
2020-03-09 20:00 ` Stefan Wahren
@ 2020-03-27 11:22 ` Nicolas Saenz Julienne
1 sibling, 0 replies; 10+ messages in thread
From: Nicolas Saenz Julienne @ 2020-03-27 11:22 UTC (permalink / raw)
To: adrian.hunter, linux-kernel, Rob Herring
Cc: phil, linux-mmc, linux-arm-kernel, f.fainelli, stefan.wahren,
bcm-kernel-feedback-list, linux-rpi-kernel, devicetree
[-- Attachment #1: Type: text/plain, Size: 338 bytes --]
On Fri, 2020-03-06 at 18:44 +0100, Nicolas Saenz Julienne wrote:
> The SD card power can be controlled trough a pin routed into the board's
> external GPIO expander. Turn that into a regulator and provide it to
> emmc2.
>
> Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Applied for-next.
Regards,
Nicolas
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-03-27 11:22 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-06 17:44 [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Nicolas Saenz Julienne
2020-03-06 17:44 ` [PATCH v2 10/11] ARM: dts: bcm2711: Update expgpio's GPIO labels Nicolas Saenz Julienne
2020-03-27 11:21 ` Nicolas Saenz Julienne
2020-03-06 17:44 ` [PATCH v2 11/11] ARM: dts: bcm2711: Add vmmc regulator in emmc2 Nicolas Saenz Julienne
2020-03-09 20:00 ` Stefan Wahren
2020-03-09 20:01 ` Nicolas Saenz Julienne
2020-03-27 11:22 ` Nicolas Saenz Julienne
2020-03-12 13:08 ` [PATCH v2 00/11] Raspbery Pi 4 vmmc regulator support Ulf Hansson
2020-03-12 13:13 ` Nicolas Saenz Julienne
2020-03-12 14:06 ` Ulf Hansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).