xref: /openbmc/u-boot/arch/x86/cpu/baytrail/Kconfig (revision de766105)
1# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (C) 2015 Google, Inc
4
5config INTEL_BAYTRAIL
6	bool
7	select HAVE_FSP
8	select ARCH_MISC_INIT
9	select CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED
10	imply HAVE_INTEL_ME
11	imply ENABLE_MRC_CACHE
12	imply AHCI_PCI
13	imply ICH_SPI
14	imply INTEL_ICH6_GPIO
15	imply PINCTRL_ICH6
16	imply MMC
17	imply MMC_PCI
18	imply MMC_SDHCI
19	imply MMC_SDHCI_SDMA
20	imply SCSI
21	imply SCSI_AHCI
22	imply SPI_FLASH
23	imply SYS_NS16550
24	imply USB
25	imply USB_EHCI_HCD
26	imply USB_XHCI_HCD
27	imply VIDEO_VESA
28
29if INTEL_BAYTRAIL
30config INTERNAL_UART
31	bool "Enable the SoC integrated legacy UART"
32	help
33	  There is a legacy UART integrated into the Bay Trail SoC.
34	  A maximum baud rate of 115200 bps is supported. For this
35	  reason, it is recommended that the UART port be used for
36	  debug purposes only, eg: U-Boot console.
37
38config DEBUG_UART
39	bool
40	select DEBUG_UART_BOARD_INIT
41
42endif
43