blob: 5fed9e71172460be2b671632678a22f79e9c1583 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ollie Lho184a4042005-11-26 21:55:36 +00003 *
Uwe Hermannd1107642007-08-29 17:52:32 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
Stefan Reinauer8fa64812009-08-12 09:27:45 +00005 * Copyright (C) 2005-2009 coresystems GmbH
Uwe Hermannd1107642007-08-29 17:52:32 +00006 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00007 * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger
Adam Jurkowskie4984102009-12-21 15:30:46 +00008 * Copyright (C) 2009 Kontron Modular Computers GmbH
Helge Wagnerdd73d832012-08-24 23:03:46 +00009 * Copyright (C) 2011, 2012 Stefan Tauner
Nico Huber93c30692017-03-20 14:25:09 +010010 * Copyright (C) 2017 secunet Security Networks AG
11 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
Ollie Lho184a4042005-11-26 21:55:36 +000012 *
Uwe Hermannd1107642007-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.
Ollie Lho184a4042005-11-26 21:55:36 +000016 *
Uwe Hermannd1107642007-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.
Uwe Hermannd1107642007-08-29 17:52:32 +000021 */
22
23/*
24 * Contains the chipset specific flash enables.
Ollie Lho184a4042005-11-26 21:55:36 +000025 */
26
Lane Brooksd54958a2007-11-13 16:45:22 +000027#define _LARGEFILE64_SOURCE
28
Felix Singer980d6b82022-08-19 02:48:15 +020029#include <stdbool.h>
Ollie Lhocbbf1252004-03-17 22:22:08 +000030#include <stdlib.h>
Uwe Hermanne8ba5382009-05-22 11:37:27 +000031#include <string.h>
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000032#include <unistd.h>
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +000033#include <inttypes.h>
34#include <errno.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000035#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000036#include "programmer.h"
Thomas Heijligena0655202021-12-14 16:36:05 +010037#include "hwaccess_x86_io.h"
Thomas Heijligenb3287b42021-12-14 17:25:49 +010038#include "hwaccess_x86_msr.h"
Thomas Heijligen74b4aa02021-12-14 17:52:30 +010039#include "hwaccess_physmap.h"
Thomas Heijligend96c97c2021-11-02 21:03:00 +010040#include "platform/pci.h"
Stefan Reinauer86de2832006-03-31 11:26:55 +000041
Michael Karcher89bed6d2010-06-13 10:16:12 +000042#define NOT_DONE_YET 1
43
Carl-Daniel Hailfinger1d3a2fe2010-07-27 22:03:46 +000044#if defined(__i386__) || defined(__x86_64__)
45
Uwe Hermann372eeb52007-12-04 21:49:06 +000046static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000047{
48 uint8_t tmp;
49
Uwe Hermann372eeb52007-12-04 21:49:06 +000050 /*
51 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
52 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
53 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000054 tmp = pci_read_byte(dev, 0x47);
55 tmp |= 0x46;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000056 rpci_write_byte(dev, 0x47, tmp);
Luc Verhaegen6b141752007-05-20 16:16:13 +000057
58 return 0;
59}
60
Rudolf Marek23907d82012-02-07 21:29:48 +000061static int enable_flash_rdc_r8610(struct pci_dev *dev, const char *name)
62{
63 uint8_t tmp;
64
65 /* enable ROMCS for writes */
66 tmp = pci_read_byte(dev, 0x43);
67 tmp |= 0x80;
68 pci_write_byte(dev, 0x43, tmp);
69
70 /* read the bootstrapping register */
71 tmp = pci_read_byte(dev, 0x40) & 0x3;
72 switch (tmp) {
73 case 3:
Nico Huber2e50cdc2018-09-23 20:20:26 +020074 internal_buses_supported &= BUS_FWH;
Rudolf Marek23907d82012-02-07 21:29:48 +000075 break;
76 case 2:
Nico Huber2e50cdc2018-09-23 20:20:26 +020077 internal_buses_supported &= BUS_LPC;
Rudolf Marek23907d82012-02-07 21:29:48 +000078 break;
79 default:
Nico Huber2e50cdc2018-09-23 20:20:26 +020080 internal_buses_supported &= BUS_PARALLEL;
Rudolf Marek23907d82012-02-07 21:29:48 +000081 break;
82 }
83
84 return 0;
85}
86
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000087static int enable_flash_sis85c496(struct pci_dev *dev, const char *name)
88{
89 uint8_t tmp;
90
91 tmp = pci_read_byte(dev, 0xd0);
92 tmp |= 0xf8;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000093 rpci_write_byte(dev, 0xd0, tmp);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000094
95 return 0;
96}
97
98static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name)
99{
Stefan Taunere34e3e82013-01-01 00:06:51 +0000100 #define SIS_MAPREG 0x40
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000101 uint8_t new, newer;
102
103 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
104 /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Stefan Taunere34e3e82013-01-01 00:06:51 +0000105 new = pci_read_byte(dev, SIS_MAPREG);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000106 new &= (~0x04); /* No idea why we clear bit 2. */
107 new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */
Stefan Taunere34e3e82013-01-01 00:06:51 +0000108 rpci_write_byte(dev, SIS_MAPREG, new);
109 newer = pci_read_byte(dev, SIS_MAPREG);
110 if (newer != new) { /* FIXME: share this with other code? */
111 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
112 SIS_MAPREG, new, name);
113 msg_pinfo("Stuck at 0x%02x.\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000114 return -1;
115 }
116 return 0;
117}
118
119static struct pci_dev *find_southbridge(uint16_t vendor, const char *name)
120{
121 struct pci_dev *sbdev;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000122
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000123 sbdev = pci_dev_find_vendorclass(vendor, 0x0601);
124 if (!sbdev)
125 sbdev = pci_dev_find_vendorclass(vendor, 0x0680);
126 if (!sbdev)
127 sbdev = pci_dev_find_vendorclass(vendor, 0x0000);
128 if (!sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +0000129 msg_perr("No southbridge found for %s!\n", name);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000130 if (sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +0000131 msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000132 sbdev->vendor_id, sbdev->device_id,
133 sbdev->bus, sbdev->dev, sbdev->func);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000134 return sbdev;
135}
136
137static int enable_flash_sis501(struct pci_dev *dev, const char *name)
138{
139 uint8_t tmp;
140 int ret = 0;
141 struct pci_dev *sbdev;
142
143 sbdev = find_southbridge(dev->vendor_id, name);
144 if (!sbdev)
145 return -1;
146
147 ret = enable_flash_sis_mapping(sbdev, name);
148
149 tmp = sio_read(0x22, 0x80);
150 tmp &= (~0x20);
151 tmp |= 0x4;
152 sio_write(0x22, 0x80, tmp);
153
154 tmp = sio_read(0x22, 0x70);
155 tmp &= (~0x20);
156 tmp |= 0x4;
157 sio_write(0x22, 0x70, tmp);
Elyes HAOUAS2f1d0072018-10-04 10:42:42 +0200158
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000159 return ret;
160}
161
162static int enable_flash_sis5511(struct pci_dev *dev, const char *name)
163{
164 uint8_t tmp;
165 int ret = 0;
166 struct pci_dev *sbdev;
167
168 sbdev = find_southbridge(dev->vendor_id, name);
169 if (!sbdev)
170 return -1;
171
172 ret = enable_flash_sis_mapping(sbdev, name);
173
174 tmp = sio_read(0x22, 0x50);
175 tmp &= (~0x20);
176 tmp |= 0x4;
177 sio_write(0x22, 0x50, tmp);
178
179 return ret;
180}
181
Stefan Taunere34e3e82013-01-01 00:06:51 +0000182static int enable_flash_sis5x0(struct pci_dev *dev, const char *name, uint8_t dis_mask, uint8_t en_mask)
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000183{
Stefan Taunere34e3e82013-01-01 00:06:51 +0000184 #define SIS_REG 0x45
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000185 uint8_t new, newer;
186 int ret = 0;
187 struct pci_dev *sbdev;
188
189 sbdev = find_southbridge(dev->vendor_id, name);
190 if (!sbdev)
191 return -1;
192
193 ret = enable_flash_sis_mapping(sbdev, name);
194
Stefan Taunere34e3e82013-01-01 00:06:51 +0000195 new = pci_read_byte(sbdev, SIS_REG);
196 new &= (~dis_mask);
197 new |= en_mask;
198 rpci_write_byte(sbdev, SIS_REG, new);
199 newer = pci_read_byte(sbdev, SIS_REG);
200 if (newer != new) { /* FIXME: share this with other code? */
201 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SIS_REG, new, name);
202 msg_pinfo("Stuck at 0x%02x\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000203 ret = -1;
204 }
205
206 return ret;
207}
208
Stefan Taunere34e3e82013-01-01 00:06:51 +0000209static int enable_flash_sis530(struct pci_dev *dev, const char *name)
210{
211 return enable_flash_sis5x0(dev, name, 0x20, 0x04);
212}
213
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000214static int enable_flash_sis540(struct pci_dev *dev, const char *name)
215{
Stefan Taunere34e3e82013-01-01 00:06:51 +0000216 return enable_flash_sis5x0(dev, name, 0x80, 0x40);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000217}
218
Uwe Hermann987942d2006-11-07 11:16:21 +0000219/* Datasheet:
220 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
221 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
222 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
223 * - Order Number: 290562-001
224 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000225static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000226{
227 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000228 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000229
Nico Huber2e50cdc2018-09-23 20:20:26 +0200230 internal_buses_supported &= BUS_PARALLEL;
Maciej Pijankaa661e152009-12-08 17:26:24 +0000231
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000232 old = pci_read_word(dev, xbcs);
233
234 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000235 * FFF00000-FFF7FFFF are forwarded to ISA).
Uwe Hermannc556d322008-10-28 11:50:05 +0000236 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
Uwe Hermanna7e05482007-05-09 10:17:44 +0000237 * Set bit 7: Extended BIOS Enable (PCI master accesses to
238 * FFF80000-FFFDFFFF are forwarded to ISA).
239 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
240 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
241 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
242 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
243 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
244 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
245 */
Uwe Hermannc556d322008-10-28 11:50:05 +0000246 if (dev->device_id == 0x122e || dev->device_id == 0x7000
247 || dev->device_id == 0x1234)
248 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
Uwe Hermann87203452008-10-26 18:40:42 +0000249 else
250 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000251
252 if (new == old)
253 return 0;
254
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000255 rpci_write_word(dev, xbcs, new);
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000256
Stefan Taunere34e3e82013-01-01 00:06:51 +0000257 if (pci_read_word(dev, xbcs) != new) { /* FIXME: share this with other code? */
258 msg_pinfo("Setting register 0x%04x to 0x%04x on %s failed (WARNING ONLY).\n", xbcs, new, name);
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000259 return -1;
260 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000261
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000262 return 0;
263}
264
Duncan Laurie4095ed72014-08-20 15:39:32 +0000265/* Handle BIOS_CNTL (aka. BCR). Disable locks and enable writes. The register can either be in PCI config space
266 * at the offset given by 'bios_cntl' or at the memory-mapped address 'addr'.
267 *
268 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, in Poulsbo, Tunnel Creek and other Atom
Stefan Tauner92d6a862013-10-25 00:33:37 +0000269 * chipsets/SoCs it is even 32b, but just treating it as 8 bit wide seems to work fine in practice. */
Duncan Laurie4095ed72014-08-20 15:39:32 +0000270static int enable_flash_ich_bios_cntl_common(enum ich_chipset ich_generation, void *addr,
271 struct pci_dev *dev, uint8_t bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000272{
Stefan Taunerd5c4ab42011-09-09 12:46:32 +0000273 uint8_t old, new, wanted;
Stefan Reinauereb366472006-09-06 15:48:48 +0000274
Stefan Tauner92d6a862013-10-25 00:33:37 +0000275 switch (ich_generation) {
276 case CHIPSET_ICH_UNKNOWN:
277 return ERROR_FATAL;
278 /* Non-SPI-capable */
279 case CHIPSET_ICH:
280 case CHIPSET_ICH2345:
281 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000282 /* Some Atom chipsets are special: The second byte of BIOS_CNTL (D9h) contains a prefetch bit similar to
283 * what other SPI-capable chipsets have at DCh. Others like Bay Trail use a memmapped register.
Stefan Tauner92d6a862013-10-25 00:33:37 +0000284 * The Tunnel Creek datasheet contains a lot of details about the SPI controller, among other things it
285 * mentions that the prefetching and caching does only happen for direct memory reads.
286 * Therefore - at least for Tunnel Creek - it should not matter to flashrom because we use the
287 * programmed access only and not memory mapping. */
288 case CHIPSET_TUNNEL_CREEK:
289 case CHIPSET_POULSBO:
290 case CHIPSET_CENTERTON:
291 old = pci_read_byte(dev, bios_cntl + 1);
292 msg_pdbg("BIOS Prefetch Enable: %sabled, ", (old & 1) ? "en" : "dis");
293 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000294 case CHIPSET_BAYTRAIL:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000295 case CHIPSET_ICH7:
296 default: /* Future version might behave the same */
Duncan Laurie4095ed72014-08-20 15:39:32 +0000297 if (ich_generation == CHIPSET_BAYTRAIL)
298 old = (mmio_readl(addr) >> 2) & 0x3;
299 else
300 old = (pci_read_byte(dev, bios_cntl) >> 2) & 0x3;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000301 msg_pdbg("SPI Read Configuration: ");
302 if (old == 3)
303 msg_pdbg("invalid prefetching/caching settings, ");
304 else
305 msg_pdbg("prefetching %sabled, caching %sabled, ",
306 (old & 0x2) ? "en" : "dis",
307 (old & 0x1) ? "dis" : "en");
308 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000309
Duncan Laurie4095ed72014-08-20 15:39:32 +0000310 if (ich_generation == CHIPSET_BAYTRAIL)
311 wanted = old = mmio_readl(addr);
312 else
313 wanted = old = pci_read_byte(dev, bios_cntl);
314
Stefan Taunerf9a8da52011-06-11 18:16:50 +0000315 /*
316 * Quote from the 6 Series datasheet (Document Number: 324645-004):
317 * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP)
318 * 1 = BIOS region SMM protection is enabled.
319 * The BIOS Region is not writable unless all processors are in SMM."
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000320 * In earlier chipsets this bit is reserved.
Stefan Reinauer62218c32012-08-26 02:35:13 +0000321 *
322 * Try to unset it in any case.
323 * It won't hurt and makes sense in some cases according to Stefan Reinauer.
Stefan Tauner92d6a862013-10-25 00:33:37 +0000324 *
325 * At least in Centerton aforementioned bit is located at bit 7. It is unspecified in all other Atom
326 * and Desktop chipsets before Ibex Peak/5 Series, but we reset bit 5 anyway.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000327 */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000328 int smm_bwp_bit;
329 if (ich_generation == CHIPSET_CENTERTON)
330 smm_bwp_bit = 7;
331 else
332 smm_bwp_bit = 5;
333 wanted &= ~(1 << smm_bwp_bit);
Stefan Reinauer62218c32012-08-26 02:35:13 +0000334
Stefan Tauner92d6a862013-10-25 00:33:37 +0000335 /* Tunnel Creek has a cache disable at bit 2 of the lowest BIOS_CNTL byte. */
336 if (ich_generation == CHIPSET_TUNNEL_CREEK)
337 wanted |= (1 << 2);
338
339 wanted |= (1 << 0); /* Set BIOS Write Enable */
340 wanted &= ~(1 << 1); /* Disable lock (futile) */
Stefan Reinauer62218c32012-08-26 02:35:13 +0000341
342 /* Only write the register if it's necessary */
343 if (wanted != old) {
Duncan Laurie4095ed72014-08-20 15:39:32 +0000344 if (ich_generation == CHIPSET_BAYTRAIL) {
345 rmmio_writel(wanted, addr);
346 new = mmio_readl(addr);
347 } else {
348 rpci_write_byte(dev, bios_cntl, wanted);
349 new = pci_read_byte(dev, bios_cntl);
350 }
Stefan Reinauer62218c32012-08-26 02:35:13 +0000351 } else
352 new = old;
353
354 msg_pdbg("\nBIOS_CNTL = 0x%02x: ", new);
355 msg_pdbg("BIOS Lock Enable: %sabled, ", (new & (1 << 1)) ? "en" : "dis");
356 msg_pdbg("BIOS Write Enable: %sabled\n", (new & (1 << 0)) ? "en" : "dis");
Stefan Tauner92d6a862013-10-25 00:33:37 +0000357 if (new & (1 << smm_bwp_bit))
Stefan Taunerc6fa32d2013-01-04 22:54:07 +0000358 msg_pwarn("Warning: BIOS region SMM protection is enabled!\n");
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000359
Stefan Reinauer62218c32012-08-26 02:35:13 +0000360 if (new != wanted)
Angel Ponsabefc462020-04-29 15:23:59 +0200361 msg_pwarn("Warning: Setting BIOS Control at 0x%x from 0x%02x to 0x%02x failed.\n"
Stefan Tauner92d6a862013-10-25 00:33:37 +0000362 "New value is 0x%02x.\n", bios_cntl, old, wanted, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000363
Stefan Tauner92d6a862013-10-25 00:33:37 +0000364 /* Return an error if we could not set the write enable only. */
Stefan Reinauer62218c32012-08-26 02:35:13 +0000365 if (!(new & (1 << 0)))
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000366 return -1;
Uwe Hermannffec5f32007-08-23 16:08:21 +0000367
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000368 return 0;
369}
370
Duncan Laurie4095ed72014-08-20 15:39:32 +0000371static int enable_flash_ich_bios_cntl_config_space(struct pci_dev *dev, enum ich_chipset ich_generation,
372 uint8_t bios_cntl)
373{
374 return enable_flash_ich_bios_cntl_common(ich_generation, NULL, dev, bios_cntl);
375}
376
377static int enable_flash_ich_bios_cntl_memmapped(enum ich_chipset ich_generation, void *addr)
378{
379 return enable_flash_ich_bios_cntl_common(ich_generation, addr, NULL, 0);
380}
381
Stefan Tauner92d6a862013-10-25 00:33:37 +0000382static int enable_flash_ich_fwh_decode(struct pci_dev *dev, enum ich_chipset ich_generation)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000383{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000384 uint8_t fwh_sel1 = 0, fwh_sel2 = 0, fwh_dec_en_lo = 0, fwh_dec_en_hi = 0; /* silence compilers */
385 bool implemented = 0;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000386 void *ilb = NULL; /* Only for Baytrail */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000387 switch (ich_generation) {
388 case CHIPSET_ICH:
389 /* FIXME: Unlike later chipsets, ICH and ICH-0 do only support mapping of the top-most 4MB
390 * and therefore do only feature FWH_DEC_EN (E3h, different default too) and FWH_SEL (E8h). */
391 break;
392 case CHIPSET_ICH2345:
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000393 fwh_sel1 = 0xe8;
394 fwh_sel2 = 0xee;
395 fwh_dec_en_lo = 0xf0;
396 fwh_dec_en_hi = 0xe3;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000397 implemented = 1;
398 break;
399 case CHIPSET_POULSBO:
400 case CHIPSET_TUNNEL_CREEK:
401 /* FIXME: Similar to ICH and ICH-0, Tunnel Creek and Poulsbo do only feature one register each,
402 * FWH_DEC_EN (D7h) and FWH_SEL (D0h). */
403 break;
404 case CHIPSET_CENTERTON:
405 /* FIXME: Similar to above FWH_DEC_EN (D4h) and FWH_SEL (D0h). */
406 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000407 case CHIPSET_BAYTRAIL: {
408 uint32_t ilb_base = pci_read_long(dev, 0x50) & 0xfffffe00; /* bits 31:9 */
409 if (ilb_base == 0) {
410 msg_perr("Error: Invalid ILB_BASE_ADDRESS\n");
411 return ERROR_FATAL;
412 }
413 ilb = rphysmap("BYT IBASE", ilb_base, 512);
414 fwh_sel1 = 0x18;
415 fwh_dec_en_lo = 0xd8;
416 fwh_dec_en_hi = 0xd9;
417 implemented = 1;
418 break;
419 }
Stefan Tauner92d6a862013-10-25 00:33:37 +0000420 case CHIPSET_ICH6:
421 case CHIPSET_ICH7:
422 default: /* Future version might behave the same */
423 fwh_sel1 = 0xd0;
424 fwh_sel2 = 0xd4;
425 fwh_dec_en_lo = 0xd8;
426 fwh_dec_en_hi = 0xd9;
427 implemented = 1;
428 break;
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000429 }
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000430
Stefan Tauner92d6a862013-10-25 00:33:37 +0000431 char *idsel = extract_programmer_param("fwh_idsel");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000432 if (idsel && strlen(idsel)) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000433 if (!implemented) {
434 msg_perr("Error: fwh_idsel= specified, but (yet) unsupported on this chipset.\n");
435 goto idsel_garbage_out;
436 }
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000437 errno = 0;
438 /* Base 16, nothing else makes sense. */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000439 uint64_t fwh_idsel = (uint64_t)strtoull(idsel, NULL, 16);
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000440 if (errno) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000441 msg_perr("Error: fwh_idsel= specified, but value could not be converted.\n");
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000442 goto idsel_garbage_out;
443 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000444 uint64_t fwh_mask = 0xffffffff;
445 if (fwh_sel2 > 0)
446 fwh_mask |= (0xffffULL << 32);
447 if (fwh_idsel & ~fwh_mask) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000448 msg_perr("Error: fwh_idsel= specified, but value had unused bits set.\n");
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000449 goto idsel_garbage_out;
450 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000451 uint64_t fwh_idsel_old;
452 if (ich_generation == CHIPSET_BAYTRAIL) {
453 fwh_idsel_old = mmio_readl(ilb + fwh_sel1);
454 rmmio_writel(fwh_idsel, ilb + fwh_sel1);
455 } else {
Stefan Tauner5c316f92015-02-08 21:57:52 +0000456 fwh_idsel_old = (uint64_t)pci_read_long(dev, fwh_sel1) << 16;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000457 rpci_write_long(dev, fwh_sel1, (fwh_idsel >> 16) & 0xffffffff);
458 if (fwh_sel2 > 0) {
459 fwh_idsel_old |= pci_read_word(dev, fwh_sel2);
460 rpci_write_word(dev, fwh_sel2, fwh_idsel & 0xffff);
461 }
462 }
Stefan Taunereff156e2014-07-13 17:06:11 +0000463 msg_pdbg("Setting IDSEL from 0x%012" PRIx64 " to 0x%012" PRIx64 " for top 16 MB.\n",
Stefan Tauner92d6a862013-10-25 00:33:37 +0000464 fwh_idsel_old, fwh_idsel);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000465 /* FIXME: Decode settings are not changed. */
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000466 } else if (idsel) {
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000467 msg_perr("Error: fwh_idsel= specified, but no value given.\n");
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +0000468idsel_garbage_out:
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000469 free(idsel);
Tadas Slotkus0e3f1cf2011-09-06 18:49:31 +0000470 return ERROR_FATAL;
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000471 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000472 free(idsel);
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000473
Stefan Tauner92d6a862013-10-25 00:33:37 +0000474 if (!implemented) {
Stefan Taunereff156e2014-07-13 17:06:11 +0000475 msg_pdbg2("FWH IDSEL handling is not implemented on this chipset.\n");
Stefan Tauner92d6a862013-10-25 00:33:37 +0000476 return 0;
477 }
478
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000479 /* Ignore all legacy ranges below 1 MB.
480 * We currently only support flashing the chip which responds to
481 * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations
482 * have to be adjusted.
483 */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000484 int max_decode_fwh_idsel = 0, max_decode_fwh_decode = 0;
485 bool contiguous = 1;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000486 uint32_t fwh_conf;
487 if (ich_generation == CHIPSET_BAYTRAIL)
488 fwh_conf = mmio_readl(ilb + fwh_sel1);
489 else
490 fwh_conf = pci_read_long(dev, fwh_sel1);
491
Stefan Tauner92d6a862013-10-25 00:33:37 +0000492 int i;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000493 /* FWH_SEL1 */
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000494 for (i = 7; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000495 int tmp = (fwh_conf >> (i * 4)) & 0xf;
Stefan Taunereff156e2014-07-13 17:06:11 +0000496 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000497 (0x1ff8 + i) * 0x80000,
498 (0x1ff0 + i) * 0x80000,
499 tmp);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000500 if ((tmp == 0) && contiguous) {
501 max_decode_fwh_idsel = (8 - i) * 0x80000;
502 } else {
503 contiguous = 0;
504 }
505 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000506 if (fwh_sel2 > 0) {
507 /* FWH_SEL2 */
508 fwh_conf = pci_read_word(dev, fwh_sel2);
509 for (i = 3; i >= 0; i--) {
510 int tmp = (fwh_conf >> (i * 4)) & 0xf;
511 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
512 (0xff4 + i) * 0x100000,
513 (0xff0 + i) * 0x100000,
514 tmp);
515 if ((tmp == 0) && contiguous) {
516 max_decode_fwh_idsel = (8 - i) * 0x100000;
517 } else {
518 contiguous = 0;
519 }
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000520 }
521 }
522 contiguous = 1;
523 /* FWH_DEC_EN1 */
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000524 fwh_conf = pci_read_byte(dev, fwh_dec_en_hi);
525 fwh_conf <<= 8;
526 fwh_conf |= pci_read_byte(dev, fwh_dec_en_lo);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000527 for (i = 7; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000528 int tmp = (fwh_conf >> (i + 0x8)) & 0x1;
Stefan Taunereff156e2014-07-13 17:06:11 +0000529 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000530 (0x1ff8 + i) * 0x80000,
531 (0x1ff0 + i) * 0x80000,
532 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000533 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000534 max_decode_fwh_decode = (8 - i) * 0x80000;
535 } else {
536 contiguous = 0;
537 }
538 }
539 for (i = 3; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000540 int tmp = (fwh_conf >> i) & 0x1;
Stefan Taunereff156e2014-07-13 17:06:11 +0000541 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000542 (0xff4 + i) * 0x100000,
543 (0xff0 + i) * 0x100000,
544 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000545 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000546 max_decode_fwh_decode = (8 - i) * 0x100000;
547 } else {
548 contiguous = 0;
549 }
550 }
551 max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode);
Stefan Taunereff156e2014-07-13 17:06:11 +0000552 msg_pdbg("Maximum FWH chip size: 0x%x bytes\n", max_rom_decode.fwh);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000553
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000554 return 0;
555}
556
Stefan Tauner92d6a862013-10-25 00:33:37 +0000557static int enable_flash_ich_fwh(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000558{
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000559 int err;
560
561 /* Configure FWH IDSEL decoder maps. */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000562 if ((err = enable_flash_ich_fwh_decode(dev, ich_generation)) != 0)
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000563 return err;
564
Nico Huber2e50cdc2018-09-23 20:20:26 +0200565 internal_buses_supported &= BUS_FWH;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000566 return enable_flash_ich_bios_cntl_config_space(dev, ich_generation, bios_cntl);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000567}
568
Stefan Tauner92d6a862013-10-25 00:33:37 +0000569static int enable_flash_ich0(struct pci_dev *dev, const char *name)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000570{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000571 return enable_flash_ich_fwh(dev, CHIPSET_ICH, 0x4e);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000572}
573
Stefan Tauner92d6a862013-10-25 00:33:37 +0000574static int enable_flash_ich2345(struct pci_dev *dev, const char *name)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000575{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000576 return enable_flash_ich_fwh(dev, CHIPSET_ICH2345, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000577}
578
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000579static int enable_flash_ich6(struct pci_dev *dev, const char *name)
580{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000581 return enable_flash_ich_fwh(dev, CHIPSET_ICH6, 0xdc);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000582}
583
Adam Jurkowskie4984102009-12-21 15:30:46 +0000584static int enable_flash_poulsbo(struct pci_dev *dev, const char *name)
585{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000586 return enable_flash_ich_fwh(dev, CHIPSET_POULSBO, 0xd8);
Adam Jurkowskie4984102009-12-21 15:30:46 +0000587}
588
Nico Huber2e50cdc2018-09-23 20:20:26 +0200589static enum chipbustype enable_flash_ich_report_gcs(
590 struct pci_dev *const dev, const enum ich_chipset ich_generation, const uint8_t *const rcrb)
Ingo Feldschmiddadc0a62011-09-07 19:18:25 +0000591{
Nico Huber0ea99f52017-03-17 17:22:53 +0100592 uint32_t gcs;
Nico Huber93c30692017-03-20 14:25:09 +0100593 const char *reg_name;
594 bool bild, top_swap;
Nico Huber0ea99f52017-03-17 17:22:53 +0100595
596 switch (ich_generation) {
597 case CHIPSET_BAYTRAIL:
Nico Huber93c30692017-03-20 14:25:09 +0100598 reg_name = "GCS";
Nico Huber0ea99f52017-03-17 17:22:53 +0100599 gcs = mmio_readl(rcrb + 0);
Nico Huber93c30692017-03-20 14:25:09 +0100600 bild = gcs & 1;
Nico Huber0ea99f52017-03-17 17:22:53 +0100601 top_swap = (gcs & 2) >> 1;
602 break;
Nico Huber93c30692017-03-20 14:25:09 +0100603 case CHIPSET_100_SERIES_SUNRISE_POINT:
David Hendricksa5216362017-08-08 20:02:22 -0700604 case CHIPSET_C620_SERIES_LEWISBURG:
Thomas Heijligen5ec84b32019-03-19 17:00:03 +0100605 case CHIPSET_300_SERIES_CANNON_POINT:
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200606 case CHIPSET_500_SERIES_TIGER_POINT:
Werner Zehe57d4e42022-01-03 09:44:29 +0100607 case CHIPSET_ELKHART_LAKE:
Nico Huber37509862019-01-18 14:23:02 +0100608 case CHIPSET_APOLLO_LAKE:
Angel Pons4db0fdf2020-07-10 17:04:10 +0200609 case CHIPSET_GEMINI_LAKE:
Nico Huber93c30692017-03-20 14:25:09 +0100610 reg_name = "BIOS_SPI_BC";
611 gcs = pci_read_long(dev, 0xdc);
612 bild = (gcs >> 7) & 1;
613 top_swap = (gcs >> 4) & 1;
614 break;
Nico Huber0ea99f52017-03-17 17:22:53 +0100615 default:
Nico Huber93c30692017-03-20 14:25:09 +0100616 reg_name = "GCS";
Nico Huber0ea99f52017-03-17 17:22:53 +0100617 gcs = mmio_readl(rcrb + 0x3410);
Nico Huber93c30692017-03-20 14:25:09 +0100618 bild = gcs & 1;
Nico Huber0ea99f52017-03-17 17:22:53 +0100619 top_swap = mmio_readb(rcrb + 0x3414) & 1;
620 break;
621 }
622
Nico Huber93c30692017-03-20 14:25:09 +0100623 msg_pdbg("%s = 0x%x: ", reg_name, gcs);
624 msg_pdbg("BIOS Interface Lock-Down: %sabled, ", bild ? "en" : "dis");
Duncan Laurie4095ed72014-08-20 15:39:32 +0000625
Nico Huber2e50cdc2018-09-23 20:20:26 +0200626 struct boot_straps {
627 const char *name;
628 enum chipbustype bus;
629 };
630 static const struct boot_straps boot_straps_EP80579[] =
631 { { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200632 { "reserved", BUS_NONE },
633 { "reserved", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200634 { "LPC", BUS_LPC | BUS_FWH } };
635 static const struct boot_straps boot_straps_ich7_nm10[] =
Nico Hubera508ca02019-07-24 19:34:43 +0200636 { { "reserved", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200637 { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200638 { "PCI", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200639 { "LPC", BUS_LPC | BUS_FWH } };
640 static const struct boot_straps boot_straps_tunnel_creek[] =
641 { { "SPI", BUS_SPI },
642 { "LPC", BUS_LPC | BUS_FWH } };
643 static const struct boot_straps boot_straps_ich8910[] =
644 { { "SPI", BUS_SPI },
645 { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200646 { "PCI", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200647 { "LPC", BUS_LPC | BUS_FWH } };
648 static const struct boot_straps boot_straps_pch567[] =
649 { { "LPC", BUS_LPC | BUS_FWH },
Nico Hubera508ca02019-07-24 19:34:43 +0200650 { "reserved", BUS_NONE },
651 { "PCI", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200652 { "SPI", BUS_SPI } };
653 static const struct boot_straps boot_straps_pch89_baytrail[] =
654 { { "LPC", BUS_LPC | BUS_FWH },
Nico Hubera508ca02019-07-24 19:34:43 +0200655 { "reserved", BUS_NONE },
656 { "reserved", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200657 { "SPI", BUS_SPI } };
658 static const struct boot_straps boot_straps_pch8_lp[] =
659 { { "SPI", BUS_SPI },
660 { "LPC", BUS_LPC | BUS_FWH } };
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200661 static const struct boot_straps boot_straps_pch500[] =
662 { { "SPI", BUS_SPI },
663 { "eSPI", BUS_NONE } };
Nico Huber37509862019-01-18 14:23:02 +0100664 static const struct boot_straps boot_straps_apl[] =
665 { { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200666 { "reserved", BUS_NONE } };
Nico Huber2e50cdc2018-09-23 20:20:26 +0200667 static const struct boot_straps boot_straps_unknown[] =
Nico Hubera508ca02019-07-24 19:34:43 +0200668 { { "unknown", BUS_NONE },
669 { "unknown", BUS_NONE },
670 { "unknown", BUS_NONE },
671 { "unknown", BUS_NONE } };
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000672
Nico Huber2e50cdc2018-09-23 20:20:26 +0200673 const struct boot_straps *boot_straps;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000674 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +0000675 case CHIPSET_ICH7:
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000676 /* EP80579 may need further changes, but this is the least
677 * intrusive way to get correct BOOT Strap printing without
678 * changing the rest of its code path). */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000679 if (dev->device_id == 0x5031)
Nico Huber2e50cdc2018-09-23 20:20:26 +0200680 boot_straps = boot_straps_EP80579;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000681 else
Nico Huber2e50cdc2018-09-23 20:20:26 +0200682 boot_straps = boot_straps_ich7_nm10;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000683 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000684 case CHIPSET_ICH8:
685 case CHIPSET_ICH9:
686 case CHIPSET_ICH10:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200687 boot_straps = boot_straps_ich8910;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000688 break;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000689 case CHIPSET_TUNNEL_CREEK:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200690 boot_straps = boot_straps_tunnel_creek;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000691 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000692 case CHIPSET_5_SERIES_IBEX_PEAK:
693 case CHIPSET_6_SERIES_COUGAR_POINT:
Helge Wagnera0fce5f2012-07-24 16:33:55 +0000694 case CHIPSET_7_SERIES_PANTHER_POINT:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200695 boot_straps = boot_straps_pch567;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000696 break;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000697 case CHIPSET_8_SERIES_LYNX_POINT:
Duncan Laurie823096e2014-08-20 15:39:38 +0000698 case CHIPSET_9_SERIES_WILDCAT_POINT:
Duncan Laurie4095ed72014-08-20 15:39:32 +0000699 case CHIPSET_BAYTRAIL:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200700 boot_straps = boot_straps_pch89_baytrail;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000701 break;
702 case CHIPSET_8_SERIES_LYNX_POINT_LP:
Nico Huber51205912017-03-17 17:59:54 +0100703 case CHIPSET_9_SERIES_WILDCAT_POINT_LP:
Nico Huber93c30692017-03-20 14:25:09 +0100704 case CHIPSET_100_SERIES_SUNRISE_POINT:
David Hendricksa5216362017-08-08 20:02:22 -0700705 case CHIPSET_C620_SERIES_LEWISBURG:
Thomas Heijligen5ec84b32019-03-19 17:00:03 +0100706 case CHIPSET_300_SERIES_CANNON_POINT:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200707 boot_straps = boot_straps_pch8_lp;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000708 break;
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200709 case CHIPSET_500_SERIES_TIGER_POINT:
710 boot_straps = boot_straps_pch500;
711 break;
Nico Huber37509862019-01-18 14:23:02 +0100712 case CHIPSET_APOLLO_LAKE:
Angel Pons4db0fdf2020-07-10 17:04:10 +0200713 case CHIPSET_GEMINI_LAKE:
Werner Zehe57d4e42022-01-03 09:44:29 +0100714 case CHIPSET_ELKHART_LAKE:
Nico Huber37509862019-01-18 14:23:02 +0100715 boot_straps = boot_straps_apl;
716 break;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000717 case CHIPSET_8_SERIES_WELLSBURG: // FIXME: check datasheet
Stefan Tauner92d6a862013-10-25 00:33:37 +0000718 case CHIPSET_CENTERTON: // FIXME: Datasheet does not mention GCS at all
Nico Huber2e50cdc2018-09-23 20:20:26 +0200719 boot_straps = boot_straps_unknown;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000720 break;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000721 default:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000722 msg_gerr("%s: unknown ICH generation. Please report!\n", __func__);
Nico Huber2e50cdc2018-09-23 20:20:26 +0200723 boot_straps = boot_straps_unknown;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000724 break;
725 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000726
Duncan Laurie4095ed72014-08-20 15:39:32 +0000727 uint8_t bbs;
728 switch (ich_generation) {
729 case CHIPSET_TUNNEL_CREEK:
730 bbs = (gcs >> 1) & 0x1;
731 break;
732 case CHIPSET_8_SERIES_LYNX_POINT_LP:
Nico Huber51205912017-03-17 17:59:54 +0100733 case CHIPSET_9_SERIES_WILDCAT_POINT_LP:
734 /* LP PCHs use a single bit for BBS */
Duncan Laurie4095ed72014-08-20 15:39:32 +0000735 bbs = (gcs >> 10) & 0x1;
736 break;
Nico Huber93c30692017-03-20 14:25:09 +0100737 case CHIPSET_100_SERIES_SUNRISE_POINT:
David Hendricksa5216362017-08-08 20:02:22 -0700738 case CHIPSET_C620_SERIES_LEWISBURG:
Thomas Heijligen5ec84b32019-03-19 17:00:03 +0100739 case CHIPSET_300_SERIES_CANNON_POINT:
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200740 case CHIPSET_500_SERIES_TIGER_POINT:
Nico Huber37509862019-01-18 14:23:02 +0100741 case CHIPSET_APOLLO_LAKE:
Angel Pons4db0fdf2020-07-10 17:04:10 +0200742 case CHIPSET_GEMINI_LAKE:
Werner Zehe57d4e42022-01-03 09:44:29 +0100743 case CHIPSET_ELKHART_LAKE:
Nico Huber93c30692017-03-20 14:25:09 +0100744 bbs = (gcs >> 6) & 0x1;
745 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000746 default:
747 /* Other chipsets use two bits for BBS */
748 bbs = (gcs >> 10) & 0x3;
749 break;
750 }
Nico Huber2e50cdc2018-09-23 20:20:26 +0200751 msg_pdbg("Boot BIOS Straps: 0x%x (%s)\n", bbs, boot_straps[bbs].name);
Duncan Laurie4095ed72014-08-20 15:39:32 +0000752
753 /* Centerton has its TS bit in [GPE0BLK] + 0x30 while the exact location for Tunnel Creek is unknown. */
754 if (ich_generation != CHIPSET_TUNNEL_CREEK && ich_generation != CHIPSET_CENTERTON)
755 msg_pdbg("Top Swap: %s\n", (top_swap) ? "enabled (A16(+) inverted)" : "not enabled");
Nico Huber2e50cdc2018-09-23 20:20:26 +0200756
757 return boot_straps[bbs].bus;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000758}
759
760static int enable_flash_ich_spi(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
761{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000762 /* Get physical address of Root Complex Register Block */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000763 uint32_t rcra = pci_read_long(dev, 0xf0) & 0xffffc000;
764 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcra);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000765
766 /* Map RCBA to virtual memory */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000767 void *rcrb = rphysmap("ICH RCRB", rcra, 0x4000);
Stefan Tauner7fb5aa02013-08-14 15:48:44 +0000768 if (rcrb == ERROR_PTR)
Niklas Söderlund5d307202013-09-14 09:02:27 +0000769 return ERROR_FATAL;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000770
Nico Huber2e50cdc2018-09-23 20:20:26 +0200771 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000772
Stefan Tauner92d6a862013-10-25 00:33:37 +0000773 /* Handle FWH-related parameters and initialization */
774 int ret_fwh = enable_flash_ich_fwh(dev, ich_generation, bios_cntl);
775 if (ret_fwh == ERROR_FATAL)
776 return ret_fwh;
777
Angel Pons399a4dd2020-04-15 12:59:42 +0200778 /*
779 * It seems that the ICH7 does not support SPI and LPC chips at the same time. When booted
780 * from LPC, the SCIP bit will never clear, which causes long delays and many error messages.
781 * To avoid this, we will not enable SPI on ICH7 when the southbridge is strapped to LPC.
782 */
783 if (ich_generation == CHIPSET_ICH7 && (boot_buses & BUS_LPC))
784 return 0;
785
Stefan Tauner92d6a862013-10-25 00:33:37 +0000786 /* SPIBAR is at RCRB+0x3020 for ICH[78], Tunnel Creek and Centerton, and RCRB+0x3800 for ICH9. */
787 uint16_t spibar_offset;
788 switch (ich_generation) {
Duncan Laurie4095ed72014-08-20 15:39:32 +0000789 case CHIPSET_BAYTRAIL:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000790 case CHIPSET_ICH_UNKNOWN:
791 return ERROR_FATAL;
792 case CHIPSET_ICH7:
793 case CHIPSET_ICH8:
794 case CHIPSET_TUNNEL_CREEK:
795 case CHIPSET_CENTERTON:
796 spibar_offset = 0x3020;
797 break;
798 case CHIPSET_ICH9:
799 default: /* Future version might behave the same */
800 spibar_offset = 0x3800;
801 break;
802 }
803 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " + 0x%04x\n", PRIxPTR_WIDTH, (uintptr_t)rcrb, spibar_offset);
804 void *spibar = rcrb + spibar_offset;
805
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000806 /* This adds BUS_SPI */
Nico Huber560111e2017-04-26 12:27:17 +0200807 int ret_spi = ich_init_spi(spibar, ich_generation);
Stefan Tauner50e7c602011-11-08 10:55:54 +0000808 if (ret_spi == ERROR_FATAL)
809 return ret_spi;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100810
Nico Huber2e50cdc2018-09-23 20:20:26 +0200811 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
Stefan Tauner92d6a862013-10-25 00:33:37 +0000812 return ERROR_NONFATAL;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000813
Nico Huber2e50cdc2018-09-23 20:20:26 +0200814 /* Suppress unknown laptop warning if we booted from SPI. */
815 if (boot_buses & BUS_SPI)
Felix Singerd1ab7d22022-08-19 03:03:47 +0200816 laptop_ok = true;
Nico Huber2e50cdc2018-09-23 20:20:26 +0200817
Stefan Tauner92d6a862013-10-25 00:33:37 +0000818 return 0;
819}
820
821static int enable_flash_tunnelcreek(struct pci_dev *dev, const char *name)
822{
823 return enable_flash_ich_spi(dev, CHIPSET_TUNNEL_CREEK, 0xd8);
824}
825
826static int enable_flash_s12x0(struct pci_dev *dev, const char *name)
827{
828 return enable_flash_ich_spi(dev, CHIPSET_CENTERTON, 0xd8);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000829}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000830
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000831static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000832{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000833 return enable_flash_ich_spi(dev, CHIPSET_ICH7, 0xdc);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000834}
835
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000836static int enable_flash_ich8(struct pci_dev *dev, const char *name)
837{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000838 return enable_flash_ich_spi(dev, CHIPSET_ICH8, 0xdc);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000839}
840
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000841static int enable_flash_ich9(struct pci_dev *dev, const char *name)
842{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000843 return enable_flash_ich_spi(dev, CHIPSET_ICH9, 0xdc);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000844}
845
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000846static int enable_flash_ich10(struct pci_dev *dev, const char *name)
847{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000848 return enable_flash_ich_spi(dev, CHIPSET_ICH10, 0xdc);
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000849}
850
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000851/* Ibex Peak aka. 5 series & 3400 series */
852static int enable_flash_pch5(struct pci_dev *dev, const char *name)
853{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000854 return enable_flash_ich_spi(dev, CHIPSET_5_SERIES_IBEX_PEAK, 0xdc);
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000855}
856
857/* Cougar Point aka. 6 series & c200 series */
858static int enable_flash_pch6(struct pci_dev *dev, const char *name)
859{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000860 return enable_flash_ich_spi(dev, CHIPSET_6_SERIES_COUGAR_POINT, 0xdc);
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000861}
862
Stefan Tauner2abab942012-04-27 20:41:23 +0000863/* Panther Point aka. 7 series */
864static int enable_flash_pch7(struct pci_dev *dev, const char *name)
865{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000866 return enable_flash_ich_spi(dev, CHIPSET_7_SERIES_PANTHER_POINT, 0xdc);
Stefan Tauner2abab942012-04-27 20:41:23 +0000867}
868
869/* Lynx Point aka. 8 series */
870static int enable_flash_pch8(struct pci_dev *dev, const char *name)
871{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000872 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT, 0xdc);
Stefan Tauner2abab942012-04-27 20:41:23 +0000873}
874
Stefan Tauner92d6a862013-10-25 00:33:37 +0000875/* Lynx Point LP aka. 8 series low-power */
Duncan Laurie90eb2262013-03-15 03:12:29 +0000876static int enable_flash_pch8_lp(struct pci_dev *dev, const char *name)
877{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000878 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT_LP, 0xdc);
Duncan Laurie90eb2262013-03-15 03:12:29 +0000879}
880
881/* Wellsburg (for Haswell-EP Xeons) */
882static int enable_flash_pch8_wb(struct pci_dev *dev, const char *name)
883{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000884 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_WELLSBURG, 0xdc);
Duncan Laurie90eb2262013-03-15 03:12:29 +0000885}
886
Duncan Laurie823096e2014-08-20 15:39:38 +0000887/* Wildcat Point */
888static int enable_flash_pch9(struct pci_dev *dev, const char *name)
889{
890 return enable_flash_ich_spi(dev, CHIPSET_9_SERIES_WILDCAT_POINT, 0xdc);
891}
892
Nico Huber51205912017-03-17 17:59:54 +0100893/* Wildcat Point LP */
894static int enable_flash_pch9_lp(struct pci_dev *dev, const char *name)
895{
896 return enable_flash_ich_spi(dev, CHIPSET_9_SERIES_WILDCAT_POINT_LP, 0xdc);
897}
898
Nico Huber93c30692017-03-20 14:25:09 +0100899/* Sunrise Point */
900static int enable_flash_pch100_shutdown(void *const pci_acc)
901{
902 pci_cleanup(pci_acc);
903 return 0;
904}
905
Nico Huber37509862019-01-18 14:23:02 +0100906static int enable_flash_pch100_or_c620(
907 struct pci_dev *const dev, const char *const name,
908 const int slot, const int func, const enum ich_chipset pch_generation)
Nico Huber93c30692017-03-20 14:25:09 +0100909{
Nico Huber93c30692017-03-20 14:25:09 +0100910 int ret = ERROR_FATAL;
911
912 /*
913 * The SPI PCI device is usually hidden (by hiding PCI vendor
914 * and device IDs). So we need a PCI access method that works
915 * even when the OS doesn't know the PCI device. We can't use
916 * this method globally since it would bring along other con-
917 * straints (e.g. on PCI domains, extended PCIe config space).
918 */
919 struct pci_access *const pci_acc = pci_alloc();
Youness Alaouia54ceb12017-07-26 18:03:36 -0400920 struct pci_access *const saved_pacc = pacc;
Nico Huber93c30692017-03-20 14:25:09 +0100921 if (!pci_acc) {
922 msg_perr("Can't allocate PCI accessor.\n");
923 return ret;
924 }
925 pci_acc->method = PCI_ACCESS_I386_TYPE1;
926 pci_init(pci_acc);
927 register_shutdown(enable_flash_pch100_shutdown, pci_acc);
928
Nico Huber37509862019-01-18 14:23:02 +0100929 struct pci_dev *const spi_dev = pci_get_dev(pci_acc, dev->domain, dev->bus, slot, func);
Nico Huber93c30692017-03-20 14:25:09 +0100930 if (!spi_dev) {
931 msg_perr("Can't allocate PCI device.\n");
932 return ret;
933 }
934
Youness Alaouia54ceb12017-07-26 18:03:36 -0400935 /* Modify pacc so the rpci_write can register the undo callback with a
936 * device using the correct pci_access */
937 pacc = pci_acc;
Nico Huber2e50cdc2018-09-23 20:20:26 +0200938 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(spi_dev, pch_generation, NULL);
Nico Huber93c30692017-03-20 14:25:09 +0100939
940 const int ret_bc = enable_flash_ich_bios_cntl_config_space(spi_dev, pch_generation, 0xdc);
941 if (ret_bc == ERROR_FATAL)
942 goto _freepci_ret;
943
944 const uint32_t phys_spibar = pci_read_long(spi_dev, PCI_BASE_ADDRESS_0) & 0xfffff000;
945 void *const spibar = rphysmap("SPIBAR", phys_spibar, 0x1000);
946 if (spibar == ERROR_PTR)
947 goto _freepci_ret;
948 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " (phys = 0x%08x)\n", PRIxPTR_WIDTH, (uintptr_t)spibar, phys_spibar);
949
950 /* This adds BUS_SPI */
951 const int ret_spi = ich_init_spi(spibar, pch_generation);
952 if (ret_spi != ERROR_FATAL) {
953 if (ret_bc || ret_spi)
954 ret = ERROR_NONFATAL;
955 else
956 ret = 0;
957 }
958
Nico Huber2e50cdc2018-09-23 20:20:26 +0200959 /* Suppress unknown laptop warning if we booted from SPI. */
960 if (!ret && (boot_buses & BUS_SPI))
Felix Singerd1ab7d22022-08-19 03:03:47 +0200961 laptop_ok = true;
Nico Huber2e50cdc2018-09-23 20:20:26 +0200962
Nico Huber93c30692017-03-20 14:25:09 +0100963_freepci_ret:
964 pci_free_dev(spi_dev);
Youness Alaouia54ceb12017-07-26 18:03:36 -0400965 pacc = saved_pacc;
Nico Huber93c30692017-03-20 14:25:09 +0100966 return ret;
967}
968
David Hendricksa5216362017-08-08 20:02:22 -0700969static int enable_flash_pch100(struct pci_dev *const dev, const char *const name)
970{
Nico Huber37509862019-01-18 14:23:02 +0100971 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_100_SERIES_SUNRISE_POINT);
David Hendricksa5216362017-08-08 20:02:22 -0700972}
973
974static int enable_flash_c620(struct pci_dev *const dev, const char *const name)
975{
Nico Huber37509862019-01-18 14:23:02 +0100976 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_C620_SERIES_LEWISBURG);
977}
978
Thomas Heijligen5ec84b32019-03-19 17:00:03 +0100979static int enable_flash_pch300(struct pci_dev *const dev, const char *const name)
980{
981 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_300_SERIES_CANNON_POINT);
982}
983
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200984static int enable_flash_pch500(struct pci_dev *const dev, const char *const name)
985{
986 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_500_SERIES_TIGER_POINT);
987}
988
Werner Zehe57d4e42022-01-03 09:44:29 +0100989static int enable_flash_mcc(struct pci_dev *const dev, const char *const name)
990{
991 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_ELKHART_LAKE);
992}
993
Nico Huber37509862019-01-18 14:23:02 +0100994static int enable_flash_apl(struct pci_dev *const dev, const char *const name)
995{
996 return enable_flash_pch100_or_c620(dev, name, 0x0d, 2, CHIPSET_APOLLO_LAKE);
David Hendricksa5216362017-08-08 20:02:22 -0700997}
998
Angel Pons4db0fdf2020-07-10 17:04:10 +0200999static int enable_flash_glk(struct pci_dev *const dev, const char *const name)
1000{
1001 return enable_flash_pch100_or_c620(dev, name, 0x0d, 2, CHIPSET_GEMINI_LAKE);
1002}
1003
Duncan Laurie4095ed72014-08-20 15:39:32 +00001004/* Silvermont architecture: Bay Trail(-T/-I), Avoton/Rangeley.
1005 * These have a distinctly different behavior compared to other Intel chipsets and hence are handled separately.
1006 *
1007 * Differences include:
1008 * - RCBA at LPC config 0xF0 too but mapped range is only 4 B long instead of 16 kB.
1009 * - GCS at [RCRB] + 0 (instead of [RCRB] + 0x3410).
1010 * - TS (Top Swap) in GCS (instead of [RCRB] + 0x3414).
1011 * - SPIBAR (coined SBASE) at LPC config 0x54 (instead of [RCRB] + 0x3800).
1012 * - BIOS_CNTL (coined BCR) at [SPIBAR] + 0xFC (instead of LPC config 0xDC).
1013 */
1014static int enable_flash_silvermont(struct pci_dev *dev, const char *name)
1015{
1016 enum ich_chipset ich_generation = CHIPSET_BAYTRAIL;
1017
1018 /* Get physical address of Root Complex Register Block */
1019 uint32_t rcba = pci_read_long(dev, 0xf0) & 0xfffffc00;
1020 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcba);
1021
1022 /* Handle GCS (in RCRB) */
1023 void *rcrb = physmap("BYT RCRB", rcba, 4);
Edward O'Callaghan2e3e1062020-12-02 13:17:46 +11001024 if (rcrb == ERROR_PTR)
1025 return ERROR_FATAL;
Nico Huber2e50cdc2018-09-23 20:20:26 +02001026 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
Duncan Laurie4095ed72014-08-20 15:39:32 +00001027 physunmap(rcrb, 4);
1028
1029 /* Handle fwh_idsel parameter */
1030 int ret_fwh = enable_flash_ich_fwh_decode(dev, ich_generation);
1031 if (ret_fwh == ERROR_FATAL)
1032 return ret_fwh;
1033
Nico Huber2e50cdc2018-09-23 20:20:26 +02001034 internal_buses_supported &= BUS_FWH;
Duncan Laurie4095ed72014-08-20 15:39:32 +00001035
1036 /* Get physical address of SPI Base Address and map it */
1037 uint32_t sbase = pci_read_long(dev, 0x54) & 0xfffffe00;
1038 msg_pdbg("SPI_BASE_ADDRESS = 0x%x\n", sbase);
1039 void *spibar = rphysmap("BYT SBASE", sbase, 512); /* Last defined address on Bay Trail is 0x100 */
Edward O'Callaghaneaf701d2020-10-15 19:19:05 +11001040 if (spibar == ERROR_PTR)
1041 return ERROR_FATAL;
Duncan Laurie4095ed72014-08-20 15:39:32 +00001042
1043 /* Enable Flash Writes.
1044 * Silvermont-based: BCR at SBASE + 0xFC (some bits of BCR are also accessible via BC at IBASE + 0x1C).
1045 */
1046 enable_flash_ich_bios_cntl_memmapped(ich_generation, spibar + 0xFC);
1047
Nico Huber560111e2017-04-26 12:27:17 +02001048 int ret_spi = ich_init_spi(spibar, ich_generation);
Duncan Laurie4095ed72014-08-20 15:39:32 +00001049 if (ret_spi == ERROR_FATAL)
1050 return ret_spi;
1051
Nico Huber2e50cdc2018-09-23 20:20:26 +02001052 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
Duncan Laurie4095ed72014-08-20 15:39:32 +00001053 return ERROR_NONFATAL;
1054
Nico Huber2e50cdc2018-09-23 20:20:26 +02001055 /* Suppress unknown laptop warning if we booted from SPI. */
1056 if (boot_buses & BUS_SPI)
Felix Singerd1ab7d22022-08-19 03:03:47 +02001057 laptop_ok = true;
Nico Huber2e50cdc2018-09-23 20:20:26 +02001058
Duncan Laurie4095ed72014-08-20 15:39:32 +00001059 return 0;
1060}
1061
Michael Karcher89bed6d2010-06-13 10:16:12 +00001062static int via_no_byte_merge(struct pci_dev *dev, const char *name)
1063{
1064 uint8_t val;
1065
1066 val = pci_read_byte(dev, 0x71);
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001067 if (val & 0x40) {
Michael Karcher89bed6d2010-06-13 10:16:12 +00001068 msg_pdbg("Disabling byte merging\n");
1069 val &= ~0x40;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001070 rpci_write_byte(dev, 0x71, val);
Michael Karcher89bed6d2010-06-13 10:16:12 +00001071 }
1072 return NOT_DONE_YET; /* need to find south bridge, too */
1073}
1074
Uwe Hermann372eeb52007-12-04 21:49:06 +00001075static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001076{
Ollie Lho184a4042005-11-26 21:55:36 +00001077 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001078
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001079 /* Enable ROM decode range (1MB) FFC00000 - FFFFFFFF. */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001080 rpci_write_byte(dev, 0x41, 0x7f);
Bari Ari9477c4e2008-04-29 13:46:38 +00001081
Uwe Hermannffec5f32007-08-23 16:08:21 +00001082 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +00001083 val = pci_read_byte(dev, 0x40);
1084 val |= 0x10;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001085 rpci_write_byte(dev, 0x40, val);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001086
1087 if (pci_read_byte(dev, 0x40) != val) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00001088 msg_pwarn("\nWarning: Failed to enable flash write on \"%s\"\n", name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001089 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001090 }
Luc Verhaegen6382b442007-03-02 22:16:38 +00001091
Helge Wagnerdd73d832012-08-24 23:03:46 +00001092 if (dev->device_id == 0x3227) { /* VT8237/VT8237R */
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001093 /* All memory cycles, not just ROM ones, go to LPC. */
1094 val = pci_read_byte(dev, 0x59);
1095 val &= ~0x80;
1096 rpci_write_byte(dev, 0x59, val);
Luc Verhaegen73d21192009-12-23 00:54:26 +00001097 }
1098
Uwe Hermanna7e05482007-05-09 10:17:44 +00001099 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001100}
1101
Helge Wagnerdd73d832012-08-24 23:03:46 +00001102static int enable_flash_vt_vx(struct pci_dev *dev, const char *name)
1103{
1104 struct pci_dev *south_north = pci_dev_find(0x1106, 0xa353);
1105 if (south_north == NULL) {
1106 msg_perr("Could not find South-North Module Interface Control device!\n");
1107 return ERROR_FATAL;
1108 }
1109
1110 msg_pdbg("Strapped to ");
1111 if ((pci_read_byte(south_north, 0x56) & 0x01) == 0) {
1112 msg_pdbg("LPC.\n");
1113 return enable_flash_vt823x(dev, name);
1114 }
1115 msg_pdbg("SPI.\n");
1116
1117 uint32_t mmio_base;
1118 void *mmio_base_physmapped;
1119 uint32_t spi_cntl;
1120 #define SPI_CNTL_LEN 0x08
1121 uint32_t spi0_mm_base = 0;
1122 switch(dev->device_id) {
1123 case 0x8353: /* VX800/VX820 */
1124 spi0_mm_base = pci_read_long(dev, 0xbc) << 8;
Lubomir Rinteld0803c82017-10-30 07:57:53 +01001125 if (spi0_mm_base == 0x0) {
1126 msg_pdbg ("MMIO not enabled!\n");
1127 return ERROR_FATAL;
1128 }
Helge Wagnerdd73d832012-08-24 23:03:46 +00001129 break;
1130 case 0x8409: /* VX855/VX875 */
1131 case 0x8410: /* VX900 */
1132 mmio_base = pci_read_long(dev, 0xbc) << 8;
Lubomir Rinteld0803c82017-10-30 07:57:53 +01001133 if (mmio_base == 0x0) {
1134 msg_pdbg ("MMIO not enabled!\n");
1135 return ERROR_FATAL;
1136 }
Helge Wagnerdd73d832012-08-24 23:03:46 +00001137 mmio_base_physmapped = physmap("VIA VX MMIO register", mmio_base, SPI_CNTL_LEN);
Stefan Tauner7fb5aa02013-08-14 15:48:44 +00001138 if (mmio_base_physmapped == ERROR_PTR)
Helge Wagnerdd73d832012-08-24 23:03:46 +00001139 return ERROR_FATAL;
Helge Wagnerdd73d832012-08-24 23:03:46 +00001140
1141 /* Offset 0 - Bit 0 holds SPI Bus0 Enable Bit. */
1142 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x00;
1143 if ((spi_cntl & 0x01) == 0) {
1144 msg_pdbg ("SPI Bus0 disabled!\n");
1145 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1146 return ERROR_FATAL;
1147 }
1148 /* Offset 1-3 has SPI Bus Memory Map Base Address: */
1149 spi0_mm_base = spi_cntl & 0xFFFFFF00;
1150
1151 /* Offset 4 - Bit 0 holds SPI Bus1 Enable Bit. */
1152 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x04;
1153 if ((spi_cntl & 0x01) == 1)
1154 msg_pdbg2("SPI Bus1 is enabled too.\n");
1155
1156 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1157 break;
1158 default:
1159 msg_perr("%s: Unsupported chipset %x:%x!\n", __func__, dev->vendor_id, dev->device_id);
1160 return ERROR_FATAL;
1161 }
1162
Nico Huber560111e2017-04-26 12:27:17 +02001163 return via_init_spi(spi0_mm_base);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001164}
1165
1166static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
1167{
Nico Huber560111e2017-04-26 12:27:17 +02001168 return via_init_spi(pci_read_long(dev, 0xbc) << 8);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001169}
1170
Uwe Hermann372eeb52007-12-04 21:49:06 +00001171static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001172{
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001173 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001174
Uwe Hermann394131e2008-10-18 21:14:13 +00001175#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
1176#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001177#define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */
1178#define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */
Ollie Lhocbbf1252004-03-17 22:22:08 +00001179
Uwe Hermann394131e2008-10-18 21:14:13 +00001180#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
1181#define ROM_WRITE_ENABLE (1 << 1)
1182#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
1183#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001184#define CS5530_ISA_MASTER (1 << 7)
1185#define CS5530_ENABLE_SA2320 (1 << 2)
1186#define CS5530_ENABLE_SA20 (1 << 6)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001187
Nico Huber2e50cdc2018-09-23 20:20:26 +02001188 internal_buses_supported &= BUS_PARALLEL;
Stefan Taunerc0aaf952011-05-19 02:58:17 +00001189 /* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and
1190 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB.
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001191 * FIXME: Should we really touch the low mapping below 1 MB? Flashrom
1192 * ignores that region completely.
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001193 * Make the configured ROM areas writable.
1194 */
1195 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
1196 reg8 |= LOWER_ROM_ADDRESS_RANGE;
1197 reg8 |= UPPER_ROM_ADDRESS_RANGE;
1198 reg8 |= ROM_WRITE_ENABLE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001199 rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001200
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001201 /* Set positive decode on ROM. */
1202 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
1203 reg8 |= BIOS_ROM_POSITIVE_DECODE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001204 rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001205
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001206 reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG);
1207 if (reg8 & CS5530_ISA_MASTER) {
1208 /* We have A0-A23 available. */
1209 max_rom_decode.parallel = 16 * 1024 * 1024;
1210 } else {
1211 reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG);
1212 if (reg8 & CS5530_ENABLE_SA2320) {
1213 /* We have A0-19, A20-A23 available. */
1214 max_rom_decode.parallel = 16 * 1024 * 1024;
1215 } else if (reg8 & CS5530_ENABLE_SA20) {
1216 /* We have A0-19, A20 available. */
1217 max_rom_decode.parallel = 2 * 1024 * 1024;
1218 } else {
1219 /* A20 and above are not active. */
1220 max_rom_decode.parallel = 1024 * 1024;
1221 }
1222 }
1223
Ollie Lhocbbf1252004-03-17 22:22:08 +00001224 return 0;
1225}
1226
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001227/*
Mart Raudseppe1344da2008-02-08 10:10:57 +00001228 * Geode systems write protect the BIOS via RCONFs (cache settings similar
Elyes HAOUAS124ef382018-03-27 12:15:09 +02001229 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22.
Mart Raudseppe1344da2008-02-08 10:10:57 +00001230 *
1231 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
1232 * To enable write to NOR Boot flash for the benefit of systems that have such
1233 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
Mart Raudseppe1344da2008-02-08 10:10:57 +00001234 */
Uwe Hermann372eeb52007-12-04 21:49:06 +00001235static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +00001236{
Uwe Hermann394131e2008-10-18 21:14:13 +00001237#define MSR_RCONF_DEFAULT 0x1808
1238#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001239
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001240 msr_t msr;
Lane Brooksd54958a2007-11-13 16:45:22 +00001241
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001242 /* Geode only has a single core */
1243 if (setup_cpu_msr(0))
Lane Brooksd54958a2007-11-13 16:45:22 +00001244 return -1;
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001245
1246 msr = rdmsr(MSR_RCONF_DEFAULT);
1247 if ((msr.hi >> 24) != 0x22) {
1248 msr.hi &= 0xfbffffff;
1249 wrmsr(MSR_RCONF_DEFAULT, msr);
Lane Brooksd54958a2007-11-13 16:45:22 +00001250 }
Mart Raudseppe1344da2008-02-08 10:10:57 +00001251
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001252 msr = rdmsr(MSR_NORF_CTL);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001253 /* Raise WE_CS3 bit. */
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001254 msr.lo |= 0x08;
1255 wrmsr(MSR_NORF_CTL, msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001256
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001257 cleanup_cpu_msr();
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001258
Uwe Hermann394131e2008-10-18 21:14:13 +00001259#undef MSR_RCONF_DEFAULT
1260#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +00001261 return 0;
1262}
1263
Uwe Hermann372eeb52007-12-04 21:49:06 +00001264static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001265{
Stefan Taunere34e3e82013-01-01 00:06:51 +00001266 #define SC_REG 0x52
Ollie Lho184a4042005-11-26 21:55:36 +00001267 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001268
Stefan Taunere34e3e82013-01-01 00:06:51 +00001269 rpci_write_byte(dev, SC_REG, 0xee);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001270
Stefan Taunere34e3e82013-01-01 00:06:51 +00001271 new = pci_read_byte(dev, SC_REG);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001272
Stefan Taunere34e3e82013-01-01 00:06:51 +00001273 if (new != 0xee) { /* FIXME: share this with other code? */
1274 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SC_REG, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001275 return -1;
1276 }
Uwe Hermannffec5f32007-08-23 16:08:21 +00001277
Ollie Lhocbbf1252004-03-17 22:22:08 +00001278 return 0;
1279}
1280
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001281/* Works for AMD-768, AMD-8111, VIA VT82C586A/B, VIA VT82C596, VIA VT82C686A/B.
1282 *
1283 * ROM decode control register matrix
Elyes HAOUASac01baa2018-05-28 16:52:21 +02001284 * AMD-768 AMD-8111 VT82C586A/B VT82C596 VT82C686A/B
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001285 * 7 FFC0_0000h–FFFF_FFFFh <- FFFE0000h-FFFEFFFFh <- <-
1286 * 6 FFB0_0000h–FFBF_FFFFh <- FFF80000h-FFFDFFFFh <- <-
1287 * 5 00E8... <- <- FFF00000h-FFF7FFFFh <-
1288 */
1289static int enable_flash_amd_via(struct pci_dev *dev, const char *name, uint8_t decode_val)
Ollie Lho761bf1b2004-03-20 16:46:10 +00001290{
Stefan Taunere34e3e82013-01-01 00:06:51 +00001291 #define AMD_MAPREG 0x43
1292 #define AMD_ENREG 0x40
Ollie Lho184a4042005-11-26 21:55:36 +00001293 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001294
Stefan Taunere34e3e82013-01-01 00:06:51 +00001295 old = pci_read_byte(dev, AMD_MAPREG);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001296 new = old | decode_val;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001297 if (new != old) {
Stefan Taunere34e3e82013-01-01 00:06:51 +00001298 rpci_write_byte(dev, AMD_MAPREG, new);
1299 if (pci_read_byte(dev, AMD_MAPREG) != new) {
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001300 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
Stefan Taunere34e3e82013-01-01 00:06:51 +00001301 AMD_MAPREG, new, name);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001302 } else
1303 msg_pdbg("Changed ROM decode range to 0x%02x successfully.\n", new);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001304 }
1305
Uwe Hermann190f8492008-10-25 18:03:50 +00001306 /* Enable 'ROM write' bit. */
Stefan Taunere34e3e82013-01-01 00:06:51 +00001307 old = pci_read_byte(dev, AMD_ENREG);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001308 new = old | 0x01;
1309 if (new == old)
1310 return 0;
Stefan Taunere34e3e82013-01-01 00:06:51 +00001311 rpci_write_byte(dev, AMD_ENREG, new);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001312
Stefan Taunere34e3e82013-01-01 00:06:51 +00001313 if (pci_read_byte(dev, AMD_ENREG) != new) {
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001314 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
Stefan Taunere34e3e82013-01-01 00:06:51 +00001315 AMD_ENREG, new, name);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001316 return ERROR_NONFATAL;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001317 }
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001318 msg_pdbg2("Set ROM enable bit successfully.\n");
Uwe Hermannffec5f32007-08-23 16:08:21 +00001319
Ollie Lhocbbf1252004-03-17 22:22:08 +00001320 return 0;
1321}
1322
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001323static int enable_flash_amd_768_8111(struct pci_dev *dev, const char *name)
1324{
1325 /* Enable decoding of 0xFFB00000 to 0xFFFFFFFF (5 MB). */
1326 max_rom_decode.lpc = 5 * 1024 * 1024;
1327 return enable_flash_amd_via(dev, name, 0xC0);
1328}
1329
1330static int enable_flash_vt82c586(struct pci_dev *dev, const char *name)
1331{
1332 /* Enable decoding of 0xFFF80000 to 0xFFFFFFFF. (512 kB) */
1333 max_rom_decode.parallel = 512 * 1024;
1334 return enable_flash_amd_via(dev, name, 0xC0);
1335}
1336
1337/* Works for VT82C686A/B too. */
1338static int enable_flash_vt82c596(struct pci_dev *dev, const char *name)
1339{
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00001340 /* Enable decoding of 0xFFF00000 to 0xFFFFFFFF. (1 MB) */
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001341 max_rom_decode.parallel = 1024 * 1024;
1342 return enable_flash_amd_via(dev, name, 0xE0);
1343}
1344
Marc Jones3af487d2008-10-15 17:50:29 +00001345static int enable_flash_sb600(struct pci_dev *dev, const char *name)
1346{
Michael Karcherb05b9e12010-07-22 18:04:19 +00001347 uint32_t prot;
Marc Jones3af487d2008-10-15 17:50:29 +00001348 uint8_t reg;
Michael Karcherb05b9e12010-07-22 18:04:19 +00001349 int ret;
Marc Jones3af487d2008-10-15 17:50:29 +00001350
Jason Wanga3f04be2008-11-28 21:36:51 +00001351 /* Clear ROM protect 0-3. */
1352 for (reg = 0x50; reg < 0x60; reg += 4) {
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001353 prot = pci_read_long(dev, reg);
1354 /* No protection flags for this region?*/
1355 if ((prot & 0x3) == 0)
1356 continue;
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001357 msg_pdbg("Chipset %s%sprotected flash from 0x%08x to 0x%08x, unlocking...",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001358 (prot & 0x2) ? "read " : "",
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001359 (prot & 0x1) ? "write " : "",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001360 (prot & 0xfffff800),
1361 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001362 prot &= 0xfffffffc;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001363 rpci_write_byte(dev, reg, prot);
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001364 prot = pci_read_long(dev, reg);
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001365 if ((prot & 0x3) != 0) {
1366 msg_perr("Disabling %s%sprotection of flash addresses from 0x%08x to 0x%08x failed.\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001367 (prot & 0x2) ? "read " : "",
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001368 (prot & 0x1) ? "write " : "",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001369 (prot & 0xfffff800),
1370 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001371 continue;
1372 }
1373 msg_pdbg("done.\n");
Jason Wanga3f04be2008-11-28 21:36:51 +00001374 }
1375
Nico Huber2e50cdc2018-09-23 20:20:26 +02001376 internal_buses_supported &= BUS_LPC | BUS_FWH;
Michael Karcherb05b9e12010-07-22 18:04:19 +00001377
1378 ret = sb600_probe_spi(dev);
Jason Wanga3f04be2008-11-28 21:36:51 +00001379
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001380 /* Read ROM strap override register. */
1381 OUTB(0x8f, 0xcd6);
1382 reg = INB(0xcd7);
1383 reg &= 0x0e;
Sean Nelson316a29f2010-05-07 20:09:04 +00001384 msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001385 if (reg & 0x02) {
1386 switch ((reg & 0x0c) >> 2) {
1387 case 0x00:
Sean Nelson316a29f2010-05-07 20:09:04 +00001388 msg_pdbg(": LPC");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001389 break;
1390 case 0x01:
Sean Nelson316a29f2010-05-07 20:09:04 +00001391 msg_pdbg(": PCI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001392 break;
1393 case 0x02:
Sean Nelson316a29f2010-05-07 20:09:04 +00001394 msg_pdbg(": FWH");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001395 break;
1396 case 0x03:
Sean Nelson316a29f2010-05-07 20:09:04 +00001397 msg_pdbg(": SPI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001398 break;
1399 }
1400 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001401 msg_pdbg("\n");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001402
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001403 /* Force enable SPI ROM in SB600 PM register.
1404 * If we enable SPI ROM here, we have to disable it after we leave.
Zheng Bao284a6002009-05-04 22:33:50 +00001405 * But how can we know which ROM we are going to handle? So we have
1406 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001407 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
1408 * boards with LPC straps, you have to use the code below.
Zheng Bao284a6002009-05-04 22:33:50 +00001409 */
1410 /*
Jason Wanga3f04be2008-11-28 21:36:51 +00001411 OUTB(0x8f, 0xcd6);
1412 OUTB(0x0e, 0xcd7);
Zheng Bao284a6002009-05-04 22:33:50 +00001413 */
Marc Jones3af487d2008-10-15 17:50:29 +00001414
Michael Karcherb05b9e12010-07-22 18:04:19 +00001415 return ret;
Marc Jones3af487d2008-10-15 17:50:29 +00001416}
1417
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001418/* sets bit 0 in 0x6d */
1419static int enable_flash_nvidia_common(struct pci_dev *dev, const char *name)
1420{
1421 uint8_t old, new;
1422
1423 old = pci_read_byte(dev, 0x6d);
1424 new = old | 0x01;
1425 if (new == old)
1426 return 0;
1427
1428 rpci_write_byte(dev, 0x6d, new);
1429 if (pci_read_byte(dev, 0x6d) != new) {
1430 msg_pinfo("Setting register 0x6d to 0x%02x on %s failed.\n", new, name);
1431 return 1;
1432 }
1433 return 0;
1434}
1435
Luc Verhaegen90e8e612009-05-26 09:48:28 +00001436static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name)
1437{
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001438 rpci_write_byte(dev, 0x92, 0);
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001439 if (enable_flash_nvidia_common(dev, name))
1440 return ERROR_NONFATAL;
1441 else
1442 return 0;
Luc Verhaegen90e8e612009-05-26 09:48:28 +00001443}
1444
Uwe Hermann372eeb52007-12-04 21:49:06 +00001445static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +00001446{
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001447 uint32_t segctrl;
1448 uint8_t reg, old, new;
1449 unsigned int err = 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +00001450
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001451 /* 0x8A is special: it is a single byte and only one nibble is touched. */
1452 reg = 0x8A;
1453 segctrl = pci_read_byte(dev, reg);
1454 if ((segctrl & 0x3) != 0x0) {
1455 if ((segctrl & 0xC) != 0x0) {
1456 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1457 err++;
1458 } else {
1459 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1460 rpci_write_byte(dev, reg, segctrl & 0xF0);
1461
1462 segctrl = pci_read_byte(dev, reg);
1463 if ((segctrl & 0x3) != 0x0) {
1464 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%x).\n",
1465 reg, segctrl);
1466 err++;
1467 } else
1468 msg_pdbg("OK\n");
1469 }
Jonathan Kollasch9ce498e2011-08-06 12:45:21 +00001470 }
1471
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001472 for (reg = 0x8C; reg <= 0x94; reg += 4) {
1473 segctrl = pci_read_long(dev, reg);
1474 if ((segctrl & 0x33333333) == 0x00000000) {
1475 /* reads and writes are unlocked */
1476 continue;
1477 }
1478 if ((segctrl & 0xCCCCCCCC) != 0x00000000) {
1479 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1480 err++;
1481 continue;
1482 }
1483 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1484 rpci_write_long(dev, reg, 0x00000000);
1485
1486 segctrl = pci_read_long(dev, reg);
1487 if ((segctrl & 0x33333333) != 0x00000000) {
1488 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%08x).\n",
1489 reg, segctrl);
1490 err++;
1491 } else
1492 msg_pdbg("OK\n");
1493 }
1494
1495 if (err > 0) {
1496 msg_pinfo("%d locks could not be disabled, disabling writes (reads may also fail).\n", err);
Felix Singer980d6b82022-08-19 02:48:15 +02001497 programmer_may_write = false;
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001498 }
1499
1500 reg = 0x88;
1501 old = pci_read_byte(dev, reg);
1502 new = old | 0xC0;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001503 if (new != old) {
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001504 rpci_write_byte(dev, reg, new);
Stefan Taunere34e3e82013-01-01 00:06:51 +00001505 if (pci_read_byte(dev, reg) != new) { /* FIXME: share this with other code? */
1506 msg_pinfo("Setting register 0x%02x to 0x%02x on %s failed.\n", reg, new, name);
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001507 err++;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001508 }
1509 }
Yinghai Lu952dfce2005-07-06 17:13:46 +00001510
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001511 if (enable_flash_nvidia_common(dev, name))
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001512 err++;
1513
1514 if (err > 0)
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001515 return ERROR_NONFATAL;
1516 else
Uwe Hermanna7e05482007-05-09 10:17:44 +00001517 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +00001518}
1519
Joshua Roys85835d82010-09-15 14:47:56 +00001520static int enable_flash_osb4(struct pci_dev *dev, const char *name)
1521{
1522 uint8_t tmp;
1523
Nico Huber2e50cdc2018-09-23 20:20:26 +02001524 internal_buses_supported &= BUS_PARALLEL;
Joshua Roys85835d82010-09-15 14:47:56 +00001525
1526 tmp = INB(0xc06);
1527 tmp |= 0x1;
1528 OUTB(tmp, 0xc06);
1529
1530 tmp = INB(0xc6f);
1531 tmp |= 0x40;
1532 OUTB(tmp, 0xc6f);
1533
1534 return 0;
1535}
1536
Uwe Hermann372eeb52007-12-04 21:49:06 +00001537/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
1538static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +00001539{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001540 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +00001541 struct pci_dev *smbusdev;
1542
Uwe Hermann372eeb52007-12-04 21:49:06 +00001543 /* Look for the SMBus device. */
Carl-Daniel Hailfingerf6e3efb2009-05-06 00:35:31 +00001544 smbusdev = pci_dev_find(0x1002, 0x4372);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001545
Uwe Hermanna7e05482007-05-09 10:17:44 +00001546 if (!smbusdev) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001547 msg_perr("ERROR: SMBus device not found. Aborting.\n");
Tadas Slotkus0e3f1cf2011-09-06 18:49:31 +00001548 return ERROR_FATAL;
Stefan Reinauer86de2832006-03-31 11:26:55 +00001549 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001550
Uwe Hermann372eeb52007-12-04 21:49:06 +00001551 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001552 tmp = pci_read_byte(smbusdev, 0x79);
1553 tmp |= 0x01;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001554 rpci_write_byte(smbusdev, 0x79, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001555
Uwe Hermann372eeb52007-12-04 21:49:06 +00001556 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001557 tmp = pci_read_byte(dev, 0x48);
1558 tmp |= 0x21;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001559 rpci_write_byte(dev, 0x48, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001560
Uwe Hermann372eeb52007-12-04 21:49:06 +00001561 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +00001562 tmp = INB(0xc6f);
1563 OUTB(tmp, 0xeb);
1564 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001565 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +00001566 OUTB(tmp, 0xc6f);
1567 OUTB(tmp, 0xeb);
1568 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001569
1570 return 0;
1571}
1572
Uwe Hermann372eeb52007-12-04 21:49:06 +00001573static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +00001574{
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001575 uint8_t val;
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001576 uint16_t wordval;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001577
Uwe Hermann372eeb52007-12-04 21:49:06 +00001578 /* Set the 0-16 MB enable bits. */
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001579 val = pci_read_byte(dev, 0x88);
1580 val |= 0xff; /* 256K */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001581 rpci_write_byte(dev, 0x88, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001582 val = pci_read_byte(dev, 0x8c);
1583 val |= 0xff; /* 1M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001584 rpci_write_byte(dev, 0x8c, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001585 wordval = pci_read_word(dev, 0x90);
1586 wordval |= 0x7fff; /* 16M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001587 rpci_write_word(dev, 0x90, wordval);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001588
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001589 if (enable_flash_nvidia_common(dev, name))
1590 return ERROR_NONFATAL;
1591 else
Uwe Hermanna7e05482007-05-09 10:17:44 +00001592 return 0;
Yinghai Luca782972007-01-22 20:21:17 +00001593}
1594
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001595/*
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001596 * The MCP6x/MCP7x code is based on cleanroom reverse engineering.
1597 * It is assumed that LPC chips need the MCP55 code and SPI chips need the
1598 * code provided in enable_flash_mcp6x_7x_common.
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001599 */
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001600static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001601{
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001602 int ret = 0, want_spi = 0;
Michael Karchercfa674f2010-02-25 11:38:23 +00001603 uint8_t val;
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001604
1605 /* dev is the ISA bridge. No idea what the stuff below does. */
Michael Karchercfa674f2010-02-25 11:38:23 +00001606 val = pci_read_byte(dev, 0x8a);
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001607 msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 "
Michael Karchercfa674f2010-02-25 11:38:23 +00001608 "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1);
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001609
Michael Karchercfa674f2010-02-25 11:38:23 +00001610 switch ((val >> 5) & 0x3) {
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001611 case 0x0:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001612 ret = enable_flash_mcp55(dev, name);
Nico Huber2e50cdc2018-09-23 20:20:26 +02001613 internal_buses_supported &= BUS_LPC;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001614 msg_pdbg("Flash bus type is LPC\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001615 break;
1616 case 0x2:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001617 want_spi = 1;
1618 /* SPI is added in mcp6x_spi_init if it works.
1619 * Do we really want to disable LPC in this case?
1620 */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00001621 internal_buses_supported = BUS_NONE;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001622 msg_pdbg("Flash bus type is SPI\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001623 break;
1624 default:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001625 /* Should not happen. */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00001626 internal_buses_supported = BUS_NONE;
Stefan Tauner7ba3d6c2014-06-12 21:07:03 +00001627 msg_pwarn("Flash bus type is unknown (none)\n");
Elyes HAOUASac01baa2018-05-28 16:52:21 +02001628 msg_pinfo("Please send the log files created by \"flashrom -p internal -o logfile\" to\n"
Nico Huberac90af62022-12-18 00:22:47 +00001629 "flashrom-stable@flashrom.org with \"your board name: flashrom -V\" as the subject\n"
1630 "to help us finish support for your chipset. Thanks.\n");
Stefan Tauner7ba3d6c2014-06-12 21:07:03 +00001631 return ERROR_NONFATAL;
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001632 }
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001633
1634 /* Force enable SPI and disable LPC? Not a good idea. */
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001635#if 0
Michael Karchercfa674f2010-02-25 11:38:23 +00001636 val |= (1 << 6);
1637 val &= ~(1 << 5);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001638 rpci_write_byte(dev, 0x8a, val);
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001639#endif
1640
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001641 if (mcp6x_spi_init(want_spi))
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001642 ret = 1;
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001643
Nico Huber2e50cdc2018-09-23 20:20:26 +02001644 /* Suppress unknown laptop warning if we booted from SPI. */
1645 if (!ret && want_spi)
Felix Singerd1ab7d22022-08-19 03:03:47 +02001646 laptop_ok = true;
Nico Huber2e50cdc2018-09-23 20:20:26 +02001647
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001648 return ret;
1649}
1650
Uwe Hermann372eeb52007-12-04 21:49:06 +00001651static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001652{
Michael Karchercfa674f2010-02-25 11:38:23 +00001653 uint8_t val;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001654
Uwe Hermanne823ee02007-06-05 15:02:18 +00001655 /* Set the 4MB enable bit. */
Michael Karchercfa674f2010-02-25 11:38:23 +00001656 val = pci_read_byte(dev, 0x41);
1657 val |= 0x0e;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001658 rpci_write_byte(dev, 0x41, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001659
Michael Karchercfa674f2010-02-25 11:38:23 +00001660 val = pci_read_byte(dev, 0x43);
1661 val |= (1 << 4);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001662 rpci_write_byte(dev, 0x43, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001663
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001664 return 0;
1665}
1666
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001667/*
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001668 * Usually on the x86 architectures (and on other PC-like platforms like some
1669 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
1670 * Elan SC520 only a small piece of the system flash is mapped there, but the
1671 * complete flash is mapped somewhere below 1G. The position can be determined
1672 * by the BOOTCS PAR register.
1673 */
1674static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
1675{
1676 int i, bootcs_found = 0;
1677 uint32_t parx = 0;
1678 void *mmcr;
1679
1680 /* 1. Map MMCR */
Stefan Reinauer0593f212009-01-26 01:10:48 +00001681 mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
Niklas Söderlund5d307202013-09-14 09:02:27 +00001682 if (mmcr == ERROR_PTR)
1683 return ERROR_FATAL;
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001684
1685 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
1686 * BOOTCS region (PARx[31:29] = 100b)e
1687 */
1688 for (i = 0x88; i <= 0xc4; i += 4) {
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +00001689 parx = mmio_readl(mmcr + i);
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001690 if ((parx >> 29) == 4) {
1691 bootcs_found = 1;
1692 break; /* BOOTCS found */
1693 }
1694 }
1695
1696 /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
1697 * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
1698 */
1699 if (bootcs_found) {
1700 if (parx & (1 << 25)) {
1701 parx &= (1 << 14) - 1; /* Mask [13:0] */
1702 flashbase = parx << 16;
1703 } else {
1704 parx &= (1 << 18) - 1; /* Mask [17:0] */
1705 flashbase = parx << 12;
1706 }
1707 } else {
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001708 msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. "
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001709 "Assuming flash at 4G.\n");
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001710 }
1711
1712 /* 4. Clean up */
Carl-Daniel Hailfingerbe726812009-08-09 12:44:08 +00001713 physunmap(mmcr, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001714 return 0;
1715}
1716
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001717#endif
1718
Nico Huber2e50cdc2018-09-23 20:20:26 +02001719#define B_P (BUS_PARALLEL)
1720#define B_PFL (BUS_NONSPI)
1721#define B_PFLS (BUS_NONSPI | BUS_SPI)
1722#define B_FL (BUS_FWH | BUS_LPC)
1723#define B_FLS (BUS_FWH | BUS_LPC | BUS_SPI)
1724#define B_FS (BUS_FWH | BUS_SPI)
1725#define B_L (BUS_LPC)
1726#define B_LS (BUS_LPC | BUS_SPI)
1727#define B_S (BUS_SPI)
1728
Idwer Vollering326a0602011-06-18 18:45:41 +00001729/* Please keep this list numerically sorted by vendor/device ID. */
Uwe Hermann05fab752009-05-16 23:42:17 +00001730const struct penable chipset_enables[] = {
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001731#if defined(__i386__) || defined(__x86_64__)
Nico Huber2e50cdc2018-09-23 20:20:26 +02001732 {0x1002, 0x4377, B_PFL, OK, "ATI", "SB400", enable_flash_sb400},
1733 {0x1002, 0x438d, B_FLS, OK, "AMD", "SB600", enable_flash_sb600},
1734 {0x1002, 0x439d, B_FLS, OK, "AMD", "SB7x0/SB8x0/SB9x0", enable_flash_sb600},
1735 {0x100b, 0x0510, B_PFL, NT, "AMD", "SC1100", enable_flash_sc1100},
1736 {0x1022, 0x2080, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1737 {0x1022, 0x2090, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1738 {0x1022, 0x3000, B_PFL, OK, "AMD", "Elan SC520", get_flashbase_sc520},
1739 {0x1022, 0x7440, B_PFL, OK, "AMD", "AMD-768", enable_flash_amd_768_8111},
1740 {0x1022, 0x7468, B_PFL, OK, "AMD", "AMD-8111", enable_flash_amd_768_8111},
1741 {0x1022, 0x780e, B_FLS, OK, "AMD", "FCH", enable_flash_sb600},
1742 {0x1022, 0x790e, B_FLS, OK, "AMD", "FP4", enable_flash_sb600},
1743 {0x1039, 0x0406, B_PFL, NT, "SiS", "501/5101/5501", enable_flash_sis501},
1744 {0x1039, 0x0496, B_PFL, NT, "SiS", "85C496+497", enable_flash_sis85c496},
1745 {0x1039, 0x0530, B_PFL, OK, "SiS", "530", enable_flash_sis530},
1746 {0x1039, 0x0540, B_PFL, NT, "SiS", "540", enable_flash_sis540},
1747 {0x1039, 0x0620, B_PFL, NT, "SiS", "620", enable_flash_sis530},
1748 {0x1039, 0x0630, B_PFL, OK, "SiS", "630", enable_flash_sis540},
1749 {0x1039, 0x0635, B_PFL, NT, "SiS", "635", enable_flash_sis540},
1750 {0x1039, 0x0640, B_PFL, NT, "SiS", "640", enable_flash_sis540},
1751 {0x1039, 0x0645, B_PFL, NT, "SiS", "645", enable_flash_sis540},
1752 {0x1039, 0x0646, B_PFL, OK, "SiS", "645DX", enable_flash_sis540},
1753 {0x1039, 0x0648, B_PFL, OK, "SiS", "648", enable_flash_sis540},
1754 {0x1039, 0x0650, B_PFL, OK, "SiS", "650", enable_flash_sis540},
1755 {0x1039, 0x0651, B_PFL, OK, "SiS", "651", enable_flash_sis540},
1756 {0x1039, 0x0655, B_PFL, NT, "SiS", "655", enable_flash_sis540},
1757 {0x1039, 0x0661, B_PFL, OK, "SiS", "661", enable_flash_sis540},
1758 {0x1039, 0x0730, B_PFL, OK, "SiS", "730", enable_flash_sis540},
1759 {0x1039, 0x0733, B_PFL, NT, "SiS", "733", enable_flash_sis540},
1760 {0x1039, 0x0735, B_PFL, OK, "SiS", "735", enable_flash_sis540},
1761 {0x1039, 0x0740, B_PFL, NT, "SiS", "740", enable_flash_sis540},
1762 {0x1039, 0x0741, B_PFL, OK, "SiS", "741", enable_flash_sis540},
1763 {0x1039, 0x0745, B_PFL, OK, "SiS", "745", enable_flash_sis540},
1764 {0x1039, 0x0746, B_PFL, NT, "SiS", "746", enable_flash_sis540},
1765 {0x1039, 0x0748, B_PFL, NT, "SiS", "748", enable_flash_sis540},
1766 {0x1039, 0x0755, B_PFL, OK, "SiS", "755", enable_flash_sis540},
1767 {0x1039, 0x5511, B_PFL, NT, "SiS", "5511", enable_flash_sis5511},
1768 {0x1039, 0x5571, B_PFL, NT, "SiS", "5571", enable_flash_sis530},
1769 {0x1039, 0x5591, B_PFL, NT, "SiS", "5591/5592", enable_flash_sis530},
1770 {0x1039, 0x5596, B_PFL, NT, "SiS", "5596", enable_flash_sis5511},
1771 {0x1039, 0x5597, B_PFL, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530},
1772 {0x1039, 0x5600, B_PFL, NT, "SiS", "600", enable_flash_sis530},
1773 {0x1078, 0x0100, B_P, OK, "AMD", "CS5530(A)", enable_flash_cs5530},
1774 {0x10b9, 0x1533, B_PFL, OK, "ALi", "M1533", enable_flash_ali_m1533},
1775 {0x10de, 0x0030, B_PFL, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2},
1776 {0x10de, 0x0050, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */
1777 {0x10de, 0x0051, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */
1778 {0x10de, 0x0060, B_PFL, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2},
1779 {0x10de, 0x00e0, B_PFL, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2},
Uwe Hermanneac10162008-03-13 18:52:51 +00001780 /* Slave, should not be here, to fix known bug for A01. */
Nico Huber2e50cdc2018-09-23 20:20:26 +02001781 {0x10de, 0x00d3, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804},
1782 {0x10de, 0x0260, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1783 {0x10de, 0x0261, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1784 {0x10de, 0x0262, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1785 {0x10de, 0x0263, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1786 {0x10de, 0x0360, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001787 /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to
1788 * the flash chip. Instead, 10de:0364 is connected to the flash chip.
1789 * Until we have PCI device class matching or some fallback mechanism,
1790 * this is needed to get flashrom working on Tyan S2915 and maybe other
1791 * dual-MCP55 boards.
1792 */
1793#if 0
Nico Huber2e50cdc2018-09-23 20:20:26 +02001794 {0x10de, 0x0361, B_L, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001795#endif
Nico Huber2e50cdc2018-09-23 20:20:26 +02001796 {0x10de, 0x0362, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1797 {0x10de, 0x0363, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1798 {0x10de, 0x0364, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1799 {0x10de, 0x0365, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1800 {0x10de, 0x0366, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1801 {0x10de, 0x0367, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */
1802 {0x10de, 0x03e0, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1803 {0x10de, 0x03e1, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1804 {0x10de, 0x03e3, B_LS, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1805 {0x10de, 0x0440, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1806 {0x10de, 0x0441, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1807 {0x10de, 0x0442, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1808 {0x10de, 0x0443, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1809 {0x10de, 0x0548, B_LS, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x},
1810 {0x10de, 0x075c, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1811 {0x10de, 0x075d, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1812 {0x10de, 0x07d7, B_LS, OK, "NVIDIA", "MCP73", enable_flash_mcp6x_7x},
1813 {0x10de, 0x0aac, B_LS, OK, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1814 {0x10de, 0x0aad, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1815 {0x10de, 0x0aae, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1816 {0x10de, 0x0aaf, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1817 {0x10de, 0x0d80, B_LS, NT, "NVIDIA", "MCP89", enable_flash_mcp6x_7x},
Michael Karcher89bed6d2010-06-13 10:16:12 +00001818 /* VIA northbridges */
Nico Huber2e50cdc2018-09-23 20:20:26 +02001819 {0x1106, 0x0585, B_PFLS, NT, "VIA", "VT82C585VPX", via_no_byte_merge},
1820 {0x1106, 0x0595, B_PFLS, NT, "VIA", "VT82C595", via_no_byte_merge},
1821 {0x1106, 0x0597, B_PFLS, NT, "VIA", "VT82C597", via_no_byte_merge},
1822 {0x1106, 0x0601, B_PFLS, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge},
1823 {0x1106, 0x0691, B_PFLS, OK, "VIA", "VT82C69x", via_no_byte_merge},
1824 {0x1106, 0x8601, B_PFLS, NT, "VIA", "VT8601T", via_no_byte_merge},
Michael Karcher89bed6d2010-06-13 10:16:12 +00001825 /* VIA southbridges */
Nico Huber2e50cdc2018-09-23 20:20:26 +02001826 {0x1106, 0x0586, B_PFL, OK, "VIA", "VT82C586A/B", enable_flash_vt82c586},
1827 {0x1106, 0x0596, B_PFL, OK, "VIA", "VT82C596", enable_flash_vt82c596},
1828 {0x1106, 0x0686, B_PFL, OK, "VIA", "VT82C686A/B", enable_flash_vt82c596},
1829 {0x1106, 0x3074, B_FL, OK, "VIA", "VT8233", enable_flash_vt823x},
1830 {0x1106, 0x3147, B_FL, OK, "VIA", "VT8233A", enable_flash_vt823x},
1831 {0x1106, 0x3177, B_FL, OK, "VIA", "VT8235", enable_flash_vt823x},
1832 {0x1106, 0x3227, B_FL, OK, "VIA", "VT8237(R)", enable_flash_vt823x},
1833 {0x1106, 0x3287, B_FL, OK, "VIA", "VT8251", enable_flash_vt823x},
1834 {0x1106, 0x3337, B_FL, OK, "VIA", "VT8237A", enable_flash_vt823x},
1835 {0x1106, 0x3372, B_LS, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi},
1836 {0x1106, 0x8231, B_FL, NT, "VIA", "VT8231", enable_flash_vt823x},
1837 {0x1106, 0x8324, B_FL, OK, "VIA", "CX700", enable_flash_vt823x},
1838 {0x1106, 0x8353, B_FLS, NT, "VIA", "VX800/VX820", enable_flash_vt_vx},
1839 {0x1106, 0x8409, B_FLS, OK, "VIA", "VX855/VX875", enable_flash_vt_vx},
1840 {0x1106, 0x8410, B_FLS, OK, "VIA", "VX900", enable_flash_vt_vx},
1841 {0x1166, 0x0200, B_P, OK, "Broadcom", "OSB4", enable_flash_osb4},
1842 {0x1166, 0x0205, B_PFL, OK, "Broadcom", "HT-1000", enable_flash_ht1000},
1843 {0x17f3, 0x6030, B_PFL, OK, "RDC", "R8610/R3210", enable_flash_rdc_r8610},
1844 {0x8086, 0x0c60, B_FS, NT, "Intel", "S12x0", enable_flash_s12x0},
1845 {0x8086, 0x0f1c, B_FS, OK, "Intel", "Bay Trail", enable_flash_silvermont},
1846 {0x8086, 0x0f1d, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1847 {0x8086, 0x0f1e, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1848 {0x8086, 0x0f1f, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1849 {0x8086, 0x122e, B_P, OK, "Intel", "PIIX", enable_flash_piix4},
1850 {0x8086, 0x1234, B_P, NT, "Intel", "MPIIX", enable_flash_piix4},
1851 {0x8086, 0x1c44, B_FS, DEP, "Intel", "Z68", enable_flash_pch6},
1852 {0x8086, 0x1c46, B_FS, DEP, "Intel", "P67", enable_flash_pch6},
1853 {0x8086, 0x1c47, B_FS, NT, "Intel", "UM67", enable_flash_pch6},
1854 {0x8086, 0x1c49, B_FS, DEP, "Intel", "HM65", enable_flash_pch6},
1855 {0x8086, 0x1c4a, B_FS, DEP, "Intel", "H67", enable_flash_pch6},
1856 {0x8086, 0x1c4b, B_FS, NT, "Intel", "HM67", enable_flash_pch6},
1857 {0x8086, 0x1c4c, B_FS, NT, "Intel", "Q65", enable_flash_pch6},
Evgeny Zinovievd493baa2021-03-06 21:14:39 +03001858 {0x8086, 0x1c4d, B_FS, DEP, "Intel", "QS67", enable_flash_pch6},
Angel Pons3b3fc932020-11-20 10:05:29 +01001859 {0x8086, 0x1c4e, B_FS, DEP, "Intel", "Q67", enable_flash_pch6},
Nico Huber2e50cdc2018-09-23 20:20:26 +02001860 {0x8086, 0x1c4f, B_FS, DEP, "Intel", "QM67", enable_flash_pch6},
1861 {0x8086, 0x1c50, B_FS, NT, "Intel", "B65", enable_flash_pch6},
1862 {0x8086, 0x1c52, B_FS, NT, "Intel", "C202", enable_flash_pch6},
1863 {0x8086, 0x1c54, B_FS, DEP, "Intel", "C204", enable_flash_pch6},
1864 {0x8086, 0x1c56, B_FS, NT, "Intel", "C206", enable_flash_pch6},
1865 {0x8086, 0x1c5c, B_FS, DEP, "Intel", "H61", enable_flash_pch6},
1866 {0x8086, 0x1d40, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
1867 {0x8086, 0x1d41, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
Edward O'Callaghan55f65642020-11-02 14:43:10 +11001868 {0x8086, 0x1e41, B_FS, DEP, "Intel", "Desktop Sample", enable_flash_pch7},
1869 {0x8086, 0x1e42, B_FS, DEP, "Intel", "Mobile Sample", enable_flash_pch7},
1870 {0x8086, 0x1e43, B_FS, DEP, "Intel", "SFF Sample", enable_flash_pch7},
Nico Huber2e50cdc2018-09-23 20:20:26 +02001871 {0x8086, 0x1e44, B_FS, DEP, "Intel", "Z77", enable_flash_pch7},
1872 {0x8086, 0x1e46, B_FS, NT, "Intel", "Z75", enable_flash_pch7},
Jacob Garber1592fe52020-08-28 12:48:32 -06001873 {0x8086, 0x1e47, B_FS, DEP, "Intel", "Q77", enable_flash_pch7},
Angel Ponsd58128e2019-10-06 21:07:44 +02001874 {0x8086, 0x1e48, B_FS, DEP, "Intel", "Q75", enable_flash_pch7},
Nico Huber2e50cdc2018-09-23 20:20:26 +02001875 {0x8086, 0x1e49, B_FS, DEP, "Intel", "B75", enable_flash_pch7},
1876 {0x8086, 0x1e4a, B_FS, DEP, "Intel", "H77", enable_flash_pch7},
Jacob Garber198bef32021-02-20 10:51:56 -07001877 {0x8086, 0x1e53, B_FS, DEP, "Intel", "C216", enable_flash_pch7},
Nico Huber2e50cdc2018-09-23 20:20:26 +02001878 {0x8086, 0x1e55, B_FS, DEP, "Intel", "QM77", enable_flash_pch7},
1879 {0x8086, 0x1e56, B_FS, DEP, "Intel", "QS77", enable_flash_pch7},
1880 {0x8086, 0x1e57, B_FS, DEP, "Intel", "HM77", enable_flash_pch7},
1881 {0x8086, 0x1e58, B_FS, NT, "Intel", "UM77", enable_flash_pch7},
Angel Pons728062f2019-12-18 00:26:15 +01001882 {0x8086, 0x1e59, B_FS, DEP, "Intel", "HM76", enable_flash_pch7},
Evgeny Zinovieva9335cc2020-03-09 03:05:42 +03001883 {0x8086, 0x1e5d, B_FS, DEP, "Intel", "HM75", enable_flash_pch7},
Nico Huber2e50cdc2018-09-23 20:20:26 +02001884 {0x8086, 0x1e5e, B_FS, NT, "Intel", "HM70", enable_flash_pch7},
1885 {0x8086, 0x1e5f, B_FS, DEP, "Intel", "NM70", enable_flash_pch7},
1886 {0x8086, 0x1f38, B_FS, DEP, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1887 {0x8086, 0x1f39, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1888 {0x8086, 0x1f3a, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1889 {0x8086, 0x1f3b, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1890 {0x8086, 0x229c, B_FS, OK, "Intel", "Braswell", enable_flash_silvermont},
1891 {0x8086, 0x2310, B_FS, NT, "Intel", "DH89xxCC (Cave Creek)", enable_flash_pch7},
1892 {0x8086, 0x2390, B_FS, NT, "Intel", "Coleto Creek", enable_flash_pch7},
1893 {0x8086, 0x2410, B_FL, OK, "Intel", "ICH", enable_flash_ich0},
1894 {0x8086, 0x2420, B_FL, OK, "Intel", "ICH0", enable_flash_ich0},
1895 {0x8086, 0x2440, B_FL, OK, "Intel", "ICH2", enable_flash_ich2345},
1896 {0x8086, 0x244c, B_FL, OK, "Intel", "ICH2-M", enable_flash_ich2345},
1897 {0x8086, 0x2450, B_FL, NT, "Intel", "C-ICH", enable_flash_ich2345},
1898 {0x8086, 0x2480, B_FL, OK, "Intel", "ICH3-S", enable_flash_ich2345},
1899 {0x8086, 0x248c, B_FL, OK, "Intel", "ICH3-M", enable_flash_ich2345},
1900 {0x8086, 0x24c0, B_FL, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich2345},
1901 {0x8086, 0x24cc, B_FL, OK, "Intel", "ICH4-M", enable_flash_ich2345},
1902 {0x8086, 0x24d0, B_FL, OK, "Intel", "ICH5/ICH5R", enable_flash_ich2345},
1903 {0x8086, 0x25a1, B_FL, OK, "Intel", "6300ESB", enable_flash_ich2345},
1904 {0x8086, 0x2640, B_FL, OK, "Intel", "ICH6/ICH6R", enable_flash_ich6},
1905 {0x8086, 0x2641, B_FL, OK, "Intel", "ICH6-M", enable_flash_ich6},
1906 {0x8086, 0x2642, B_FL, NT, "Intel", "ICH6W/ICH6RW", enable_flash_ich6},
1907 {0x8086, 0x2670, B_FL, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich6},
1908 {0x8086, 0x27b0, B_FS, OK, "Intel", "ICH7DH", enable_flash_ich7},
1909 {0x8086, 0x27b8, B_FS, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7},
1910 {0x8086, 0x27b9, B_FS, OK, "Intel", "ICH7M", enable_flash_ich7},
1911 {0x8086, 0x27bc, B_FS, OK, "Intel", "NM10", enable_flash_ich7},
1912 {0x8086, 0x27bd, B_FS, OK, "Intel", "ICH7MDH", enable_flash_ich7},
1913 {0x8086, 0x2810, B_FS, DEP, "Intel", "ICH8/ICH8R", enable_flash_ich8},
1914 {0x8086, 0x2811, B_FS, DEP, "Intel", "ICH8M-E", enable_flash_ich8},
1915 {0x8086, 0x2812, B_FS, DEP, "Intel", "ICH8DH", enable_flash_ich8},
1916 {0x8086, 0x2814, B_FS, DEP, "Intel", "ICH8DO", enable_flash_ich8},
1917 {0x8086, 0x2815, B_FS, DEP, "Intel", "ICH8M", enable_flash_ich8},
1918 {0x8086, 0x2910, B_FS, DEP, "Intel", "ICH9 Eng. Sample", enable_flash_ich9},
1919 {0x8086, 0x2912, B_FS, DEP, "Intel", "ICH9DH", enable_flash_ich9},
1920 {0x8086, 0x2914, B_FS, DEP, "Intel", "ICH9DO", enable_flash_ich9},
1921 {0x8086, 0x2916, B_FS, DEP, "Intel", "ICH9R", enable_flash_ich9},
1922 {0x8086, 0x2917, B_FS, DEP, "Intel", "ICH9M-E", enable_flash_ich9},
1923 {0x8086, 0x2918, B_FS, DEP, "Intel", "ICH9", enable_flash_ich9},
1924 {0x8086, 0x2919, B_FS, DEP, "Intel", "ICH9M", enable_flash_ich9},
1925 {0x8086, 0x3a10, B_FS, NT, "Intel", "ICH10R Eng. Sample", enable_flash_ich10},
1926 {0x8086, 0x3a14, B_FS, DEP, "Intel", "ICH10DO", enable_flash_ich10},
1927 {0x8086, 0x3a16, B_FS, DEP, "Intel", "ICH10R", enable_flash_ich10},
1928 {0x8086, 0x3a18, B_FS, DEP, "Intel", "ICH10", enable_flash_ich10},
1929 {0x8086, 0x3a1a, B_FS, DEP, "Intel", "ICH10D", enable_flash_ich10},
1930 {0x8086, 0x3a1e, B_FS, NT, "Intel", "ICH10 Eng. Sample", enable_flash_ich10},
1931 {0x8086, 0x3b00, B_FS, NT, "Intel", "3400 Desktop", enable_flash_pch5},
1932 {0x8086, 0x3b01, B_FS, NT, "Intel", "3400 Mobile", enable_flash_pch5},
1933 {0x8086, 0x3b02, B_FS, NT, "Intel", "P55", enable_flash_pch5},
1934 {0x8086, 0x3b03, B_FS, DEP, "Intel", "PM55", enable_flash_pch5},
1935 {0x8086, 0x3b06, B_FS, DEP, "Intel", "H55", enable_flash_pch5},
1936 {0x8086, 0x3b07, B_FS, DEP, "Intel", "QM57", enable_flash_pch5},
1937 {0x8086, 0x3b08, B_FS, NT, "Intel", "H57", enable_flash_pch5},
1938 {0x8086, 0x3b09, B_FS, DEP, "Intel", "HM55", enable_flash_pch5},
1939 {0x8086, 0x3b0a, B_FS, NT, "Intel", "Q57", enable_flash_pch5},
1940 {0x8086, 0x3b0b, B_FS, NT, "Intel", "HM57", enable_flash_pch5},
1941 {0x8086, 0x3b0d, B_FS, NT, "Intel", "3400 Mobile SFF", enable_flash_pch5},
1942 {0x8086, 0x3b0e, B_FS, NT, "Intel", "B55", enable_flash_pch5},
1943 {0x8086, 0x3b0f, B_FS, DEP, "Intel", "QS57", enable_flash_pch5},
1944 {0x8086, 0x3b12, B_FS, NT, "Intel", "3400", enable_flash_pch5},
1945 {0x8086, 0x3b14, B_FS, DEP, "Intel", "3420", enable_flash_pch5},
1946 {0x8086, 0x3b16, B_FS, NT, "Intel", "3450", enable_flash_pch5},
1947 {0x8086, 0x3b1e, B_FS, NT, "Intel", "B55", enable_flash_pch5},
1948 {0x8086, 0x5031, B_FS, OK, "Intel", "EP80579", enable_flash_ich7},
1949 {0x8086, 0x7000, B_P, OK, "Intel", "PIIX3", enable_flash_piix4},
1950 {0x8086, 0x7110, B_P, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4},
1951 {0x8086, 0x7198, B_P, OK, "Intel", "440MX", enable_flash_piix4},
1952 {0x8086, 0x8119, B_FL, OK, "Intel", "SCH Poulsbo", enable_flash_poulsbo},
1953 {0x8086, 0x8186, B_FS, OK, "Intel", "Atom E6xx(T) (Tunnel Creek)", enable_flash_tunnelcreek},
1954 {0x8086, 0x8c40, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1955 {0x8086, 0x8c41, B_FS, NT, "Intel", "Lynx Point Mobile Eng. Sample", enable_flash_pch8},
1956 {0x8086, 0x8c42, B_FS, NT, "Intel", "Lynx Point Desktop Eng. Sample",enable_flash_pch8},
1957 {0x8086, 0x8c43, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1958 {0x8086, 0x8c44, B_FS, DEP, "Intel", "Z87", enable_flash_pch8},
1959 {0x8086, 0x8c45, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1960 {0x8086, 0x8c46, B_FS, NT, "Intel", "Z85", enable_flash_pch8},
1961 {0x8086, 0x8c47, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1962 {0x8086, 0x8c48, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1963 {0x8086, 0x8c49, B_FS, NT, "Intel", "HM86", enable_flash_pch8},
1964 {0x8086, 0x8c4a, B_FS, DEP, "Intel", "H87", enable_flash_pch8},
1965 {0x8086, 0x8c4b, B_FS, DEP, "Intel", "HM87", enable_flash_pch8},
1966 {0x8086, 0x8c4c, B_FS, NT, "Intel", "Q85", enable_flash_pch8},
1967 {0x8086, 0x8c4d, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1968 {0x8086, 0x8c4e, B_FS, NT, "Intel", "Q87", enable_flash_pch8},
1969 {0x8086, 0x8c4f, B_FS, NT, "Intel", "QM87", enable_flash_pch8},
1970 {0x8086, 0x8c50, B_FS, DEP, "Intel", "B85", enable_flash_pch8},
1971 {0x8086, 0x8c51, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1972 {0x8086, 0x8c52, B_FS, NT, "Intel", "C222", enable_flash_pch8},
1973 {0x8086, 0x8c53, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1974 {0x8086, 0x8c54, B_FS, DEP, "Intel", "C224", enable_flash_pch8},
1975 {0x8086, 0x8c55, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1976 {0x8086, 0x8c56, B_FS, NT, "Intel", "C226", enable_flash_pch8},
1977 {0x8086, 0x8c57, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1978 {0x8086, 0x8c58, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1979 {0x8086, 0x8c59, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1980 {0x8086, 0x8c5a, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1981 {0x8086, 0x8c5b, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1982 {0x8086, 0x8c5c, B_FS, DEP, "Intel", "H81", enable_flash_pch8},
1983 {0x8086, 0x8c5d, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1984 {0x8086, 0x8c5e, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1985 {0x8086, 0x8c5f, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1986 {0x8086, 0x8cc1, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
1987 {0x8086, 0x8cc2, B_FS, NT, "Intel", "9 Series Engineering Sample", enable_flash_pch9},
1988 {0x8086, 0x8cc3, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
Sophie van Soesteec477f2021-07-04 13:54:26 +02001989 {0x8086, 0x8cc4, B_FS, DEP, "Intel", "Z97", enable_flash_pch9},
Nico Huber2e50cdc2018-09-23 20:20:26 +02001990 {0x8086, 0x8cc6, B_FS, NT, "Intel", "H97", enable_flash_pch9},
1991 {0x8086, 0x8d40, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1992 {0x8086, 0x8d41, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1993 {0x8086, 0x8d42, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1994 {0x8086, 0x8d43, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1995 {0x8086, 0x8d44, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1996 {0x8086, 0x8d45, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1997 {0x8086, 0x8d46, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1998 {0x8086, 0x8d47, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1999 {0x8086, 0x8d48, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2000 {0x8086, 0x8d49, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2001 {0x8086, 0x8d4a, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2002 {0x8086, 0x8d4b, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2003 {0x8086, 0x8d4c, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2004 {0x8086, 0x8d4d, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2005 {0x8086, 0x8d4e, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2006 {0x8086, 0x8d4f, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2007 {0x8086, 0x8d50, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2008 {0x8086, 0x8d51, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2009 {0x8086, 0x8d52, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2010 {0x8086, 0x8d53, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2011 {0x8086, 0x8d54, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2012 {0x8086, 0x8d55, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2013 {0x8086, 0x8d56, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2014 {0x8086, 0x8d57, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2015 {0x8086, 0x8d58, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2016 {0x8086, 0x8d59, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2017 {0x8086, 0x8d5a, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2018 {0x8086, 0x8d5b, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2019 {0x8086, 0x8d5c, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2020 {0x8086, 0x8d5d, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2021 {0x8086, 0x8d5e, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2022 {0x8086, 0x8d5f, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2023 {0x8086, 0x9c41, B_FS, NT, "Intel", "Lynx Point LP Eng. Sample", enable_flash_pch8_lp},
2024 {0x8086, 0x9c43, B_FS, NT, "Intel", "Lynx Point LP Premium", enable_flash_pch8_lp},
2025 {0x8086, 0x9c45, B_FS, NT, "Intel", "Lynx Point LP Mainstream", enable_flash_pch8_lp},
2026 {0x8086, 0x9c47, B_FS, NT, "Intel", "Lynx Point LP Value", enable_flash_pch8_lp},
2027 {0x8086, 0x9cc1, B_FS, NT, "Intel", "Haswell U Sample", enable_flash_pch9_lp},
2028 {0x8086, 0x9cc2, B_FS, NT, "Intel", "Broadwell U Sample", enable_flash_pch9_lp},
2029 {0x8086, 0x9cc3, B_FS, DEP, "Intel", "Broadwell U Premium", enable_flash_pch9_lp},
Nikolai Artemiev2bb67922020-11-03 17:19:52 +11002030 {0x8086, 0x9cc5, B_FS, DEP, "Intel", "Broadwell U Base", enable_flash_pch9_lp},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002031 {0x8086, 0x9cc6, B_FS, NT, "Intel", "Broadwell Y Sample", enable_flash_pch9_lp},
2032 {0x8086, 0x9cc7, B_FS, NT, "Intel", "Broadwell Y Premium", enable_flash_pch9_lp},
2033 {0x8086, 0x9cc9, B_FS, NT, "Intel", "Broadwell Y Base", enable_flash_pch9_lp},
2034 {0x8086, 0x9ccb, B_FS, NT, "Intel", "Broadwell H", enable_flash_pch9},
2035 {0x8086, 0x9d41, B_S, NT, "Intel", "Skylake / Kaby Lake Sample", enable_flash_pch100},
2036 {0x8086, 0x9d43, B_S, NT, "Intel", "Skylake U Base", enable_flash_pch100},
2037 {0x8086, 0x9d46, B_S, NT, "Intel", "Skylake Y Premium", enable_flash_pch100},
Angel Pons7113d172020-02-29 23:13:43 +01002038 {0x8086, 0x9d48, B_S, DEP, "Intel", "Skylake U Premium", enable_flash_pch100},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002039 {0x8086, 0x9d4b, B_S, NT, "Intel", "Kaby Lake Y w/ iHDCP2.2 Prem.", enable_flash_pch100},
Wim Vervoorn3799a1c2020-01-20 15:01:54 +01002040 {0x8086, 0x9d4e, B_S, DEP, "Intel", "Kaby Lake U w/ iHDCP2.2 Prem.", enable_flash_pch100},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002041 {0x8086, 0x9d50, B_S, NT, "Intel", "Kaby Lake U w/ iHDCP2.2 Base", enable_flash_pch100},
2042 {0x8086, 0x9d51, B_S, NT, "Intel", "Kabe Lake w/ iHDCP2.2 Sample", enable_flash_pch100},
2043 {0x8086, 0x9d53, B_S, NT, "Intel", "Kaby Lake U Base", enable_flash_pch100},
2044 {0x8086, 0x9d56, B_S, NT, "Intel", "Kaby Lake Y Premium", enable_flash_pch100},
2045 {0x8086, 0x9d58, B_S, NT, "Intel", "Kaby Lake U Premium", enable_flash_pch100},
Matt DeVillierbde44a12019-07-04 17:52:40 -05002046 {0x8086, 0x9d84, B_S, DEP, "Intel", "Cannon Lake U Premium", enable_flash_pch300},
Matt DeVillier4f29bb72020-08-12 12:48:06 -05002047 {0x8086, 0x0284, B_S, DEP, "Intel", "Comet Lake U Premium", enable_flash_pch300},
Sam McNally76303902021-03-11 11:41:46 +11002048 {0x8086, 0x0285, B_S, DEP, "Intel", "Comet Lake U Base", enable_flash_pch300},
Michał Żygowski5c9f5422021-06-16 15:13:54 +02002049 {0x8086, 0xa082, B_S, DEP, "Intel", "Tiger Lake U Premium", enable_flash_pch500},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002050 {0x8086, 0xa141, B_S, NT, "Intel", "Sunrise Point Desktop Sample", enable_flash_pch100},
2051 {0x8086, 0xa142, B_S, NT, "Intel", "Sunrise Point Unknown Sample", enable_flash_pch100},
Angel Ponsabb34fe2020-12-06 23:09:13 +01002052 {0x8086, 0xa143, B_S, DEP, "Intel", "H110", enable_flash_pch100},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002053 {0x8086, 0xa144, B_S, NT, "Intel", "H170", enable_flash_pch100},
2054 {0x8086, 0xa145, B_S, NT, "Intel", "Z170", enable_flash_pch100},
2055 {0x8086, 0xa146, B_S, NT, "Intel", "Q170", enable_flash_pch100},
2056 {0x8086, 0xa147, B_S, NT, "Intel", "Q150", enable_flash_pch100},
2057 {0x8086, 0xa148, B_S, NT, "Intel", "B150", enable_flash_pch100},
2058 {0x8086, 0xa149, B_S, NT, "Intel", "C236", enable_flash_pch100},
2059 {0x8086, 0xa14a, B_S, NT, "Intel", "C232", enable_flash_pch100},
2060 {0x8086, 0xa14b, B_S, NT, "Intel", "Sunrise Point Server Sample", enable_flash_pch100},
2061 {0x8086, 0xa14d, B_S, NT, "Intel", "QM170", enable_flash_pch100},
2062 {0x8086, 0xa14e, B_S, NT, "Intel", "HM170", enable_flash_pch100},
Nico Huberea0c0932019-07-04 17:34:16 +02002063 {0x8086, 0xa150, B_S, DEP, "Intel", "CM236", enable_flash_pch100},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002064 {0x8086, 0xa151, B_S, NT, "Intel", "QMS180", enable_flash_pch100},
2065 {0x8086, 0xa152, B_S, NT, "Intel", "HM175", enable_flash_pch100},
2066 {0x8086, 0xa153, B_S, NT, "Intel", "QM175", enable_flash_pch100},
2067 {0x8086, 0xa154, B_S, NT, "Intel", "CM238", enable_flash_pch100},
2068 {0x8086, 0xa155, B_S, NT, "Intel", "QMU185", enable_flash_pch100},
Luka Kovacic9f064192020-07-30 13:31:15 +02002069 {0x8086, 0xa1a4, B_S, DEP, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
Angel Pons77a2a6e2020-03-23 16:05:07 +01002070 {0x8086, 0xa1c0, B_S, NT, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002071 {0x8086, 0xa1c1, B_S, NT, "Intel", "C621 Series Chipset (QS/PRQ)", enable_flash_c620},
2072 {0x8086, 0xa1c2, B_S, NT, "Intel", "C622 Series Chipset (QS/PRQ)", enable_flash_c620},
2073 {0x8086, 0xa1c3, B_S, NT, "Intel", "C624 Series Chipset (QS/PRQ)", enable_flash_c620},
2074 {0x8086, 0xa1c4, B_S, NT, "Intel", "C625 Series Chipset (QS/PRQ)", enable_flash_c620},
2075 {0x8086, 0xa1c5, B_S, NT, "Intel", "C626 Series Chipset (QS/PRQ)", enable_flash_c620},
2076 {0x8086, 0xa1c6, B_S, NT, "Intel", "C627 Series Chipset (QS/PRQ)", enable_flash_c620},
2077 {0x8086, 0xa1c7, B_S, NT, "Intel", "C628 Series Chipset (QS/PRQ)", enable_flash_c620},
Angel Pons77a2a6e2020-03-23 16:05:07 +01002078 {0x8086, 0xa1c8, B_S, NT, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
2079 {0x8086, 0xa1c9, B_S, NT, "Intel", "C620 Series Chipset (QS/PRQ)", enable_flash_c620},
2080 {0x8086, 0xa1ca, B_S, NT, "Intel", "C629 Series Chipset (QS/PRQ)", enable_flash_c620},
Jonathan Zhangc218a052020-08-19 12:16:40 -07002081 {0x8086, 0xa1cb, B_S, NT, "Intel", "C621A Series Chipset (QS/PRQ)", enable_flash_c620},
2082 {0x8086, 0xa1cc, B_S, NT, "Intel", "C627A Series Chipset (QS/PRQ)", enable_flash_c620},
2083 {0x8086, 0xa1cd, B_S, NT, "Intel", "C629A Series Chipset (QS/PRQ)", enable_flash_c620},
Angel Pons77a2a6e2020-03-23 16:05:07 +01002084 {0x8086, 0xa240, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
2085 {0x8086, 0xa241, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002086 {0x8086, 0xa242, B_S, NT, "Intel", "C624 Series Chipset Supersku", enable_flash_c620},
2087 {0x8086, 0xa243, B_S, NT, "Intel", "C627 Series Chipset Supersku", enable_flash_c620},
2088 {0x8086, 0xa244, B_S, NT, "Intel", "C621 Series Chipset Supersku", enable_flash_c620},
2089 {0x8086, 0xa245, B_S, NT, "Intel", "C627 Series Chipset Supersku", enable_flash_c620},
2090 {0x8086, 0xa246, B_S, NT, "Intel", "C628 Series Chipset Supersku", enable_flash_c620},
2091 {0x8086, 0xa247, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
Angel Pons77a2a6e2020-03-23 16:05:07 +01002092 {0x8086, 0xa248, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
2093 {0x8086, 0xa249, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
Jonathan Zhang3bf7cfb2021-08-30 23:25:06 -07002094 {0x8086, 0x1bca, B_S, NT, "Intel", "Emmitsburg Chipset SKU", enable_flash_c620},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002095 {0x8086, 0xa2c4, B_S, NT, "Intel", "H270", enable_flash_pch100},
2096 {0x8086, 0xa2c5, B_S, NT, "Intel", "Z270", enable_flash_pch100},
2097 {0x8086, 0xa2c6, B_S, NT, "Intel", "Q270", enable_flash_pch100},
2098 {0x8086, 0xa2c7, B_S, NT, "Intel", "Q250", enable_flash_pch100},
2099 {0x8086, 0xa2c8, B_S, NT, "Intel", "B250", enable_flash_pch100},
2100 {0x8086, 0xa2c9, B_S, NT, "Intel", "Z370", enable_flash_pch100},
Angel Ponsb499b672021-04-22 17:08:00 +02002101 {0x8086, 0xa2ca, B_S, DEP, "Intel", "H310C", enable_flash_pch100},
2102 {0x8086, 0xa2cc, B_S, DEP, "Intel", "B365", enable_flash_pch100},
Nico Huber2e50cdc2018-09-23 20:20:26 +02002103 {0x8086, 0xa2d2, B_S, NT, "Intel", "X299", enable_flash_pch100},
Nico Huberd2d39932019-01-18 16:49:37 +01002104 {0x8086, 0x5ae8, B_S, DEP, "Intel", "Apollo Lake", enable_flash_apl},
Jan Samek1f967c82020-01-08 12:35:14 +01002105 {0x8086, 0x5af0, B_S, DEP, "Intel", "Apollo Lake", enable_flash_apl},
Angel Pons1c7297f2021-05-17 10:50:40 +02002106 {0x8086, 0x3197, B_S, NT, "Intel", "Gemini Lake", enable_flash_glk},
Angel Pons4db0fdf2020-07-10 17:04:10 +02002107 {0x8086, 0x31e8, B_S, DEP, "Intel", "Gemini Lake", enable_flash_glk},
Werner Zehe57d4e42022-01-03 09:44:29 +01002108 {0x8086, 0x4b24, B_S, DEP, "Intel", "Elkhart Lake", enable_flash_mcc},
Nico Huber2a5dfaf2019-07-04 16:01:51 +02002109 {0x8086, 0xa303, B_S, NT, "Intel", "H310", enable_flash_pch300},
2110 {0x8086, 0xa304, B_S, NT, "Intel", "H370", enable_flash_pch300},
melvyn269c324a2021-10-30 16:02:22 -07002111 {0x8086, 0xa305, B_S, DEP, "Intel", "Z390", enable_flash_pch300},
Nico Huber2a5dfaf2019-07-04 16:01:51 +02002112 {0x8086, 0xa306, B_S, NT, "Intel", "Q370", enable_flash_pch300},
2113 {0x8086, 0xa308, B_S, NT, "Intel", "B360", enable_flash_pch300},
Angel Pons0c8221b2022-10-20 21:23:33 +02002114 {0x8086, 0xa309, B_S, DEP, "Intel", "C246", enable_flash_pch300},
Nico Huber2a5dfaf2019-07-04 16:01:51 +02002115 {0x8086, 0xa30a, B_S, NT, "Intel", "C242", enable_flash_pch300},
2116 {0x8086, 0xa30c, B_S, NT, "Intel", "QM370", enable_flash_pch300},
2117 {0x8086, 0xa30d, B_S, NT, "Intel", "HM370", enable_flash_pch300},
Nico Huberea0c0932019-07-04 17:34:16 +02002118 {0x8086, 0xa30e, B_S, DEP, "Intel", "CM246", enable_flash_pch300},
Johanna Schanderb5433b72019-12-29 15:16:14 +01002119 {0x8086, 0x3482, B_S, DEP, "Intel", "Ice Lake U Premium", enable_flash_pch300},
Gaggery Tsaibc0285c2019-12-12 11:52:03 -08002120 {0x8086, 0x0684, B_S, NT, "Intel", "H470", enable_flash_pch300},
2121 {0x8086, 0x0685, B_S, NT, "Intel", "Z490", enable_flash_pch300},
2122 {0x8086, 0x0687, B_S, NT, "Intel", "Q470", enable_flash_pch300},
2123 {0x8086, 0x068c, B_S, NT, "Intel", "QM480", enable_flash_pch300},
2124 {0x8086, 0x068d, B_S, NT, "Intel", "HM470", enable_flash_pch300},
2125 {0x8086, 0x068e, B_S, NT, "Intel", "WM490", enable_flash_pch300},
2126 {0x8086, 0x0697, B_S, NT, "Intel", "W480", enable_flash_pch300},
Nico Huber756b6b32022-12-21 17:15:13 +00002127 {0x8086, 0x4da4, B_S, NT, "Intel", "Jasper Lake", enable_flash_pch300},
Tim Crawfordfafc3d82021-11-17 06:23:25 -07002128 {0x8086, 0x4384, B_S, NT, "Intel", "Q570", enable_flash_pch500},
2129 {0x8086, 0x4385, B_S, NT, "Intel", "Z590", enable_flash_pch500},
2130 {0x8086, 0x4386, B_S, NT, "Intel", "H570", enable_flash_pch500},
2131 {0x8086, 0x4387, B_S, NT, "Intel", "B560", enable_flash_pch500},
2132 {0x8086, 0x4388, B_S, NT, "Intel", "H510", enable_flash_pch500},
2133 {0x8086, 0x438f, B_S, NT, "Intel", "W580", enable_flash_pch500},
2134 {0x8086, 0x4389, B_S, NT, "Intel", "WM590", enable_flash_pch500},
2135 {0x8086, 0x438a, B_S, NT, "Intel", "QM580", enable_flash_pch500},
2136 {0x8086, 0x438b, B_S, DEP, "Intel", "HM570", enable_flash_pch500},
Nico Huber29c23dd2022-12-21 15:25:09 +00002137 {0x8086, 0x51a4, B_S, DEP, "Intel", "Alder Lake-P", enable_flash_pch500},
2138 {0x8086, 0x54a4, B_S, DEP, "Intel", "Alder Lake-N", enable_flash_pch500},
2139 {0x8086, 0x7aa4, B_S, NT, "Intel", "Alder Lake-S", enable_flash_pch500},
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00002140#endif
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +00002141 {0},
Ollie Lhocbbf1252004-03-17 22:22:08 +00002142};
Ollie Lho761bf1b2004-03-20 16:46:10 +00002143
Uwe Hermanna7e05482007-05-09 10:17:44 +00002144int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +00002145{
Peter Huewe73f8ec82011-01-24 19:15:51 +00002146 struct pci_dev *dev = NULL;
Uwe Hermann372eeb52007-12-04 21:49:06 +00002147 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +00002148 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +00002149
Uwe Hermann372eeb52007-12-04 21:49:06 +00002150 /* Now let's try to find the chipset we have... */
Uwe Hermann05fab752009-05-16 23:42:17 +00002151 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
2152 dev = pci_dev_find(chipset_enables[i].vendor_id,
2153 chipset_enables[i].device_id);
Michael Karcher89bed6d2010-06-13 10:16:12 +00002154 if (!dev)
2155 continue;
2156 if (ret != -2) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00002157 msg_pwarn("Warning: unexpected second chipset match: "
Paul Menzelab6328f2010-10-08 11:03:02 +00002158 "\"%s %s\"\n"
2159 "ignoring, please report lspci and board URL "
Nico Huberac90af62022-12-18 00:22:47 +00002160 "to flashrom-stable@flashrom.org\n"
Stefan Reinauerbf282b12011-03-29 21:41:41 +00002161 "with \'CHIPSET: your board name\' in the "
Paul Menzelab6328f2010-10-08 11:03:02 +00002162 "subject line.\n",
Michael Karcher89bed6d2010-06-13 10:16:12 +00002163 chipset_enables[i].vendor_name,
2164 chipset_enables[i].device_name);
2165 continue;
2166 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002167 msg_pinfo("Found chipset \"%s %s\"",
2168 chipset_enables[i].vendor_name,
2169 chipset_enables[i].device_name);
Stefan Tauner716e0982011-07-25 20:38:52 +00002170 msg_pdbg(" with PCI ID %04x:%04x",
Carl-Daniel Hailfingerf469c272010-05-22 07:31:50 +00002171 chipset_enables[i].vendor_id,
2172 chipset_enables[i].device_id);
Stefan Tauner5c316f92015-02-08 21:57:52 +00002173 msg_pinfo(".\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00002174
Stefan Tauner23e10b82016-01-23 16:16:49 +00002175 if (chipset_enables[i].status == BAD) {
2176 msg_perr("ERROR: This chipset is not supported yet.\n");
2177 return ERROR_FATAL;
2178 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002179 if (chipset_enables[i].status == NT) {
Stefan Tauner5c316f92015-02-08 21:57:52 +00002180 msg_pinfo("This chipset is marked as untested. If "
Stefan Taunerec8c2482011-07-21 19:59:34 +00002181 "you are using an up-to-date version\nof "
Stefan Tauner2abab942012-04-27 20:41:23 +00002182 "flashrom *and* were (not) able to "
2183 "successfully update your firmware with it,\n"
2184 "then please email a report to "
Nico Huberac90af62022-12-18 00:22:47 +00002185 "flashrom-stable@flashrom.org including a\n"
2186 "verbose (-V) log.\nThank you!\n");
Stefan Taunerec8c2482011-07-21 19:59:34 +00002187 }
Nico Huber2e50cdc2018-09-23 20:20:26 +02002188 if (!(chipset_enables[i].buses & (internal_buses_supported | BUS_SPI))) {
2189 msg_pdbg("Skipping chipset enable: No supported buses enabled.\n");
2190 continue;
2191 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002192 msg_pinfo("Enabling flash write... ");
Stefan Tauner23e10b82016-01-23 16:16:49 +00002193 ret = chipset_enables[i].doit(dev, chipset_enables[i].device_name);
Michael Karcher89bed6d2010-06-13 10:16:12 +00002194 if (ret == NOT_DONE_YET) {
2195 ret = -2;
2196 msg_pinfo("OK - searching further chips.\n");
2197 } else if (ret < 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00002198 msg_pinfo("FAILED!\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00002199 else if (ret == 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00002200 msg_pinfo("OK.\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00002201 else if (ret == ERROR_NONFATAL)
Michael Karchera4448d92010-07-22 18:04:15 +00002202 msg_pinfo("PROBLEMS, continuing anyway\n");
Tadas Slotkusad470342011-09-03 17:15:00 +00002203 if (ret == ERROR_FATAL) {
2204 msg_perr("FATAL ERROR!\n");
2205 return ret;
2206 }
Uwe Hermanna7e05482007-05-09 10:17:44 +00002207 }
Michael Karcher89bed6d2010-06-13 10:16:12 +00002208
Uwe Hermanna7e05482007-05-09 10:17:44 +00002209 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +00002210}