ap152.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2018 Rosy Song <rosysong@rosinson.com>
  4. */
  5. #ifndef __CONFIG_H
  6. #define __CONFIG_H
  7. #define CONFIG_SYS_HZ 1000
  8. #define CONFIG_SYS_MHZ 375
  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 0x9f060000"
  28. #define CONFIG_ENV_SPI_MAX_HZ 25000000
  29. /* Miscellaneous configurable options */
  30. /*
  31. * Diagnostics
  32. */
  33. #define CONFIG_SYS_MEMTEST_START 0x80100000
  34. #define CONFIG_SYS_MEMTEST_END 0x83f00000
  35. #endif /* __CONFIG_H */