blob: c5ac7d946198057ed396f4a32c1f0196d35443f3 [file] [log] [blame]
ollie6a600992005-11-26 21:55:36 +00001/*
uweb25f1ea2007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
ollie6a600992005-11-26 21:55:36 +00003 *
uweb25f1ea2007-08-29 17:52:32 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
stepan6d42c0f2009-08-12 09:27:45 +00005 * Copyright (C) 2005-2009 coresystems GmbH
uweb25f1ea2007-08-29 17:52:32 +00006 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
hailfingere76cfaf2009-12-17 15:20:01 +00007 * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger
libva6245f02009-12-21 15:30:46 +00008 * Copyright (C) 2009 Kontron Modular Computers GmbH
Edward O'Callaghan54464472020-05-27 00:51:19 +10009 * Copyright (C) 2011, 2012 Stefan Tauner
10 * Copyright (C) 2017 secunet Security Networks AG
11 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
ollie6a600992005-11-26 21:55:36 +000012 *
uweb25f1ea2007-08-29 17:52:32 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; version 2 of the License.
ollie6a600992005-11-26 21:55:36 +000016 *
uweb25f1ea2007-08-29 17:52:32 +000017 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
uweb25f1ea2007-08-29 17:52:32 +000021 */
22
23/*
24 * Contains the chipset specific flash enables.
ollie6a600992005-11-26 21:55:36 +000025 */
26
jcrouse5915fea2007-11-13 16:45:22 +000027#define _LARGEFILE64_SOURCE
28
ollie5672ac62004-03-17 22:22:08 +000029#include <stdlib.h>
oxygene4a497262009-05-22 11:37:27 +000030#include <string.h>
hailfinger6c391102010-06-21 23:20:15 +000031#include <unistd.h>
hailfingerd2ea87f2011-07-25 22:44:09 +000032#include <inttypes.h>
33#include <errno.h>
stepan927d4e22007-04-04 22:45:58 +000034#include "flash.h"
hailfinger428f6852010-07-27 22:41:39 +000035#include "programmer.h"
Mayur Panchalf4796862019-08-05 15:46:12 +100036#include "hwaccess.h"
stepancb140092006-03-31 11:26:55 +000037
mkarcherf5f203f2010-06-13 10:16:12 +000038#define NOT_DONE_YET 1
39
hailfinger2df6f3e2010-07-27 22:03:46 +000040#if defined(__i386__) || defined(__x86_64__)
41
uwe6ed6d952007-12-04 21:49:06 +000042static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
uwe691ddb62007-05-20 16:16:13 +000043{
44 uint8_t tmp;
45
uwe6ed6d952007-12-04 21:49:06 +000046 /*
47 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
48 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
49 */
uwe691ddb62007-05-20 16:16:13 +000050 tmp = pci_read_byte(dev, 0x47);
51 tmp |= 0x46;
hailfingerf31cbdc2010-11-10 15:25:18 +000052 rpci_write_byte(dev, 0x47, tmp);
uwe691ddb62007-05-20 16:16:13 +000053
54 return 0;
55}
56
Rudolf Marek1d455e22016-08-04 18:14:47 -070057static int enable_flash_rdc_r8610(struct pci_dev *dev, const char *name)
58{
59 uint8_t tmp;
60
61 /* enable ROMCS for writes */
62 tmp = pci_read_byte(dev, 0x43);
63 tmp |= 0x80;
64 pci_write_byte(dev, 0x43, tmp);
65
66 /* read the bootstrapping register */
67 tmp = pci_read_byte(dev, 0x40) & 0x3;
68 switch (tmp) {
69 case 3:
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +100070 internal_buses_supported &= BUS_FWH;
Rudolf Marek1d455e22016-08-04 18:14:47 -070071 break;
72 case 2:
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +100073 internal_buses_supported &= BUS_LPC;
Rudolf Marek1d455e22016-08-04 18:14:47 -070074 break;
75 default:
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +100076 internal_buses_supported &= BUS_PARALLEL;
Rudolf Marek1d455e22016-08-04 18:14:47 -070077 break;
78 }
79
80 return 0;
81}
82
hailfinger07e3ce02009-11-15 17:13:29 +000083static int enable_flash_sis85c496(struct pci_dev *dev, const char *name)
84{
85 uint8_t tmp;
86
87 tmp = pci_read_byte(dev, 0xd0);
88 tmp |= 0xf8;
hailfingerf31cbdc2010-11-10 15:25:18 +000089 rpci_write_byte(dev, 0xd0, tmp);
hailfinger07e3ce02009-11-15 17:13:29 +000090
91 return 0;
92}
93
94static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name)
95{
Edward O'Callaghanb51b6792019-08-12 22:42:22 +100096 #define SIS_MAPREG 0x40
hailfinger07e3ce02009-11-15 17:13:29 +000097 uint8_t new, newer;
98
99 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
100 /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Edward O'Callaghanb51b6792019-08-12 22:42:22 +1000101 new = pci_read_byte(dev, SIS_MAPREG);
hailfinger07e3ce02009-11-15 17:13:29 +0000102 new &= (~0x04); /* No idea why we clear bit 2. */
103 new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */
Edward O'Callaghanb51b6792019-08-12 22:42:22 +1000104 rpci_write_byte(dev, SIS_MAPREG, new);
105 newer = pci_read_byte(dev, SIS_MAPREG);
106 if (newer != new) { /* FIXME: share this with other code? */
107 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
108 SIS_MAPREG, new, name);
109 msg_pinfo("Stuck at 0x%02x.\n", newer);
hailfinger07e3ce02009-11-15 17:13:29 +0000110 return -1;
111 }
112 return 0;
113}
114
115static struct pci_dev *find_southbridge(uint16_t vendor, const char *name)
116{
117 struct pci_dev *sbdev;
uwe8d342eb2011-07-28 08:13:25 +0000118
hailfinger07e3ce02009-11-15 17:13:29 +0000119 sbdev = pci_dev_find_vendorclass(vendor, 0x0601);
120 if (!sbdev)
121 sbdev = pci_dev_find_vendorclass(vendor, 0x0680);
122 if (!sbdev)
123 sbdev = pci_dev_find_vendorclass(vendor, 0x0000);
124 if (!sbdev)
snelsone42c3802010-05-07 20:09:04 +0000125 msg_perr("No southbridge found for %s!\n", name);
hailfinger07e3ce02009-11-15 17:13:29 +0000126 if (sbdev)
snelsone42c3802010-05-07 20:09:04 +0000127 msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n",
uwe8d342eb2011-07-28 08:13:25 +0000128 sbdev->vendor_id, sbdev->device_id,
129 sbdev->bus, sbdev->dev, sbdev->func);
hailfinger07e3ce02009-11-15 17:13:29 +0000130 return sbdev;
131}
132
133static int enable_flash_sis501(struct pci_dev *dev, const char *name)
134{
135 uint8_t tmp;
136 int ret = 0;
137 struct pci_dev *sbdev;
138
139 sbdev = find_southbridge(dev->vendor_id, name);
140 if (!sbdev)
141 return -1;
142
143 ret = enable_flash_sis_mapping(sbdev, name);
144
145 tmp = sio_read(0x22, 0x80);
146 tmp &= (~0x20);
147 tmp |= 0x4;
148 sio_write(0x22, 0x80, tmp);
149
150 tmp = sio_read(0x22, 0x70);
151 tmp &= (~0x20);
152 tmp |= 0x4;
153 sio_write(0x22, 0x70, tmp);
Edward O'Callaghan8e31f5a2019-10-05 18:14:51 +1000154
hailfinger07e3ce02009-11-15 17:13:29 +0000155 return ret;
156}
157
158static int enable_flash_sis5511(struct pci_dev *dev, const char *name)
159{
160 uint8_t tmp;
161 int ret = 0;
162 struct pci_dev *sbdev;
163
164 sbdev = find_southbridge(dev->vendor_id, name);
165 if (!sbdev)
166 return -1;
167
168 ret = enable_flash_sis_mapping(sbdev, name);
169
170 tmp = sio_read(0x22, 0x50);
171 tmp &= (~0x20);
172 tmp |= 0x4;
173 sio_write(0x22, 0x50, tmp);
174
175 return ret;
176}
177
Edward O'Callaghanb51b6792019-08-12 22:42:22 +1000178static int enable_flash_sis5x0(struct pci_dev *dev, const char *name, uint8_t dis_mask, uint8_t en_mask)
hailfinger07e3ce02009-11-15 17:13:29 +0000179{
Edward O'Callaghanb51b6792019-08-12 22:42:22 +1000180 #define SIS_REG 0x45
hailfinger07e3ce02009-11-15 17:13:29 +0000181 uint8_t new, newer;
182 int ret = 0;
183 struct pci_dev *sbdev;
184
185 sbdev = find_southbridge(dev->vendor_id, name);
186 if (!sbdev)
187 return -1;
188
189 ret = enable_flash_sis_mapping(sbdev, name);
190
Edward O'Callaghanb51b6792019-08-12 22:42:22 +1000191 new = pci_read_byte(sbdev, SIS_REG);
192 new &= (~dis_mask);
193 new |= en_mask;
194 rpci_write_byte(sbdev, SIS_REG, new);
195 newer = pci_read_byte(sbdev, SIS_REG);
196 if (newer != new) { /* FIXME: share this with other code? */
197 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SIS_REG, new, name);
198 msg_pinfo("Stuck at 0x%02x\n", newer);
hailfinger07e3ce02009-11-15 17:13:29 +0000199 ret = -1;
200 }
201
202 return ret;
203}
204
Edward O'Callaghanb51b6792019-08-12 22:42:22 +1000205static int enable_flash_sis530(struct pci_dev *dev, const char *name)
206{
207 return enable_flash_sis5x0(dev, name, 0x20, 0x04);
208}
209
hailfinger07e3ce02009-11-15 17:13:29 +0000210static int enable_flash_sis540(struct pci_dev *dev, const char *name)
211{
Edward O'Callaghanb51b6792019-08-12 22:42:22 +1000212 return enable_flash_sis5x0(dev, name, 0x80, 0x40);
hailfinger07e3ce02009-11-15 17:13:29 +0000213}
214
uwe877ca432006-11-07 11:16:21 +0000215/* Datasheet:
216 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
217 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
218 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
219 * - Order Number: 290562-001
220 */
uwe6ed6d952007-12-04 21:49:06 +0000221static int enable_flash_piix4(struct pci_dev *dev, const char *name)
uwe12b38692006-11-05 18:26:08 +0000222{
223 uint16_t old, new;
uwef6641642007-05-09 10:17:44 +0000224 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
uwe12b38692006-11-05 18:26:08 +0000225
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +1000226 internal_buses_supported &= BUS_PARALLEL;
uwe56243f52009-12-08 17:26:24 +0000227
uwe12b38692006-11-05 18:26:08 +0000228 old = pci_read_word(dev, xbcs);
229
230 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
uwef6641642007-05-09 10:17:44 +0000231 * FFF00000-FFF7FFFF are forwarded to ISA).
uweb4e76662008-10-28 11:50:05 +0000232 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
uwef6641642007-05-09 10:17:44 +0000233 * Set bit 7: Extended BIOS Enable (PCI master accesses to
234 * FFF80000-FFFDFFFF are forwarded to ISA).
235 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
236 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
237 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
238 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
239 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
240 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
241 */
uweb4e76662008-10-28 11:50:05 +0000242 if (dev->device_id == 0x122e || dev->device_id == 0x7000
243 || dev->device_id == 0x1234)
244 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
uwe885bc822008-10-26 18:40:42 +0000245 else
246 new = old | 0x02c4;
uwe12b38692006-11-05 18:26:08 +0000247
248 if (new == old)
249 return 0;
250
hailfingerf31cbdc2010-11-10 15:25:18 +0000251 rpci_write_word(dev, xbcs, new);
uwe12b38692006-11-05 18:26:08 +0000252
Edward O'Callaghan54464472020-05-27 00:51:19 +1000253 if (pci_read_word(dev, xbcs) != new) { /* FIXME: share this with other code? */
Edward O'Callaghanc51a78b2020-07-09 19:29:45 +1000254 msg_pinfo("Setting register 0x%04x to 0x%04x on %s failed (WARNING ONLY).\n", xbcs, new, name);
uwe12b38692006-11-05 18:26:08 +0000255 return -1;
256 }
uwebe4477b2007-08-23 16:08:21 +0000257
uwe12b38692006-11-05 18:26:08 +0000258 return 0;
259}
260
Sam McNally5bb94e32020-08-20 17:56:59 +1000261/* Handle BIOS_CNTL (aka. BCR). Disable locks and enable writes. The register can either be in PCI config space
262 * at the offset given by 'bios_cntl' or at the memory-mapped address 'addr'.
263 *
264 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, in Poulsbo, Tunnel Creek and other Atom
265 * chipsets/SoCs it is even 32b, but just treating it as 8 bit wide seems to work fine in practice. */
266static int enable_flash_ich_bios_cntl_common(enum ich_chipset ich_generation, void *addr,
267 struct pci_dev *dev, uint8_t bios_cntl)
rminnich1bcc2b22004-09-28 20:09:06 +0000268{
stefanct89b4ae52011-09-09 12:46:32 +0000269 uint8_t old, new, wanted;
stepanca42a0b2006-09-06 15:48:48 +0000270
Sam McNally5bb94e32020-08-20 17:56:59 +1000271 switch (ich_generation) {
272 case CHIPSET_ICH_UNKNOWN:
273 return ERROR_FATAL;
274 /* Non-SPI-capable */
275 case CHIPSET_ICH:
276 case CHIPSET_ICH2345:
277 break;
278 /* Some Atom chipsets are special: The second byte of BIOS_CNTL (D9h) contains a prefetch bit similar to
279 * what other SPI-capable chipsets have at DCh. Others like Bay Trail use a memmapped register.
280 * The Tunnel Creek datasheet contains a lot of details about the SPI controller, among other things it
281 * mentions that the prefetching and caching does only happen for direct memory reads.
282 * Therefore - at least for Tunnel Creek - it should not matter to flashrom because we use the
283 * programmed access only and not memory mapping. */
284 case CHIPSET_TUNNEL_CREEK:
285 case CHIPSET_POULSBO:
286 case CHIPSET_CENTERTON:
287 old = pci_read_byte(dev, bios_cntl + 1);
288 msg_pdbg("BIOS Prefetch Enable: %sabled, ", (old & 1) ? "en" : "dis");
289 break;
290 case CHIPSET_BAYTRAIL:
291 case CHIPSET_ICH7:
292 default: /* Future version might behave the same */
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100293 if (ich_generation == CHIPSET_BAYTRAIL)
Sam McNally5bb94e32020-08-20 17:56:59 +1000294 old = (mmio_readl(addr) >> 2) & 0x3;
295 else
296 old = (pci_read_byte(dev, bios_cntl) >> 2) & 0x3;
297 msg_pdbg("SPI Read Configuration: ");
298 if (old == 3)
299 msg_pdbg("invalid prefetching/caching settings, ");
300 else
301 msg_pdbg("prefetching %sabled, caching %sabled, ",
302 (old & 0x2) ? "en" : "dis",
303 (old & 0x1) ? "dis" : "en");
304 }
305
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100306 if (ich_generation == CHIPSET_BAYTRAIL)
Sam McNally5bb94e32020-08-20 17:56:59 +1000307 wanted = old = mmio_readl(addr);
308 else
309 wanted = old = pci_read_byte(dev, bios_cntl);
hailfinger7acfc8c2008-03-14 17:20:59 +0000310
stefanct94cd8652011-06-11 18:16:50 +0000311 /*
312 * Quote from the 6 Series datasheet (Document Number: 324645-004):
313 * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP)
314 * 1 = BIOS region SMM protection is enabled.
315 * The BIOS Region is not writable unless all processors are in SMM."
Stefan Reinauere248bac2011-10-12 10:25:47 -0700316 * In earlier chipsets this bit is reserved.
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000317 *
318 * Try to unset it in any case.
319 * It won't hurt and makes sense in some cases according to Stefan Reinauer.
Sam McNally5bb94e32020-08-20 17:56:59 +1000320 *
321 * At least in Centerton aforementioned bit is located at bit 7. It is unspecified in all other Atom
322 * and Desktop chipsets before Ibex Peak/5 Series, but we reset bit 5 anyway.
Stefan Reinauere248bac2011-10-12 10:25:47 -0700323 */
Sam McNally5bb94e32020-08-20 17:56:59 +1000324 int smm_bwp_bit;
325 if (ich_generation == CHIPSET_CENTERTON)
326 smm_bwp_bit = 7;
327 else
328 smm_bwp_bit = 5;
329 wanted &= ~(1 << smm_bwp_bit);
rminnich1bcc2b22004-09-28 20:09:06 +0000330
Sam McNally5bb94e32020-08-20 17:56:59 +1000331 /* Tunnel Creek has a cache disable at bit 2 of the lowest BIOS_CNTL byte. */
332 if (ich_generation == CHIPSET_TUNNEL_CREEK)
333 wanted |= (1 << 2);
334
335 wanted |= (1 << 0); /* Set BIOS Write Enable */
336 wanted &= ~(1 << 1); /* Disable lock (futile) */
Stefan Reinauera5f4e822011-10-12 10:25:47 -0700337
338 /* Only write the register if it's necessary */
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000339 if (wanted != old) {
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100340 if (ich_generation == CHIPSET_BAYTRAIL) {
Sam McNally5bb94e32020-08-20 17:56:59 +1000341 rmmio_writel(wanted, addr);
342 new = mmio_readl(addr);
343 } else {
344 rpci_write_byte(dev, bios_cntl, wanted);
345 new = pci_read_byte(dev, bios_cntl);
346 }
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000347 } else
348 new = old;
rminnich1bcc2b22004-09-28 20:09:06 +0000349
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000350 msg_pdbg("\nBIOS_CNTL = 0x%02x: ", new);
351 msg_pdbg("BIOS Lock Enable: %sabled, ", (new & (1 << 1)) ? "en" : "dis");
352 msg_pdbg("BIOS Write Enable: %sabled\n", (new & (1 << 0)) ? "en" : "dis");
Sam McNally5bb94e32020-08-20 17:56:59 +1000353 if (new & (1 << smm_bwp_bit))
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000354 msg_pwarn("Warning: BIOS region SMM protection is enabled!\n");
rminnich1bcc2b22004-09-28 20:09:06 +0000355
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000356 if (new != wanted)
Sam McNally5bb94e32020-08-20 17:56:59 +1000357 msg_pwarn("Warning: Setting BIOS Control at 0x%x from 0x%02x to 0x%02x failed.\n"
358 "New value is 0x%02x.\n", bios_cntl, old, wanted, new);
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000359
Edward O'Callaghanc51a78b2020-07-09 19:29:45 +1000360 /* Return an error if we could not set the write enable only. */
Edward O'Callaghan37b8a6e2019-08-12 16:19:39 +1000361 if (!(new & (1 << 0)))
rminnich1bcc2b22004-09-28 20:09:06 +0000362 return -1;
uwebe4477b2007-08-23 16:08:21 +0000363
rminnich1bcc2b22004-09-28 20:09:06 +0000364 return 0;
365}
366
Sam McNally5dafa9b2020-08-13 20:10:47 +1000367static int enable_flash_ich_bios_cntl_config_space(struct pci_dev *dev, enum ich_chipset ich_generation,
368 uint8_t bios_cntl)
Furquan Shaikh44088752016-07-11 22:48:08 -0700369{
Sam McNally5bb94e32020-08-20 17:56:59 +1000370 return enable_flash_ich_bios_cntl_common(ich_generation, NULL, dev, bios_cntl);
Furquan Shaikh44088752016-07-11 22:48:08 -0700371}
372
Sam McNally5dafa9b2020-08-13 20:10:47 +1000373static int enable_flash_ich_bios_cntl_memmapped(enum ich_chipset ich_generation, void *addr)
Furquan Shaikh44088752016-07-11 22:48:08 -0700374{
Sam McNally5bb94e32020-08-20 17:56:59 +1000375 return enable_flash_ich_bios_cntl_common(ich_generation, addr, NULL, 0);
Furquan Shaikh44088752016-07-11 22:48:08 -0700376}
377
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000378static int enable_flash_ich_fwh_decode(struct pci_dev *dev, enum ich_chipset ich_generation)
stepancb140092006-03-31 11:26:55 +0000379{
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000380 uint8_t fwh_sel1 = 0, fwh_sel2 = 0, fwh_dec_en_lo = 0, fwh_dec_en_hi = 0; /* silence compilers */
381 bool implemented = 0;
Edward O'Callaghan22b43f32020-07-10 19:50:25 +1000382 void *ilb = NULL; /* Only for Baytrail */
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000383 switch (ich_generation) {
384 case CHIPSET_ICH:
385 /* FIXME: Unlike later chipsets, ICH and ICH-0 do only support mapping of the top-most 4MB
386 * and therefore do only feature FWH_DEC_EN (E3h, different default too) and FWH_SEL (E8h). */
387 break;
388 case CHIPSET_ICH2345:
Edward O'Callaghan60e1cb82019-08-13 10:01:05 +1000389 fwh_sel1 = 0xe8;
390 fwh_sel2 = 0xee;
391 fwh_dec_en_lo = 0xf0;
392 fwh_dec_en_hi = 0xe3;
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000393 implemented = 1;
394 break;
395 case CHIPSET_POULSBO:
396 case CHIPSET_TUNNEL_CREEK:
397 /* FIXME: Similar to ICH and ICH-0, Tunnel Creek and Poulsbo do only feature one register each,
398 * FWH_DEC_EN (D7h) and FWH_SEL (D0h). */
399 break;
Edward O'Callaghan22b43f32020-07-10 19:50:25 +1000400 case CHIPSET_CENTERTON:
401 /* FIXME: Similar to above FWH_DEC_EN (D4h) and FWH_SEL (D0h). */
402 break;
403 case CHIPSET_BAYTRAIL: {
404 uint32_t ilb_base = pci_read_long(dev, 0x50) & 0xfffffe00; /* bits 31:9 */
405 if (ilb_base == 0) {
406 msg_perr("Error: Invalid ILB_BASE_ADDRESS\n");
407 return ERROR_FATAL;
408 }
409 ilb = rphysmap("BYT IBASE", ilb_base, 512);
410 fwh_sel1 = 0x18;
411 fwh_dec_en_lo = 0xd8;
412 fwh_dec_en_hi = 0xd9;
413 implemented = 1;
414 break;
415 }
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000416 case CHIPSET_ICH6:
417 case CHIPSET_ICH7:
418 default: /* Future version might behave the same */
419 fwh_sel1 = 0xd0;
420 fwh_sel2 = 0xd4;
421 fwh_dec_en_lo = 0xd8;
422 fwh_dec_en_hi = 0xd9;
423 implemented = 1;
424 break;
Edward O'Callaghan60e1cb82019-08-13 10:01:05 +1000425 }
Edward O'Callaghan47d04ce2019-08-12 18:02:34 +1000426
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000427 char *idsel = extract_programmer_param("fwh_idsel");
hailfinger1ef766d2010-07-06 09:55:48 +0000428 if (idsel && strlen(idsel)) {
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000429 if (!implemented) {
430 msg_perr("Error: fwh_idsel= specified, but (yet) unsupported on this chipset.\n");
431 goto idsel_garbage_out;
432 }
hailfingerd2ea87f2011-07-25 22:44:09 +0000433 errno = 0;
434 /* Base 16, nothing else makes sense. */
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000435 uint64_t fwh_idsel = (uint64_t)strtoull(idsel, NULL, 16);
hailfingerd2ea87f2011-07-25 22:44:09 +0000436 if (errno) {
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000437 msg_perr("Error: fwh_idsel= specified, but value could not be converted.\n");
hailfingerd2ea87f2011-07-25 22:44:09 +0000438 goto idsel_garbage_out;
439 }
Edward O'Callaghan22b43f32020-07-10 19:50:25 +1000440 uint64_t fwh_mask = 0xffffffff;
441 if (fwh_sel2 > 0)
442 fwh_mask |= (0xffffULL << 32);
443 if (fwh_idsel & ~fwh_mask) {
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000444 msg_perr("Error: fwh_idsel= specified, but value had unused bits set.\n");
hailfingerd2ea87f2011-07-25 22:44:09 +0000445 goto idsel_garbage_out;
446 }
Edward O'Callaghan22b43f32020-07-10 19:50:25 +1000447 uint64_t fwh_idsel_old;
448 if (ich_generation == CHIPSET_BAYTRAIL) {
449 fwh_idsel_old = mmio_readl(ilb + fwh_sel1);
450 rmmio_writel(fwh_idsel, ilb + fwh_sel1);
451 } else {
452 fwh_idsel_old = (uint64_t)pci_read_long(dev, fwh_sel1) << 16;
453 rpci_write_long(dev, fwh_sel1, (fwh_idsel >> 16) & 0xffffffff);
454 if (fwh_sel2 > 0) {
455 fwh_idsel_old |= pci_read_word(dev, fwh_sel2);
456 rpci_write_word(dev, fwh_sel2, fwh_idsel & 0xffff);
457 }
458 }
Stefan Tauner13028d82014-07-13 17:06:11 +0000459 msg_pdbg("Setting IDSEL from 0x%012" PRIx64 " to 0x%012" PRIx64 " for top 16 MB.\n",
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000460 fwh_idsel_old, fwh_idsel);
hailfingere76cfaf2009-12-17 15:20:01 +0000461 /* FIXME: Decode settings are not changed. */
hailfinger1ef766d2010-07-06 09:55:48 +0000462 } else if (idsel) {
hailfingerd2ea87f2011-07-25 22:44:09 +0000463 msg_perr("Error: fwh_idsel= specified, but no value given.\n");
stefanctd6efe1a2011-09-03 11:22:27 +0000464idsel_garbage_out:
hailfinger1ef766d2010-07-06 09:55:48 +0000465 free(idsel);
uwe62b23062011-09-06 18:49:31 +0000466 return ERROR_FATAL;
hailfinger3553ccf2009-08-13 23:23:37 +0000467 }
hailfinger1ef766d2010-07-06 09:55:48 +0000468 free(idsel);
hailfinger3553ccf2009-08-13 23:23:37 +0000469
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000470 if (!implemented) {
Stefan Tauner13028d82014-07-13 17:06:11 +0000471 msg_pdbg2("FWH IDSEL handling is not implemented on this chipset.\n");
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000472 return 0;
473 }
474
hailfingere76cfaf2009-12-17 15:20:01 +0000475 /* Ignore all legacy ranges below 1 MB.
476 * We currently only support flashing the chip which responds to
477 * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations
478 * have to be adjusted.
479 */
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000480 int max_decode_fwh_idsel = 0, max_decode_fwh_decode = 0;
481 bool contiguous = 1;
Edward O'Callaghan22b43f32020-07-10 19:50:25 +1000482 uint32_t fwh_conf;
483 if (ich_generation == CHIPSET_BAYTRAIL)
484 fwh_conf = mmio_readl(ilb + fwh_sel1);
485 else
486 fwh_conf = pci_read_long(dev, fwh_sel1);
487
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000488 int i;
hailfingere76cfaf2009-12-17 15:20:01 +0000489 /* FWH_SEL1 */
hailfingere76cfaf2009-12-17 15:20:01 +0000490 for (i = 7; i >= 0; i--) {
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000491 int tmp = (fwh_conf >> (i * 4)) & 0xf;
Stefan Tauner13028d82014-07-13 17:06:11 +0000492 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
uwe8d342eb2011-07-28 08:13:25 +0000493 (0x1ff8 + i) * 0x80000,
494 (0x1ff0 + i) * 0x80000,
495 tmp);
hailfingere76cfaf2009-12-17 15:20:01 +0000496 if ((tmp == 0) && contiguous) {
497 max_decode_fwh_idsel = (8 - i) * 0x80000;
498 } else {
499 contiguous = 0;
500 }
501 }
Edward O'Callaghan22b43f32020-07-10 19:50:25 +1000502 if (fwh_sel2 > 0) {
503 /* FWH_SEL2 */
504 fwh_conf = pci_read_word(dev, fwh_sel2);
505 for (i = 3; i >= 0; i--) {
506 int tmp = (fwh_conf >> (i * 4)) & 0xf;
507 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
508 (0xff4 + i) * 0x100000,
509 (0xff0 + i) * 0x100000,
510 tmp);
511 if ((tmp == 0) && contiguous) {
512 max_decode_fwh_idsel = (8 - i) * 0x100000;
513 } else {
514 contiguous = 0;
515 }
hailfingere76cfaf2009-12-17 15:20:01 +0000516 }
517 }
518 contiguous = 1;
519 /* FWH_DEC_EN1 */
Edward O'Callaghan47d04ce2019-08-12 18:02:34 +1000520 fwh_conf = pci_read_byte(dev, fwh_dec_en_hi);
521 fwh_conf <<= 8;
522 fwh_conf |= pci_read_byte(dev, fwh_dec_en_lo);
hailfingere76cfaf2009-12-17 15:20:01 +0000523 for (i = 7; i >= 0; i--) {
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000524 int tmp = (fwh_conf >> (i + 0x8)) & 0x1;
Stefan Tauner13028d82014-07-13 17:06:11 +0000525 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
uwe8d342eb2011-07-28 08:13:25 +0000526 (0x1ff8 + i) * 0x80000,
527 (0x1ff0 + i) * 0x80000,
528 tmp ? "en" : "dis");
mkarcher3d945082010-01-03 15:09:17 +0000529 if ((tmp == 1) && contiguous) {
hailfingere76cfaf2009-12-17 15:20:01 +0000530 max_decode_fwh_decode = (8 - i) * 0x80000;
531 } else {
532 contiguous = 0;
533 }
534 }
535 for (i = 3; i >= 0; i--) {
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000536 int tmp = (fwh_conf >> i) & 0x1;
Stefan Tauner13028d82014-07-13 17:06:11 +0000537 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
uwe8d342eb2011-07-28 08:13:25 +0000538 (0xff4 + i) * 0x100000,
539 (0xff0 + i) * 0x100000,
540 tmp ? "en" : "dis");
mkarcher3d945082010-01-03 15:09:17 +0000541 if ((tmp == 1) && contiguous) {
hailfingere76cfaf2009-12-17 15:20:01 +0000542 max_decode_fwh_decode = (8 - i) * 0x100000;
543 } else {
544 contiguous = 0;
545 }
546 }
547 max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode);
Stefan Tauner13028d82014-07-13 17:06:11 +0000548 msg_pdbg("Maximum FWH chip size: 0x%x bytes\n", max_rom_decode.fwh);
hailfingere76cfaf2009-12-17 15:20:01 +0000549
Edward O'Callaghan47d04ce2019-08-12 18:02:34 +1000550 return 0;
551}
552
Sam McNallycfa98812020-08-13 22:51:13 +1000553static int enable_flash_ich_fwh(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
Edward O'Callaghanea053772019-08-13 10:32:30 +1000554{
Edward O'Callaghan60e1cb82019-08-13 10:01:05 +1000555 int err;
556
557 /* Configure FWH IDSEL decoder maps. */
Edward O'Callaghan9ff09132019-09-04 13:48:46 +1000558 if ((err = enable_flash_ich_fwh_decode(dev, ich_generation)) != 0)
Edward O'Callaghan60e1cb82019-08-13 10:01:05 +1000559 return err;
560
561 internal_buses_supported &= BUS_FWH;
Sam McNallycfa98812020-08-13 22:51:13 +1000562 return enable_flash_ich_bios_cntl_config_space(dev, ich_generation, bios_cntl);
Edward O'Callaghanea053772019-08-13 10:32:30 +1000563}
564
Edward O'Callaghan9843dba2019-09-04 15:05:29 +1000565static int enable_flash_ich0(struct pci_dev *dev, const char *name)
566{
Sam McNallycfa98812020-08-13 22:51:13 +1000567 return enable_flash_ich_fwh(dev, CHIPSET_ICH, 0x4e);
Edward O'Callaghan9843dba2019-09-04 15:05:29 +1000568}
569
570static int enable_flash_ich2345(struct pci_dev *dev, const char *name)
571{
Sam McNallycfa98812020-08-13 22:51:13 +1000572 return enable_flash_ich_fwh(dev, CHIPSET_ICH2345, 0x4e);
Edward O'Callaghan9843dba2019-09-04 15:05:29 +1000573}
574
Edward O'Callaghanea053772019-08-13 10:32:30 +1000575static int enable_flash_ich6(struct pci_dev *dev, const char *name)
576{
Sam McNallycfa98812020-08-13 22:51:13 +1000577 return enable_flash_ich_fwh(dev, CHIPSET_ICH6, 0xdc);
Edward O'Callaghanea053772019-08-13 10:32:30 +1000578}
579
libva6245f02009-12-21 15:30:46 +0000580static int enable_flash_poulsbo(struct pci_dev *dev, const char *name)
581{
Sam McNallycfa98812020-08-13 22:51:13 +1000582 return enable_flash_ich_fwh(dev, CHIPSET_POULSBO, 0xd8);
libva6245f02009-12-21 15:30:46 +0000583}
584
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100585static enum chipbustype enable_flash_ich_report_gcs(
586 struct pci_dev *const dev, const enum ich_chipset ich_generation, const uint8_t *const rcrb)
hailfinger7acfc8c2008-03-14 17:20:59 +0000587{
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100588 uint32_t gcs;
Sam McNally1097aa72020-08-13 22:25:15 +1000589 const char *reg_name;
590 bool bild, top_swap;
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100591
592 switch (ich_generation) {
593 case CHIPSET_BAYTRAIL:
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100594 reg_name = "GCS";
Edward O'Callaghan7a9087e2020-12-02 11:10:55 +1100595 gcs = mmio_readl(rcrb + 0);
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100596 bild = gcs & 1;
597 top_swap = (gcs & 2) >> 1;
598 break;
599 case CHIPSET_100_SERIES_SUNRISE_POINT:
600 case CHIPSET_C620_SERIES_LEWISBURG:
601 case CHIPSET_300_SERIES_CANNON_POINT:
Matt DeVillier81bc4d32020-08-12 12:48:06 -0500602 case CHIPSET_400_SERIES_COMET_POINT:
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100603 case CHIPSET_APOLLO_LAKE:
Angel Pons00b29cf2020-07-10 17:04:10 +0200604 case CHIPSET_GEMINI_LAKE:
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100605 reg_name = "BIOS_SPI_BC";
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100606 gcs = pci_read_long(dev, 0xdc);
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100607 bild = (gcs >> 7) & 1;
608 top_swap = (gcs >> 4) & 1;
609 break;
610 default:
611 reg_name = "GCS";
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100612 gcs = mmio_readl(rcrb + 0x3410);
Edward O'Callaghancc45f3a2020-12-02 18:38:53 +1100613 bild = gcs & 1;
614 top_swap = mmio_readb(rcrb + 0x3414) & 1;
Edward O'Callaghanb4583362020-11-16 10:48:55 +1100615 break;
616 }
617
618 msg_pdbg("%s = 0x%x: ", reg_name, gcs);
619 msg_pdbg("BIOS Interface Lock-Down: %sabled, ", bild ? "en" : "dis");
620
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000621 struct boot_straps {
622 const char *name;
623 enum chipbustype bus;
624 };
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000625 static const struct boot_straps boot_straps_EP80579[] =
626 { { "SPI", BUS_SPI },
Edward O'Callaghan96678012020-07-10 14:43:46 +1000627 { "reserved", BUS_NONE },
628 { "reserved", BUS_NONE },
629 { "LPC", BUS_LPC | BUS_FWH } };
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000630 static const struct boot_straps boot_straps_ich7_nm10[] =
Edward O'Callaghan96678012020-07-10 14:43:46 +1000631 { { "reserved", BUS_NONE },
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000632 { "SPI", BUS_SPI },
Edward O'Callaghan96678012020-07-10 14:43:46 +1000633 { "PCI", BUS_NONE },
634 { "LPC", BUS_LPC | BUS_FWH } };
635 static const struct boot_straps boot_straps_tunnel_creek[] =
636 { { "SPI", BUS_SPI },
637 { "LPC", BUS_LPC | BUS_FWH } };
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000638 static const struct boot_straps boot_straps_ich8910[] =
639 { { "SPI", BUS_SPI },
640 { "SPI", BUS_SPI },
Edward O'Callaghan96678012020-07-10 14:43:46 +1000641 { "PCI", BUS_NONE },
642 { "LPC", BUS_LPC | BUS_FWH } };
643 static const struct boot_straps boot_straps_pch567[] =
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000644 { { "LPC", BUS_LPC | BUS_FWH },
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000645 { "reserved", BUS_NONE },
646 { "PCI", BUS_NONE },
647 { "SPI", BUS_SPI } };
648 static const struct boot_straps boot_straps_pch89_baytrail[] =
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000649 { { "LPC", BUS_LPC | BUS_FWH },
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000650 { "reserved", BUS_NONE },
651 { "reserved", BUS_NONE },
652 { "SPI", BUS_SPI } };
653 static const struct boot_straps boot_straps_pch8_lp[] =
654 { { "SPI", BUS_SPI },
655 { "LPC", BUS_LPC | BUS_FWH } };
656 static const struct boot_straps boot_straps_apl[] =
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000657 { { "SPI", BUS_SPI },
Edward O'Callaghan96678012020-07-10 14:43:46 +1000658 { "reserved", BUS_NONE } };
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000659 static const struct boot_straps boot_straps_unknown[] =
Edward O'Callaghan96678012020-07-10 14:43:46 +1000660 { { "unknown", BUS_NONE },
661 { "unknown", BUS_NONE },
662 { "unknown", BUS_NONE },
663 { "unknown", BUS_NONE } };
stefanct1e134512011-08-27 21:19:56 +0000664
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000665 const struct boot_straps *boot_straps;
Edward O'Callaghan1e286152019-09-06 11:48:32 +1000666 switch (ich_generation) {
stefanctc035c192011-11-06 23:51:09 +0000667 case CHIPSET_ICH7:
stefanct1e134512011-08-27 21:19:56 +0000668 /* EP80579 may need further changes, but this is the least
669 * intrusive way to get correct BOOT Strap printing without
670 * changing the rest of its code path). */
Sam McNallycb49d832020-08-14 13:41:10 +1000671 if (dev->device_id == 0x5031)
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000672 boot_straps = boot_straps_EP80579;
stefanct1e134512011-08-27 21:19:56 +0000673 else
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000674 boot_straps = boot_straps_ich7_nm10;
stefanct1e134512011-08-27 21:19:56 +0000675 break;
stefanctc035c192011-11-06 23:51:09 +0000676 case CHIPSET_ICH8:
677 case CHIPSET_ICH9:
678 case CHIPSET_ICH10:
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000679 boot_straps = boot_straps_ich8910;
stefanct1e134512011-08-27 21:19:56 +0000680 break;
Edward O'Callaghan96678012020-07-10 14:43:46 +1000681 case CHIPSET_TUNNEL_CREEK:
682 boot_straps = boot_straps_tunnel_creek;
683 break;
stefanctc035c192011-11-06 23:51:09 +0000684 case CHIPSET_5_SERIES_IBEX_PEAK:
685 case CHIPSET_6_SERIES_COUGAR_POINT:
Duncan Laurie32e60552013-02-28 09:42:07 -0800686 case CHIPSET_7_SERIES_PANTHER_POINT:
Edward O'Callaghan96678012020-07-10 14:43:46 +1000687 boot_straps = boot_straps_pch567;
stefanct1e134512011-08-27 21:19:56 +0000688 break;
Duncan Laurie32e60552013-02-28 09:42:07 -0800689 case CHIPSET_8_SERIES_LYNX_POINT:
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000690 case CHIPSET_9_SERIES_WILDCAT_POINT:
691 case CHIPSET_BAYTRAIL:
692 boot_straps = boot_straps_pch89_baytrail;
Duncan Laurie32e60552013-02-28 09:42:07 -0800693 break;
694 case CHIPSET_8_SERIES_LYNX_POINT_LP:
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000695 case CHIPSET_9_SERIES_WILDCAT_POINT_LP:
Ramya Vijaykumara9a64f92015-04-15 15:26:22 +0530696 case CHIPSET_100_SERIES_SUNRISE_POINT:
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000697 case CHIPSET_C620_SERIES_LEWISBURG:
698 case CHIPSET_300_SERIES_CANNON_POINT:
Matt DeVillier81bc4d32020-08-12 12:48:06 -0500699 case CHIPSET_400_SERIES_COMET_POINT:
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000700 boot_straps = boot_straps_pch8_lp;
701 break;
Edward O'Callaghan272b27c2020-05-26 17:06:04 +1000702 case CHIPSET_APOLLO_LAKE:
Angel Pons00b29cf2020-07-10 17:04:10 +0200703 case CHIPSET_GEMINI_LAKE:
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000704 boot_straps = boot_straps_apl;
705 break;
706 case CHIPSET_8_SERIES_WELLSBURG: // FIXME: check datasheet
707 case CHIPSET_CENTERTON: // FIXME: Datasheet does not mention GCS at all
708 boot_straps = boot_straps_unknown;
Duncan Laurie32e60552013-02-28 09:42:07 -0800709 break;
stefanct1e134512011-08-27 21:19:56 +0000710 default:
Edward O'Callaghanc8175642020-07-10 14:48:57 +1000711 msg_gerr("%s: unknown ICH generation. Please report!\n", __func__);
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000712 boot_straps = boot_straps_unknown;
stefanct1e134512011-08-27 21:19:56 +0000713 break;
714 }
uwefa98ca12008-10-18 21:14:13 +0000715
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100716 uint8_t bbs;
Edward O'Callaghan1e286152019-09-06 11:48:32 +1000717 switch (ich_generation) {
Sam McNallyfeda9a42020-08-14 14:22:21 +1000718 case CHIPSET_TUNNEL_CREEK:
719 bbs = (gcs >> 1) & 0x1;
720 break;
Duncan Laurie32e60552013-02-28 09:42:07 -0800721 case CHIPSET_8_SERIES_LYNX_POINT_LP:
Sam McNally994a2e22020-08-14 14:32:54 +1000722 case CHIPSET_9_SERIES_WILDCAT_POINT_LP:
723 /* LP PCHs use a single bit for BBS */
Duncan Laurie32e60552013-02-28 09:42:07 -0800724 bbs = (gcs >> 10) & 0x1;
725 break;
Ramya Vijaykumara9a64f92015-04-15 15:26:22 +0530726 case CHIPSET_100_SERIES_SUNRISE_POINT:
Sam McNally994a2e22020-08-14 14:32:54 +1000727 case CHIPSET_C620_SERIES_LEWISBURG:
728 case CHIPSET_300_SERIES_CANNON_POINT:
Matt DeVillier81bc4d32020-08-12 12:48:06 -0500729 case CHIPSET_400_SERIES_COMET_POINT:
Edward O'Callaghan272b27c2020-05-26 17:06:04 +1000730 case CHIPSET_APOLLO_LAKE:
Angel Pons00b29cf2020-07-10 17:04:10 +0200731 case CHIPSET_GEMINI_LAKE:
Sam McNally994a2e22020-08-14 14:32:54 +1000732 bbs = (gcs >> 6) & 0x1;
Ramya Vijaykumara9a64f92015-04-15 15:26:22 +0530733 break;
Duncan Laurie32e60552013-02-28 09:42:07 -0800734 default:
Sam McNally994a2e22020-08-14 14:32:54 +1000735 /* Other chipsets use two bits for BBS */
Duncan Laurie32e60552013-02-28 09:42:07 -0800736 bbs = (gcs >> 10) & 0x3;
737 break;
738 }
Edward O'Callaghan584b8772019-08-12 14:02:18 +1000739 msg_pdbg("Boot BIOS Straps: 0x%x (%s)\n", bbs, boot_straps[bbs].name);
hailfinger62b38622008-05-14 14:51:22 +0000740
Sam McNally1097aa72020-08-13 22:25:15 +1000741 /* Centerton has its TS bit in [GPE0BLK] + 0x30 while the exact location for Tunnel Creek is unknown. */
742 if (ich_generation != CHIPSET_TUNNEL_CREEK && ich_generation != CHIPSET_CENTERTON)
743 msg_pdbg("Top Swap: %s\n", (top_swap) ? "enabled (A16(+) inverted)" : "not enabled");
744
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100745 return boot_straps[bbs].bus;
746}
747
748static int enable_flash_ich_spi(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
749{
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100750 /* Get physical address of Root Complex Register Block */
Edward O'Callaghanb667fb02020-11-16 16:04:13 +1100751 uint32_t rcra = pci_read_long(dev, 0xf0) & 0xffffc000;
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100752 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcra);
753
754 /* Map RCBA to virtual memory */
755 void *rcrb = rphysmap("ICH RCRB", rcra, 0x4000);
756 if (rcrb == ERROR_PTR)
757 return ERROR_FATAL;
758
759 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
stepandbd3af12008-06-27 16:28:34 +0000760
Edward O'Callaghanb667fb02020-11-16 16:04:13 +1100761 /* Handle FWH-related parameters and initialization */
762 int ret_fwh = enable_flash_ich_fwh(dev, ich_generation, bios_cntl);
763 if (ret_fwh == ERROR_FATAL)
764 return ret_fwh;
765
Sam McNally994a2e22020-08-14 14:32:54 +1000766 /*
767 * It seems that the ICH7 does not support SPI and LPC chips at the same time. When booted
768 * from LPC, the SCIP bit will never clear, which causes long delays and many error messages.
769 * To avoid this, we will not enable SPI on ICH7 when the southbridge is strapped to LPC.
stepan3bdf6182008-06-30 23:45:22 +0000770 */
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100771 if (ich_generation == CHIPSET_ICH7 && (boot_buses & BUS_LPC))
772 return 0;
773
Edward O'Callaghan6f2f8322019-09-06 11:55:24 +1000774 /* SPIBAR is at RCRB+0x3020 for ICH[78], Tunnel Creek and Centerton, and RCRB+0x3800 for ICH9. */
775 uint16_t spibar_offset;
776 switch (ich_generation) {
Sam McNally1097aa72020-08-13 22:25:15 +1000777 case CHIPSET_BAYTRAIL:
Edward O'Callaghan6f2f8322019-09-06 11:55:24 +1000778 case CHIPSET_ICH_UNKNOWN:
779 return ERROR_FATAL;
780 case CHIPSET_ICH7:
781 case CHIPSET_ICH8:
782 case CHIPSET_TUNNEL_CREEK:
Sam McNally994a2e22020-08-14 14:32:54 +1000783 case CHIPSET_CENTERTON:
Edward O'Callaghan6f2f8322019-09-06 11:55:24 +1000784 spibar_offset = 0x3020;
785 break;
786 case CHIPSET_ICH9:
787 default: /* Future version might behave the same */
788 spibar_offset = 0x3800;
789 break;
790 }
791 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " + 0x%04x\n", PRIxPTR_WIDTH, (uintptr_t)rcrb, spibar_offset);
792 void *spibar = rcrb + spibar_offset;
stepan3bdf6182008-06-30 23:45:22 +0000793
uwe8d342eb2011-07-28 08:13:25 +0000794 /* This adds BUS_SPI */
Edward O'Callaghanbb51dcc2020-05-27 12:22:55 +1000795 int ret_spi = ich_init_spi(spibar, ich_generation);
stefanct83d99e82011-11-08 10:55:54 +0000796 if (ret_spi == ERROR_FATAL)
797 return ret_spi;
Furquan Shaikh44088752016-07-11 22:48:08 -0700798
Edward O'Callaghanb667fb02020-11-16 16:04:13 +1100799 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
800 return ERROR_NONFATAL;
hailfinger7acfc8c2008-03-14 17:20:59 +0000801
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +1100802 /* Suppress unknown laptop warning if we booted from SPI. */
803 if (boot_buses & BUS_SPI)
804 laptop_ok = 1;
805
Edward O'Callaghanb667fb02020-11-16 16:04:13 +1100806 return 0;
stepan3bdf6182008-06-30 23:45:22 +0000807}
stepandbd3af12008-06-27 16:28:34 +0000808
Edward O'Callaghan9843dba2019-09-04 15:05:29 +1000809static int enable_flash_tunnelcreek(struct pci_dev *dev, const char *name)
810{
Sam McNallyfeda9a42020-08-14 14:22:21 +1000811 return enable_flash_ich_spi(dev, CHIPSET_TUNNEL_CREEK, 0xd8);
Edward O'Callaghan9843dba2019-09-04 15:05:29 +1000812}
813
Sam McNallybcd0e1a2020-08-14 15:08:31 +1000814static int enable_flash_s12x0(struct pci_dev *dev, const char *name)
815{
816 return enable_flash_ich_spi(dev, CHIPSET_CENTERTON, 0xd8);
817}
818
hailfinger030d3142008-05-16 14:39:39 +0000819static int enable_flash_ich7(struct pci_dev *dev, const char *name)
hailfinger62b38622008-05-14 14:51:22 +0000820{
Sam McNallyd98959a2020-08-14 14:02:48 +1000821 return enable_flash_ich_spi(dev, CHIPSET_ICH7, 0xdc);
hailfinger62b38622008-05-14 14:51:22 +0000822}
823
hailfinger030d3142008-05-16 14:39:39 +0000824static int enable_flash_ich8(struct pci_dev *dev, const char *name)
825{
Sam McNallyd98959a2020-08-14 14:02:48 +1000826 return enable_flash_ich_spi(dev, CHIPSET_ICH8, 0xdc);
hailfinger030d3142008-05-16 14:39:39 +0000827}
828
hailfinger62b38622008-05-14 14:51:22 +0000829static int enable_flash_ich9(struct pci_dev *dev, const char *name)
830{
Sam McNallyd98959a2020-08-14 14:02:48 +1000831 return enable_flash_ich_spi(dev, CHIPSET_ICH9, 0xdc);
hailfinger62b38622008-05-14 14:51:22 +0000832}
833
hailfinger8afaa232008-10-10 20:54:41 +0000834static int enable_flash_ich10(struct pci_dev *dev, const char *name)
835{
Sam McNallyd98959a2020-08-14 14:02:48 +1000836 return enable_flash_ich_spi(dev, CHIPSET_ICH10, 0xdc);
hailfinger8afaa232008-10-10 20:54:41 +0000837}
838
stefanct1e134512011-08-27 21:19:56 +0000839/* Ibex Peak aka. 5 series & 3400 series */
840static int enable_flash_pch5(struct pci_dev *dev, const char *name)
841{
Sam McNallyd98959a2020-08-14 14:02:48 +1000842 return enable_flash_ich_spi(dev, CHIPSET_5_SERIES_IBEX_PEAK, 0xdc);
stefanct1e134512011-08-27 21:19:56 +0000843}
844
845/* Cougar Point aka. 6 series & c200 series */
846static int enable_flash_pch6(struct pci_dev *dev, const char *name)
847{
Sam McNallyd98959a2020-08-14 14:02:48 +1000848 return enable_flash_ich_spi(dev, CHIPSET_6_SERIES_COUGAR_POINT, 0xdc);
stefanct1e134512011-08-27 21:19:56 +0000849}
850
Sam McNally491512b2020-08-14 14:44:06 +1000851/* Panther Point aka. 7 series */
852static int enable_flash_pch7(struct pci_dev *dev, const char *name)
853{
854 return enable_flash_ich_spi(dev, CHIPSET_7_SERIES_PANTHER_POINT, 0xdc);
855}
856
857/* Lynx Point aka. 8 series */
858static int enable_flash_pch8(struct pci_dev *dev, const char *name)
Duncan Laurie32e60552013-02-28 09:42:07 -0800859{
Sam McNallyd98959a2020-08-14 14:02:48 +1000860 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT, 0xdc);
Duncan Laurie32e60552013-02-28 09:42:07 -0800861}
862
Sam McNally491512b2020-08-14 14:44:06 +1000863/* Lynx Point LP aka. 8 series low-power */
864static int enable_flash_pch8_lp(struct pci_dev *dev, const char *name)
Duncan Laurie32e60552013-02-28 09:42:07 -0800865{
Sam McNallyd98959a2020-08-14 14:02:48 +1000866 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT_LP, 0xdc);
Duncan Laurie32e60552013-02-28 09:42:07 -0800867}
868
Edward O'Callaghan8314e112020-12-24 12:41:02 +1100869/* Wellsburg (for Haswell-EP Xeons) */
870static int enable_flash_pch8_wb(struct pci_dev *dev, const char *name)
871{
872 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_WELLSBURG, 0xdc);
873}
874
Duncan Laurie9bd2af82014-05-12 10:17:38 -0700875/* Wildcat Point */
Sam McNally491512b2020-08-14 14:44:06 +1000876static int enable_flash_pch9(struct pci_dev *dev, const char *name)
Duncan Laurie9bd2af82014-05-12 10:17:38 -0700877{
Sam McNallyd98959a2020-08-14 14:02:48 +1000878 return enable_flash_ich_spi(dev, CHIPSET_9_SERIES_WILDCAT_POINT, 0xdc);
Duncan Laurie9bd2af82014-05-12 10:17:38 -0700879}
880
Sam McNally491512b2020-08-14 14:44:06 +1000881/* Wildcat Point LP */
882static int enable_flash_pch9_lp(struct pci_dev *dev, const char *name)
883{
884 return enable_flash_ich_spi(dev, CHIPSET_9_SERIES_WILDCAT_POINT_LP, 0xdc);
885}
886
Ramya Vijaykumara9a64f92015-04-15 15:26:22 +0530887/* Sunrise Point */
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100888static int enable_flash_pch100_shutdown(void *const pci_acc)
Furquan Shaikh44088752016-07-11 22:48:08 -0700889{
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100890 pci_cleanup(pci_acc);
891 return 0;
892}
Furquan Shaikh44088752016-07-11 22:48:08 -0700893
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100894static int enable_flash_pch100_or_c620(
895 struct pci_dev *const dev, const char *const name,
896 const int slot, const int func, const enum ich_chipset pch_generation)
897{
898 int ret = ERROR_FATAL;
Furquan Shaikh44088752016-07-11 22:48:08 -0700899
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100900 /*
901 * The SPI PCI device is usually hidden (by hiding PCI vendor
902 * and device IDs). So we need a PCI access method that works
903 * even when the OS doesn't know the PCI device. We can't use
904 * this method globally since it would bring along other con-
905 * straints (e.g. on PCI domains, extended PCIe config space).
906 */
907 struct pci_access *const pci_acc = pci_alloc();
908 struct pci_access *const saved_pacc = pacc;
909 if (!pci_acc) {
910 msg_perr("Can't allocate PCI accessor.\n");
911 return ret;
912 }
913 pci_acc->method = PCI_ACCESS_I386_TYPE1;
914 pci_init(pci_acc);
915 register_shutdown(enable_flash_pch100_shutdown, pci_acc);
Furquan Shaikh44088752016-07-11 22:48:08 -0700916
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100917 struct pci_dev *const spi_dev = pci_get_dev(pci_acc, dev->domain, dev->bus, slot, func);
918 if (!spi_dev) {
919 msg_perr("Can't allocate PCI device.\n");
920 return ret;
921 }
922
923 /* Modify pacc so the rpci_write can register the undo callback with a
924 * device using the correct pci_access */
925 pacc = pci_acc;
926 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(spi_dev, pch_generation, NULL);
927
928 const int ret_bc = enable_flash_ich_bios_cntl_config_space(spi_dev, pch_generation, 0xdc);
929 if (ret_bc == ERROR_FATAL)
930 goto _freepci_ret;
931
932 const uint32_t phys_spibar = pci_read_long(spi_dev, PCI_BASE_ADDRESS_0) & 0xfffff000;
933 void *const spibar = rphysmap("SPIBAR", phys_spibar, 0x1000);
934 if (spibar == ERROR_PTR)
935 goto _freepci_ret;
936 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " (phys = 0x%08x)\n", PRIxPTR_WIDTH, (uintptr_t)spibar, phys_spibar);
937
938 /* This adds BUS_SPI */
939 const int ret_spi = ich_init_spi(spibar, pch_generation);
940 if (ret_spi != ERROR_FATAL) {
941 if (ret_bc || ret_spi)
942 ret = ERROR_NONFATAL;
943 else
944 ret = 0;
945 }
946
947 /* Suppress unknown laptop warning if we booted from SPI. */
948 if (!ret && (boot_buses & BUS_SPI))
949 laptop_ok = 1;
950
951_freepci_ret:
952 pci_free_dev(spi_dev);
953 pacc = saved_pacc;
954 return ret;
955}
956
Edward O'Callaghanb667fb02020-11-16 16:04:13 +1100957static int enable_flash_pch100(struct pci_dev *const dev, const char *const name)
958{
959 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_100_SERIES_SUNRISE_POINT);
960}
961
Edward O'Callaghan98b25532020-12-24 12:48:21 +1100962static int enable_flash_c620(struct pci_dev *const dev, const char *const name)
963{
964 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_C620_SERIES_LEWISBURG);
965}
966
Edward O'Callaghaned090dc2020-12-24 12:49:51 +1100967static int enable_flash_pch300(struct pci_dev *const dev, const char *const name)
968{
969 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_300_SERIES_CANNON_POINT);
970}
971
Matt DeVillier81bc4d32020-08-12 12:48:06 -0500972static int enable_flash_pch400(struct pci_dev *const dev, const char *const name)
973{
974 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_400_SERIES_COMET_POINT);
975}
976
Edward O'Callaghanb134db52020-11-16 16:00:00 +1100977static int enable_flash_apl(struct pci_dev *const dev, const char *const name)
978{
979 return enable_flash_pch100_or_c620(dev, name, 0x0d, 2, CHIPSET_APOLLO_LAKE);
Furquan Shaikh44088752016-07-11 22:48:08 -0700980}
981
Angel Pons00b29cf2020-07-10 17:04:10 +0200982static int enable_flash_glk(struct pci_dev *const dev, const char *const name)
983{
984 return enable_flash_pch100_or_c620(dev, name, 0x0d, 2, CHIPSET_GEMINI_LAKE);
985}
986
Sam McNallyb58eed82020-08-14 14:58:26 +1000987/* Silvermont architecture: Bay Trail(-T/-I), Avoton/Rangeley.
988 * These have a distinctly different behavior compared to other Intel chipsets and hence are handled separately.
989 *
990 * Differences include:
991 * - RCBA at LPC config 0xF0 too but mapped range is only 4 B long instead of 16 kB.
992 * - GCS at [RCRB] + 0 (instead of [RCRB] + 0x3410).
993 * - TS (Top Swap) in GCS (instead of [RCRB] + 0x3414).
994 * - SPIBAR (coined SBASE) at LPC config 0x54 (instead of [RCRB] + 0x3800).
995 * - BIOS_CNTL (coined BCR) at [SPIBAR] + 0xFC (instead of LPC config 0xDC).
996 */
997static int enable_flash_silvermont(struct pci_dev *dev, const char *name)
Duncan Lauried59ec692013-11-25 09:40:56 -0800998{
Sam McNallyb58eed82020-08-14 14:58:26 +1000999 enum ich_chipset ich_generation = CHIPSET_BAYTRAIL;
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +11001000
1001 /* Get physical address of Root Complex Register Block */
1002 uint32_t rcba = pci_read_long(dev, 0xf0) & 0xfffffc00;
1003 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcba);
1004
1005 /* Handle GCS (in RCRB) */
1006 void *rcrb = physmap("BYT RCRB", rcba, 4);
1007 if (rcrb == ERROR_PTR)
1008 return ERROR_FATAL;
1009 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
1010 physunmap(rcrb, 4);
Duncan Lauried59ec692013-11-25 09:40:56 -08001011
Sam McNallyb58eed82020-08-14 14:58:26 +10001012 /* Handle fwh_idsel parameter */
1013 int ret_fwh = enable_flash_ich_fwh_decode(dev, ich_generation);
1014 if (ret_fwh == ERROR_FATAL)
1015 return ret_fwh;
Duncan Lauried59ec692013-11-25 09:40:56 -08001016
Sam McNallyb58eed82020-08-14 14:58:26 +10001017 internal_buses_supported &= BUS_FWH;
1018
Sam McNallyb58eed82020-08-14 14:58:26 +10001019 /* Get physical address of SPI Base Address and map it */
1020 uint32_t sbase = pci_read_long(dev, 0x54) & 0xfffffe00;
1021 msg_pdbg("SPI_BASE_ADDRESS = 0x%x\n", sbase);
1022 void *spibar = rphysmap("BYT SBASE", sbase, 512); /* Last defined address on Bay Trail is 0x100 */
Edward O'Callaghand9722942019-08-28 11:40:28 +10001023 if (spibar == ERROR_PTR)
1024 return ERROR_FATAL;
Duncan Lauried59ec692013-11-25 09:40:56 -08001025
Sam McNally5abc7442020-08-13 20:46:11 +10001026 /* Enable Flash Writes.
1027 * Silvermont-based: BCR at SBASE + 0xFC (some bits of BCR are also accessible via BC at IBASE + 0x1C).
1028 */
Sam McNallyb58eed82020-08-14 14:58:26 +10001029 enable_flash_ich_bios_cntl_memmapped(ich_generation, spibar + 0xFC);
Sam McNally5abc7442020-08-13 20:46:11 +10001030
Sam McNallyb58eed82020-08-14 14:58:26 +10001031 int ret_spi = ich_init_spi(spibar, ich_generation);
Duncan Lauried59ec692013-11-25 09:40:56 -08001032 if (ret_spi == ERROR_FATAL)
1033 return ret_spi;
1034
Edward O'Callaghanb667fb02020-11-16 16:04:13 +11001035 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
1036 return ERROR_NONFATAL;
Duncan Lauried59ec692013-11-25 09:40:56 -08001037
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +11001038 /* Suppress unknown laptop warning if we booted from SPI. */
1039 if (boot_buses & BUS_SPI)
1040 laptop_ok = 1;
1041
Edward O'Callaghanb667fb02020-11-16 16:04:13 +11001042 return 0;
Duncan Lauried59ec692013-11-25 09:40:56 -08001043}
1044
mkarcherf5f203f2010-06-13 10:16:12 +00001045static int via_no_byte_merge(struct pci_dev *dev, const char *name)
1046{
1047 uint8_t val;
1048
1049 val = pci_read_byte(dev, 0x71);
uwe8d342eb2011-07-28 08:13:25 +00001050 if (val & 0x40) {
mkarcherf5f203f2010-06-13 10:16:12 +00001051 msg_pdbg("Disabling byte merging\n");
1052 val &= ~0x40;
hailfingerf31cbdc2010-11-10 15:25:18 +00001053 rpci_write_byte(dev, 0x71, val);
mkarcherf5f203f2010-06-13 10:16:12 +00001054 }
1055 return NOT_DONE_YET; /* need to find south bridge, too */
1056}
1057
uwe6ed6d952007-12-04 21:49:06 +00001058static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
ollie5672ac62004-03-17 22:22:08 +00001059{
ollie6a600992005-11-26 21:55:36 +00001060 uint8_t val;
ollie5b621572004-03-20 16:46:10 +00001061
uwe8d342eb2011-07-28 08:13:25 +00001062 /* Enable ROM decode range (1MB) FFC00000 - FFFFFFFF. */
hailfingerf31cbdc2010-11-10 15:25:18 +00001063 rpci_write_byte(dev, 0x41, 0x7f);
stepan38b3cac2008-04-29 13:46:38 +00001064
uwebe4477b2007-08-23 16:08:21 +00001065 /* ROM write enable */
ollie5672ac62004-03-17 22:22:08 +00001066 val = pci_read_byte(dev, 0x40);
1067 val |= 0x10;
hailfingerf31cbdc2010-11-10 15:25:18 +00001068 rpci_write_byte(dev, 0x40, val);
ollie5672ac62004-03-17 22:22:08 +00001069
1070 if (pci_read_byte(dev, 0x40) != val) {
Edward O'Callaghan7c9baee2019-08-12 22:46:59 +10001071 msg_pwarn("\nWarning: Failed to enable flash write on \"%s\"\n", name);
stepan927d4e22007-04-04 22:45:58 +00001072 return -1;
ollie5672ac62004-03-17 22:22:08 +00001073 }
uwe1f088472007-03-02 22:16:38 +00001074
Edward O'Callaghan54464472020-05-27 00:51:19 +10001075 if (dev->device_id == 0x3227) { /* VT8237/VT8237R */
uwe8d342eb2011-07-28 08:13:25 +00001076 /* All memory cycles, not just ROM ones, go to LPC. */
1077 val = pci_read_byte(dev, 0x59);
1078 val &= ~0x80;
1079 rpci_write_byte(dev, 0x59, val);
libv53f58142009-12-23 00:54:26 +00001080 }
1081
uwef6641642007-05-09 10:17:44 +00001082 return 0;
ollie5672ac62004-03-17 22:22:08 +00001083}
1084
Edward O'Callaghan8e31f5a2019-10-05 18:14:51 +10001085static int enable_flash_vt_vx(struct pci_dev *dev, const char *name)
1086{
1087 struct pci_dev *south_north = pci_dev_find(0x1106, 0xa353);
1088 if (south_north == NULL) {
1089 msg_perr("Could not find South-North Module Interface Control device!\n");
1090 return ERROR_FATAL;
1091 }
1092
1093 msg_pdbg("Strapped to ");
1094 if ((pci_read_byte(south_north, 0x56) & 0x01) == 0) {
1095 msg_pdbg("LPC.\n");
1096 return enable_flash_vt823x(dev, name);
1097 }
1098 msg_pdbg("SPI.\n");
1099
1100 uint32_t mmio_base;
1101 void *mmio_base_physmapped;
1102 uint32_t spi_cntl;
1103 #define SPI_CNTL_LEN 0x08
1104 uint32_t spi0_mm_base = 0;
1105 switch(dev->device_id) {
1106 case 0x8353: /* VX800/VX820 */
1107 spi0_mm_base = pci_read_long(dev, 0xbc) << 8;
1108 if (spi0_mm_base == 0x0) {
1109 msg_pdbg ("MMIO not enabled!\n");
1110 return ERROR_FATAL;
1111 }
1112 break;
1113 case 0x8409: /* VX855/VX875 */
1114 case 0x8410: /* VX900 */
1115 mmio_base = pci_read_long(dev, 0xbc) << 8;
1116 if (mmio_base == 0x0) {
1117 msg_pdbg ("MMIO not enabled!\n");
1118 return ERROR_FATAL;
1119 }
1120 mmio_base_physmapped = physmap("VIA VX MMIO register", mmio_base, SPI_CNTL_LEN);
1121 if (mmio_base_physmapped == ERROR_PTR)
1122 return ERROR_FATAL;
1123
1124 /* Offset 0 - Bit 0 holds SPI Bus0 Enable Bit. */
1125 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x00;
1126 if ((spi_cntl & 0x01) == 0) {
1127 msg_pdbg ("SPI Bus0 disabled!\n");
1128 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1129 return ERROR_FATAL;
1130 }
1131 /* Offset 1-3 has SPI Bus Memory Map Base Address: */
1132 spi0_mm_base = spi_cntl & 0xFFFFFF00;
1133
1134 /* Offset 4 - Bit 0 holds SPI Bus1 Enable Bit. */
1135 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x04;
1136 if ((spi_cntl & 0x01) == 1)
1137 msg_pdbg2("SPI Bus1 is enabled too.\n");
1138
1139 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1140 break;
1141 default:
1142 msg_perr("%s: Unsupported chipset %x:%x!\n", __func__, dev->vendor_id, dev->device_id);
1143 return ERROR_FATAL;
1144 }
1145
1146 return via_init_spi(spi0_mm_base);
1147}
1148
1149static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
1150{
1151 return via_init_spi(pci_read_long(dev, 0xbc) << 8);
1152}
1153
uwe6ed6d952007-12-04 21:49:06 +00001154static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
ollie5672ac62004-03-17 22:22:08 +00001155{
uwe7a75a6a2007-06-06 21:35:45 +00001156 uint8_t reg8;
ollie5b621572004-03-20 16:46:10 +00001157
uwefa98ca12008-10-18 21:14:13 +00001158#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
1159#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
hailfingere76cfaf2009-12-17 15:20:01 +00001160#define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */
1161#define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */
ollie5672ac62004-03-17 22:22:08 +00001162
uwefa98ca12008-10-18 21:14:13 +00001163#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
1164#define ROM_WRITE_ENABLE (1 << 1)
1165#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
1166#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
hailfingere76cfaf2009-12-17 15:20:01 +00001167#define CS5530_ISA_MASTER (1 << 7)
1168#define CS5530_ENABLE_SA2320 (1 << 2)
1169#define CS5530_ENABLE_SA20 (1 << 6)
ollie5672ac62004-03-17 22:22:08 +00001170
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +10001171 internal_buses_supported &= BUS_PARALLEL;
stefanct707f13b2011-05-19 02:58:17 +00001172 /* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and
1173 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB.
hailfingere76cfaf2009-12-17 15:20:01 +00001174 * FIXME: Should we really touch the low mapping below 1 MB? Flashrom
1175 * ignores that region completely.
uwe7a75a6a2007-06-06 21:35:45 +00001176 * Make the configured ROM areas writable.
1177 */
1178 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
1179 reg8 |= LOWER_ROM_ADDRESS_RANGE;
1180 reg8 |= UPPER_ROM_ADDRESS_RANGE;
1181 reg8 |= ROM_WRITE_ENABLE;
hailfingerf31cbdc2010-11-10 15:25:18 +00001182 rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
stepan927d4e22007-04-04 22:45:58 +00001183
uwe7a75a6a2007-06-06 21:35:45 +00001184 /* Set positive decode on ROM. */
1185 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
1186 reg8 |= BIOS_ROM_POSITIVE_DECODE;
hailfingerf31cbdc2010-11-10 15:25:18 +00001187 rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
stepan927d4e22007-04-04 22:45:58 +00001188
hailfingere76cfaf2009-12-17 15:20:01 +00001189 reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG);
1190 if (reg8 & CS5530_ISA_MASTER) {
1191 /* We have A0-A23 available. */
1192 max_rom_decode.parallel = 16 * 1024 * 1024;
1193 } else {
1194 reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG);
1195 if (reg8 & CS5530_ENABLE_SA2320) {
1196 /* We have A0-19, A20-A23 available. */
1197 max_rom_decode.parallel = 16 * 1024 * 1024;
1198 } else if (reg8 & CS5530_ENABLE_SA20) {
1199 /* We have A0-19, A20 available. */
1200 max_rom_decode.parallel = 2 * 1024 * 1024;
1201 } else {
1202 /* A20 and above are not active. */
1203 max_rom_decode.parallel = 1024 * 1024;
1204 }
1205 }
1206
ollie5672ac62004-03-17 22:22:08 +00001207 return 0;
1208}
1209
uwee15beb92010-08-08 17:01:18 +00001210/*
uwea730ed02008-02-08 10:10:57 +00001211 * Geode systems write protect the BIOS via RCONFs (cache settings similar
Edward O'Callaghan54464472020-05-27 00:51:19 +10001212 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22.
uwea730ed02008-02-08 10:10:57 +00001213 *
1214 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
1215 * To enable write to NOR Boot flash for the benefit of systems that have such
1216 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
uwea730ed02008-02-08 10:10:57 +00001217 */
uwe6ed6d952007-12-04 21:49:06 +00001218static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
jcrouse5915fea2007-11-13 16:45:22 +00001219{
uwefa98ca12008-10-18 21:14:13 +00001220#define MSR_RCONF_DEFAULT 0x1808
1221#define MSR_NORF_CTL 0x51400018
uwe5d33a482008-02-08 09:59:58 +00001222
stepan6d42c0f2009-08-12 09:27:45 +00001223 msr_t msr;
jcrouse5915fea2007-11-13 16:45:22 +00001224
stepan6d42c0f2009-08-12 09:27:45 +00001225 /* Geode only has a single core */
1226 if (setup_cpu_msr(0))
jcrouse5915fea2007-11-13 16:45:22 +00001227 return -1;
stepan6d42c0f2009-08-12 09:27:45 +00001228
1229 msr = rdmsr(MSR_RCONF_DEFAULT);
1230 if ((msr.hi >> 24) != 0x22) {
1231 msr.hi &= 0xfbffffff;
1232 wrmsr(MSR_RCONF_DEFAULT, msr);
jcrouse5915fea2007-11-13 16:45:22 +00001233 }
uwea730ed02008-02-08 10:10:57 +00001234
stepan6d42c0f2009-08-12 09:27:45 +00001235 msr = rdmsr(MSR_NORF_CTL);
uwe5d33a482008-02-08 09:59:58 +00001236 /* Raise WE_CS3 bit. */
stepan6d42c0f2009-08-12 09:27:45 +00001237 msr.lo |= 0x08;
1238 wrmsr(MSR_NORF_CTL, msr);
uwe5d33a482008-02-08 09:59:58 +00001239
stepan6d42c0f2009-08-12 09:27:45 +00001240 cleanup_cpu_msr();
uwe5d33a482008-02-08 09:59:58 +00001241
uwefa98ca12008-10-18 21:14:13 +00001242#undef MSR_RCONF_DEFAULT
1243#undef MSR_NORF_CTL
jcrouse5915fea2007-11-13 16:45:22 +00001244 return 0;
1245}
1246
uwe6ed6d952007-12-04 21:49:06 +00001247static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
ollie5672ac62004-03-17 22:22:08 +00001248{
Edward O'Callaghan54464472020-05-27 00:51:19 +10001249 #define SC_REG 0x52
ollie6a600992005-11-26 21:55:36 +00001250 uint8_t new;
ollie5b621572004-03-20 16:46:10 +00001251
Edward O'Callaghan54464472020-05-27 00:51:19 +10001252 rpci_write_byte(dev, SC_REG, 0xee);
ollie5672ac62004-03-17 22:22:08 +00001253
Edward O'Callaghan54464472020-05-27 00:51:19 +10001254 new = pci_read_byte(dev, SC_REG);
ollie5672ac62004-03-17 22:22:08 +00001255
Edward O'Callaghan54464472020-05-27 00:51:19 +10001256 if (new != 0xee) { /* FIXME: share this with other code? */
Edward O'Callaghanc51a78b2020-07-09 19:29:45 +10001257 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SC_REG, new, name);
ollie5672ac62004-03-17 22:22:08 +00001258 return -1;
1259 }
uwebe4477b2007-08-23 16:08:21 +00001260
ollie5672ac62004-03-17 22:22:08 +00001261 return 0;
1262}
1263
Edward O'Callaghan54464472020-05-27 00:51:19 +10001264/* Works for AMD-768, AMD-8111, VIA VT82C586A/B, VIA VT82C596, VIA VT82C686A/B.
1265 *
1266 * ROM decode control register matrix
1267 * AMD-768 AMD-8111 VT82C586A/B VT82C596 VT82C686A/B
1268 * 7 FFC0_0000h–FFFF_FFFFh <- FFFE0000h-FFFEFFFFh <- <-
1269 * 6 FFB0_0000h–FFBF_FFFFh <- FFF80000h-FFFDFFFFh <- <-
1270 * 5 00E8... <- <- FFF00000h-FFF7FFFFh <-
1271 */
Edward O'Callaghanba44d9c2020-05-27 00:53:39 +10001272static int enable_flash_amd_via(struct pci_dev *dev, const char *name, uint8_t decode_val)
ollie5b621572004-03-20 16:46:10 +00001273{
Edward O'Callaghan54464472020-05-27 00:51:19 +10001274 #define AMD_MAPREG 0x43
1275 #define AMD_ENREG 0x40
ollie6a600992005-11-26 21:55:36 +00001276 uint8_t old, new;
uwef6641642007-05-09 10:17:44 +00001277
Edward O'Callaghan54464472020-05-27 00:51:19 +10001278 old = pci_read_byte(dev, AMD_MAPREG);
Edward O'Callaghanba44d9c2020-05-27 00:53:39 +10001279 new = old | decode_val;
ollie5672ac62004-03-17 22:22:08 +00001280 if (new != old) {
Edward O'Callaghan54464472020-05-27 00:51:19 +10001281 rpci_write_byte(dev, AMD_MAPREG, new);
1282 if (pci_read_byte(dev, AMD_MAPREG) != new) {
Edward O'Callaghanc51a78b2020-07-09 19:29:45 +10001283 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
1284 AMD_MAPREG, new, name);
Edward O'Callaghan54464472020-05-27 00:51:19 +10001285 } else
1286 msg_pdbg("Changed ROM decode range to 0x%02x successfully.\n", new);
ollie5672ac62004-03-17 22:22:08 +00001287 }
1288
uwe30b2ebc2008-10-25 18:03:50 +00001289 /* Enable 'ROM write' bit. */
Edward O'Callaghan54464472020-05-27 00:51:19 +10001290 old = pci_read_byte(dev, AMD_ENREG);
ollie5672ac62004-03-17 22:22:08 +00001291 new = old | 0x01;
1292 if (new == old)
1293 return 0;
Edward O'Callaghan54464472020-05-27 00:51:19 +10001294 rpci_write_byte(dev, AMD_ENREG, new);
ollie5672ac62004-03-17 22:22:08 +00001295
Edward O'Callaghan54464472020-05-27 00:51:19 +10001296 if (pci_read_byte(dev, AMD_ENREG) != new) {
Edward O'Callaghanc51a78b2020-07-09 19:29:45 +10001297 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
1298 AMD_ENREG, new, name);
Edward O'Callaghan54464472020-05-27 00:51:19 +10001299 return ERROR_NONFATAL;
ollie5672ac62004-03-17 22:22:08 +00001300 }
Edward O'Callaghan54464472020-05-27 00:51:19 +10001301 msg_pdbg2("Set ROM enable bit successfully.\n");
uwebe4477b2007-08-23 16:08:21 +00001302
ollie5672ac62004-03-17 22:22:08 +00001303 return 0;
1304}
1305
Edward O'Callaghanba44d9c2020-05-27 00:53:39 +10001306static int enable_flash_amd_768_8111(struct pci_dev *dev, const char *name)
1307{
1308 /* Enable decoding of 0xFFB00000 to 0xFFFFFFFF (5 MB). */
1309 max_rom_decode.lpc = 5 * 1024 * 1024;
1310 return enable_flash_amd_via(dev, name, 0xC0);
1311}
1312
1313static int enable_flash_vt82c586(struct pci_dev *dev, const char *name)
1314{
1315 /* Enable decoding of 0xFFF80000 to 0xFFFFFFFF. (512 kB) */
1316 max_rom_decode.parallel = 512 * 1024;
1317 return enable_flash_amd_via(dev, name, 0xC0);
1318}
1319
1320/* Works for VT82C686A/B too. */
1321static int enable_flash_vt82c596(struct pci_dev *dev, const char *name)
1322{
1323 /* Enable decoding of 0xFFF00000 to 0xFFFFFFFF. (1 MB) */
1324 max_rom_decode.parallel = 1024 * 1024;
1325 return enable_flash_amd_via(dev, name, 0xE0);
1326}
1327
mjones9f59c792008-10-15 17:50:29 +00001328static int enable_flash_sb600(struct pci_dev *dev, const char *name)
1329{
mkarcher8b2b7ab2010-07-22 18:04:19 +00001330 uint32_t prot;
mjones9f59c792008-10-15 17:50:29 +00001331 uint8_t reg;
mkarcher8b2b7ab2010-07-22 18:04:19 +00001332 int ret;
mjones9f59c792008-10-15 17:50:29 +00001333
uwe17efbed2008-11-28 21:36:51 +00001334 /* Clear ROM protect 0-3. */
1335 for (reg = 0x50; reg < 0x60; reg += 4) {
hailfinger1d225fe2009-05-05 22:50:07 +00001336 prot = pci_read_long(dev, reg);
1337 /* No protection flags for this region?*/
1338 if ((prot & 0x3) == 0)
1339 continue;
Stefan Taunereaf8c522014-07-15 13:50:17 +00001340 msg_pdbg("Chipset %s%sprotected flash from 0x%08x to 0x%08x, unlocking...",
uwe8d342eb2011-07-28 08:13:25 +00001341 (prot & 0x2) ? "read " : "",
Stefan Taunereaf8c522014-07-15 13:50:17 +00001342 (prot & 0x1) ? "write " : "",
uwe8d342eb2011-07-28 08:13:25 +00001343 (prot & 0xfffff800),
1344 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
hailfinger1d225fe2009-05-05 22:50:07 +00001345 prot &= 0xfffffffc;
hailfingerf31cbdc2010-11-10 15:25:18 +00001346 rpci_write_byte(dev, reg, prot);
hailfinger1d225fe2009-05-05 22:50:07 +00001347 prot = pci_read_long(dev, reg);
Stefan Taunereaf8c522014-07-15 13:50:17 +00001348 if ((prot & 0x3) != 0) {
1349 msg_perr("Disabling %s%sprotection of flash addresses from 0x%08x to 0x%08x failed.\n",
uwe8d342eb2011-07-28 08:13:25 +00001350 (prot & 0x2) ? "read " : "",
Stefan Taunereaf8c522014-07-15 13:50:17 +00001351 (prot & 0x1) ? "write " : "",
uwe8d342eb2011-07-28 08:13:25 +00001352 (prot & 0xfffff800),
1353 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Stefan Taunereaf8c522014-07-15 13:50:17 +00001354 continue;
1355 }
1356 msg_pdbg("done.\n");
uwe17efbed2008-11-28 21:36:51 +00001357 }
1358
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +10001359 internal_buses_supported &= BUS_LPC | BUS_FWH;
mkarcher8b2b7ab2010-07-22 18:04:19 +00001360
1361 ret = sb600_probe_spi(dev);
uwe17efbed2008-11-28 21:36:51 +00001362
hailfingerf327d762009-05-15 23:36:23 +00001363 /* Read ROM strap override register. */
1364 OUTB(0x8f, 0xcd6);
1365 reg = INB(0xcd7);
1366 reg &= 0x0e;
snelsone42c3802010-05-07 20:09:04 +00001367 msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
hailfingerf327d762009-05-15 23:36:23 +00001368 if (reg & 0x02) {
1369 switch ((reg & 0x0c) >> 2) {
1370 case 0x00:
snelsone42c3802010-05-07 20:09:04 +00001371 msg_pdbg(": LPC");
hailfingerf327d762009-05-15 23:36:23 +00001372 break;
1373 case 0x01:
snelsone42c3802010-05-07 20:09:04 +00001374 msg_pdbg(": PCI");
hailfingerf327d762009-05-15 23:36:23 +00001375 break;
1376 case 0x02:
snelsone42c3802010-05-07 20:09:04 +00001377 msg_pdbg(": FWH");
hailfingerf327d762009-05-15 23:36:23 +00001378 break;
1379 case 0x03:
snelsone42c3802010-05-07 20:09:04 +00001380 msg_pdbg(": SPI");
hailfingerf327d762009-05-15 23:36:23 +00001381 break;
1382 }
1383 }
snelsone42c3802010-05-07 20:09:04 +00001384 msg_pdbg("\n");
hailfingerf327d762009-05-15 23:36:23 +00001385
hailfinger1d225fe2009-05-05 22:50:07 +00001386 /* Force enable SPI ROM in SB600 PM register.
1387 * If we enable SPI ROM here, we have to disable it after we leave.
hailfinger5a7cd6b2009-05-04 22:33:50 +00001388 * But how can we know which ROM we are going to handle? So we have
1389 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
hailfinger1d225fe2009-05-05 22:50:07 +00001390 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
1391 * boards with LPC straps, you have to use the code below.
hailfinger5a7cd6b2009-05-04 22:33:50 +00001392 */
1393 /*
uwe17efbed2008-11-28 21:36:51 +00001394 OUTB(0x8f, 0xcd6);
1395 OUTB(0x0e, 0xcd7);
hailfinger5a7cd6b2009-05-04 22:33:50 +00001396 */
mjones9f59c792008-10-15 17:50:29 +00001397
mkarcher8b2b7ab2010-07-22 18:04:19 +00001398 return ret;
mjones9f59c792008-10-15 17:50:29 +00001399}
1400
Edward O'Callaghan54464472020-05-27 00:51:19 +10001401/* sets bit 0 in 0x6d */
Edward O'Callaghan7e3942e2020-05-27 02:00:18 +10001402static int enable_flash_nvidia_common(struct pci_dev *dev, const char *name)
arch6a1225a2005-07-06 17:13:46 +00001403{
uwef6641642007-05-09 10:17:44 +00001404 uint8_t old, new;
arch6a1225a2005-07-06 17:13:46 +00001405
uwef6641642007-05-09 10:17:44 +00001406 old = pci_read_byte(dev, 0x6d);
1407 new = old | 0x01;
1408 if (new == old)
1409 return 0;
uwef6641642007-05-09 10:17:44 +00001410
Edward O'Callaghan7e3942e2020-05-27 02:00:18 +10001411 rpci_write_byte(dev, 0x6d, new);
uwef6641642007-05-09 10:17:44 +00001412 if (pci_read_byte(dev, 0x6d) != new) {
Edward O'Callaghan7e3942e2020-05-27 02:00:18 +10001413 msg_pinfo("Setting register 0x6d to 0x%02x on %s failed.\n", new, name);
1414 return 1;
1415 }
1416 return 0;
1417}
1418
1419static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name)
1420{
1421 rpci_write_byte(dev, 0x92, 0);
1422 if (enable_flash_nvidia_common(dev, name))
1423 return ERROR_NONFATAL;
1424 else
1425 return 0;
1426}
1427
1428static int enable_flash_ck804(struct pci_dev *dev, const char *name)
1429{
1430 uint32_t segctrl;
1431 uint8_t reg, old, new;
1432 unsigned int err = 0;
1433
1434 /* 0x8A is special: it is a single byte and only one nibble is touched. */
1435 reg = 0x8A;
1436 segctrl = pci_read_byte(dev, reg);
1437 if ((segctrl & 0x3) != 0x0) {
1438 if ((segctrl & 0xC) != 0x0) {
1439 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1440 err++;
1441 } else {
1442 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1443 rpci_write_byte(dev, reg, segctrl & 0xF0);
1444
1445 segctrl = pci_read_byte(dev, reg);
1446 if ((segctrl & 0x3) != 0x0) {
1447 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%x).\n",
1448 reg, segctrl);
1449 err++;
1450 } else
1451 msg_pdbg("OK\n");
1452 }
uwef6641642007-05-09 10:17:44 +00001453 }
uwebe4477b2007-08-23 16:08:21 +00001454
Edward O'Callaghan7e3942e2020-05-27 02:00:18 +10001455 for (reg = 0x8C; reg <= 0x94; reg += 4) {
1456 segctrl = pci_read_long(dev, reg);
1457 if ((segctrl & 0x33333333) == 0x00000000) {
1458 /* reads and writes are unlocked */
1459 continue;
1460 }
1461 if ((segctrl & 0xCCCCCCCC) != 0x00000000) {
1462 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1463 err++;
1464 continue;
1465 }
1466 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1467 rpci_write_long(dev, reg, 0x00000000);
1468
1469 segctrl = pci_read_long(dev, reg);
1470 if ((segctrl & 0x33333333) != 0x00000000) {
1471 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%08x).\n",
1472 reg, segctrl);
1473 err++;
1474 } else
1475 msg_pdbg("OK\n");
1476 }
1477
1478 if (err > 0) {
1479 msg_pinfo("%d locks could not be disabled, disabling writes (reads may also fail).\n", err);
1480 programmer_may_write = 0;
1481 }
1482
1483 reg = 0x88;
1484 old = pci_read_byte(dev, reg);
1485 new = old | 0xC0;
1486 if (new != old) {
1487 rpci_write_byte(dev, reg, new);
1488 if (pci_read_byte(dev, reg) != new) { /* FIXME: share this with other code? */
1489 msg_pinfo("Setting register 0x%02x to 0x%02x on %s failed.\n", reg, new, name);
1490 err++;
1491 }
1492 }
1493
1494 if (enable_flash_nvidia_common(dev, name))
1495 err++;
1496
1497 if (err > 0)
1498 return ERROR_NONFATAL;
1499 else
1500 return 0;
arch6a1225a2005-07-06 17:13:46 +00001501}
1502
hailfinger588f0442010-09-15 14:47:56 +00001503static int enable_flash_osb4(struct pci_dev *dev, const char *name)
1504{
1505 uint8_t tmp;
1506
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +10001507 internal_buses_supported &= BUS_PARALLEL;
hailfinger588f0442010-09-15 14:47:56 +00001508
1509 tmp = INB(0xc06);
1510 tmp |= 0x1;
1511 OUTB(tmp, 0xc06);
1512
1513 tmp = INB(0xc6f);
1514 tmp |= 0x40;
1515 OUTB(tmp, 0xc6f);
1516
1517 return 0;
1518}
1519
uwe6ed6d952007-12-04 21:49:06 +00001520/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
1521static int enable_flash_sb400(struct pci_dev *dev, const char *name)
stepancb140092006-03-31 11:26:55 +00001522{
uwef6641642007-05-09 10:17:44 +00001523 uint8_t tmp;
stepancb140092006-03-31 11:26:55 +00001524 struct pci_dev *smbusdev;
1525
uwe6ed6d952007-12-04 21:49:06 +00001526 /* Look for the SMBus device. */
hailfingere1cf8a22009-05-06 00:35:31 +00001527 smbusdev = pci_dev_find(0x1002, 0x4372);
stepan927d4e22007-04-04 22:45:58 +00001528
uwef6641642007-05-09 10:17:44 +00001529 if (!smbusdev) {
snelsone42c3802010-05-07 20:09:04 +00001530 msg_perr("ERROR: SMBus device not found. Aborting.\n");
uwe62b23062011-09-06 18:49:31 +00001531 return ERROR_FATAL;
stepancb140092006-03-31 11:26:55 +00001532 }
stepan927d4e22007-04-04 22:45:58 +00001533
uwe6ed6d952007-12-04 21:49:06 +00001534 /* Enable some SMBus stuff. */
uwef6641642007-05-09 10:17:44 +00001535 tmp = pci_read_byte(smbusdev, 0x79);
1536 tmp |= 0x01;
hailfingerf31cbdc2010-11-10 15:25:18 +00001537 rpci_write_byte(smbusdev, 0x79, tmp);
stepancb140092006-03-31 11:26:55 +00001538
uwe6ed6d952007-12-04 21:49:06 +00001539 /* Change southbridge. */
uwef6641642007-05-09 10:17:44 +00001540 tmp = pci_read_byte(dev, 0x48);
1541 tmp |= 0x21;
hailfingerf31cbdc2010-11-10 15:25:18 +00001542 rpci_write_byte(dev, 0x48, tmp);
stepancb140092006-03-31 11:26:55 +00001543
uwe6ed6d952007-12-04 21:49:06 +00001544 /* Now become a bit silly. */
hailfingere1f062f2008-05-22 13:22:45 +00001545 tmp = INB(0xc6f);
1546 OUTB(tmp, 0xeb);
1547 OUTB(tmp, 0xeb);
uwef6641642007-05-09 10:17:44 +00001548 tmp |= 0x40;
hailfingere1f062f2008-05-22 13:22:45 +00001549 OUTB(tmp, 0xc6f);
1550 OUTB(tmp, 0xeb);
1551 OUTB(tmp, 0xeb);
stepancb140092006-03-31 11:26:55 +00001552
1553 return 0;
1554}
1555
uwe6ed6d952007-12-04 21:49:06 +00001556static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
uwe9af0ce82007-01-22 20:21:17 +00001557{
Edward O'Callaghan7e3942e2020-05-27 02:00:18 +10001558 uint8_t val;
mkarcher850a4972010-01-12 23:29:26 +00001559 uint16_t wordval;
stepan927d4e22007-04-04 22:45:58 +00001560
uwe6ed6d952007-12-04 21:49:06 +00001561 /* Set the 0-16 MB enable bits. */
mkarcher850a4972010-01-12 23:29:26 +00001562 val = pci_read_byte(dev, 0x88);
1563 val |= 0xff; /* 256K */
hailfingerf31cbdc2010-11-10 15:25:18 +00001564 rpci_write_byte(dev, 0x88, val);
mkarcher850a4972010-01-12 23:29:26 +00001565 val = pci_read_byte(dev, 0x8c);
1566 val |= 0xff; /* 1M */
hailfingerf31cbdc2010-11-10 15:25:18 +00001567 rpci_write_byte(dev, 0x8c, val);
mkarcher850a4972010-01-12 23:29:26 +00001568 wordval = pci_read_word(dev, 0x90);
1569 wordval |= 0x7fff; /* 16M */
hailfingerf31cbdc2010-11-10 15:25:18 +00001570 rpci_write_word(dev, 0x90, wordval);
stepan927d4e22007-04-04 22:45:58 +00001571
Edward O'Callaghan7e3942e2020-05-27 02:00:18 +10001572 if (enable_flash_nvidia_common(dev, name))
1573 return ERROR_NONFATAL;
1574 else
uwef6641642007-05-09 10:17:44 +00001575 return 0;
uwe9af0ce82007-01-22 20:21:17 +00001576}
1577
uwee15beb92010-08-08 17:01:18 +00001578/*
hailfinger52384c92010-07-28 15:08:35 +00001579 * The MCP6x/MCP7x code is based on cleanroom reverse engineering.
1580 * It is assumed that LPC chips need the MCP55 code and SPI chips need the
1581 * code provided in enable_flash_mcp6x_7x_common.
hailfinger0a9db8a2010-02-13 23:41:01 +00001582 */
hailfinger52384c92010-07-28 15:08:35 +00001583static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name)
hailfinger0a9db8a2010-02-13 23:41:01 +00001584{
uwe8d342eb2011-07-28 08:13:25 +00001585 int ret = 0, want_spi = 0;
mkarcherd057ea92010-02-25 11:38:23 +00001586 uint8_t val;
hailfinger0a9db8a2010-02-13 23:41:01 +00001587
1588 /* dev is the ISA bridge. No idea what the stuff below does. */
mkarcherd057ea92010-02-25 11:38:23 +00001589 val = pci_read_byte(dev, 0x8a);
hailfinger2f294482010-02-18 12:24:38 +00001590 msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 "
mkarcherd057ea92010-02-25 11:38:23 +00001591 "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1);
hailfinger52384c92010-07-28 15:08:35 +00001592
mkarcherd057ea92010-02-25 11:38:23 +00001593 switch ((val >> 5) & 0x3) {
hailfinger2f294482010-02-18 12:24:38 +00001594 case 0x0:
hailfinger52384c92010-07-28 15:08:35 +00001595 ret = enable_flash_mcp55(dev, name);
Edward O'Callaghan26bf5c42019-08-02 23:28:03 +10001596 internal_buses_supported &= BUS_LPC;
hailfinger52384c92010-07-28 15:08:35 +00001597 msg_pdbg("Flash bus type is LPC\n");
hailfinger2f294482010-02-18 12:24:38 +00001598 break;
1599 case 0x2:
hailfinger52384c92010-07-28 15:08:35 +00001600 want_spi = 1;
1601 /* SPI is added in mcp6x_spi_init if it works.
1602 * Do we really want to disable LPC in this case?
1603 */
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +11001604 internal_buses_supported = BUS_NONE;
hailfinger52384c92010-07-28 15:08:35 +00001605 msg_pdbg("Flash bus type is SPI\n");
hailfinger2f294482010-02-18 12:24:38 +00001606 break;
1607 default:
hailfinger52384c92010-07-28 15:08:35 +00001608 /* Should not happen. */
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +11001609 internal_buses_supported = BUS_NONE;
Stefan Tauner3ef9a132014-06-12 21:07:03 +00001610 msg_pwarn("Flash bus type is unknown (none)\n");
Edward O'Callaghanc51a78b2020-07-09 19:29:45 +10001611 msg_pinfo("Please send the log files created by \"flashrom -p internal -o logfile\" to\n"
Stefan Tauner3ef9a132014-06-12 21:07:03 +00001612 "flashrom@flashrom.org with \"your board name: flashrom -V\" as the subject to\n"
1613 "help us finish support for your chipset. Thanks.\n");
1614 return ERROR_NONFATAL;
hailfinger2f294482010-02-18 12:24:38 +00001615 }
hailfinger2f294482010-02-18 12:24:38 +00001616
1617 /* Force enable SPI and disable LPC? Not a good idea. */
hailfinger0a9db8a2010-02-13 23:41:01 +00001618#if 0
mkarcherd057ea92010-02-25 11:38:23 +00001619 val |= (1 << 6);
1620 val &= ~(1 << 5);
hailfingerf31cbdc2010-11-10 15:25:18 +00001621 rpci_write_byte(dev, 0x8a, val);
hailfinger0a9db8a2010-02-13 23:41:01 +00001622#endif
1623
uwe8d342eb2011-07-28 08:13:25 +00001624 if (mcp6x_spi_init(want_spi))
hailfinger2f294482010-02-18 12:24:38 +00001625 ret = 1;
uwe8d342eb2011-07-28 08:13:25 +00001626
Edward O'Callaghan8bbd5a72020-11-19 12:55:34 +11001627 /* Suppress unknown laptop warning if we booted from SPI. */
1628 if (!ret && want_spi)
1629 laptop_ok = 1;
1630
hailfinger2f294482010-02-18 12:24:38 +00001631 return ret;
1632}
1633
uwe6ed6d952007-12-04 21:49:06 +00001634static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
stepanfaa9c542007-06-05 10:28:39 +00001635{
mkarcherd057ea92010-02-25 11:38:23 +00001636 uint8_t val;
stepanfaa9c542007-06-05 10:28:39 +00001637
uwefcce12f2007-06-05 15:02:18 +00001638 /* Set the 4MB enable bit. */
mkarcherd057ea92010-02-25 11:38:23 +00001639 val = pci_read_byte(dev, 0x41);
1640 val |= 0x0e;
hailfingerf31cbdc2010-11-10 15:25:18 +00001641 rpci_write_byte(dev, 0x41, val);
stepanfaa9c542007-06-05 10:28:39 +00001642
mkarcherd057ea92010-02-25 11:38:23 +00001643 val = pci_read_byte(dev, 0x43);
1644 val |= (1 << 4);
hailfingerf31cbdc2010-11-10 15:25:18 +00001645 rpci_write_byte(dev, 0x43, val);
stepanfaa9c542007-06-05 10:28:39 +00001646
stepanfaa9c542007-06-05 10:28:39 +00001647 return 0;
1648}
1649
uwee15beb92010-08-08 17:01:18 +00001650/*
stuge12ac08f2008-12-03 21:24:40 +00001651 * Usually on the x86 architectures (and on other PC-like platforms like some
1652 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
1653 * Elan SC520 only a small piece of the system flash is mapped there, but the
1654 * complete flash is mapped somewhere below 1G. The position can be determined
1655 * by the BOOTCS PAR register.
1656 */
1657static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
1658{
1659 int i, bootcs_found = 0;
1660 uint32_t parx = 0;
1661 void *mmcr;
1662
1663 /* 1. Map MMCR */
stuge7c943ee2009-01-26 01:10:48 +00001664 mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
Edward O'Callaghand9722942019-08-28 11:40:28 +10001665 if (mmcr == ERROR_PTR)
1666 return ERROR_FATAL;
stuge12ac08f2008-12-03 21:24:40 +00001667
1668 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
1669 * BOOTCS region (PARx[31:29] = 100b)e
1670 */
1671 for (i = 0x88; i <= 0xc4; i += 4) {
hailfinger38da6812009-05-17 15:49:24 +00001672 parx = mmio_readl(mmcr + i);
stuge12ac08f2008-12-03 21:24:40 +00001673 if ((parx >> 29) == 4) {
1674 bootcs_found = 1;
1675 break; /* BOOTCS found */
1676 }
1677 }
1678
1679 /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
1680 * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
1681 */
1682 if (bootcs_found) {
1683 if (parx & (1 << 25)) {
1684 parx &= (1 << 14) - 1; /* Mask [13:0] */
1685 flashbase = parx << 16;
1686 } else {
1687 parx &= (1 << 18) - 1; /* Mask [17:0] */
1688 flashbase = parx << 12;
1689 }
1690 } else {
uwe8d342eb2011-07-28 08:13:25 +00001691 msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. "
hailfingerb91c08c2011-08-15 19:54:20 +00001692 "Assuming flash at 4G.\n");
stuge12ac08f2008-12-03 21:24:40 +00001693 }
1694
1695 /* 4. Clean up */
hailfingerfab0bc92009-08-09 12:44:08 +00001696 physunmap(mmcr, getpagesize());
stuge12ac08f2008-12-03 21:24:40 +00001697 return 0;
1698}
1699
hailfinger324a9cc2010-05-26 01:45:41 +00001700#endif
1701
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001702#define B_P (BUS_PARALLEL)
1703#define B_PFL (BUS_NONSPI)
1704#define B_PFLS (BUS_NONSPI | BUS_SPI)
1705#define B_FL (BUS_FWH | BUS_LPC)
1706#define B_FLS (BUS_FWH | BUS_LPC | BUS_SPI)
1707#define B_FS (BUS_FWH | BUS_SPI)
1708#define B_L (BUS_LPC)
1709#define B_LS (BUS_LPC | BUS_SPI)
1710#define B_S (BUS_SPI)
1711
stefanct10c60552011-06-18 18:45:41 +00001712/* Please keep this list numerically sorted by vendor/device ID. */
uwe5f612c82009-05-16 23:42:17 +00001713const struct penable chipset_enables[] = {
hailfinger324a9cc2010-05-26 01:45:41 +00001714#if defined(__i386__) || defined(__x86_64__)
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001715 {0x1002, 0x4377, B_PFL, OK, "ATI", "SB400", enable_flash_sb400},
1716 {0x1002, 0x438d, B_FLS, OK, "AMD", "SB600", enable_flash_sb600},
1717 {0x1002, 0x439d, B_FLS, OK, "AMD", "SB7x0/SB8x0/SB9x0", enable_flash_sb600},
1718 {0x100b, 0x0510, B_PFL, NT, "AMD", "SC1100", enable_flash_sc1100},
1719 {0x1022, 0x2080, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1720 {0x1022, 0x2090, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1721 {0x1022, 0x3000, B_PFL, OK, "AMD", "Elan SC520", get_flashbase_sc520},
1722 {0x1022, 0x7440, B_PFL, OK, "AMD", "AMD-768", enable_flash_amd_768_8111},
1723 {0x1022, 0x7468, B_PFL, OK, "AMD", "AMD-8111", enable_flash_amd_768_8111},
1724 {0x1022, 0x780e, B_FLS, OK, "AMD", "FCH", enable_flash_sb600},
1725 {0x1022, 0x790e, B_FLS, OK, "AMD", "FP4", enable_flash_sb600},
1726 {0x1039, 0x0406, B_PFL, NT, "SiS", "501/5101/5501", enable_flash_sis501},
1727 {0x1039, 0x0496, B_PFL, NT, "SiS", "85C496+497", enable_flash_sis85c496},
1728 {0x1039, 0x0530, B_PFL, OK, "SiS", "530", enable_flash_sis530},
1729 {0x1039, 0x0540, B_PFL, NT, "SiS", "540", enable_flash_sis540},
1730 {0x1039, 0x0620, B_PFL, NT, "SiS", "620", enable_flash_sis530},
1731 {0x1039, 0x0630, B_PFL, OK, "SiS", "630", enable_flash_sis540},
1732 {0x1039, 0x0635, B_PFL, NT, "SiS", "635", enable_flash_sis540},
1733 {0x1039, 0x0640, B_PFL, NT, "SiS", "640", enable_flash_sis540},
1734 {0x1039, 0x0645, B_PFL, NT, "SiS", "645", enable_flash_sis540},
1735 {0x1039, 0x0646, B_PFL, OK, "SiS", "645DX", enable_flash_sis540},
1736 {0x1039, 0x0648, B_PFL, OK, "SiS", "648", enable_flash_sis540},
1737 {0x1039, 0x0650, B_PFL, OK, "SiS", "650", enable_flash_sis540},
1738 {0x1039, 0x0651, B_PFL, OK, "SiS", "651", enable_flash_sis540},
1739 {0x1039, 0x0655, B_PFL, NT, "SiS", "655", enable_flash_sis540},
1740 {0x1039, 0x0661, B_PFL, OK, "SiS", "661", enable_flash_sis540},
1741 {0x1039, 0x0730, B_PFL, OK, "SiS", "730", enable_flash_sis540},
1742 {0x1039, 0x0733, B_PFL, NT, "SiS", "733", enable_flash_sis540},
1743 {0x1039, 0x0735, B_PFL, OK, "SiS", "735", enable_flash_sis540},
1744 {0x1039, 0x0740, B_PFL, NT, "SiS", "740", enable_flash_sis540},
1745 {0x1039, 0x0741, B_PFL, OK, "SiS", "741", enable_flash_sis540},
1746 {0x1039, 0x0745, B_PFL, OK, "SiS", "745", enable_flash_sis540},
1747 {0x1039, 0x0746, B_PFL, NT, "SiS", "746", enable_flash_sis540},
1748 {0x1039, 0x0748, B_PFL, NT, "SiS", "748", enable_flash_sis540},
1749 {0x1039, 0x0755, B_PFL, OK, "SiS", "755", enable_flash_sis540},
1750 {0x1039, 0x5511, B_PFL, NT, "SiS", "5511", enable_flash_sis5511},
1751 {0x1039, 0x5571, B_PFL, NT, "SiS", "5571", enable_flash_sis530},
1752 {0x1039, 0x5591, B_PFL, NT, "SiS", "5591/5592", enable_flash_sis530},
1753 {0x1039, 0x5596, B_PFL, NT, "SiS", "5596", enable_flash_sis5511},
1754 {0x1039, 0x5597, B_PFL, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530},
1755 {0x1039, 0x5600, B_PFL, NT, "SiS", "600", enable_flash_sis530},
1756 {0x1078, 0x0100, B_P, OK, "AMD", "CS5530(A)", enable_flash_cs5530},
1757 {0x10b9, 0x1533, B_PFL, OK, "ALi", "M1533", enable_flash_ali_m1533},
1758 {0x10de, 0x0030, B_PFL, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2},
1759 {0x10de, 0x0050, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */
1760 {0x10de, 0x0051, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */
1761 {0x10de, 0x0060, B_PFL, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2},
1762 {0x10de, 0x00e0, B_PFL, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2},
uwe332b7662008-03-13 18:52:51 +00001763 /* Slave, should not be here, to fix known bug for A01. */
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001764 {0x10de, 0x00d3, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804},
1765 {0x10de, 0x0260, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1766 {0x10de, 0x0261, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1767 {0x10de, 0x0262, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1768 {0x10de, 0x0263, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1769 {0x10de, 0x0360, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/
hailfingerdcdcf5c2010-05-22 07:27:16 +00001770 /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to
1771 * the flash chip. Instead, 10de:0364 is connected to the flash chip.
1772 * Until we have PCI device class matching or some fallback mechanism,
1773 * this is needed to get flashrom working on Tyan S2915 and maybe other
1774 * dual-MCP55 boards.
1775 */
1776#if 0
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001777 {0x10de, 0x0361, B_L, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
hailfingerdcdcf5c2010-05-22 07:27:16 +00001778#endif
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001779 {0x10de, 0x0362, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1780 {0x10de, 0x0363, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1781 {0x10de, 0x0364, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1782 {0x10de, 0x0365, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1783 {0x10de, 0x0366, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1784 {0x10de, 0x0367, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */
1785 {0x10de, 0x03e0, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1786 {0x10de, 0x03e1, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001787 {0x10de, 0x03e3, B_LS, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1788 {0x10de, 0x0440, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1789 {0x10de, 0x0441, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1790 {0x10de, 0x0442, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1791 {0x10de, 0x0443, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1792 {0x10de, 0x0548, B_LS, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x},
1793 {0x10de, 0x075c, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1794 {0x10de, 0x075d, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1795 {0x10de, 0x07d7, B_LS, OK, "NVIDIA", "MCP73", enable_flash_mcp6x_7x},
1796 {0x10de, 0x0aac, B_LS, OK, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1797 {0x10de, 0x0aad, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1798 {0x10de, 0x0aae, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1799 {0x10de, 0x0aaf, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1800 {0x10de, 0x0d80, B_LS, NT, "NVIDIA", "MCP89", enable_flash_mcp6x_7x},
mkarcherf5f203f2010-06-13 10:16:12 +00001801 /* VIA northbridges */
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001802 {0x1106, 0x0585, B_PFLS, NT, "VIA", "VT82C585VPX", via_no_byte_merge},
1803 {0x1106, 0x0595, B_PFLS, NT, "VIA", "VT82C595", via_no_byte_merge},
1804 {0x1106, 0x0597, B_PFLS, NT, "VIA", "VT82C597", via_no_byte_merge},
1805 {0x1106, 0x0601, B_PFLS, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge},
1806 {0x1106, 0x0691, B_PFLS, OK, "VIA", "VT82C69x", via_no_byte_merge},
1807 {0x1106, 0x8601, B_PFLS, NT, "VIA", "VT8601T", via_no_byte_merge},
mkarcherf5f203f2010-06-13 10:16:12 +00001808 /* VIA southbridges */
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001809 {0x1106, 0x0586, B_PFL, OK, "VIA", "VT82C586A/B", enable_flash_vt82c586},
1810 {0x1106, 0x0596, B_PFL, OK, "VIA", "VT82C596", enable_flash_vt82c596},
1811 {0x1106, 0x0686, B_PFL, OK, "VIA", "VT82C686A/B", enable_flash_vt82c596},
1812 {0x1106, 0x3074, B_FL, OK, "VIA", "VT8233", enable_flash_vt823x},
1813 {0x1106, 0x3147, B_FL, OK, "VIA", "VT8233A", enable_flash_vt823x},
1814 {0x1106, 0x3177, B_FL, OK, "VIA", "VT8235", enable_flash_vt823x},
1815 {0x1106, 0x3227, B_FL, OK, "VIA", "VT8237(R)", enable_flash_vt823x},
1816 {0x1106, 0x3287, B_FL, OK, "VIA", "VT8251", enable_flash_vt823x},
1817 {0x1106, 0x3337, B_FL, OK, "VIA", "VT8237A", enable_flash_vt823x},
1818 {0x1106, 0x3372, B_LS, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi},
1819 {0x1106, 0x8231, B_FL, NT, "VIA", "VT8231", enable_flash_vt823x},
1820 {0x1106, 0x8324, B_FL, OK, "VIA", "CX700", enable_flash_vt823x},
1821 {0x1106, 0x8353, B_FLS, NT, "VIA", "VX800/VX820", enable_flash_vt_vx},
1822 {0x1106, 0x8409, B_FLS, OK, "VIA", "VX855/VX875", enable_flash_vt_vx},
1823 {0x1106, 0x8410, B_FLS, OK, "VIA", "VX900", enable_flash_vt_vx},
1824 {0x1166, 0x0200, B_P, OK, "Broadcom", "OSB4", enable_flash_osb4},
1825 {0x1166, 0x0205, B_PFL, OK, "Broadcom", "HT-1000", enable_flash_ht1000},
1826 {0x17f3, 0x6030, B_PFL, OK, "RDC", "R8610/R3210", enable_flash_rdc_r8610},
Sam McNallybcd0e1a2020-08-14 15:08:31 +10001827 {0x8086, 0x0c60, B_FS, NT, "Intel", "S12x0", enable_flash_s12x0},
Sam McNallyb58eed82020-08-14 14:58:26 +10001828 {0x8086, 0x0f1c, B_FS, OK, "Intel", "Bay Trail", enable_flash_silvermont},
1829 {0x8086, 0x0f1d, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1830 {0x8086, 0x0f1e, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1831 {0x8086, 0x0f1f, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001832 {0x8086, 0x122e, B_P, OK, "Intel", "PIIX", enable_flash_piix4},
1833 {0x8086, 0x1234, B_P, NT, "Intel", "MPIIX", enable_flash_piix4},
1834 {0x8086, 0x1c44, B_FS, DEP, "Intel", "Z68", enable_flash_pch6},
1835 {0x8086, 0x1c46, B_FS, DEP, "Intel", "P67", enable_flash_pch6},
1836 {0x8086, 0x1c47, B_FS, NT, "Intel", "UM67", enable_flash_pch6},
1837 {0x8086, 0x1c49, B_FS, DEP, "Intel", "HM65", enable_flash_pch6},
1838 {0x8086, 0x1c4a, B_FS, DEP, "Intel", "H67", enable_flash_pch6},
1839 {0x8086, 0x1c4b, B_FS, NT, "Intel", "HM67", enable_flash_pch6},
1840 {0x8086, 0x1c4c, B_FS, NT, "Intel", "Q65", enable_flash_pch6},
Evgeny Zinoviev5c965d72021-03-06 21:14:39 +03001841 {0x8086, 0x1c4d, B_FS, DEP, "Intel", "QS67", enable_flash_pch6},
Angel Pons8dc5d152020-11-20 10:05:29 +01001842 {0x8086, 0x1c4e, B_FS, DEP, "Intel", "Q67", enable_flash_pch6},
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001843 {0x8086, 0x1c4f, B_FS, DEP, "Intel", "QM67", enable_flash_pch6},
1844 {0x8086, 0x1c50, B_FS, NT, "Intel", "B65", enable_flash_pch6},
1845 {0x8086, 0x1c52, B_FS, NT, "Intel", "C202", enable_flash_pch6},
1846 {0x8086, 0x1c54, B_FS, DEP, "Intel", "C204", enable_flash_pch6},
1847 {0x8086, 0x1c56, B_FS, NT, "Intel", "C206", enable_flash_pch6},
1848 {0x8086, 0x1c5c, B_FS, DEP, "Intel", "H61", enable_flash_pch6},
1849 {0x8086, 0x1d40, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
1850 {0x8086, 0x1d41, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
Edward O'Callaghan8eeacf22020-11-02 14:43:10 +11001851 {0x8086, 0x1e41, B_FS, DEP, "Intel", "Desktop Sample", enable_flash_pch7},
1852 {0x8086, 0x1e42, B_FS, DEP, "Intel", "Mobile Sample", enable_flash_pch7},
1853 {0x8086, 0x1e43, B_FS, DEP, "Intel", "SFF Sample", enable_flash_pch7},
Sam McNally491512b2020-08-14 14:44:06 +10001854 {0x8086, 0x1e44, B_FS, DEP, "Intel", "Z77", enable_flash_pch7},
1855 {0x8086, 0x1e46, B_FS, NT, "Intel", "Z75", enable_flash_pch7},
Jacob Garber1dbd3f62020-08-28 12:48:32 -06001856 {0x8086, 0x1e47, B_FS, DEP, "Intel", "Q77", enable_flash_pch7},
Sam McNally491512b2020-08-14 14:44:06 +10001857 {0x8086, 0x1e48, B_FS, DEP, "Intel", "Q75", enable_flash_pch7},
1858 {0x8086, 0x1e49, B_FS, DEP, "Intel", "B75", enable_flash_pch7},
1859 {0x8086, 0x1e4a, B_FS, DEP, "Intel", "H77", enable_flash_pch7},
Jacob Garbercefb5492021-02-20 10:51:56 -07001860 {0x8086, 0x1e53, B_FS, DEP, "Intel", "C216", enable_flash_pch7},
Sam McNally491512b2020-08-14 14:44:06 +10001861 {0x8086, 0x1e55, B_FS, DEP, "Intel", "QM77", enable_flash_pch7},
1862 {0x8086, 0x1e56, B_FS, DEP, "Intel", "QS77", enable_flash_pch7},
1863 {0x8086, 0x1e57, B_FS, DEP, "Intel", "HM77", enable_flash_pch7},
1864 {0x8086, 0x1e58, B_FS, NT, "Intel", "UM77", enable_flash_pch7},
1865 {0x8086, 0x1e59, B_FS, DEP, "Intel", "HM76", enable_flash_pch7},
1866 {0x8086, 0x1e5d, B_FS, DEP, "Intel", "HM75", enable_flash_pch7},
1867 {0x8086, 0x1e5e, B_FS, NT, "Intel", "HM70", enable_flash_pch7},
1868 {0x8086, 0x1e5f, B_FS, DEP, "Intel", "NM70", enable_flash_pch7},
Sam McNallyb58eed82020-08-14 14:58:26 +10001869 {0x8086, 0x1f38, B_FS, DEP, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1870 {0x8086, 0x1f39, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1871 {0x8086, 0x1f3a, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1872 {0x8086, 0x1f3b, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1873 {0x8086, 0x229c, B_FS, OK, "Intel", "Braswell", enable_flash_silvermont},
Sam McNally491512b2020-08-14 14:44:06 +10001874 {0x8086, 0x2310, B_FS, NT, "Intel", "DH89xxCC (Cave Creek)", enable_flash_pch7},
1875 {0x8086, 0x2390, B_FS, NT, "Intel", "Coleto Creek", enable_flash_pch7},
Edward O'Callaghan01c39672020-05-27 19:13:26 +10001876 {0x8086, 0x2410, B_FL, OK, "Intel", "ICH", enable_flash_ich0},
1877 {0x8086, 0x2420, B_FL, OK, "Intel", "ICH0", enable_flash_ich0},
1878 {0x8086, 0x2440, B_FL, OK, "Intel", "ICH2", enable_flash_ich2345},
1879 {0x8086, 0x244c, B_FL, OK, "Intel", "ICH2-M", enable_flash_ich2345},
1880 {0x8086, 0x2450, B_FL, NT, "Intel", "C-ICH", enable_flash_ich2345},
1881 {0x8086, 0x2480, B_FL, OK, "Intel", "ICH3-S", enable_flash_ich2345},
1882 {0x8086, 0x248c, B_FL, OK, "Intel", "ICH3-M", enable_flash_ich2345},
1883 {0x8086, 0x24c0, B_FL, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich2345},
1884 {0x8086, 0x24cc, B_FL, OK, "Intel", "ICH4-M", enable_flash_ich2345},
1885 {0x8086, 0x24d0, B_FL, OK, "Intel", "ICH5/ICH5R", enable_flash_ich2345},
1886 {0x8086, 0x25a1, B_FL, OK, "Intel", "6300ESB", enable_flash_ich2345},
1887 {0x8086, 0x2640, B_FL, OK, "Intel", "ICH6/ICH6R", enable_flash_ich6},
1888 {0x8086, 0x2641, B_FL, OK, "Intel", "ICH6-M", enable_flash_ich6},
1889 {0x8086, 0x2642, B_FL, NT, "Intel", "ICH6W/ICH6RW", enable_flash_ich6},
1890 {0x8086, 0x2670, B_FL, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich6},
1891 {0x8086, 0x27b0, B_FS, OK, "Intel", "ICH7DH", enable_flash_ich7},
1892 {0x8086, 0x27b8, B_FS, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7},
1893 {0x8086, 0x27b9, B_FS, OK, "Intel", "ICH7M", enable_flash_ich7},
1894 {0x8086, 0x27bc, B_FS, OK, "Intel", "NM10", enable_flash_ich7},
1895 {0x8086, 0x27bd, B_FS, OK, "Intel", "ICH7MDH", enable_flash_ich7},
1896 {0x8086, 0x2810, B_FS, DEP, "Intel", "ICH8/ICH8R", enable_flash_ich8},
1897 {0x8086, 0x2811, B_FS, DEP, "Intel", "ICH8M-E", enable_flash_ich8},
1898 {0x8086, 0x2812, B_FS, DEP, "Intel", "ICH8DH", enable_flash_ich8},
1899 {0x8086, 0x2814, B_FS, DEP, "Intel", "ICH8DO", enable_flash_ich8},
1900 {0x8086, 0x2815, B_FS, DEP, "Intel", "ICH8M", enable_flash_ich8},
1901 {0x8086, 0x2910, B_FS, DEP, "Intel", "ICH9 Eng. Sample", enable_flash_ich9},
1902 {0x8086, 0x2912, B_FS, DEP, "Intel", "ICH9DH", enable_flash_ich9},
1903 {0x8086, 0x2914, B_FS, DEP, "Intel", "ICH9DO", enable_flash_ich9},
1904 {0x8086, 0x2916, B_FS, DEP, "Intel", "ICH9R", enable_flash_ich9},
1905 {0x8086, 0x2917, B_FS, DEP, "Intel", "ICH9M-E", enable_flash_ich9},
1906 {0x8086, 0x2918, B_FS, DEP, "Intel", "ICH9", enable_flash_ich9},
1907 {0x8086, 0x2919, B_FS, DEP, "Intel", "ICH9M", enable_flash_ich9},
1908 {0x8086, 0x3a10, B_FS, NT, "Intel", "ICH10R Eng. Sample", enable_flash_ich10},
1909 {0x8086, 0x3a14, B_FS, DEP, "Intel", "ICH10DO", enable_flash_ich10},
1910 {0x8086, 0x3a16, B_FS, DEP, "Intel", "ICH10R", enable_flash_ich10},
1911 {0x8086, 0x3a18, B_FS, DEP, "Intel", "ICH10", enable_flash_ich10},
1912 {0x8086, 0x3a1a, B_FS, DEP, "Intel", "ICH10D", enable_flash_ich10},
1913 {0x8086, 0x3a1e, B_FS, NT, "Intel", "ICH10 Eng. Sample", enable_flash_ich10},
1914 {0x8086, 0x3b00, B_FS, NT, "Intel", "3400 Desktop", enable_flash_pch5},
1915 {0x8086, 0x3b01, B_FS, NT, "Intel", "3400 Mobile", enable_flash_pch5},
1916 {0x8086, 0x3b02, B_FS, NT, "Intel", "P55", enable_flash_pch5},
1917 {0x8086, 0x3b03, B_FS, DEP, "Intel", "PM55", enable_flash_pch5},
1918 {0x8086, 0x3b06, B_FS, DEP, "Intel", "H55", enable_flash_pch5},
1919 {0x8086, 0x3b07, B_FS, DEP, "Intel", "QM57", enable_flash_pch5},
1920 {0x8086, 0x3b08, B_FS, NT, "Intel", "H57", enable_flash_pch5},
1921 {0x8086, 0x3b09, B_FS, DEP, "Intel", "HM55", enable_flash_pch5},
1922 {0x8086, 0x3b0a, B_FS, NT, "Intel", "Q57", enable_flash_pch5},
1923 {0x8086, 0x3b0b, B_FS, NT, "Intel", "HM57", enable_flash_pch5},
1924 {0x8086, 0x3b0d, B_FS, NT, "Intel", "3400 Mobile SFF", enable_flash_pch5},
1925 {0x8086, 0x3b0e, B_FS, NT, "Intel", "B55", enable_flash_pch5},
1926 {0x8086, 0x3b0f, B_FS, DEP, "Intel", "QS57", enable_flash_pch5},
1927 {0x8086, 0x3b12, B_FS, NT, "Intel", "3400", enable_flash_pch5},
1928 {0x8086, 0x3b14, B_FS, DEP, "Intel", "3420", enable_flash_pch5},
1929 {0x8086, 0x3b16, B_FS, NT, "Intel", "3450", enable_flash_pch5},
1930 {0x8086, 0x3b1e, B_FS, NT, "Intel", "B55", enable_flash_pch5},
1931 {0x8086, 0x5031, B_FS, OK, "Intel", "EP80579", enable_flash_ich7},
1932 {0x8086, 0x7000, B_P, OK, "Intel", "PIIX3", enable_flash_piix4},
1933 {0x8086, 0x7110, B_P, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4},
1934 {0x8086, 0x7198, B_P, OK, "Intel", "440MX", enable_flash_piix4},
1935 {0x8086, 0x8119, B_FL, OK, "Intel", "SCH Poulsbo", enable_flash_poulsbo},
1936 {0x8086, 0x8186, B_FS, OK, "Intel", "Atom E6xx(T) (Tunnel Creek)", enable_flash_tunnelcreek},
Edward O'Callaghan6a0f20f2020-12-24 12:34:24 +11001937 {0x8086, 0x8c40, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
Sam McNally491512b2020-08-14 14:44:06 +10001938 {0x8086, 0x8c41, B_FS, NT, "Intel", "Lynx Point Mobile Eng. Sample", enable_flash_pch8},
1939 {0x8086, 0x8c42, B_FS, NT, "Intel", "Lynx Point Desktop Eng. Sample",enable_flash_pch8},
1940 {0x8086, 0x8c43, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1941 {0x8086, 0x8c44, B_FS, DEP, "Intel", "Z87", enable_flash_pch8},
Edward O'Callaghan6a0f20f2020-12-24 12:34:24 +11001942 {0x8086, 0x8c45, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
Sam McNally491512b2020-08-14 14:44:06 +10001943 {0x8086, 0x8c46, B_FS, NT, "Intel", "Z85", enable_flash_pch8},
Edward O'Callaghan6a0f20f2020-12-24 12:34:24 +11001944 {0x8086, 0x8c47, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1945 {0x8086, 0x8c48, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
Sam McNally491512b2020-08-14 14:44:06 +10001946 {0x8086, 0x8c49, B_FS, NT, "Intel", "HM86", enable_flash_pch8},
1947 {0x8086, 0x8c4a, B_FS, DEP, "Intel", "H87", enable_flash_pch8},
1948 {0x8086, 0x8c4b, B_FS, DEP, "Intel", "HM87", enable_flash_pch8},
1949 {0x8086, 0x8c4c, B_FS, NT, "Intel", "Q85", enable_flash_pch8},
1950 {0x8086, 0x8c4d, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1951 {0x8086, 0x8c4e, B_FS, NT, "Intel", "Q87", enable_flash_pch8},
1952 {0x8086, 0x8c4f, B_FS, NT, "Intel", "QM87", enable_flash_pch8},
Edward O'Callaghan6a0f20f2020-12-24 12:34:24 +11001953 {0x8086, 0x8c50, B_FS, DEP, "Intel", "B85", enable_flash_pch8},
1954 {0x8086, 0x8c51, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1955 {0x8086, 0x8c52, B_FS, NT, "Intel", "C222", enable_flash_pch8},
1956 {0x8086, 0x8c53, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1957 {0x8086, 0x8c54, B_FS, DEP, "Intel", "C224", enable_flash_pch8},
1958 {0x8086, 0x8c55, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1959 {0x8086, 0x8c56, B_FS, NT, "Intel", "C226", enable_flash_pch8},
1960 {0x8086, 0x8c57, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1961 {0x8086, 0x8c58, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1962 {0x8086, 0x8c59, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1963 {0x8086, 0x8c5a, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1964 {0x8086, 0x8c5b, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1965 {0x8086, 0x8c5c, B_FS, DEP, "Intel", "H81", enable_flash_pch8},
1966 {0x8086, 0x8c5d, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1967 {0x8086, 0x8c5e, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1968 {0x8086, 0x8c5f, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
Edward O'Callaghan0ca24912020-12-24 12:40:17 +11001969 {0x8086, 0x8cc1, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
1970 {0x8086, 0x8cc2, B_FS, NT, "Intel", "9 Series Engineering Sample", enable_flash_pch9},
1971 {0x8086, 0x8cc3, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
1972 {0x8086, 0x8cc4, B_FS, NT, "Intel", "Z97", enable_flash_pch9},
1973 {0x8086, 0x8cc6, B_FS, NT, "Intel", "H97", enable_flash_pch9},
Edward O'Callaghan8314e112020-12-24 12:41:02 +11001974 {0x8086, 0x8d40, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1975 {0x8086, 0x8d41, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1976 {0x8086, 0x8d42, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1977 {0x8086, 0x8d43, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1978 {0x8086, 0x8d44, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1979 {0x8086, 0x8d45, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1980 {0x8086, 0x8d46, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1981 {0x8086, 0x8d47, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1982 {0x8086, 0x8d48, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1983 {0x8086, 0x8d49, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1984 {0x8086, 0x8d4a, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1985 {0x8086, 0x8d4b, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1986 {0x8086, 0x8d4c, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1987 {0x8086, 0x8d4d, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1988 {0x8086, 0x8d4e, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1989 {0x8086, 0x8d4f, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1990 {0x8086, 0x8d50, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1991 {0x8086, 0x8d51, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1992 {0x8086, 0x8d52, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1993 {0x8086, 0x8d53, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1994 {0x8086, 0x8d54, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1995 {0x8086, 0x8d55, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1996 {0x8086, 0x8d56, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1997 {0x8086, 0x8d57, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1998 {0x8086, 0x8d58, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1999 {0x8086, 0x8d59, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2000 {0x8086, 0x8d5a, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2001 {0x8086, 0x8d5b, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2002 {0x8086, 0x8d5c, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2003 {0x8086, 0x8d5d, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2004 {0x8086, 0x8d5e, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2005 {0x8086, 0x8d5f, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
Sam McNally491512b2020-08-14 14:44:06 +10002006 {0x8086, 0x9c41, B_FS, NT, "Intel", "Lynx Point LP Eng. Sample", enable_flash_pch8_lp},
2007 {0x8086, 0x9c43, B_FS, NT, "Intel", "Lynx Point LP Premium", enable_flash_pch8_lp},
2008 {0x8086, 0x9c45, B_FS, NT, "Intel", "Lynx Point LP Mainstream", enable_flash_pch8_lp},
2009 {0x8086, 0x9c47, B_FS, NT, "Intel", "Lynx Point LP Value", enable_flash_pch8_lp},
2010 {0x8086, 0x9cc1, B_FS, NT, "Intel", "Haswell U Sample", enable_flash_pch9_lp},
2011 {0x8086, 0x9cc2, B_FS, NT, "Intel", "Broadwell U Sample", enable_flash_pch9_lp},
2012 {0x8086, 0x9cc3, B_FS, DEP, "Intel", "Broadwell U Premium", enable_flash_pch9_lp},
Nikolai Artemievfee82582020-11-03 17:19:52 +11002013 {0x8086, 0x9cc5, B_FS, DEP, "Intel", "Broadwell U Base", enable_flash_pch9_lp},
Sam McNally491512b2020-08-14 14:44:06 +10002014 {0x8086, 0x9cc6, B_FS, NT, "Intel", "Broadwell Y Sample", enable_flash_pch9_lp},
2015 {0x8086, 0x9cc7, B_FS, NT, "Intel", "Broadwell Y Premium", enable_flash_pch9_lp},
2016 {0x8086, 0x9cc9, B_FS, NT, "Intel", "Broadwell Y Base", enable_flash_pch9_lp},
2017 {0x8086, 0x9ccb, B_FS, NT, "Intel", "Broadwell H", enable_flash_pch9},
Edward O'Callaghanb667fb02020-11-16 16:04:13 +11002018 {0x8086, 0x9d24, B_FS, OK, "Intel", "Skylake", enable_flash_pch100},
2019 {0x8086, 0xa224, B_FS, OK, "Intel", "Lewisburg", enable_flash_pch100},
Furquan Shaikh44088752016-07-11 22:48:08 -07002020 /*
Edward O'Callaghanb134db52020-11-16 16:00:00 +11002021 * TODO(b/173164205): Merged with upstream.
Furquan Shaikh44088752016-07-11 22:48:08 -07002022 */
Edward O'Callaghan01c39672020-05-27 19:13:26 +10002023 {0x8086, 0x31f0, B_FS, OK, "Intel", "Geminilake", enable_flash_apl},
Edward O'Callaghanb667fb02020-11-16 16:04:13 +11002024 {0x8086, 0x9da4, B_FS, OK, "Intel", "Cannonlake", enable_flash_pch100},
2025 {0x8086, 0x34a4, B_FS, OK, "Intel", "Icelake", enable_flash_pch100},
Edward O'Callaghanb667fb02020-11-16 16:04:13 +11002026 {0x8086, 0x4da4, B_FS, OK, "Intel", "Jasperlake", enable_flash_pch100},
2027 {0x8086, 0xa0a4, B_FS, OK, "Intel", "Tigerlake", enable_flash_pch100},
2028 {0x8086, 0x7aa4, B_FS, OK, "Intel", "Alderlake-S", enable_flash_pch100},
2029 {0x8086, 0x51a4, B_FS, OK, "Intel", "Alderlake-P", enable_flash_pch100},
Edward O'Callaghanb19b59c2020-12-24 12:47:00 +11002030 {0x8086, 0x9d41, B_S, NT, "Intel", "Skylake / Kaby Lake Sample", enable_flash_pch100},
2031 {0x8086, 0x9d43, B_S, NT, "Intel", "Skylake U Base", enable_flash_pch100},
2032 {0x8086, 0x9d46, B_S, NT, "Intel", "Skylake Y Premium", enable_flash_pch100},
2033 {0x8086, 0x9d48, B_S, DEP, "Intel", "Skylake U Premium", enable_flash_pch100},
2034 {0x8086, 0x9d4b, B_S, NT, "Intel", "Kaby Lake Y w/ iHDCP2.2 Prem.", enable_flash_pch100},
2035 {0x8086, 0x9d4e, B_S, DEP, "Intel", "Kaby Lake U w/ iHDCP2.2 Prem.", enable_flash_pch100},
2036 {0x8086, 0x9d50, B_S, NT, "Intel", "Kaby Lake U w/ iHDCP2.2 Base", enable_flash_pch100},
2037 {0x8086, 0x9d51, B_S, NT, "Intel", "Kabe Lake w/ iHDCP2.2 Sample", enable_flash_pch100},
2038 {0x8086, 0x9d53, B_S, NT, "Intel", "Kaby Lake U Base", enable_flash_pch100},
2039 {0x8086, 0x9d56, B_S, NT, "Intel", "Kaby Lake Y Premium", enable_flash_pch100},
2040 {0x8086, 0x9d58, B_S, NT, "Intel", "Kaby Lake U Premium", enable_flash_pch100},
Edward O'Callaghaned090dc2020-12-24 12:49:51 +11002041 {0x8086, 0x9d84, B_S, DEP, "Intel", "Cannon Lake U Premium", enable_flash_pch300},
Matt DeVillier81bc4d32020-08-12 12:48:06 -05002042 {0x8086, 0x0284, B_S, DEP, "Intel", "Comet Lake U Premium", enable_flash_pch400},
Sam McNally2ac11c02021-03-11 11:41:46 +11002043 {0x8086, 0x0285, B_S, DEP, "Intel", "Comet Lake U Base", enable_flash_pch400},
Edward O'Callaghanb19b59c2020-12-24 12:47:00 +11002044 {0x8086, 0xa141, B_S, NT, "Intel", "Sunrise Point Desktop Sample", enable_flash_pch100},
2045 {0x8086, 0xa142, B_S, NT, "Intel", "Sunrise Point Unknown Sample", enable_flash_pch100},
2046 {0x8086, 0xa143, B_S, DEP, "Intel", "H110", enable_flash_pch100},
2047 {0x8086, 0xa144, B_S, NT, "Intel", "H170", enable_flash_pch100},
2048 {0x8086, 0xa145, B_S, NT, "Intel", "Z170", enable_flash_pch100},
2049 {0x8086, 0xa146, B_S, NT, "Intel", "Q170", enable_flash_pch100},
2050 {0x8086, 0xa147, B_S, NT, "Intel", "Q150", enable_flash_pch100},
2051 {0x8086, 0xa148, B_S, NT, "Intel", "B150", enable_flash_pch100},
2052 {0x8086, 0xa149, B_S, NT, "Intel", "C236", enable_flash_pch100},
2053 {0x8086, 0xa14a, B_S, NT, "Intel", "C232", enable_flash_pch100},
2054 {0x8086, 0xa14b, B_S, NT, "Intel", "Sunrise Point Server Sample", enable_flash_pch100},
2055 {0x8086, 0xa14d, B_S, NT, "Intel", "QM170", enable_flash_pch100},
2056 {0x8086, 0xa14e, B_S, NT, "Intel", "HM170", enable_flash_pch100},
2057 {0x8086, 0xa150, B_S, DEP, "Intel", "CM236", enable_flash_pch100},
2058 {0x8086, 0xa151, B_S, NT, "Intel", "QMS180", enable_flash_pch100},
2059 {0x8086, 0xa152, B_S, NT, "Intel", "HM175", enable_flash_pch100},
2060 {0x8086, 0xa153, B_S, NT, "Intel", "QM175", enable_flash_pch100},
2061 {0x8086, 0xa154, B_S, NT, "Intel", "CM238", enable_flash_pch100},
2062 {0x8086, 0xa155, B_S, NT, "Intel", "QMU185", enable_flash_pch100},
Edward O'Callaghan98b25532020-12-24 12:48:21 +11002063 {0x8086, 0xa1a4, B_S, DEP, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
2064 {0x8086, 0xa1c0, B_S, NT, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
2065 {0x8086, 0xa1c1, B_S, NT, "Intel", "C621 Series Chipset (QS/PRQ)", enable_flash_c620},
2066 {0x8086, 0xa1c2, B_S, NT, "Intel", "C622 Series Chipset (QS/PRQ)", enable_flash_c620},
2067 {0x8086, 0xa1c3, B_S, NT, "Intel", "C624 Series Chipset (QS/PRQ)", enable_flash_c620},
2068 {0x8086, 0xa1c4, B_S, NT, "Intel", "C625 Series Chipset (QS/PRQ)", enable_flash_c620},
2069 {0x8086, 0xa1c5, B_S, NT, "Intel", "C626 Series Chipset (QS/PRQ)", enable_flash_c620},
2070 {0x8086, 0xa1c6, B_S, NT, "Intel", "C627 Series Chipset (QS/PRQ)", enable_flash_c620},
2071 {0x8086, 0xa1c7, B_S, NT, "Intel", "C628 Series Chipset (QS/PRQ)", enable_flash_c620},
2072 {0x8086, 0xa1c8, B_S, NT, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
2073 {0x8086, 0xa1c9, B_S, NT, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
2074 {0x8086, 0xa1ca, B_S, NT, "Intel", "C629 Series Chipset (QS/PRQ)", enable_flash_c620},
2075 {0x8086, 0xa1cb, B_S, NT, "Intel", "C621A Series Chipset (QS/PRQ)", enable_flash_c620},
2076 {0x8086, 0xa1cc, B_S, NT, "Intel", "C627A Series Chipset (QS/PRQ)", enable_flash_c620},
2077 {0x8086, 0xa1cd, B_S, NT, "Intel", "C629A Series Chipset (QS/PRQ)", enable_flash_c620},
2078 {0x8086, 0xa240, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
2079 {0x8086, 0xa241, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
2080 {0x8086, 0xa242, B_S, NT, "Intel", "C624 Series Chipset Supersku", enable_flash_c620},
2081 {0x8086, 0xa243, B_S, NT, "Intel", "C627 Series Chipset Supersku", enable_flash_c620},
2082 {0x8086, 0xa244, B_S, NT, "Intel", "C621 Series Chipset Supersku", enable_flash_c620},
2083 {0x8086, 0xa245, B_S, NT, "Intel", "C627 Series Chipset Supersku", enable_flash_c620},
2084 {0x8086, 0xa246, B_S, NT, "Intel", "C628 Series Chipset Supersku", enable_flash_c620},
2085 {0x8086, 0xa247, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
2086 {0x8086, 0xa248, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
2087 {0x8086, 0xa249, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
Edward O'Callaghanb19b59c2020-12-24 12:47:00 +11002088 {0x8086, 0xa2c4, B_S, NT, "Intel", "H270", enable_flash_pch100},
2089 {0x8086, 0xa2c5, B_S, NT, "Intel", "Z270", enable_flash_pch100},
2090 {0x8086, 0xa2c6, B_S, NT, "Intel", "Q270", enable_flash_pch100},
2091 {0x8086, 0xa2c7, B_S, NT, "Intel", "Q250", enable_flash_pch100},
2092 {0x8086, 0xa2c8, B_S, NT, "Intel", "B250", enable_flash_pch100},
2093 {0x8086, 0xa2c9, B_S, NT, "Intel", "Z370", enable_flash_pch100},
Angel Ponsd839fd92021-04-22 17:08:00 +02002094 {0x8086, 0xa2ca, B_S, DEP, "Intel", "H310C", enable_flash_pch100},
2095 {0x8086, 0xa2cc, B_S, DEP, "Intel", "B365", enable_flash_pch100},
Edward O'Callaghanb19b59c2020-12-24 12:47:00 +11002096 {0x8086, 0xa2d2, B_S, NT, "Intel", "X299", enable_flash_pch100},
Edward O'Callaghanc7da5242020-12-24 13:00:57 +11002097 {0x8086, 0x5ae8, B_S, DEP, "Intel", "Apollo Lake", enable_flash_apl},
Edward O'Callaghana5b58532021-02-16 00:13:02 +11002098 {0x8086, 0x5af0, B_S, DEP, "Intel", "Apollo Lake", enable_flash_apl},
Angel Ponscf963192021-05-17 10:50:40 +02002099 {0x8086, 0x3197, B_S, NT, "Intel", "Gemini Lake", enable_flash_glk},
Angel Pons00b29cf2020-07-10 17:04:10 +02002100 {0x8086, 0x31e8, B_S, DEP, "Intel", "Gemini Lake", enable_flash_glk},
Edward O'Callaghaned090dc2020-12-24 12:49:51 +11002101 {0x8086, 0xa303, B_S, NT, "Intel", "H310", enable_flash_pch300},
2102 {0x8086, 0xa304, B_S, NT, "Intel", "H370", enable_flash_pch300},
2103 {0x8086, 0xa305, B_S, NT, "Intel", "Z390", enable_flash_pch300},
2104 {0x8086, 0xa306, B_S, NT, "Intel", "Q370", enable_flash_pch300},
2105 {0x8086, 0xa308, B_S, NT, "Intel", "B360", enable_flash_pch300},
2106 {0x8086, 0xa309, B_S, NT, "Intel", "C246", enable_flash_pch300},
2107 {0x8086, 0xa30a, B_S, NT, "Intel", "C242", enable_flash_pch300},
2108 {0x8086, 0xa30c, B_S, NT, "Intel", "QM370", enable_flash_pch300},
2109 {0x8086, 0xa30d, B_S, NT, "Intel", "HM370", enable_flash_pch300},
2110 {0x8086, 0xa30e, B_S, DEP, "Intel", "CM246", enable_flash_pch300},
2111 {0x8086, 0x3482, B_S, DEP, "Intel", "Ice Lake U Premium", enable_flash_pch300},
Gaggery Tsai8b1bb0e2019-12-12 11:52:03 -08002112 {0x8086, 0x0684, B_S, NT, "Intel", "H470", enable_flash_pch400},
2113 {0x8086, 0x0685, B_S, NT, "Intel", "Z490", enable_flash_pch400},
2114 {0x8086, 0x0687, B_S, NT, "Intel", "Q470", enable_flash_pch400},
2115 {0x8086, 0x068c, B_S, NT, "Intel", "QM480", enable_flash_pch400},
2116 {0x8086, 0x068d, B_S, NT, "Intel", "HM470", enable_flash_pch400},
2117 {0x8086, 0x068e, B_S, NT, "Intel", "WM490", enable_flash_pch400},
2118 {0x8086, 0x0697, B_S, NT, "Intel", "W480", enable_flash_pch400},
hailfinger324a9cc2010-05-26 01:45:41 +00002119#endif
Patrick Georgi8ddfee92017-03-20 14:54:28 +01002120 {0},
ollie5672ac62004-03-17 22:22:08 +00002121};
ollie5b621572004-03-20 16:46:10 +00002122
uwef6641642007-05-09 10:17:44 +00002123int chipset_flash_enable(void)
ollie5672ac62004-03-17 22:22:08 +00002124{
stepand0d220f2011-01-24 19:15:51 +00002125 struct pci_dev *dev = NULL;
uwe6ed6d952007-12-04 21:49:06 +00002126 int ret = -2; /* Nothing! */
uwef6641642007-05-09 10:17:44 +00002127 int i;
ollie5672ac62004-03-17 22:22:08 +00002128
uwe6ed6d952007-12-04 21:49:06 +00002129 /* Now let's try to find the chipset we have... */
uwe5f612c82009-05-16 23:42:17 +00002130 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
2131 dev = pci_dev_find(chipset_enables[i].vendor_id,
2132 chipset_enables[i].device_id);
mkarcherf5f203f2010-06-13 10:16:12 +00002133 if (!dev)
2134 continue;
2135 if (ret != -2) {
Edward O'Callaghan7c9baee2019-08-12 22:46:59 +10002136 msg_pwarn("Warning: unexpected second chipset match: "
hailfinger5bae2332010-10-08 11:03:02 +00002137 "\"%s %s\"\n"
2138 "ignoring, please report lspci and board URL "
2139 "to flashrom@flashrom.org\n"
stepanc485a772011-03-29 21:41:41 +00002140 "with \'CHIPSET: your board name\' in the "
hailfinger5bae2332010-10-08 11:03:02 +00002141 "subject line.\n",
mkarcherf5f203f2010-06-13 10:16:12 +00002142 chipset_enables[i].vendor_name,
2143 chipset_enables[i].device_name);
2144 continue;
2145 }
Edward O'Callaghan7c9baee2019-08-12 22:46:59 +10002146 msg_pinfo("Found chipset \"%s %s\"",
stefanct0faec752011-07-21 19:59:34 +00002147 chipset_enables[i].vendor_name,
2148 chipset_enables[i].device_name);
stefanctdfd58832011-07-25 20:38:52 +00002149 msg_pdbg(" with PCI ID %04x:%04x",
hailfinger664cf482010-05-22 07:31:50 +00002150 chipset_enables[i].vendor_id,
2151 chipset_enables[i].device_id);
Edward O'Callaghan54464472020-05-27 00:51:19 +10002152 msg_pinfo(".\n");
uwef6641642007-05-09 10:17:44 +00002153
Sam McNally994a2e22020-08-14 14:32:54 +10002154 if (chipset_enables[i].status == BAD) {
2155 msg_perr("ERROR: This chipset is not supported yet.\n");
2156 return ERROR_FATAL;
2157 }
stefanct0faec752011-07-21 19:59:34 +00002158 if (chipset_enables[i].status == NT) {
Edward O'Callaghan54464472020-05-27 00:51:19 +10002159 msg_pinfo("This chipset is marked as untested. If "
stefanct0faec752011-07-21 19:59:34 +00002160 "you are using an up-to-date version\nof "
Edward O'Callaghan7c9baee2019-08-12 22:46:59 +10002161 "flashrom *and* were (not) able to "
2162 "successfully update your firmware with it,\n"
2163 "then please email a report to "
2164 "flashrom@flashrom.org including a verbose "
2165 "(-V) log.\nThank you!\n");
stefanct0faec752011-07-21 19:59:34 +00002166 }
Edward O'Callaghan1cb10572020-11-16 10:57:13 +11002167 if (!(chipset_enables[i].buses & (internal_buses_supported | BUS_SPI))) {
2168 msg_pdbg("Skipping chipset enable: No supported buses enabled.\n");
2169 continue;
2170 }
Edward O'Callaghan7c9baee2019-08-12 22:46:59 +10002171 msg_pinfo("Enabling flash write... ");
Edward O'Callaghan54464472020-05-27 00:51:19 +10002172 ret = chipset_enables[i].doit(dev, chipset_enables[i].device_name);
mkarcherf5f203f2010-06-13 10:16:12 +00002173 if (ret == NOT_DONE_YET) {
2174 ret = -2;
Edward O'Callaghan7c9baee2019-08-12 22:46:59 +10002175 msg_pinfo("OK - searching further chips.\n");
mkarcherf5f203f2010-06-13 10:16:12 +00002176 } else if (ret < 0)
snelsone42c3802010-05-07 20:09:04 +00002177 msg_pinfo("FAILED!\n");
uwe8d342eb2011-07-28 08:13:25 +00002178 else if (ret == 0)
Edward O'Callaghan7c9baee2019-08-12 22:46:59 +10002179 msg_pinfo("OK.\n");
uwe8d342eb2011-07-28 08:13:25 +00002180 else if (ret == ERROR_NONFATAL)
mkarcher74d30132010-07-22 18:04:15 +00002181 msg_pinfo("PROBLEMS, continuing anyway\n");
uwe97e8e272011-09-03 17:15:00 +00002182 if (ret == ERROR_FATAL) {
2183 msg_perr("FATAL ERROR!\n");
2184 return ret;
2185 }
uwef6641642007-05-09 10:17:44 +00002186 }
mkarcherf5f203f2010-06-13 10:16:12 +00002187
uwef6641642007-05-09 10:17:44 +00002188 return ret;
ollie5672ac62004-03-17 22:22:08 +00002189}