bur_common.h 704 B

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