bmips_common.h 674 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
  4. */
  5. #ifndef __CONFIG_BMIPS_COMMON_H
  6. #define __CONFIG_BMIPS_COMMON_H
  7. #include <linux/sizes.h>
  8. /* ETH */
  9. #define CONFIG_PHY_RESET_DELAY 20
  10. #define CONFIG_SYS_RX_ETH_BUFFER 6
  11. /* UART */
  12. #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \
  13. 230400, 500000, 1500000 }
  14. /* Memory usage */
  15. #define CONFIG_SYS_MAXARGS 24
  16. #define CONFIG_SYS_MALLOC_LEN SZ_2M
  17. #define CONFIG_SYS_BOOTPARAMS_LEN SZ_128K
  18. #define CONFIG_SYS_CBSIZE SZ_512
  19. /* U-Boot */
  20. #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
  21. #endif /* __CONFIG_BMIPS_COMMON_H */