20 lines
526 B
C
20 lines
526 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Samsung S3C2410 DTS pinctrl constants
|
|
*
|
|
* Copyright (c) 2016 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
* Copyright (c) 2022 Linaro Ltd
|
|
* Author: Krzysztof Kozlowski <krzk@kernel.org>
|
|
*/
|
|
|
|
#ifndef __DTS_ARM_SAMSUNG_S3C2410_PINCTRL_H__
|
|
#define __DTS_ARM_SAMSUNG_S3C2410_PINCTRL_H__
|
|
|
|
#define S3C2410_PIN_FUNC_INPUT 0
|
|
#define S3C2410_PIN_FUNC_OUTPUT 1
|
|
#define S3C2410_PIN_FUNC_2 2
|
|
#define S3C2410_PIN_FUNC_3 3
|
|
|
|
#endif /* __DTS_ARM_SAMSUNG_S3C2410_PINCTRL_H__ */
|