repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
20 lines
449 B
C
20 lines
449 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* MIO pin configuration defines for Xilinx ZynqMP
|
|
*
|
|
* Copyright (C) 2020 Xilinx, Inc.
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_PINCTRL_ZYNQMP_H
|
|
#define _DT_BINDINGS_PINCTRL_ZYNQMP_H
|
|
|
|
/* Bit value for different voltage levels */
|
|
#define IO_STANDARD_LVCMOS33 0
|
|
#define IO_STANDARD_LVCMOS18 1
|
|
|
|
/* Bit values for Slew Rates */
|
|
#define SLEW_RATE_FAST 0
|
|
#define SLEW_RATE_SLOW 1
|
|
|
|
#endif /* _DT_BINDINGS_PINCTRL_ZYNQMP_H */
|