]> git.sur5r.net Git - u-boot/blob - arch/x86/cpu/ivybridge/bd82x6x.c
x86: ivybridge: Declare global data where it is used
[u-boot] / arch / x86 / cpu / ivybridge / bd82x6x.c
1 /*
2  * Copyright (C) 2014 Google, Inc
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 #include <common.h>
7 #include <dm.h>
8 #include <errno.h>
9 #include <fdtdec.h>
10 #include <malloc.h>
11 #include <pch.h>
12 #include <asm/cpu.h>
13 #include <asm/intel_regs.h>
14 #include <asm/io.h>
15 #include <asm/lapic.h>
16 #include <asm/lpc_common.h>
17 #include <asm/pci.h>
18 #include <asm/arch/model_206ax.h>
19 #include <asm/arch/pch.h>
20 #include <asm/arch/sandybridge.h>
21
22 DECLARE_GLOBAL_DATA_PTR;
23
24 #define GPIO_BASE       0x48
25 #define BIOS_CTRL       0xdc
26
27 #ifndef CONFIG_HAVE_FSP
28 static int pch_revision_id = -1;
29 static 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  */
37 static 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
49 int 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  */
69 static 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
95 static 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
111 void 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
156 static int bd82x6x_probe(struct udevice *dev)
157 {
158         if (!(gd->flags & GD_FLG_RELOC))
159                 return 0;
160
161         /* Cause the SATA device to do its init */
162         uclass_first_device(UCLASS_AHCI, &dev);
163
164         return 0;
165 }
166 #endif /* CONFIG_HAVE_FSP */
167
168 static int bd82x6x_pch_get_spi_base(struct udevice *dev, ulong *sbasep)
169 {
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
180 static int bd82x6x_set_spi_protect(struct udevice *dev, bool protect)
181 {
182         return lpc_set_spi_protect(dev, BIOS_CTRL, protect);
183 }
184
185 static 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
216 static const struct pch_ops bd82x6x_pch_ops = {
217         .get_spi_base   = bd82x6x_pch_get_spi_base,
218         .set_spi_protect = bd82x6x_set_spi_protect,
219         .get_gpio_base  = bd82x6x_get_gpio_base,
220 };
221
222 static const struct udevice_id bd82x6x_ids[] = {
223         { .compatible = "intel,bd82x6x" },
224         { }
225 };
226
227 U_BOOT_DRIVER(bd82x6x_drv) = {
228         .name           = "bd82x6x",
229         .id             = UCLASS_PCH,
230         .of_match       = bd82x6x_ids,
231 #ifndef CONFIG_HAVE_FSP
232         .probe          = bd82x6x_probe,
233 #endif
234         .ops            = &bd82x6x_pch_ops,
235 };