2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-02-07 07:07:36 +00:00
|
|
|
/*
|
|
|
|
* bur_comon.h
|
|
|
|
*
|
|
|
|
* common board information header for B&R boards
|
|
|
|
*
|
2015-05-28 13:41:12 +00:00
|
|
|
* Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at>
|
2014-02-07 07:07:36 +00:00
|
|
|
* Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BUR_COMMON_H_
|
|
|
|
#define _BUR_COMMON_H_
|
|
|
|
|
2015-02-03 12:22:26 +00:00
|
|
|
#include <../../../drivers/video/am335x-fb.h>
|
|
|
|
|
|
|
|
int load_lcdtiming(struct am335x_lcdpanel *panel);
|
|
|
|
void br_summaryscreen(void);
|
2019-01-31 08:24:45 +00:00
|
|
|
void pmicsetup(u32 mpupll, unsigned int bus);
|
2014-02-07 07:07:36 +00:00
|
|
|
void enable_uart0_pin_mux(void);
|
2015-03-19 09:43:15 +00:00
|
|
|
void enable_i2c_pin_mux(void);
|
2014-02-07 07:07:36 +00:00
|
|
|
void enable_board_pin_mux(void);
|
|
|
|
int board_eth_init(bd_t *bis);
|
|
|
|
|
2019-04-10 12:13:13 +00:00
|
|
|
int brdefaultip_setup(int bus, int chip);
|
|
|
|
|
2014-02-07 07:07:36 +00:00
|
|
|
#endif
|