59 lines
1.8 KiB
Diff
59 lines
1.8 KiB
Diff
|
From 7713257febc1cdecdc55e1372ecef7263c58c03c Mon Sep 17 00:00:00 2001
|
||
|
From: Boris Brezillon <boris.brezillon@free-electrons.com>
|
||
|
Date: Fri, 2 Dec 2016 14:48:12 +0100
|
||
|
Subject: [PATCH] ARM: bcm/dt: Add VEC node in bcm283x.dtsi
|
||
|
|
||
|
Add the VEC (Video EnCoder) node definition in bcm283x.dtsi.
|
||
|
|
||
|
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
|
||
|
Signed-off-by: Eric Anholt <eric@anholt.net>
|
||
|
---
|
||
|
arch/arm/boot/dts/bcm283x.dtsi | 8 ++++++++
|
||
|
1 file changed, 8 insertions(+)
|
||
|
|
||
|
diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi
|
||
|
index 9a44da1..a3106aa 100644
|
||
|
--- a/arch/arm/boot/dts/bcm283x.dtsi
|
||
|
+++ b/arch/arm/boot/dts/bcm283x.dtsi
|
||
|
@@ -476,6 +476,14 @@
|
||
|
status = "disabled";
|
||
|
};
|
||
|
|
||
|
+ vec: vec@7e806000 {
|
||
|
+ compatible = "brcm,bcm2835-vec";
|
||
|
+ reg = <0x7e806000 0x1000>;
|
||
|
+ clocks = <&clocks BCM2835_CLOCK_VEC>;
|
||
|
+ interrupts = <2 27>;
|
||
|
+ status = "disabled";
|
||
|
+ };
|
||
|
+
|
||
|
pixelvalve@7e807000 {
|
||
|
compatible = "brcm,bcm2835-pixelvalve2";
|
||
|
reg = <0x7e807000 0x100>;
|
||
|
From 38742ca2b8b21bfc2a2cc24278b58485ff781644 Mon Sep 17 00:00:00 2001
|
||
|
From: Boris Brezillon <boris.brezillon@free-electrons.com>
|
||
|
Date: Fri, 2 Dec 2016 14:48:13 +0100
|
||
|
Subject: [PATCH] ARM: bcm/dt: Enable the VEC IP on all RaspberryPi boards
|
||
|
|
||
|
Enable the VEC IP on all RaspberryPi boards.
|
||
|
|
||
|
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
|
||
|
Signed-off-by: Eric Anholt <eric@anholt.net>
|
||
|
---
|
||
|
arch/arm/boot/dts/bcm2835-rpi.dtsi | 5 +++++
|
||
|
1 file changed, 5 insertions(+)
|
||
|
|
||
|
diff --git a/arch/arm/boot/dts/bcm2835-rpi.dtsi b/arch/arm/boot/dts/bcm2835-rpi.dtsi
|
||
|
index 6ddf7dfe..38e6050 100644
|
||
|
--- a/arch/arm/boot/dts/bcm2835-rpi.dtsi
|
||
|
+++ b/arch/arm/boot/dts/bcm2835-rpi.dtsi
|
||
|
@@ -87,3 +87,8 @@
|
||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||
|
status = "okay";
|
||
|
};
|
||
|
+
|
||
|
+&vec {
|
||
|
+ power-domains = <&power RPI_POWER_DOMAIN_VEC>;
|
||
|
+ status = "okay";
|
||
|
+};
|