1*f126890aSEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0 */ 2*f126890aSEmmanuel Vadot /* 3*f126890aSEmmanuel Vadot * Samsung S3C64xx DTS pinctrl constants 4*f126890aSEmmanuel Vadot * 5*f126890aSEmmanuel Vadot * Copyright (c) 2016 Samsung Electronics Co., Ltd. 6*f126890aSEmmanuel Vadot * http://www.samsung.com 7*f126890aSEmmanuel Vadot * Copyright (c) 2022 Linaro Ltd 8*f126890aSEmmanuel Vadot * Author: Krzysztof Kozlowski <krzk@kernel.org> 9*f126890aSEmmanuel Vadot */ 10*f126890aSEmmanuel Vadot 11*f126890aSEmmanuel Vadot #ifndef __DTS_ARM_SAMSUNG_S3C64XX_PINCTRL_H__ 12*f126890aSEmmanuel Vadot #define __DTS_ARM_SAMSUNG_S3C64XX_PINCTRL_H__ 13*f126890aSEmmanuel Vadot 14*f126890aSEmmanuel Vadot #define S3C64XX_PIN_PULL_NONE 0 15*f126890aSEmmanuel Vadot #define S3C64XX_PIN_PULL_DOWN 1 16*f126890aSEmmanuel Vadot #define S3C64XX_PIN_PULL_UP 2 17*f126890aSEmmanuel Vadot 18*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_INPUT 0 19*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_OUTPUT 1 20*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_2 2 21*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_3 3 22*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_4 4 23*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_5 5 24*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_6 6 25*f126890aSEmmanuel Vadot #define S3C64XX_PIN_FUNC_EINT 7 26*f126890aSEmmanuel Vadot 27*f126890aSEmmanuel Vadot #endif /* __DTS_ARM_SAMSUNG_S3C64XX_PINCTRL_H__ */ 28