blob: c7b932706aa22c10cd360278b9195aebbd0dd71a [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
Felix Singer980d6b82022-08-19 02:48:15 +020027#include <stdbool.h>
Ollie Lhocbbf1252004-03-17 22:22:08 +000028#include <stdlib.h>
Uwe Hermanne8ba5382009-05-22 11:37:27 +000029#include <string.h>
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000030#include <unistd.h>
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +000031#include <inttypes.h>
32#include <errno.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000033#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000034#include "programmer.h"
Thomas Heijligen74b4aa02021-12-14 17:52:30 +010035#include "hwaccess_physmap.h"
Thomas Heijligend96c97c2021-11-02 21:03:00 +010036#include "platform/pci.h"
Stefan Reinauer86de2832006-03-31 11:26:55 +000037
Michael Karcher89bed6d2010-06-13 10:16:12 +000038#define NOT_DONE_YET 1
39
Carl-Daniel Hailfinger1d3a2fe2010-07-27 22:03:46 +000040#if defined(__i386__) || defined(__x86_64__)
41
Peter Marheinedf3672d2022-01-19 17:11:09 +110042#include "hwaccess_x86_io.h"
43#include "hwaccess_x86_msr.h"
44
Nico Huber929d2e12023-01-12 00:47:05 +010045static int enable_flash_ali_m1533(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000046{
47 uint8_t tmp;
48
Uwe Hermann372eeb52007-12-04 21:49:06 +000049 /*
50 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
51 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
52 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000053 tmp = pci_read_byte(dev, 0x47);
54 tmp |= 0x46;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000055 rpci_write_byte(dev, 0x47, tmp);
Luc Verhaegen6b141752007-05-20 16:16:13 +000056
57 return 0;
58}
59
Nico Huber929d2e12023-01-12 00:47:05 +010060static int enable_flash_rdc_r8610(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Rudolf Marek23907d82012-02-07 21:29:48 +000061{
62 uint8_t tmp;
63
64 /* enable ROMCS for writes */
65 tmp = pci_read_byte(dev, 0x43);
66 tmp |= 0x80;
67 pci_write_byte(dev, 0x43, tmp);
68
69 /* read the bootstrapping register */
70 tmp = pci_read_byte(dev, 0x40) & 0x3;
71 switch (tmp) {
72 case 3:
Nico Huber2e50cdc2018-09-23 20:20:26 +020073 internal_buses_supported &= BUS_FWH;
Rudolf Marek23907d82012-02-07 21:29:48 +000074 break;
75 case 2:
Nico Huber2e50cdc2018-09-23 20:20:26 +020076 internal_buses_supported &= BUS_LPC;
Rudolf Marek23907d82012-02-07 21:29:48 +000077 break;
78 default:
Nico Huber2e50cdc2018-09-23 20:20:26 +020079 internal_buses_supported &= BUS_PARALLEL;
Rudolf Marek23907d82012-02-07 21:29:48 +000080 break;
81 }
82
83 return 0;
84}
85
Nico Huber929d2e12023-01-12 00:47:05 +010086static int enable_flash_sis85c496(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000087{
88 uint8_t tmp;
89
90 tmp = pci_read_byte(dev, 0xd0);
91 tmp |= 0xf8;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000092 rpci_write_byte(dev, 0xd0, tmp);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000093
94 return 0;
95}
96
97static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name)
98{
Stefan Taunere34e3e82013-01-01 00:06:51 +000099 #define SIS_MAPREG 0x40
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000100 uint8_t new, newer;
101
102 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
103 /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Stefan Taunere34e3e82013-01-01 00:06:51 +0000104 new = pci_read_byte(dev, SIS_MAPREG);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000105 new &= (~0x04); /* No idea why we clear bit 2. */
106 new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */
Stefan Taunere34e3e82013-01-01 00:06:51 +0000107 rpci_write_byte(dev, SIS_MAPREG, new);
108 newer = pci_read_byte(dev, SIS_MAPREG);
109 if (newer != new) { /* FIXME: share this with other code? */
110 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
111 SIS_MAPREG, new, name);
112 msg_pinfo("Stuck at 0x%02x.\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000113 return -1;
114 }
115 return 0;
116}
117
118static struct pci_dev *find_southbridge(uint16_t vendor, const char *name)
119{
120 struct pci_dev *sbdev;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000121
Edward O'Callaghan48a94662022-02-26 11:36:17 +1100122 sbdev = pcidev_find_vendorclass(vendor, 0x0601);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000123 if (!sbdev)
Edward O'Callaghan48a94662022-02-26 11:36:17 +1100124 sbdev = pcidev_find_vendorclass(vendor, 0x0680);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000125 if (!sbdev)
Edward O'Callaghan48a94662022-02-26 11:36:17 +1100126 sbdev = pcidev_find_vendorclass(vendor, 0x0000);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000127 if (!sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +0000128 msg_perr("No southbridge found for %s!\n", name);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000129 if (sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +0000130 msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000131 sbdev->vendor_id, sbdev->device_id,
132 sbdev->bus, sbdev->dev, sbdev->func);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000133 return sbdev;
134}
135
Nico Huber929d2e12023-01-12 00:47:05 +0100136static int enable_flash_sis501(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000137{
138 uint8_t tmp;
139 int ret = 0;
140 struct pci_dev *sbdev;
141
142 sbdev = find_southbridge(dev->vendor_id, name);
143 if (!sbdev)
144 return -1;
145
146 ret = enable_flash_sis_mapping(sbdev, name);
147
148 tmp = sio_read(0x22, 0x80);
149 tmp &= (~0x20);
150 tmp |= 0x4;
151 sio_write(0x22, 0x80, tmp);
152
153 tmp = sio_read(0x22, 0x70);
154 tmp &= (~0x20);
155 tmp |= 0x4;
156 sio_write(0x22, 0x70, tmp);
Elyes HAOUAS2f1d0072018-10-04 10:42:42 +0200157
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000158 return ret;
159}
160
Nico Huber929d2e12023-01-12 00:47:05 +0100161static int enable_flash_sis5511(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000162{
163 uint8_t tmp;
164 int ret = 0;
165 struct pci_dev *sbdev;
166
167 sbdev = find_southbridge(dev->vendor_id, name);
168 if (!sbdev)
169 return -1;
170
171 ret = enable_flash_sis_mapping(sbdev, name);
172
173 tmp = sio_read(0x22, 0x50);
174 tmp &= (~0x20);
175 tmp |= 0x4;
176 sio_write(0x22, 0x50, tmp);
177
178 return ret;
179}
180
Stefan Taunere34e3e82013-01-01 00:06:51 +0000181static 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 +0000182{
Stefan Taunere34e3e82013-01-01 00:06:51 +0000183 #define SIS_REG 0x45
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000184 uint8_t new, newer;
185 int ret = 0;
186 struct pci_dev *sbdev;
187
188 sbdev = find_southbridge(dev->vendor_id, name);
189 if (!sbdev)
190 return -1;
191
192 ret = enable_flash_sis_mapping(sbdev, name);
193
Stefan Taunere34e3e82013-01-01 00:06:51 +0000194 new = pci_read_byte(sbdev, SIS_REG);
195 new &= (~dis_mask);
196 new |= en_mask;
197 rpci_write_byte(sbdev, SIS_REG, new);
198 newer = pci_read_byte(sbdev, SIS_REG);
199 if (newer != new) { /* FIXME: share this with other code? */
200 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SIS_REG, new, name);
201 msg_pinfo("Stuck at 0x%02x\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000202 ret = -1;
203 }
204
205 return ret;
206}
207
Nico Huber929d2e12023-01-12 00:47:05 +0100208static int enable_flash_sis530(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Taunere34e3e82013-01-01 00:06:51 +0000209{
210 return enable_flash_sis5x0(dev, name, 0x20, 0x04);
211}
212
Nico Huber929d2e12023-01-12 00:47:05 +0100213static int enable_flash_sis540(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000214{
Stefan Taunere34e3e82013-01-01 00:06:51 +0000215 return enable_flash_sis5x0(dev, name, 0x80, 0x40);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000216}
217
Uwe Hermann987942d2006-11-07 11:16:21 +0000218/* Datasheet:
219 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
220 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
221 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
222 * - Order Number: 290562-001
223 */
Nico Huber929d2e12023-01-12 00:47:05 +0100224static int enable_flash_piix4(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000225{
226 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000227 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000228
Nico Huber2e50cdc2018-09-23 20:20:26 +0200229 internal_buses_supported &= BUS_PARALLEL;
Maciej Pijankaa661e152009-12-08 17:26:24 +0000230
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000231 old = pci_read_word(dev, xbcs);
232
233 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000234 * FFF00000-FFF7FFFF are forwarded to ISA).
Uwe Hermannc556d322008-10-28 11:50:05 +0000235 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
Uwe Hermanna7e05482007-05-09 10:17:44 +0000236 * Set bit 7: Extended BIOS Enable (PCI master accesses to
237 * FFF80000-FFFDFFFF are forwarded to ISA).
238 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
239 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
240 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
241 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
242 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
243 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
244 */
Uwe Hermannc556d322008-10-28 11:50:05 +0000245 if (dev->device_id == 0x122e || dev->device_id == 0x7000
246 || dev->device_id == 0x1234)
247 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
Uwe Hermann87203452008-10-26 18:40:42 +0000248 else
249 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000250
251 if (new == old)
252 return 0;
253
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000254 rpci_write_word(dev, xbcs, new);
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000255
Stefan Taunere34e3e82013-01-01 00:06:51 +0000256 if (pci_read_word(dev, xbcs) != new) { /* FIXME: share this with other code? */
257 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 +0000258 return -1;
259 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000260
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000261 return 0;
262}
263
Duncan Laurie4095ed72014-08-20 15:39:32 +0000264/* Handle BIOS_CNTL (aka. BCR). Disable locks and enable writes. The register can either be in PCI config space
265 * at the offset given by 'bios_cntl' or at the memory-mapped address 'addr'.
266 *
267 * 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 +0000268 * 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 +0000269static int enable_flash_ich_bios_cntl_common(enum ich_chipset ich_generation, void *addr,
270 struct pci_dev *dev, uint8_t bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000271{
Stefan Taunerd5c4ab42011-09-09 12:46:32 +0000272 uint8_t old, new, wanted;
Stefan Reinauereb366472006-09-06 15:48:48 +0000273
Stefan Tauner92d6a862013-10-25 00:33:37 +0000274 switch (ich_generation) {
275 case CHIPSET_ICH_UNKNOWN:
276 return ERROR_FATAL;
277 /* Non-SPI-capable */
278 case CHIPSET_ICH:
279 case CHIPSET_ICH2345:
280 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000281 /* Some Atom chipsets are special: The second byte of BIOS_CNTL (D9h) contains a prefetch bit similar to
282 * what other SPI-capable chipsets have at DCh. Others like Bay Trail use a memmapped register.
Stefan Tauner92d6a862013-10-25 00:33:37 +0000283 * The Tunnel Creek datasheet contains a lot of details about the SPI controller, among other things it
284 * mentions that the prefetching and caching does only happen for direct memory reads.
Nico Huberc3b02dc2023-08-12 01:13:45 +0200285 * Therefore - at least for Tunnel Creek - it should not matter to flashprog because we use the
Stefan Tauner92d6a862013-10-25 00:33:37 +0000286 * programmed access only and not memory mapping. */
287 case CHIPSET_TUNNEL_CREEK:
288 case CHIPSET_POULSBO:
289 case CHIPSET_CENTERTON:
290 old = pci_read_byte(dev, bios_cntl + 1);
291 msg_pdbg("BIOS Prefetch Enable: %sabled, ", (old & 1) ? "en" : "dis");
292 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000293 case CHIPSET_BAYTRAIL:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000294 case CHIPSET_ICH7:
295 default: /* Future version might behave the same */
Duncan Laurie4095ed72014-08-20 15:39:32 +0000296 if (ich_generation == CHIPSET_BAYTRAIL)
297 old = (mmio_readl(addr) >> 2) & 0x3;
298 else
299 old = (pci_read_byte(dev, bios_cntl) >> 2) & 0x3;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000300 msg_pdbg("SPI Read Configuration: ");
301 if (old == 3)
302 msg_pdbg("invalid prefetching/caching settings, ");
303 else
304 msg_pdbg("prefetching %sabled, caching %sabled, ",
305 (old & 0x2) ? "en" : "dis",
306 (old & 0x1) ? "dis" : "en");
307 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000308
Duncan Laurie4095ed72014-08-20 15:39:32 +0000309 if (ich_generation == CHIPSET_BAYTRAIL)
310 wanted = old = mmio_readl(addr);
311 else
312 wanted = old = pci_read_byte(dev, bios_cntl);
313
Stefan Taunerf9a8da52011-06-11 18:16:50 +0000314 /*
315 * Quote from the 6 Series datasheet (Document Number: 324645-004):
316 * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP)
317 * 1 = BIOS region SMM protection is enabled.
318 * The BIOS Region is not writable unless all processors are in SMM."
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000319 * In earlier chipsets this bit is reserved.
Stefan Reinauer62218c32012-08-26 02:35:13 +0000320 *
321 * Try to unset it in any case.
322 * It won't hurt and makes sense in some cases according to Stefan Reinauer.
Stefan Tauner92d6a862013-10-25 00:33:37 +0000323 *
324 * At least in Centerton aforementioned bit is located at bit 7. It is unspecified in all other Atom
325 * and Desktop chipsets before Ibex Peak/5 Series, but we reset bit 5 anyway.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000326 */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000327 int smm_bwp_bit;
328 if (ich_generation == CHIPSET_CENTERTON)
329 smm_bwp_bit = 7;
330 else
331 smm_bwp_bit = 5;
332 wanted &= ~(1 << smm_bwp_bit);
Stefan Reinauer62218c32012-08-26 02:35:13 +0000333
Stefan Tauner92d6a862013-10-25 00:33:37 +0000334 /* Tunnel Creek has a cache disable at bit 2 of the lowest BIOS_CNTL byte. */
335 if (ich_generation == CHIPSET_TUNNEL_CREEK)
336 wanted |= (1 << 2);
337
338 wanted |= (1 << 0); /* Set BIOS Write Enable */
339 wanted &= ~(1 << 1); /* Disable lock (futile) */
Stefan Reinauer62218c32012-08-26 02:35:13 +0000340
341 /* Only write the register if it's necessary */
342 if (wanted != old) {
Duncan Laurie4095ed72014-08-20 15:39:32 +0000343 if (ich_generation == CHIPSET_BAYTRAIL) {
344 rmmio_writel(wanted, addr);
345 new = mmio_readl(addr);
346 } else {
347 rpci_write_byte(dev, bios_cntl, wanted);
348 new = pci_read_byte(dev, bios_cntl);
349 }
Stefan Reinauer62218c32012-08-26 02:35:13 +0000350 } else
351 new = old;
352
353 msg_pdbg("\nBIOS_CNTL = 0x%02x: ", new);
354 msg_pdbg("BIOS Lock Enable: %sabled, ", (new & (1 << 1)) ? "en" : "dis");
355 msg_pdbg("BIOS Write Enable: %sabled\n", (new & (1 << 0)) ? "en" : "dis");
Stefan Tauner92d6a862013-10-25 00:33:37 +0000356 if (new & (1 << smm_bwp_bit))
Stefan Taunerc6fa32d2013-01-04 22:54:07 +0000357 msg_pwarn("Warning: BIOS region SMM protection is enabled!\n");
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000358
Stefan Reinauer62218c32012-08-26 02:35:13 +0000359 if (new != wanted)
Angel Ponsabefc462020-04-29 15:23:59 +0200360 msg_pwarn("Warning: Setting BIOS Control at 0x%x from 0x%02x to 0x%02x failed.\n"
Stefan Tauner92d6a862013-10-25 00:33:37 +0000361 "New value is 0x%02x.\n", bios_cntl, old, wanted, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000362
Stefan Tauner92d6a862013-10-25 00:33:37 +0000363 /* Return an error if we could not set the write enable only. */
Nico Huberb50f8812026-03-21 14:23:20 +0100364 if (!(new & (1 << 0))) {
365 programmer_may_write = false;
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000366 return -1;
Nico Huberb50f8812026-03-21 14:23:20 +0100367 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000368
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000369 return 0;
370}
371
Duncan Laurie4095ed72014-08-20 15:39:32 +0000372static int enable_flash_ich_bios_cntl_config_space(struct pci_dev *dev, enum ich_chipset ich_generation,
373 uint8_t bios_cntl)
374{
375 return enable_flash_ich_bios_cntl_common(ich_generation, NULL, dev, bios_cntl);
376}
377
378static int enable_flash_ich_bios_cntl_memmapped(enum ich_chipset ich_generation, void *addr)
379{
380 return enable_flash_ich_bios_cntl_common(ich_generation, addr, NULL, 0);
381}
382
Nico Huber89569d62023-01-12 23:31:40 +0100383static int enable_flash_ich_fwh_decode(struct flashprog_programmer *prog,
384 struct pci_dev *dev, enum ich_chipset ich_generation)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000385{
Nico Huber89569d62023-01-12 23:31:40 +0100386 struct internal_data *const internal = prog->data;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000387 uint8_t fwh_sel1 = 0, fwh_sel2 = 0, fwh_dec_en_lo = 0, fwh_dec_en_hi = 0; /* silence compilers */
388 bool implemented = 0;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000389 void *ilb = NULL; /* Only for Baytrail */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000390 switch (ich_generation) {
391 case CHIPSET_ICH:
392 /* FIXME: Unlike later chipsets, ICH and ICH-0 do only support mapping of the top-most 4MB
393 * and therefore do only feature FWH_DEC_EN (E3h, different default too) and FWH_SEL (E8h). */
394 break;
395 case CHIPSET_ICH2345:
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000396 fwh_sel1 = 0xe8;
397 fwh_sel2 = 0xee;
398 fwh_dec_en_lo = 0xf0;
399 fwh_dec_en_hi = 0xe3;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000400 implemented = 1;
401 break;
402 case CHIPSET_POULSBO:
403 case CHIPSET_TUNNEL_CREEK:
404 /* FIXME: Similar to ICH and ICH-0, Tunnel Creek and Poulsbo do only feature one register each,
405 * FWH_DEC_EN (D7h) and FWH_SEL (D0h). */
406 break;
407 case CHIPSET_CENTERTON:
408 /* FIXME: Similar to above FWH_DEC_EN (D4h) and FWH_SEL (D0h). */
409 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000410 case CHIPSET_BAYTRAIL: {
411 uint32_t ilb_base = pci_read_long(dev, 0x50) & 0xfffffe00; /* bits 31:9 */
412 if (ilb_base == 0) {
413 msg_perr("Error: Invalid ILB_BASE_ADDRESS\n");
414 return ERROR_FATAL;
415 }
416 ilb = rphysmap("BYT IBASE", ilb_base, 512);
417 fwh_sel1 = 0x18;
418 fwh_dec_en_lo = 0xd8;
419 fwh_dec_en_hi = 0xd9;
420 implemented = 1;
421 break;
422 }
Stefan Tauner92d6a862013-10-25 00:33:37 +0000423 case CHIPSET_ICH6:
424 case CHIPSET_ICH7:
425 default: /* Future version might behave the same */
426 fwh_sel1 = 0xd0;
427 fwh_sel2 = 0xd4;
428 fwh_dec_en_lo = 0xd8;
429 fwh_dec_en_hi = 0xd9;
430 implemented = 1;
431 break;
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000432 }
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000433
Stefan Tauner92d6a862013-10-25 00:33:37 +0000434 char *idsel = extract_programmer_param("fwh_idsel");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000435 if (idsel && strlen(idsel)) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000436 if (!implemented) {
437 msg_perr("Error: fwh_idsel= specified, but (yet) unsupported on this chipset.\n");
438 goto idsel_garbage_out;
439 }
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000440 errno = 0;
441 /* Base 16, nothing else makes sense. */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000442 uint64_t fwh_idsel = (uint64_t)strtoull(idsel, NULL, 16);
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000443 if (errno) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000444 msg_perr("Error: fwh_idsel= specified, but value could not be converted.\n");
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000445 goto idsel_garbage_out;
446 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000447 uint64_t fwh_mask = 0xffffffff;
448 if (fwh_sel2 > 0)
449 fwh_mask |= (0xffffULL << 32);
450 if (fwh_idsel & ~fwh_mask) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000451 msg_perr("Error: fwh_idsel= specified, but value had unused bits set.\n");
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000452 goto idsel_garbage_out;
453 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000454 uint64_t fwh_idsel_old;
455 if (ich_generation == CHIPSET_BAYTRAIL) {
456 fwh_idsel_old = mmio_readl(ilb + fwh_sel1);
457 rmmio_writel(fwh_idsel, ilb + fwh_sel1);
458 } else {
Stefan Tauner5c316f92015-02-08 21:57:52 +0000459 fwh_idsel_old = (uint64_t)pci_read_long(dev, fwh_sel1) << 16;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000460 rpci_write_long(dev, fwh_sel1, (fwh_idsel >> 16) & 0xffffffff);
461 if (fwh_sel2 > 0) {
462 fwh_idsel_old |= pci_read_word(dev, fwh_sel2);
463 rpci_write_word(dev, fwh_sel2, fwh_idsel & 0xffff);
464 }
465 }
Stefan Taunereff156e2014-07-13 17:06:11 +0000466 msg_pdbg("Setting IDSEL from 0x%012" PRIx64 " to 0x%012" PRIx64 " for top 16 MB.\n",
Stefan Tauner92d6a862013-10-25 00:33:37 +0000467 fwh_idsel_old, fwh_idsel);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000468 /* FIXME: Decode settings are not changed. */
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000469 } else if (idsel) {
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000470 msg_perr("Error: fwh_idsel= specified, but no value given.\n");
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +0000471idsel_garbage_out:
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000472 free(idsel);
Tadas Slotkus0e3f1cf2011-09-06 18:49:31 +0000473 return ERROR_FATAL;
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000474 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000475 free(idsel);
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000476
Stefan Tauner92d6a862013-10-25 00:33:37 +0000477 if (!implemented) {
Stefan Taunereff156e2014-07-13 17:06:11 +0000478 msg_pdbg2("FWH IDSEL handling is not implemented on this chipset.\n");
Stefan Tauner92d6a862013-10-25 00:33:37 +0000479 return 0;
480 }
481
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000482 /* Ignore all legacy ranges below 1 MB.
483 * We currently only support flashing the chip which responds to
Nico Huber47aa85c2026-02-21 14:57:20 +0100484 * IDSEL=0. To support IDSEL!=0, rom_base and decode size calculations
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000485 * have to be adjusted.
486 */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000487 int max_decode_fwh_idsel = 0, max_decode_fwh_decode = 0;
488 bool contiguous = 1;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000489 uint32_t fwh_conf;
490 if (ich_generation == CHIPSET_BAYTRAIL)
491 fwh_conf = mmio_readl(ilb + fwh_sel1);
492 else
493 fwh_conf = pci_read_long(dev, fwh_sel1);
494
Stefan Tauner92d6a862013-10-25 00:33:37 +0000495 int i;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000496 /* FWH_SEL1 */
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000497 for (i = 7; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000498 int tmp = (fwh_conf >> (i * 4)) & 0xf;
Stefan Taunereff156e2014-07-13 17:06:11 +0000499 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000500 (0x1ff8 + i) * 0x80000,
501 (0x1ff0 + i) * 0x80000,
502 tmp);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000503 if ((tmp == 0) && contiguous) {
504 max_decode_fwh_idsel = (8 - i) * 0x80000;
505 } else {
506 contiguous = 0;
507 }
508 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000509 if (fwh_sel2 > 0) {
510 /* FWH_SEL2 */
511 fwh_conf = pci_read_word(dev, fwh_sel2);
512 for (i = 3; i >= 0; i--) {
513 int tmp = (fwh_conf >> (i * 4)) & 0xf;
514 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
515 (0xff4 + i) * 0x100000,
516 (0xff0 + i) * 0x100000,
517 tmp);
518 if ((tmp == 0) && contiguous) {
519 max_decode_fwh_idsel = (8 - i) * 0x100000;
520 } else {
521 contiguous = 0;
522 }
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000523 }
524 }
525 contiguous = 1;
526 /* FWH_DEC_EN1 */
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000527 fwh_conf = pci_read_byte(dev, fwh_dec_en_hi);
528 fwh_conf <<= 8;
529 fwh_conf |= pci_read_byte(dev, fwh_dec_en_lo);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000530 for (i = 7; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000531 int tmp = (fwh_conf >> (i + 0x8)) & 0x1;
Stefan Taunereff156e2014-07-13 17:06:11 +0000532 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000533 (0x1ff8 + i) * 0x80000,
534 (0x1ff0 + i) * 0x80000,
535 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000536 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000537 max_decode_fwh_decode = (8 - i) * 0x80000;
538 } else {
539 contiguous = 0;
540 }
541 }
542 for (i = 3; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000543 int tmp = (fwh_conf >> i) & 0x1;
Stefan Taunereff156e2014-07-13 17:06:11 +0000544 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000545 (0xff4 + i) * 0x100000,
546 (0xff0 + i) * 0x100000,
547 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000548 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000549 max_decode_fwh_decode = (8 - i) * 0x100000;
550 } else {
551 contiguous = 0;
552 }
553 }
Nico Huber89569d62023-01-12 23:31:40 +0100554 internal->max_rom_decode = min(max_decode_fwh_idsel, max_decode_fwh_decode);
555 msg_pdbg("Maximum FWH chip size: 0x%zx bytes\n", internal->max_rom_decode);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000556
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000557 return 0;
558}
559
Nico Huber89569d62023-01-12 23:31:40 +0100560static int enable_flash_ich_fwh(struct flashprog_programmer *prog,
561 struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000562{
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000563 int err;
564
565 /* Configure FWH IDSEL decoder maps. */
Nico Huber89569d62023-01-12 23:31:40 +0100566 if ((err = enable_flash_ich_fwh_decode(prog, dev, ich_generation)) != 0)
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000567 return err;
568
Nico Huber2e50cdc2018-09-23 20:20:26 +0200569 internal_buses_supported &= BUS_FWH;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000570 return enable_flash_ich_bios_cntl_config_space(dev, ich_generation, bios_cntl);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000571}
572
Nico Huber929d2e12023-01-12 00:47:05 +0100573static int enable_flash_ich0(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000574{
Nico Huber89569d62023-01-12 23:31:40 +0100575 return enable_flash_ich_fwh(prog, dev, CHIPSET_ICH, 0x4e);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000576}
577
Nico Huber929d2e12023-01-12 00:47:05 +0100578static int enable_flash_ich2345(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000579{
Nico Huber89569d62023-01-12 23:31:40 +0100580 return enable_flash_ich_fwh(prog, dev, CHIPSET_ICH2345, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000581}
582
Nico Huber929d2e12023-01-12 00:47:05 +0100583static int enable_flash_ich6(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000584{
Nico Huber89569d62023-01-12 23:31:40 +0100585 return enable_flash_ich_fwh(prog, dev, CHIPSET_ICH6, 0xdc);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000586}
587
Nico Huber929d2e12023-01-12 00:47:05 +0100588static int enable_flash_poulsbo(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Adam Jurkowskie4984102009-12-21 15:30:46 +0000589{
Nico Huber89569d62023-01-12 23:31:40 +0100590 return enable_flash_ich_fwh(prog, dev, CHIPSET_POULSBO, 0xd8);
Adam Jurkowskie4984102009-12-21 15:30:46 +0000591}
592
Nico Huber2e50cdc2018-09-23 20:20:26 +0200593static enum chipbustype enable_flash_ich_report_gcs(
594 struct pci_dev *const dev, const enum ich_chipset ich_generation, const uint8_t *const rcrb)
Ingo Feldschmiddadc0a62011-09-07 19:18:25 +0000595{
Nico Huber0ea99f52017-03-17 17:22:53 +0100596 uint32_t gcs;
Nico Huber93c30692017-03-20 14:25:09 +0100597 const char *reg_name;
598 bool bild, top_swap;
Nico Huber0ea99f52017-03-17 17:22:53 +0100599
Nico Huber140e22f2024-07-14 23:18:53 +0200600 if (ich_generation >= SPI_ENGINE_PCH100) {
Nico Huber93c30692017-03-20 14:25:09 +0100601 reg_name = "BIOS_SPI_BC";
602 gcs = pci_read_long(dev, 0xdc);
603 bild = (gcs >> 7) & 1;
604 top_swap = (gcs >> 4) & 1;
Nico Huber140e22f2024-07-14 23:18:53 +0200605 } else if (ich_generation == CHIPSET_BAYTRAIL) {
606 reg_name = "GCS";
607 gcs = mmio_readl(rcrb + 0);
608 bild = gcs & 1;
609 top_swap = (gcs & 2) >> 1;
610 } else {
Nico Huber93c30692017-03-20 14:25:09 +0100611 reg_name = "GCS";
Nico Huber0ea99f52017-03-17 17:22:53 +0100612 gcs = mmio_readl(rcrb + 0x3410);
Nico Huber93c30692017-03-20 14:25:09 +0100613 bild = gcs & 1;
Nico Huber0ea99f52017-03-17 17:22:53 +0100614 top_swap = mmio_readb(rcrb + 0x3414) & 1;
Nico Huber0ea99f52017-03-17 17:22:53 +0100615 }
616
Nico Huber93c30692017-03-20 14:25:09 +0100617 msg_pdbg("%s = 0x%x: ", reg_name, gcs);
618 msg_pdbg("BIOS Interface Lock-Down: %sabled, ", bild ? "en" : "dis");
Duncan Laurie4095ed72014-08-20 15:39:32 +0000619
Nico Huber2e50cdc2018-09-23 20:20:26 +0200620 struct boot_straps {
621 const char *name;
622 enum chipbustype bus;
623 };
624 static const struct boot_straps boot_straps_EP80579[] =
625 { { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200626 { "reserved", BUS_NONE },
627 { "reserved", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200628 { "LPC", BUS_LPC | BUS_FWH } };
629 static const struct boot_straps boot_straps_ich7_nm10[] =
Nico Hubera508ca02019-07-24 19:34:43 +0200630 { { "reserved", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200631 { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200632 { "PCI", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200633 { "LPC", BUS_LPC | BUS_FWH } };
634 static const struct boot_straps boot_straps_tunnel_creek[] =
635 { { "SPI", BUS_SPI },
636 { "LPC", BUS_LPC | BUS_FWH } };
637 static const struct boot_straps boot_straps_ich8910[] =
638 { { "SPI", BUS_SPI },
639 { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200640 { "PCI", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200641 { "LPC", BUS_LPC | BUS_FWH } };
642 static const struct boot_straps boot_straps_pch567[] =
643 { { "LPC", BUS_LPC | BUS_FWH },
Nico Hubera508ca02019-07-24 19:34:43 +0200644 { "reserved", BUS_NONE },
645 { "PCI", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200646 { "SPI", BUS_SPI } };
647 static const struct boot_straps boot_straps_pch89_baytrail[] =
648 { { "LPC", BUS_LPC | BUS_FWH },
Nico Hubera508ca02019-07-24 19:34:43 +0200649 { "reserved", BUS_NONE },
650 { "reserved", BUS_NONE },
Nico Huber2e50cdc2018-09-23 20:20:26 +0200651 { "SPI", BUS_SPI } };
652 static const struct boot_straps boot_straps_pch8_lp[] =
653 { { "SPI", BUS_SPI },
654 { "LPC", BUS_LPC | BUS_FWH } };
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200655 static const struct boot_straps boot_straps_pch500[] =
656 { { "SPI", BUS_SPI },
657 { "eSPI", BUS_NONE } };
Nico Huber37509862019-01-18 14:23:02 +0100658 static const struct boot_straps boot_straps_apl[] =
659 { { "SPI", BUS_SPI },
Nico Hubera508ca02019-07-24 19:34:43 +0200660 { "reserved", BUS_NONE } };
Nico Huber2e50cdc2018-09-23 20:20:26 +0200661 static const struct boot_straps boot_straps_unknown[] =
Nico Hubera508ca02019-07-24 19:34:43 +0200662 { { "unknown", BUS_NONE },
663 { "unknown", BUS_NONE },
664 { "unknown", BUS_NONE },
665 { "unknown", BUS_NONE } };
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000666
Nico Huber2e50cdc2018-09-23 20:20:26 +0200667 const struct boot_straps *boot_straps;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000668 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +0000669 case CHIPSET_ICH7:
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000670 /* EP80579 may need further changes, but this is the least
671 * intrusive way to get correct BOOT Strap printing without
672 * changing the rest of its code path). */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000673 if (dev->device_id == 0x5031)
Nico Huber2e50cdc2018-09-23 20:20:26 +0200674 boot_straps = boot_straps_EP80579;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000675 else
Nico Huber2e50cdc2018-09-23 20:20:26 +0200676 boot_straps = boot_straps_ich7_nm10;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000677 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000678 case CHIPSET_ICH8:
679 case CHIPSET_ICH9:
680 case CHIPSET_ICH10:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200681 boot_straps = boot_straps_ich8910;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000682 break;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000683 case CHIPSET_TUNNEL_CREEK:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200684 boot_straps = boot_straps_tunnel_creek;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000685 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000686 case CHIPSET_5_SERIES_IBEX_PEAK:
687 case CHIPSET_6_SERIES_COUGAR_POINT:
Helge Wagnera0fce5f2012-07-24 16:33:55 +0000688 case CHIPSET_7_SERIES_PANTHER_POINT:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200689 boot_straps = boot_straps_pch567;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000690 break;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000691 case CHIPSET_8_SERIES_LYNX_POINT:
Duncan Laurie823096e2014-08-20 15:39:38 +0000692 case CHIPSET_9_SERIES_WILDCAT_POINT:
Duncan Laurie4095ed72014-08-20 15:39:32 +0000693 case CHIPSET_BAYTRAIL:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200694 boot_straps = boot_straps_pch89_baytrail;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000695 break;
696 case CHIPSET_8_SERIES_LYNX_POINT_LP:
Nico Huber51205912017-03-17 17:59:54 +0100697 case CHIPSET_9_SERIES_WILDCAT_POINT_LP:
Nico Huber93c30692017-03-20 14:25:09 +0100698 case CHIPSET_100_SERIES_SUNRISE_POINT:
David Hendricksa5216362017-08-08 20:02:22 -0700699 case CHIPSET_C620_SERIES_LEWISBURG:
Thomas Heijligen5ec84b32019-03-19 17:00:03 +0100700 case CHIPSET_300_SERIES_CANNON_POINT:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200701 boot_straps = boot_straps_pch8_lp;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000702 break;
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200703 case CHIPSET_500_SERIES_TIGER_POINT:
Nico Huber42daab12024-07-16 00:27:27 +0200704 case CHIPSET_C740_SERIES_EMMITSBURG:
Michał Żygowski5c9f5422021-06-16 15:13:54 +0200705 boot_straps = boot_straps_pch500;
706 break;
Nico Huber37509862019-01-18 14:23:02 +0100707 case CHIPSET_APOLLO_LAKE:
Angel Pons4db0fdf2020-07-10 17:04:10 +0200708 case CHIPSET_GEMINI_LAKE:
Werner Zehe57d4e42022-01-03 09:44:29 +0100709 case CHIPSET_ELKHART_LAKE:
Nico Huber0ef2eb82024-07-19 21:38:17 +0200710 case CHIPSET_SNOW_RIDGE: /* hard coded to 0 (SPI) */
Nico Huber5e0d9b02024-07-19 21:44:52 +0200711 case CHIPSET_METEOR_LAKE:
Nico Huberd5a61ef2024-11-06 23:55:44 +0100712 case CHIPSET_LUNAR_LAKE:
Nico Huber612519b2024-11-06 23:37:11 +0100713 case CHIPSET_ARROW_LAKE:
Nico Huberf4d5f322026-02-08 18:42:55 +0100714 case CHIPSET_PANTHER_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;
737 default:
Nico Huber140e22f2024-07-14 23:18:53 +0200738 if (ich_generation >= SPI_ENGINE_PCH100)
739 bbs = (gcs >> 6) & 0x1;
740 else
741 /* Other chipsets use two bits for BBS */
742 bbs = (gcs >> 10) & 0x3;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000743 break;
744 }
Nico Huber2e50cdc2018-09-23 20:20:26 +0200745 msg_pdbg("Boot BIOS Straps: 0x%x (%s)\n", bbs, boot_straps[bbs].name);
Duncan Laurie4095ed72014-08-20 15:39:32 +0000746
747 /* Centerton has its TS bit in [GPE0BLK] + 0x30 while the exact location for Tunnel Creek is unknown. */
748 if (ich_generation != CHIPSET_TUNNEL_CREEK && ich_generation != CHIPSET_CENTERTON)
749 msg_pdbg("Top Swap: %s\n", (top_swap) ? "enabled (A16(+) inverted)" : "not enabled");
Nico Huber2e50cdc2018-09-23 20:20:26 +0200750
751 return boot_straps[bbs].bus;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000752}
753
Nico Huber89569d62023-01-12 23:31:40 +0100754static int enable_flash_ich_spi(struct flashprog_programmer *prog, struct pci_dev *dev,
755 enum ich_chipset ich_generation, uint8_t bios_cntl)
Duncan Laurie4095ed72014-08-20 15:39:32 +0000756{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000757 /* Get physical address of Root Complex Register Block */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000758 uint32_t rcra = pci_read_long(dev, 0xf0) & 0xffffc000;
759 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcra);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000760
761 /* Map RCBA to virtual memory */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000762 void *rcrb = rphysmap("ICH RCRB", rcra, 0x4000);
Stefan Tauner7fb5aa02013-08-14 15:48:44 +0000763 if (rcrb == ERROR_PTR)
Niklas Söderlund5d307202013-09-14 09:02:27 +0000764 return ERROR_FATAL;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000765
Nico Huber2e50cdc2018-09-23 20:20:26 +0200766 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000767
Stefan Tauner92d6a862013-10-25 00:33:37 +0000768 /* Handle FWH-related parameters and initialization */
Nico Huber89569d62023-01-12 23:31:40 +0100769 int ret_fwh = enable_flash_ich_fwh(prog, dev, ich_generation, bios_cntl);
Stefan Tauner92d6a862013-10-25 00:33:37 +0000770 if (ret_fwh == ERROR_FATAL)
771 return ret_fwh;
772
Angel Pons399a4dd2020-04-15 12:59:42 +0200773 /*
774 * It seems that the ICH7 does not support SPI and LPC chips at the same time. When booted
775 * from LPC, the SCIP bit will never clear, which causes long delays and many error messages.
776 * To avoid this, we will not enable SPI on ICH7 when the southbridge is strapped to LPC.
777 */
778 if (ich_generation == CHIPSET_ICH7 && (boot_buses & BUS_LPC))
779 return 0;
780
Stefan Tauner92d6a862013-10-25 00:33:37 +0000781 /* SPIBAR is at RCRB+0x3020 for ICH[78], Tunnel Creek and Centerton, and RCRB+0x3800 for ICH9. */
782 uint16_t spibar_offset;
783 switch (ich_generation) {
Duncan Laurie4095ed72014-08-20 15:39:32 +0000784 case CHIPSET_BAYTRAIL:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000785 case CHIPSET_ICH_UNKNOWN:
786 return ERROR_FATAL;
787 case CHIPSET_ICH7:
788 case CHIPSET_ICH8:
789 case CHIPSET_TUNNEL_CREEK:
790 case CHIPSET_CENTERTON:
791 spibar_offset = 0x3020;
792 break;
793 case CHIPSET_ICH9:
794 default: /* Future version might behave the same */
795 spibar_offset = 0x3800;
796 break;
797 }
798 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " + 0x%04x\n", PRIxPTR_WIDTH, (uintptr_t)rcrb, spibar_offset);
799 void *spibar = rcrb + spibar_offset;
800
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000801 /* This adds BUS_SPI */
Nico Hubera1f64762024-07-14 20:23:28 +0200802 int ret_spi;
803 if (ich_generation < SPI_ENGINE_ICH9)
804 ret_spi = ich7_init_spi(spibar, ich_generation);
805 else
806 ret_spi = ich9_init_spi(spibar, ich_generation);
Stefan Tauner50e7c602011-11-08 10:55:54 +0000807 if (ret_spi == ERROR_FATAL)
808 return ret_spi;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100809
Nico Huber2e50cdc2018-09-23 20:20:26 +0200810 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
Stefan Tauner92d6a862013-10-25 00:33:37 +0000811 return ERROR_NONFATAL;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000812
Nico Huber2e50cdc2018-09-23 20:20:26 +0200813 /* Suppress unknown laptop warning if we booted from SPI. */
814 if (boot_buses & BUS_SPI)
Felix Singerd1ab7d22022-08-19 03:03:47 +0200815 laptop_ok = true;
Nico Huber2e50cdc2018-09-23 20:20:26 +0200816
Stefan Tauner92d6a862013-10-25 00:33:37 +0000817 return 0;
818}
819
Nico Huber929d2e12023-01-12 00:47:05 +0100820static int enable_flash_tunnelcreek(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Tauner92d6a862013-10-25 00:33:37 +0000821{
Nico Huber89569d62023-01-12 23:31:40 +0100822 return enable_flash_ich_spi(prog, dev, CHIPSET_TUNNEL_CREEK, 0xd8);
Stefan Tauner92d6a862013-10-25 00:33:37 +0000823}
824
Nico Huber929d2e12023-01-12 00:47:05 +0100825static int enable_flash_s12x0(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Tauner92d6a862013-10-25 00:33:37 +0000826{
Nico Huber89569d62023-01-12 23:31:40 +0100827 return enable_flash_ich_spi(prog, dev, CHIPSET_CENTERTON, 0xd8);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000828}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000829
Nico Huber929d2e12023-01-12 00:47:05 +0100830static int enable_flash_ich7(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000831{
Nico Huber89569d62023-01-12 23:31:40 +0100832 return enable_flash_ich_spi(prog, dev, CHIPSET_ICH7, 0xdc);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000833}
834
Nico Huber929d2e12023-01-12 00:47:05 +0100835static int enable_flash_ich8(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000836{
Nico Huber89569d62023-01-12 23:31:40 +0100837 return enable_flash_ich_spi(prog, dev, CHIPSET_ICH8, 0xdc);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000838}
839
Nico Huber929d2e12023-01-12 00:47:05 +0100840static int enable_flash_ich9(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000841{
Nico Huber89569d62023-01-12 23:31:40 +0100842 return enable_flash_ich_spi(prog, dev, CHIPSET_ICH9, 0xdc);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000843}
844
Nico Huber929d2e12023-01-12 00:47:05 +0100845static int enable_flash_ich10(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000846{
Nico Huber89569d62023-01-12 23:31:40 +0100847 return enable_flash_ich_spi(prog, dev, CHIPSET_ICH10, 0xdc);
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000848}
849
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000850/* Ibex Peak aka. 5 series & 3400 series */
Nico Huber929d2e12023-01-12 00:47:05 +0100851static int enable_flash_pch5(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000852{
Nico Huber89569d62023-01-12 23:31:40 +0100853 return enable_flash_ich_spi(prog, dev, CHIPSET_5_SERIES_IBEX_PEAK, 0xdc);
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000854}
855
856/* Cougar Point aka. 6 series & c200 series */
Nico Huber929d2e12023-01-12 00:47:05 +0100857static int enable_flash_pch6(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000858{
Nico Huber89569d62023-01-12 23:31:40 +0100859 return enable_flash_ich_spi(prog, dev, CHIPSET_6_SERIES_COUGAR_POINT, 0xdc);
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000860}
861
Stefan Tauner2abab942012-04-27 20:41:23 +0000862/* Panther Point aka. 7 series */
Nico Huber929d2e12023-01-12 00:47:05 +0100863static int enable_flash_pch7(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Tauner2abab942012-04-27 20:41:23 +0000864{
Nico Huber89569d62023-01-12 23:31:40 +0100865 return enable_flash_ich_spi(prog, dev, CHIPSET_7_SERIES_PANTHER_POINT, 0xdc);
Stefan Tauner2abab942012-04-27 20:41:23 +0000866}
867
868/* Lynx Point aka. 8 series */
Nico Huber929d2e12023-01-12 00:47:05 +0100869static int enable_flash_pch8(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Tauner2abab942012-04-27 20:41:23 +0000870{
Nico Huber89569d62023-01-12 23:31:40 +0100871 return enable_flash_ich_spi(prog, dev, CHIPSET_8_SERIES_LYNX_POINT, 0xdc);
Stefan Tauner2abab942012-04-27 20:41:23 +0000872}
873
Stefan Tauner92d6a862013-10-25 00:33:37 +0000874/* Lynx Point LP aka. 8 series low-power */
Nico Huber929d2e12023-01-12 00:47:05 +0100875static int enable_flash_pch8_lp(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Duncan Laurie90eb2262013-03-15 03:12:29 +0000876{
Nico Huber89569d62023-01-12 23:31:40 +0100877 return enable_flash_ich_spi(prog, dev, CHIPSET_8_SERIES_LYNX_POINT_LP, 0xdc);
Duncan Laurie90eb2262013-03-15 03:12:29 +0000878}
879
880/* Wellsburg (for Haswell-EP Xeons) */
Nico Huber929d2e12023-01-12 00:47:05 +0100881static int enable_flash_pch8_wb(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Duncan Laurie90eb2262013-03-15 03:12:29 +0000882{
Nico Huber89569d62023-01-12 23:31:40 +0100883 return enable_flash_ich_spi(prog, dev, CHIPSET_8_SERIES_WELLSBURG, 0xdc);
Duncan Laurie90eb2262013-03-15 03:12:29 +0000884}
885
Duncan Laurie823096e2014-08-20 15:39:38 +0000886/* Wildcat Point */
Nico Huber929d2e12023-01-12 00:47:05 +0100887static int enable_flash_pch9(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Duncan Laurie823096e2014-08-20 15:39:38 +0000888{
Nico Huber89569d62023-01-12 23:31:40 +0100889 return enable_flash_ich_spi(prog, dev, CHIPSET_9_SERIES_WILDCAT_POINT, 0xdc);
Duncan Laurie823096e2014-08-20 15:39:38 +0000890}
891
Nico Huber51205912017-03-17 17:59:54 +0100892/* Wildcat Point LP */
Nico Huber929d2e12023-01-12 00:47:05 +0100893static int enable_flash_pch9_lp(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Nico Huber51205912017-03-17 17:59:54 +0100894{
Nico Huber89569d62023-01-12 23:31:40 +0100895 return enable_flash_ich_spi(prog, dev, CHIPSET_9_SERIES_WILDCAT_POINT_LP, 0xdc);
Nico Huber51205912017-03-17 17:59:54 +0100896}
897
Nico Huber93c30692017-03-20 14:25:09 +0100898/* Sunrise Point */
899static int enable_flash_pch100_shutdown(void *const pci_acc)
900{
901 pci_cleanup(pci_acc);
902 return 0;
903}
904
Nico Hubera0884752024-08-25 12:29:44 +0200905static int enable_flash_pch_spidev(
906 struct pci_dev *const spi_dev, const char *const name,
907 const enum ich_chipset pch_generation)
908{
909 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(spi_dev, pch_generation, NULL);
910
911 const int ret_bc = enable_flash_ich_bios_cntl_config_space(spi_dev, pch_generation, 0xdc);
912 if (ret_bc == ERROR_FATAL)
913 return ERROR_FATAL;
914
915 const uint32_t phys_spibar = pci_read_long(spi_dev, PCI_BASE_ADDRESS_0) & 0xfffff000;
916 void *const spibar = rphysmap("SPIBAR", phys_spibar, 0x1000);
917 if (spibar == ERROR_PTR)
918 return ERROR_FATAL;
919 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " (phys = 0x%08x)\n", PRIxPTR_WIDTH, (uintptr_t)spibar, phys_spibar);
920
921 /* This adds BUS_SPI */
922 const int ret_spi = ich9_init_spi(spibar, pch_generation);
923 if (ret_spi == ERROR_FATAL)
924 return ERROR_FATAL;
925
926 if (ret_bc || ret_spi)
927 return ERROR_NONFATAL;
928
929 /* Suppress unknown laptop warning if we booted from SPI. */
930 if (boot_buses & BUS_SPI)
931 laptop_ok = true;
932
933 return 0;
934}
935
Nico Huber37509862019-01-18 14:23:02 +0100936static int enable_flash_pch100_or_c620(
Nico Hubera0884752024-08-25 12:29:44 +0200937 struct pci_dev *const lpc_dev, const char *const name,
Nico Huber37509862019-01-18 14:23:02 +0100938 const int slot, const int func, const enum ich_chipset pch_generation)
Nico Huber93c30692017-03-20 14:25:09 +0100939{
Nico Huber93c30692017-03-20 14:25:09 +0100940 /*
Nico Hubera0884752024-08-25 12:29:44 +0200941 * On older gens, the SPI dev is hidden (by hiding PCI vendor
Nico Huber93c30692017-03-20 14:25:09 +0100942 * and device IDs). So we need a PCI access method that works
943 * even when the OS doesn't know the PCI device. We can't use
944 * this method globally since it would bring along other con-
945 * straints (e.g. on PCI domains, extended PCIe config space).
946 */
947 struct pci_access *const pci_acc = pci_alloc();
Youness Alaouia54ceb12017-07-26 18:03:36 -0400948 struct pci_access *const saved_pacc = pacc;
Nico Huber93c30692017-03-20 14:25:09 +0100949 if (!pci_acc) {
950 msg_perr("Can't allocate PCI accessor.\n");
Nico Hubera0884752024-08-25 12:29:44 +0200951 return ERROR_FATAL;
Nico Huber93c30692017-03-20 14:25:09 +0100952 }
953 pci_acc->method = PCI_ACCESS_I386_TYPE1;
954 pci_init(pci_acc);
955 register_shutdown(enable_flash_pch100_shutdown, pci_acc);
956
Nico Hubera0884752024-08-25 12:29:44 +0200957 struct pci_dev *const spi_dev = pci_get_dev(pci_acc, lpc_dev->domain, lpc_dev->bus, slot, func);
Nico Huber93c30692017-03-20 14:25:09 +0100958 if (!spi_dev) {
959 msg_perr("Can't allocate PCI device.\n");
Nico Hubera0884752024-08-25 12:29:44 +0200960 return ERROR_FATAL;
Nico Huber93c30692017-03-20 14:25:09 +0100961 }
962
Nico Hubera0884752024-08-25 12:29:44 +0200963 /* Modify pacc so the rpci_write can register the undo
964 callback with a device using the correct pci_access. */
Youness Alaouia54ceb12017-07-26 18:03:36 -0400965 pacc = pci_acc;
Nico Huber93c30692017-03-20 14:25:09 +0100966
Nico Hubera0884752024-08-25 12:29:44 +0200967 const int ret = enable_flash_pch_spidev(spi_dev, name, pch_generation);
Nico Huber93c30692017-03-20 14:25:09 +0100968
Nico Huber93c30692017-03-20 14:25:09 +0100969 pci_free_dev(spi_dev);
Youness Alaouia54ceb12017-07-26 18:03:36 -0400970 pacc = saved_pacc;
Nico Huber93c30692017-03-20 14:25:09 +0100971 return ret;
972}
973
Nico Huber929d2e12023-01-12 00:47:05 +0100974static int enable_flash_pch100(struct flashprog_programmer *const prog,
975 struct pci_dev *const dev, const char *const name)
David Hendricksa5216362017-08-08 20:02:22 -0700976{
Nico Huber37509862019-01-18 14:23:02 +0100977 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_100_SERIES_SUNRISE_POINT);
David Hendricksa5216362017-08-08 20:02:22 -0700978}
979
Nico Huber929d2e12023-01-12 00:47:05 +0100980static int enable_flash_c620(struct flashprog_programmer *const prog,
981 struct pci_dev *const dev, const char *const name)
David Hendricksa5216362017-08-08 20:02:22 -0700982{
Nico Huber37509862019-01-18 14:23:02 +0100983 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_C620_SERIES_LEWISBURG);
984}
985
Nico Huber6d72efa2024-08-25 13:01:23 +0200986static int enable_flash_pch300_22nm(struct flashprog_programmer *const prog,
987 struct pci_dev *const dev, const char *const name)
Thomas Heijligen5ec84b32019-03-19 17:00:03 +0100988{
989 return enable_flash_pch100_or_c620(dev, name, 0x1f, 5, CHIPSET_300_SERIES_CANNON_POINT);
990}
991
Nico Huber929d2e12023-01-12 00:47:05 +0100992static int enable_flash_apl(struct flashprog_programmer *const prog,
993 struct pci_dev *const dev, const char *const name)
Nico Huber37509862019-01-18 14:23:02 +0100994{
995 return enable_flash_pch100_or_c620(dev, name, 0x0d, 2, CHIPSET_APOLLO_LAKE);
David Hendricksa5216362017-08-08 20:02:22 -0700996}
997
Nico Huber929d2e12023-01-12 00:47:05 +0100998static int enable_flash_glk(struct flashprog_programmer *prog,
999 struct pci_dev *const dev, const char *const name)
Angel Pons4db0fdf2020-07-10 17:04:10 +02001000{
1001 return enable_flash_pch100_or_c620(dev, name, 0x0d, 2, CHIPSET_GEMINI_LAKE);
1002}
1003
Nico Huber8e4151d2024-08-25 13:01:23 +02001004static int enable_flash_mcc(struct flashprog_programmer *const prog,
1005 struct pci_dev *const spi_dev, const char *const name)
1006{
1007 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_ELKHART_LAKE);
1008}
1009
Nico Huber6d72efa2024-08-25 13:01:23 +02001010static int enable_flash_pch300(struct flashprog_programmer *const prog,
1011 struct pci_dev *const spi_dev, const char *const name)
1012{
1013 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_300_SERIES_CANNON_POINT);
1014}
1015
Nico Huber092a6992024-08-25 12:45:18 +02001016static int enable_flash_pch500(struct flashprog_programmer *const prog,
1017 struct pci_dev *const spi_dev, const char *const name)
1018{
1019 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_500_SERIES_TIGER_POINT);
1020}
1021
Nico Huber42daab12024-07-16 00:27:27 +02001022static int enable_flash_c740(struct flashprog_programmer *const prog,
1023 struct pci_dev *const spi_dev, const char *const name)
1024{
1025 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_C740_SERIES_EMMITSBURG);
1026}
1027
Nico Huber0ef2eb82024-07-19 21:38:17 +02001028static int enable_flash_snowridge(struct flashprog_programmer *const prog,
1029 struct pci_dev *const spi_dev, const char *const name)
1030{
1031 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_SNOW_RIDGE);
1032}
1033
Nico Huber5e0d9b02024-07-19 21:44:52 +02001034static int enable_flash_mtl(struct flashprog_programmer *const prog,
1035 struct pci_dev *const spi_dev, const char *const name)
1036{
1037 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_METEOR_LAKE);
1038}
1039
Nico Huberd5a61ef2024-11-06 23:55:44 +01001040static int enable_flash_lnl(struct flashprog_programmer *const prog,
1041 struct pci_dev *const spi_dev, const char *const name)
1042{
1043 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_LUNAR_LAKE);
1044}
1045
Nico Huber612519b2024-11-06 23:37:11 +01001046static int enable_flash_arl(struct flashprog_programmer *const prog,
1047 struct pci_dev *const spi_dev, const char *const name)
1048{
1049 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_ARROW_LAKE);
1050}
1051
Nico Huberf4d5f322026-02-08 18:42:55 +01001052static int enable_flash_ptl(struct flashprog_programmer *const prog,
1053 struct pci_dev *const spi_dev, const char *const name)
1054{
1055 return enable_flash_pch_spidev(spi_dev, name, CHIPSET_PANTHER_LAKE);
1056}
1057
Duncan Laurie4095ed72014-08-20 15:39:32 +00001058/* Silvermont architecture: Bay Trail(-T/-I), Avoton/Rangeley.
1059 * These have a distinctly different behavior compared to other Intel chipsets and hence are handled separately.
1060 *
1061 * Differences include:
1062 * - RCBA at LPC config 0xF0 too but mapped range is only 4 B long instead of 16 kB.
1063 * - GCS at [RCRB] + 0 (instead of [RCRB] + 0x3410).
1064 * - TS (Top Swap) in GCS (instead of [RCRB] + 0x3414).
1065 * - SPIBAR (coined SBASE) at LPC config 0x54 (instead of [RCRB] + 0x3800).
1066 * - BIOS_CNTL (coined BCR) at [SPIBAR] + 0xFC (instead of LPC config 0xDC).
1067 */
Nico Huber929d2e12023-01-12 00:47:05 +01001068static int enable_flash_silvermont(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Duncan Laurie4095ed72014-08-20 15:39:32 +00001069{
1070 enum ich_chipset ich_generation = CHIPSET_BAYTRAIL;
1071
1072 /* Get physical address of Root Complex Register Block */
1073 uint32_t rcba = pci_read_long(dev, 0xf0) & 0xfffffc00;
1074 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcba);
1075
1076 /* Handle GCS (in RCRB) */
1077 void *rcrb = physmap("BYT RCRB", rcba, 4);
Edward O'Callaghan2e3e1062020-12-02 13:17:46 +11001078 if (rcrb == ERROR_PTR)
1079 return ERROR_FATAL;
Nico Huber2e50cdc2018-09-23 20:20:26 +02001080 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
Duncan Laurie4095ed72014-08-20 15:39:32 +00001081 physunmap(rcrb, 4);
1082
1083 /* Handle fwh_idsel parameter */
Nico Huber89569d62023-01-12 23:31:40 +01001084 int ret_fwh = enable_flash_ich_fwh_decode(prog, dev, ich_generation);
Duncan Laurie4095ed72014-08-20 15:39:32 +00001085 if (ret_fwh == ERROR_FATAL)
1086 return ret_fwh;
1087
Nico Huber2e50cdc2018-09-23 20:20:26 +02001088 internal_buses_supported &= BUS_FWH;
Duncan Laurie4095ed72014-08-20 15:39:32 +00001089
1090 /* Get physical address of SPI Base Address and map it */
1091 uint32_t sbase = pci_read_long(dev, 0x54) & 0xfffffe00;
1092 msg_pdbg("SPI_BASE_ADDRESS = 0x%x\n", sbase);
1093 void *spibar = rphysmap("BYT SBASE", sbase, 512); /* Last defined address on Bay Trail is 0x100 */
Edward O'Callaghaneaf701d2020-10-15 19:19:05 +11001094 if (spibar == ERROR_PTR)
1095 return ERROR_FATAL;
Duncan Laurie4095ed72014-08-20 15:39:32 +00001096
1097 /* Enable Flash Writes.
1098 * Silvermont-based: BCR at SBASE + 0xFC (some bits of BCR are also accessible via BC at IBASE + 0x1C).
1099 */
1100 enable_flash_ich_bios_cntl_memmapped(ich_generation, spibar + 0xFC);
1101
Nico Hubera1f64762024-07-14 20:23:28 +02001102 int ret_spi = ich9_init_spi(spibar, ich_generation);
Duncan Laurie4095ed72014-08-20 15:39:32 +00001103 if (ret_spi == ERROR_FATAL)
1104 return ret_spi;
1105
Nico Huber2e50cdc2018-09-23 20:20:26 +02001106 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
Duncan Laurie4095ed72014-08-20 15:39:32 +00001107 return ERROR_NONFATAL;
1108
Nico Huber2e50cdc2018-09-23 20:20:26 +02001109 /* Suppress unknown laptop warning if we booted from SPI. */
1110 if (boot_buses & BUS_SPI)
Felix Singerd1ab7d22022-08-19 03:03:47 +02001111 laptop_ok = true;
Nico Huber2e50cdc2018-09-23 20:20:26 +02001112
Duncan Laurie4095ed72014-08-20 15:39:32 +00001113 return 0;
1114}
1115
Nico Huber929d2e12023-01-12 00:47:05 +01001116static int via_no_byte_merge(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Michael Karcher89bed6d2010-06-13 10:16:12 +00001117{
1118 uint8_t val;
1119
1120 val = pci_read_byte(dev, 0x71);
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001121 if (val & 0x40) {
Michael Karcher89bed6d2010-06-13 10:16:12 +00001122 msg_pdbg("Disabling byte merging\n");
1123 val &= ~0x40;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001124 rpci_write_byte(dev, 0x71, val);
Michael Karcher89bed6d2010-06-13 10:16:12 +00001125 }
1126 return NOT_DONE_YET; /* need to find south bridge, too */
1127}
1128
Nico Huber929d2e12023-01-12 00:47:05 +01001129static int enable_flash_vt823x(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001130{
Ollie Lho184a4042005-11-26 21:55:36 +00001131 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001132
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001133 /* Enable ROM decode range (1MB) FFC00000 - FFFFFFFF. */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001134 rpci_write_byte(dev, 0x41, 0x7f);
Bari Ari9477c4e2008-04-29 13:46:38 +00001135
Uwe Hermannffec5f32007-08-23 16:08:21 +00001136 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +00001137 val = pci_read_byte(dev, 0x40);
1138 val |= 0x10;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001139 rpci_write_byte(dev, 0x40, val);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001140
1141 if (pci_read_byte(dev, 0x40) != val) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00001142 msg_pwarn("\nWarning: Failed to enable flash write on \"%s\"\n", name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001143 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001144 }
Luc Verhaegen6382b442007-03-02 22:16:38 +00001145
Helge Wagnerdd73d832012-08-24 23:03:46 +00001146 if (dev->device_id == 0x3227) { /* VT8237/VT8237R */
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001147 /* All memory cycles, not just ROM ones, go to LPC. */
1148 val = pci_read_byte(dev, 0x59);
1149 val &= ~0x80;
1150 rpci_write_byte(dev, 0x59, val);
Luc Verhaegen73d21192009-12-23 00:54:26 +00001151 }
1152
Uwe Hermanna7e05482007-05-09 10:17:44 +00001153 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001154}
1155
Nico Huber929d2e12023-01-12 00:47:05 +01001156static int enable_flash_vt_vx(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Helge Wagnerdd73d832012-08-24 23:03:46 +00001157{
Edward O'Callaghan19ce50d2021-11-13 17:59:18 +11001158 struct pci_dev *south_north = pcidev_find(0x1106, 0xa353);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001159 if (south_north == NULL) {
1160 msg_perr("Could not find South-North Module Interface Control device!\n");
1161 return ERROR_FATAL;
1162 }
1163
1164 msg_pdbg("Strapped to ");
1165 if ((pci_read_byte(south_north, 0x56) & 0x01) == 0) {
1166 msg_pdbg("LPC.\n");
Nico Huber929d2e12023-01-12 00:47:05 +01001167 return enable_flash_vt823x(prog, dev, name);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001168 }
1169 msg_pdbg("SPI.\n");
1170
1171 uint32_t mmio_base;
1172 void *mmio_base_physmapped;
1173 uint32_t spi_cntl;
1174 #define SPI_CNTL_LEN 0x08
1175 uint32_t spi0_mm_base = 0;
1176 switch(dev->device_id) {
1177 case 0x8353: /* VX800/VX820 */
1178 spi0_mm_base = pci_read_long(dev, 0xbc) << 8;
Lubomir Rinteld0803c82017-10-30 07:57:53 +01001179 if (spi0_mm_base == 0x0) {
1180 msg_pdbg ("MMIO not enabled!\n");
1181 return ERROR_FATAL;
1182 }
Helge Wagnerdd73d832012-08-24 23:03:46 +00001183 break;
1184 case 0x8409: /* VX855/VX875 */
1185 case 0x8410: /* VX900 */
1186 mmio_base = pci_read_long(dev, 0xbc) << 8;
Lubomir Rinteld0803c82017-10-30 07:57:53 +01001187 if (mmio_base == 0x0) {
1188 msg_pdbg ("MMIO not enabled!\n");
1189 return ERROR_FATAL;
1190 }
Helge Wagnerdd73d832012-08-24 23:03:46 +00001191 mmio_base_physmapped = physmap("VIA VX MMIO register", mmio_base, SPI_CNTL_LEN);
Stefan Tauner7fb5aa02013-08-14 15:48:44 +00001192 if (mmio_base_physmapped == ERROR_PTR)
Helge Wagnerdd73d832012-08-24 23:03:46 +00001193 return ERROR_FATAL;
Helge Wagnerdd73d832012-08-24 23:03:46 +00001194
1195 /* Offset 0 - Bit 0 holds SPI Bus0 Enable Bit. */
1196 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x00;
1197 if ((spi_cntl & 0x01) == 0) {
1198 msg_pdbg ("SPI Bus0 disabled!\n");
1199 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1200 return ERROR_FATAL;
1201 }
1202 /* Offset 1-3 has SPI Bus Memory Map Base Address: */
1203 spi0_mm_base = spi_cntl & 0xFFFFFF00;
1204
1205 /* Offset 4 - Bit 0 holds SPI Bus1 Enable Bit. */
1206 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x04;
1207 if ((spi_cntl & 0x01) == 1)
1208 msg_pdbg2("SPI Bus1 is enabled too.\n");
1209
1210 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1211 break;
1212 default:
1213 msg_perr("%s: Unsupported chipset %x:%x!\n", __func__, dev->vendor_id, dev->device_id);
1214 return ERROR_FATAL;
1215 }
1216
Nico Huber560111e2017-04-26 12:27:17 +02001217 return via_init_spi(spi0_mm_base);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001218}
1219
Nico Huber929d2e12023-01-12 00:47:05 +01001220static int enable_flash_vt8237s_spi(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Helge Wagnerdd73d832012-08-24 23:03:46 +00001221{
Nico Huber560111e2017-04-26 12:27:17 +02001222 return via_init_spi(pci_read_long(dev, 0xbc) << 8);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001223}
1224
Nico Huber929d2e12023-01-12 00:47:05 +01001225static int enable_flash_cs5530(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001226{
Nico Huber89569d62023-01-12 23:31:40 +01001227 struct internal_data *const internal = prog->data;
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001228 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001229
Uwe Hermann394131e2008-10-18 21:14:13 +00001230#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
1231#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001232#define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */
1233#define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */
Ollie Lhocbbf1252004-03-17 22:22:08 +00001234
Uwe Hermann394131e2008-10-18 21:14:13 +00001235#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
1236#define ROM_WRITE_ENABLE (1 << 1)
1237#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
1238#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001239#define CS5530_ISA_MASTER (1 << 7)
1240#define CS5530_ENABLE_SA2320 (1 << 2)
1241#define CS5530_ENABLE_SA20 (1 << 6)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001242
Nico Huber2e50cdc2018-09-23 20:20:26 +02001243 internal_buses_supported &= BUS_PARALLEL;
Stefan Taunerc0aaf952011-05-19 02:58:17 +00001244 /* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and
1245 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB.
Nico Huberc3b02dc2023-08-12 01:13:45 +02001246 * FIXME: Should we really touch the low mapping below 1 MB? Flashprog
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001247 * ignores that region completely.
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001248 * Make the configured ROM areas writable.
1249 */
1250 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
1251 reg8 |= LOWER_ROM_ADDRESS_RANGE;
1252 reg8 |= UPPER_ROM_ADDRESS_RANGE;
1253 reg8 |= ROM_WRITE_ENABLE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001254 rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001255
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001256 /* Set positive decode on ROM. */
1257 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
1258 reg8 |= BIOS_ROM_POSITIVE_DECODE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001259 rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001260
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001261 reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG);
1262 if (reg8 & CS5530_ISA_MASTER) {
1263 /* We have A0-A23 available. */
Nico Huber89569d62023-01-12 23:31:40 +01001264 internal->max_rom_decode = 16*MiB;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001265 } else {
1266 reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG);
1267 if (reg8 & CS5530_ENABLE_SA2320) {
1268 /* We have A0-19, A20-A23 available. */
Nico Huber89569d62023-01-12 23:31:40 +01001269 internal->max_rom_decode = 16*MiB;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001270 } else if (reg8 & CS5530_ENABLE_SA20) {
1271 /* We have A0-19, A20 available. */
Nico Huber89569d62023-01-12 23:31:40 +01001272 internal->max_rom_decode = 2*MiB;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001273 } else {
1274 /* A20 and above are not active. */
Nico Huber89569d62023-01-12 23:31:40 +01001275 internal->max_rom_decode = 1*MiB;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001276 }
1277 }
1278
Ollie Lhocbbf1252004-03-17 22:22:08 +00001279 return 0;
1280}
1281
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001282/*
Mart Raudseppe1344da2008-02-08 10:10:57 +00001283 * Geode systems write protect the BIOS via RCONFs (cache settings similar
Elyes HAOUAS124ef382018-03-27 12:15:09 +02001284 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22.
Mart Raudseppe1344da2008-02-08 10:10:57 +00001285 *
1286 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
1287 * To enable write to NOR Boot flash for the benefit of systems that have such
1288 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
Mart Raudseppe1344da2008-02-08 10:10:57 +00001289 */
Nico Huber929d2e12023-01-12 00:47:05 +01001290static int enable_flash_cs5536(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +00001291{
Uwe Hermann394131e2008-10-18 21:14:13 +00001292#define MSR_RCONF_DEFAULT 0x1808
1293#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001294
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001295 msr_t msr;
Lane Brooksd54958a2007-11-13 16:45:22 +00001296
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001297 /* Geode only has a single core */
Thomas Heijligenf8d9a272022-03-16 09:19:19 +01001298 if (msr_setup(0))
Lane Brooksd54958a2007-11-13 16:45:22 +00001299 return -1;
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001300
Thomas Heijligenf8d9a272022-03-16 09:19:19 +01001301 msr = msr_read(MSR_RCONF_DEFAULT);
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001302 if ((msr.hi >> 24) != 0x22) {
1303 msr.hi &= 0xfbffffff;
Thomas Heijligenf8d9a272022-03-16 09:19:19 +01001304 msr_write(MSR_RCONF_DEFAULT, msr);
Lane Brooksd54958a2007-11-13 16:45:22 +00001305 }
Mart Raudseppe1344da2008-02-08 10:10:57 +00001306
Thomas Heijligenf8d9a272022-03-16 09:19:19 +01001307 msr = msr_read(MSR_NORF_CTL);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001308 /* Raise WE_CS3 bit. */
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001309 msr.lo |= 0x08;
Thomas Heijligenf8d9a272022-03-16 09:19:19 +01001310 msr_write(MSR_NORF_CTL, msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001311
Thomas Heijligenf8d9a272022-03-16 09:19:19 +01001312 msr_cleanup();
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001313
Uwe Hermann394131e2008-10-18 21:14:13 +00001314#undef MSR_RCONF_DEFAULT
1315#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +00001316 return 0;
1317}
1318
Nico Huber929d2e12023-01-12 00:47:05 +01001319static int enable_flash_sc1100(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001320{
Stefan Taunere34e3e82013-01-01 00:06:51 +00001321 #define SC_REG 0x52
Ollie Lho184a4042005-11-26 21:55:36 +00001322 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001323
Stefan Taunere34e3e82013-01-01 00:06:51 +00001324 rpci_write_byte(dev, SC_REG, 0xee);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001325
Stefan Taunere34e3e82013-01-01 00:06:51 +00001326 new = pci_read_byte(dev, SC_REG);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001327
Stefan Taunere34e3e82013-01-01 00:06:51 +00001328 if (new != 0xee) { /* FIXME: share this with other code? */
1329 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 +00001330 return -1;
1331 }
Uwe Hermannffec5f32007-08-23 16:08:21 +00001332
Ollie Lhocbbf1252004-03-17 22:22:08 +00001333 return 0;
1334}
1335
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001336/* Works for AMD-768, AMD-8111, VIA VT82C586A/B, VIA VT82C596, VIA VT82C686A/B.
1337 *
1338 * ROM decode control register matrix
Elyes HAOUASac01baa2018-05-28 16:52:21 +02001339 * AMD-768 AMD-8111 VT82C586A/B VT82C596 VT82C686A/B
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001340 * 7 FFC0_0000h–FFFF_FFFFh <- FFFE0000h-FFFEFFFFh <- <-
1341 * 6 FFB0_0000h–FFBF_FFFFh <- FFF80000h-FFFDFFFFh <- <-
1342 * 5 00E8... <- <- FFF00000h-FFF7FFFFh <-
1343 */
1344static int enable_flash_amd_via(struct pci_dev *dev, const char *name, uint8_t decode_val)
Ollie Lho761bf1b2004-03-20 16:46:10 +00001345{
Stefan Taunere34e3e82013-01-01 00:06:51 +00001346 #define AMD_MAPREG 0x43
1347 #define AMD_ENREG 0x40
Ollie Lho184a4042005-11-26 21:55:36 +00001348 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001349
Stefan Taunere34e3e82013-01-01 00:06:51 +00001350 old = pci_read_byte(dev, AMD_MAPREG);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001351 new = old | decode_val;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001352 if (new != old) {
Stefan Taunere34e3e82013-01-01 00:06:51 +00001353 rpci_write_byte(dev, AMD_MAPREG, new);
1354 if (pci_read_byte(dev, AMD_MAPREG) != new) {
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001355 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
Stefan Taunere34e3e82013-01-01 00:06:51 +00001356 AMD_MAPREG, new, name);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001357 } else
1358 msg_pdbg("Changed ROM decode range to 0x%02x successfully.\n", new);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001359 }
1360
Uwe Hermann190f8492008-10-25 18:03:50 +00001361 /* Enable 'ROM write' bit. */
Stefan Taunere34e3e82013-01-01 00:06:51 +00001362 old = pci_read_byte(dev, AMD_ENREG);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001363 new = old | 0x01;
1364 if (new == old)
1365 return 0;
Stefan Taunere34e3e82013-01-01 00:06:51 +00001366 rpci_write_byte(dev, AMD_ENREG, new);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001367
Stefan Taunere34e3e82013-01-01 00:06:51 +00001368 if (pci_read_byte(dev, AMD_ENREG) != new) {
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001369 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
Stefan Taunere34e3e82013-01-01 00:06:51 +00001370 AMD_ENREG, new, name);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001371 return ERROR_NONFATAL;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001372 }
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001373 msg_pdbg2("Set ROM enable bit successfully.\n");
Uwe Hermannffec5f32007-08-23 16:08:21 +00001374
Ollie Lhocbbf1252004-03-17 22:22:08 +00001375 return 0;
1376}
1377
Nico Huber929d2e12023-01-12 00:47:05 +01001378static int enable_flash_amd_768_8111(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001379{
Nico Huber89569d62023-01-12 23:31:40 +01001380 struct internal_data *const internal = prog->data;
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001381 /* Enable decoding of 0xFFB00000 to 0xFFFFFFFF (5 MB). */
Nico Huber89569d62023-01-12 23:31:40 +01001382 internal->max_rom_decode = 5 * 1024 * 1024;
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001383 return enable_flash_amd_via(dev, name, 0xC0);
1384}
1385
Nico Huber929d2e12023-01-12 00:47:05 +01001386static int enable_flash_vt82c586(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001387{
Nico Huber89569d62023-01-12 23:31:40 +01001388 struct internal_data *const internal = prog->data;
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001389 /* Enable decoding of 0xFFF80000 to 0xFFFFFFFF. (512 kB) */
Nico Huber89569d62023-01-12 23:31:40 +01001390 internal->max_rom_decode = 512 * 1024;
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001391 return enable_flash_amd_via(dev, name, 0xC0);
1392}
1393
1394/* Works for VT82C686A/B too. */
Nico Huber929d2e12023-01-12 00:47:05 +01001395static int enable_flash_vt82c596(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001396{
Nico Huber89569d62023-01-12 23:31:40 +01001397 struct internal_data *const internal = prog->data;
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00001398 /* Enable decoding of 0xFFF00000 to 0xFFFFFFFF. (1 MB) */
Nico Huber89569d62023-01-12 23:31:40 +01001399 internal->max_rom_decode = 1024 * 1024;
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001400 return enable_flash_amd_via(dev, name, 0xE0);
1401}
1402
Nico Huber929d2e12023-01-12 00:47:05 +01001403static int enable_flash_sb600(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Marc Jones3af487d2008-10-15 17:50:29 +00001404{
Michael Karcherb05b9e12010-07-22 18:04:19 +00001405 uint32_t prot;
Marc Jones3af487d2008-10-15 17:50:29 +00001406 uint8_t reg;
Michael Karcherb05b9e12010-07-22 18:04:19 +00001407 int ret;
Marc Jones3af487d2008-10-15 17:50:29 +00001408
Jason Wanga3f04be2008-11-28 21:36:51 +00001409 /* Clear ROM protect 0-3. */
1410 for (reg = 0x50; reg < 0x60; reg += 4) {
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001411 prot = pci_read_long(dev, reg);
1412 /* No protection flags for this region?*/
1413 if ((prot & 0x3) == 0)
1414 continue;
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001415 msg_pdbg("Chipset %s%sprotected flash from 0x%08x to 0x%08x, unlocking...",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001416 (prot & 0x2) ? "read " : "",
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001417 (prot & 0x1) ? "write " : "",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001418 (prot & 0xfffff800),
1419 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001420 prot &= 0xfffffffc;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001421 rpci_write_byte(dev, reg, prot);
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001422 prot = pci_read_long(dev, reg);
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001423 if ((prot & 0x3) != 0) {
1424 msg_perr("Disabling %s%sprotection of flash addresses from 0x%08x to 0x%08x failed.\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001425 (prot & 0x2) ? "read " : "",
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001426 (prot & 0x1) ? "write " : "",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001427 (prot & 0xfffff800),
1428 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001429 continue;
1430 }
1431 msg_pdbg("done.\n");
Jason Wanga3f04be2008-11-28 21:36:51 +00001432 }
1433
Nico Huber2e50cdc2018-09-23 20:20:26 +02001434 internal_buses_supported &= BUS_LPC | BUS_FWH;
Michael Karcherb05b9e12010-07-22 18:04:19 +00001435
1436 ret = sb600_probe_spi(dev);
Jason Wanga3f04be2008-11-28 21:36:51 +00001437
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001438 /* Read ROM strap override register. */
1439 OUTB(0x8f, 0xcd6);
1440 reg = INB(0xcd7);
1441 reg &= 0x0e;
Sean Nelson316a29f2010-05-07 20:09:04 +00001442 msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001443 if (reg & 0x02) {
1444 switch ((reg & 0x0c) >> 2) {
1445 case 0x00:
Sean Nelson316a29f2010-05-07 20:09:04 +00001446 msg_pdbg(": LPC");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001447 break;
1448 case 0x01:
Sean Nelson316a29f2010-05-07 20:09:04 +00001449 msg_pdbg(": PCI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001450 break;
1451 case 0x02:
Sean Nelson316a29f2010-05-07 20:09:04 +00001452 msg_pdbg(": FWH");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001453 break;
1454 case 0x03:
Sean Nelson316a29f2010-05-07 20:09:04 +00001455 msg_pdbg(": SPI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001456 break;
1457 }
1458 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001459 msg_pdbg("\n");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001460
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001461 /* Force enable SPI ROM in SB600 PM register.
1462 * If we enable SPI ROM here, we have to disable it after we leave.
Zheng Bao284a6002009-05-04 22:33:50 +00001463 * But how can we know which ROM we are going to handle? So we have
1464 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001465 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
1466 * boards with LPC straps, you have to use the code below.
Zheng Bao284a6002009-05-04 22:33:50 +00001467 */
1468 /*
Jason Wanga3f04be2008-11-28 21:36:51 +00001469 OUTB(0x8f, 0xcd6);
1470 OUTB(0x0e, 0xcd7);
Zheng Bao284a6002009-05-04 22:33:50 +00001471 */
Marc Jones3af487d2008-10-15 17:50:29 +00001472
Michael Karcherb05b9e12010-07-22 18:04:19 +00001473 return ret;
Marc Jones3af487d2008-10-15 17:50:29 +00001474}
1475
Nico Huber929d2e12023-01-12 00:47:05 +01001476static int enable_flash_sb600_smbus(struct flashprog_programmer *prog, struct pci_dev *smbus, const char *name)
Nico Hubere604d562023-01-29 17:34:57 +00001477{
1478 struct pci_dev *const lpc = pci_get_dev(pacc, smbus->domain, smbus->bus, smbus->dev, 3);
1479 if (!lpc) {
1480 msg_perr("Error: Cannot access LPC device for %s.\n", name);
1481 return ERROR_FATAL;
1482 }
1483
Nico Huber5a9d6ea2024-08-16 13:47:49 +02001484 const int ret = enable_flash_sb600(prog, lpc, name);
1485
1486 pci_free_dev(lpc);
1487 return ret;
Nico Hubere604d562023-01-29 17:34:57 +00001488}
1489
Nico Hubera1939832025-10-07 21:58:02 +00001490static int enable_read_amd_spi100_rom3(struct flashprog_programmer *const prog, const size_t rom_range3_len)
1491{
1492 /*
1493 * NOTE: We are flying blind due to ROM Armor, so we can only use
1494 * hardcoded, commonly used addresses. We will only ever attempt
1495 * to read, and try our best to confirm that we run in an expec-
1496 * ted environment.
1497 */
1498
1499 const uint64_t rom3_phys = 0xfd00000000;
1500 if ((uintptr_t)rom3_phys != rom3_phys) {
1501 msg_pinfo("amd_rom3read driver currently requires a 64-bit build of flashprog.\n");
1502 return ERROR_FATAL;
1503 }
1504
1505 msg_pinfo("Trying memory mapped, read-only access.\n");
1506
1507 /* There is an undocumented interface, suspiciously
1508 similar to and one page above the usual SPIBAR. */
1509 const void *const odd_spibar =
1510 rphysmap("Odd SPI registers", 0xfec10000 + 0x1000, 256);
1511
1512 /* RomRange2 is supposed to be used for the mapping directly below 4G. */
1513 const void *const rom2 = rphysmap("SPI100 rom2 range", 0xff000000, 16*MiB);
1514
1515 /* RomRange3 default: */
1516 const void *const rom3 = rphysmap("SPI100 rom3 range", (uintptr_t)rom3_phys, rom_range3_len);
1517
1518 if (odd_spibar == ERROR_PTR || rom2 == ERROR_PTR || rom3 == ERROR_PTR)
1519 return ERROR_FATAL;
1520
1521 /* Our best guess */
Nico Huber0d2b45e2026-03-23 22:42:46 +01001522 internal_buses_supported &= ~BUS_PRESPI;
Nico Hubera1939832025-10-07 21:58:02 +00001523 /* Suppress unknown laptop warning with non-SPI buses disabled. */
1524 laptop_ok = true;
1525
1526 return amd_rom3read_probe(odd_spibar, rom2, rom3, rom_range3_len);
1527}
1528
1529static int enable_flash_amd_spi100_generic(
1530 struct flashprog_programmer *const prog,
1531 struct pci_dev *const smbus, const char *const name,
1532 size_t rom_range3_len)
Nico Huber78cd5592023-01-29 18:24:34 +00001533{
1534 struct pci_dev *const lpc = pci_get_dev(pacc, smbus->domain, smbus->bus, smbus->dev, 3);
1535 if (!lpc) {
1536 msg_perr("Error: Cannot access LPC device for %s.\n", name);
1537 return ERROR_FATAL;
1538 }
1539
1540 const uint32_t spibar = pci_read_long(lpc, 0xa0);
Nico Huberee2401c2026-01-09 15:48:07 +01001541 const uint32_t rom_range2 = pci_read_long(lpc, 0x6c);
1542 pci_free_dev(lpc);
1543
Nico Huber3b9f1522024-07-28 16:09:29 +02001544 if (spibar == 0xffffffff) {
Nico Hubera1939832025-10-07 21:58:02 +00001545 msg_pwarn("\nWarning: SPI100 BAR reads all `ff'. Assuming ROM Armor is enabled.\n");
1546 if (rom_range3_len)
1547 return enable_read_amd_spi100_rom3(prog, rom_range3_len);
1548 else
1549 return ERROR_FATAL;
Nico Huber3b9f1522024-07-28 16:09:29 +02001550 }
1551
Nico Huber78cd5592023-01-29 18:24:34 +00001552 msg_pdbg("AltSpiCSEnable=%u, SpiRomEnable=%u", spibar >> 0 & 1, spibar >> 1 & 1);
1553 msg_pdbg(", AbortEnable=%u, RouteTpm2Spi=%u", spibar >> 2 & 1, spibar >> 3 & 1);
1554 msg_pdbg(", PspSpiMmioSel=%u\n", spibar >> 4 & 1);
1555
1556 const bool spirom_enable = spibar & BIT(1);
1557 if (spirom_enable) {
1558 /* If SPI ROM is memory mapped, nothing else can be */
Nico Huber0d2b45e2026-03-23 22:42:46 +01001559 internal_buses_supported &= ~BUS_PRESPI;
Nico Huberc0124d12025-10-26 12:40:14 +01001560 /* Suppress unknown laptop warning with non-SPI buses disabled. */
1561 laptop_ok = true;
Nico Huber78cd5592023-01-29 18:24:34 +00001562 }
1563
1564 const uint32_t phys_spibar = spibar & ~0xff; /* 8 bits config/reserved */
1565 if (!phys_spibar) {
1566 if (spirom_enable)
1567 msg_perr("SPI ROM is enabled but SPI BAR is unconfigured.");
1568 else
1569 msg_pdbg("SPI100 not used.\n");
1570 return 0;
1571 }
1572 msg_pdbg("SPI100 BAR at 0x%08x\n", phys_spibar);
1573
1574 void *const virt_spibar = rphysmap("SPI100 SPI registers", phys_spibar, 256);
1575 if (virt_spibar == ERROR_PTR)
1576 return ERROR_FATAL;
1577
Nico Huber3b9f1522024-07-28 16:09:29 +02001578 /* RomRange2 is supposed to be used for the mapping directly below 4G. */
Nico Huber3b9f1522024-07-28 16:09:29 +02001579 const uint32_t rom_range_end = rom_range2 | 0xffff;
1580 const uint32_t rom_range_start = (rom_range2 & 0xffff) << 16;
1581 const size_t mapped_len = rom_range_end > rom_range_start ? rom_range_end - rom_range_start + 1 : 0;
1582 msg_pdbg("ROM Range 2: 0x%08x..0x%08x (%zu kB)\n", rom_range_start, rom_range_end, mapped_len / KiB);
1583
Nico Hubere3c305d2023-01-29 21:45:56 +00001584 void *memory_mapping = NULL;
1585 if (spirom_enable && mapped_len) {
1586 memory_mapping = rphysmap("SPI100 memory mapping", rom_range_start, mapped_len);
1587 if (memory_mapping == ERROR_PTR)
1588 memory_mapping = NULL;
1589 }
1590
1591 return amd_spi100_probe(virt_spibar, memory_mapping, memory_mapping ? mapped_len : 0);
Nico Huber78cd5592023-01-29 18:24:34 +00001592}
1593
Nico Hubera1939832025-10-07 21:58:02 +00001594static int enable_flash_amd_spi100(struct flashprog_programmer *prog,
1595 struct pci_dev *const smbus, const char *const name)
1596{
1597 return enable_flash_amd_spi100_generic(prog, smbus, name, 0);
1598}
1599
1600static int enable_flash_amd_spi100_rom3(struct flashprog_programmer *prog,
1601 struct pci_dev *const smbus, const char *const name)
1602{
1603 return enable_flash_amd_spi100_generic(prog, smbus, name, 64*MiB);
1604}
1605
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001606/* sets bit 0 in 0x6d */
1607static int enable_flash_nvidia_common(struct pci_dev *dev, const char *name)
1608{
1609 uint8_t old, new;
1610
1611 old = pci_read_byte(dev, 0x6d);
1612 new = old | 0x01;
1613 if (new == old)
1614 return 0;
1615
1616 rpci_write_byte(dev, 0x6d, new);
1617 if (pci_read_byte(dev, 0x6d) != new) {
1618 msg_pinfo("Setting register 0x6d to 0x%02x on %s failed.\n", new, name);
1619 return 1;
1620 }
1621 return 0;
1622}
1623
Nico Huber929d2e12023-01-12 00:47:05 +01001624static int enable_flash_nvidia_nforce2(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Luc Verhaegen90e8e612009-05-26 09:48:28 +00001625{
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001626 rpci_write_byte(dev, 0x92, 0);
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001627 if (enable_flash_nvidia_common(dev, name))
1628 return ERROR_NONFATAL;
1629 else
1630 return 0;
Luc Verhaegen90e8e612009-05-26 09:48:28 +00001631}
1632
Nico Huber929d2e12023-01-12 00:47:05 +01001633static int enable_flash_ck804(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +00001634{
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001635 uint32_t segctrl;
1636 uint8_t reg, old, new;
1637 unsigned int err = 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +00001638
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001639 /* 0x8A is special: it is a single byte and only one nibble is touched. */
1640 reg = 0x8A;
1641 segctrl = pci_read_byte(dev, reg);
1642 if ((segctrl & 0x3) != 0x0) {
1643 if ((segctrl & 0xC) != 0x0) {
1644 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1645 err++;
1646 } else {
1647 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1648 rpci_write_byte(dev, reg, segctrl & 0xF0);
1649
1650 segctrl = pci_read_byte(dev, reg);
1651 if ((segctrl & 0x3) != 0x0) {
1652 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%x).\n",
1653 reg, segctrl);
1654 err++;
1655 } else
1656 msg_pdbg("OK\n");
1657 }
Jonathan Kollasch9ce498e2011-08-06 12:45:21 +00001658 }
1659
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001660 for (reg = 0x8C; reg <= 0x94; reg += 4) {
1661 segctrl = pci_read_long(dev, reg);
1662 if ((segctrl & 0x33333333) == 0x00000000) {
1663 /* reads and writes are unlocked */
1664 continue;
1665 }
1666 if ((segctrl & 0xCCCCCCCC) != 0x00000000) {
1667 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1668 err++;
1669 continue;
1670 }
1671 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1672 rpci_write_long(dev, reg, 0x00000000);
1673
1674 segctrl = pci_read_long(dev, reg);
1675 if ((segctrl & 0x33333333) != 0x00000000) {
1676 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%08x).\n",
1677 reg, segctrl);
1678 err++;
1679 } else
1680 msg_pdbg("OK\n");
1681 }
1682
1683 if (err > 0) {
1684 msg_pinfo("%d locks could not be disabled, disabling writes (reads may also fail).\n", err);
Felix Singer980d6b82022-08-19 02:48:15 +02001685 programmer_may_write = false;
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001686 }
1687
1688 reg = 0x88;
1689 old = pci_read_byte(dev, reg);
1690 new = old | 0xC0;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001691 if (new != old) {
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001692 rpci_write_byte(dev, reg, new);
Stefan Taunere34e3e82013-01-01 00:06:51 +00001693 if (pci_read_byte(dev, reg) != new) { /* FIXME: share this with other code? */
1694 msg_pinfo("Setting register 0x%02x to 0x%02x on %s failed.\n", reg, new, name);
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001695 err++;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001696 }
1697 }
Yinghai Lu952dfce2005-07-06 17:13:46 +00001698
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001699 if (enable_flash_nvidia_common(dev, name))
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001700 err++;
1701
1702 if (err > 0)
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001703 return ERROR_NONFATAL;
1704 else
Uwe Hermanna7e05482007-05-09 10:17:44 +00001705 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +00001706}
1707
Nico Huber929d2e12023-01-12 00:47:05 +01001708static int enable_flash_osb4(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Joshua Roys85835d82010-09-15 14:47:56 +00001709{
1710 uint8_t tmp;
1711
Nico Huber2e50cdc2018-09-23 20:20:26 +02001712 internal_buses_supported &= BUS_PARALLEL;
Joshua Roys85835d82010-09-15 14:47:56 +00001713
1714 tmp = INB(0xc06);
1715 tmp |= 0x1;
1716 OUTB(tmp, 0xc06);
1717
1718 tmp = INB(0xc6f);
1719 tmp |= 0x40;
1720 OUTB(tmp, 0xc6f);
1721
1722 return 0;
1723}
1724
Uwe Hermann372eeb52007-12-04 21:49:06 +00001725/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
Nico Huber929d2e12023-01-12 00:47:05 +01001726static int enable_flash_sb400(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +00001727{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001728 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +00001729 struct pci_dev *smbusdev;
1730
Uwe Hermann372eeb52007-12-04 21:49:06 +00001731 /* Look for the SMBus device. */
Edward O'Callaghan19ce50d2021-11-13 17:59:18 +11001732 smbusdev = pcidev_find(0x1002, 0x4372);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001733
Uwe Hermanna7e05482007-05-09 10:17:44 +00001734 if (!smbusdev) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001735 msg_perr("ERROR: SMBus device not found. Aborting.\n");
Tadas Slotkus0e3f1cf2011-09-06 18:49:31 +00001736 return ERROR_FATAL;
Stefan Reinauer86de2832006-03-31 11:26:55 +00001737 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001738
Uwe Hermann372eeb52007-12-04 21:49:06 +00001739 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001740 tmp = pci_read_byte(smbusdev, 0x79);
1741 tmp |= 0x01;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001742 rpci_write_byte(smbusdev, 0x79, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001743
Uwe Hermann372eeb52007-12-04 21:49:06 +00001744 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001745 tmp = pci_read_byte(dev, 0x48);
1746 tmp |= 0x21;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001747 rpci_write_byte(dev, 0x48, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001748
Uwe Hermann372eeb52007-12-04 21:49:06 +00001749 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +00001750 tmp = INB(0xc6f);
1751 OUTB(tmp, 0xeb);
1752 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001753 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +00001754 OUTB(tmp, 0xc6f);
1755 OUTB(tmp, 0xeb);
1756 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001757
1758 return 0;
1759}
1760
Nico Huber929d2e12023-01-12 00:47:05 +01001761static int enable_flash_mcp55(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +00001762{
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001763 uint8_t val;
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001764 uint16_t wordval;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001765
Uwe Hermann372eeb52007-12-04 21:49:06 +00001766 /* Set the 0-16 MB enable bits. */
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001767 val = pci_read_byte(dev, 0x88);
1768 val |= 0xff; /* 256K */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001769 rpci_write_byte(dev, 0x88, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001770 val = pci_read_byte(dev, 0x8c);
1771 val |= 0xff; /* 1M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001772 rpci_write_byte(dev, 0x8c, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001773 wordval = pci_read_word(dev, 0x90);
1774 wordval |= 0x7fff; /* 16M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001775 rpci_write_word(dev, 0x90, wordval);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001776
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001777 if (enable_flash_nvidia_common(dev, name))
1778 return ERROR_NONFATAL;
1779 else
Uwe Hermanna7e05482007-05-09 10:17:44 +00001780 return 0;
Yinghai Luca782972007-01-22 20:21:17 +00001781}
1782
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001783/*
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001784 * The MCP6x/MCP7x code is based on cleanroom reverse engineering.
1785 * It is assumed that LPC chips need the MCP55 code and SPI chips need the
1786 * code provided in enable_flash_mcp6x_7x_common.
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001787 */
Nico Huber929d2e12023-01-12 00:47:05 +01001788static int enable_flash_mcp6x_7x(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001789{
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001790 int ret = 0, want_spi = 0;
Michael Karchercfa674f2010-02-25 11:38:23 +00001791 uint8_t val;
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001792
1793 /* dev is the ISA bridge. No idea what the stuff below does. */
Michael Karchercfa674f2010-02-25 11:38:23 +00001794 val = pci_read_byte(dev, 0x8a);
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001795 msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 "
Michael Karchercfa674f2010-02-25 11:38:23 +00001796 "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1);
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001797
Michael Karchercfa674f2010-02-25 11:38:23 +00001798 switch ((val >> 5) & 0x3) {
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001799 case 0x0:
Nico Huber929d2e12023-01-12 00:47:05 +01001800 ret = enable_flash_mcp55(prog, dev, name);
Nico Huber2e50cdc2018-09-23 20:20:26 +02001801 internal_buses_supported &= BUS_LPC;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001802 msg_pdbg("Flash bus type is LPC\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001803 break;
1804 case 0x2:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001805 want_spi = 1;
1806 /* SPI is added in mcp6x_spi_init if it works.
1807 * Do we really want to disable LPC in this case?
1808 */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00001809 internal_buses_supported = BUS_NONE;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001810 msg_pdbg("Flash bus type is SPI\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001811 break;
1812 default:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001813 /* Should not happen. */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00001814 internal_buses_supported = BUS_NONE;
Stefan Tauner7ba3d6c2014-06-12 21:07:03 +00001815 msg_pwarn("Flash bus type is unknown (none)\n");
Nico Huberc3b02dc2023-08-12 01:13:45 +02001816 msg_pinfo("Please send the log files created by \"flashprog -p internal -o logfile\" to\n"
1817 "flashprog@flashprog.org with \"your board name: flashprog -V\" as the subject\n"
Nico Huberac90af62022-12-18 00:22:47 +00001818 "to help us finish support for your chipset. Thanks.\n");
Stefan Tauner7ba3d6c2014-06-12 21:07:03 +00001819 return ERROR_NONFATAL;
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001820 }
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001821
1822 /* Force enable SPI and disable LPC? Not a good idea. */
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001823#if 0
Michael Karchercfa674f2010-02-25 11:38:23 +00001824 val |= (1 << 6);
1825 val &= ~(1 << 5);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001826 rpci_write_byte(dev, 0x8a, val);
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001827#endif
1828
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001829 if (mcp6x_spi_init(want_spi))
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001830 ret = 1;
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001831
Nico Huber2e50cdc2018-09-23 20:20:26 +02001832 /* Suppress unknown laptop warning if we booted from SPI. */
1833 if (!ret && want_spi)
Felix Singerd1ab7d22022-08-19 03:03:47 +02001834 laptop_ok = true;
Nico Huber2e50cdc2018-09-23 20:20:26 +02001835
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001836 return ret;
1837}
1838
Nico Huber929d2e12023-01-12 00:47:05 +01001839static int enable_flash_ht1000(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001840{
Michael Karchercfa674f2010-02-25 11:38:23 +00001841 uint8_t val;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001842
Uwe Hermanne823ee02007-06-05 15:02:18 +00001843 /* Set the 4MB enable bit. */
Michael Karchercfa674f2010-02-25 11:38:23 +00001844 val = pci_read_byte(dev, 0x41);
1845 val |= 0x0e;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001846 rpci_write_byte(dev, 0x41, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001847
Michael Karchercfa674f2010-02-25 11:38:23 +00001848 val = pci_read_byte(dev, 0x43);
1849 val |= (1 << 4);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001850 rpci_write_byte(dev, 0x43, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001851
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001852 return 0;
1853}
1854
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001855/*
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001856 * Usually on the x86 architectures (and on other PC-like platforms like some
1857 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
1858 * Elan SC520 only a small piece of the system flash is mapped there, but the
1859 * complete flash is mapped somewhere below 1G. The position can be determined
1860 * by the BOOTCS PAR register.
1861 */
Nico Huber929d2e12023-01-12 00:47:05 +01001862static int get_flashbase_sc520(struct flashprog_programmer *prog, struct pci_dev *dev, const char *name)
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001863{
Nico Huber47aa85c2026-02-21 14:57:20 +01001864 struct internal_data *const internal = prog->data;
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001865 int i, bootcs_found = 0;
1866 uint32_t parx = 0;
1867 void *mmcr;
1868
1869 /* 1. Map MMCR */
Stefan Reinauer0593f212009-01-26 01:10:48 +00001870 mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
Niklas Söderlund5d307202013-09-14 09:02:27 +00001871 if (mmcr == ERROR_PTR)
1872 return ERROR_FATAL;
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001873
1874 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
1875 * BOOTCS region (PARx[31:29] = 100b)e
1876 */
1877 for (i = 0x88; i <= 0xc4; i += 4) {
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +00001878 parx = mmio_readl(mmcr + i);
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001879 if ((parx >> 29) == 4) {
1880 bootcs_found = 1;
1881 break; /* BOOTCS found */
1882 }
1883 }
1884
Nico Huber47aa85c2026-02-21 14:57:20 +01001885 /* 3. PARx[25] = 1b --> rom_base[29:16] = PARx[13:0]
1886 * PARx[25] = 0b --> rom_base[29:12] = PARx[17:0]
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001887 */
1888 if (bootcs_found) {
1889 if (parx & (1 << 25)) {
1890 parx &= (1 << 14) - 1; /* Mask [13:0] */
Nico Huber47aa85c2026-02-21 14:57:20 +01001891 internal->rom_base = parx << 16;
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001892 } else {
1893 parx &= (1 << 18) - 1; /* Mask [17:0] */
Nico Huber47aa85c2026-02-21 14:57:20 +01001894 internal->rom_base = parx << 12;
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001895 }
1896 } else {
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001897 msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. "
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001898 "Assuming flash at 4G.\n");
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001899 }
1900
1901 /* 4. Clean up */
Carl-Daniel Hailfingerbe726812009-08-09 12:44:08 +00001902 physunmap(mmcr, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001903 return 0;
1904}
1905
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001906#endif
1907
Nico Huber019810f2023-01-29 17:11:24 +00001908#define REV(r) true, r
1909#define ANY_REV false, 0x00
1910
Nico Huber2e50cdc2018-09-23 20:20:26 +02001911#define B_P (BUS_PARALLEL)
Nico Huber0d2b45e2026-03-23 22:42:46 +01001912#define B_PFL (BUS_PRESPI)
1913#define B_PFLS (BUS_PRESPI | BUS_SPI)
Nico Huber2e50cdc2018-09-23 20:20:26 +02001914#define B_FL (BUS_FWH | BUS_LPC)
1915#define B_FLS (BUS_FWH | BUS_LPC | BUS_SPI)
1916#define B_FS (BUS_FWH | BUS_SPI)
1917#define B_L (BUS_LPC)
1918#define B_LS (BUS_LPC | BUS_SPI)
1919#define B_S (BUS_SPI)
1920
Idwer Vollering326a0602011-06-18 18:45:41 +00001921/* Please keep this list numerically sorted by vendor/device ID. */
Uwe Hermann05fab752009-05-16 23:42:17 +00001922const struct penable chipset_enables[] = {
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001923#if defined(__i386__) || defined(__x86_64__)
Nico Huber019810f2023-01-29 17:11:24 +00001924 {0x1002, 0x4377, ANY_REV, B_PFL, OK, "ATI", "SB400", enable_flash_sb400},
1925 {0x1002, 0x438d, ANY_REV, B_FLS, OK, "AMD", "SB600", enable_flash_sb600},
1926 {0x1002, 0x439d, ANY_REV, B_FLS, OK, "AMD", "SB7x0/SB8x0/SB9x0", enable_flash_sb600},
1927 {0x100b, 0x0510, ANY_REV, B_PFL, NT, "AMD", "SC1100", enable_flash_sc1100},
1928 {0x1022, 0x2080, ANY_REV, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1929 {0x1022, 0x2090, ANY_REV, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1930 {0x1022, 0x3000, ANY_REV, B_PFL, OK, "AMD", "Elan SC520", get_flashbase_sc520},
1931 {0x1022, 0x7440, ANY_REV, B_PFL, OK, "AMD", "AMD-768", enable_flash_amd_768_8111},
1932 {0x1022, 0x7468, ANY_REV, B_PFL, OK, "AMD", "AMD-8111", enable_flash_amd_768_8111},
1933 {0x1022, 0x780e, ANY_REV, B_FLS, OK, "AMD", "FCH", enable_flash_sb600},
Nico Hubere604d562023-01-29 17:34:57 +00001934 {0x1022, 0x790b, REV(0x4a), B_FLS, OK, "AMD", "Merlin Falcon", enable_flash_sb600_smbus},
1935 {0x1022, 0x790b, REV(0x4b), B_FLS, OK, "AMD", "Stoney Ridge", enable_flash_sb600_smbus},
Nico Huber78cd5592023-01-29 18:24:34 +00001936 {0x1022, 0x790b, REV(0x51), B_FLS, NT, "AMD", "Renoir/Cezanne", enable_flash_amd_spi100},
Nico Huber96f964b2023-02-21 23:47:51 +01001937 {0x1022, 0x790b, REV(0x59), B_FLS, DEP, "AMD", "Pinnacle Ridge", enable_flash_amd_spi100},
Nico Hubera1939832025-10-07 21:58:02 +00001938 {0x1022, 0x790b, REV(0x61), B_FLS, DEP, "AMD", "Raven Ridge/Matisse/Starship", enable_flash_amd_spi100_rom3},
Nico Huber56d236b2024-07-13 15:51:37 +02001939 {0x1022, 0x790b, REV(0x71), B_FLS, DEP, "AMD", "Mendocino/Van Gogh/Rembrandt/Raphael/Genoa",
Nico Hubera1939832025-10-07 21:58:02 +00001940 enable_flash_amd_spi100_rom3},
Nico Huber019810f2023-01-29 17:11:24 +00001941 {0x1039, 0x0406, ANY_REV, B_PFL, NT, "SiS", "501/5101/5501", enable_flash_sis501},
1942 {0x1039, 0x0496, ANY_REV, B_PFL, NT, "SiS", "85C496+497", enable_flash_sis85c496},
1943 {0x1039, 0x0530, ANY_REV, B_PFL, OK, "SiS", "530", enable_flash_sis530},
1944 {0x1039, 0x0540, ANY_REV, B_PFL, NT, "SiS", "540", enable_flash_sis540},
1945 {0x1039, 0x0620, ANY_REV, B_PFL, NT, "SiS", "620", enable_flash_sis530},
1946 {0x1039, 0x0630, ANY_REV, B_PFL, OK, "SiS", "630", enable_flash_sis540},
1947 {0x1039, 0x0635, ANY_REV, B_PFL, NT, "SiS", "635", enable_flash_sis540},
1948 {0x1039, 0x0640, ANY_REV, B_PFL, NT, "SiS", "640", enable_flash_sis540},
1949 {0x1039, 0x0645, ANY_REV, B_PFL, NT, "SiS", "645", enable_flash_sis540},
1950 {0x1039, 0x0646, ANY_REV, B_PFL, OK, "SiS", "645DX", enable_flash_sis540},
1951 {0x1039, 0x0648, ANY_REV, B_PFL, OK, "SiS", "648", enable_flash_sis540},
1952 {0x1039, 0x0650, ANY_REV, B_PFL, OK, "SiS", "650", enable_flash_sis540},
1953 {0x1039, 0x0651, ANY_REV, B_PFL, OK, "SiS", "651", enable_flash_sis540},
1954 {0x1039, 0x0655, ANY_REV, B_PFL, NT, "SiS", "655", enable_flash_sis540},
1955 {0x1039, 0x0661, ANY_REV, B_PFL, OK, "SiS", "661", enable_flash_sis540},
1956 {0x1039, 0x0730, ANY_REV, B_PFL, OK, "SiS", "730", enable_flash_sis540},
1957 {0x1039, 0x0733, ANY_REV, B_PFL, NT, "SiS", "733", enable_flash_sis540},
1958 {0x1039, 0x0735, ANY_REV, B_PFL, OK, "SiS", "735", enable_flash_sis540},
1959 {0x1039, 0x0740, ANY_REV, B_PFL, NT, "SiS", "740", enable_flash_sis540},
1960 {0x1039, 0x0741, ANY_REV, B_PFL, OK, "SiS", "741", enable_flash_sis540},
1961 {0x1039, 0x0745, ANY_REV, B_PFL, OK, "SiS", "745", enable_flash_sis540},
1962 {0x1039, 0x0746, ANY_REV, B_PFL, NT, "SiS", "746", enable_flash_sis540},
1963 {0x1039, 0x0748, ANY_REV, B_PFL, NT, "SiS", "748", enable_flash_sis540},
1964 {0x1039, 0x0755, ANY_REV, B_PFL, OK, "SiS", "755", enable_flash_sis540},
1965 {0x1039, 0x5511, ANY_REV, B_PFL, NT, "SiS", "5511", enable_flash_sis5511},
1966 {0x1039, 0x5571, ANY_REV, B_PFL, NT, "SiS", "5571", enable_flash_sis530},
1967 {0x1039, 0x5591, ANY_REV, B_PFL, NT, "SiS", "5591/5592", enable_flash_sis530},
1968 {0x1039, 0x5596, ANY_REV, B_PFL, NT, "SiS", "5596", enable_flash_sis5511},
1969 {0x1039, 0x5597, ANY_REV, B_PFL, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530},
1970 {0x1039, 0x5600, ANY_REV, B_PFL, NT, "SiS", "600", enable_flash_sis530},
1971 {0x1078, 0x0100, ANY_REV, B_P, OK, "AMD", "CS5530(A)", enable_flash_cs5530},
1972 {0x10b9, 0x1533, ANY_REV, B_PFL, OK, "ALi", "M1533", enable_flash_ali_m1533},
1973 {0x10de, 0x0030, ANY_REV, B_PFL, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2},
1974 {0x10de, 0x0050, ANY_REV, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */
1975 {0x10de, 0x0051, ANY_REV, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */
1976 {0x10de, 0x0060, ANY_REV, B_PFL, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2},
1977 {0x10de, 0x00e0, ANY_REV, B_PFL, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2},
Uwe Hermanneac10162008-03-13 18:52:51 +00001978 /* Slave, should not be here, to fix known bug for A01. */
Nico Huber019810f2023-01-29 17:11:24 +00001979 {0x10de, 0x00d3, ANY_REV, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804},
1980 {0x10de, 0x0260, ANY_REV, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1981 {0x10de, 0x0261, ANY_REV, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1982 {0x10de, 0x0262, ANY_REV, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1983 {0x10de, 0x0263, ANY_REV, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1984 {0x10de, 0x0360, ANY_REV, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001985 /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to
1986 * the flash chip. Instead, 10de:0364 is connected to the flash chip.
1987 * Until we have PCI device class matching or some fallback mechanism,
Nico Huberc3b02dc2023-08-12 01:13:45 +02001988 * this is needed to get flashprog working on Tyan S2915 and maybe other
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001989 * dual-MCP55 boards.
1990 */
1991#if 0
Nico Huber019810f2023-01-29 17:11:24 +00001992 {0x10de, 0x0361, ANY_REV, B_L, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001993#endif
Nico Huber019810f2023-01-29 17:11:24 +00001994 {0x10de, 0x0362, ANY_REV, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1995 {0x10de, 0x0363, ANY_REV, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1996 {0x10de, 0x0364, ANY_REV, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1997 {0x10de, 0x0365, ANY_REV, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1998 {0x10de, 0x0366, ANY_REV, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1999 {0x10de, 0x0367, ANY_REV, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */
2000 {0x10de, 0x03e0, ANY_REV, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
2001 {0x10de, 0x03e1, ANY_REV, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
2002 {0x10de, 0x03e3, ANY_REV, B_LS, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
2003 {0x10de, 0x0440, ANY_REV, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
2004 {0x10de, 0x0441, ANY_REV, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
2005 {0x10de, 0x0442, ANY_REV, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
2006 {0x10de, 0x0443, ANY_REV, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
2007 {0x10de, 0x0548, ANY_REV, B_LS, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x},
2008 {0x10de, 0x075c, ANY_REV, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
2009 {0x10de, 0x075d, ANY_REV, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
2010 {0x10de, 0x07d7, ANY_REV, B_LS, OK, "NVIDIA", "MCP73", enable_flash_mcp6x_7x},
2011 {0x10de, 0x0aac, ANY_REV, B_LS, OK, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
2012 {0x10de, 0x0aad, ANY_REV, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
2013 {0x10de, 0x0aae, ANY_REV, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
2014 {0x10de, 0x0aaf, ANY_REV, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
2015 {0x10de, 0x0d80, ANY_REV, B_LS, NT, "NVIDIA", "MCP89", enable_flash_mcp6x_7x},
Michael Karcher89bed6d2010-06-13 10:16:12 +00002016 /* VIA northbridges */
Nico Huber019810f2023-01-29 17:11:24 +00002017 {0x1106, 0x0585, ANY_REV, B_PFLS, NT, "VIA", "VT82C585VPX", via_no_byte_merge},
2018 {0x1106, 0x0595, ANY_REV, B_PFLS, NT, "VIA", "VT82C595", via_no_byte_merge},
2019 {0x1106, 0x0597, ANY_REV, B_PFLS, NT, "VIA", "VT82C597", via_no_byte_merge},
2020 {0x1106, 0x0601, ANY_REV, B_PFLS, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge},
2021 {0x1106, 0x0691, ANY_REV, B_PFLS, OK, "VIA", "VT82C69x", via_no_byte_merge},
2022 {0x1106, 0x8601, ANY_REV, B_PFLS, NT, "VIA", "VT8601T", via_no_byte_merge},
Michael Karcher89bed6d2010-06-13 10:16:12 +00002023 /* VIA southbridges */
Nico Huber019810f2023-01-29 17:11:24 +00002024 {0x1106, 0x0586, ANY_REV, B_PFL, OK, "VIA", "VT82C586A/B", enable_flash_vt82c586},
2025 {0x1106, 0x0596, ANY_REV, B_PFL, OK, "VIA", "VT82C596", enable_flash_vt82c596},
2026 {0x1106, 0x0686, ANY_REV, B_PFL, OK, "VIA", "VT82C686A/B", enable_flash_vt82c596},
2027 {0x1106, 0x3074, ANY_REV, B_FL, OK, "VIA", "VT8233", enable_flash_vt823x},
2028 {0x1106, 0x3147, ANY_REV, B_FL, OK, "VIA", "VT8233A", enable_flash_vt823x},
2029 {0x1106, 0x3177, ANY_REV, B_FL, OK, "VIA", "VT8235", enable_flash_vt823x},
2030 {0x1106, 0x3227, ANY_REV, B_FL, OK, "VIA", "VT8237(R)", enable_flash_vt823x},
2031 {0x1106, 0x3287, ANY_REV, B_FL, OK, "VIA", "VT8251", enable_flash_vt823x},
2032 {0x1106, 0x3337, ANY_REV, B_FL, OK, "VIA", "VT8237A", enable_flash_vt823x},
2033 {0x1106, 0x3372, ANY_REV, B_LS, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi},
2034 {0x1106, 0x8231, ANY_REV, B_FL, NT, "VIA", "VT8231", enable_flash_vt823x},
2035 {0x1106, 0x8324, ANY_REV, B_FL, OK, "VIA", "CX700", enable_flash_vt823x},
2036 {0x1106, 0x8353, ANY_REV, B_FLS, NT, "VIA", "VX800/VX820", enable_flash_vt_vx},
2037 {0x1106, 0x8409, ANY_REV, B_FLS, OK, "VIA", "VX855/VX875", enable_flash_vt_vx},
2038 {0x1106, 0x8410, ANY_REV, B_FLS, OK, "VIA", "VX900", enable_flash_vt_vx},
2039 {0x1166, 0x0200, ANY_REV, B_P, OK, "Broadcom", "OSB4", enable_flash_osb4},
2040 {0x1166, 0x0205, ANY_REV, B_PFL, OK, "Broadcom", "HT-1000", enable_flash_ht1000},
2041 {0x17f3, 0x6030, ANY_REV, B_PFL, OK, "RDC", "R8610/R3210", enable_flash_rdc_r8610},
2042 {0x8086, 0x0c60, ANY_REV, B_FS, NT, "Intel", "S12x0", enable_flash_s12x0},
2043 {0x8086, 0x0f1c, ANY_REV, B_FS, OK, "Intel", "Bay Trail", enable_flash_silvermont},
2044 {0x8086, 0x0f1d, ANY_REV, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
2045 {0x8086, 0x0f1e, ANY_REV, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
2046 {0x8086, 0x0f1f, ANY_REV, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
2047 {0x8086, 0x122e, ANY_REV, B_P, OK, "Intel", "PIIX", enable_flash_piix4},
2048 {0x8086, 0x1234, ANY_REV, B_P, NT, "Intel", "MPIIX", enable_flash_piix4},
2049 {0x8086, 0x1c44, ANY_REV, B_FS, DEP, "Intel", "Z68", enable_flash_pch6},
2050 {0x8086, 0x1c46, ANY_REV, B_FS, DEP, "Intel", "P67", enable_flash_pch6},
2051 {0x8086, 0x1c47, ANY_REV, B_FS, NT, "Intel", "UM67", enable_flash_pch6},
2052 {0x8086, 0x1c49, ANY_REV, B_FS, DEP, "Intel", "HM65", enable_flash_pch6},
2053 {0x8086, 0x1c4a, ANY_REV, B_FS, DEP, "Intel", "H67", enable_flash_pch6},
2054 {0x8086, 0x1c4b, ANY_REV, B_FS, NT, "Intel", "HM67", enable_flash_pch6},
2055 {0x8086, 0x1c4c, ANY_REV, B_FS, NT, "Intel", "Q65", enable_flash_pch6},
2056 {0x8086, 0x1c4d, ANY_REV, B_FS, DEP, "Intel", "QS67", enable_flash_pch6},
2057 {0x8086, 0x1c4e, ANY_REV, B_FS, DEP, "Intel", "Q67", enable_flash_pch6},
2058 {0x8086, 0x1c4f, ANY_REV, B_FS, DEP, "Intel", "QM67", enable_flash_pch6},
2059 {0x8086, 0x1c50, ANY_REV, B_FS, NT, "Intel", "B65", enable_flash_pch6},
2060 {0x8086, 0x1c52, ANY_REV, B_FS, NT, "Intel", "C202", enable_flash_pch6},
2061 {0x8086, 0x1c54, ANY_REV, B_FS, DEP, "Intel", "C204", enable_flash_pch6},
2062 {0x8086, 0x1c56, ANY_REV, B_FS, NT, "Intel", "C206", enable_flash_pch6},
2063 {0x8086, 0x1c5c, ANY_REV, B_FS, DEP, "Intel", "H61", enable_flash_pch6},
2064 {0x8086, 0x1d40, ANY_REV, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
2065 {0x8086, 0x1d41, ANY_REV, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
2066 {0x8086, 0x1e41, ANY_REV, B_FS, DEP, "Intel", "Desktop Sample", enable_flash_pch7},
2067 {0x8086, 0x1e42, ANY_REV, B_FS, DEP, "Intel", "Mobile Sample", enable_flash_pch7},
2068 {0x8086, 0x1e43, ANY_REV, B_FS, DEP, "Intel", "SFF Sample", enable_flash_pch7},
2069 {0x8086, 0x1e44, ANY_REV, B_FS, DEP, "Intel", "Z77", enable_flash_pch7},
2070 {0x8086, 0x1e46, ANY_REV, B_FS, NT, "Intel", "Z75", enable_flash_pch7},
2071 {0x8086, 0x1e47, ANY_REV, B_FS, DEP, "Intel", "Q77", enable_flash_pch7},
2072 {0x8086, 0x1e48, ANY_REV, B_FS, DEP, "Intel", "Q75", enable_flash_pch7},
2073 {0x8086, 0x1e49, ANY_REV, B_FS, DEP, "Intel", "B75", enable_flash_pch7},
2074 {0x8086, 0x1e4a, ANY_REV, B_FS, DEP, "Intel", "H77", enable_flash_pch7},
2075 {0x8086, 0x1e53, ANY_REV, B_FS, DEP, "Intel", "C216", enable_flash_pch7},
2076 {0x8086, 0x1e55, ANY_REV, B_FS, DEP, "Intel", "QM77", enable_flash_pch7},
2077 {0x8086, 0x1e56, ANY_REV, B_FS, DEP, "Intel", "QS77", enable_flash_pch7},
2078 {0x8086, 0x1e57, ANY_REV, B_FS, DEP, "Intel", "HM77", enable_flash_pch7},
2079 {0x8086, 0x1e58, ANY_REV, B_FS, NT, "Intel", "UM77", enable_flash_pch7},
2080 {0x8086, 0x1e59, ANY_REV, B_FS, DEP, "Intel", "HM76", enable_flash_pch7},
2081 {0x8086, 0x1e5d, ANY_REV, B_FS, DEP, "Intel", "HM75", enable_flash_pch7},
2082 {0x8086, 0x1e5e, ANY_REV, B_FS, NT, "Intel", "HM70", enable_flash_pch7},
2083 {0x8086, 0x1e5f, ANY_REV, B_FS, DEP, "Intel", "NM70", enable_flash_pch7},
2084 {0x8086, 0x1f38, ANY_REV, B_FS, DEP, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
2085 {0x8086, 0x1f39, ANY_REV, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
2086 {0x8086, 0x1f3a, ANY_REV, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
2087 {0x8086, 0x1f3b, ANY_REV, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
2088 {0x8086, 0x229c, ANY_REV, B_FS, OK, "Intel", "Braswell", enable_flash_silvermont},
2089 {0x8086, 0x2310, ANY_REV, B_FS, NT, "Intel", "DH89xxCC (Cave Creek)", enable_flash_pch7},
2090 {0x8086, 0x2390, ANY_REV, B_FS, NT, "Intel", "Coleto Creek", enable_flash_pch7},
2091 {0x8086, 0x2410, ANY_REV, B_FL, OK, "Intel", "ICH", enable_flash_ich0},
2092 {0x8086, 0x2420, ANY_REV, B_FL, OK, "Intel", "ICH0", enable_flash_ich0},
2093 {0x8086, 0x2440, ANY_REV, B_FL, OK, "Intel", "ICH2", enable_flash_ich2345},
2094 {0x8086, 0x244c, ANY_REV, B_FL, OK, "Intel", "ICH2-M", enable_flash_ich2345},
2095 {0x8086, 0x2450, ANY_REV, B_FL, NT, "Intel", "C-ICH", enable_flash_ich2345},
2096 {0x8086, 0x2480, ANY_REV, B_FL, OK, "Intel", "ICH3-S", enable_flash_ich2345},
2097 {0x8086, 0x248c, ANY_REV, B_FL, OK, "Intel", "ICH3-M", enable_flash_ich2345},
2098 {0x8086, 0x24c0, ANY_REV, B_FL, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich2345},
2099 {0x8086, 0x24cc, ANY_REV, B_FL, OK, "Intel", "ICH4-M", enable_flash_ich2345},
2100 {0x8086, 0x24d0, ANY_REV, B_FL, OK, "Intel", "ICH5/ICH5R", enable_flash_ich2345},
2101 {0x8086, 0x25a1, ANY_REV, B_FL, OK, "Intel", "6300ESB", enable_flash_ich2345},
2102 {0x8086, 0x2640, ANY_REV, B_FL, OK, "Intel", "ICH6/ICH6R", enable_flash_ich6},
2103 {0x8086, 0x2641, ANY_REV, B_FL, OK, "Intel", "ICH6-M", enable_flash_ich6},
2104 {0x8086, 0x2642, ANY_REV, B_FL, NT, "Intel", "ICH6W/ICH6RW", enable_flash_ich6},
2105 {0x8086, 0x2670, ANY_REV, B_FL, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich6},
2106 {0x8086, 0x27b0, ANY_REV, B_FS, OK, "Intel", "ICH7DH", enable_flash_ich7},
2107 {0x8086, 0x27b8, ANY_REV, B_FS, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7},
2108 {0x8086, 0x27b9, ANY_REV, B_FS, OK, "Intel", "ICH7M", enable_flash_ich7},
2109 {0x8086, 0x27bc, ANY_REV, B_FS, OK, "Intel", "NM10", enable_flash_ich7},
2110 {0x8086, 0x27bd, ANY_REV, B_FS, OK, "Intel", "ICH7MDH", enable_flash_ich7},
2111 {0x8086, 0x2810, ANY_REV, B_FS, DEP, "Intel", "ICH8/ICH8R", enable_flash_ich8},
2112 {0x8086, 0x2811, ANY_REV, B_FS, DEP, "Intel", "ICH8M-E", enable_flash_ich8},
2113 {0x8086, 0x2812, ANY_REV, B_FS, DEP, "Intel", "ICH8DH", enable_flash_ich8},
2114 {0x8086, 0x2814, ANY_REV, B_FS, DEP, "Intel", "ICH8DO", enable_flash_ich8},
2115 {0x8086, 0x2815, ANY_REV, B_FS, DEP, "Intel", "ICH8M", enable_flash_ich8},
2116 {0x8086, 0x2910, ANY_REV, B_FS, DEP, "Intel", "ICH9 Eng. Sample", enable_flash_ich9},
2117 {0x8086, 0x2912, ANY_REV, B_FS, DEP, "Intel", "ICH9DH", enable_flash_ich9},
2118 {0x8086, 0x2914, ANY_REV, B_FS, DEP, "Intel", "ICH9DO", enable_flash_ich9},
2119 {0x8086, 0x2916, ANY_REV, B_FS, DEP, "Intel", "ICH9R", enable_flash_ich9},
2120 {0x8086, 0x2917, ANY_REV, B_FS, DEP, "Intel", "ICH9M-E", enable_flash_ich9},
2121 {0x8086, 0x2918, ANY_REV, B_FS, DEP, "Intel", "ICH9", enable_flash_ich9},
2122 {0x8086, 0x2919, ANY_REV, B_FS, DEP, "Intel", "ICH9M", enable_flash_ich9},
2123 {0x8086, 0x3a10, ANY_REV, B_FS, NT, "Intel", "ICH10R Eng. Sample", enable_flash_ich10},
2124 {0x8086, 0x3a14, ANY_REV, B_FS, DEP, "Intel", "ICH10DO", enable_flash_ich10},
2125 {0x8086, 0x3a16, ANY_REV, B_FS, DEP, "Intel", "ICH10R", enable_flash_ich10},
2126 {0x8086, 0x3a18, ANY_REV, B_FS, DEP, "Intel", "ICH10", enable_flash_ich10},
2127 {0x8086, 0x3a1a, ANY_REV, B_FS, DEP, "Intel", "ICH10D", enable_flash_ich10},
2128 {0x8086, 0x3a1e, ANY_REV, B_FS, NT, "Intel", "ICH10 Eng. Sample", enable_flash_ich10},
2129 {0x8086, 0x3b00, ANY_REV, B_FS, NT, "Intel", "3400 Desktop", enable_flash_pch5},
2130 {0x8086, 0x3b01, ANY_REV, B_FS, NT, "Intel", "3400 Mobile", enable_flash_pch5},
2131 {0x8086, 0x3b02, ANY_REV, B_FS, NT, "Intel", "P55", enable_flash_pch5},
2132 {0x8086, 0x3b03, ANY_REV, B_FS, DEP, "Intel", "PM55", enable_flash_pch5},
2133 {0x8086, 0x3b06, ANY_REV, B_FS, DEP, "Intel", "H55", enable_flash_pch5},
2134 {0x8086, 0x3b07, ANY_REV, B_FS, DEP, "Intel", "QM57", enable_flash_pch5},
2135 {0x8086, 0x3b08, ANY_REV, B_FS, NT, "Intel", "H57", enable_flash_pch5},
2136 {0x8086, 0x3b09, ANY_REV, B_FS, DEP, "Intel", "HM55", enable_flash_pch5},
2137 {0x8086, 0x3b0a, ANY_REV, B_FS, NT, "Intel", "Q57", enable_flash_pch5},
2138 {0x8086, 0x3b0b, ANY_REV, B_FS, NT, "Intel", "HM57", enable_flash_pch5},
2139 {0x8086, 0x3b0d, ANY_REV, B_FS, NT, "Intel", "3400 Mobile SFF", enable_flash_pch5},
2140 {0x8086, 0x3b0e, ANY_REV, B_FS, NT, "Intel", "B55", enable_flash_pch5},
2141 {0x8086, 0x3b0f, ANY_REV, B_FS, DEP, "Intel", "QS57", enable_flash_pch5},
2142 {0x8086, 0x3b12, ANY_REV, B_FS, NT, "Intel", "3400", enable_flash_pch5},
2143 {0x8086, 0x3b14, ANY_REV, B_FS, DEP, "Intel", "3420", enable_flash_pch5},
2144 {0x8086, 0x3b16, ANY_REV, B_FS, NT, "Intel", "3450", enable_flash_pch5},
2145 {0x8086, 0x3b1e, ANY_REV, B_FS, NT, "Intel", "B55", enable_flash_pch5},
2146 {0x8086, 0x5031, ANY_REV, B_FS, OK, "Intel", "EP80579", enable_flash_ich7},
2147 {0x8086, 0x7000, ANY_REV, B_P, OK, "Intel", "PIIX3", enable_flash_piix4},
2148 {0x8086, 0x7110, ANY_REV, B_P, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4},
2149 {0x8086, 0x7198, ANY_REV, B_P, OK, "Intel", "440MX", enable_flash_piix4},
2150 {0x8086, 0x8119, ANY_REV, B_FL, OK, "Intel", "SCH Poulsbo", enable_flash_poulsbo},
2151 {0x8086, 0x8186, ANY_REV, B_FS, OK, "Intel", "Atom E6xx(T) (Tunnel Creek)",enable_flash_tunnelcreek},
2152 {0x8086, 0x8c40, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2153 {0x8086, 0x8c41, ANY_REV, B_FS, NT, "Intel", "Lynx Point Mobile ES", enable_flash_pch8},
2154 {0x8086, 0x8c42, ANY_REV, B_FS, NT, "Intel", "Lynx Point Desktop ES", enable_flash_pch8},
2155 {0x8086, 0x8c43, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2156 {0x8086, 0x8c44, ANY_REV, B_FS, DEP, "Intel", "Z87", enable_flash_pch8},
2157 {0x8086, 0x8c45, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2158 {0x8086, 0x8c46, ANY_REV, B_FS, NT, "Intel", "Z85", enable_flash_pch8},
2159 {0x8086, 0x8c47, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2160 {0x8086, 0x8c48, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2161 {0x8086, 0x8c49, ANY_REV, B_FS, NT, "Intel", "HM86", enable_flash_pch8},
2162 {0x8086, 0x8c4a, ANY_REV, B_FS, DEP, "Intel", "H87", enable_flash_pch8},
2163 {0x8086, 0x8c4b, ANY_REV, B_FS, DEP, "Intel", "HM87", enable_flash_pch8},
2164 {0x8086, 0x8c4c, ANY_REV, B_FS, NT, "Intel", "Q85", enable_flash_pch8},
2165 {0x8086, 0x8c4d, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2166 {0x8086, 0x8c4e, ANY_REV, B_FS, NT, "Intel", "Q87", enable_flash_pch8},
Nico Huber24053102024-09-10 17:13:05 +02002167 {0x8086, 0x8c4f, ANY_REV, B_FS, DEP, "Intel", "QM87", enable_flash_pch8},
Nico Huber019810f2023-01-29 17:11:24 +00002168 {0x8086, 0x8c50, ANY_REV, B_FS, DEP, "Intel", "B85", enable_flash_pch8},
2169 {0x8086, 0x8c51, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2170 {0x8086, 0x8c52, ANY_REV, B_FS, NT, "Intel", "C222", enable_flash_pch8},
2171 {0x8086, 0x8c53, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2172 {0x8086, 0x8c54, ANY_REV, B_FS, DEP, "Intel", "C224", enable_flash_pch8},
2173 {0x8086, 0x8c55, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2174 {0x8086, 0x8c56, ANY_REV, B_FS, NT, "Intel", "C226", enable_flash_pch8},
2175 {0x8086, 0x8c57, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2176 {0x8086, 0x8c58, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2177 {0x8086, 0x8c59, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2178 {0x8086, 0x8c5a, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2179 {0x8086, 0x8c5b, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2180 {0x8086, 0x8c5c, ANY_REV, B_FS, DEP, "Intel", "H81", enable_flash_pch8},
2181 {0x8086, 0x8c5d, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2182 {0x8086, 0x8c5e, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2183 {0x8086, 0x8c5f, ANY_REV, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
2184 {0x8086, 0x8cc1, ANY_REV, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
2185 {0x8086, 0x8cc2, ANY_REV, B_FS, NT, "Intel", "9 Series Engineering Sample",enable_flash_pch9},
2186 {0x8086, 0x8cc3, ANY_REV, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
2187 {0x8086, 0x8cc4, ANY_REV, B_FS, DEP, "Intel", "Z97", enable_flash_pch9},
2188 {0x8086, 0x8cc6, ANY_REV, B_FS, NT, "Intel", "H97", enable_flash_pch9},
2189 {0x8086, 0x8d40, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2190 {0x8086, 0x8d41, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2191 {0x8086, 0x8d42, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2192 {0x8086, 0x8d43, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2193 {0x8086, 0x8d44, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2194 {0x8086, 0x8d45, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2195 {0x8086, 0x8d46, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2196 {0x8086, 0x8d47, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2197 {0x8086, 0x8d48, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2198 {0x8086, 0x8d49, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2199 {0x8086, 0x8d4a, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2200 {0x8086, 0x8d4b, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2201 {0x8086, 0x8d4c, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2202 {0x8086, 0x8d4d, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2203 {0x8086, 0x8d4e, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2204 {0x8086, 0x8d4f, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2205 {0x8086, 0x8d50, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2206 {0x8086, 0x8d51, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2207 {0x8086, 0x8d52, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2208 {0x8086, 0x8d53, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2209 {0x8086, 0x8d54, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2210 {0x8086, 0x8d55, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2211 {0x8086, 0x8d56, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2212 {0x8086, 0x8d57, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2213 {0x8086, 0x8d58, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2214 {0x8086, 0x8d59, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2215 {0x8086, 0x8d5a, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2216 {0x8086, 0x8d5b, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2217 {0x8086, 0x8d5c, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2218 {0x8086, 0x8d5d, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2219 {0x8086, 0x8d5e, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2220 {0x8086, 0x8d5f, ANY_REV, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
2221 {0x8086, 0x9c41, ANY_REV, B_FS, NT, "Intel", "Lynx Point LP Eng. Sample", enable_flash_pch8_lp},
2222 {0x8086, 0x9c43, ANY_REV, B_FS, NT, "Intel", "Lynx Point LP Premium", enable_flash_pch8_lp},
2223 {0x8086, 0x9c45, ANY_REV, B_FS, NT, "Intel", "Lynx Point LP Mainstream", enable_flash_pch8_lp},
2224 {0x8086, 0x9c47, ANY_REV, B_FS, NT, "Intel", "Lynx Point LP Value", enable_flash_pch8_lp},
2225 {0x8086, 0x9cc1, ANY_REV, B_FS, NT, "Intel", "Haswell U Sample", enable_flash_pch9_lp},
2226 {0x8086, 0x9cc2, ANY_REV, B_FS, NT, "Intel", "Broadwell U Sample", enable_flash_pch9_lp},
2227 {0x8086, 0x9cc3, ANY_REV, B_FS, DEP, "Intel", "Broadwell U Premium", enable_flash_pch9_lp},
2228 {0x8086, 0x9cc5, ANY_REV, B_FS, DEP, "Intel", "Broadwell U Base", enable_flash_pch9_lp},
2229 {0x8086, 0x9cc6, ANY_REV, B_FS, NT, "Intel", "Broadwell Y Sample", enable_flash_pch9_lp},
2230 {0x8086, 0x9cc7, ANY_REV, B_FS, NT, "Intel", "Broadwell Y Premium", enable_flash_pch9_lp},
2231 {0x8086, 0x9cc9, ANY_REV, B_FS, NT, "Intel", "Broadwell Y Base", enable_flash_pch9_lp},
2232 {0x8086, 0x9ccb, ANY_REV, B_FS, NT, "Intel", "Broadwell H", enable_flash_pch9},
2233 {0x8086, 0x9d41, ANY_REV, B_S, NT, "Intel", "Skylake / Kaby Lake Sample", enable_flash_pch100},
2234 {0x8086, 0x9d43, ANY_REV, B_S, NT, "Intel", "Skylake U Base", enable_flash_pch100},
2235 {0x8086, 0x9d46, ANY_REV, B_S, NT, "Intel", "Skylake Y Premium", enable_flash_pch100},
2236 {0x8086, 0x9d48, ANY_REV, B_S, DEP, "Intel", "Skylake U Premium", enable_flash_pch100},
2237 {0x8086, 0x9d4b, ANY_REV, B_S, NT, "Intel", "Kaby Lake Y w/ iHDCP2.2 Prem.", enable_flash_pch100},
2238 {0x8086, 0x9d4e, ANY_REV, B_S, DEP, "Intel", "Kaby Lake U w/ iHDCP2.2 Prem.", enable_flash_pch100},
2239 {0x8086, 0x9d50, ANY_REV, B_S, NT, "Intel", "Kaby Lake U w/ iHDCP2.2 Base", enable_flash_pch100},
2240 {0x8086, 0x9d51, ANY_REV, B_S, NT, "Intel", "Kabe Lake w/ iHDCP2.2 Sample", enable_flash_pch100},
2241 {0x8086, 0x9d53, ANY_REV, B_S, NT, "Intel", "Kaby Lake U Base", enable_flash_pch100},
2242 {0x8086, 0x9d56, ANY_REV, B_S, NT, "Intel", "Kaby Lake Y Premium", enable_flash_pch100},
2243 {0x8086, 0x9d58, ANY_REV, B_S, NT, "Intel", "Kaby Lake U Premium", enable_flash_pch100},
Nico Huber019810f2023-01-29 17:11:24 +00002244 {0x8086, 0xa141, ANY_REV, B_S, NT, "Intel", "Sunrise Point Desktop Sample", enable_flash_pch100},
2245 {0x8086, 0xa142, ANY_REV, B_S, NT, "Intel", "Sunrise Point Unknown Sample", enable_flash_pch100},
2246 {0x8086, 0xa143, ANY_REV, B_S, DEP, "Intel", "H110", enable_flash_pch100},
2247 {0x8086, 0xa144, ANY_REV, B_S, NT, "Intel", "H170", enable_flash_pch100},
2248 {0x8086, 0xa145, ANY_REV, B_S, NT, "Intel", "Z170", enable_flash_pch100},
2249 {0x8086, 0xa146, ANY_REV, B_S, NT, "Intel", "Q170", enable_flash_pch100},
2250 {0x8086, 0xa147, ANY_REV, B_S, NT, "Intel", "Q150", enable_flash_pch100},
2251 {0x8086, 0xa148, ANY_REV, B_S, NT, "Intel", "B150", enable_flash_pch100},
Nico Huber63213152023-04-24 12:00:58 +00002252 {0x8086, 0xa149, ANY_REV, B_S, DEP, "Intel", "C236", enable_flash_pch100},
Nico Huber019810f2023-01-29 17:11:24 +00002253 {0x8086, 0xa14a, ANY_REV, B_S, NT, "Intel", "C232", enable_flash_pch100},
2254 {0x8086, 0xa14b, ANY_REV, B_S, NT, "Intel", "Sunrise Point Server Sample",enable_flash_pch100},
2255 {0x8086, 0xa14d, ANY_REV, B_S, NT, "Intel", "QM170", enable_flash_pch100},
2256 {0x8086, 0xa14e, ANY_REV, B_S, NT, "Intel", "HM170", enable_flash_pch100},
2257 {0x8086, 0xa150, ANY_REV, B_S, DEP, "Intel", "CM236", enable_flash_pch100},
2258 {0x8086, 0xa151, ANY_REV, B_S, NT, "Intel", "QMS180", enable_flash_pch100},
2259 {0x8086, 0xa152, ANY_REV, B_S, NT, "Intel", "HM175", enable_flash_pch100},
2260 {0x8086, 0xa153, ANY_REV, B_S, NT, "Intel", "QM175", enable_flash_pch100},
2261 {0x8086, 0xa154, ANY_REV, B_S, NT, "Intel", "CM238", enable_flash_pch100},
2262 {0x8086, 0xa155, ANY_REV, B_S, NT, "Intel", "QMU185", enable_flash_pch100},
2263 {0x8086, 0xa1a4, ANY_REV, B_S, DEP, "Intel", "C620 Series (QS/PRQ)", enable_flash_c620},
2264 {0x8086, 0xa1c0, ANY_REV, B_S, NT, "Intel", "C620 Series (QS/PRQ)", enable_flash_c620},
2265 {0x8086, 0xa1c1, ANY_REV, B_S, NT, "Intel", "C621 Series (QS/PRQ)", enable_flash_c620},
2266 {0x8086, 0xa1c2, ANY_REV, B_S, NT, "Intel", "C622 Series (QS/PRQ)", enable_flash_c620},
2267 {0x8086, 0xa1c3, ANY_REV, B_S, NT, "Intel", "C624 Series (QS/PRQ)", enable_flash_c620},
2268 {0x8086, 0xa1c4, ANY_REV, B_S, NT, "Intel", "C625 Series (QS/PRQ)", enable_flash_c620},
2269 {0x8086, 0xa1c5, ANY_REV, B_S, NT, "Intel", "C626 Series (QS/PRQ)", enable_flash_c620},
2270 {0x8086, 0xa1c6, ANY_REV, B_S, NT, "Intel", "C627 Series (QS/PRQ)", enable_flash_c620},
2271 {0x8086, 0xa1c7, ANY_REV, B_S, NT, "Intel", "C628 Series (QS/PRQ)", enable_flash_c620},
2272 {0x8086, 0xa1c8, ANY_REV, B_S, NT, "Intel", "C620 Series (QS/PRQ)", enable_flash_c620},
2273 {0x8086, 0xa1c9, ANY_REV, B_S, NT, "Intel", "C620 Series (QS/PRQ)", enable_flash_c620},
2274 {0x8086, 0xa1ca, ANY_REV, B_S, NT, "Intel", "C629 Series (QS/PRQ)", enable_flash_c620},
2275 {0x8086, 0xa1cb, ANY_REV, B_S, NT, "Intel", "C621A Series (QS/PRQ)", enable_flash_c620},
2276 {0x8086, 0xa1cc, ANY_REV, B_S, NT, "Intel", "C627A Series (QS/PRQ)", enable_flash_c620},
2277 {0x8086, 0xa1cd, ANY_REV, B_S, NT, "Intel", "C629A Series (QS/PRQ)", enable_flash_c620},
2278 {0x8086, 0xa240, ANY_REV, B_S, NT, "Intel", "C620 Series Supersku", enable_flash_c620},
2279 {0x8086, 0xa241, ANY_REV, B_S, NT, "Intel", "C620 Series Supersku", enable_flash_c620},
2280 {0x8086, 0xa242, ANY_REV, B_S, NT, "Intel", "C624 Series Supersku", enable_flash_c620},
2281 {0x8086, 0xa243, ANY_REV, B_S, NT, "Intel", "C627 Series Supersku", enable_flash_c620},
2282 {0x8086, 0xa244, ANY_REV, B_S, NT, "Intel", "C621 Series Supersku", enable_flash_c620},
2283 {0x8086, 0xa245, ANY_REV, B_S, NT, "Intel", "C627 Series Supersku", enable_flash_c620},
2284 {0x8086, 0xa246, ANY_REV, B_S, NT, "Intel", "C628 Series Supersku", enable_flash_c620},
2285 {0x8086, 0xa247, ANY_REV, B_S, NT, "Intel", "C620 Series Supersku", enable_flash_c620},
2286 {0x8086, 0xa248, ANY_REV, B_S, NT, "Intel", "C620 Series Supersku", enable_flash_c620},
2287 {0x8086, 0xa249, ANY_REV, B_S, NT, "Intel", "C620 Series Supersku", enable_flash_c620},
Nico Huber42daab12024-07-16 00:27:27 +02002288 {0x8086, 0x1bca, ANY_REV, B_S, NT, "Intel", "Emmitsburg SKU", enable_flash_c740},
Nico Huber019810f2023-01-29 17:11:24 +00002289 {0x8086, 0xa2c4, ANY_REV, B_S, NT, "Intel", "H270", enable_flash_pch100},
2290 {0x8086, 0xa2c5, ANY_REV, B_S, NT, "Intel", "Z270", enable_flash_pch100},
2291 {0x8086, 0xa2c6, ANY_REV, B_S, NT, "Intel", "Q270", enable_flash_pch100},
2292 {0x8086, 0xa2c7, ANY_REV, B_S, NT, "Intel", "Q250", enable_flash_pch100},
2293 {0x8086, 0xa2c8, ANY_REV, B_S, NT, "Intel", "B250", enable_flash_pch100},
2294 {0x8086, 0xa2c9, ANY_REV, B_S, NT, "Intel", "Z370", enable_flash_pch100},
2295 {0x8086, 0xa2ca, ANY_REV, B_S, DEP, "Intel", "H310C", enable_flash_pch100},
2296 {0x8086, 0xa2cc, ANY_REV, B_S, DEP, "Intel", "B365", enable_flash_pch100},
2297 {0x8086, 0xa2d2, ANY_REV, B_S, NT, "Intel", "X299", enable_flash_pch100},
2298 {0x8086, 0x5ae8, ANY_REV, B_S, DEP, "Intel", "Apollo Lake", enable_flash_apl},
2299 {0x8086, 0x5af0, ANY_REV, B_S, DEP, "Intel", "Apollo Lake", enable_flash_apl},
2300 {0x8086, 0x3197, ANY_REV, B_S, NT, "Intel", "Gemini Lake", enable_flash_glk},
2301 {0x8086, 0x31e8, ANY_REV, B_S, DEP, "Intel", "Gemini Lake", enable_flash_glk},
2302 {0x8086, 0x4b24, ANY_REV, B_S, DEP, "Intel", "Elkhart Lake", enable_flash_mcc},
Nico Huber6d72efa2024-08-25 13:01:23 +02002303 {0x8086, 0xa3da, ANY_REV, B_S, NT, "Intel", "H410", enable_flash_pch300_22nm},
2304 {0x8086, 0xa3c8, ANY_REV, B_S, DEP, "Intel", "B460", enable_flash_pch300_22nm},
2305 {0x8086, 0x9da4, ANY_REV, B_S, NT, "Intel", "Cannon Lake U", enable_flash_pch300},
2306 {0x8086, 0xa324, ANY_REV, B_S, DEP, "Intel", "300 series Cannon Point", enable_flash_pch300},
2307 {0x8086, 0x02a4, ANY_REV, B_S, NT, "Intel", "Comet Lake U", enable_flash_pch300},
2308 {0x8086, 0x06a4, ANY_REV, B_S, NT, "Intel", "400 series Comet Point", enable_flash_pch300},
2309 {0x8086, 0x34a4, ANY_REV, B_S, NT, "Intel", "Ice Lake", enable_flash_pch300},
Nico Huber019810f2023-01-29 17:11:24 +00002310 {0x8086, 0x4da4, ANY_REV, B_S, NT, "Intel", "Jasper Lake", enable_flash_pch300},
Nico Huber092a6992024-08-25 12:45:18 +02002311 {0x8086, 0xa0a4, ANY_REV, B_S, NT, "Intel", "Tiger Lake UP3/4", enable_flash_pch500},
2312 {0x8086, 0x43a4, ANY_REV, B_S, DEP, "Intel", "500 series Tiger Point", enable_flash_pch500},
Nico Huber019810f2023-01-29 17:11:24 +00002313 {0x8086, 0x51a4, ANY_REV, B_S, DEP, "Intel", "Alder Lake-P", enable_flash_pch500},
2314 {0x8086, 0x54a4, ANY_REV, B_S, DEP, "Intel", "Alder Lake-N", enable_flash_pch500},
Nico Huberffcf92f2025-04-08 15:03:06 +02002315 {0x8086, 0x7a24, ANY_REV, B_S, DEP, "Intel", "Raptor Lake-S", enable_flash_pch500},
Nico Huber019810f2023-01-29 17:11:24 +00002316 {0x8086, 0x7aa4, ANY_REV, B_S, NT, "Intel", "Alder Lake-S", enable_flash_pch500},
Nico Huber0ef2eb82024-07-19 21:38:17 +02002317 {0x8086, 0x18e0, ANY_REV, B_S, NT, "Intel", "Snow Ridge", enable_flash_snowridge},
Nico Huber5e0d9b02024-07-19 21:44:52 +02002318 {0x8086, 0x7e23, ANY_REV, B_S, DEP, "Intel", "Meteor Lake", enable_flash_mtl},
Nico Huber83d04382026-02-08 16:48:42 +01002319 {0x8086, 0x7723, ANY_REV, B_S, NT, "Intel", "Arrow Lake-H", enable_flash_mtl},
Nico Huberd5a61ef2024-11-06 23:55:44 +01002320 {0x8086, 0xa823, ANY_REV, B_S, NT, "Intel", "Lunar Lake", enable_flash_lnl},
Nico Huber83d04382026-02-08 16:48:42 +01002321 {0x8086, 0xae23, ANY_REV, B_S, NT, "Intel", "Arrow Lake-S/HX", enable_flash_arl},
Nico Huberf4d5f322026-02-08 18:42:55 +01002322 {0x8086, 0xe323, ANY_REV, B_S, NT, "Intel", "Panther Lake 404/H12Xe", enable_flash_ptl},
2323 {0x8086, 0xe423, ANY_REV, B_S, NT, "Intel", "Panther Lake H", enable_flash_ptl},
Nico Huberdfea68c2026-02-14 16:39:31 +00002324 {0x8086, 0x4d23, ANY_REV, B_S, NT, "Intel", "Wildcat Lake", enable_flash_ptl},
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00002325#endif
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +00002326 {0},
Ollie Lhocbbf1252004-03-17 22:22:08 +00002327};
Ollie Lho761bf1b2004-03-20 16:46:10 +00002328
Nico Huber929d2e12023-01-12 00:47:05 +01002329int chipset_flash_enable(struct flashprog_programmer *const prog)
Ollie Lhocbbf1252004-03-17 22:22:08 +00002330{
Peter Huewe73f8ec82011-01-24 19:15:51 +00002331 struct pci_dev *dev = NULL;
Uwe Hermann372eeb52007-12-04 21:49:06 +00002332 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +00002333 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +00002334
Uwe Hermann372eeb52007-12-04 21:49:06 +00002335 /* Now let's try to find the chipset we have... */
Uwe Hermann05fab752009-05-16 23:42:17 +00002336 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
Edward O'Callaghan19ce50d2021-11-13 17:59:18 +11002337 dev = pcidev_find(chipset_enables[i].vendor_id,
Uwe Hermann05fab752009-05-16 23:42:17 +00002338 chipset_enables[i].device_id);
Michael Karcher89bed6d2010-06-13 10:16:12 +00002339 if (!dev)
2340 continue;
Nico Huber019810f2023-01-29 17:11:24 +00002341 if (chipset_enables[i].match_revision) {
2342 const uint8_t rev_id = pci_read_word(dev, PCI_REVISION_ID);
2343 if (rev_id != chipset_enables[i].revision_id)
2344 continue;
2345 }
Michael Karcher89bed6d2010-06-13 10:16:12 +00002346 if (ret != -2) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00002347 msg_pwarn("Warning: unexpected second chipset match: "
Paul Menzelab6328f2010-10-08 11:03:02 +00002348 "\"%s %s\"\n"
2349 "ignoring, please report lspci and board URL "
Nico Huberc3b02dc2023-08-12 01:13:45 +02002350 "to flashprog@flashprog.org\n"
Stefan Reinauerbf282b12011-03-29 21:41:41 +00002351 "with \'CHIPSET: your board name\' in the "
Paul Menzelab6328f2010-10-08 11:03:02 +00002352 "subject line.\n",
Michael Karcher89bed6d2010-06-13 10:16:12 +00002353 chipset_enables[i].vendor_name,
2354 chipset_enables[i].device_name);
2355 continue;
2356 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002357 msg_pinfo("Found chipset \"%s %s\"",
2358 chipset_enables[i].vendor_name,
2359 chipset_enables[i].device_name);
Stefan Tauner716e0982011-07-25 20:38:52 +00002360 msg_pdbg(" with PCI ID %04x:%04x",
Carl-Daniel Hailfingerf469c272010-05-22 07:31:50 +00002361 chipset_enables[i].vendor_id,
2362 chipset_enables[i].device_id);
Stefan Tauner5c316f92015-02-08 21:57:52 +00002363 msg_pinfo(".\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00002364
Stefan Tauner23e10b82016-01-23 16:16:49 +00002365 if (chipset_enables[i].status == BAD) {
2366 msg_perr("ERROR: This chipset is not supported yet.\n");
2367 return ERROR_FATAL;
2368 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002369 if (chipset_enables[i].status == NT) {
Stefan Tauner5c316f92015-02-08 21:57:52 +00002370 msg_pinfo("This chipset is marked as untested. If "
Stefan Taunerec8c2482011-07-21 19:59:34 +00002371 "you are using an up-to-date version\nof "
Nico Huberc3b02dc2023-08-12 01:13:45 +02002372 "flashprog *and* were (not) able to "
Stefan Tauner2abab942012-04-27 20:41:23 +00002373 "successfully update your firmware with it,\n"
2374 "then please email a report to "
Nico Huberc3b02dc2023-08-12 01:13:45 +02002375 "flashprog@flashprog.org including a\n"
Nico Huberac90af62022-12-18 00:22:47 +00002376 "verbose (-V) log.\nThank you!\n");
Stefan Taunerec8c2482011-07-21 19:59:34 +00002377 }
Nico Huber2e50cdc2018-09-23 20:20:26 +02002378 if (!(chipset_enables[i].buses & (internal_buses_supported | BUS_SPI))) {
2379 msg_pdbg("Skipping chipset enable: No supported buses enabled.\n");
2380 continue;
2381 }
Nico Huberc1fa3412023-01-29 23:56:12 +01002382 msg_pinfo("Enabling flash write... "); msg_pdbg("\n");
Nico Huber929d2e12023-01-12 00:47:05 +01002383 ret = chipset_enables[i].doit(prog, dev, chipset_enables[i].device_name);
Michael Karcher89bed6d2010-06-13 10:16:12 +00002384 if (ret == NOT_DONE_YET) {
2385 ret = -2;
2386 msg_pinfo("OK - searching further chips.\n");
2387 } else if (ret < 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00002388 msg_pinfo("FAILED!\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00002389 else if (ret == 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00002390 msg_pinfo("OK.\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00002391 else if (ret == ERROR_NONFATAL)
Michael Karchera4448d92010-07-22 18:04:15 +00002392 msg_pinfo("PROBLEMS, continuing anyway\n");
Tadas Slotkusad470342011-09-03 17:15:00 +00002393 if (ret == ERROR_FATAL) {
2394 msg_perr("FATAL ERROR!\n");
2395 return ret;
2396 }
Uwe Hermanna7e05482007-05-09 10:17:44 +00002397 }
Michael Karcher89bed6d2010-06-13 10:16:12 +00002398
Uwe Hermanna7e05482007-05-09 10:17:44 +00002399 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +00002400}