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