2013-04-04 22:27:58 +00:00
|
|
|
/*
|
2013-07-25 07:27:38 +00:00
|
|
|
* IGEP COM AQUILA boards information header
|
2013-04-04 22:27:58 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2013, ISEE 2007 SL - http://www.isee.biz/
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2013-04-04 22:27:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BOARD_H_
|
|
|
|
#define _BOARD_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We must be able to enable uart0, for initial output. We then have a
|
|
|
|
* main pinmux function that can be overridden to enable all other pinmux that
|
|
|
|
* is required on the board.
|
|
|
|
*/
|
|
|
|
void enable_uart0_pin_mux(void);
|
|
|
|
void enable_board_pin_mux(void);
|
|
|
|
#endif
|