Rename DT_HAS_NODE to DT_HAS_NODE_STATUS_OKAY so the semantics are clear. As going forward DT_HAS_NODE will report if a NODE exists regardless of its status. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
/*
|
|
* Copyright (c) 2017, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <init.h>
|
|
#include <drivers/pinmux.h>
|
|
#include <fsl_port.h>
|
|
|
|
static int frdm_kw41z_pinmux_init(struct device *dev)
|
|
{
|
|
ARG_UNUSED(dev);
|
|
|
|
#ifdef CONFIG_PINMUX_MCUX_PORTA
|
|
struct device *porta =
|
|
device_get_binding(CONFIG_PINMUX_MCUX_PORTA_NAME);
|
|
#endif
|
|
#ifdef CONFIG_PINMUX_MCUX_PORTB
|
|
struct device *portb =
|
|
device_get_binding(CONFIG_PINMUX_MCUX_PORTB_NAME);
|
|
#endif
|
|
#ifdef CONFIG_PINMUX_MCUX_PORTC
|
|
struct device *portc =
|
|
device_get_binding(CONFIG_PINMUX_MCUX_PORTC_NAME);
|
|
#endif
|
|
|
|
/* Red, green, blue LEDs. Note the red LED and accel INT1 are both
|
|
* wired to PTC1.
|
|
*/
|
|
pinmux_pin_set(portc, 1, PORT_PCR_MUX(kPORT_MuxAsGpio));
|
|
pinmux_pin_set(porta, 19, PORT_PCR_MUX(kPORT_MuxAsGpio));
|
|
pinmux_pin_set(porta, 18, PORT_PCR_MUX(kPORT_MuxAsGpio));
|
|
|
|
#if DT_HAS_NODE_STATUS_OKAY(DT_NODELABEL(i2c1))
|
|
/* I2C1 SCL, SDA */
|
|
pinmux_pin_set(portc, 2, PORT_PCR_MUX(kPORT_MuxAlt3)
|
|
| PORT_PCR_PS_MASK);
|
|
pinmux_pin_set(portc, 3, PORT_PCR_MUX(kPORT_MuxAlt3)
|
|
| PORT_PCR_PS_MASK);
|
|
#endif
|
|
|
|
#if DT_HAS_NODE_STATUS_OKAY(DT_NODELABEL(adc0))
|
|
/* ADC0_SE3 */
|
|
pinmux_pin_set(portb, 2, PORT_PCR_MUX(kPORT_PinDisabledOrAnalog));
|
|
#endif
|
|
|
|
/* SW3, SW4 */
|
|
pinmux_pin_set(portc, 4, PORT_PCR_MUX(kPORT_MuxAsGpio));
|
|
pinmux_pin_set(portc, 5, PORT_PCR_MUX(kPORT_MuxAsGpio));
|
|
|
|
#if DT_HAS_NODE_STATUS_OKAY(DT_NODELABEL(lpuart0))
|
|
/* UART0 RX, TX */
|
|
pinmux_pin_set(portc, 6, PORT_PCR_MUX(kPORT_MuxAlt4));
|
|
pinmux_pin_set(portc, 7, PORT_PCR_MUX(kPORT_MuxAlt4));
|
|
#endif
|
|
|
|
#if DT_HAS_NODE_STATUS_OKAY(DT_NODELABEL(spi0))
|
|
/* SPI0 CS0, SCK, SOUT, SIN */
|
|
pinmux_pin_set(portc, 16, PORT_PCR_MUX(kPORT_MuxAlt2));
|
|
pinmux_pin_set(portc, 17, PORT_PCR_MUX(kPORT_MuxAlt2));
|
|
pinmux_pin_set(portc, 18, PORT_PCR_MUX(kPORT_MuxAlt2));
|
|
pinmux_pin_set(portc, 19, PORT_PCR_MUX(kPORT_MuxAlt2));
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
SYS_INIT(frdm_kw41z_pinmux_init, PRE_KERNEL_1, CONFIG_PINMUX_INIT_PRIORITY);
|