blob: 89458c6a7f362921e7c135422318fe4e9913a9d8 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ollie Lho184a4042005-11-26 21:55:36 +00003 *
Uwe Hermannd1107642007-08-29 17:52:32 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
Stefan Reinauer8fa64812009-08-12 09:27:45 +00005 * Copyright (C) 2005-2009 coresystems GmbH
Uwe Hermannd1107642007-08-29 17:52:32 +00006 * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00007 * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger
Adam Jurkowskie4984102009-12-21 15:30:46 +00008 * Copyright (C) 2009 Kontron Modular Computers GmbH
Helge Wagnerdd73d832012-08-24 23:03:46 +00009 * Copyright (C) 2011, 2012 Stefan Tauner
Nico Huber93c30692017-03-20 14:25:09 +010010 * Copyright (C) 2017 secunet Security Networks AG
11 * (Written by Nico Huber <nico.huber@secunet.com> for secunet)
Ollie Lho184a4042005-11-26 21:55:36 +000012 *
Uwe Hermannd1107642007-08-29 17:52:32 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; version 2 of the License.
Ollie Lho184a4042005-11-26 21:55:36 +000016 *
Uwe Hermannd1107642007-08-29 17:52:32 +000017 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
Uwe Hermannd1107642007-08-29 17:52:32 +000021 */
22
23/*
24 * Contains the chipset specific flash enables.
Ollie Lho184a4042005-11-26 21:55:36 +000025 */
26
Lane Brooksd54958a2007-11-13 16:45:22 +000027#define _LARGEFILE64_SOURCE
28
Ollie Lhocbbf1252004-03-17 22:22:08 +000029#include <stdlib.h>
Uwe Hermanne8ba5382009-05-22 11:37:27 +000030#include <string.h>
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000031#include <unistd.h>
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +000032#include <inttypes.h>
33#include <errno.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000034#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000035#include "programmer.h"
Patrick Georgi32508eb2012-07-20 20:35:14 +000036#include "hwaccess.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
Uwe Hermann372eeb52007-12-04 21:49:06 +000042static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name)
Luc Verhaegen6b141752007-05-20 16:16:13 +000043{
44 uint8_t tmp;
45
Uwe Hermann372eeb52007-12-04 21:49:06 +000046 /*
47 * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and
48 * 0xFFFE0000-0xFFFFFFFF ROM select enable.
49 */
Luc Verhaegen6b141752007-05-20 16:16:13 +000050 tmp = pci_read_byte(dev, 0x47);
51 tmp |= 0x46;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000052 rpci_write_byte(dev, 0x47, tmp);
Luc Verhaegen6b141752007-05-20 16:16:13 +000053
54 return 0;
55}
56
Rudolf Marek23907d82012-02-07 21:29:48 +000057static int enable_flash_rdc_r8610(struct pci_dev *dev, const char *name)
58{
59 uint8_t tmp;
60
61 /* enable ROMCS for writes */
62 tmp = pci_read_byte(dev, 0x43);
63 tmp |= 0x80;
64 pci_write_byte(dev, 0x43, tmp);
65
66 /* read the bootstrapping register */
67 tmp = pci_read_byte(dev, 0x40) & 0x3;
68 switch (tmp) {
69 case 3:
Nico Huber2e50cdc2018-09-23 20:20:26 +020070 internal_buses_supported &= BUS_FWH;
Rudolf Marek23907d82012-02-07 21:29:48 +000071 break;
72 case 2:
Nico Huber2e50cdc2018-09-23 20:20:26 +020073 internal_buses_supported &= BUS_LPC;
Rudolf Marek23907d82012-02-07 21:29:48 +000074 break;
75 default:
Nico Huber2e50cdc2018-09-23 20:20:26 +020076 internal_buses_supported &= BUS_PARALLEL;
Rudolf Marek23907d82012-02-07 21:29:48 +000077 break;
78 }
79
80 return 0;
81}
82
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000083static int enable_flash_sis85c496(struct pci_dev *dev, const char *name)
84{
85 uint8_t tmp;
86
87 tmp = pci_read_byte(dev, 0xd0);
88 tmp |= 0xf8;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000089 rpci_write_byte(dev, 0xd0, tmp);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000090
91 return 0;
92}
93
94static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name)
95{
Stefan Taunere34e3e82013-01-01 00:06:51 +000096 #define SIS_MAPREG 0x40
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000097 uint8_t new, newer;
98
99 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
100 /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
Stefan Taunere34e3e82013-01-01 00:06:51 +0000101 new = pci_read_byte(dev, SIS_MAPREG);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000102 new &= (~0x04); /* No idea why we clear bit 2. */
103 new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */
Stefan Taunere34e3e82013-01-01 00:06:51 +0000104 rpci_write_byte(dev, SIS_MAPREG, new);
105 newer = pci_read_byte(dev, SIS_MAPREG);
106 if (newer != new) { /* FIXME: share this with other code? */
107 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
108 SIS_MAPREG, new, name);
109 msg_pinfo("Stuck at 0x%02x.\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000110 return -1;
111 }
112 return 0;
113}
114
115static struct pci_dev *find_southbridge(uint16_t vendor, const char *name)
116{
117 struct pci_dev *sbdev;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000118
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000119 sbdev = pci_dev_find_vendorclass(vendor, 0x0601);
120 if (!sbdev)
121 sbdev = pci_dev_find_vendorclass(vendor, 0x0680);
122 if (!sbdev)
123 sbdev = pci_dev_find_vendorclass(vendor, 0x0000);
124 if (!sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +0000125 msg_perr("No southbridge found for %s!\n", name);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000126 if (sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +0000127 msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000128 sbdev->vendor_id, sbdev->device_id,
129 sbdev->bus, sbdev->dev, sbdev->func);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000130 return sbdev;
131}
132
133static int enable_flash_sis501(struct pci_dev *dev, const char *name)
134{
135 uint8_t tmp;
136 int ret = 0;
137 struct pci_dev *sbdev;
138
139 sbdev = find_southbridge(dev->vendor_id, name);
140 if (!sbdev)
141 return -1;
142
143 ret = enable_flash_sis_mapping(sbdev, name);
144
145 tmp = sio_read(0x22, 0x80);
146 tmp &= (~0x20);
147 tmp |= 0x4;
148 sio_write(0x22, 0x80, tmp);
149
150 tmp = sio_read(0x22, 0x70);
151 tmp &= (~0x20);
152 tmp |= 0x4;
153 sio_write(0x22, 0x70, tmp);
Elyes HAOUAS2f1d0072018-10-04 10:42:42 +0200154
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000155 return ret;
156}
157
158static int enable_flash_sis5511(struct pci_dev *dev, const char *name)
159{
160 uint8_t tmp;
161 int ret = 0;
162 struct pci_dev *sbdev;
163
164 sbdev = find_southbridge(dev->vendor_id, name);
165 if (!sbdev)
166 return -1;
167
168 ret = enable_flash_sis_mapping(sbdev, name);
169
170 tmp = sio_read(0x22, 0x50);
171 tmp &= (~0x20);
172 tmp |= 0x4;
173 sio_write(0x22, 0x50, tmp);
174
175 return ret;
176}
177
Stefan Taunere34e3e82013-01-01 00:06:51 +0000178static 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 +0000179{
Stefan Taunere34e3e82013-01-01 00:06:51 +0000180 #define SIS_REG 0x45
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000181 uint8_t new, newer;
182 int ret = 0;
183 struct pci_dev *sbdev;
184
185 sbdev = find_southbridge(dev->vendor_id, name);
186 if (!sbdev)
187 return -1;
188
189 ret = enable_flash_sis_mapping(sbdev, name);
190
Stefan Taunere34e3e82013-01-01 00:06:51 +0000191 new = pci_read_byte(sbdev, SIS_REG);
192 new &= (~dis_mask);
193 new |= en_mask;
194 rpci_write_byte(sbdev, SIS_REG, new);
195 newer = pci_read_byte(sbdev, SIS_REG);
196 if (newer != new) { /* FIXME: share this with other code? */
197 msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SIS_REG, new, name);
198 msg_pinfo("Stuck at 0x%02x\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000199 ret = -1;
200 }
201
202 return ret;
203}
204
Stefan Taunere34e3e82013-01-01 00:06:51 +0000205static int enable_flash_sis530(struct pci_dev *dev, const char *name)
206{
207 return enable_flash_sis5x0(dev, name, 0x20, 0x04);
208}
209
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000210static int enable_flash_sis540(struct pci_dev *dev, const char *name)
211{
Stefan Taunere34e3e82013-01-01 00:06:51 +0000212 return enable_flash_sis5x0(dev, name, 0x80, 0x40);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000213}
214
Uwe Hermann987942d2006-11-07 11:16:21 +0000215/* Datasheet:
216 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
217 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
218 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
219 * - Order Number: 290562-001
220 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000221static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000222{
223 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000224 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000225
Nico Huber2e50cdc2018-09-23 20:20:26 +0200226 internal_buses_supported &= BUS_PARALLEL;
Maciej Pijankaa661e152009-12-08 17:26:24 +0000227
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000228 old = pci_read_word(dev, xbcs);
229
230 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000231 * FFF00000-FFF7FFFF are forwarded to ISA).
Uwe Hermannc556d322008-10-28 11:50:05 +0000232 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
Uwe Hermanna7e05482007-05-09 10:17:44 +0000233 * Set bit 7: Extended BIOS Enable (PCI master accesses to
234 * FFF80000-FFFDFFFF are forwarded to ISA).
235 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
236 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
237 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
238 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
239 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
240 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
241 */
Uwe Hermannc556d322008-10-28 11:50:05 +0000242 if (dev->device_id == 0x122e || dev->device_id == 0x7000
243 || dev->device_id == 0x1234)
244 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
Uwe Hermann87203452008-10-26 18:40:42 +0000245 else
246 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000247
248 if (new == old)
249 return 0;
250
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000251 rpci_write_word(dev, xbcs, new);
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000252
Stefan Taunere34e3e82013-01-01 00:06:51 +0000253 if (pci_read_word(dev, xbcs) != new) { /* FIXME: share this with other code? */
254 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 +0000255 return -1;
256 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000257
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000258 return 0;
259}
260
Duncan Laurie4095ed72014-08-20 15:39:32 +0000261/* Handle BIOS_CNTL (aka. BCR). Disable locks and enable writes. The register can either be in PCI config space
262 * at the offset given by 'bios_cntl' or at the memory-mapped address 'addr'.
263 *
264 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, in Poulsbo, Tunnel Creek and other Atom
Stefan Tauner92d6a862013-10-25 00:33:37 +0000265 * 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 +0000266static int enable_flash_ich_bios_cntl_common(enum ich_chipset ich_generation, void *addr,
267 struct pci_dev *dev, uint8_t bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000268{
Stefan Taunerd5c4ab42011-09-09 12:46:32 +0000269 uint8_t old, new, wanted;
Stefan Reinauereb366472006-09-06 15:48:48 +0000270
Stefan Tauner92d6a862013-10-25 00:33:37 +0000271 switch (ich_generation) {
272 case CHIPSET_ICH_UNKNOWN:
273 return ERROR_FATAL;
274 /* Non-SPI-capable */
275 case CHIPSET_ICH:
276 case CHIPSET_ICH2345:
277 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000278 /* Some Atom chipsets are special: The second byte of BIOS_CNTL (D9h) contains a prefetch bit similar to
279 * what other SPI-capable chipsets have at DCh. Others like Bay Trail use a memmapped register.
Stefan Tauner92d6a862013-10-25 00:33:37 +0000280 * The Tunnel Creek datasheet contains a lot of details about the SPI controller, among other things it
281 * mentions that the prefetching and caching does only happen for direct memory reads.
282 * Therefore - at least for Tunnel Creek - it should not matter to flashrom because we use the
283 * programmed access only and not memory mapping. */
284 case CHIPSET_TUNNEL_CREEK:
285 case CHIPSET_POULSBO:
286 case CHIPSET_CENTERTON:
287 old = pci_read_byte(dev, bios_cntl + 1);
288 msg_pdbg("BIOS Prefetch Enable: %sabled, ", (old & 1) ? "en" : "dis");
289 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000290 case CHIPSET_BAYTRAIL:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000291 case CHIPSET_ICH7:
292 default: /* Future version might behave the same */
Duncan Laurie4095ed72014-08-20 15:39:32 +0000293 if (ich_generation == CHIPSET_BAYTRAIL)
294 old = (mmio_readl(addr) >> 2) & 0x3;
295 else
296 old = (pci_read_byte(dev, bios_cntl) >> 2) & 0x3;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000297 msg_pdbg("SPI Read Configuration: ");
298 if (old == 3)
299 msg_pdbg("invalid prefetching/caching settings, ");
300 else
301 msg_pdbg("prefetching %sabled, caching %sabled, ",
302 (old & 0x2) ? "en" : "dis",
303 (old & 0x1) ? "dis" : "en");
304 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000305
Duncan Laurie4095ed72014-08-20 15:39:32 +0000306 if (ich_generation == CHIPSET_BAYTRAIL)
307 wanted = old = mmio_readl(addr);
308 else
309 wanted = old = pci_read_byte(dev, bios_cntl);
310
Stefan Taunerf9a8da52011-06-11 18:16:50 +0000311 /*
312 * Quote from the 6 Series datasheet (Document Number: 324645-004):
313 * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP)
314 * 1 = BIOS region SMM protection is enabled.
315 * The BIOS Region is not writable unless all processors are in SMM."
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000316 * In earlier chipsets this bit is reserved.
Stefan Reinauer62218c32012-08-26 02:35:13 +0000317 *
318 * Try to unset it in any case.
319 * It won't hurt and makes sense in some cases according to Stefan Reinauer.
Stefan Tauner92d6a862013-10-25 00:33:37 +0000320 *
321 * At least in Centerton aforementioned bit is located at bit 7. It is unspecified in all other Atom
322 * and Desktop chipsets before Ibex Peak/5 Series, but we reset bit 5 anyway.
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000323 */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000324 int smm_bwp_bit;
325 if (ich_generation == CHIPSET_CENTERTON)
326 smm_bwp_bit = 7;
327 else
328 smm_bwp_bit = 5;
329 wanted &= ~(1 << smm_bwp_bit);
Stefan Reinauer62218c32012-08-26 02:35:13 +0000330
Stefan Tauner92d6a862013-10-25 00:33:37 +0000331 /* Tunnel Creek has a cache disable at bit 2 of the lowest BIOS_CNTL byte. */
332 if (ich_generation == CHIPSET_TUNNEL_CREEK)
333 wanted |= (1 << 2);
334
335 wanted |= (1 << 0); /* Set BIOS Write Enable */
336 wanted &= ~(1 << 1); /* Disable lock (futile) */
Stefan Reinauer62218c32012-08-26 02:35:13 +0000337
338 /* Only write the register if it's necessary */
339 if (wanted != old) {
Duncan Laurie4095ed72014-08-20 15:39:32 +0000340 if (ich_generation == CHIPSET_BAYTRAIL) {
341 rmmio_writel(wanted, addr);
342 new = mmio_readl(addr);
343 } else {
344 rpci_write_byte(dev, bios_cntl, wanted);
345 new = pci_read_byte(dev, bios_cntl);
346 }
Stefan Reinauer62218c32012-08-26 02:35:13 +0000347 } else
348 new = old;
349
350 msg_pdbg("\nBIOS_CNTL = 0x%02x: ", new);
351 msg_pdbg("BIOS Lock Enable: %sabled, ", (new & (1 << 1)) ? "en" : "dis");
352 msg_pdbg("BIOS Write Enable: %sabled\n", (new & (1 << 0)) ? "en" : "dis");
Stefan Tauner92d6a862013-10-25 00:33:37 +0000353 if (new & (1 << smm_bwp_bit))
Stefan Taunerc6fa32d2013-01-04 22:54:07 +0000354 msg_pwarn("Warning: BIOS region SMM protection is enabled!\n");
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000355
Stefan Reinauer62218c32012-08-26 02:35:13 +0000356 if (new != wanted)
Stefan Tauner92d6a862013-10-25 00:33:37 +0000357 msg_pwarn("Warning: Setting Bios Control at 0x%x from 0x%02x to 0x%02x failed.\n"
358 "New value is 0x%02x.\n", bios_cntl, old, wanted, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000359
Stefan Tauner92d6a862013-10-25 00:33:37 +0000360 /* Return an error if we could not set the write enable only. */
Stefan Reinauer62218c32012-08-26 02:35:13 +0000361 if (!(new & (1 << 0)))
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000362 return -1;
Uwe Hermannffec5f32007-08-23 16:08:21 +0000363
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000364 return 0;
365}
366
Duncan Laurie4095ed72014-08-20 15:39:32 +0000367static int enable_flash_ich_bios_cntl_config_space(struct pci_dev *dev, enum ich_chipset ich_generation,
368 uint8_t bios_cntl)
369{
370 return enable_flash_ich_bios_cntl_common(ich_generation, NULL, dev, bios_cntl);
371}
372
373static int enable_flash_ich_bios_cntl_memmapped(enum ich_chipset ich_generation, void *addr)
374{
375 return enable_flash_ich_bios_cntl_common(ich_generation, addr, NULL, 0);
376}
377
Stefan Tauner92d6a862013-10-25 00:33:37 +0000378static int enable_flash_ich_fwh_decode(struct pci_dev *dev, enum ich_chipset ich_generation)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000379{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000380 uint8_t fwh_sel1 = 0, fwh_sel2 = 0, fwh_dec_en_lo = 0, fwh_dec_en_hi = 0; /* silence compilers */
381 bool implemented = 0;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000382 void *ilb = NULL; /* Only for Baytrail */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000383 switch (ich_generation) {
384 case CHIPSET_ICH:
385 /* FIXME: Unlike later chipsets, ICH and ICH-0 do only support mapping of the top-most 4MB
386 * and therefore do only feature FWH_DEC_EN (E3h, different default too) and FWH_SEL (E8h). */
387 break;
388 case CHIPSET_ICH2345:
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000389 fwh_sel1 = 0xe8;
390 fwh_sel2 = 0xee;
391 fwh_dec_en_lo = 0xf0;
392 fwh_dec_en_hi = 0xe3;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000393 implemented = 1;
394 break;
395 case CHIPSET_POULSBO:
396 case CHIPSET_TUNNEL_CREEK:
397 /* FIXME: Similar to ICH and ICH-0, Tunnel Creek and Poulsbo do only feature one register each,
398 * FWH_DEC_EN (D7h) and FWH_SEL (D0h). */
399 break;
400 case CHIPSET_CENTERTON:
401 /* FIXME: Similar to above FWH_DEC_EN (D4h) and FWH_SEL (D0h). */
402 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000403 case CHIPSET_BAYTRAIL: {
404 uint32_t ilb_base = pci_read_long(dev, 0x50) & 0xfffffe00; /* bits 31:9 */
405 if (ilb_base == 0) {
406 msg_perr("Error: Invalid ILB_BASE_ADDRESS\n");
407 return ERROR_FATAL;
408 }
409 ilb = rphysmap("BYT IBASE", ilb_base, 512);
410 fwh_sel1 = 0x18;
411 fwh_dec_en_lo = 0xd8;
412 fwh_dec_en_hi = 0xd9;
413 implemented = 1;
414 break;
415 }
Stefan Tauner92d6a862013-10-25 00:33:37 +0000416 case CHIPSET_ICH6:
417 case CHIPSET_ICH7:
418 default: /* Future version might behave the same */
419 fwh_sel1 = 0xd0;
420 fwh_sel2 = 0xd4;
421 fwh_dec_en_lo = 0xd8;
422 fwh_dec_en_hi = 0xd9;
423 implemented = 1;
424 break;
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000425 }
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000426
Stefan Tauner92d6a862013-10-25 00:33:37 +0000427 char *idsel = extract_programmer_param("fwh_idsel");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000428 if (idsel && strlen(idsel)) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000429 if (!implemented) {
430 msg_perr("Error: fwh_idsel= specified, but (yet) unsupported on this chipset.\n");
431 goto idsel_garbage_out;
432 }
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000433 errno = 0;
434 /* Base 16, nothing else makes sense. */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000435 uint64_t fwh_idsel = (uint64_t)strtoull(idsel, NULL, 16);
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000436 if (errno) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000437 msg_perr("Error: fwh_idsel= specified, but value could not be converted.\n");
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000438 goto idsel_garbage_out;
439 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000440 uint64_t fwh_mask = 0xffffffff;
441 if (fwh_sel2 > 0)
442 fwh_mask |= (0xffffULL << 32);
443 if (fwh_idsel & ~fwh_mask) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000444 msg_perr("Error: fwh_idsel= specified, but value had unused bits set.\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_idsel_old;
448 if (ich_generation == CHIPSET_BAYTRAIL) {
449 fwh_idsel_old = mmio_readl(ilb + fwh_sel1);
450 rmmio_writel(fwh_idsel, ilb + fwh_sel1);
451 } else {
Stefan Tauner5c316f92015-02-08 21:57:52 +0000452 fwh_idsel_old = (uint64_t)pci_read_long(dev, fwh_sel1) << 16;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000453 rpci_write_long(dev, fwh_sel1, (fwh_idsel >> 16) & 0xffffffff);
454 if (fwh_sel2 > 0) {
455 fwh_idsel_old |= pci_read_word(dev, fwh_sel2);
456 rpci_write_word(dev, fwh_sel2, fwh_idsel & 0xffff);
457 }
458 }
Stefan Taunereff156e2014-07-13 17:06:11 +0000459 msg_pdbg("Setting IDSEL from 0x%012" PRIx64 " to 0x%012" PRIx64 " for top 16 MB.\n",
Stefan Tauner92d6a862013-10-25 00:33:37 +0000460 fwh_idsel_old, fwh_idsel);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000461 /* FIXME: Decode settings are not changed. */
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000462 } else if (idsel) {
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000463 msg_perr("Error: fwh_idsel= specified, but no value given.\n");
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +0000464idsel_garbage_out:
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000465 free(idsel);
Tadas Slotkus0e3f1cf2011-09-06 18:49:31 +0000466 return ERROR_FATAL;
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000467 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000468 free(idsel);
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000469
Stefan Tauner92d6a862013-10-25 00:33:37 +0000470 if (!implemented) {
Stefan Taunereff156e2014-07-13 17:06:11 +0000471 msg_pdbg2("FWH IDSEL handling is not implemented on this chipset.\n");
Stefan Tauner92d6a862013-10-25 00:33:37 +0000472 return 0;
473 }
474
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000475 /* Ignore all legacy ranges below 1 MB.
476 * We currently only support flashing the chip which responds to
477 * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations
478 * have to be adjusted.
479 */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000480 int max_decode_fwh_idsel = 0, max_decode_fwh_decode = 0;
481 bool contiguous = 1;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000482 uint32_t fwh_conf;
483 if (ich_generation == CHIPSET_BAYTRAIL)
484 fwh_conf = mmio_readl(ilb + fwh_sel1);
485 else
486 fwh_conf = pci_read_long(dev, fwh_sel1);
487
Stefan Tauner92d6a862013-10-25 00:33:37 +0000488 int i;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000489 /* FWH_SEL1 */
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000490 for (i = 7; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000491 int tmp = (fwh_conf >> (i * 4)) & 0xf;
Stefan Taunereff156e2014-07-13 17:06:11 +0000492 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000493 (0x1ff8 + i) * 0x80000,
494 (0x1ff0 + i) * 0x80000,
495 tmp);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000496 if ((tmp == 0) && contiguous) {
497 max_decode_fwh_idsel = (8 - i) * 0x80000;
498 } else {
499 contiguous = 0;
500 }
501 }
Duncan Laurie4095ed72014-08-20 15:39:32 +0000502 if (fwh_sel2 > 0) {
503 /* FWH_SEL2 */
504 fwh_conf = pci_read_word(dev, fwh_sel2);
505 for (i = 3; i >= 0; i--) {
506 int tmp = (fwh_conf >> (i * 4)) & 0xf;
507 msg_pdbg("0x%08x/0x%08x FWH IDSEL: 0x%x\n",
508 (0xff4 + i) * 0x100000,
509 (0xff0 + i) * 0x100000,
510 tmp);
511 if ((tmp == 0) && contiguous) {
512 max_decode_fwh_idsel = (8 - i) * 0x100000;
513 } else {
514 contiguous = 0;
515 }
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000516 }
517 }
518 contiguous = 1;
519 /* FWH_DEC_EN1 */
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000520 fwh_conf = pci_read_byte(dev, fwh_dec_en_hi);
521 fwh_conf <<= 8;
522 fwh_conf |= pci_read_byte(dev, fwh_dec_en_lo);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000523 for (i = 7; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000524 int tmp = (fwh_conf >> (i + 0x8)) & 0x1;
Stefan Taunereff156e2014-07-13 17:06:11 +0000525 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000526 (0x1ff8 + i) * 0x80000,
527 (0x1ff0 + i) * 0x80000,
528 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000529 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000530 max_decode_fwh_decode = (8 - i) * 0x80000;
531 } else {
532 contiguous = 0;
533 }
534 }
535 for (i = 3; i >= 0; i--) {
Stefan Tauner92d6a862013-10-25 00:33:37 +0000536 int tmp = (fwh_conf >> i) & 0x1;
Stefan Taunereff156e2014-07-13 17:06:11 +0000537 msg_pdbg("0x%08x/0x%08x FWH decode %sabled\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000538 (0xff4 + i) * 0x100000,
539 (0xff0 + i) * 0x100000,
540 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000541 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000542 max_decode_fwh_decode = (8 - i) * 0x100000;
543 } else {
544 contiguous = 0;
545 }
546 }
547 max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode);
Stefan Taunereff156e2014-07-13 17:06:11 +0000548 msg_pdbg("Maximum FWH chip size: 0x%x bytes\n", max_rom_decode.fwh);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000549
Kyösti Mälkki743babc2013-09-14 23:36:53 +0000550 return 0;
551}
552
Stefan Tauner92d6a862013-10-25 00:33:37 +0000553static int enable_flash_ich_fwh(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000554{
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000555 int err;
556
557 /* Configure FWH IDSEL decoder maps. */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000558 if ((err = enable_flash_ich_fwh_decode(dev, ich_generation)) != 0)
Kyösti Mälkki88ee0402013-09-14 23:37:01 +0000559 return err;
560
Nico Huber2e50cdc2018-09-23 20:20:26 +0200561 internal_buses_supported &= BUS_FWH;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000562 return enable_flash_ich_bios_cntl_config_space(dev, ich_generation, bios_cntl);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000563}
564
Stefan Tauner92d6a862013-10-25 00:33:37 +0000565static int enable_flash_ich0(struct pci_dev *dev, const char *name)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000566{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000567 return enable_flash_ich_fwh(dev, CHIPSET_ICH, 0x4e);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000568}
569
Stefan Tauner92d6a862013-10-25 00:33:37 +0000570static int enable_flash_ich2345(struct pci_dev *dev, const char *name)
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000571{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000572 return enable_flash_ich_fwh(dev, CHIPSET_ICH2345, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000573}
574
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000575static int enable_flash_ich6(struct pci_dev *dev, const char *name)
576{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000577 return enable_flash_ich_fwh(dev, CHIPSET_ICH6, 0xdc);
Kyösti Mälkki78cd0872013-09-14 23:36:57 +0000578}
579
Adam Jurkowskie4984102009-12-21 15:30:46 +0000580static int enable_flash_poulsbo(struct pci_dev *dev, const char *name)
581{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000582 return enable_flash_ich_fwh(dev, CHIPSET_POULSBO, 0xd8);
Adam Jurkowskie4984102009-12-21 15:30:46 +0000583}
584
Nico Huber2e50cdc2018-09-23 20:20:26 +0200585static enum chipbustype enable_flash_ich_report_gcs(
586 struct pci_dev *const dev, const enum ich_chipset ich_generation, const uint8_t *const rcrb)
Ingo Feldschmiddadc0a62011-09-07 19:18:25 +0000587{
Nico Huber0ea99f52017-03-17 17:22:53 +0100588 uint32_t gcs;
Nico Huber93c30692017-03-20 14:25:09 +0100589 const char *reg_name;
590 bool bild, top_swap;
Nico Huber0ea99f52017-03-17 17:22:53 +0100591
592 switch (ich_generation) {
593 case CHIPSET_BAYTRAIL:
Nico Huber93c30692017-03-20 14:25:09 +0100594 reg_name = "GCS";
Nico Huber0ea99f52017-03-17 17:22:53 +0100595 gcs = mmio_readl(rcrb + 0);
Nico Huber93c30692017-03-20 14:25:09 +0100596 bild = gcs & 1;
Nico Huber0ea99f52017-03-17 17:22:53 +0100597 top_swap = (gcs & 2) >> 1;
598 break;
Nico Huber93c30692017-03-20 14:25:09 +0100599 case CHIPSET_100_SERIES_SUNRISE_POINT:
David Hendricksa5216362017-08-08 20:02:22 -0700600 case CHIPSET_C620_SERIES_LEWISBURG:
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;
605 break;
Nico Huber0ea99f52017-03-17 17:22:53 +0100606 default:
Nico Huber93c30692017-03-20 14:25:09 +0100607 reg_name = "GCS";
Nico Huber0ea99f52017-03-17 17:22:53 +0100608 gcs = mmio_readl(rcrb + 0x3410);
Nico Huber93c30692017-03-20 14:25:09 +0100609 bild = gcs & 1;
Nico Huber0ea99f52017-03-17 17:22:53 +0100610 top_swap = mmio_readb(rcrb + 0x3414) & 1;
611 break;
612 }
613
Nico Huber93c30692017-03-20 14:25:09 +0100614 msg_pdbg("%s = 0x%x: ", reg_name, gcs);
615 msg_pdbg("BIOS Interface Lock-Down: %sabled, ", bild ? "en" : "dis");
Duncan Laurie4095ed72014-08-20 15:39:32 +0000616
Nico Huber2e50cdc2018-09-23 20:20:26 +0200617 struct boot_straps {
618 const char *name;
619 enum chipbustype bus;
620 };
621 static const struct boot_straps boot_straps_EP80579[] =
622 { { "SPI", BUS_SPI },
623 { "reserved" },
624 { "reserved" },
625 { "LPC", BUS_LPC | BUS_FWH } };
626 static const struct boot_straps boot_straps_ich7_nm10[] =
627 { { "reserved" },
628 { "SPI", BUS_SPI },
629 { "PCI" },
630 { "LPC", BUS_LPC | BUS_FWH } };
631 static const struct boot_straps boot_straps_tunnel_creek[] =
632 { { "SPI", BUS_SPI },
633 { "LPC", BUS_LPC | BUS_FWH } };
634 static const struct boot_straps boot_straps_ich8910[] =
635 { { "SPI", BUS_SPI },
636 { "SPI", BUS_SPI },
637 { "PCI" },
638 { "LPC", BUS_LPC | BUS_FWH } };
639 static const struct boot_straps boot_straps_pch567[] =
640 { { "LPC", BUS_LPC | BUS_FWH },
641 { "reserved" },
642 { "PCI" },
643 { "SPI", BUS_SPI } };
644 static const struct boot_straps boot_straps_pch89_baytrail[] =
645 { { "LPC", BUS_LPC | BUS_FWH },
646 { "reserved" },
647 { "reserved" },
648 { "SPI", BUS_SPI } };
649 static const struct boot_straps boot_straps_pch8_lp[] =
650 { { "SPI", BUS_SPI },
651 { "LPC", BUS_LPC | BUS_FWH } };
652 static const struct boot_straps boot_straps_unknown[] =
653 { { "unknown" },
654 { "unknown" },
655 { "unknown" },
656 { "unknown" } };
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000657
Nico Huber2e50cdc2018-09-23 20:20:26 +0200658 const struct boot_straps *boot_straps;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000659 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +0000660 case CHIPSET_ICH7:
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000661 /* EP80579 may need further changes, but this is the least
662 * intrusive way to get correct BOOT Strap printing without
663 * changing the rest of its code path). */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000664 if (dev->device_id == 0x5031)
Nico Huber2e50cdc2018-09-23 20:20:26 +0200665 boot_straps = boot_straps_EP80579;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000666 else
Nico Huber2e50cdc2018-09-23 20:20:26 +0200667 boot_straps = boot_straps_ich7_nm10;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000668 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000669 case CHIPSET_ICH8:
670 case CHIPSET_ICH9:
671 case CHIPSET_ICH10:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200672 boot_straps = boot_straps_ich8910;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000673 break;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000674 case CHIPSET_TUNNEL_CREEK:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200675 boot_straps = boot_straps_tunnel_creek;
Stefan Tauner92d6a862013-10-25 00:33:37 +0000676 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000677 case CHIPSET_5_SERIES_IBEX_PEAK:
678 case CHIPSET_6_SERIES_COUGAR_POINT:
Helge Wagnera0fce5f2012-07-24 16:33:55 +0000679 case CHIPSET_7_SERIES_PANTHER_POINT:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200680 boot_straps = boot_straps_pch567;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000681 break;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000682 case CHIPSET_8_SERIES_LYNX_POINT:
Duncan Laurie823096e2014-08-20 15:39:38 +0000683 case CHIPSET_9_SERIES_WILDCAT_POINT:
Duncan Laurie4095ed72014-08-20 15:39:32 +0000684 case CHIPSET_BAYTRAIL:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200685 boot_straps = boot_straps_pch89_baytrail;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000686 break;
687 case CHIPSET_8_SERIES_LYNX_POINT_LP:
Nico Huber51205912017-03-17 17:59:54 +0100688 case CHIPSET_9_SERIES_WILDCAT_POINT_LP:
Nico Huber93c30692017-03-20 14:25:09 +0100689 case CHIPSET_100_SERIES_SUNRISE_POINT:
David Hendricksa5216362017-08-08 20:02:22 -0700690 case CHIPSET_C620_SERIES_LEWISBURG:
Nico Huber2e50cdc2018-09-23 20:20:26 +0200691 boot_straps = boot_straps_pch8_lp;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000692 break;
693 case CHIPSET_8_SERIES_WELLSBURG: // FIXME: check datasheet
Stefan Tauner92d6a862013-10-25 00:33:37 +0000694 case CHIPSET_CENTERTON: // FIXME: Datasheet does not mention GCS at all
Nico Huber2e50cdc2018-09-23 20:20:26 +0200695 boot_straps = boot_straps_unknown;
Duncan Laurie90eb2262013-03-15 03:12:29 +0000696 break;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000697 default:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000698 msg_gerr("%s: unknown ICH generation. Please report!\n", __func__);
Nico Huber2e50cdc2018-09-23 20:20:26 +0200699 boot_straps = boot_straps_unknown;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000700 break;
701 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000702
Duncan Laurie4095ed72014-08-20 15:39:32 +0000703 uint8_t bbs;
704 switch (ich_generation) {
705 case CHIPSET_TUNNEL_CREEK:
706 bbs = (gcs >> 1) & 0x1;
707 break;
708 case CHIPSET_8_SERIES_LYNX_POINT_LP:
Nico Huber51205912017-03-17 17:59:54 +0100709 case CHIPSET_9_SERIES_WILDCAT_POINT_LP:
710 /* LP PCHs use a single bit for BBS */
Duncan Laurie4095ed72014-08-20 15:39:32 +0000711 bbs = (gcs >> 10) & 0x1;
712 break;
Nico Huber93c30692017-03-20 14:25:09 +0100713 case CHIPSET_100_SERIES_SUNRISE_POINT:
David Hendricksa5216362017-08-08 20:02:22 -0700714 case CHIPSET_C620_SERIES_LEWISBURG:
Nico Huber93c30692017-03-20 14:25:09 +0100715 bbs = (gcs >> 6) & 0x1;
716 break;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000717 default:
718 /* Other chipsets use two bits for BBS */
719 bbs = (gcs >> 10) & 0x3;
720 break;
721 }
Nico Huber2e50cdc2018-09-23 20:20:26 +0200722 msg_pdbg("Boot BIOS Straps: 0x%x (%s)\n", bbs, boot_straps[bbs].name);
Duncan Laurie4095ed72014-08-20 15:39:32 +0000723
724 /* Centerton has its TS bit in [GPE0BLK] + 0x30 while the exact location for Tunnel Creek is unknown. */
725 if (ich_generation != CHIPSET_TUNNEL_CREEK && ich_generation != CHIPSET_CENTERTON)
726 msg_pdbg("Top Swap: %s\n", (top_swap) ? "enabled (A16(+) inverted)" : "not enabled");
Nico Huber2e50cdc2018-09-23 20:20:26 +0200727
728 return boot_straps[bbs].bus;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000729}
730
731static int enable_flash_ich_spi(struct pci_dev *dev, enum ich_chipset ich_generation, uint8_t bios_cntl)
732{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000733 /* Get physical address of Root Complex Register Block */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000734 uint32_t rcra = pci_read_long(dev, 0xf0) & 0xffffc000;
735 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcra);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000736
737 /* Map RCBA to virtual memory */
Stefan Tauner92d6a862013-10-25 00:33:37 +0000738 void *rcrb = rphysmap("ICH RCRB", rcra, 0x4000);
Stefan Tauner7fb5aa02013-08-14 15:48:44 +0000739 if (rcrb == ERROR_PTR)
Niklas Söderlund5d307202013-09-14 09:02:27 +0000740 return ERROR_FATAL;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000741
Nico Huber2e50cdc2018-09-23 20:20:26 +0200742 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000743
Stefan Tauner92d6a862013-10-25 00:33:37 +0000744 /* Handle FWH-related parameters and initialization */
745 int ret_fwh = enable_flash_ich_fwh(dev, ich_generation, bios_cntl);
746 if (ret_fwh == ERROR_FATAL)
747 return ret_fwh;
748
749 /* SPIBAR is at RCRB+0x3020 for ICH[78], Tunnel Creek and Centerton, and RCRB+0x3800 for ICH9. */
750 uint16_t spibar_offset;
751 switch (ich_generation) {
Duncan Laurie4095ed72014-08-20 15:39:32 +0000752 case CHIPSET_BAYTRAIL:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000753 case CHIPSET_ICH_UNKNOWN:
754 return ERROR_FATAL;
755 case CHIPSET_ICH7:
756 case CHIPSET_ICH8:
757 case CHIPSET_TUNNEL_CREEK:
758 case CHIPSET_CENTERTON:
759 spibar_offset = 0x3020;
760 break;
761 case CHIPSET_ICH9:
762 default: /* Future version might behave the same */
763 spibar_offset = 0x3800;
764 break;
765 }
766 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " + 0x%04x\n", PRIxPTR_WIDTH, (uintptr_t)rcrb, spibar_offset);
767 void *spibar = rcrb + spibar_offset;
768
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000769 /* This adds BUS_SPI */
Nico Huber560111e2017-04-26 12:27:17 +0200770 int ret_spi = ich_init_spi(spibar, ich_generation);
Stefan Tauner50e7c602011-11-08 10:55:54 +0000771 if (ret_spi == ERROR_FATAL)
772 return ret_spi;
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100773
Nico Huber2e50cdc2018-09-23 20:20:26 +0200774 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
Stefan Tauner92d6a862013-10-25 00:33:37 +0000775 return ERROR_NONFATAL;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000776
Nico Huber2e50cdc2018-09-23 20:20:26 +0200777 /* Suppress unknown laptop warning if we booted from SPI. */
778 if (boot_buses & BUS_SPI)
779 laptop_ok = 1;
780
Stefan Tauner92d6a862013-10-25 00:33:37 +0000781 return 0;
782}
783
784static int enable_flash_tunnelcreek(struct pci_dev *dev, const char *name)
785{
786 return enable_flash_ich_spi(dev, CHIPSET_TUNNEL_CREEK, 0xd8);
787}
788
789static int enable_flash_s12x0(struct pci_dev *dev, const char *name)
790{
791 return enable_flash_ich_spi(dev, CHIPSET_CENTERTON, 0xd8);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000792}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000793
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000794static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000795{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000796 return enable_flash_ich_spi(dev, CHIPSET_ICH7, 0xdc);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000797}
798
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000799static int enable_flash_ich8(struct pci_dev *dev, const char *name)
800{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000801 return enable_flash_ich_spi(dev, CHIPSET_ICH8, 0xdc);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000802}
803
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000804static int enable_flash_ich9(struct pci_dev *dev, const char *name)
805{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000806 return enable_flash_ich_spi(dev, CHIPSET_ICH9, 0xdc);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000807}
808
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000809static int enable_flash_ich10(struct pci_dev *dev, const char *name)
810{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000811 return enable_flash_ich_spi(dev, CHIPSET_ICH10, 0xdc);
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000812}
813
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000814/* Ibex Peak aka. 5 series & 3400 series */
815static int enable_flash_pch5(struct pci_dev *dev, const char *name)
816{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000817 return enable_flash_ich_spi(dev, CHIPSET_5_SERIES_IBEX_PEAK, 0xdc);
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000818}
819
820/* Cougar Point aka. 6 series & c200 series */
821static int enable_flash_pch6(struct pci_dev *dev, const char *name)
822{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000823 return enable_flash_ich_spi(dev, CHIPSET_6_SERIES_COUGAR_POINT, 0xdc);
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000824}
825
Stefan Tauner2abab942012-04-27 20:41:23 +0000826/* Panther Point aka. 7 series */
827static int enable_flash_pch7(struct pci_dev *dev, const char *name)
828{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000829 return enable_flash_ich_spi(dev, CHIPSET_7_SERIES_PANTHER_POINT, 0xdc);
Stefan Tauner2abab942012-04-27 20:41:23 +0000830}
831
832/* Lynx Point aka. 8 series */
833static int enable_flash_pch8(struct pci_dev *dev, const char *name)
834{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000835 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT, 0xdc);
Stefan Tauner2abab942012-04-27 20:41:23 +0000836}
837
Stefan Tauner92d6a862013-10-25 00:33:37 +0000838/* Lynx Point LP aka. 8 series low-power */
Duncan Laurie90eb2262013-03-15 03:12:29 +0000839static int enable_flash_pch8_lp(struct pci_dev *dev, const char *name)
840{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000841 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_LYNX_POINT_LP, 0xdc);
Duncan Laurie90eb2262013-03-15 03:12:29 +0000842}
843
844/* Wellsburg (for Haswell-EP Xeons) */
845static int enable_flash_pch8_wb(struct pci_dev *dev, const char *name)
846{
Stefan Tauner92d6a862013-10-25 00:33:37 +0000847 return enable_flash_ich_spi(dev, CHIPSET_8_SERIES_WELLSBURG, 0xdc);
Duncan Laurie90eb2262013-03-15 03:12:29 +0000848}
849
Duncan Laurie823096e2014-08-20 15:39:38 +0000850/* Wildcat Point */
851static int enable_flash_pch9(struct pci_dev *dev, const char *name)
852{
853 return enable_flash_ich_spi(dev, CHIPSET_9_SERIES_WILDCAT_POINT, 0xdc);
854}
855
Nico Huber51205912017-03-17 17:59:54 +0100856/* Wildcat Point LP */
857static int enable_flash_pch9_lp(struct pci_dev *dev, const char *name)
858{
859 return enable_flash_ich_spi(dev, CHIPSET_9_SERIES_WILDCAT_POINT_LP, 0xdc);
860}
861
Nico Huber93c30692017-03-20 14:25:09 +0100862/* Sunrise Point */
863static int enable_flash_pch100_shutdown(void *const pci_acc)
864{
865 pci_cleanup(pci_acc);
866 return 0;
867}
868
David Hendricksa5216362017-08-08 20:02:22 -0700869static int enable_flash_pch100_or_c620(struct pci_dev *const dev, const char *const name, const enum ich_chipset pch_generation)
Nico Huber93c30692017-03-20 14:25:09 +0100870{
Nico Huber93c30692017-03-20 14:25:09 +0100871 int ret = ERROR_FATAL;
872
873 /*
874 * The SPI PCI device is usually hidden (by hiding PCI vendor
875 * and device IDs). So we need a PCI access method that works
876 * even when the OS doesn't know the PCI device. We can't use
877 * this method globally since it would bring along other con-
878 * straints (e.g. on PCI domains, extended PCIe config space).
879 */
880 struct pci_access *const pci_acc = pci_alloc();
Youness Alaouia54ceb12017-07-26 18:03:36 -0400881 struct pci_access *const saved_pacc = pacc;
Nico Huber93c30692017-03-20 14:25:09 +0100882 if (!pci_acc) {
883 msg_perr("Can't allocate PCI accessor.\n");
884 return ret;
885 }
886 pci_acc->method = PCI_ACCESS_I386_TYPE1;
887 pci_init(pci_acc);
888 register_shutdown(enable_flash_pch100_shutdown, pci_acc);
889
890 struct pci_dev *const spi_dev = pci_get_dev(pci_acc, dev->domain, dev->bus, 0x1f, 5);
891 if (!spi_dev) {
892 msg_perr("Can't allocate PCI device.\n");
893 return ret;
894 }
895
Youness Alaouia54ceb12017-07-26 18:03:36 -0400896 /* Modify pacc so the rpci_write can register the undo callback with a
897 * device using the correct pci_access */
898 pacc = pci_acc;
Nico Huber2e50cdc2018-09-23 20:20:26 +0200899 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(spi_dev, pch_generation, NULL);
Nico Huber93c30692017-03-20 14:25:09 +0100900
901 const int ret_bc = enable_flash_ich_bios_cntl_config_space(spi_dev, pch_generation, 0xdc);
902 if (ret_bc == ERROR_FATAL)
903 goto _freepci_ret;
904
905 const uint32_t phys_spibar = pci_read_long(spi_dev, PCI_BASE_ADDRESS_0) & 0xfffff000;
906 void *const spibar = rphysmap("SPIBAR", phys_spibar, 0x1000);
907 if (spibar == ERROR_PTR)
908 goto _freepci_ret;
909 msg_pdbg("SPIBAR = 0x%0*" PRIxPTR " (phys = 0x%08x)\n", PRIxPTR_WIDTH, (uintptr_t)spibar, phys_spibar);
910
911 /* This adds BUS_SPI */
912 const int ret_spi = ich_init_spi(spibar, pch_generation);
913 if (ret_spi != ERROR_FATAL) {
914 if (ret_bc || ret_spi)
915 ret = ERROR_NONFATAL;
916 else
917 ret = 0;
918 }
919
Nico Huber2e50cdc2018-09-23 20:20:26 +0200920 /* Suppress unknown laptop warning if we booted from SPI. */
921 if (!ret && (boot_buses & BUS_SPI))
922 laptop_ok = 1;
923
Nico Huber93c30692017-03-20 14:25:09 +0100924_freepci_ret:
925 pci_free_dev(spi_dev);
Youness Alaouia54ceb12017-07-26 18:03:36 -0400926 pacc = saved_pacc;
Nico Huber93c30692017-03-20 14:25:09 +0100927 return ret;
928}
929
David Hendricksa5216362017-08-08 20:02:22 -0700930static int enable_flash_pch100(struct pci_dev *const dev, const char *const name)
931{
932 return enable_flash_pch100_or_c620(dev, name, CHIPSET_100_SERIES_SUNRISE_POINT);
933}
934
935static int enable_flash_c620(struct pci_dev *const dev, const char *const name)
936{
937 return enable_flash_pch100_or_c620(dev, name, CHIPSET_C620_SERIES_LEWISBURG);
938}
939
Duncan Laurie4095ed72014-08-20 15:39:32 +0000940/* Silvermont architecture: Bay Trail(-T/-I), Avoton/Rangeley.
941 * These have a distinctly different behavior compared to other Intel chipsets and hence are handled separately.
942 *
943 * Differences include:
944 * - RCBA at LPC config 0xF0 too but mapped range is only 4 B long instead of 16 kB.
945 * - GCS at [RCRB] + 0 (instead of [RCRB] + 0x3410).
946 * - TS (Top Swap) in GCS (instead of [RCRB] + 0x3414).
947 * - SPIBAR (coined SBASE) at LPC config 0x54 (instead of [RCRB] + 0x3800).
948 * - BIOS_CNTL (coined BCR) at [SPIBAR] + 0xFC (instead of LPC config 0xDC).
949 */
950static int enable_flash_silvermont(struct pci_dev *dev, const char *name)
951{
952 enum ich_chipset ich_generation = CHIPSET_BAYTRAIL;
953
954 /* Get physical address of Root Complex Register Block */
955 uint32_t rcba = pci_read_long(dev, 0xf0) & 0xfffffc00;
956 msg_pdbg("Root Complex Register Block address = 0x%x\n", rcba);
957
958 /* Handle GCS (in RCRB) */
959 void *rcrb = physmap("BYT RCRB", rcba, 4);
Nico Huber2e50cdc2018-09-23 20:20:26 +0200960 const enum chipbustype boot_buses = enable_flash_ich_report_gcs(dev, ich_generation, rcrb);
Duncan Laurie4095ed72014-08-20 15:39:32 +0000961 physunmap(rcrb, 4);
962
963 /* Handle fwh_idsel parameter */
964 int ret_fwh = enable_flash_ich_fwh_decode(dev, ich_generation);
965 if (ret_fwh == ERROR_FATAL)
966 return ret_fwh;
967
Nico Huber2e50cdc2018-09-23 20:20:26 +0200968 internal_buses_supported &= BUS_FWH;
Duncan Laurie4095ed72014-08-20 15:39:32 +0000969
970 /* Get physical address of SPI Base Address and map it */
971 uint32_t sbase = pci_read_long(dev, 0x54) & 0xfffffe00;
972 msg_pdbg("SPI_BASE_ADDRESS = 0x%x\n", sbase);
973 void *spibar = rphysmap("BYT SBASE", sbase, 512); /* Last defined address on Bay Trail is 0x100 */
974
975 /* Enable Flash Writes.
976 * Silvermont-based: BCR at SBASE + 0xFC (some bits of BCR are also accessible via BC at IBASE + 0x1C).
977 */
978 enable_flash_ich_bios_cntl_memmapped(ich_generation, spibar + 0xFC);
979
Nico Huber560111e2017-04-26 12:27:17 +0200980 int ret_spi = ich_init_spi(spibar, ich_generation);
Duncan Laurie4095ed72014-08-20 15:39:32 +0000981 if (ret_spi == ERROR_FATAL)
982 return ret_spi;
983
Nico Huber2e50cdc2018-09-23 20:20:26 +0200984 if (((boot_buses & BUS_FWH) && ret_fwh) || ((boot_buses & BUS_SPI) && ret_spi))
Duncan Laurie4095ed72014-08-20 15:39:32 +0000985 return ERROR_NONFATAL;
986
Nico Huber2e50cdc2018-09-23 20:20:26 +0200987 /* Suppress unknown laptop warning if we booted from SPI. */
988 if (boot_buses & BUS_SPI)
989 laptop_ok = 1;
990
Duncan Laurie4095ed72014-08-20 15:39:32 +0000991 return 0;
992}
993
Michael Karcher89bed6d2010-06-13 10:16:12 +0000994static int via_no_byte_merge(struct pci_dev *dev, const char *name)
995{
996 uint8_t val;
997
998 val = pci_read_byte(dev, 0x71);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000999 if (val & 0x40) {
Michael Karcher89bed6d2010-06-13 10:16:12 +00001000 msg_pdbg("Disabling byte merging\n");
1001 val &= ~0x40;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001002 rpci_write_byte(dev, 0x71, val);
Michael Karcher89bed6d2010-06-13 10:16:12 +00001003 }
1004 return NOT_DONE_YET; /* need to find south bridge, too */
1005}
1006
Uwe Hermann372eeb52007-12-04 21:49:06 +00001007static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001008{
Ollie Lho184a4042005-11-26 21:55:36 +00001009 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001010
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001011 /* Enable ROM decode range (1MB) FFC00000 - FFFFFFFF. */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001012 rpci_write_byte(dev, 0x41, 0x7f);
Bari Ari9477c4e2008-04-29 13:46:38 +00001013
Uwe Hermannffec5f32007-08-23 16:08:21 +00001014 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +00001015 val = pci_read_byte(dev, 0x40);
1016 val |= 0x10;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001017 rpci_write_byte(dev, 0x40, val);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001018
1019 if (pci_read_byte(dev, 0x40) != val) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00001020 msg_pwarn("\nWarning: Failed to enable flash write on \"%s\"\n", name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001021 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001022 }
Luc Verhaegen6382b442007-03-02 22:16:38 +00001023
Helge Wagnerdd73d832012-08-24 23:03:46 +00001024 if (dev->device_id == 0x3227) { /* VT8237/VT8237R */
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001025 /* All memory cycles, not just ROM ones, go to LPC. */
1026 val = pci_read_byte(dev, 0x59);
1027 val &= ~0x80;
1028 rpci_write_byte(dev, 0x59, val);
Luc Verhaegen73d21192009-12-23 00:54:26 +00001029 }
1030
Uwe Hermanna7e05482007-05-09 10:17:44 +00001031 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001032}
1033
Helge Wagnerdd73d832012-08-24 23:03:46 +00001034static int enable_flash_vt_vx(struct pci_dev *dev, const char *name)
1035{
1036 struct pci_dev *south_north = pci_dev_find(0x1106, 0xa353);
1037 if (south_north == NULL) {
1038 msg_perr("Could not find South-North Module Interface Control device!\n");
1039 return ERROR_FATAL;
1040 }
1041
1042 msg_pdbg("Strapped to ");
1043 if ((pci_read_byte(south_north, 0x56) & 0x01) == 0) {
1044 msg_pdbg("LPC.\n");
1045 return enable_flash_vt823x(dev, name);
1046 }
1047 msg_pdbg("SPI.\n");
1048
1049 uint32_t mmio_base;
1050 void *mmio_base_physmapped;
1051 uint32_t spi_cntl;
1052 #define SPI_CNTL_LEN 0x08
1053 uint32_t spi0_mm_base = 0;
1054 switch(dev->device_id) {
1055 case 0x8353: /* VX800/VX820 */
1056 spi0_mm_base = pci_read_long(dev, 0xbc) << 8;
Lubomir Rinteld0803c82017-10-30 07:57:53 +01001057 if (spi0_mm_base == 0x0) {
1058 msg_pdbg ("MMIO not enabled!\n");
1059 return ERROR_FATAL;
1060 }
Helge Wagnerdd73d832012-08-24 23:03:46 +00001061 break;
1062 case 0x8409: /* VX855/VX875 */
1063 case 0x8410: /* VX900 */
1064 mmio_base = pci_read_long(dev, 0xbc) << 8;
Lubomir Rinteld0803c82017-10-30 07:57:53 +01001065 if (mmio_base == 0x0) {
1066 msg_pdbg ("MMIO not enabled!\n");
1067 return ERROR_FATAL;
1068 }
Helge Wagnerdd73d832012-08-24 23:03:46 +00001069 mmio_base_physmapped = physmap("VIA VX MMIO register", mmio_base, SPI_CNTL_LEN);
Stefan Tauner7fb5aa02013-08-14 15:48:44 +00001070 if (mmio_base_physmapped == ERROR_PTR)
Helge Wagnerdd73d832012-08-24 23:03:46 +00001071 return ERROR_FATAL;
Helge Wagnerdd73d832012-08-24 23:03:46 +00001072
1073 /* Offset 0 - Bit 0 holds SPI Bus0 Enable Bit. */
1074 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x00;
1075 if ((spi_cntl & 0x01) == 0) {
1076 msg_pdbg ("SPI Bus0 disabled!\n");
1077 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1078 return ERROR_FATAL;
1079 }
1080 /* Offset 1-3 has SPI Bus Memory Map Base Address: */
1081 spi0_mm_base = spi_cntl & 0xFFFFFF00;
1082
1083 /* Offset 4 - Bit 0 holds SPI Bus1 Enable Bit. */
1084 spi_cntl = mmio_readl(mmio_base_physmapped) + 0x04;
1085 if ((spi_cntl & 0x01) == 1)
1086 msg_pdbg2("SPI Bus1 is enabled too.\n");
1087
1088 physunmap(mmio_base_physmapped, SPI_CNTL_LEN);
1089 break;
1090 default:
1091 msg_perr("%s: Unsupported chipset %x:%x!\n", __func__, dev->vendor_id, dev->device_id);
1092 return ERROR_FATAL;
1093 }
1094
Nico Huber560111e2017-04-26 12:27:17 +02001095 return via_init_spi(spi0_mm_base);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001096}
1097
1098static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
1099{
Nico Huber560111e2017-04-26 12:27:17 +02001100 return via_init_spi(pci_read_long(dev, 0xbc) << 8);
Helge Wagnerdd73d832012-08-24 23:03:46 +00001101}
1102
Uwe Hermann372eeb52007-12-04 21:49:06 +00001103static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001104{
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001105 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001106
Uwe Hermann394131e2008-10-18 21:14:13 +00001107#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
1108#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001109#define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */
1110#define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */
Ollie Lhocbbf1252004-03-17 22:22:08 +00001111
Uwe Hermann394131e2008-10-18 21:14:13 +00001112#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
1113#define ROM_WRITE_ENABLE (1 << 1)
1114#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
1115#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001116#define CS5530_ISA_MASTER (1 << 7)
1117#define CS5530_ENABLE_SA2320 (1 << 2)
1118#define CS5530_ENABLE_SA20 (1 << 6)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001119
Nico Huber2e50cdc2018-09-23 20:20:26 +02001120 internal_buses_supported &= BUS_PARALLEL;
Stefan Taunerc0aaf952011-05-19 02:58:17 +00001121 /* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and
1122 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB.
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001123 * FIXME: Should we really touch the low mapping below 1 MB? Flashrom
1124 * ignores that region completely.
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001125 * Make the configured ROM areas writable.
1126 */
1127 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
1128 reg8 |= LOWER_ROM_ADDRESS_RANGE;
1129 reg8 |= UPPER_ROM_ADDRESS_RANGE;
1130 reg8 |= ROM_WRITE_ENABLE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001131 rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001132
Uwe Hermannf4a673b2007-06-06 21:35:45 +00001133 /* Set positive decode on ROM. */
1134 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
1135 reg8 |= BIOS_ROM_POSITIVE_DECODE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001136 rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001137
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +00001138 reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG);
1139 if (reg8 & CS5530_ISA_MASTER) {
1140 /* We have A0-A23 available. */
1141 max_rom_decode.parallel = 16 * 1024 * 1024;
1142 } else {
1143 reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG);
1144 if (reg8 & CS5530_ENABLE_SA2320) {
1145 /* We have A0-19, A20-A23 available. */
1146 max_rom_decode.parallel = 16 * 1024 * 1024;
1147 } else if (reg8 & CS5530_ENABLE_SA20) {
1148 /* We have A0-19, A20 available. */
1149 max_rom_decode.parallel = 2 * 1024 * 1024;
1150 } else {
1151 /* A20 and above are not active. */
1152 max_rom_decode.parallel = 1024 * 1024;
1153 }
1154 }
1155
Ollie Lhocbbf1252004-03-17 22:22:08 +00001156 return 0;
1157}
1158
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001159/*
Mart Raudseppe1344da2008-02-08 10:10:57 +00001160 * Geode systems write protect the BIOS via RCONFs (cache settings similar
Elyes HAOUAS124ef382018-03-27 12:15:09 +02001161 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22.
Mart Raudseppe1344da2008-02-08 10:10:57 +00001162 *
1163 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
1164 * To enable write to NOR Boot flash for the benefit of systems that have such
1165 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
Mart Raudseppe1344da2008-02-08 10:10:57 +00001166 */
Uwe Hermann372eeb52007-12-04 21:49:06 +00001167static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +00001168{
Uwe Hermann394131e2008-10-18 21:14:13 +00001169#define MSR_RCONF_DEFAULT 0x1808
1170#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001171
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001172 msr_t msr;
Lane Brooksd54958a2007-11-13 16:45:22 +00001173
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001174 /* Geode only has a single core */
1175 if (setup_cpu_msr(0))
Lane Brooksd54958a2007-11-13 16:45:22 +00001176 return -1;
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001177
1178 msr = rdmsr(MSR_RCONF_DEFAULT);
1179 if ((msr.hi >> 24) != 0x22) {
1180 msr.hi &= 0xfbffffff;
1181 wrmsr(MSR_RCONF_DEFAULT, msr);
Lane Brooksd54958a2007-11-13 16:45:22 +00001182 }
Mart Raudseppe1344da2008-02-08 10:10:57 +00001183
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001184 msr = rdmsr(MSR_NORF_CTL);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001185 /* Raise WE_CS3 bit. */
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001186 msr.lo |= 0x08;
1187 wrmsr(MSR_NORF_CTL, msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001188
Stefan Reinauer8fa64812009-08-12 09:27:45 +00001189 cleanup_cpu_msr();
Mart Raudsepp0514a5f2008-02-08 09:59:58 +00001190
Uwe Hermann394131e2008-10-18 21:14:13 +00001191#undef MSR_RCONF_DEFAULT
1192#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +00001193 return 0;
1194}
1195
Uwe Hermann372eeb52007-12-04 21:49:06 +00001196static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001197{
Stefan Taunere34e3e82013-01-01 00:06:51 +00001198 #define SC_REG 0x52
Ollie Lho184a4042005-11-26 21:55:36 +00001199 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +00001200
Stefan Taunere34e3e82013-01-01 00:06:51 +00001201 rpci_write_byte(dev, SC_REG, 0xee);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001202
Stefan Taunere34e3e82013-01-01 00:06:51 +00001203 new = pci_read_byte(dev, SC_REG);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001204
Stefan Taunere34e3e82013-01-01 00:06:51 +00001205 if (new != 0xee) { /* FIXME: share this with other code? */
1206 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 +00001207 return -1;
1208 }
Uwe Hermannffec5f32007-08-23 16:08:21 +00001209
Ollie Lhocbbf1252004-03-17 22:22:08 +00001210 return 0;
1211}
1212
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001213/* Works for AMD-768, AMD-8111, VIA VT82C586A/B, VIA VT82C596, VIA VT82C686A/B.
1214 *
1215 * ROM decode control register matrix
Elyes HAOUASac01baa2018-05-28 16:52:21 +02001216 * AMD-768 AMD-8111 VT82C586A/B VT82C596 VT82C686A/B
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001217 * 7 FFC0_0000h–FFFF_FFFFh <- FFFE0000h-FFFEFFFFh <- <-
1218 * 6 FFB0_0000h–FFBF_FFFFh <- FFF80000h-FFFDFFFFh <- <-
1219 * 5 00E8... <- <- FFF00000h-FFF7FFFFh <-
1220 */
1221static int enable_flash_amd_via(struct pci_dev *dev, const char *name, uint8_t decode_val)
Ollie Lho761bf1b2004-03-20 16:46:10 +00001222{
Stefan Taunere34e3e82013-01-01 00:06:51 +00001223 #define AMD_MAPREG 0x43
1224 #define AMD_ENREG 0x40
Ollie Lho184a4042005-11-26 21:55:36 +00001225 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001226
Stefan Taunere34e3e82013-01-01 00:06:51 +00001227 old = pci_read_byte(dev, AMD_MAPREG);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001228 new = old | decode_val;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001229 if (new != old) {
Stefan Taunere34e3e82013-01-01 00:06:51 +00001230 rpci_write_byte(dev, AMD_MAPREG, new);
1231 if (pci_read_byte(dev, AMD_MAPREG) != new) {
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001232 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
Stefan Taunere34e3e82013-01-01 00:06:51 +00001233 AMD_MAPREG, new, name);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001234 } else
1235 msg_pdbg("Changed ROM decode range to 0x%02x successfully.\n", new);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001236 }
1237
Uwe Hermann190f8492008-10-25 18:03:50 +00001238 /* Enable 'ROM write' bit. */
Stefan Taunere34e3e82013-01-01 00:06:51 +00001239 old = pci_read_byte(dev, AMD_ENREG);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001240 new = old | 0x01;
1241 if (new == old)
1242 return 0;
Stefan Taunere34e3e82013-01-01 00:06:51 +00001243 rpci_write_byte(dev, AMD_ENREG, new);
Ollie Lhocbbf1252004-03-17 22:22:08 +00001244
Stefan Taunere34e3e82013-01-01 00:06:51 +00001245 if (pci_read_byte(dev, AMD_ENREG) != new) {
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001246 msg_pwarn("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n",
Stefan Taunere34e3e82013-01-01 00:06:51 +00001247 AMD_ENREG, new, name);
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001248 return ERROR_NONFATAL;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001249 }
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001250 msg_pdbg2("Set ROM enable bit successfully.\n");
Uwe Hermannffec5f32007-08-23 16:08:21 +00001251
Ollie Lhocbbf1252004-03-17 22:22:08 +00001252 return 0;
1253}
1254
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001255static int enable_flash_amd_768_8111(struct pci_dev *dev, const char *name)
1256{
1257 /* Enable decoding of 0xFFB00000 to 0xFFFFFFFF (5 MB). */
1258 max_rom_decode.lpc = 5 * 1024 * 1024;
1259 return enable_flash_amd_via(dev, name, 0xC0);
1260}
1261
1262static int enable_flash_vt82c586(struct pci_dev *dev, const char *name)
1263{
1264 /* Enable decoding of 0xFFF80000 to 0xFFFFFFFF. (512 kB) */
1265 max_rom_decode.parallel = 512 * 1024;
1266 return enable_flash_amd_via(dev, name, 0xC0);
1267}
1268
1269/* Works for VT82C686A/B too. */
1270static int enable_flash_vt82c596(struct pci_dev *dev, const char *name)
1271{
Stefan Taunerc2eec2c2014-05-03 21:33:01 +00001272 /* Enable decoding of 0xFFF00000 to 0xFFFFFFFF. (1 MB) */
Stefan Tauner6c67f1c2013-09-12 08:38:23 +00001273 max_rom_decode.parallel = 1024 * 1024;
1274 return enable_flash_amd_via(dev, name, 0xE0);
1275}
1276
Marc Jones3af487d2008-10-15 17:50:29 +00001277static int enable_flash_sb600(struct pci_dev *dev, const char *name)
1278{
Michael Karcherb05b9e12010-07-22 18:04:19 +00001279 uint32_t prot;
Marc Jones3af487d2008-10-15 17:50:29 +00001280 uint8_t reg;
Michael Karcherb05b9e12010-07-22 18:04:19 +00001281 int ret;
Marc Jones3af487d2008-10-15 17:50:29 +00001282
Jason Wanga3f04be2008-11-28 21:36:51 +00001283 /* Clear ROM protect 0-3. */
1284 for (reg = 0x50; reg < 0x60; reg += 4) {
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001285 prot = pci_read_long(dev, reg);
1286 /* No protection flags for this region?*/
1287 if ((prot & 0x3) == 0)
1288 continue;
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001289 msg_pdbg("Chipset %s%sprotected flash from 0x%08x to 0x%08x, unlocking...",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001290 (prot & 0x2) ? "read " : "",
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001291 (prot & 0x1) ? "write " : "",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001292 (prot & 0xfffff800),
1293 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001294 prot &= 0xfffffffc;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001295 rpci_write_byte(dev, reg, prot);
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001296 prot = pci_read_long(dev, reg);
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001297 if ((prot & 0x3) != 0) {
1298 msg_perr("Disabling %s%sprotection of flash addresses from 0x%08x to 0x%08x failed.\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001299 (prot & 0x2) ? "read " : "",
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001300 (prot & 0x1) ? "write " : "",
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001301 (prot & 0xfffff800),
1302 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Stefan Tauner0e0a0dc2014-07-15 13:50:17 +00001303 continue;
1304 }
1305 msg_pdbg("done.\n");
Jason Wanga3f04be2008-11-28 21:36:51 +00001306 }
1307
Nico Huber2e50cdc2018-09-23 20:20:26 +02001308 internal_buses_supported &= BUS_LPC | BUS_FWH;
Michael Karcherb05b9e12010-07-22 18:04:19 +00001309
1310 ret = sb600_probe_spi(dev);
Jason Wanga3f04be2008-11-28 21:36:51 +00001311
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001312 /* Read ROM strap override register. */
1313 OUTB(0x8f, 0xcd6);
1314 reg = INB(0xcd7);
1315 reg &= 0x0e;
Sean Nelson316a29f2010-05-07 20:09:04 +00001316 msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001317 if (reg & 0x02) {
1318 switch ((reg & 0x0c) >> 2) {
1319 case 0x00:
Sean Nelson316a29f2010-05-07 20:09:04 +00001320 msg_pdbg(": LPC");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001321 break;
1322 case 0x01:
Sean Nelson316a29f2010-05-07 20:09:04 +00001323 msg_pdbg(": PCI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001324 break;
1325 case 0x02:
Sean Nelson316a29f2010-05-07 20:09:04 +00001326 msg_pdbg(": FWH");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001327 break;
1328 case 0x03:
Sean Nelson316a29f2010-05-07 20:09:04 +00001329 msg_pdbg(": SPI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001330 break;
1331 }
1332 }
Sean Nelson316a29f2010-05-07 20:09:04 +00001333 msg_pdbg("\n");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +00001334
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001335 /* Force enable SPI ROM in SB600 PM register.
1336 * If we enable SPI ROM here, we have to disable it after we leave.
Zheng Bao284a6002009-05-04 22:33:50 +00001337 * But how can we know which ROM we are going to handle? So we have
1338 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +00001339 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
1340 * boards with LPC straps, you have to use the code below.
Zheng Bao284a6002009-05-04 22:33:50 +00001341 */
1342 /*
Jason Wanga3f04be2008-11-28 21:36:51 +00001343 OUTB(0x8f, 0xcd6);
1344 OUTB(0x0e, 0xcd7);
Zheng Bao284a6002009-05-04 22:33:50 +00001345 */
Marc Jones3af487d2008-10-15 17:50:29 +00001346
Michael Karcherb05b9e12010-07-22 18:04:19 +00001347 return ret;
Marc Jones3af487d2008-10-15 17:50:29 +00001348}
1349
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001350/* sets bit 0 in 0x6d */
1351static int enable_flash_nvidia_common(struct pci_dev *dev, const char *name)
1352{
1353 uint8_t old, new;
1354
1355 old = pci_read_byte(dev, 0x6d);
1356 new = old | 0x01;
1357 if (new == old)
1358 return 0;
1359
1360 rpci_write_byte(dev, 0x6d, new);
1361 if (pci_read_byte(dev, 0x6d) != new) {
1362 msg_pinfo("Setting register 0x6d to 0x%02x on %s failed.\n", new, name);
1363 return 1;
1364 }
1365 return 0;
1366}
1367
Luc Verhaegen90e8e612009-05-26 09:48:28 +00001368static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name)
1369{
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001370 rpci_write_byte(dev, 0x92, 0);
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001371 if (enable_flash_nvidia_common(dev, name))
1372 return ERROR_NONFATAL;
1373 else
1374 return 0;
Luc Verhaegen90e8e612009-05-26 09:48:28 +00001375}
1376
Uwe Hermann372eeb52007-12-04 21:49:06 +00001377static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +00001378{
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001379 uint32_t segctrl;
1380 uint8_t reg, old, new;
1381 unsigned int err = 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +00001382
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001383 /* 0x8A is special: it is a single byte and only one nibble is touched. */
1384 reg = 0x8A;
1385 segctrl = pci_read_byte(dev, reg);
1386 if ((segctrl & 0x3) != 0x0) {
1387 if ((segctrl & 0xC) != 0x0) {
1388 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1389 err++;
1390 } else {
1391 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1392 rpci_write_byte(dev, reg, segctrl & 0xF0);
1393
1394 segctrl = pci_read_byte(dev, reg);
1395 if ((segctrl & 0x3) != 0x0) {
1396 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%x).\n",
1397 reg, segctrl);
1398 err++;
1399 } else
1400 msg_pdbg("OK\n");
1401 }
Jonathan Kollasch9ce498e2011-08-06 12:45:21 +00001402 }
1403
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001404 for (reg = 0x8C; reg <= 0x94; reg += 4) {
1405 segctrl = pci_read_long(dev, reg);
1406 if ((segctrl & 0x33333333) == 0x00000000) {
1407 /* reads and writes are unlocked */
1408 continue;
1409 }
1410 if ((segctrl & 0xCCCCCCCC) != 0x00000000) {
1411 msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg);
1412 err++;
1413 continue;
1414 }
1415 msg_pdbg("Unlocking protection in register 0x%02x... ", reg);
1416 rpci_write_long(dev, reg, 0x00000000);
1417
1418 segctrl = pci_read_long(dev, reg);
1419 if ((segctrl & 0x33333333) != 0x00000000) {
1420 msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%08x).\n",
1421 reg, segctrl);
1422 err++;
1423 } else
1424 msg_pdbg("OK\n");
1425 }
1426
1427 if (err > 0) {
1428 msg_pinfo("%d locks could not be disabled, disabling writes (reads may also fail).\n", err);
1429 programmer_may_write = 0;
1430 }
1431
1432 reg = 0x88;
1433 old = pci_read_byte(dev, reg);
1434 new = old | 0xC0;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001435 if (new != old) {
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001436 rpci_write_byte(dev, reg, new);
Stefan Taunere34e3e82013-01-01 00:06:51 +00001437 if (pci_read_byte(dev, reg) != new) { /* FIXME: share this with other code? */
1438 msg_pinfo("Setting register 0x%02x to 0x%02x on %s failed.\n", reg, new, name);
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001439 err++;
Uwe Hermanna7e05482007-05-09 10:17:44 +00001440 }
1441 }
Yinghai Lu952dfce2005-07-06 17:13:46 +00001442
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001443 if (enable_flash_nvidia_common(dev, name))
Jonathan Kollaschc8190002012-09-04 03:55:04 +00001444 err++;
1445
1446 if (err > 0)
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001447 return ERROR_NONFATAL;
1448 else
Uwe Hermanna7e05482007-05-09 10:17:44 +00001449 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +00001450}
1451
Joshua Roys85835d82010-09-15 14:47:56 +00001452static int enable_flash_osb4(struct pci_dev *dev, const char *name)
1453{
1454 uint8_t tmp;
1455
Nico Huber2e50cdc2018-09-23 20:20:26 +02001456 internal_buses_supported &= BUS_PARALLEL;
Joshua Roys85835d82010-09-15 14:47:56 +00001457
1458 tmp = INB(0xc06);
1459 tmp |= 0x1;
1460 OUTB(tmp, 0xc06);
1461
1462 tmp = INB(0xc6f);
1463 tmp |= 0x40;
1464 OUTB(tmp, 0xc6f);
1465
1466 return 0;
1467}
1468
Uwe Hermann372eeb52007-12-04 21:49:06 +00001469/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
1470static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +00001471{
Uwe Hermanna7e05482007-05-09 10:17:44 +00001472 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +00001473 struct pci_dev *smbusdev;
1474
Uwe Hermann372eeb52007-12-04 21:49:06 +00001475 /* Look for the SMBus device. */
Carl-Daniel Hailfingerf6e3efb2009-05-06 00:35:31 +00001476 smbusdev = pci_dev_find(0x1002, 0x4372);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001477
Uwe Hermanna7e05482007-05-09 10:17:44 +00001478 if (!smbusdev) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001479 msg_perr("ERROR: SMBus device not found. Aborting.\n");
Tadas Slotkus0e3f1cf2011-09-06 18:49:31 +00001480 return ERROR_FATAL;
Stefan Reinauer86de2832006-03-31 11:26:55 +00001481 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001482
Uwe Hermann372eeb52007-12-04 21:49:06 +00001483 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001484 tmp = pci_read_byte(smbusdev, 0x79);
1485 tmp |= 0x01;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001486 rpci_write_byte(smbusdev, 0x79, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001487
Uwe Hermann372eeb52007-12-04 21:49:06 +00001488 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001489 tmp = pci_read_byte(dev, 0x48);
1490 tmp |= 0x21;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001491 rpci_write_byte(dev, 0x48, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001492
Uwe Hermann372eeb52007-12-04 21:49:06 +00001493 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +00001494 tmp = INB(0xc6f);
1495 OUTB(tmp, 0xeb);
1496 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001497 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +00001498 OUTB(tmp, 0xc6f);
1499 OUTB(tmp, 0xeb);
1500 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +00001501
1502 return 0;
1503}
1504
Uwe Hermann372eeb52007-12-04 21:49:06 +00001505static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +00001506{
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001507 uint8_t val;
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001508 uint16_t wordval;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001509
Uwe Hermann372eeb52007-12-04 21:49:06 +00001510 /* Set the 0-16 MB enable bits. */
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001511 val = pci_read_byte(dev, 0x88);
1512 val |= 0xff; /* 256K */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001513 rpci_write_byte(dev, 0x88, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001514 val = pci_read_byte(dev, 0x8c);
1515 val |= 0xff; /* 1M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001516 rpci_write_byte(dev, 0x8c, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +00001517 wordval = pci_read_word(dev, 0x90);
1518 wordval |= 0x7fff; /* 16M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001519 rpci_write_word(dev, 0x90, wordval);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +00001520
Stefan Taunerb66ba1e2012-09-04 01:49:49 +00001521 if (enable_flash_nvidia_common(dev, name))
1522 return ERROR_NONFATAL;
1523 else
Uwe Hermanna7e05482007-05-09 10:17:44 +00001524 return 0;
Yinghai Luca782972007-01-22 20:21:17 +00001525}
1526
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001527/*
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001528 * The MCP6x/MCP7x code is based on cleanroom reverse engineering.
1529 * It is assumed that LPC chips need the MCP55 code and SPI chips need the
1530 * code provided in enable_flash_mcp6x_7x_common.
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001531 */
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001532static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001533{
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001534 int ret = 0, want_spi = 0;
Michael Karchercfa674f2010-02-25 11:38:23 +00001535 uint8_t val;
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001536
1537 /* dev is the ISA bridge. No idea what the stuff below does. */
Michael Karchercfa674f2010-02-25 11:38:23 +00001538 val = pci_read_byte(dev, 0x8a);
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001539 msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 "
Michael Karchercfa674f2010-02-25 11:38:23 +00001540 "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1);
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001541
Michael Karchercfa674f2010-02-25 11:38:23 +00001542 switch ((val >> 5) & 0x3) {
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001543 case 0x0:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001544 ret = enable_flash_mcp55(dev, name);
Nico Huber2e50cdc2018-09-23 20:20:26 +02001545 internal_buses_supported &= BUS_LPC;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001546 msg_pdbg("Flash bus type is LPC\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001547 break;
1548 case 0x2:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001549 want_spi = 1;
1550 /* SPI is added in mcp6x_spi_init if it works.
1551 * Do we really want to disable LPC in this case?
1552 */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00001553 internal_buses_supported = BUS_NONE;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001554 msg_pdbg("Flash bus type is SPI\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001555 break;
1556 default:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001557 /* Should not happen. */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00001558 internal_buses_supported = BUS_NONE;
Stefan Tauner7ba3d6c2014-06-12 21:07:03 +00001559 msg_pwarn("Flash bus type is unknown (none)\n");
Elyes HAOUASac01baa2018-05-28 16:52:21 +02001560 msg_pinfo("Please send the log files created by \"flashrom -p internal -o logfile\" to\n"
Stefan Tauner7ba3d6c2014-06-12 21:07:03 +00001561 "flashrom@flashrom.org with \"your board name: flashrom -V\" as the subject to\n"
1562 "help us finish support for your chipset. Thanks.\n");
1563 return ERROR_NONFATAL;
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001564 }
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001565
1566 /* Force enable SPI and disable LPC? Not a good idea. */
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001567#if 0
Michael Karchercfa674f2010-02-25 11:38:23 +00001568 val |= (1 << 6);
1569 val &= ~(1 << 5);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001570 rpci_write_byte(dev, 0x8a, val);
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001571#endif
1572
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001573 if (mcp6x_spi_init(want_spi))
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001574 ret = 1;
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001575
Nico Huber2e50cdc2018-09-23 20:20:26 +02001576 /* Suppress unknown laptop warning if we booted from SPI. */
1577 if (!ret && want_spi)
1578 laptop_ok = 1;
1579
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001580 return ret;
1581}
1582
Uwe Hermann372eeb52007-12-04 21:49:06 +00001583static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001584{
Michael Karchercfa674f2010-02-25 11:38:23 +00001585 uint8_t val;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001586
Uwe Hermanne823ee02007-06-05 15:02:18 +00001587 /* Set the 4MB enable bit. */
Michael Karchercfa674f2010-02-25 11:38:23 +00001588 val = pci_read_byte(dev, 0x41);
1589 val |= 0x0e;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001590 rpci_write_byte(dev, 0x41, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001591
Michael Karchercfa674f2010-02-25 11:38:23 +00001592 val = pci_read_byte(dev, 0x43);
1593 val |= (1 << 4);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001594 rpci_write_byte(dev, 0x43, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001595
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001596 return 0;
1597}
1598
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001599/*
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001600 * Usually on the x86 architectures (and on other PC-like platforms like some
1601 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
1602 * Elan SC520 only a small piece of the system flash is mapped there, but the
1603 * complete flash is mapped somewhere below 1G. The position can be determined
1604 * by the BOOTCS PAR register.
1605 */
1606static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
1607{
1608 int i, bootcs_found = 0;
1609 uint32_t parx = 0;
1610 void *mmcr;
1611
1612 /* 1. Map MMCR */
Stefan Reinauer0593f212009-01-26 01:10:48 +00001613 mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
Niklas Söderlund5d307202013-09-14 09:02:27 +00001614 if (mmcr == ERROR_PTR)
1615 return ERROR_FATAL;
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001616
1617 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
1618 * BOOTCS region (PARx[31:29] = 100b)e
1619 */
1620 for (i = 0x88; i <= 0xc4; i += 4) {
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +00001621 parx = mmio_readl(mmcr + i);
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001622 if ((parx >> 29) == 4) {
1623 bootcs_found = 1;
1624 break; /* BOOTCS found */
1625 }
1626 }
1627
1628 /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
1629 * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
1630 */
1631 if (bootcs_found) {
1632 if (parx & (1 << 25)) {
1633 parx &= (1 << 14) - 1; /* Mask [13:0] */
1634 flashbase = parx << 16;
1635 } else {
1636 parx &= (1 << 18) - 1; /* Mask [17:0] */
1637 flashbase = parx << 12;
1638 }
1639 } else {
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001640 msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. "
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001641 "Assuming flash at 4G.\n");
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001642 }
1643
1644 /* 4. Clean up */
Carl-Daniel Hailfingerbe726812009-08-09 12:44:08 +00001645 physunmap(mmcr, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001646 return 0;
1647}
1648
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001649#endif
1650
Nico Huber2e50cdc2018-09-23 20:20:26 +02001651#define B_P (BUS_PARALLEL)
1652#define B_PFL (BUS_NONSPI)
1653#define B_PFLS (BUS_NONSPI | BUS_SPI)
1654#define B_FL (BUS_FWH | BUS_LPC)
1655#define B_FLS (BUS_FWH | BUS_LPC | BUS_SPI)
1656#define B_FS (BUS_FWH | BUS_SPI)
1657#define B_L (BUS_LPC)
1658#define B_LS (BUS_LPC | BUS_SPI)
1659#define B_S (BUS_SPI)
1660
Idwer Vollering326a0602011-06-18 18:45:41 +00001661/* Please keep this list numerically sorted by vendor/device ID. */
Uwe Hermann05fab752009-05-16 23:42:17 +00001662const struct penable chipset_enables[] = {
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001663#if defined(__i386__) || defined(__x86_64__)
Nico Huber2e50cdc2018-09-23 20:20:26 +02001664 {0x1002, 0x4377, B_PFL, OK, "ATI", "SB400", enable_flash_sb400},
1665 {0x1002, 0x438d, B_FLS, OK, "AMD", "SB600", enable_flash_sb600},
1666 {0x1002, 0x439d, B_FLS, OK, "AMD", "SB7x0/SB8x0/SB9x0", enable_flash_sb600},
1667 {0x100b, 0x0510, B_PFL, NT, "AMD", "SC1100", enable_flash_sc1100},
1668 {0x1022, 0x2080, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1669 {0x1022, 0x2090, B_PFL, OK, "AMD", "CS5536", enable_flash_cs5536},
1670 {0x1022, 0x3000, B_PFL, OK, "AMD", "Elan SC520", get_flashbase_sc520},
1671 {0x1022, 0x7440, B_PFL, OK, "AMD", "AMD-768", enable_flash_amd_768_8111},
1672 {0x1022, 0x7468, B_PFL, OK, "AMD", "AMD-8111", enable_flash_amd_768_8111},
1673 {0x1022, 0x780e, B_FLS, OK, "AMD", "FCH", enable_flash_sb600},
1674 {0x1022, 0x790e, B_FLS, OK, "AMD", "FP4", enable_flash_sb600},
1675 {0x1039, 0x0406, B_PFL, NT, "SiS", "501/5101/5501", enable_flash_sis501},
1676 {0x1039, 0x0496, B_PFL, NT, "SiS", "85C496+497", enable_flash_sis85c496},
1677 {0x1039, 0x0530, B_PFL, OK, "SiS", "530", enable_flash_sis530},
1678 {0x1039, 0x0540, B_PFL, NT, "SiS", "540", enable_flash_sis540},
1679 {0x1039, 0x0620, B_PFL, NT, "SiS", "620", enable_flash_sis530},
1680 {0x1039, 0x0630, B_PFL, OK, "SiS", "630", enable_flash_sis540},
1681 {0x1039, 0x0635, B_PFL, NT, "SiS", "635", enable_flash_sis540},
1682 {0x1039, 0x0640, B_PFL, NT, "SiS", "640", enable_flash_sis540},
1683 {0x1039, 0x0645, B_PFL, NT, "SiS", "645", enable_flash_sis540},
1684 {0x1039, 0x0646, B_PFL, OK, "SiS", "645DX", enable_flash_sis540},
1685 {0x1039, 0x0648, B_PFL, OK, "SiS", "648", enable_flash_sis540},
1686 {0x1039, 0x0650, B_PFL, OK, "SiS", "650", enable_flash_sis540},
1687 {0x1039, 0x0651, B_PFL, OK, "SiS", "651", enable_flash_sis540},
1688 {0x1039, 0x0655, B_PFL, NT, "SiS", "655", enable_flash_sis540},
1689 {0x1039, 0x0661, B_PFL, OK, "SiS", "661", enable_flash_sis540},
1690 {0x1039, 0x0730, B_PFL, OK, "SiS", "730", enable_flash_sis540},
1691 {0x1039, 0x0733, B_PFL, NT, "SiS", "733", enable_flash_sis540},
1692 {0x1039, 0x0735, B_PFL, OK, "SiS", "735", enable_flash_sis540},
1693 {0x1039, 0x0740, B_PFL, NT, "SiS", "740", enable_flash_sis540},
1694 {0x1039, 0x0741, B_PFL, OK, "SiS", "741", enable_flash_sis540},
1695 {0x1039, 0x0745, B_PFL, OK, "SiS", "745", enable_flash_sis540},
1696 {0x1039, 0x0746, B_PFL, NT, "SiS", "746", enable_flash_sis540},
1697 {0x1039, 0x0748, B_PFL, NT, "SiS", "748", enable_flash_sis540},
1698 {0x1039, 0x0755, B_PFL, OK, "SiS", "755", enable_flash_sis540},
1699 {0x1039, 0x5511, B_PFL, NT, "SiS", "5511", enable_flash_sis5511},
1700 {0x1039, 0x5571, B_PFL, NT, "SiS", "5571", enable_flash_sis530},
1701 {0x1039, 0x5591, B_PFL, NT, "SiS", "5591/5592", enable_flash_sis530},
1702 {0x1039, 0x5596, B_PFL, NT, "SiS", "5596", enable_flash_sis5511},
1703 {0x1039, 0x5597, B_PFL, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530},
1704 {0x1039, 0x5600, B_PFL, NT, "SiS", "600", enable_flash_sis530},
1705 {0x1078, 0x0100, B_P, OK, "AMD", "CS5530(A)", enable_flash_cs5530},
1706 {0x10b9, 0x1533, B_PFL, OK, "ALi", "M1533", enable_flash_ali_m1533},
1707 {0x10de, 0x0030, B_PFL, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2},
1708 {0x10de, 0x0050, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */
1709 {0x10de, 0x0051, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */
1710 {0x10de, 0x0060, B_PFL, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2},
1711 {0x10de, 0x00e0, B_PFL, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2},
Uwe Hermanneac10162008-03-13 18:52:51 +00001712 /* Slave, should not be here, to fix known bug for A01. */
Nico Huber2e50cdc2018-09-23 20:20:26 +02001713 {0x10de, 0x00d3, B_PFL, OK, "NVIDIA", "CK804", enable_flash_ck804},
1714 {0x10de, 0x0260, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1715 {0x10de, 0x0261, B_PFL, OK, "NVIDIA", "MCP51", enable_flash_ck804},
1716 {0x10de, 0x0262, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1717 {0x10de, 0x0263, B_PFL, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1718 {0x10de, 0x0360, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001719 /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to
1720 * the flash chip. Instead, 10de:0364 is connected to the flash chip.
1721 * Until we have PCI device class matching or some fallback mechanism,
1722 * this is needed to get flashrom working on Tyan S2915 and maybe other
1723 * dual-MCP55 boards.
1724 */
1725#if 0
Nico Huber2e50cdc2018-09-23 20:20:26 +02001726 {0x10de, 0x0361, B_L, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001727#endif
Nico Huber2e50cdc2018-09-23 20:20:26 +02001728 {0x10de, 0x0362, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1729 {0x10de, 0x0363, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1730 {0x10de, 0x0364, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1731 {0x10de, 0x0365, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1732 {0x10de, 0x0366, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1733 {0x10de, 0x0367, B_L, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */
1734 {0x10de, 0x03e0, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1735 {0x10de, 0x03e1, B_LS, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1736 {0x10de, 0x03e3, B_LS, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1737 {0x10de, 0x0440, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1738 {0x10de, 0x0441, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1739 {0x10de, 0x0442, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1740 {0x10de, 0x0443, B_LS, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1741 {0x10de, 0x0548, B_LS, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x},
1742 {0x10de, 0x075c, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1743 {0x10de, 0x075d, B_LS, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1744 {0x10de, 0x07d7, B_LS, OK, "NVIDIA", "MCP73", enable_flash_mcp6x_7x},
1745 {0x10de, 0x0aac, B_LS, OK, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1746 {0x10de, 0x0aad, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1747 {0x10de, 0x0aae, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1748 {0x10de, 0x0aaf, B_LS, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1749 {0x10de, 0x0d80, B_LS, NT, "NVIDIA", "MCP89", enable_flash_mcp6x_7x},
Michael Karcher89bed6d2010-06-13 10:16:12 +00001750 /* VIA northbridges */
Nico Huber2e50cdc2018-09-23 20:20:26 +02001751 {0x1106, 0x0585, B_PFLS, NT, "VIA", "VT82C585VPX", via_no_byte_merge},
1752 {0x1106, 0x0595, B_PFLS, NT, "VIA", "VT82C595", via_no_byte_merge},
1753 {0x1106, 0x0597, B_PFLS, NT, "VIA", "VT82C597", via_no_byte_merge},
1754 {0x1106, 0x0601, B_PFLS, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge},
1755 {0x1106, 0x0691, B_PFLS, OK, "VIA", "VT82C69x", via_no_byte_merge},
1756 {0x1106, 0x8601, B_PFLS, NT, "VIA", "VT8601T", via_no_byte_merge},
Michael Karcher89bed6d2010-06-13 10:16:12 +00001757 /* VIA southbridges */
Nico Huber2e50cdc2018-09-23 20:20:26 +02001758 {0x1106, 0x0586, B_PFL, OK, "VIA", "VT82C586A/B", enable_flash_vt82c586},
1759 {0x1106, 0x0596, B_PFL, OK, "VIA", "VT82C596", enable_flash_vt82c596},
1760 {0x1106, 0x0686, B_PFL, OK, "VIA", "VT82C686A/B", enable_flash_vt82c596},
1761 {0x1106, 0x3074, B_FL, OK, "VIA", "VT8233", enable_flash_vt823x},
1762 {0x1106, 0x3147, B_FL, OK, "VIA", "VT8233A", enable_flash_vt823x},
1763 {0x1106, 0x3177, B_FL, OK, "VIA", "VT8235", enable_flash_vt823x},
1764 {0x1106, 0x3227, B_FL, OK, "VIA", "VT8237(R)", enable_flash_vt823x},
1765 {0x1106, 0x3287, B_FL, OK, "VIA", "VT8251", enable_flash_vt823x},
1766 {0x1106, 0x3337, B_FL, OK, "VIA", "VT8237A", enable_flash_vt823x},
1767 {0x1106, 0x3372, B_LS, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi},
1768 {0x1106, 0x8231, B_FL, NT, "VIA", "VT8231", enable_flash_vt823x},
1769 {0x1106, 0x8324, B_FL, OK, "VIA", "CX700", enable_flash_vt823x},
1770 {0x1106, 0x8353, B_FLS, NT, "VIA", "VX800/VX820", enable_flash_vt_vx},
1771 {0x1106, 0x8409, B_FLS, OK, "VIA", "VX855/VX875", enable_flash_vt_vx},
1772 {0x1106, 0x8410, B_FLS, OK, "VIA", "VX900", enable_flash_vt_vx},
1773 {0x1166, 0x0200, B_P, OK, "Broadcom", "OSB4", enable_flash_osb4},
1774 {0x1166, 0x0205, B_PFL, OK, "Broadcom", "HT-1000", enable_flash_ht1000},
1775 {0x17f3, 0x6030, B_PFL, OK, "RDC", "R8610/R3210", enable_flash_rdc_r8610},
1776 {0x8086, 0x0c60, B_FS, NT, "Intel", "S12x0", enable_flash_s12x0},
1777 {0x8086, 0x0f1c, B_FS, OK, "Intel", "Bay Trail", enable_flash_silvermont},
1778 {0x8086, 0x0f1d, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1779 {0x8086, 0x0f1e, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1780 {0x8086, 0x0f1f, B_FS, NT, "Intel", "Bay Trail", enable_flash_silvermont},
1781 {0x8086, 0x122e, B_P, OK, "Intel", "PIIX", enable_flash_piix4},
1782 {0x8086, 0x1234, B_P, NT, "Intel", "MPIIX", enable_flash_piix4},
1783 {0x8086, 0x1c44, B_FS, DEP, "Intel", "Z68", enable_flash_pch6},
1784 {0x8086, 0x1c46, B_FS, DEP, "Intel", "P67", enable_flash_pch6},
1785 {0x8086, 0x1c47, B_FS, NT, "Intel", "UM67", enable_flash_pch6},
1786 {0x8086, 0x1c49, B_FS, DEP, "Intel", "HM65", enable_flash_pch6},
1787 {0x8086, 0x1c4a, B_FS, DEP, "Intel", "H67", enable_flash_pch6},
1788 {0x8086, 0x1c4b, B_FS, NT, "Intel", "HM67", enable_flash_pch6},
1789 {0x8086, 0x1c4c, B_FS, NT, "Intel", "Q65", enable_flash_pch6},
1790 {0x8086, 0x1c4d, B_FS, NT, "Intel", "QS67", enable_flash_pch6},
1791 {0x8086, 0x1c4e, B_FS, NT, "Intel", "Q67", enable_flash_pch6},
1792 {0x8086, 0x1c4f, B_FS, DEP, "Intel", "QM67", enable_flash_pch6},
1793 {0x8086, 0x1c50, B_FS, NT, "Intel", "B65", enable_flash_pch6},
1794 {0x8086, 0x1c52, B_FS, NT, "Intel", "C202", enable_flash_pch6},
1795 {0x8086, 0x1c54, B_FS, DEP, "Intel", "C204", enable_flash_pch6},
1796 {0x8086, 0x1c56, B_FS, NT, "Intel", "C206", enable_flash_pch6},
1797 {0x8086, 0x1c5c, B_FS, DEP, "Intel", "H61", enable_flash_pch6},
1798 {0x8086, 0x1d40, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
1799 {0x8086, 0x1d41, B_FS, DEP, "Intel", "C60x/X79", enable_flash_pch6},
1800 {0x8086, 0x1e44, B_FS, DEP, "Intel", "Z77", enable_flash_pch7},
1801 {0x8086, 0x1e46, B_FS, NT, "Intel", "Z75", enable_flash_pch7},
1802 {0x8086, 0x1e47, B_FS, NT, "Intel", "Q77", enable_flash_pch7},
1803 {0x8086, 0x1e48, B_FS, NT, "Intel", "Q75", enable_flash_pch7},
1804 {0x8086, 0x1e49, B_FS, DEP, "Intel", "B75", enable_flash_pch7},
1805 {0x8086, 0x1e4a, B_FS, DEP, "Intel", "H77", enable_flash_pch7},
1806 {0x8086, 0x1e53, B_FS, NT, "Intel", "C216", enable_flash_pch7},
1807 {0x8086, 0x1e55, B_FS, DEP, "Intel", "QM77", enable_flash_pch7},
1808 {0x8086, 0x1e56, B_FS, DEP, "Intel", "QS77", enable_flash_pch7},
1809 {0x8086, 0x1e57, B_FS, DEP, "Intel", "HM77", enable_flash_pch7},
1810 {0x8086, 0x1e58, B_FS, NT, "Intel", "UM77", enable_flash_pch7},
1811 {0x8086, 0x1e59, B_FS, NT, "Intel", "HM76", enable_flash_pch7},
1812 {0x8086, 0x1e5d, B_FS, NT, "Intel", "HM75", enable_flash_pch7},
1813 {0x8086, 0x1e5e, B_FS, NT, "Intel", "HM70", enable_flash_pch7},
1814 {0x8086, 0x1e5f, B_FS, DEP, "Intel", "NM70", enable_flash_pch7},
1815 {0x8086, 0x1f38, B_FS, DEP, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1816 {0x8086, 0x1f39, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1817 {0x8086, 0x1f3a, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1818 {0x8086, 0x1f3b, B_FS, NT, "Intel", "Avoton/Rangeley", enable_flash_silvermont},
1819 {0x8086, 0x229c, B_FS, OK, "Intel", "Braswell", enable_flash_silvermont},
1820 {0x8086, 0x2310, B_FS, NT, "Intel", "DH89xxCC (Cave Creek)", enable_flash_pch7},
1821 {0x8086, 0x2390, B_FS, NT, "Intel", "Coleto Creek", enable_flash_pch7},
1822 {0x8086, 0x2410, B_FL, OK, "Intel", "ICH", enable_flash_ich0},
1823 {0x8086, 0x2420, B_FL, OK, "Intel", "ICH0", enable_flash_ich0},
1824 {0x8086, 0x2440, B_FL, OK, "Intel", "ICH2", enable_flash_ich2345},
1825 {0x8086, 0x244c, B_FL, OK, "Intel", "ICH2-M", enable_flash_ich2345},
1826 {0x8086, 0x2450, B_FL, NT, "Intel", "C-ICH", enable_flash_ich2345},
1827 {0x8086, 0x2480, B_FL, OK, "Intel", "ICH3-S", enable_flash_ich2345},
1828 {0x8086, 0x248c, B_FL, OK, "Intel", "ICH3-M", enable_flash_ich2345},
1829 {0x8086, 0x24c0, B_FL, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich2345},
1830 {0x8086, 0x24cc, B_FL, OK, "Intel", "ICH4-M", enable_flash_ich2345},
1831 {0x8086, 0x24d0, B_FL, OK, "Intel", "ICH5/ICH5R", enable_flash_ich2345},
1832 {0x8086, 0x25a1, B_FL, OK, "Intel", "6300ESB", enable_flash_ich2345},
1833 {0x8086, 0x2640, B_FL, OK, "Intel", "ICH6/ICH6R", enable_flash_ich6},
1834 {0x8086, 0x2641, B_FL, OK, "Intel", "ICH6-M", enable_flash_ich6},
1835 {0x8086, 0x2642, B_FL, NT, "Intel", "ICH6W/ICH6RW", enable_flash_ich6},
1836 {0x8086, 0x2670, B_FL, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich6},
1837 {0x8086, 0x27b0, B_FS, OK, "Intel", "ICH7DH", enable_flash_ich7},
1838 {0x8086, 0x27b8, B_FS, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7},
1839 {0x8086, 0x27b9, B_FS, OK, "Intel", "ICH7M", enable_flash_ich7},
1840 {0x8086, 0x27bc, B_FS, OK, "Intel", "NM10", enable_flash_ich7},
1841 {0x8086, 0x27bd, B_FS, OK, "Intel", "ICH7MDH", enable_flash_ich7},
1842 {0x8086, 0x2810, B_FS, DEP, "Intel", "ICH8/ICH8R", enable_flash_ich8},
1843 {0x8086, 0x2811, B_FS, DEP, "Intel", "ICH8M-E", enable_flash_ich8},
1844 {0x8086, 0x2812, B_FS, DEP, "Intel", "ICH8DH", enable_flash_ich8},
1845 {0x8086, 0x2814, B_FS, DEP, "Intel", "ICH8DO", enable_flash_ich8},
1846 {0x8086, 0x2815, B_FS, DEP, "Intel", "ICH8M", enable_flash_ich8},
1847 {0x8086, 0x2910, B_FS, DEP, "Intel", "ICH9 Eng. Sample", enable_flash_ich9},
1848 {0x8086, 0x2912, B_FS, DEP, "Intel", "ICH9DH", enable_flash_ich9},
1849 {0x8086, 0x2914, B_FS, DEP, "Intel", "ICH9DO", enable_flash_ich9},
1850 {0x8086, 0x2916, B_FS, DEP, "Intel", "ICH9R", enable_flash_ich9},
1851 {0x8086, 0x2917, B_FS, DEP, "Intel", "ICH9M-E", enable_flash_ich9},
1852 {0x8086, 0x2918, B_FS, DEP, "Intel", "ICH9", enable_flash_ich9},
1853 {0x8086, 0x2919, B_FS, DEP, "Intel", "ICH9M", enable_flash_ich9},
1854 {0x8086, 0x3a10, B_FS, NT, "Intel", "ICH10R Eng. Sample", enable_flash_ich10},
1855 {0x8086, 0x3a14, B_FS, DEP, "Intel", "ICH10DO", enable_flash_ich10},
1856 {0x8086, 0x3a16, B_FS, DEP, "Intel", "ICH10R", enable_flash_ich10},
1857 {0x8086, 0x3a18, B_FS, DEP, "Intel", "ICH10", enable_flash_ich10},
1858 {0x8086, 0x3a1a, B_FS, DEP, "Intel", "ICH10D", enable_flash_ich10},
1859 {0x8086, 0x3a1e, B_FS, NT, "Intel", "ICH10 Eng. Sample", enable_flash_ich10},
1860 {0x8086, 0x3b00, B_FS, NT, "Intel", "3400 Desktop", enable_flash_pch5},
1861 {0x8086, 0x3b01, B_FS, NT, "Intel", "3400 Mobile", enable_flash_pch5},
1862 {0x8086, 0x3b02, B_FS, NT, "Intel", "P55", enable_flash_pch5},
1863 {0x8086, 0x3b03, B_FS, DEP, "Intel", "PM55", enable_flash_pch5},
1864 {0x8086, 0x3b06, B_FS, DEP, "Intel", "H55", enable_flash_pch5},
1865 {0x8086, 0x3b07, B_FS, DEP, "Intel", "QM57", enable_flash_pch5},
1866 {0x8086, 0x3b08, B_FS, NT, "Intel", "H57", enable_flash_pch5},
1867 {0x8086, 0x3b09, B_FS, DEP, "Intel", "HM55", enable_flash_pch5},
1868 {0x8086, 0x3b0a, B_FS, NT, "Intel", "Q57", enable_flash_pch5},
1869 {0x8086, 0x3b0b, B_FS, NT, "Intel", "HM57", enable_flash_pch5},
1870 {0x8086, 0x3b0d, B_FS, NT, "Intel", "3400 Mobile SFF", enable_flash_pch5},
1871 {0x8086, 0x3b0e, B_FS, NT, "Intel", "B55", enable_flash_pch5},
1872 {0x8086, 0x3b0f, B_FS, DEP, "Intel", "QS57", enable_flash_pch5},
1873 {0x8086, 0x3b12, B_FS, NT, "Intel", "3400", enable_flash_pch5},
1874 {0x8086, 0x3b14, B_FS, DEP, "Intel", "3420", enable_flash_pch5},
1875 {0x8086, 0x3b16, B_FS, NT, "Intel", "3450", enable_flash_pch5},
1876 {0x8086, 0x3b1e, B_FS, NT, "Intel", "B55", enable_flash_pch5},
1877 {0x8086, 0x5031, B_FS, OK, "Intel", "EP80579", enable_flash_ich7},
1878 {0x8086, 0x7000, B_P, OK, "Intel", "PIIX3", enable_flash_piix4},
1879 {0x8086, 0x7110, B_P, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4},
1880 {0x8086, 0x7198, B_P, OK, "Intel", "440MX", enable_flash_piix4},
1881 {0x8086, 0x8119, B_FL, OK, "Intel", "SCH Poulsbo", enable_flash_poulsbo},
1882 {0x8086, 0x8186, B_FS, OK, "Intel", "Atom E6xx(T) (Tunnel Creek)", enable_flash_tunnelcreek},
1883 {0x8086, 0x8c40, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1884 {0x8086, 0x8c41, B_FS, NT, "Intel", "Lynx Point Mobile Eng. Sample", enable_flash_pch8},
1885 {0x8086, 0x8c42, B_FS, NT, "Intel", "Lynx Point Desktop Eng. Sample",enable_flash_pch8},
1886 {0x8086, 0x8c43, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1887 {0x8086, 0x8c44, B_FS, DEP, "Intel", "Z87", enable_flash_pch8},
1888 {0x8086, 0x8c45, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1889 {0x8086, 0x8c46, B_FS, NT, "Intel", "Z85", enable_flash_pch8},
1890 {0x8086, 0x8c47, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1891 {0x8086, 0x8c48, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1892 {0x8086, 0x8c49, B_FS, NT, "Intel", "HM86", enable_flash_pch8},
1893 {0x8086, 0x8c4a, B_FS, DEP, "Intel", "H87", enable_flash_pch8},
1894 {0x8086, 0x8c4b, B_FS, DEP, "Intel", "HM87", enable_flash_pch8},
1895 {0x8086, 0x8c4c, B_FS, NT, "Intel", "Q85", enable_flash_pch8},
1896 {0x8086, 0x8c4d, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1897 {0x8086, 0x8c4e, B_FS, NT, "Intel", "Q87", enable_flash_pch8},
1898 {0x8086, 0x8c4f, B_FS, NT, "Intel", "QM87", enable_flash_pch8},
1899 {0x8086, 0x8c50, B_FS, DEP, "Intel", "B85", enable_flash_pch8},
1900 {0x8086, 0x8c51, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1901 {0x8086, 0x8c52, B_FS, NT, "Intel", "C222", enable_flash_pch8},
1902 {0x8086, 0x8c53, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1903 {0x8086, 0x8c54, B_FS, DEP, "Intel", "C224", enable_flash_pch8},
1904 {0x8086, 0x8c55, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1905 {0x8086, 0x8c56, B_FS, NT, "Intel", "C226", enable_flash_pch8},
1906 {0x8086, 0x8c57, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1907 {0x8086, 0x8c58, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1908 {0x8086, 0x8c59, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1909 {0x8086, 0x8c5a, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1910 {0x8086, 0x8c5b, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1911 {0x8086, 0x8c5c, B_FS, DEP, "Intel", "H81", enable_flash_pch8},
1912 {0x8086, 0x8c5d, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1913 {0x8086, 0x8c5e, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1914 {0x8086, 0x8c5f, B_FS, NT, "Intel", "Lynx Point", enable_flash_pch8},
1915 {0x8086, 0x8cc1, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
1916 {0x8086, 0x8cc2, B_FS, NT, "Intel", "9 Series Engineering Sample", enable_flash_pch9},
1917 {0x8086, 0x8cc3, B_FS, NT, "Intel", "9 Series", enable_flash_pch9},
1918 {0x8086, 0x8cc4, B_FS, NT, "Intel", "Z97", enable_flash_pch9},
1919 {0x8086, 0x8cc6, B_FS, NT, "Intel", "H97", enable_flash_pch9},
1920 {0x8086, 0x8d40, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1921 {0x8086, 0x8d41, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1922 {0x8086, 0x8d42, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1923 {0x8086, 0x8d43, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1924 {0x8086, 0x8d44, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1925 {0x8086, 0x8d45, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1926 {0x8086, 0x8d46, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1927 {0x8086, 0x8d47, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1928 {0x8086, 0x8d48, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1929 {0x8086, 0x8d49, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1930 {0x8086, 0x8d4a, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1931 {0x8086, 0x8d4b, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1932 {0x8086, 0x8d4c, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1933 {0x8086, 0x8d4d, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1934 {0x8086, 0x8d4e, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1935 {0x8086, 0x8d4f, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1936 {0x8086, 0x8d50, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1937 {0x8086, 0x8d51, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1938 {0x8086, 0x8d52, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1939 {0x8086, 0x8d53, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1940 {0x8086, 0x8d54, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1941 {0x8086, 0x8d55, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1942 {0x8086, 0x8d56, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1943 {0x8086, 0x8d57, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1944 {0x8086, 0x8d58, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1945 {0x8086, 0x8d59, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1946 {0x8086, 0x8d5a, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1947 {0x8086, 0x8d5b, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1948 {0x8086, 0x8d5c, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1949 {0x8086, 0x8d5d, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1950 {0x8086, 0x8d5e, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1951 {0x8086, 0x8d5f, B_FS, NT, "Intel", "C610/X99 (Wellsburg)", enable_flash_pch8_wb},
1952 {0x8086, 0x9c41, B_FS, NT, "Intel", "Lynx Point LP Eng. Sample", enable_flash_pch8_lp},
1953 {0x8086, 0x9c43, B_FS, NT, "Intel", "Lynx Point LP Premium", enable_flash_pch8_lp},
1954 {0x8086, 0x9c45, B_FS, NT, "Intel", "Lynx Point LP Mainstream", enable_flash_pch8_lp},
1955 {0x8086, 0x9c47, B_FS, NT, "Intel", "Lynx Point LP Value", enable_flash_pch8_lp},
1956 {0x8086, 0x9cc1, B_FS, NT, "Intel", "Haswell U Sample", enable_flash_pch9_lp},
1957 {0x8086, 0x9cc2, B_FS, NT, "Intel", "Broadwell U Sample", enable_flash_pch9_lp},
1958 {0x8086, 0x9cc3, B_FS, DEP, "Intel", "Broadwell U Premium", enable_flash_pch9_lp},
1959 {0x8086, 0x9cc5, B_FS, NT, "Intel", "Broadwell U Base", enable_flash_pch9_lp},
1960 {0x8086, 0x9cc6, B_FS, NT, "Intel", "Broadwell Y Sample", enable_flash_pch9_lp},
1961 {0x8086, 0x9cc7, B_FS, NT, "Intel", "Broadwell Y Premium", enable_flash_pch9_lp},
1962 {0x8086, 0x9cc9, B_FS, NT, "Intel", "Broadwell Y Base", enable_flash_pch9_lp},
1963 {0x8086, 0x9ccb, B_FS, NT, "Intel", "Broadwell H", enable_flash_pch9},
1964 {0x8086, 0x9d41, B_S, NT, "Intel", "Skylake / Kaby Lake Sample", enable_flash_pch100},
1965 {0x8086, 0x9d43, B_S, NT, "Intel", "Skylake U Base", enable_flash_pch100},
1966 {0x8086, 0x9d46, B_S, NT, "Intel", "Skylake Y Premium", enable_flash_pch100},
1967 {0x8086, 0x9d48, B_S, NT, "Intel", "Skylake U Premium", enable_flash_pch100},
1968 {0x8086, 0x9d4b, B_S, NT, "Intel", "Kaby Lake Y w/ iHDCP2.2 Prem.", enable_flash_pch100},
1969 {0x8086, 0x9d4e, B_S, NT, "Intel", "Kaby Lake U w/ iHDCP2.2 Prem.", enable_flash_pch100},
1970 {0x8086, 0x9d50, B_S, NT, "Intel", "Kaby Lake U w/ iHDCP2.2 Base", enable_flash_pch100},
1971 {0x8086, 0x9d51, B_S, NT, "Intel", "Kabe Lake w/ iHDCP2.2 Sample", enable_flash_pch100},
1972 {0x8086, 0x9d53, B_S, NT, "Intel", "Kaby Lake U Base", enable_flash_pch100},
1973 {0x8086, 0x9d56, B_S, NT, "Intel", "Kaby Lake Y Premium", enable_flash_pch100},
1974 {0x8086, 0x9d58, B_S, NT, "Intel", "Kaby Lake U Premium", enable_flash_pch100},
1975 {0x8086, 0xa141, B_S, NT, "Intel", "Sunrise Point Desktop Sample", enable_flash_pch100},
1976 {0x8086, 0xa142, B_S, NT, "Intel", "Sunrise Point Unknown Sample", enable_flash_pch100},
1977 {0x8086, 0xa143, B_S, NT, "Intel", "H110", enable_flash_pch100},
1978 {0x8086, 0xa144, B_S, NT, "Intel", "H170", enable_flash_pch100},
1979 {0x8086, 0xa145, B_S, NT, "Intel", "Z170", enable_flash_pch100},
1980 {0x8086, 0xa146, B_S, NT, "Intel", "Q170", enable_flash_pch100},
1981 {0x8086, 0xa147, B_S, NT, "Intel", "Q150", enable_flash_pch100},
1982 {0x8086, 0xa148, B_S, NT, "Intel", "B150", enable_flash_pch100},
1983 {0x8086, 0xa149, B_S, NT, "Intel", "C236", enable_flash_pch100},
1984 {0x8086, 0xa14a, B_S, NT, "Intel", "C232", enable_flash_pch100},
1985 {0x8086, 0xa14b, B_S, NT, "Intel", "Sunrise Point Server Sample", enable_flash_pch100},
1986 {0x8086, 0xa14d, B_S, NT, "Intel", "QM170", enable_flash_pch100},
1987 {0x8086, 0xa14e, B_S, NT, "Intel", "HM170", enable_flash_pch100},
1988 {0x8086, 0xa150, B_S, NT, "Intel", "CM236", enable_flash_pch100},
1989 {0x8086, 0xa151, B_S, NT, "Intel", "QMS180", enable_flash_pch100},
1990 {0x8086, 0xa152, B_S, NT, "Intel", "HM175", enable_flash_pch100},
1991 {0x8086, 0xa153, B_S, NT, "Intel", "QM175", enable_flash_pch100},
1992 {0x8086, 0xa154, B_S, NT, "Intel", "CM238", enable_flash_pch100},
1993 {0x8086, 0xa155, B_S, NT, "Intel", "QMU185", enable_flash_pch100},
1994 {0x8086, 0xa1c1, B_S, NT, "Intel", "C621 Series Chipset (QS/PRQ)", enable_flash_c620},
1995 {0x8086, 0xa1c2, B_S, NT, "Intel", "C622 Series Chipset (QS/PRQ)", enable_flash_c620},
1996 {0x8086, 0xa1c3, B_S, NT, "Intel", "C624 Series Chipset (QS/PRQ)", enable_flash_c620},
1997 {0x8086, 0xa1c4, B_S, NT, "Intel", "C625 Series Chipset (QS/PRQ)", enable_flash_c620},
1998 {0x8086, 0xa1c5, B_S, NT, "Intel", "C626 Series Chipset (QS/PRQ)", enable_flash_c620},
1999 {0x8086, 0xa1c6, B_S, NT, "Intel", "C627 Series Chipset (QS/PRQ)", enable_flash_c620},
2000 {0x8086, 0xa1c7, B_S, NT, "Intel", "C628 Series Chipset (QS/PRQ)", enable_flash_c620},
2001 {0x8086, 0xa242, B_S, NT, "Intel", "C624 Series Chipset Supersku", enable_flash_c620},
2002 {0x8086, 0xa243, B_S, NT, "Intel", "C627 Series Chipset Supersku", enable_flash_c620},
2003 {0x8086, 0xa244, B_S, NT, "Intel", "C621 Series Chipset Supersku", enable_flash_c620},
2004 {0x8086, 0xa245, B_S, NT, "Intel", "C627 Series Chipset Supersku", enable_flash_c620},
2005 {0x8086, 0xa246, B_S, NT, "Intel", "C628 Series Chipset Supersku", enable_flash_c620},
2006 {0x8086, 0xa247, B_S, NT, "Intel", "C620 Series Chipset Supersku", enable_flash_c620},
2007 {0x8086, 0xa2c4, B_S, NT, "Intel", "H270", enable_flash_pch100},
2008 {0x8086, 0xa2c5, B_S, NT, "Intel", "Z270", enable_flash_pch100},
2009 {0x8086, 0xa2c6, B_S, NT, "Intel", "Q270", enable_flash_pch100},
2010 {0x8086, 0xa2c7, B_S, NT, "Intel", "Q250", enable_flash_pch100},
2011 {0x8086, 0xa2c8, B_S, NT, "Intel", "B250", enable_flash_pch100},
2012 {0x8086, 0xa2c9, B_S, NT, "Intel", "Z370", enable_flash_pch100},
2013 {0x8086, 0xa2d2, B_S, NT, "Intel", "X299", enable_flash_pch100},
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00002014#endif
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +00002015 {0},
Ollie Lhocbbf1252004-03-17 22:22:08 +00002016};
Ollie Lho761bf1b2004-03-20 16:46:10 +00002017
Uwe Hermanna7e05482007-05-09 10:17:44 +00002018int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +00002019{
Peter Huewe73f8ec82011-01-24 19:15:51 +00002020 struct pci_dev *dev = NULL;
Uwe Hermann372eeb52007-12-04 21:49:06 +00002021 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +00002022 int i;
Ollie Lhocbbf1252004-03-17 22:22:08 +00002023
Uwe Hermann372eeb52007-12-04 21:49:06 +00002024 /* Now let's try to find the chipset we have... */
Uwe Hermann05fab752009-05-16 23:42:17 +00002025 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
2026 dev = pci_dev_find(chipset_enables[i].vendor_id,
2027 chipset_enables[i].device_id);
Michael Karcher89bed6d2010-06-13 10:16:12 +00002028 if (!dev)
2029 continue;
2030 if (ret != -2) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00002031 msg_pwarn("Warning: unexpected second chipset match: "
Paul Menzelab6328f2010-10-08 11:03:02 +00002032 "\"%s %s\"\n"
2033 "ignoring, please report lspci and board URL "
2034 "to flashrom@flashrom.org\n"
Stefan Reinauerbf282b12011-03-29 21:41:41 +00002035 "with \'CHIPSET: your board name\' in the "
Paul Menzelab6328f2010-10-08 11:03:02 +00002036 "subject line.\n",
Michael Karcher89bed6d2010-06-13 10:16:12 +00002037 chipset_enables[i].vendor_name,
2038 chipset_enables[i].device_name);
2039 continue;
2040 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002041 msg_pinfo("Found chipset \"%s %s\"",
2042 chipset_enables[i].vendor_name,
2043 chipset_enables[i].device_name);
Stefan Tauner716e0982011-07-25 20:38:52 +00002044 msg_pdbg(" with PCI ID %04x:%04x",
Carl-Daniel Hailfingerf469c272010-05-22 07:31:50 +00002045 chipset_enables[i].vendor_id,
2046 chipset_enables[i].device_id);
Stefan Tauner5c316f92015-02-08 21:57:52 +00002047 msg_pinfo(".\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +00002048
Stefan Tauner23e10b82016-01-23 16:16:49 +00002049 if (chipset_enables[i].status == BAD) {
2050 msg_perr("ERROR: This chipset is not supported yet.\n");
2051 return ERROR_FATAL;
2052 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002053 if (chipset_enables[i].status == NT) {
Stefan Tauner5c316f92015-02-08 21:57:52 +00002054 msg_pinfo("This chipset is marked as untested. If "
Stefan Taunerec8c2482011-07-21 19:59:34 +00002055 "you are using an up-to-date version\nof "
Stefan Tauner2abab942012-04-27 20:41:23 +00002056 "flashrom *and* were (not) able to "
2057 "successfully update your firmware with it,\n"
2058 "then please email a report to "
2059 "flashrom@flashrom.org including a verbose "
2060 "(-V) log.\nThank you!\n");
Stefan Taunerec8c2482011-07-21 19:59:34 +00002061 }
Nico Huber2e50cdc2018-09-23 20:20:26 +02002062 if (!(chipset_enables[i].buses & (internal_buses_supported | BUS_SPI))) {
2063 msg_pdbg("Skipping chipset enable: No supported buses enabled.\n");
2064 continue;
2065 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00002066 msg_pinfo("Enabling flash write... ");
Stefan Tauner23e10b82016-01-23 16:16:49 +00002067 ret = chipset_enables[i].doit(dev, chipset_enables[i].device_name);
Michael Karcher89bed6d2010-06-13 10:16:12 +00002068 if (ret == NOT_DONE_YET) {
2069 ret = -2;
2070 msg_pinfo("OK - searching further chips.\n");
2071 } else if (ret < 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00002072 msg_pinfo("FAILED!\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00002073 else if (ret == 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00002074 msg_pinfo("OK.\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00002075 else if (ret == ERROR_NONFATAL)
Michael Karchera4448d92010-07-22 18:04:15 +00002076 msg_pinfo("PROBLEMS, continuing anyway\n");
Tadas Slotkusad470342011-09-03 17:15:00 +00002077 if (ret == ERROR_FATAL) {
2078 msg_perr("FATAL ERROR!\n");
2079 return ret;
2080 }
Uwe Hermanna7e05482007-05-09 10:17:44 +00002081 }
Michael Karcher89bed6d2010-06-13 10:16:12 +00002082
Uwe Hermanna7e05482007-05-09 10:17:44 +00002083 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +00002084}