bmips_bcm3380.h 556 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
  4. */
  5. #ifndef __CONFIG_BMIPS_BCM3380_H
  6. #define __CONFIG_BMIPS_BCM3380_H
  7. /* CPU */
  8. #define CONFIG_SYS_MIPS_TIMER_FREQ 166500000
  9. /* RAM */
  10. #define CONFIG_NR_DRAM_BANKS 1
  11. #define CONFIG_SYS_SDRAM_BASE 0x80000000
  12. /* U-Boot */
  13. #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + 0x100000
  14. #if defined(CONFIG_BMIPS_BOOT_RAM)
  15. #define CONFIG_SKIP_LOWLEVEL_INIT
  16. #define CONFIG_SYS_INIT_SP_OFFSET 0x2000
  17. #endif
  18. #endif /* __CONFIG_BMIPS_BCM3380_H */