mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
52 lines
1.7 KiB
Diff
52 lines
1.7 KiB
Diff
From 9e665802b33cfebc0a6d9493cef22c7d07ae0768 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Bell <jonathan@raspberrypi.com>
|
|
Date: Mon, 12 Feb 2024 13:45:09 +0000
|
|
Subject: [PATCH 0892/1085] drivers: pinctrl: add BCM2712D0 EMMC pins
|
|
|
|
The pad control registers are concatenated onto the GPIO pad control
|
|
registers, as with previous steppings.
|
|
|
|
Signed-off-by: Jonathan Bell <jonathan@raspberrypi.com>
|
|
---
|
|
drivers/pinctrl/bcm/pinctrl-bcm2712.c | 22 ++++++++++++++++++++++
|
|
1 file changed, 22 insertions(+)
|
|
|
|
--- a/drivers/pinctrl/bcm/pinctrl-bcm2712.c
|
|
+++ b/drivers/pinctrl/bcm/pinctrl-bcm2712.c
|
|
@@ -416,6 +416,17 @@ static const struct pin_regs bcm2712_d0_
|
|
GPIO_REGS(33, 3, 1, 6, 0),
|
|
GPIO_REGS(34, 3, 2, 6, 1),
|
|
GPIO_REGS(35, 3, 3, 6, 2),
|
|
+ EMMC_REGS(36, 6, 3), /* EMMC_CMD */
|
|
+ EMMC_REGS(37, 6, 4), /* EMMC_DS */
|
|
+ EMMC_REGS(38, 6, 5), /* EMMC_CLK */
|
|
+ EMMC_REGS(39, 6, 6), /* EMMC_DAT0 */
|
|
+ EMMC_REGS(40, 6, 7), /* EMMC_DAT1 */
|
|
+ EMMC_REGS(41, 6, 8), /* EMMC_DAT2 */
|
|
+ EMMC_REGS(42, 6, 9), /* EMMC_DAT3 */
|
|
+ EMMC_REGS(43, 6, 10), /* EMMC_DAT4 */
|
|
+ EMMC_REGS(44, 6, 11), /* EMMC_DAT5 */
|
|
+ EMMC_REGS(45, 6, 12), /* EMMC_DAT6 */
|
|
+ EMMC_REGS(46, 6, 13), /* EMMC_DAT7 */
|
|
};
|
|
|
|
static struct pin_regs bcm2712_d0_aon_gpio_pin_regs[] = {
|
|
@@ -468,6 +479,17 @@ static const struct pinctrl_pin_desc bcm
|
|
GPIO_PIN(33),
|
|
GPIO_PIN(34),
|
|
GPIO_PIN(35),
|
|
+ PINCTRL_PIN(36, "emmc_cmd"),
|
|
+ PINCTRL_PIN(37, "emmc_ds"),
|
|
+ PINCTRL_PIN(38, "emmc_clk"),
|
|
+ PINCTRL_PIN(39, "emmc_dat0"),
|
|
+ PINCTRL_PIN(40, "emmc_dat1"),
|
|
+ PINCTRL_PIN(41, "emmc_dat2"),
|
|
+ PINCTRL_PIN(42, "emmc_dat3"),
|
|
+ PINCTRL_PIN(43, "emmc_dat4"),
|
|
+ PINCTRL_PIN(44, "emmc_dat5"),
|
|
+ PINCTRL_PIN(45, "emmc_dat6"),
|
|
+ PINCTRL_PIN(46, "emmc_dat7"),
|
|
};
|
|
|
|
static struct pinctrl_pin_desc bcm2712_d0_aon_gpio_pins[] = {
|