blob: b72f50a6274dc17ff9e1df4ebc3ba49d2a191dcf [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);
Simon Glassd7db0042019-12-08 17:40:16 -0700109 }
110#else
111 plat->mmio_base = plat->dtplat.early_regs[0];
112 plat->bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
113#endif
114 upriv->mmio_base = plat->mmio_base;
115 debug("p2sb: mmio_base=%x\n", (uint)plat->mmio_base);
116
117 return 0;
118}
119
120static int apl_p2sb_probe(struct udevice *dev)
121{
Simon Glassbaf7bd42019-12-29 21:19:13 -0700122 if (spl_phase() == PHASE_TPL) {
Simon Glassd7db0042019-12-08 17:40:16 -0700123 return apl_p2sb_early_init(dev);
Simon Glassbaf7bd42019-12-29 21:19:13 -0700124 } else {
125 struct p2sb_platdata *plat = dev_get_platdata(dev);
126
127 plat->mmio_base = dev_read_addr_pci(dev);
128 /* Don't set BDF since it should not be used */
129 if (!plat->mmio_base || plat->mmio_base == FDT_ADDR_T_NONE)
130 return -EINVAL;
131
132 if (spl_phase() == PHASE_SPL)
133 return apl_p2sb_spl_init(dev);
134 }
Simon Glassd7db0042019-12-08 17:40:16 -0700135
136 return 0;
137}
138
139static int p2sb_child_post_bind(struct udevice *dev)
140{
141#if !CONFIG_IS_ENABLED(OF_PLATDATA)
142 struct p2sb_child_platdata *pplat = dev_get_parent_platdata(dev);
143 int ret;
144 u32 pid;
145
146 ret = dev_read_u32(dev, "intel,p2sb-port-id", &pid);
147 if (ret)
148 return ret;
149 pplat->pid = pid;
150#endif
151
152 return 0;
153}
154
155static const struct udevice_id apl_p2sb_ids[] = {
156 { .compatible = "intel,apl-p2sb" },
157 { }
158};
159
160U_BOOT_DRIVER(apl_p2sb_drv) = {
161 .name = "intel_apl_p2sb",
162 .id = UCLASS_P2SB,
163 .of_match = apl_p2sb_ids,
164 .probe = apl_p2sb_probe,
165 .ofdata_to_platdata = apl_p2sb_ofdata_to_platdata,
166 .platdata_auto_alloc_size = sizeof(struct p2sb_platdata),
167 .per_child_platdata_auto_alloc_size =
168 sizeof(struct p2sb_child_platdata),
169 .child_post_bind = p2sb_child_post_bind,
170};