galileo.h 626 B

123456789101112131415161718192021222324252627282930
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  4. */
  5. /*
  6. * board/config.h - configuration options, board specific
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. #include <configs/x86-common.h>
  11. #define CONFIG_SYS_MONITOR_LEN (1 << 20)
  12. /* ns16550 UART is memory-mapped in Quark SoC */
  13. #undef CONFIG_SYS_NS16550_PORT_MAPPED
  14. #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \
  15. "stdout=serial\0" \
  16. "stderr=serial\0"
  17. /* 10/100M Ethernet support */
  18. #define CONFIG_DESIGNWARE_ETH
  19. #define CONFIG_DW_ALTDESCRIPTOR
  20. /* Environment configuration */
  21. #endif /* __CONFIG_H */