sun50i.h 478 B

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