bur_common.h 592 B

12345678910111213141516171819202122232425
  1. /*
  2. * bur_comon.h
  3. *
  4. * common board information header for B&R boards
  5. *
  6. * Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at>
  7. * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #ifndef _BUR_COMMON_H_
  12. #define _BUR_COMMON_H_
  13. #include <../../../drivers/video/am335x-fb.h>
  14. int load_lcdtiming(struct am335x_lcdpanel *panel);
  15. void br_summaryscreen(void);
  16. void pmicsetup(u32 mpupll);
  17. void enable_uart0_pin_mux(void);
  18. void enable_i2c_pin_mux(void);
  19. void enable_board_pin_mux(void);
  20. int board_eth_init(bd_t *bis);
  21. #endif