From 142d193af5fc91dd2670c79a72d78bbd21349b1a Mon Sep 17 00:00:00 2001 From: Sebastian Panceac Date: Mon, 25 Jun 2018 10:57:15 +0200 Subject: [PATCH 1/2] linux-mainline: Enable i2c0 in OrangePi-Plus2 device tree Signed-off-by: Sebastian Panceac --- CHANGELOG.md | 2 ++ ...-Enable-i2c0-on-OrangePi-Plus2-board.patch | 26 +++++++++++++++++++ .../linux/linux-mainline_4.15.18.bb | 1 + 3 files changed, 29 insertions(+) create mode 100644 layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline-4.15.18/0001-Enable-i2c0-on-OrangePi-Plus2-board.patch diff --git a/CHANGELOG.md b/CHANGELOG.md index 526eace..a80b880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ Change log ----------- +* linux-mainline: Enable i2c0 in OrangePi-Plus2 device tree [Sebastian] + # v2.12.7+rev3 ## (2018-05-23) diff --git a/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline-4.15.18/0001-Enable-i2c0-on-OrangePi-Plus2-board.patch b/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline-4.15.18/0001-Enable-i2c0-on-OrangePi-Plus2-board.patch new file mode 100644 index 0000000..011064f --- /dev/null +++ b/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline-4.15.18/0001-Enable-i2c0-on-OrangePi-Plus2-board.patch @@ -0,0 +1,26 @@ +From cef44d8fd32cf32dc3760ba2cf520467df7585d6 Mon Sep 17 00:00:00 2001 +From: Sebastian Panceac +Date: Wed, 20 Jun 2018 11:15:30 +0200 +Subject: [PATCH] Enable i2c0 on OrangePi Plus2 board + +Upstream-Status: Inappropriate [configuration] +Signed-off-by: Sebastian Panceac +--- + arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts b/arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts +index b403e5d..781b6c4 100644 +--- a/arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts ++++ b/arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts +@@ -122,3 +122,7 @@ + &usbphy { + usb3_vbus-supply = <®_usb3_vbus>; + }; ++ ++&i2c0 { ++ status = "okay"; ++}; +-- +2.7.4 + diff --git a/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_4.15.18.bb b/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_4.15.18.bb index 6664e84..6953199 100644 --- a/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_4.15.18.bb +++ b/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_4.15.18.bb @@ -22,4 +22,5 @@ SRC_URI[md5sum] = "2c7a9404ddf29580f14c61eb87e50c6e" SRC_URI = "https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${PV}.tar.xz \ file://defconfig \ file://don-t-default-activate-regdb.patch \ + file://0001-Enable-i2c0-on-OrangePi-Plus2-board.patch \ " From ec9ddb029bf35c3650e487d4784e6eeae7305a62 Mon Sep 17 00:00:00 2001 From: Sebastian Panceac Date: Mon, 25 Jun 2018 10:59:12 +0200 Subject: [PATCH 2/2] linux-mainline: Activate USB_SERIAL_PL2303 kernel module for OrangePi-Plus2 Signed-off-by: Sebastian Panceac --- CHANGELOG.md | 1 + .../recipes-kernel/linux/linux-mainline_%.bbappend | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a80b880..948dfd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ Change log ----------- +* linux-mainline: Activate USB_SERIAL_PL2303 kernel module for OrangePi-Plus2 [Sebastian] * linux-mainline: Enable i2c0 in OrangePi-Plus2 device tree [Sebastian] # v2.12.7+rev3 diff --git a/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend b/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend index 1c0486d..86e3f01 100644 --- a/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend +++ b/layers/meta-resin-allwinner/recipes-kernel/linux/linux-mainline_%.bbappend @@ -20,3 +20,11 @@ RESIN_CONFIGS[wifi] ="\ CONFIG_CFG80211=m \ CONFIG_CFG80211_WEXT=y \ " + +RESIN_CONFIGS_append_orangepi-plus2 = " pl2303" +RESIN_CONFIGS_DEPS[pl2303] = "\ + CONFIG_USB_SERIAL=m \ +" +RESIN_CONFIGS[pl2303] ="\ + CONFIG_USB_SERIAL_PL2303=m \ +"