blob: 1cb6cecda9ea0fb1d066b0fe9a2df5421d853bdb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass17f1c402014-11-14 18:18:32 -07002/*
3 * Copyright (C) 2014 Google, Inc
Simon Glass17f1c402014-11-14 18:18:32 -07004 */
Simon Glass17f1c402014-11-14 18:18:32 -07005#include <common.h>
Simon Glasse0e7b362015-03-05 12:25:33 -07006#include <dm.h>
Simon Glass17f1c402014-11-14 18:18:32 -07007#include <errno.h>
8#include <fdtdec.h>
9#include <malloc.h>
Simon Glass32761632016-01-18 20:19:21 -070010#include <pch.h>
Simon Glassa75abeb2016-01-17 16:11:59 -070011#include <asm/cpu.h>
Simon Glassab39d332016-03-11 22:06:56 -070012#include <asm/intel_regs.h>
Simon Glass6c9e1d82016-01-17 16:11:53 -070013#include <asm/io.h>
Simon Glass17f1c402014-11-14 18:18:32 -070014#include <asm/lapic.h>
Simon Glass63e08a22016-03-11 22:06:57 -070015#include <asm/lpc_common.h>
Simon Glass17f1c402014-11-14 18:18:32 -070016#include <asm/pci.h>
Simon Glass17f1c402014-11-14 18:18:32 -070017#include <asm/arch/model_206ax.h>
18#include <asm/arch/pch.h>
19#include <asm/arch/sandybridge.h>
20
Simon Glassd87b0922017-01-16 07:03:37 -070021DECLARE_GLOBAL_DATA_PTR;
22
Simon Glass1a9360d2019-02-16 20:24:52 -070023#define GPIO_BASE 0x48
24#define BIOS_CTRL 0xdc
25
26#define RCBA_AUDIO_CONFIG 0x2030
27#define RCBA_AUDIO_CONFIG_HDA BIT(31)
28#define RCBA_AUDIO_CONFIG_MASK 0xfe
Simon Glass32761632016-01-18 20:19:21 -070029
Bin Meng051f1752016-02-17 00:16:24 -080030#ifndef CONFIG_HAVE_FSP
Simon Glass6c9e1d82016-01-17 16:11:53 -070031static int pch_revision_id = -1;
32static int pch_type = -1;
33
34/**
35 * pch_silicon_revision() - Read silicon revision ID from the PCH
36 *
37 * @dev: PCH device
38 * @return silicon revision ID
39 */
40static int pch_silicon_revision(struct udevice *dev)
41{
42 u8 val;
43
44 if (pch_revision_id < 0) {
45 dm_pci_read_config8(dev, PCI_REVISION_ID, &val);
46 pch_revision_id = val;
47 }
48
49 return pch_revision_id;
50}
51
52int pch_silicon_type(struct udevice *dev)
53{
54 u8 val;
55
56 if (pch_type < 0) {
57 dm_pci_read_config8(dev, PCI_DEVICE_ID + 1, &val);
58 pch_type = val;
59 }
60
61 return pch_type;
62}
63
64/**
65 * pch_silicon_supported() - Check if a certain revision is supported
66 *
67 * @dev: PCH device
68 * @type: PCH type
69 * @rev: Minimum required resion
70 * @return 0 if not supported, 1 if supported
71 */
72static int pch_silicon_supported(struct udevice *dev, int type, int rev)
73{
74 int cur_type = pch_silicon_type(dev);
75 int cur_rev = pch_silicon_revision(dev);
76
77 switch (type) {
78 case PCH_TYPE_CPT:
79 /* CougarPoint minimum revision */
80 if (cur_type == PCH_TYPE_CPT && cur_rev >= rev)
81 return 1;
82 /* PantherPoint any revision */
83 if (cur_type == PCH_TYPE_PPT)
84 return 1;
85 break;
86
87 case PCH_TYPE_PPT:
88 /* PantherPoint minimum revision */
89 if (cur_type == PCH_TYPE_PPT && cur_rev >= rev)
90 return 1;
91 break;
92 }
93
94 return 0;
95}
96
97#define IOBP_RETRY 1000
98static inline int iobp_poll(void)
99{
100 unsigned try = IOBP_RETRY;
101 u32 data;
102
103 while (try--) {
104 data = readl(RCB_REG(IOBPS));
105 if ((data & 1) == 0)
106 return 1;
107 udelay(10);
108 }
109
110 printf("IOBP timeout\n");
111 return 0;
112}
113
114void pch_iobp_update(struct udevice *dev, u32 address, u32 andvalue,
115 u32 orvalue)
116{
117 u32 data;
118
119 /* Set the address */
120 writel(address, RCB_REG(IOBPIRI));
121
122 /* READ OPCODE */
123 if (pch_silicon_supported(dev, PCH_TYPE_CPT, PCH_STEP_B0))
124 writel(IOBPS_RW_BX, RCB_REG(IOBPS));
125 else
126 writel(IOBPS_READ_AX, RCB_REG(IOBPS));
127 if (!iobp_poll())
128 return;
129
130 /* Read IOBP data */
131 data = readl(RCB_REG(IOBPD));
132 if (!iobp_poll())
133 return;
134
135 /* Check for successful transaction */
136 if ((readl(RCB_REG(IOBPS)) & 0x6) != 0) {
137 printf("IOBP read 0x%08x failed\n", address);
138 return;
139 }
140
141 /* Update the data */
142 data &= andvalue;
143 data |= orvalue;
144
145 /* WRITE OPCODE */
146 if (pch_silicon_supported(dev, PCH_TYPE_CPT, PCH_STEP_B0))
147 writel(IOBPS_RW_BX, RCB_REG(IOBPS));
148 else
149 writel(IOBPS_WRITE_AX, RCB_REG(IOBPS));
150 if (!iobp_poll())
151 return;
152
153 /* Write IOBP data */
154 writel(data, RCB_REG(IOBPD));
155 if (!iobp_poll())
156 return;
157}
158
Simon Glasse0e7b362015-03-05 12:25:33 -0700159static int bd82x6x_probe(struct udevice *dev)
Simon Glass17f1c402014-11-14 18:18:32 -0700160{
Simon Glass044f1a02016-01-17 16:11:10 -0700161 if (!(gd->flags & GD_FLG_RELOC))
162 return 0;
163
Simon Glass39f3f8c2016-01-17 16:11:37 -0700164 /* Cause the SATA device to do its init */
Simon Glass85ee1652016-05-01 11:35:52 -0600165 uclass_first_device(UCLASS_AHCI, &dev);
Simon Glass39f3f8c2016-01-17 16:11:37 -0700166
Simon Glass17f1c402014-11-14 18:18:32 -0700167 return 0;
168}
Bin Meng051f1752016-02-17 00:16:24 -0800169#endif /* CONFIG_HAVE_FSP */
Simon Glass17f1c402014-11-14 18:18:32 -0700170
Bin Meng06d66af2016-02-01 01:40:42 -0800171static int bd82x6x_pch_get_spi_base(struct udevice *dev, ulong *sbasep)
Simon Glass32761632016-01-18 20:19:21 -0700172{
173 u32 rcba;
174
175 dm_pci_read_config32(dev, PCH_RCBA, &rcba);
176 /* Bits 31-14 are the base address, 13-1 are reserved, 0 is enable */
177 rcba = rcba & 0xffffc000;
178 *sbasep = rcba + 0x3800;
179
180 return 0;
181}
182
Simon Glass32761632016-01-18 20:19:21 -0700183static int bd82x6x_set_spi_protect(struct udevice *dev, bool protect)
184{
Simon Glass63e08a22016-03-11 22:06:57 -0700185 return lpc_set_spi_protect(dev, BIOS_CTRL, protect);
Simon Glass32761632016-01-18 20:19:21 -0700186}
187
Bin Mengfd2afdf2016-02-01 01:40:44 -0800188static int bd82x6x_get_gpio_base(struct udevice *dev, u32 *gbasep)
189{
190 u32 base;
191
192 /*
193 * GPIO_BASE moved to its current offset with ICH6, but prior to
194 * that it was unused (or undocumented). Check that it looks
195 * okay: not all ones or zeros.
196 *
197 * Note we don't need check bit0 here, because the Tunnel Creek
198 * GPIO base address register bit0 is reserved (read returns 0),
199 * while on the Ivybridge the bit0 is used to indicate it is an
200 * I/O space.
201 */
202 dm_pci_read_config32(dev, GPIO_BASE, &base);
203 if (base == 0x00000000 || base == 0xffffffff) {
204 debug("%s: unexpected BASE value\n", __func__);
205 return -ENODEV;
206 }
207
208 /*
209 * Okay, I guess we're looking at the right device. The actual
210 * GPIO registers are in the PCI device's I/O space, starting
211 * at the offset that we just read. Bit 0 indicates that it's
212 * an I/O address, not a memory address, so mask that off.
213 */
214 *gbasep = base & 1 ? base & ~3 : base & ~15;
215
216 return 0;
217}
218
Simon Glass1a9360d2019-02-16 20:24:52 -0700219static int bd82x6x_ioctl(struct udevice *dev, enum pch_req_t req, void *data,
220 int size)
221{
222 u32 rcba, val;
223
224 switch (req) {
225 case PCH_REQ_HDA_CONFIG:
226 dm_pci_read_config32(dev, PCH_RCBA, &rcba);
227 val = readl(rcba + RCBA_AUDIO_CONFIG);
228 if (!(val & RCBA_AUDIO_CONFIG_HDA))
229 return -ENOENT;
230
231 return val & RCBA_AUDIO_CONFIG_MASK;
Simon Glass027f8372019-04-25 21:59:02 -0600232 case PCH_REQ_PMBASE_INFO: {
233 struct pch_pmbase_info *pm = data;
234 int ret;
235
236 /* Find the base address of the powermanagement registers */
237 ret = dm_pci_read_config16(dev, 0x40, &pm->base);
238 if (ret)
239 return ret;
240 pm->base &= 0xfffe;
241 pm->gpio0_en_ofs = GPE0_EN;
242 pm->pm1_sts_ofs = PM1_STS;
243 pm->pm1_cnt_ofs = PM1_CNT;
244
245 return 0;
246 }
Simon Glass1a9360d2019-02-16 20:24:52 -0700247 default:
248 return -ENOSYS;
249 }
250}
251
Simon Glass32761632016-01-18 20:19:21 -0700252static const struct pch_ops bd82x6x_pch_ops = {
Bin Meng06d66af2016-02-01 01:40:42 -0800253 .get_spi_base = bd82x6x_pch_get_spi_base,
Simon Glass32761632016-01-18 20:19:21 -0700254 .set_spi_protect = bd82x6x_set_spi_protect,
Bin Mengfd2afdf2016-02-01 01:40:44 -0800255 .get_gpio_base = bd82x6x_get_gpio_base,
Simon Glass1a9360d2019-02-16 20:24:52 -0700256 .ioctl = bd82x6x_ioctl,
Simon Glass32761632016-01-18 20:19:21 -0700257};
258
Simon Glasse0e7b362015-03-05 12:25:33 -0700259static const struct udevice_id bd82x6x_ids[] = {
260 { .compatible = "intel,bd82x6x" },
261 { }
262};
263
264U_BOOT_DRIVER(bd82x6x_drv) = {
265 .name = "bd82x6x",
266 .id = UCLASS_PCH,
267 .of_match = bd82x6x_ids,
Bin Meng051f1752016-02-17 00:16:24 -0800268#ifndef CONFIG_HAVE_FSP
Simon Glasse0e7b362015-03-05 12:25:33 -0700269 .probe = bd82x6x_probe,
Bin Meng051f1752016-02-17 00:16:24 -0800270#endif
Simon Glass32761632016-01-18 20:19:21 -0700271 .ops = &bd82x6x_pch_ops,
Simon Glasse0e7b362015-03-05 12:25:33 -0700272};