board.h 476 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * board.h
  4. *
  5. * (C) Copyright 2013 Siemens Schweiz AG
  6. * (C) Heiko Schocher, DENX Software Engineering, hs@denx.de.
  7. *
  8. * Based on:
  9. * TI AM335x boards information header
  10. * u-boot:/board/ti/am335x/board.h
  11. *
  12. * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
  13. */
  14. #ifndef _BOARD_H_
  15. #define _BOARD_H_
  16. void enable_uart0_pin_mux(void);
  17. void enable_i2c0_pin_mux(void);
  18. void enable_board_pin_mux(void);
  19. #endif