summaryrefslogtreecommitdiff
path: root/target/linux/brcm2708/patches-3.18/0051-BCM2708-use-pinctrl-bcm2835.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-09-11 17:17:30 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-09-11 17:17:30 +0000
commite1f0a7e841750fe8e47b4755fb5f849bcda2b50d (patch)
tree9825ebb26da47de4138e7e83d7979976846f18b5 /target/linux/brcm2708/patches-3.18/0051-BCM2708-use-pinctrl-bcm2835.patch
parent6c1adb3eecff7e86f7396e1aa443ee1ce947d9ec (diff)
downloadmtk-20170518-e1f0a7e841750fe8e47b4755fb5f849bcda2b50d.zip
mtk-20170518-e1f0a7e841750fe8e47b4755fb5f849bcda2b50d.tar.gz
mtk-20170518-e1f0a7e841750fe8e47b4755fb5f849bcda2b50d.tar.bz2
brcm2708: remove linux 3.18 support
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 46870
Diffstat (limited to 'target/linux/brcm2708/patches-3.18/0051-BCM2708-use-pinctrl-bcm2835.patch')
-rw-r--r--target/linux/brcm2708/patches-3.18/0051-BCM2708-use-pinctrl-bcm2835.patch71
1 files changed, 0 insertions, 71 deletions
diff --git a/target/linux/brcm2708/patches-3.18/0051-BCM2708-use-pinctrl-bcm2835.patch b/target/linux/brcm2708/patches-3.18/0051-BCM2708-use-pinctrl-bcm2835.patch
deleted file mode 100644
index 84abb3e..0000000
--- a/target/linux/brcm2708/patches-3.18/0051-BCM2708-use-pinctrl-bcm2835.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-From fff70fcc73e09e86d46f87dd44459870f15423b2 Mon Sep 17 00:00:00 2001
-From: notro <notro@tronnes.org>
-Date: Thu, 10 Jul 2014 13:59:47 +0200
-Subject: [PATCH 051/114] BCM2708: use pinctrl-bcm2835
-
-Use pinctrl-bcm2835 instead of the pinctrl-bcm2708 and bcm2708_gpio
-combination.
-
-Signed-off-by: Noralf Tronnes <notro@tronnes.org>
----
- arch/arm/boot/dts/bcm2708.dtsi | 12 ++++++++++++
- arch/arm/mach-bcm2708/Kconfig | 3 +++
- arch/arm/mach-bcm2708/bcm2708.c | 2 +-
- drivers/pinctrl/pinctrl-bcm2835.c | 2 +-
- 4 files changed, 17 insertions(+), 2 deletions(-)
-
---- a/arch/arm/boot/dts/bcm2708.dtsi
-+++ b/arch/arm/boot/dts/bcm2708.dtsi
-@@ -26,6 +26,18 @@
- interrupt-controller;
- #interrupt-cells = <2>;
- };
-+
-+ gpio: gpio {
-+ compatible = "brcm,bcm2835-gpio";
-+ reg = <0x7e200000 0xb4>;
-+ interrupts = <2 17>, <2 18>;
-+
-+ gpio-controller;
-+ #gpio-cells = <2>;
-+
-+ interrupt-controller;
-+ #interrupt-cells = <2>;
-+ };
- };
-
- clocks {
---- a/arch/arm/mach-bcm2708/Kconfig
-+++ b/arch/arm/mach-bcm2708/Kconfig
-@@ -14,6 +14,9 @@ config BCM2708_DT
- depends on MACH_BCM2708
- default n
- select USE_OF
-+ select ARCH_REQUIRE_GPIOLIB
-+ select PINCTRL
-+ select PINCTRL_BCM2835
- help
- Enable Device Tree support for BCM2708
-
---- a/arch/arm/mach-bcm2708/bcm2708.c
-+++ b/arch/arm/mach-bcm2708/bcm2708.c
-@@ -767,7 +767,7 @@ void __init bcm2708_init(void)
- bcm_register_device(&bcm2708_dmaman_device);
- bcm_register_device(&bcm2708_vcio_device);
- #ifdef CONFIG_BCM2708_GPIO
-- bcm_register_device(&bcm2708_gpio_device);
-+ bcm_register_device_dt(&bcm2708_gpio_device);
- #endif
- #if defined(CONFIG_W1_MASTER_GPIO) || defined(CONFIG_W1_MASTER_GPIO_MODULE)
- w1_gpio_pdata.pin = w1_gpio_pin;
---- a/drivers/pinctrl/pinctrl-bcm2835.c
-+++ b/drivers/pinctrl/pinctrl-bcm2835.c
-@@ -382,7 +382,7 @@ static struct gpio_chip bcm2835_gpio_chi
- .get = bcm2835_gpio_get,
- .set = bcm2835_gpio_set,
- .to_irq = bcm2835_gpio_to_irq,
-- .base = -1,
-+ .base = 0,
- .ngpio = BCM2835_NUM_GPIOS,
- .can_sleep = false,
- };