chromebook_coral.h 738 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright 2019 Google LLC
  4. */
  5. /*
  6. * board/config.h - configuration options, board-specific
  7. */
  8. #ifndef __CONFIG_H
  9. #define __CONFIG_H
  10. #define CONFIG_BOOTCOMMAND \
  11. "fatload mmc 1:c 1000000 syslinux/vmlinuz.A; zboot 1000000"
  12. #include <configs/x86-common.h>
  13. #include <configs/x86-chromebook.h>
  14. #undef CONFIG_STD_DEVICES_SETTINGS
  15. #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \
  16. "stdout=vidconsole,serial\0" \
  17. "stderr=vidconsole,serial\0"
  18. #define CONFIG_ENV_SECT_SIZE 0x1000
  19. #define CONFIG_ENV_OFFSET 0x003f8000
  20. #define CONFIG_TPL_TEXT_BASE 0xffff8000
  21. #define CONFIG_SYS_NS16550_MEM32
  22. #undef CONFIG_SYS_NS16550_PORT_MAPPED
  23. #endif /* __CONFIG_H */