sun50i.h 561 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Configuration settings for the Allwinner A64 (sun50i) CPU
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __CONFIG_H
  7. #define __CONFIG_H
  8. /*
  9. * A64 specific configuration
  10. */
  11. #ifdef CONFIG_USB_EHCI
  12. #define CONFIG_USB_EHCI_SUNXI
  13. #define CONFIG_USB_MAX_CONTROLLER_COUNT 1
  14. #endif
  15. #define CONFIG_SUNXI_USB_PHYS 1
  16. #define COUNTER_FREQUENCY CONFIG_TIMER_CLK_FREQ
  17. #define GICD_BASE 0x1c81000
  18. #define GICC_BASE 0x1c82000
  19. /*
  20. * Include common sunxi configuration where most the settings are
  21. */
  22. #include <configs/sunxi-common.h>
  23. #endif /* __CONFIG_H */