blob: eb27861b7a467f887c3b1227ff72abe5599fea35 [file] [log] [blame]
Simon Glassd7db0042019-12-08 17:40:16 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Primary-to-Sideband Bridge
4 *
5 * Copyright 2019 Google LLC
6 */
7
8#define LOG_CATEGORY UCLASS_P2SB
9
10#include <common.h>
11#include <dm.h>
12#include <dt-structs.h>
13#include <p2sb.h>
14#include <spl.h>
15#include <asm/pci.h>
16
17struct p2sb_platdata {
18#if CONFIG_IS_ENABLED(OF_PLATDATA)
19 struct dtd_intel_apl_p2sb dtplat;
20#endif
21 ulong mmio_base;
22 pci_dev_t bdf;
23};
24
25/* PCI config space registers */
26#define HPTC_OFFSET 0x60
27#define HPTC_ADDR_ENABLE_BIT BIT(7)
28
29/* High Performance Event Timer Configuration */
30#define P2SB_HPTC 0x60
31#define P2SB_HPTC_ADDRESS_ENABLE BIT(7)
32
33/*
34 * ADDRESS_SELECT ENCODING_RANGE
35 * 0 0xfed0 0000 - 0xfed0 03ff
36 * 1 0xfed0 1000 - 0xfed0 13ff
37 * 2 0xfed0 2000 - 0xfed0 23ff
38 * 3 0xfed0 3000 - 0xfed0 33ff
39 */
40#define P2SB_HPTC_ADDRESS_SELECT_0 (0 << 0)
41#define P2SB_HPTC_ADDRESS_SELECT_1 (1 << 0)
42#define P2SB_HPTC_ADDRESS_SELECT_2 (2 << 0)
43#define P2SB_HPTC_ADDRESS_SELECT_3 (3 << 0)
44
45/*
46 * apl_p2sb_early_init() - Enable decoding for HPET range
47 *
48 * This is needed by FSP-M which uses the High Precision Event Timer.
49 *
50 * @dev: P2SB device
51 * @return 0 if OK, -ve on error
52 */
53static int apl_p2sb_early_init(struct udevice *dev)
54{
55 struct p2sb_platdata *plat = dev_get_platdata(dev);
56 pci_dev_t pdev = plat->bdf;
57
58 /*
59 * Enable decoding for HPET memory address range.
60 * HPTC_OFFSET(0x60) bit 7, when set the P2SB will decode
61 * the High Performance Timer memory address range
62 * selected by bits 1:0
63 */
64 pci_x86_write_config(pdev, HPTC_OFFSET, HPTC_ADDR_ENABLE_BIT,
65 PCI_SIZE_8);
66
67 /* Enable PCR Base address in PCH */
68 pci_x86_write_config(pdev, PCI_BASE_ADDRESS_0, plat->mmio_base,
69 PCI_SIZE_32);
70 pci_x86_write_config(pdev, PCI_BASE_ADDRESS_1, 0, PCI_SIZE_32);
71
72 /* Enable P2SB MSE */
73 pci_x86_write_config(pdev, PCI_COMMAND, PCI_COMMAND_MASTER |
74 PCI_COMMAND_MEMORY, PCI_SIZE_8);
75
76 return 0;
77}
78
79static int apl_p2sb_spl_init(struct udevice *dev)
80{
81 /* Enable decoding for HPET. Needed for FSP global pointer storage */
82 dm_pci_write_config(dev, P2SB_HPTC, P2SB_HPTC_ADDRESS_SELECT_0 |
83 P2SB_HPTC_ADDRESS_ENABLE, PCI_SIZE_8);
84
85 return 0;
86}
87
88int apl_p2sb_ofdata_to_platdata(struct udevice *dev)
89{
90 struct p2sb_uc_priv *upriv = dev_get_uclass_priv(dev);
91 struct p2sb_platdata *plat = dev_get_platdata(dev);
92
93#if !CONFIG_IS_ENABLED(OF_PLATDATA)
94 int ret;
95
96 if (spl_phase() == PHASE_TPL) {
97 u32 base[2];
98
99 /* TPL sets up the initial BAR */
100 ret = dev_read_u32_array(dev, "early-regs", base,
101 ARRAY_SIZE(base));
102 if (ret)
103 return log_msg_ret("Missing/short early-regs", ret);
104 plat->mmio_base = base[0];
105 plat->bdf = pci_get_devfn(dev);
106 if (plat->bdf < 0)
107 return log_msg_ret("Cannot get p2sb PCI address",
108 plat->bdf);
109 } else {
110 plat->mmio_base = dev_read_addr_pci(dev);
111 /* Don't set BDF since it should not be used */
112 if (!plat->mmio_base || plat->mmio_base == FDT_ADDR_T_NONE)
113 return -EINVAL;
114 }
115#else
116 plat->mmio_base = plat->dtplat.early_regs[0];
117 plat->bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
118#endif
119 upriv->mmio_base = plat->mmio_base;
120 debug("p2sb: mmio_base=%x\n", (uint)plat->mmio_base);
121
122 return 0;
123}
124
125static int apl_p2sb_probe(struct udevice *dev)
126{
127 if (spl_phase() == PHASE_TPL)
128 return apl_p2sb_early_init(dev);
129 else if (spl_phase() == PHASE_SPL)
130 return apl_p2sb_spl_init(dev);
131
132 return 0;
133}
134
135static int p2sb_child_post_bind(struct udevice *dev)
136{
137#if !CONFIG_IS_ENABLED(OF_PLATDATA)
138 struct p2sb_child_platdata *pplat = dev_get_parent_platdata(dev);
139 int ret;
140 u32 pid;
141
142 ret = dev_read_u32(dev, "intel,p2sb-port-id", &pid);
143 if (ret)
144 return ret;
145 pplat->pid = pid;
146#endif
147
148 return 0;
149}
150
151static const struct udevice_id apl_p2sb_ids[] = {
152 { .compatible = "intel,apl-p2sb" },
153 { }
154};
155
156U_BOOT_DRIVER(apl_p2sb_drv) = {
157 .name = "intel_apl_p2sb",
158 .id = UCLASS_P2SB,
159 .of_match = apl_p2sb_ids,
160 .probe = apl_p2sb_probe,
161 .ofdata_to_platdata = apl_p2sb_ofdata_to_platdata,
162 .platdata_auto_alloc_size = sizeof(struct p2sb_platdata),
163 .per_child_platdata_auto_alloc_size =
164 sizeof(struct p2sb_child_platdata),
165 .child_post_bind = p2sb_child_post_bind,
166};