blob: d8e05f6a8f46d15274f64b56abfe83830633134a [file] [log] [blame]
Simon Glass8bd5dcd2019-12-08 17:40:09 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright 2019 Google LLC
4 *
5 * From coreboot Apollo Lake support lpc.c
6 */
7
8#include <common.h>
9#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glass8bd5dcd2019-12-08 17:40:09 -070011#include <spl.h>
Simon Glassea786752020-09-22 12:45:22 -060012#include <acpi/acpi_table.h>
13#include <asm/cpu_common.h>
14#include <asm/intel_acpi.h>
Simon Glass8bd5dcd2019-12-08 17:40:09 -070015#include <asm/lpc_common.h>
16#include <asm/pci.h>
17#include <asm/arch/iomap.h>
18#include <asm/arch/lpc.h>
Simon Glassea786752020-09-22 12:45:22 -060019#include <dm/acpi.h>
Simon Glass8bd5dcd2019-12-08 17:40:09 -070020#include <linux/log2.h>
21
22void lpc_enable_fixed_io_ranges(uint io_enables)
23{
24 pci_x86_clrset_config(PCH_DEV_LPC, LPC_IO_ENABLES, 0, io_enables,
25 PCI_SIZE_16);
26}
27
28/*
29 * Find the first unused IO window.
30 * Returns -1 if not found, 0 for reg 0x84, 1 for reg 0x88 ...
31 */
32static int find_unused_pmio_window(void)
33{
34 int i;
35 ulong lgir;
36
37 for (i = 0; i < LPC_NUM_GENERIC_IO_RANGES; i++) {
38 pci_x86_read_config(PCH_DEV_LPC, LPC_GENERIC_IO_RANGE(i),
39 &lgir, PCI_SIZE_32);
40
41 if (!(lgir & LPC_LGIR_EN))
42 return i;
43 }
44
45 return -1;
46}
47
48int lpc_open_pmio_window(uint base, uint size)
49{
50 int i, lgir_reg_num;
51 u32 lgir_reg_offset, lgir, window_size, alignment;
52 ulong bridged_size, bridge_base;
53 ulong reg;
54
55 log_debug("LPC: Trying to open IO window from %x size %x\n", base,
56 size);
57
58 bridged_size = 0;
59 bridge_base = base;
60
61 while (bridged_size < size) {
62 /* Each IO range register can only open a 256-byte window */
63 window_size = min(size, (uint)LPC_LGIR_MAX_WINDOW_SIZE);
64
65 /* Window size must be a power of two for the AMASK to work */
66 alignment = 1UL << (order_base_2(window_size));
67 window_size = ALIGN(window_size, alignment);
68
69 /* Address[15:2] in LGIR[15:12] and Mask[7:2] in LGIR[23:18] */
70 lgir = (bridge_base & LPC_LGIR_ADDR_MASK) | LPC_LGIR_EN;
71 lgir |= ((window_size - 1) << 16) & LPC_LGIR_AMASK_MASK;
72
73 /* Skip programming if same range already programmed */
74 for (i = 0; i < LPC_NUM_GENERIC_IO_RANGES; i++) {
75 pci_x86_read_config(PCH_DEV_LPC,
76 LPC_GENERIC_IO_RANGE(i), &reg,
77 PCI_SIZE_32);
78 if (lgir == reg)
79 return -EALREADY;
80 }
81
82 lgir_reg_num = find_unused_pmio_window();
83 if (lgir_reg_num < 0) {
84 log_err("LPC: Cannot open IO window: %lx size %lx\n",
85 bridge_base, size - bridged_size);
86 log_err("No more IO windows\n");
87
88 return -ENOSPC;
89 }
90 lgir_reg_offset = LPC_GENERIC_IO_RANGE(lgir_reg_num);
91
92 pci_x86_write_config(PCH_DEV_LPC, lgir_reg_offset, lgir,
93 PCI_SIZE_32);
94
95 log_debug("LPC: Opened IO window LGIR%d: base %lx size %x\n",
96 lgir_reg_num, bridge_base, window_size);
97
98 bridged_size += window_size;
99 bridge_base += window_size;
100 }
101
102 return 0;
103}
104
105void lpc_io_setup_comm_a_b(void)
106{
107 /* ComA Range 3F8h-3FFh [2:0] */
108 u16 com_ranges = LPC_IOD_COMA_RANGE;
109 u16 com_enable = LPC_IOE_COMA_EN;
110
111 /* Setup I/O Decode Range Register for LPC */
112 pci_write_config16(PCH_DEV_LPC, LPC_IO_DECODE, com_ranges);
113 /* Enable ComA and ComB Port */
114 lpc_enable_fixed_io_ranges(com_enable);
115}
116
Simon Glassea786752020-09-22 12:45:22 -0600117static int apl_acpi_lpc_get_name(const struct udevice *dev, char *out_name)
118{
119 return acpi_copy_name(out_name, "LPCB");
120}
121
122struct acpi_ops apl_lpc_acpi_ops = {
123 .get_name = apl_acpi_lpc_get_name,
124#ifdef CONFIG_GENERATE_ACPI_TABLE
125 .write_tables = intel_southbridge_write_acpi_tables,
126#endif
127 .inject_dsdt = southbridge_inject_dsdt,
128};
129
Simon Glass8bd5dcd2019-12-08 17:40:09 -0700130static const struct udevice_id apl_lpc_ids[] = {
131 { .compatible = "intel,apl-lpc" },
132 { }
133};
134
135/* All pads are LPC already configured by the hostbridge, so no probing here */
Simon Glass9d20db02020-10-05 05:27:01 -0600136U_BOOT_DRIVER(intel_apl_lpc) = {
Simon Glass8bd5dcd2019-12-08 17:40:09 -0700137 .name = "intel_apl_lpc",
138 .id = UCLASS_LPC,
139 .of_match = apl_lpc_ids,
Simon Glassea786752020-09-22 12:45:22 -0600140 ACPI_OPS_PTR(&apl_lpc_acpi_ops)
Simon Glass8bd5dcd2019-12-08 17:40:09 -0700141};