ap143.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com>
  4. */
  5. #ifndef __CONFIG_H
  6. #define __CONFIG_H
  7. #define CONFIG_SYS_HZ 1000
  8. #define CONFIG_SYS_MHZ 325
  9. #define CONFIG_SYS_MIPS_TIMER_FREQ (CONFIG_SYS_MHZ * 1000000)
  10. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
  11. #define CONFIG_SYS_MALLOC_LEN 0x40000
  12. #define CONFIG_SYS_BOOTPARAMS_LEN 0x20000
  13. #define CONFIG_SYS_SDRAM_BASE 0x80000000
  14. #define CONFIG_SYS_LOAD_ADDR 0x81000000
  15. #define CONFIG_SYS_INIT_RAM_ADDR 0xbd000000
  16. #define CONFIG_SYS_INIT_RAM_SIZE 0x2000
  17. #define CONFIG_SYS_INIT_SP_ADDR \
  18. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_RAM_SIZE - 1)
  19. /*
  20. * Serial Port
  21. */
  22. #define CONFIG_SYS_NS16550_CLK 25000000
  23. #define CONFIG_SYS_BAUDRATE_TABLE \
  24. {9600, 19200, 38400, 57600, 115200}
  25. #define CONFIG_BOOTCOMMAND "sf probe;" \
  26. "mtdparts default;" \
  27. "bootm 0x9f680000"
  28. /* Miscellaneous configurable options */
  29. /*
  30. * Diagnostics
  31. */
  32. #define CONFIG_SYS_MEMTEST_START 0x80100000
  33. #define CONFIG_SYS_MEMTEST_END 0x83f00000
  34. #endif /* __CONFIG_H */