|
Zephyr API 3.6.99
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
7#ifndef ZEPHYR_B91_PINCTRL_COMMON_H_
8#define ZEPHYR_B91_PINCTRL_COMMON_H_
12#define B91_FUNC_A 0x00
13#define B91_FUNC_B 0x01
14#define B91_FUNC_C 0x02
18#define B91_PORT_A 0x00
19#define B91_PORT_B 0x01
20#define B91_PORT_C 0x02
21#define B91_PORT_D 0x03
22#define B91_PORT_E 0x04
37#define B91_PULL_NONE 0
38#define B91_PULL_DOWN 2
43#define B91_PIN_0_FUNC_POS 0x00
44#define B91_PIN_1_FUNC_POS 0x02
45#define B91_PIN_2_FUNC_POS 0x04
46#define B91_PIN_3_FUNC_POS 0x06
47#define B91_PIN_4_FUNC_POS 0x00
48#define B91_PIN_5_FUNC_POS 0x02
49#define B91_PIN_6_FUNC_POS 0x04
50#define B91_PIN_7_FUNC_POS 0x06
54#define B91_PULL_POS 19
55#define B91_PULL_MSK 0x3
56#define B91_FUNC_POS 16
57#define B91_FUNC_MSK 0x3
59#define B91_PORT_MSK 0xFF
61#define B91_PIN_MSK 0xFFFF
62#define B91_PIN_ID_MSK 0xFF
66#define B91_PINMUX_SET(port, pin, func) ((func << B91_FUNC_POS) | \
67 (port << B91_PORT_POS) | \
69#define B91_PINMUX_GET_PULL(pinmux) ((pinmux >> B91_PULL_POS) & B91_PULL_MSK)
70#define B91_PINMUX_GET_FUNC(pinmux) ((pinmux >> B91_FUNC_POS) & B91_FUNC_MSK)
71#define B91_PINMUX_GET_PIN(pinmux) ((pinmux >> B91_PIN_POS) & B91_PIN_MSK)
72#define B91_PINMUX_GET_PIN_ID(pinmux) ((pinmux >> B91_PIN_POS) & B91_PIN_ID_MSK)