minnowmax.h 613 B

123456789101112131415161718192021222324252627282930
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015 Google, Inc
  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. #define CONFIG_MISC_INIT_R
  13. #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,serial\0" \
  14. "stdout=vidconsole,serial\0" \
  15. "stderr=vidconsole,serial\0" \
  16. "usb_pgood_delay=40\0"
  17. #define VIDEO_IO_OFFSET 0
  18. #define CONFIG_X86EMU_RAW_IO
  19. #define CONFIG_ENV_SECT_SIZE 0x1000
  20. #define CONFIG_ENV_OFFSET 0x006ef000
  21. #endif /* __CONFIG_H */