xref: /OK3568_Linux_fs/u-boot/board/phytec/pcm051/board.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * board.h
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Phytec phyCORE-AM335x (pcm051) boards information header
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * Copyright (C) 2013, Lemonage Software GmbH
7*4882a593Smuzhiyun  * Author Lars Poeschel <poeschel@lemonage.de>
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * SPDX-License-Identifier:	GPL-2.0+
10*4882a593Smuzhiyun  */
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #ifndef _BOARD_H_
13*4882a593Smuzhiyun #define _BOARD_H_
14*4882a593Smuzhiyun 
15*4882a593Smuzhiyun /*
16*4882a593Smuzhiyun  * We have three pin mux functions that must exist.  We must be able to enable
17*4882a593Smuzhiyun  * uart0, for initial output and i2c0 to read the main EEPROM.  We then have a
18*4882a593Smuzhiyun  * main pinmux function that can be overridden to enable all other pinmux that
19*4882a593Smuzhiyun  * is required on the board.
20*4882a593Smuzhiyun  */
21*4882a593Smuzhiyun void enable_uart0_pin_mux(void);
22*4882a593Smuzhiyun void enable_i2c0_pin_mux(void);
23*4882a593Smuzhiyun void enable_board_pin_mux(void);
24*4882a593Smuzhiyun void enable_cbmux_pin_mux(void);
25*4882a593Smuzhiyun #endif
26