summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/block/uart
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@chromium.org>2017-08-04 16:12:19 -0700
committerFurquan Shaikh <furquan@google.com>2017-08-10 16:25:05 +0000
commita8198eb9ad1daea7b88ffa1d995907783a7c13c3 (patch)
tree2519bfef060373e47aca2e80e2d24d0e5cd54d57 /src/soc/intel/common/block/uart
parent3b90b5f1299053e87e718501f6c9be50dd343686 (diff)
downloadcoreboot-a8198eb9ad1daea7b88ffa1d995907783a7c13c3.tar.gz
coreboot-a8198eb9ad1daea7b88ffa1d995907783a7c13c3.tar.bz2
coreboot-a8198eb9ad1daea7b88ffa1d995907783a7c13c3.zip
soc/intel/common/uart: Add support for enabling UART debug controller on resume
It has been observed on a number of platforms (baytrail, kaby lake) that if serial console is not enabled in coreboot, but is enabled in kernel (v4.4), then on resume kernel hangs. In order to fix this, add support for enabling UART debug port controller on resume. In order to decide whether UART debug port controller should be enabled in ramstage, following things are checked in given order: 1. If coreboot has serial console enabled, there is no need to re-initialize the controller. 2. This special action is taken only for UART debug port controller. 3. If boot is not S3 resume, then initialization is skipped. 4. Callback into SoC to check if it wants to initialize the controller. If all the above conditions are met, then UART debug port controller is initialized and taken out of reset. BUG=b:64030366 TEST=Verified with the entire patchset series that: 1. If coreboot does not have serial console enabled, but Linux kernel has console enabled, then on resume, coreboot initializes UART debug port controller. 2. If coreboot and Linux do not have serial console enabled, then coreboot does not initialize UART debug port controller. 3. If coreboot has serial console enabled, there is no change in behavior. Change-Id: Ic936ac2a787fdc83935103c3ce4ed8f124a97a89 Signed-off-by: Furquan Shaikh <furquan@chromium.org> Reviewed-on: https://review.coreboot.org/20835 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/soc/intel/common/block/uart')
-rw-r--r--src/soc/intel/common/block/uart/Makefile.inc1
-rw-r--r--src/soc/intel/common/block/uart/uart.c97
2 files changed, 95 insertions, 3 deletions
diff --git a/src/soc/intel/common/block/uart/Makefile.inc b/src/soc/intel/common/block/uart/Makefile.inc
index 1a2c8be933e3..348b15390761 100644
--- a/src/soc/intel/common/block/uart/Makefile.inc
+++ b/src/soc/intel/common/block/uart/Makefile.inc
@@ -1,2 +1,3 @@
bootblock-$(CONFIG_SOC_INTEL_COMMON_BLOCK_UART) += uart.c
ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_UART) += uart.c
+smm-$(CONFIG_SOC_INTEL_COMMON_BLOCK_UART) += uart.c
diff --git a/src/soc/intel/common/block/uart/uart.c b/src/soc/intel/common/block/uart/uart.c
index be30464b134d..7685415d942b 100644
--- a/src/soc/intel/common/block/uart/uart.c
+++ b/src/soc/intel/common/block/uart/uart.c
@@ -12,13 +12,18 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
+
+#include <arch/acpi.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_def.h>
#include <device/pci_ids.h>
+#include <device/pci_ops.h>
#include <intelblocks/lpss.h>
#include <intelblocks/uart.h>
+#define UART_PCI_ENABLE (PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER)
+
static void uart_lpss_init(uintptr_t baseaddr)
{
/* Take UART out of reset */
@@ -35,11 +40,40 @@ void uart_common_init(device_t dev, uintptr_t baseaddr)
pci_write_config32(dev, PCI_BASE_ADDRESS_0, baseaddr);
/* Enable memory access and bus master */
- pci_write_config32(dev, PCI_COMMAND,
- PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
+ pci_write_config32(dev, PCI_COMMAND, UART_PCI_ENABLE);
uart_lpss_init(baseaddr);
+}
+
+__attribute__((weak)) device_t pch_uart_get_debug_controller(void)
+{
+ /*
+ * device_t can either be a pointer to struct device (e.g. ramstage) or
+ * a simple integer (e.g. SMM) depending upon whether __SIMPLE_DEVICE__
+ * is defined for the stage. Thus, the return requires additional
+ * casting to uintptr_t.
+ */
+ return (device_t)(uintptr_t)NULL;
+}
+
+bool uart_debug_controller_is_initialized(void)
+{
+ device_t dev;
+ uintptr_t base;
+ dev = pch_uart_get_debug_controller();
+ if (!dev)
+ return false;
+
+ base = pci_read_config32(dev, PCI_BASE_ADDRESS_0) & ~0xFFF;
+ if (!base)
+ return false;
+
+ if ((pci_read_config32(dev, PCI_COMMAND) & UART_PCI_ENABLE)
+ != UART_PCI_ENABLE)
+ return false;
+
+ return !lpss_is_controller_in_reset(base);
}
#if ENV_RAMSTAGE
@@ -49,10 +83,67 @@ __attribute__((weak)) void pch_uart_read_resources(struct device *dev)
pci_dev_read_resources(dev);
}
+__attribute__((weak)) bool pch_uart_init_debug_controller_on_resume(void)
+{
+ /* By default, do not initialize controller. */
+ return false;
+}
+
+bool uart_is_debug_controller(struct device *dev)
+{
+ return dev == pch_uart_get_debug_controller();
+}
+
+/*
+ * This is a workaround to enable UART controller for the debug port if:
+ * 1. CONSOLE_SERIAL is not enabled in coreboot, and
+ * 2. This boot is S3 resume, and
+ * 3. SoC wants to initialize debug UART controller.
+ *
+ * This workaround is required because Linux kernel hangs on resume if console
+ * is not enabled in coreboot, but it is enabled in kernel and not suspended.
+ */
+static bool uart_controller_needs_init(struct device *dev)
+{
+ /*
+ * If coreboot has CONSOLE_SERIAL enabled, the skip re-initalizing
+ * controller here.
+ */
+ if (IS_ENABLED(CONFIG_CONSOLE_SERIAL))
+ return false;
+
+ /* If this device does not correspond to debug port, then skip. */
+ if (!uart_is_debug_controller(dev))
+ return false;
+
+ /* Initialize UART controller only on S3 resume. */
+ if (!acpi_is_wakeup_s3())
+ return false;
+
+ /*
+ * Call SoC specific routine to confirm it wants to initialize
+ * controller.
+ */
+ return pch_uart_init_debug_controller_on_resume();
+}
+
+static void uart_common_enable_resources(struct device *dev)
+{
+ pci_dev_enable_resources(dev);
+
+ if (uart_controller_needs_init(dev)) {
+ uintptr_t base;
+
+ base = pci_read_config32(dev, PCI_BASE_ADDRESS_0) & ~0xFFF;
+ if (base)
+ uart_lpss_init(base);
+ }
+}
+
static struct device_operations device_ops = {
.read_resources = &pch_uart_read_resources,
.set_resources = &pci_dev_set_resources,
- .enable_resources = &pci_dev_enable_resources,
+ .enable_resources = &uart_common_enable_resources,
};
static const unsigned short pci_device_ids[] = {