 |
Zephyr API 3.6.99
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
7#ifndef __APOLLO5_PINCTRL_H__
8#define __APOLLO5_PINCTRL_H__
10#define APOLLO5_ALT_FUNC_POS 0
11#define APOLLO5_ALT_FUNC_MASK 0xf
13#define APOLLO5_PIN_NUM_POS 4
14#define APOLLO5_PIN_NUM_MASK 0xff
16#define APOLLO5_PINMUX(pin_num, alt_func) \
17 (pin_num << APOLLO5_PIN_NUM_POS | \
18 alt_func << APOLLO5_ALT_FUNC_POS)