board.h 923 B

123456789101112131415161718192021222324252627
  1. /*
  2. * IGEP COM AQUILA/CYGNUS boards information header
  3. *
  4. * Copyright (C) 2013, ISEE 2007 SL - http://www.isee.biz/
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #ifndef _BOARD_H_
  17. #define _BOARD_H_
  18. /*
  19. * We must be able to enable uart0, for initial output. We then have a
  20. * main pinmux function that can be overridden to enable all other pinmux that
  21. * is required on the board.
  22. */
  23. void enable_uart0_pin_mux(void);
  24. void enable_board_pin_mux(void);
  25. #endif