|
Zephyr API 3.6.99
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
7#ifndef ZEPHYR_INCLUDE_DT_BINDINGS_PINCTRL_NXP_S32_PINCTRL_H_
8#define ZEPHYR_INCLUDE_DT_BINDINGS_PINCTRL_NXP_S32_PINCTRL_H_
23#define NXP_S32_MSCR_SSS_SHIFT 0U
24#define NXP_S32_MSCR_SSS_MASK BIT_MASK(3)
25#define NXP_S32_IMCR_SSS_SHIFT 3U
26#define NXP_S32_IMCR_SSS_MASK BIT_MASK(4)
27#define NXP_S32_IMCR_IDX_SHIFT 7U
28#define NXP_S32_IMCR_IDX_MASK BIT_MASK(9)
29#define NXP_S32_MSCR_IDX_SHIFT 16U
30#define NXP_S32_MSCR_IDX_MASK BIT_MASK(9)
31#define NXP_S32_MSCR_SIUL2_IDX_SHIFT 25U
32#define NXP_S32_MSCR_SIUL2_IDX_MASK BIT_MASK(3)
33#define NXP_S32_IMCR_SIUL2_IDX_SHIFT 28U
34#define NXP_S32_IMCR_SIUL2_IDX_MASK BIT_MASK(3)
36#define NXP_S32_PINMUX_MSCR_SSS(cfg) \
37 (((cfg) & NXP_S32_MSCR_SSS_MASK) << NXP_S32_MSCR_SSS_SHIFT)
39#define NXP_S32_PINMUX_IMCR_SSS(cfg) \
40 (((cfg) & NXP_S32_IMCR_SSS_MASK) << NXP_S32_IMCR_SSS_SHIFT)
42#define NXP_S32_PINMUX_IMCR_IDX(cfg) \
43 (((cfg) & NXP_S32_IMCR_IDX_MASK) << NXP_S32_IMCR_IDX_SHIFT)
45#define NXP_S32_PINMUX_MSCR_IDX(cfg) \
46 (((cfg) & NXP_S32_MSCR_IDX_MASK) << NXP_S32_MSCR_IDX_SHIFT)
48#define NXP_S32_PINMUX_MSCR_SIUL2_IDX(cfg) \
49 (((cfg) & NXP_S32_MSCR_SIUL2_IDX_MASK) << NXP_S32_MSCR_SIUL2_IDX_SHIFT)
51#define NXP_S32_PINMUX_IMCR_SIUL2_IDX(cfg) \
52 (((cfg) & NXP_S32_IMCR_SIUL2_IDX_MASK) << NXP_S32_IMCR_SIUL2_IDX_SHIFT)
54#define NXP_S32_PINMUX_GET_MSCR_SSS(cfg) \
55 (((cfg) >> NXP_S32_MSCR_SSS_SHIFT) & NXP_S32_MSCR_SSS_MASK)
57#define NXP_S32_PINMUX_GET_IMCR_SSS(cfg) \
58 (((cfg) >> NXP_S32_IMCR_SSS_SHIFT) & NXP_S32_IMCR_SSS_MASK)
60#define NXP_S32_PINMUX_GET_IMCR_IDX(cfg) \
61 (((cfg) >> NXP_S32_IMCR_IDX_SHIFT) & NXP_S32_IMCR_IDX_MASK)
63#define NXP_S32_PINMUX_GET_MSCR_IDX(cfg) \
64 (((cfg) >> NXP_S32_MSCR_IDX_SHIFT) & NXP_S32_MSCR_IDX_MASK)
66#define NXP_S32_PINMUX_GET_MSCR_SIUL2_IDX(cfg) \
67 (((cfg) >> NXP_S32_MSCR_SIUL2_IDX_SHIFT) & NXP_S32_MSCR_SIUL2_IDX_MASK)
69#define NXP_S32_PINMUX_GET_IMCR_SIUL2_IDX(cfg) \
70 (((cfg) >> NXP_S32_IMCR_SIUL2_IDX_SHIFT) & NXP_S32_IMCR_SIUL2_IDX_MASK)
82#define NXP_S32_PINMUX(mscr_siul2_idx, imcr_siul2_idx, mscr_idx, mscr_sss, imcr_idx, imcr_sss) \
83 (NXP_S32_PINMUX_MSCR_SIUL2_IDX(mscr_siul2_idx) | \
84 NXP_S32_PINMUX_IMCR_SIUL2_IDX(imcr_siul2_idx) | \
85 NXP_S32_PINMUX_MSCR_IDX(mscr_idx) | \
86 NXP_S32_PINMUX_MSCR_SSS(mscr_sss) | \
87 NXP_S32_PINMUX_IMCR_IDX(imcr_idx) | \
88 NXP_S32_PINMUX_IMCR_SSS(imcr_sss))