diff options
author | Hannes Petermaier <oe5hpm@oevsv.at> | 2014-02-07 07:07:36 (GMT) |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-21 18:55:40 (GMT) |
commit | 893c04e17cf74db79e052e831fe5de8323cf2aae (patch) | |
tree | fe6ecf68f46eb847064e64d5aa7af57014368be7 /board/BuR/common/bur_common.h | |
parent | da4105dfcd27c20e5cf4eb750f88938f56620d37 (diff) | |
download | u-boot-fsl-qoriq-893c04e17cf74db79e052e831fe5de8323cf2aae.tar.xz |
board: Add support for B&R T-Series Motherboard
Adds support for Bernecker & Rainer Industrieelektronik GmbH T-Series
Motherboard, using TI's AM3352 SoC.
Most of code is derived from TI's AM335x_EVM
Signed-off-by: Hannes Petermaier <oe5hpm@oevsv.at>
Diffstat (limited to 'board/BuR/common/bur_common.h')
-rw-r--r-- | board/BuR/common/bur_common.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/board/BuR/common/bur_common.h b/board/BuR/common/bur_common.h new file mode 100644 index 0000000..15225b0 --- /dev/null +++ b/board/BuR/common/bur_common.h @@ -0,0 +1,22 @@ +/* + * bur_comon.h + * + * common board information header for B&R boards + * + * Copyright (C) 2013 Hannes Petermaier <oe5hpm@oevsv.at> + * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef _BUR_COMMON_H_ +#define _BUR_COMMON_H_ + +void blink(u32 blinks, u32 intervall, u32 pin); +void pmicsetup(u32 mpupll); +void enable_uart0_pin_mux(void); +void enable_i2c0_pin_mux(void); +void enable_board_pin_mux(void); +int board_eth_init(bd_t *bis); + +#endif |