2019-12-07 04:42:58 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* Special driver to handle of-platdata
|
|
|
|
*
|
|
|
|
* Copyright 2019 Google LLC
|
|
|
|
*
|
|
|
|
* Some code from coreboot lpss.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <dt-structs.h>
|
2020-02-03 14:36:16 +00:00
|
|
|
#include <malloc.h>
|
2019-12-07 04:42:58 +00:00
|
|
|
#include <ns16550.h>
|
|
|
|
#include <spl.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/pci.h>
|
|
|
|
#include <asm/lpss.h>
|
2020-12-23 02:30:28 +00:00
|
|
|
#include <dm/device-internal.h>
|
2020-12-19 17:40:05 +00:00
|
|
|
#include <asm/arch/uart.h>
|
2019-12-07 04:42:58 +00:00
|
|
|
|
|
|
|
/* Low-power Subsystem (LPSS) clock register */
|
|
|
|
enum {
|
|
|
|
LPSS_CLOCK_CTL_REG = 0x200,
|
|
|
|
LPSS_CNT_CLOCK_EN = 1,
|
|
|
|
LPSS_CNT_CLK_UPDATE = 1U << 31,
|
|
|
|
LPSS_CLOCK_DIV_N_SHIFT = 16,
|
|
|
|
LPSS_CLOCK_DIV_N_MASK = 0x7fff << LPSS_CLOCK_DIV_N_SHIFT,
|
|
|
|
LPSS_CLOCK_DIV_M_SHIFT = 1,
|
|
|
|
LPSS_CLOCK_DIV_M_MASK = 0x7fff << LPSS_CLOCK_DIV_M_SHIFT,
|
|
|
|
|
|
|
|
/* These set the UART input clock speed */
|
|
|
|
LPSS_UART_CLK_M_VAL = 0x25a,
|
|
|
|
LPSS_UART_CLK_N_VAL = 0x7fff,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void lpss_clk_update(void *regs, u32 clk_m_val, u32 clk_n_val)
|
|
|
|
{
|
|
|
|
u32 clk_sel;
|
|
|
|
|
|
|
|
clk_sel = clk_n_val << LPSS_CLOCK_DIV_N_SHIFT |
|
|
|
|
clk_m_val << LPSS_CLOCK_DIV_M_SHIFT;
|
|
|
|
clk_sel |= LPSS_CNT_CLK_UPDATE | LPSS_CNT_CLOCK_EN;
|
|
|
|
|
|
|
|
writel(clk_sel, regs + LPSS_CLOCK_CTL_REG);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void uart_lpss_init(void *regs)
|
|
|
|
{
|
|
|
|
/* Take UART out of reset */
|
|
|
|
lpss_reset_release(regs);
|
|
|
|
|
|
|
|
/* Set M and N divisor inputs and enable clock */
|
|
|
|
lpss_clk_update(regs, LPSS_UART_CLK_M_VAL, LPSS_UART_CLK_N_VAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void apl_uart_init(pci_dev_t bdf, ulong base)
|
|
|
|
{
|
|
|
|
/* Set UART base address */
|
|
|
|
pci_x86_write_config(bdf, PCI_BASE_ADDRESS_0, base, PCI_SIZE_32);
|
|
|
|
|
|
|
|
/* Enable memory access and bus master */
|
|
|
|
pci_x86_write_config(bdf, PCI_COMMAND, PCI_COMMAND_MEMORY |
|
|
|
|
PCI_COMMAND_MASTER, PCI_SIZE_32);
|
|
|
|
|
|
|
|
uart_lpss_init((void *)base);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This driver uses its own compatible string but almost everything else from
|
|
|
|
* the standard ns16550 driver. This allows us to provide an of-platdata
|
|
|
|
* implementation, since the platdata produced by of-platdata does not match
|
2020-12-19 17:40:05 +00:00
|
|
|
* struct apl_ns16550_plat.
|
2019-12-07 04:42:58 +00:00
|
|
|
*
|
|
|
|
* When running with of-platdata (generally TPL), the platdata is converted to
|
|
|
|
* something that ns16550 expects. When running withoutof-platdata (SPL, U-Boot
|
2020-12-03 23:55:21 +00:00
|
|
|
* proper), we use ns16550's of_to_plat routine.
|
2019-12-07 04:42:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
static int apl_ns16550_probe(struct udevice *dev)
|
|
|
|
{
|
2020-12-19 17:40:05 +00:00
|
|
|
struct apl_ns16550_plat *plat = dev_get_plat(dev);
|
2019-12-07 04:42:58 +00:00
|
|
|
|
|
|
|
if (!CONFIG_IS_ENABLED(PCI))
|
2020-12-19 17:40:05 +00:00
|
|
|
apl_uart_init(plat->ns16550.bdf, plat->ns16550.base);
|
2019-12-07 04:42:58 +00:00
|
|
|
|
|
|
|
return ns16550_serial_probe(dev);
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
static int apl_ns16550_of_to_plat(struct udevice *dev)
|
2019-12-07 04:42:58 +00:00
|
|
|
{
|
|
|
|
#if CONFIG_IS_ENABLED(OF_PLATDATA)
|
2020-12-19 17:40:05 +00:00
|
|
|
struct dtd_intel_apl_ns16550 *dtplat;
|
|
|
|
struct apl_ns16550_plat *plat = dev_get_plat(dev);
|
|
|
|
struct ns16550_plat ns;
|
2019-12-07 04:42:58 +00:00
|
|
|
|
|
|
|
/*
|
2020-12-19 17:40:05 +00:00
|
|
|
* The device's plat uses struct apl_ns16550_plat which starts with the
|
|
|
|
* dtd struct, but the ns16550 driver expects it to be struct ns16550.
|
|
|
|
* Set up what that driver expects. Note that this means that the values
|
|
|
|
* cannot be read in this driver when using of-platdata.
|
|
|
|
*
|
|
|
|
* TODO(sjg@chromium.org): Consider having a separate plat pointer for
|
|
|
|
* of-platdata so that it is not necessary to overwrite this.
|
2019-12-07 04:42:58 +00:00
|
|
|
*/
|
2020-12-19 17:40:05 +00:00
|
|
|
dtplat = &plat->dtplat;
|
|
|
|
ns.base = dtplat->early_regs[0];
|
|
|
|
ns.reg_width = 1;
|
|
|
|
ns.reg_shift = dtplat->reg_shift;
|
|
|
|
ns.reg_offset = 0;
|
|
|
|
ns.clock = dtplat->clock_frequency;
|
|
|
|
ns.fcr = UART_FCR_DEFVAL;
|
|
|
|
ns.bdf = pci_ofplat_get_devfn(dtplat->reg[0]);
|
|
|
|
memcpy(plat, &ns, sizeof(ns));
|
2019-12-07 04:42:58 +00:00
|
|
|
#else
|
|
|
|
int ret;
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
ret = ns16550_serial_of_to_plat(dev);
|
2019-12-07 04:42:58 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
#endif /* OF_PLATDATA */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-12-23 15:11:30 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
2019-12-07 04:42:58 +00:00
|
|
|
static const struct udevice_id apl_ns16550_serial_ids[] = {
|
|
|
|
{ .compatible = "intel,apl-ns16550" },
|
|
|
|
{ },
|
|
|
|
};
|
2020-12-23 15:11:30 +00:00
|
|
|
#endif
|
2019-12-07 04:42:58 +00:00
|
|
|
|
2020-10-05 11:27:01 +00:00
|
|
|
U_BOOT_DRIVER(intel_apl_ns16550) = {
|
2019-12-07 04:42:58 +00:00
|
|
|
.name = "intel_apl_ns16550",
|
|
|
|
.id = UCLASS_SERIAL,
|
2020-12-23 15:11:30 +00:00
|
|
|
.of_match = of_match_ptr(apl_ns16550_serial_ids),
|
2020-12-19 17:40:05 +00:00
|
|
|
.plat_auto = sizeof(struct apl_ns16550_plat),
|
2020-12-23 02:30:18 +00:00
|
|
|
.priv_auto = sizeof(struct ns16550),
|
2019-12-07 04:42:58 +00:00
|
|
|
.ops = &ns16550_serial_ops,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = apl_ns16550_of_to_plat,
|
2019-12-07 04:42:58 +00:00
|
|
|
.probe = apl_ns16550_probe,
|
|
|
|
};
|