Kconfig 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  4. if VENDOR_GOOGLE
  5. choice
  6. prompt "Mainboard model"
  7. optional
  8. config TARGET_CHROMEBOOK_LINK
  9. bool "Chromebook link"
  10. help
  11. This is the Chromebook Pixel released in 2013. It uses an Intel
  12. i5 Ivybridge which is a die-shrink of Sandybridge, with 4GB of
  13. SDRAM. It has a Panther Point platform controller hub, PCIe
  14. WiFi and Bluetooth. It also includes a 720p webcam, USB SD
  15. reader, microphone and speakers, display port and 32GB SATA
  16. solid state drive. There is a Chrome OS EC connected on LPC,
  17. and it provides a 2560x1700 high resolution touch-enabled LCD
  18. display.
  19. config TARGET_CHROMEBOOK_LINK64
  20. bool "Chromebook link 64-bit"
  21. help
  22. This is the Chromebook Pixel released in 2013. With this config
  23. U-Boot is built as a 64-bit binary. This allows testing while this
  24. feature is being completed.
  25. config TARGET_CHROMEBOX_PANTHER
  26. bool "Chromebox panther (not available)"
  27. help
  28. Note: At present this must be used with coreboot. See README.x86
  29. for instructions.
  30. This is the Asus Chromebox CN60 released in 2014. It uses an Intel
  31. Haswell Celeron 2955U Dual Core CPU with 2GB of SDRAM. It has a
  32. Lynx Point platform controller hub, PCIe WiFi and Bluetooth. It also
  33. includes a USB SD reader, four USB3 ports, display port and HDMI
  34. video output and a 16GB SATA solid state drive. There is no Chrome
  35. OS EC on this model.
  36. config TARGET_CHROMEBOOK_SAMUS
  37. bool "Chromebook samus"
  38. help
  39. This is the Chromebook Pixel released in 2015. It uses an Intel
  40. Broadwell U Core i5 or Core i7 CPU with either 8GB or 16GB of
  41. LPDDR3 SDRAM. It has PCIe WiFi and Bluetooth. It also includes a
  42. 720p webcam, USB SD reader, microphone and speakers, 2 USB 3 Type
  43. C ports which can support charging and up to a 4K external display.
  44. There is a solid state drive, either 32GB or 64GB. There is a
  45. Chrome OS EC connected on LPC, and it provides a 2560x1700 high
  46. resolution touch-enabled LCD display.
  47. endchoice
  48. source "board/google/chromebook_link/Kconfig"
  49. source "board/google/chromebox_panther/Kconfig"
  50. source "board/google/chromebook_samus/Kconfig"
  51. endif