bmips_bcm6338.h 670 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
  4. */
  5. #ifndef __CONFIG_BMIPS_BCM6338_H
  6. #define __CONFIG_BMIPS_BCM6338_H
  7. #include <linux/sizes.h>
  8. /* CPU */
  9. #define CONFIG_SYS_MIPS_TIMER_FREQ 120000000
  10. /* RAM */
  11. #define CONFIG_SYS_SDRAM_BASE 0x80000000
  12. /* U-Boot */
  13. #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
  14. #if defined(CONFIG_BMIPS_BOOT_RAM)
  15. #define CONFIG_SKIP_LOWLEVEL_INIT
  16. #define CONFIG_SYS_INIT_SP_OFFSET SZ_8K
  17. #endif
  18. #define CONFIG_SYS_FLASH_BASE 0xbfc00000
  19. #define CONFIG_SYS_FLASH_EMPTY_INFO
  20. #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
  21. #endif /* __CONFIG_BMIPS_BCM6338_H */