at91_common.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2007-2008
  4. * Stelian Pop <stelian@popies.net>
  5. * Lead Tech Design <www.leadtechdesign.com>
  6. */
  7. #ifndef AT91_COMMON_H
  8. #define AT91_COMMON_H
  9. void at91_can_hw_init(void);
  10. void at91_gmac_hw_init(void);
  11. void at91_macb_hw_init(void);
  12. void at91_mci_hw_init(void);
  13. void at91_serial0_hw_init(void);
  14. void at91_serial1_hw_init(void);
  15. void at91_serial2_hw_init(void);
  16. void at91_seriald_hw_init(void);
  17. void at91_spi0_hw_init(unsigned long cs_mask);
  18. void at91_spi1_hw_init(unsigned long cs_mask);
  19. void at91_udp_hw_init(void);
  20. void at91_uhp_hw_init(void);
  21. void at91_lcd_hw_init(void);
  22. void at91_plla_init(u32 pllar);
  23. void at91_pllb_init(u32 pllar);
  24. void at91_mck_init(u32 mckr);
  25. void at91_mck_init_down(u32 mckr);
  26. void at91_pmc_init(void);
  27. void mem_init(void);
  28. void at91_phy_reset(void);
  29. void at91_sdram_hw_init(void);
  30. void at91_mck_init(u32 mckr);
  31. void at91_spl_board_init(void);
  32. void at91_disable_wdt(void);
  33. void matrix_init(void);
  34. void redirect_int_from_saic_to_aic(void);
  35. void configure_2nd_sram_as_l2_cache(void);
  36. int at91_set_ethaddr(int offset);
  37. int at91_video_show_board_info(void);
  38. #endif /* AT91_COMMON_H */