bmips_bcm6318.h 742 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com>
  4. */
  5. #ifndef __CONFIG_BMIPS_BCM6318_H
  6. #define __CONFIG_BMIPS_BCM6318_H
  7. #include <linux/sizes.h>
  8. /* CPU */
  9. #define CONFIG_SYS_MIPS_TIMER_FREQ 166500000
  10. /* RAM */
  11. #define CONFIG_SYS_SDRAM_BASE 0x80000000
  12. /* USB */
  13. #define CONFIG_EHCI_DESC_BIG_ENDIAN
  14. #define CONFIG_EHCI_MMIO_BIG_ENDIAN
  15. #define CONFIG_SYS_OHCI_SWAP_REG_ACCESS
  16. #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
  17. #define CONFIG_USB_OHCI_NEW
  18. /* U-Boot */
  19. #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + SZ_1M
  20. #if defined(CONFIG_BMIPS_BOOT_RAM)
  21. #define CONFIG_SKIP_LOWLEVEL_INIT
  22. #define CONFIG_SYS_INIT_SP_OFFSET SZ_8K
  23. #endif
  24. #endif /* __CONFIG_BMIPS_BCM6318_H */