chromebook_link.h 569 B

12345678910111213141516171819202122232425262728
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2011 The Chromium OS Authors.
  4. * (C) Copyright 2008
  5. * Graeme Russ, graeme.russ@gmail.com.
  6. */
  7. /*
  8. * board/config.h - configuration options, board specific
  9. */
  10. #ifndef __CONFIG_H
  11. #define __CONFIG_H
  12. #include <configs/x86-common.h>
  13. #include <configs/x86-chromebook.h>
  14. #define CONFIG_ENV_SECT_SIZE 0x1000
  15. #define CONFIG_ENV_OFFSET 0x003f8000
  16. #define CONFIG_SPL_TEXT_BASE 0xfffd0000
  17. #define BOOT_DEVICE_SPI 10
  18. #define CONFIG_SPL_BOARD_LOAD_IMAGE
  19. #define BOOT_DEVICE_BOARD 11
  20. #endif /* __CONFIG_H */