at91_common.h 631 B

12345678910111213141516171819202122232425
  1. /*
  2. * (C) Copyright 2007-2008
  3. * Stelian Pop <stelian@popies.net>
  4. * Lead Tech Design <www.leadtechdesign.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef AT91_COMMON_H
  9. #define AT91_COMMON_H
  10. void at91_can_hw_init(void);
  11. void at91_gmac_hw_init(void);
  12. void at91_macb_hw_init(void);
  13. void at91_mci_hw_init(void);
  14. void at91_serial0_hw_init(void);
  15. void at91_serial1_hw_init(void);
  16. void at91_serial2_hw_init(void);
  17. void at91_seriald_hw_init(void);
  18. void at91_spi0_hw_init(unsigned long cs_mask);
  19. void at91_spi1_hw_init(unsigned long cs_mask);
  20. void at91_uhp_hw_init(void);
  21. void at91_lcd_hw_init(void);
  22. #endif /* AT91_COMMON_H */