Kconfig 1.9 KB

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