[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-271-g45c305eda
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2021-07-05 16:09:06
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 45c305edaf5fc671e8866badec0893df6a47ab5f (commit)
via 83e4195402518899496661a4074b9094705fc48c (commit)
from 1a6e7b30d0a1a3079669d4db42ee5b3c7bdb089c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 45c305edaf5fc671e8866badec0893df6a47ab5f
Author: Sébastien Szymanski <seb...@ar...>
Date: Mon Jul 5 18:07:56 2021 +0200
[BUILDROOT] opos6ul_defconfig: enable libgpiod (and tools)
commit 83e4195402518899496661a4074b9094705fc48c
Author: Sébastien Szymanski <seb...@ar...>
Date: Mon Jul 5 18:06:53 2021 +0200
[LINUX] 5.10: opos6uldev: fix muxing for camera ov5640
-----------------------------------------------------------------------
Summary of changes:
buildroot/configs/opos6ul_defconfig | 2 +
...opos6uldev-mux-camera-s-rst-and-pwdn-pins.patch | 46 ++++++++++++++++++++++
...M-dts-opos6uldev-mux-MCLK-in-camera-group.patch | 40 +++++++++++++++++++
3 files changed, 88 insertions(+)
create mode 100644 patches/linux/5.10/0812-ARM-dts-opos6uldev-mux-camera-s-rst-and-pwdn-pins.patch
create mode 100644 patches/linux/5.10/0813-ARM-dts-opos6uldev-mux-MCLK-in-camera-group.patch
diff --git a/buildroot/configs/opos6ul_defconfig b/buildroot/configs/opos6ul_defconfig
index b4d50e515..d7cb98ca3 100644
--- a/buildroot/configs/opos6ul_defconfig
+++ b/buildroot/configs/opos6ul_defconfig
@@ -110,6 +110,8 @@ BR2_PACKAGE_LIBVORBIS=y
BR2_PACKAGE_LIBDRM_INSTALL_TESTS=y
BR2_PACKAGE_DTC=y
BR2_PACKAGE_DTC_PROGRAMS=y
+BR2_PACKAGE_LIBGPIOD=y
+BR2_PACKAGE_LIBGPIOD_TOOLS=y
BR2_PACKAGE_LIBUSB=y
BR2_PACKAGE_LIBV4L=y
BR2_PACKAGE_LIBV4L_UTILS=y
diff --git a/patches/linux/5.10/0812-ARM-dts-opos6uldev-mux-camera-s-rst-and-pwdn-pins.patch b/patches/linux/5.10/0812-ARM-dts-opos6uldev-mux-camera-s-rst-and-pwdn-pins.patch
new file mode 100644
index 000000000..7d89d9c35
--- /dev/null
+++ b/patches/linux/5.10/0812-ARM-dts-opos6uldev-mux-camera-s-rst-and-pwdn-pins.patch
@@ -0,0 +1,46 @@
+From 66923f68575c33866b88b8b8218ee0ae3204caf9 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9bastien=20Szymanski?=
+ <seb...@ar...>
+Date: Mon, 5 Jul 2021 17:37:18 +0200
+Subject: [PATCH 1/1] ARM: dts: opos6uldev: mux camera's rst and pwdn pins
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Sébastien Szymanski <seb...@ar...>
+---
+ arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi | 11 +++++++++++
+ 1 file changed, 11 insertions(+)
+
+diff --git a/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi b/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi
+index ba77715b5b8a..7d6ff60a54bd 100644
+--- a/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi
++++ b/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi
+@@ -178,6 +178,8 @@ &i2c2 {
+ ov5640: camera@3c {
+ compatible = "ovti,ov5640";
+ reg = <0x3c>;
++ pinctrl-names = "default";
++ pinctrl-0 = <&pinctrl_camera>;
+ clocks = <&clks IMX6UL_CLK_CSI>;
+ clock-names = "xclk";
+ DOVDD-supply = <®_1v8>;
+@@ -263,6 +265,15 @@ &iomuxc {
+ pinctrl-names = "default";
+ pinctrl-0 = <&pinctrl_gpios>;
+
++ pinctrl_camera: cameragrp {
++ fsl,pins = <
++ /* RESET# */
++ MX6UL_PAD_NAND_DATA02__GPIO4_IO04 0x030b0
++ /* POWERDOWN */
++ MX6UL_PAD_NAND_DATA03__GPIO4_IO05 0x0b0b0
++ >;
++ };
++
+ pinctrl_csi: csigrp {
+ fsl,pins = <
+ MX6UL_PAD_CSI_PIXCLK__CSI_PIXCLK 0x1b000
+--
+2.31.1
+
diff --git a/patches/linux/5.10/0813-ARM-dts-opos6uldev-mux-MCLK-in-camera-group.patch b/patches/linux/5.10/0813-ARM-dts-opos6uldev-mux-MCLK-in-camera-group.patch
new file mode 100644
index 000000000..116d00aff
--- /dev/null
+++ b/patches/linux/5.10/0813-ARM-dts-opos6uldev-mux-MCLK-in-camera-group.patch
@@ -0,0 +1,40 @@
+From fba2d98e2f0ba93b7d17d868943c210f11585626 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9bastien=20Szymanski?=
+ <seb...@ar...>
+Date: Mon, 5 Jul 2021 17:56:42 +0200
+Subject: [PATCH 1/1] ARM: dts: opos6uldev: mux MCLK in camera group
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+So that we don't get an error when probing camera's driver before CSI
+controller's driver.
+
+Signed-off-by: Sébastien Szymanski <seb...@ar...>
+---
+ arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi b/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi
+index 7d6ff60a54bd..03bdc4434063 100644
+--- a/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi
++++ b/arch/arm/boot/dts/imx6ul-imx6ull-opos6uldev.dtsi
+@@ -267,6 +267,7 @@ &iomuxc {
+
+ pinctrl_camera: cameragrp {
+ fsl,pins = <
++ MX6UL_PAD_CSI_MCLK__CSI_MCLK 0x1b088
+ /* RESET# */
+ MX6UL_PAD_NAND_DATA02__GPIO4_IO04 0x030b0
+ /* POWERDOWN */
+@@ -279,7 +280,6 @@ pinctrl_csi: csigrp {
+ MX6UL_PAD_CSI_PIXCLK__CSI_PIXCLK 0x1b000
+ MX6UL_PAD_CSI_VSYNC__CSI_VSYNC 0x1b000
+ MX6UL_PAD_CSI_HSYNC__CSI_HSYNC 0x1b000
+- MX6UL_PAD_CSI_MCLK__CSI_MCLK 0x1b088
+ MX6UL_PAD_CSI_DATA00__CSI_DATA02 0x1b000
+ MX6UL_PAD_CSI_DATA01__CSI_DATA03 0x1b000
+ MX6UL_PAD_CSI_DATA02__CSI_DATA04 0x1b000
+--
+2.31.1
+
hooks/post-receive
--
armadeus
|