bayleybay.h 765 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. /*
  7. * board/config.h - configuration options, board specific
  8. */
  9. #ifndef __CONFIG_H
  10. #define __CONFIG_H
  11. #include <configs/x86-common.h>
  12. #define CONFIG_SYS_MONITOR_LEN (1 << 20)
  13. #define CONFIG_ARCH_MISC_INIT
  14. #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,usbkbd\0" \
  15. "stdout=serial,vidconsole\0" \
  16. "stderr=serial,vidconsole\0"
  17. #define CONFIG_SCSI_DEV_LIST \
  18. {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SATA}, \
  19. {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SATA_ALT}
  20. #define CONFIG_GENERIC_MMC
  21. /* Environment configuration */
  22. #define CONFIG_ENV_SECT_SIZE 0x1000
  23. #define CONFIG_ENV_OFFSET 0x006ff000
  24. #endif /* __CONFIG_H */