boards: arm: twr_kv58f220m: Add pinctrl dts properties

Add pinctrl-0 properties for configuration of peripherals like UARTs,
I2C, SPI, FTMs, etc.  These settings are based on what is defined in
the board/pinmux.c file.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2021-04-02 12:31:16 -05:00 committed by Kumar Gala
commit 84492677c0

View file

@ -131,6 +131,7 @@
&i2c1 {
status = "okay";
pinctrl-0 = <&I2C1_SCL_PTD8 &I2C1_SDA_PTD9>;
fxos8700@1c {
compatible = "nxp,fxos8700";
@ -141,7 +142,16 @@
};
};
&I2C1_SCL_PTD8 {
drive-open-drain;
};
&I2C1_SDA_PTD9 {
drive-open-drain;
};
&uart0 {
status = "okay";
current-speed = <115200>;
pinctrl-0 = <&UART0_RX_PTB0 &UART0_TX_PTB1>;
};