summaryrefslogtreecommitdiffstats
path: root/dts/include/dt-bindings/pinctrl/apple.h
blob: ea0a6f46659259b817119e912ae6f858fc4f9883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0+ OR MIT */
/*
 * This header provides constants for Apple pinctrl bindings.
 */

#ifndef _DT_BINDINGS_PINCTRL_APPLE_H
#define _DT_BINDINGS_PINCTRL_APPLE_H

#define APPLE_PINMUX(pin, func) ((pin) | ((func) << 16))
#define APPLE_PIN(pinmux) ((pinmux) & 0xffff)
#define APPLE_FUNC(pinmux) ((pinmux) >> 16)

#endif /* _DT_BINDINGS_PINCTRL_APPLE_H */