xref: /OK3568_Linux_fs/u-boot/arch/arm/mach-socfpga/include/mach/pinmux.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright (C) 2016-2017 Intel Corporation <www.intel.com>
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * SPDX-License-Identifier:	GPL-2.0
5*4882a593Smuzhiyun  */
6*4882a593Smuzhiyun 
7*4882a593Smuzhiyun #ifndef _PINMUX_H_
8*4882a593Smuzhiyun #define _PINMUX_H_
9*4882a593Smuzhiyun 
10*4882a593Smuzhiyun #define PINMUX_UART		0xD
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #ifndef __ASSEMBLY__
13*4882a593Smuzhiyun int config_dedicated_pins(const void *blob);
14*4882a593Smuzhiyun int config_pins(const void *blob, const char *pin_grp);
15*4882a593Smuzhiyun #endif
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #endif /* _PINMUX_H_ */
18