blob: 57a3a9624f2e41a038eefc820d59a7f9b07936c8 [file] [log] [blame]
Simon Glass3a1a18f2015-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 Glassb4302582015-08-04 12:34:02 -06009 select HAVE_FSP if !EFI
Bin Meng3612b1e2017-07-30 06:23:12 -070010 select ARCH_MISC_INIT if !EFI
Simon Glass91c868f2017-07-23 21:19:45 -060011 imply ENV_IS_IN_SPI_FLASH
Bin Meng1e452b42017-07-30 06:23:10 -070012 imply HAVE_INTEL_ME if !EFI
Bin Meng67f99f92017-07-30 06:23:14 -070013 imply ENABLE_MRC_CACHE
Bin Meng377656b2016-06-14 21:33:23 -070014
15if INTEL_BAYTRAIL
16config INTERNAL_UART
17 bool "Enable the SoC integrated legacy UART"
18 help
19 There is a legacy UART integrated into the Bay Trail SoC.
20 A maximum baud rate of 115200 bps is supported. For this
21 reason, it is recommended that the UART port be used for
22 debug purposes only, eg: U-Boot console.
23
Bin Meng37d10232017-06-01 03:41:13 -070024config DEBUG_UART
25 bool
26 select DEBUG_UART_BOARD_INIT
27
Bin Meng377656b2016-06-14 21:33:23 -070028endif