blob: e3eff69cf67da1a57f22862206cc39419359b93c [file] [log] [blame]
Simon Glass17f1c402014-11-14 18:18:32 -07001/*
2 * Copyright (C) 2014 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
Simon Glass17f1c402014-11-14 18:18:32 -07006#include <common.h>
Simon Glasse0e7b362015-03-05 12:25:33 -07007#include <dm.h>
Simon Glass17f1c402014-11-14 18:18:32 -07008#include <errno.h>
9#include <fdtdec.h>
10#include <malloc.h>
Simon Glass32761632016-01-18 20:19:21 -070011#include <pch.h>
Simon Glassa75abeb2016-01-17 16:11:59 -070012#include <asm/cpu.h>
Simon Glassab39d332016-03-11 22:06:56 -070013#include <asm/intel_regs.h>
Simon Glass6c9e1d82016-01-17 16:11:53 -070014#include <asm/io.h>
Simon Glass17f1c402014-11-14 18:18:32 -070015#include <asm/lapic.h>
Simon Glass63e08a22016-03-11 22:06:57 -070016#include <asm/lpc_common.h>
Simon Glass17f1c402014-11-14 18:18:32 -070017#include <asm/pci.h>
Simon Glass17f1c402014-11-14 18:18:32 -070018#include <asm/arch/model_206ax.h>
19#include <asm/arch/pch.h>
20#include <asm/arch/sandybridge.h>
21
Simon Glassd87b0922017-01-16 07:03:37 -070022DECLARE_GLOBAL_DATA_PTR;
23
Bin Mengfd2afdf2016-02-01 01:40:44 -080024#define GPIO_BASE 0x48
Simon Glass32761632016-01-18 20:19:21 -070025#define BIOS_CTRL 0xdc
26
Bin Meng051f1752016-02-17 00:16:24 -080027#ifndef CONFIG_HAVE_FSP
Simon Glass6c9e1d82016-01-17 16:11:53 -070028static int pch_revision_id = -1;
29static int pch_type = -1;
30
31/**
32 * pch_silicon_revision() - Read silicon revision ID from the PCH
33 *
34 * @dev: PCH device
35 * @return silicon revision ID
36 */
37static int pch_silicon_revision(struct udevice *dev)
38{
39 u8 val;
40
41 if (pch_revision_id < 0) {
42 dm_pci_read_config8(dev, PCI_REVISION_ID, &val);
43 pch_revision_id = val;
44 }
45
46 return pch_revision_id;
47}
48
49int pch_silicon_type(struct udevice *dev)
50{
51 u8 val;
52
53 if (pch_type < 0) {
54 dm_pci_read_config8(dev, PCI_DEVICE_ID + 1, &val);
55 pch_type = val;
56 }
57
58 return pch_type;
59}
60
61/**
62 * pch_silicon_supported() - Check if a certain revision is supported
63 *
64 * @dev: PCH device
65 * @type: PCH type
66 * @rev: Minimum required resion
67 * @return 0 if not supported, 1 if supported
68 */
69static int pch_silicon_supported(struct udevice *dev, int type, int rev)
70{
71 int cur_type = pch_silicon_type(dev);
72 int cur_rev = pch_silicon_revision(dev);
73
74 switch (type) {
75 case PCH_TYPE_CPT:
76 /* CougarPoint minimum revision */
77 if (cur_type == PCH_TYPE_CPT && cur_rev >= rev)
78 return 1;
79 /* PantherPoint any revision */
80 if (cur_type == PCH_TYPE_PPT)
81 return 1;
82 break;
83
84 case PCH_TYPE_PPT:
85 /* PantherPoint minimum revision */
86 if (cur_type == PCH_TYPE_PPT && cur_rev >= rev)
87 return 1;
88 break;
89 }
90
91 return 0;
92}
93
94#define IOBP_RETRY 1000
95static inline int iobp_poll(void)
96{
97 unsigned try = IOBP_RETRY;
98 u32 data;
99
100 while (try--) {
101 data = readl(RCB_REG(IOBPS));
102 if ((data & 1) == 0)
103 return 1;
104 udelay(10);
105 }
106
107 printf("IOBP timeout\n");
108 return 0;
109}
110
111void pch_iobp_update(struct udevice *dev, u32 address, u32 andvalue,
112 u32 orvalue)
113{
114 u32 data;
115
116 /* Set the address */
117 writel(address, RCB_REG(IOBPIRI));
118
119 /* READ OPCODE */
120 if (pch_silicon_supported(dev, PCH_TYPE_CPT, PCH_STEP_B0))
121 writel(IOBPS_RW_BX, RCB_REG(IOBPS));
122 else
123 writel(IOBPS_READ_AX, RCB_REG(IOBPS));
124 if (!iobp_poll())
125 return;
126
127 /* Read IOBP data */
128 data = readl(RCB_REG(IOBPD));
129 if (!iobp_poll())
130 return;
131
132 /* Check for successful transaction */
133 if ((readl(RCB_REG(IOBPS)) & 0x6) != 0) {
134 printf("IOBP read 0x%08x failed\n", address);
135 return;
136 }
137
138 /* Update the data */
139 data &= andvalue;
140 data |= orvalue;
141
142 /* WRITE OPCODE */
143 if (pch_silicon_supported(dev, PCH_TYPE_CPT, PCH_STEP_B0))
144 writel(IOBPS_RW_BX, RCB_REG(IOBPS));
145 else
146 writel(IOBPS_WRITE_AX, RCB_REG(IOBPS));
147 if (!iobp_poll())
148 return;
149
150 /* Write IOBP data */
151 writel(data, RCB_REG(IOBPD));
152 if (!iobp_poll())
153 return;
154}
155
Simon Glasse0e7b362015-03-05 12:25:33 -0700156static int bd82x6x_probe(struct udevice *dev)
Simon Glass17f1c402014-11-14 18:18:32 -0700157{
Simon Glass044f1a02016-01-17 16:11:10 -0700158 if (!(gd->flags & GD_FLG_RELOC))
159 return 0;
160
Simon Glass39f3f8c2016-01-17 16:11:37 -0700161 /* Cause the SATA device to do its init */
Simon Glass85ee1652016-05-01 11:35:52 -0600162 uclass_first_device(UCLASS_AHCI, &dev);
Simon Glass39f3f8c2016-01-17 16:11:37 -0700163
Simon Glass17f1c402014-11-14 18:18:32 -0700164 return 0;
165}
Bin Meng051f1752016-02-17 00:16:24 -0800166#endif /* CONFIG_HAVE_FSP */
Simon Glass17f1c402014-11-14 18:18:32 -0700167
Bin Meng06d66af2016-02-01 01:40:42 -0800168static int bd82x6x_pch_get_spi_base(struct udevice *dev, ulong *sbasep)
Simon Glass32761632016-01-18 20:19:21 -0700169{
170 u32 rcba;
171
172 dm_pci_read_config32(dev, PCH_RCBA, &rcba);
173 /* Bits 31-14 are the base address, 13-1 are reserved, 0 is enable */
174 rcba = rcba & 0xffffc000;
175 *sbasep = rcba + 0x3800;
176
177 return 0;
178}
179
Simon Glass32761632016-01-18 20:19:21 -0700180static int bd82x6x_set_spi_protect(struct udevice *dev, bool protect)
181{
Simon Glass63e08a22016-03-11 22:06:57 -0700182 return lpc_set_spi_protect(dev, BIOS_CTRL, protect);
Simon Glass32761632016-01-18 20:19:21 -0700183}
184
Bin Mengfd2afdf2016-02-01 01:40:44 -0800185static int bd82x6x_get_gpio_base(struct udevice *dev, u32 *gbasep)
186{
187 u32 base;
188
189 /*
190 * GPIO_BASE moved to its current offset with ICH6, but prior to
191 * that it was unused (or undocumented). Check that it looks
192 * okay: not all ones or zeros.
193 *
194 * Note we don't need check bit0 here, because the Tunnel Creek
195 * GPIO base address register bit0 is reserved (read returns 0),
196 * while on the Ivybridge the bit0 is used to indicate it is an
197 * I/O space.
198 */
199 dm_pci_read_config32(dev, GPIO_BASE, &base);
200 if (base == 0x00000000 || base == 0xffffffff) {
201 debug("%s: unexpected BASE value\n", __func__);
202 return -ENODEV;
203 }
204
205 /*
206 * Okay, I guess we're looking at the right device. The actual
207 * GPIO registers are in the PCI device's I/O space, starting
208 * at the offset that we just read. Bit 0 indicates that it's
209 * an I/O address, not a memory address, so mask that off.
210 */
211 *gbasep = base & 1 ? base & ~3 : base & ~15;
212
213 return 0;
214}
215
Simon Glass32761632016-01-18 20:19:21 -0700216static const struct pch_ops bd82x6x_pch_ops = {
Bin Meng06d66af2016-02-01 01:40:42 -0800217 .get_spi_base = bd82x6x_pch_get_spi_base,
Simon Glass32761632016-01-18 20:19:21 -0700218 .set_spi_protect = bd82x6x_set_spi_protect,
Bin Mengfd2afdf2016-02-01 01:40:44 -0800219 .get_gpio_base = bd82x6x_get_gpio_base,
Simon Glass32761632016-01-18 20:19:21 -0700220};
221
Simon Glasse0e7b362015-03-05 12:25:33 -0700222static const struct udevice_id bd82x6x_ids[] = {
223 { .compatible = "intel,bd82x6x" },
224 { }
225};
226
227U_BOOT_DRIVER(bd82x6x_drv) = {
228 .name = "bd82x6x",
229 .id = UCLASS_PCH,
230 .of_match = bd82x6x_ids,
Bin Meng051f1752016-02-17 00:16:24 -0800231#ifndef CONFIG_HAVE_FSP
Simon Glasse0e7b362015-03-05 12:25:33 -0700232 .probe = bd82x6x_probe,
Bin Meng051f1752016-02-17 00:16:24 -0800233#endif
Simon Glass32761632016-01-18 20:19:21 -0700234 .ops = &bd82x6x_pch_ops,
Simon Glasse0e7b362015-03-05 12:25:33 -0700235};