blob: 9f4947d116e41c9ac51adfaec0f96d224c3c7727 [file] [log] [blame]
Simon Glass4a56f102015-01-27 22:13:47 -07001#
2# Copyright (C) 2015 Google, Inc
3#
4# SPDX-License-Identifier: GPL-2.0+
5#
6
7config INTEL_BAYTRAIL
8 bool
Simon Glassa815df72015-08-04 12:34:02 -06009 select HAVE_FSP if !EFI
Bin Mengb0d42d72017-07-30 06:23:12 -070010 select ARCH_MISC_INIT if !EFI
Bin Mengd3935ff2017-07-30 06:23:10 -070011 imply HAVE_INTEL_ME if !EFI
Bin Meng1949a9a2017-07-30 06:23:14 -070012 imply ENABLE_MRC_CACHE
Bin Meng2c00e032017-07-30 06:23:17 -070013 imply ENV_IS_IN_SPI_FLASH
14 imply ICH_SPI
15 imply MMC
16 imply MMC_PCI
17 imply MMC_SDHCI
18 imply MMC_SDHCI_SDMA
19 imply SCSI
20 imply SPI_FLASH
21 imply SYS_NS16550
22 imply VIDEO_VESA
Bin Mengfe8d45d2016-06-14 21:33:23 -070023
24if INTEL_BAYTRAIL
25config INTERNAL_UART
26 bool "Enable the SoC integrated legacy UART"
27 help
28 There is a legacy UART integrated into the Bay Trail SoC.
29 A maximum baud rate of 115200 bps is supported. For this
30 reason, it is recommended that the UART port be used for
31 debug purposes only, eg: U-Boot console.
32
Bin Meng273d0ec2017-06-01 03:41:13 -070033config DEBUG_UART
34 bool
35 select DEBUG_UART_BOARD_INIT
36
Bin Mengfe8d45d2016-06-14 21:33:23 -070037endif