18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * This header provides constants for most at91 pinctrl bindings.
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Copyright (C) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
68c2ecf20Sopenharmony_ci */
78c2ecf20Sopenharmony_ci
88c2ecf20Sopenharmony_ci#ifndef __DT_BINDINGS_AT91_PINCTRL_H__
98c2ecf20Sopenharmony_ci#define __DT_BINDINGS_AT91_PINCTRL_H__
108c2ecf20Sopenharmony_ci
118c2ecf20Sopenharmony_ci#define AT91_PINCTRL_NONE		(0 << 0)
128c2ecf20Sopenharmony_ci#define AT91_PINCTRL_PULL_UP		(1 << 0)
138c2ecf20Sopenharmony_ci#define AT91_PINCTRL_MULTI_DRIVE	(1 << 1)
148c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DEGLITCH		(1 << 2)
158c2ecf20Sopenharmony_ci#define AT91_PINCTRL_PULL_DOWN		(1 << 3)
168c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DIS_SCHMIT		(1 << 4)
178c2ecf20Sopenharmony_ci#define AT91_PINCTRL_OUTPUT		(1 << 7)
188c2ecf20Sopenharmony_ci#define AT91_PINCTRL_OUTPUT_VAL(x)	((x & 0x1) << 8)
198c2ecf20Sopenharmony_ci#define AT91_PINCTRL_SLEWRATE		(1 << 9)
208c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DEBOUNCE		(1 << 16)
218c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DEBOUNCE_VAL(x)	(x << 17)
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci#define AT91_PINCTRL_PULL_UP_DEGLITCH	(AT91_PINCTRL_PULL_UP | AT91_PINCTRL_DEGLITCH)
248c2ecf20Sopenharmony_ci
258c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DRIVE_STRENGTH_DEFAULT		(0x0 << 5)
268c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DRIVE_STRENGTH_LOW			(0x1 << 5)
278c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DRIVE_STRENGTH_MED			(0x2 << 5)
288c2ecf20Sopenharmony_ci#define AT91_PINCTRL_DRIVE_STRENGTH_HI			(0x3 << 5)
298c2ecf20Sopenharmony_ci
308c2ecf20Sopenharmony_ci#define AT91_PINCTRL_SLEWRATE_ENA	(0x0 << 9)
318c2ecf20Sopenharmony_ci#define AT91_PINCTRL_SLEWRATE_DIS	(0x1 << 9)
328c2ecf20Sopenharmony_ci
338c2ecf20Sopenharmony_ci#define AT91_PIOA	0
348c2ecf20Sopenharmony_ci#define AT91_PIOB	1
358c2ecf20Sopenharmony_ci#define AT91_PIOC	2
368c2ecf20Sopenharmony_ci#define AT91_PIOD	3
378c2ecf20Sopenharmony_ci#define AT91_PIOE	4
388c2ecf20Sopenharmony_ci
398c2ecf20Sopenharmony_ci#define AT91_PERIPH_GPIO	0
408c2ecf20Sopenharmony_ci#define AT91_PERIPH_A		1
418c2ecf20Sopenharmony_ci#define AT91_PERIPH_B		2
428c2ecf20Sopenharmony_ci#define AT91_PERIPH_C		3
438c2ecf20Sopenharmony_ci#define AT91_PERIPH_D		4
448c2ecf20Sopenharmony_ci
458c2ecf20Sopenharmony_ci#define ATMEL_PIO_DRVSTR_LO	1
468c2ecf20Sopenharmony_ci#define ATMEL_PIO_DRVSTR_ME	2
478c2ecf20Sopenharmony_ci#define ATMEL_PIO_DRVSTR_HI	3
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci#endif /* __DT_BINDINGS_AT91_PINCTRL_H__ */
50