-
Posts
3889 -
Joined
-
Last visited
Everything posted by martinayotte
-
I will try, but daily job take most of my time these days ...
-
Armbian v21.05 (Jerboa) Release Thread
martinayotte replied to Heisath's topic in Armbian build framework
Sorry, completely forgot to join, it was too sunny outside ... -
With the help of @megi / @megous , I've now my Pinebook-A64 LCD working. Here is the patch : https://github.com/armbian/build/commit/d49be78b702d7779f78d2655126a56e7f2ea7426
-
I've tried for months to clarify the reason of such issue ... My last working kernel was 5.7.6, and the issue appeared as soon as 5.8.0, I've done "diff" between both branches and I still didn't figured out the glitches ...
-
It seems that NanoPi K1 Plus is using rtl8189 WiFi ... Right ? Driver is broken in 5.11, I'm working on it with other guys, I'm using OPiPC+/OPiLite/OPiPlus2E. In the mean time, if you don't need WiFi, disable the module : mv /lib/modules/5.11.1-sunxi/kernel/drivers/net/wireless/rtl8189fs/8189fs.ko /lib/modules/5.11.1-sunxi/kernel/drivers/net/wireless/rtl8189fs/8189fs.ko-disabled
-
Can you check DT if pinctrl-0 is present in UART3 node ? You can verify using this : ll /proc/device-tree/soc/serial@5000c00 (In my old 5.9 build, I see that they are missing and only UART0 has its pinctl-0 handle.) If missing, you can decompile DTB into DTS, edit DTS to add "pinctrl-0 = <phandle>;" where phandle can be found in "uart3-pins" node ...
-
Look at this doc file : /boot/dtb/overlay/README.sun8i-h3-overlays
-
You've forgot to define "param_spidev_spi_bus" which is mandatory ...
-
-
I'm not understanding exactly. Maybe because I've always producing patches manually ... Here is a summary of how I would do it : (edit the file to add "gpio-line-names" manually) nano cache/sources/linux-odroidxu4/odroid-5.4.y/arch/arm/boot/dts/exynos5420-pinctrl.dtsi (save) pushd cache/sources/linux-odroidxu4/odroid-5.4.y/ git diff arch/arm/boot/dts/exynos5420-pinctrl.dtsi > ~/my-gpio-line-names.patch popd mv ~/my-gpio-line-names.patch patches/kernel/odroidxu4-dev/odroidxu4-add-gpio-line-names.patch
-
Be carefull : phandle can vary between builds, so better use <&pio> and <&r_pio> symbols. As I said earlier, append you overlay code in some new board specific patch such as ./patch/kernel/sunxi-dev/nanopi-duo/board-h2plus-nanopi-duo-add-overlay.patch which will also provide change to arch/arm/boot/dts/overlay/Makefile.
-
I would choose to simply add another fragment in the same overlay ...
-
Do you mean PL ? Simply add another "gpio-line-names" entry into "pinctrl@1f02c00" node.
-
Sorry for the typo ...
-
I've manually copied my gpio-line-names.dtbo under /boot/dts/overlay/sun8i-h3-gpio-line-names.dtbo Then, I added "overlays=gpio-line-names" in /boot/armbianEnv.txt, and rebooted ... Yes, my test was for OrangePiPC+, and tested using libgpiod "gpioinfo" ...
