Joda's post in [Uart] Unable to connect to ZWave module? was marked as the answer
ok it's working
I make a diff between pine64 and pine64+
root@domotique:~# diff pine64.txt pine64+.txt
5c5
< model = "Pine64";
---
> model = "Pine64+";
9c9
< compatible = "pine64,pine64\0allwinner,sun50i-a64";
---
> compatible = "pine64,pine64-plus\0allwinner,sun50i-a64";
202c202
< phandle = <0x40>;
---
> phandle = <0x7b>;
261c261
< phandle = <0x7b>;
---
> phandle = <0x40>;
282c282
< phandle = <0xb2>;
---
> phandle = <0x37>;
303,308d302
< uart2-rts-cts-pins {
< function = "uart2";
< pins = "PB2\0PB3";
< phandle = <0xb3>;
< };
<
1102a1097
> regulator-enable-ramp-delay = <0x186a0>;
1365c1360
< pinctrl-0 = <0xb2>;
---
> pinctrl-0 = <0x37>;
1371c1366
< status = "okay";
---
> status = "disabled";
1848d1842
< uart2_rts_cts_pins = "/soc/pinctrl@1c20800/uart2-rts-cts-pins";
I think we just need to add
uart2-rts-cts-pins {
function = "uart2";
pins = "PB2\0PB3";
phandle = <0xb3>;
};
uart2_rts_cts_pins = "/soc/pinctrl@1c20800/uart2-rts-cts-pins";
@Werner do you think it's possible to add this to the uart2 overlay ?
cordially