Mark Kettenis | 2ec941f | 2021-10-23 16:58:06 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ OR MIT */ |
2 | /* | ||||
3 | * This header provides constants for Apple pinctrl bindings. | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef _DT_BINDINGS_PINCTRL_APPLE_H | ||||
7 | #define _DT_BINDINGS_PINCTRL_APPLE_H | ||||
8 | |||||
9 | #define APPLE_PINMUX(pin, func) ((pin) | ((func) << 16)) | ||||
10 | #define APPLE_PIN(pinmux) ((pinmux) & 0xffff) | ||||
11 | #define APPLE_FUNC(pinmux) ((pinmux) >> 16) | ||||
12 | |||||
13 | #endif /* _DT_BINDINGS_PINCTRL_APPLE_H */ |