blob: 21f2e86d96bb24568edc58eb7ef0900d26ed4b20 [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
Ollie Lho184a4042005-11-26 21:55:36 +00009 *
Uwe Hermannd1107642007-08-29 17:52:32 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2 of the License.
Ollie Lho184a4042005-11-26 21:55:36 +000013 *
Uwe Hermannd1107642007-08-29 17:52:32 +000014 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24/*
25 * Contains the chipset specific flash enables.
Ollie Lho184a4042005-11-26 21:55:36 +000026 */
27
Lane Brooksd54958a2007-11-13 16:45:22 +000028#define _LARGEFILE64_SOURCE
29
Ollie Lhocbbf1252004-03-17 22:22:08 +000030#include <stdlib.h>
Uwe Hermanne8ba5382009-05-22 11:37:27 +000031#include <string.h>
Carl-Daniel Hailfingerdcef67e2010-06-21 23:20:15 +000032#include <unistd.h>
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +000033#include <inttypes.h>
34#include <errno.h>
Luc Verhaegen8e3a6002007-04-04 22:45:58 +000035#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000036#include "programmer.h"
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
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000057static int enable_flash_sis85c496(struct pci_dev *dev, const char *name)
58{
59 uint8_t tmp;
60
61 tmp = pci_read_byte(dev, 0xd0);
62 tmp |= 0xf8;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000063 rpci_write_byte(dev, 0xd0, tmp);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000064
65 return 0;
66}
67
68static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name)
69{
70 uint8_t new, newer;
71
72 /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */
73 /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */
74 new = pci_read_byte(dev, 0x40);
75 new &= (~0x04); /* No idea why we clear bit 2. */
76 new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +000077 rpci_write_byte(dev, 0x40, new);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000078 newer = pci_read_byte(dev, 0x40);
79 if (newer != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +000080 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
81 "(WARNING ONLY).\n", 0x40, new, name);
Sean Nelson316a29f2010-05-07 20:09:04 +000082 msg_pinfo("Stuck at 0x%x\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000083 return -1;
84 }
85 return 0;
86}
87
88static struct pci_dev *find_southbridge(uint16_t vendor, const char *name)
89{
90 struct pci_dev *sbdev;
Uwe Hermann91f4afa2011-07-28 08:13:25 +000091
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000092 sbdev = pci_dev_find_vendorclass(vendor, 0x0601);
93 if (!sbdev)
94 sbdev = pci_dev_find_vendorclass(vendor, 0x0680);
95 if (!sbdev)
96 sbdev = pci_dev_find_vendorclass(vendor, 0x0000);
97 if (!sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +000098 msg_perr("No southbridge found for %s!\n", name);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000099 if (sbdev)
Sean Nelson316a29f2010-05-07 20:09:04 +0000100 msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000101 sbdev->vendor_id, sbdev->device_id,
102 sbdev->bus, sbdev->dev, sbdev->func);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000103 return sbdev;
104}
105
106static int enable_flash_sis501(struct pci_dev *dev, const char *name)
107{
108 uint8_t tmp;
109 int ret = 0;
110 struct pci_dev *sbdev;
111
112 sbdev = find_southbridge(dev->vendor_id, name);
113 if (!sbdev)
114 return -1;
115
116 ret = enable_flash_sis_mapping(sbdev, name);
117
118 tmp = sio_read(0x22, 0x80);
119 tmp &= (~0x20);
120 tmp |= 0x4;
121 sio_write(0x22, 0x80, tmp);
122
123 tmp = sio_read(0x22, 0x70);
124 tmp &= (~0x20);
125 tmp |= 0x4;
126 sio_write(0x22, 0x70, tmp);
127
128 return ret;
129}
130
131static int enable_flash_sis5511(struct pci_dev *dev, const char *name)
132{
133 uint8_t tmp;
134 int ret = 0;
135 struct pci_dev *sbdev;
136
137 sbdev = find_southbridge(dev->vendor_id, name);
138 if (!sbdev)
139 return -1;
140
141 ret = enable_flash_sis_mapping(sbdev, name);
142
143 tmp = sio_read(0x22, 0x50);
144 tmp &= (~0x20);
145 tmp |= 0x4;
146 sio_write(0x22, 0x50, tmp);
147
148 return ret;
149}
150
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000151static int enable_flash_sis530(struct pci_dev *dev, const char *name)
152{
153 uint8_t new, newer;
154 int ret = 0;
155 struct pci_dev *sbdev;
156
157 sbdev = find_southbridge(dev->vendor_id, name);
158 if (!sbdev)
159 return -1;
160
161 ret = enable_flash_sis_mapping(sbdev, name);
162
163 new = pci_read_byte(sbdev, 0x45);
164 new &= (~0x20);
165 new |= 0x4;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000166 rpci_write_byte(sbdev, 0x45, new);
Luc Verhaegen9cce2f52010-01-10 15:01:08 +0000167 newer = pci_read_byte(sbdev, 0x45);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000168 if (newer != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000169 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
170 "(WARNING ONLY).\n", 0x45, new, name);
Sean Nelson316a29f2010-05-07 20:09:04 +0000171 msg_pinfo("Stuck at 0x%x\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000172 ret = -1;
173 }
174
175 return ret;
176}
177
178static int enable_flash_sis540(struct pci_dev *dev, const char *name)
179{
180 uint8_t new, newer;
181 int ret = 0;
182 struct pci_dev *sbdev;
183
184 sbdev = find_southbridge(dev->vendor_id, name);
185 if (!sbdev)
186 return -1;
187
188 ret = enable_flash_sis_mapping(sbdev, name);
189
190 new = pci_read_byte(sbdev, 0x45);
191 new &= (~0x80);
192 new |= 0x40;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000193 rpci_write_byte(sbdev, 0x45, new);
Luc Verhaegen9cce2f52010-01-10 15:01:08 +0000194 newer = pci_read_byte(sbdev, 0x45);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000195 if (newer != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000196 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
197 "(WARNING ONLY).\n", 0x45, new, name);
Sean Nelson316a29f2010-05-07 20:09:04 +0000198 msg_pinfo("Stuck at 0x%x\n", newer);
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +0000199 ret = -1;
200 }
201
202 return ret;
203}
204
Uwe Hermann987942d2006-11-07 11:16:21 +0000205/* Datasheet:
206 * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4)
207 * - URL: http://www.intel.com/design/intarch/datashts/290562.htm
208 * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf
209 * - Order Number: 290562-001
210 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000211static int enable_flash_piix4(struct pci_dev *dev, const char *name)
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000212{
213 uint16_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000214 uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000215
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000216 buses_supported = BUS_PARALLEL;
Maciej Pijankaa661e152009-12-08 17:26:24 +0000217
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000218 old = pci_read_word(dev, xbcs);
219
220 /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to
Uwe Hermanna7e05482007-05-09 10:17:44 +0000221 * FFF00000-FFF7FFFF are forwarded to ISA).
Uwe Hermannc556d322008-10-28 11:50:05 +0000222 * Note: This bit is reserved on PIIX/PIIX3/MPIIX.
Uwe Hermanna7e05482007-05-09 10:17:44 +0000223 * Set bit 7: Extended BIOS Enable (PCI master accesses to
224 * FFF80000-FFFDFFFF are forwarded to ISA).
225 * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to
226 * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top
227 * of 1 Mbyte, or the aliases at the top of 4 Gbyte
228 * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#.
229 * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA.
230 * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable).
231 */
Uwe Hermannc556d322008-10-28 11:50:05 +0000232 if (dev->device_id == 0x122e || dev->device_id == 0x7000
233 || dev->device_id == 0x1234)
234 new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */
Uwe Hermann87203452008-10-26 18:40:42 +0000235 else
236 new = old | 0x02c4;
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000237
238 if (new == old)
239 return 0;
240
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000241 rpci_write_word(dev, xbcs, new);
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000242
243 if (pci_read_word(dev, xbcs) != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000244 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
245 "(WARNING ONLY).\n", xbcs, new, name);
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000246 return -1;
247 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000248
Uwe Hermannea2c66d2006-11-05 18:26:08 +0000249 return 0;
250}
251
Uwe Hermann372eeb52007-12-04 21:49:06 +0000252/*
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000253 * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet"
254 * http://download.intel.com/design/chipsets/datashts/30701303.pdf
Uwe Hermann372eeb52007-12-04 21:49:06 +0000255 */
256static int enable_flash_ich(struct pci_dev *dev, const char *name,
257 int bios_cntl)
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000258{
Ollie Lho184a4042005-11-26 21:55:36 +0000259 uint8_t old, new;
Stefan Reinauereb366472006-09-06 15:48:48 +0000260
Uwe Hermann372eeb52007-12-04 21:49:06 +0000261 /*
262 * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but
Uwe Hermanna7e05482007-05-09 10:17:44 +0000263 * just treating it as 8 bit wide seems to work fine in practice.
Stefan Reinauereb366472006-09-06 15:48:48 +0000264 */
Stefan Reinauer86de2832006-03-31 11:26:55 +0000265 old = pci_read_byte(dev, bios_cntl);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000266
Sean Nelson316a29f2010-05-07 20:09:04 +0000267 msg_pdbg("\nBIOS Lock Enable: %sabled, ",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000268 (old & (1 << 1)) ? "en" : "dis");
Sean Nelson316a29f2010-05-07 20:09:04 +0000269 msg_pdbg("BIOS Write Enable: %sabled, ",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000270 (old & (1 << 0)) ? "en" : "dis");
Sean Nelson316a29f2010-05-07 20:09:04 +0000271 msg_pdbg("BIOS_CNTL is 0x%x\n", old);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000272
Stefan Taunerf9a8da52011-06-11 18:16:50 +0000273 /*
274 * Quote from the 6 Series datasheet (Document Number: 324645-004):
275 * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP)
276 * 1 = BIOS region SMM protection is enabled.
277 * The BIOS Region is not writable unless all processors are in SMM."
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000278 * In earlier chipsets this bit is reserved.
279 */
280 if (old & (1 << 5))
Stefan Taunerf9a8da52011-06-11 18:16:50 +0000281 msg_pinfo("WARNING: BIOS region SMM protection is enabled!\n");
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000282
Stefan Taunerf9a8da52011-06-11 18:16:50 +0000283 new = old | 1;
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000284 if (new == old)
285 return 0;
286
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000287 rpci_write_byte(dev, bios_cntl, new);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000288
Stefan Reinauer86de2832006-03-31 11:26:55 +0000289 if (pci_read_byte(dev, bios_cntl) != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000290 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
291 "(WARNING ONLY).\n", bios_cntl, new, name);
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000292 return -1;
293 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000294
Ronald G. Minnich6a967412004-09-28 20:09:06 +0000295 return 0;
296}
297
Uwe Hermann372eeb52007-12-04 21:49:06 +0000298static int enable_flash_ich_4e(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000299{
Carl-Daniel Hailfinger4c7ea382009-08-10 23:30:45 +0000300 /*
301 * Note: ICH5 has registers similar to FWH_SEL1, FWH_SEL2 and
302 * FWH_DEC_EN1, but they are called FB_SEL1, FB_SEL2, FB_DEC_EN1 and
303 * FB_DEC_EN2.
304 */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000305 buses_supported = BUS_FWH;
Stefan Reinauereb366472006-09-06 15:48:48 +0000306 return enable_flash_ich(dev, name, 0x4e);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000307}
308
Uwe Hermann372eeb52007-12-04 21:49:06 +0000309static int enable_flash_ich_dc(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000310{
Carl-Daniel Hailfinger4c7ea382009-08-10 23:30:45 +0000311 uint32_t fwh_conf;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000312 int i, tmp;
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000313 char *idsel = NULL;
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000314 int max_decode_fwh_idsel = 0, max_decode_fwh_decode = 0;
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000315 int contiguous = 1;
Carl-Daniel Hailfinger4c7ea382009-08-10 23:30:45 +0000316
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000317 idsel = extract_programmer_param("fwh_idsel");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000318 if (idsel && strlen(idsel)) {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000319 uint64_t fwh_idsel_old, fwh_idsel;
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000320 errno = 0;
321 /* Base 16, nothing else makes sense. */
322 fwh_idsel = (uint64_t)strtoull(idsel, NULL, 16);
323 if (errno) {
324 msg_perr("Error: fwh_idsel= specified, but value could "
325 "not be converted.\n");
326 goto idsel_garbage_out;
327 }
328 if (fwh_idsel & 0xffff000000000000ULL) {
329 msg_perr("Error: fwh_idsel= specified, but value had "
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +0000330 "unused bits set.\n");
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000331 goto idsel_garbage_out;
332 }
333 fwh_idsel_old = pci_read_long(dev, 0xd0);
334 fwh_idsel_old <<= 16;
335 fwh_idsel_old |= pci_read_word(dev, 0xd4);
336 msg_pdbg("\nSetting IDSEL from 0x%012" PRIx64 " to "
337 "0x%012" PRIx64 " for top 16 MB.", fwh_idsel_old,
338 fwh_idsel);
339 rpci_write_long(dev, 0xd0, (fwh_idsel >> 16) & 0xffffffff);
340 rpci_write_word(dev, 0xd4, fwh_idsel & 0xffff);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000341 /* FIXME: Decode settings are not changed. */
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000342 } else if (idsel) {
Carl-Daniel Hailfinger46fa0682011-07-25 22:44:09 +0000343 msg_perr("Error: fwh_idsel= specified, but no value given.\n");
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +0000344idsel_garbage_out:
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000345 free(idsel);
346 /* FIXME: Return failure here once internal_init() starts
347 * to care about the return value of the chipset enable.
348 */
349 exit(1);
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000350 }
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000351 free(idsel);
Carl-Daniel Hailfinger44498682009-08-13 23:23:37 +0000352
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000353 /* Ignore all legacy ranges below 1 MB.
354 * We currently only support flashing the chip which responds to
355 * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations
356 * have to be adjusted.
357 */
358 /* FWH_SEL1 */
359 fwh_conf = pci_read_long(dev, 0xd0);
360 for (i = 7; i >= 0; i--) {
361 tmp = (fwh_conf >> (i * 4)) & 0xf;
Sean Nelson316a29f2010-05-07 20:09:04 +0000362 msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000363 (0x1ff8 + i) * 0x80000,
364 (0x1ff0 + i) * 0x80000,
365 tmp);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000366 if ((tmp == 0) && contiguous) {
367 max_decode_fwh_idsel = (8 - i) * 0x80000;
368 } else {
369 contiguous = 0;
370 }
371 }
372 /* FWH_SEL2 */
373 fwh_conf = pci_read_word(dev, 0xd4);
374 for (i = 3; i >= 0; i--) {
375 tmp = (fwh_conf >> (i * 4)) & 0xf;
Sean Nelson316a29f2010-05-07 20:09:04 +0000376 msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000377 (0xff4 + i) * 0x100000,
378 (0xff0 + i) * 0x100000,
379 tmp);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000380 if ((tmp == 0) && contiguous) {
381 max_decode_fwh_idsel = (8 - i) * 0x100000;
382 } else {
383 contiguous = 0;
384 }
385 }
386 contiguous = 1;
387 /* FWH_DEC_EN1 */
388 fwh_conf = pci_read_word(dev, 0xd8);
389 for (i = 7; i >= 0; i--) {
390 tmp = (fwh_conf >> (i + 0x8)) & 0x1;
Sean Nelson316a29f2010-05-07 20:09:04 +0000391 msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000392 (0x1ff8 + i) * 0x80000,
393 (0x1ff0 + i) * 0x80000,
394 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000395 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000396 max_decode_fwh_decode = (8 - i) * 0x80000;
397 } else {
398 contiguous = 0;
399 }
400 }
401 for (i = 3; i >= 0; i--) {
402 tmp = (fwh_conf >> i) & 0x1;
Sean Nelson316a29f2010-05-07 20:09:04 +0000403 msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000404 (0xff4 + i) * 0x100000,
405 (0xff0 + i) * 0x100000,
406 tmp ? "en" : "dis");
Michael Karcher96785392010-01-03 15:09:17 +0000407 if ((tmp == 1) && contiguous) {
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000408 max_decode_fwh_decode = (8 - i) * 0x100000;
409 } else {
410 contiguous = 0;
411 }
412 }
413 max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode);
Sean Nelson316a29f2010-05-07 20:09:04 +0000414 msg_pdbg("\nMaximum FWH chip size: 0x%x bytes", max_rom_decode.fwh);
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000415
416 /* If we're called by enable_flash_ich_dc_spi, it will override
417 * buses_supported anyway.
418 */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000419 buses_supported = BUS_FWH;
Stefan Reinauereb366472006-09-06 15:48:48 +0000420 return enable_flash_ich(dev, name, 0xdc);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000421}
422
Adam Jurkowskie4984102009-12-21 15:30:46 +0000423static int enable_flash_poulsbo(struct pci_dev *dev, const char *name)
424{
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000425 uint16_t old, new;
426 int err;
Adam Jurkowskie4984102009-12-21 15:30:46 +0000427
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000428 if ((err = enable_flash_ich(dev, name, 0xd8)) != 0)
429 return err;
Adam Jurkowskie4984102009-12-21 15:30:46 +0000430
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000431 old = pci_read_byte(dev, 0xd9);
432 msg_pdbg("BIOS Prefetch Enable: %sabled, ",
433 (old & 1) ? "en" : "dis");
434 new = old & ~1;
Adam Jurkowskie4984102009-12-21 15:30:46 +0000435
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000436 if (new != old)
437 rpci_write_byte(dev, 0xd9, new);
Adam Jurkowskie4984102009-12-21 15:30:46 +0000438
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000439 buses_supported = BUS_FWH;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000440 return 0;
Adam Jurkowskie4984102009-12-21 15:30:46 +0000441}
442
Uwe Hermann394131e2008-10-18 21:14:13 +0000443static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name)
444{
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000445 /* Do we really need no write enable? */
Michael Karchera4448d92010-07-22 18:04:15 +0000446 return via_init_spi(dev);
Joshua Roysf93b36a2010-07-01 17:45:54 +0000447}
448
Uwe Hermann394131e2008-10-18 21:14:13 +0000449static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name,
450 int ich_generation)
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000451{
Michael Karchera4448d92010-07-22 18:04:15 +0000452 int ret;
453 uint8_t bbs, buc;
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000454 uint32_t tmp, gcs;
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000455 void *rcrb;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000456 const char *const *straps_names;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000457
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000458 static const char *const straps_names_EP80579[] = { "SPI", "reserved", "reserved", "LPC" };
459 static const char *const straps_names_ich7_nm10[] = { "reserved", "SPI", "PCI", "LPC" };
460 static const char *const straps_names_ich8910[] = { "SPI", "SPI", "PCI", "LPC" };
461 static const char *const straps_names_pch56[] = { "LPC", "reserved", "PCI", "SPI" };
462 static const char *const straps_names_unknown[] = { "unknown", "unknown", "unknown", "unknown" };
463
464 switch (ich_generation) {
465 case 7:
466 /* EP80579 may need further changes, but this is the least
467 * intrusive way to get correct BOOT Strap printing without
468 * changing the rest of its code path). */
469 if (strcmp(name, "EP80579") == 0)
470 straps_names = straps_names_EP80579;
471 else
472 straps_names = straps_names_ich7_nm10;
473 break;
474 case 8:
475 case 9:
476 case 10:
477 straps_names = straps_names_ich8910;
478 break;
479 case 11:
480 case 12:
481 straps_names = straps_names_pch56;
482 break;
483 default:
484 msg_gerr("%s: unknown ICH generation. Please report!\n",
485 __func__);
486 straps_names = straps_names_unknown;
487 break;
488 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000489
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000490 /* Enable Flash Writes */
491 ret = enable_flash_ich_dc(dev, name);
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000492
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000493 /* Get physical address of Root Complex Register Block */
494 tmp = pci_read_long(dev, 0xf0) & 0xffffc000;
Sean Nelson316a29f2010-05-07 20:09:04 +0000495 msg_pdbg("\nRoot Complex Register Block address = 0x%x\n", tmp);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000496
497 /* Map RCBA to virtual memory */
Stefan Reinauer0593f212009-01-26 01:10:48 +0000498 rcrb = physmap("ICH RCRB", tmp, 0x4000);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000499
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000500 gcs = mmio_readl(rcrb + 0x3410);
Sean Nelson316a29f2010-05-07 20:09:04 +0000501 msg_pdbg("GCS = 0x%x: ", gcs);
502 msg_pdbg("BIOS Interface Lock-Down: %sabled, ",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000503 (gcs & 0x1) ? "en" : "dis");
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000504 bbs = (gcs >> 10) & 0x3;
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000505 msg_pdbg("Boot BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000506
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000507 buc = mmio_readb(rcrb + 0x3414);
Sean Nelson316a29f2010-05-07 20:09:04 +0000508 msg_pdbg("Top Swap : %s\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000509 (buc & 1) ? "enabled (A16 inverted)" : "not enabled");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000510
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000511 /* It seems the ICH7 does not support SPI and LPC chips at the same
512 * time. At least not with our current code. So we prevent searching
513 * on ICH7 when the southbridge is strapped to LPC
514 */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000515 buses_supported = BUS_FWH;
Michael Karchera4448d92010-07-22 18:04:15 +0000516 if (ich_generation == 7) {
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000517 if (bbs == 0x03) {
518 /* If strapped to LPC, no further SPI initialization is
519 * required. */
Michael Karchera4448d92010-07-22 18:04:15 +0000520 return ret;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000521 } else {
Michael Karchera4448d92010-07-22 18:04:15 +0000522 /* Disable LPC/FWH if strapped to PCI or SPI */
523 buses_supported = 0;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000524 }
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000525 }
526
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000527 /* This adds BUS_SPI */
Michael Karchera4448d92010-07-22 18:04:15 +0000528 if (ich_init_spi(dev, tmp, rcrb, ich_generation) != 0) {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000529 if (!ret)
530 ret = ERROR_NONFATAL;
531 }
Carl-Daniel Hailfinger67f9ea32008-03-14 17:20:59 +0000532
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000533 return ret;
534}
Stefan Reinauera9424d52008-06-27 16:28:34 +0000535
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000536static int enable_flash_ich7(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000537{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000538 return enable_flash_ich_dc_spi(dev, name, 7);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000539}
540
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000541static int enable_flash_ich8(struct pci_dev *dev, const char *name)
542{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000543 return enable_flash_ich_dc_spi(dev, name, 8);
Carl-Daniel Hailfinger1b18b3c2008-05-16 14:39:39 +0000544}
545
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000546static int enable_flash_ich9(struct pci_dev *dev, const char *name)
547{
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000548 return enable_flash_ich_dc_spi(dev, name, 9);
Carl-Daniel Hailfinger6dc1d3b2008-05-14 14:51:22 +0000549}
550
Carl-Daniel Hailfinger28ec74b2008-10-10 20:54:41 +0000551static int enable_flash_ich10(struct pci_dev *dev, const char *name)
552{
553 return enable_flash_ich_dc_spi(dev, name, 10);
554}
555
Stefan Taunerbd0c70a2011-08-27 21:19:56 +0000556/* Ibex Peak aka. 5 series & 3400 series */
557static int enable_flash_pch5(struct pci_dev *dev, const char *name)
558{
559 return enable_flash_ich_dc_spi(dev, name, 11);
560}
561
562/* Cougar Point aka. 6 series & c200 series */
563static int enable_flash_pch6(struct pci_dev *dev, const char *name)
564{
565 return enable_flash_ich_dc_spi(dev, name, 12);
566}
567
Michael Karcher89bed6d2010-06-13 10:16:12 +0000568static int via_no_byte_merge(struct pci_dev *dev, const char *name)
569{
570 uint8_t val;
571
572 val = pci_read_byte(dev, 0x71);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000573 if (val & 0x40) {
Michael Karcher89bed6d2010-06-13 10:16:12 +0000574 msg_pdbg("Disabling byte merging\n");
575 val &= ~0x40;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000576 rpci_write_byte(dev, 0x71, val);
Michael Karcher89bed6d2010-06-13 10:16:12 +0000577 }
578 return NOT_DONE_YET; /* need to find south bridge, too */
579}
580
Uwe Hermann372eeb52007-12-04 21:49:06 +0000581static int enable_flash_vt823x(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000582{
Ollie Lho184a4042005-11-26 21:55:36 +0000583 uint8_t val;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000584
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000585 /* Enable ROM decode range (1MB) FFC00000 - FFFFFFFF. */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000586 rpci_write_byte(dev, 0x41, 0x7f);
Bari Ari9477c4e2008-04-29 13:46:38 +0000587
Uwe Hermannffec5f32007-08-23 16:08:21 +0000588 /* ROM write enable */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000589 val = pci_read_byte(dev, 0x40);
590 val |= 0x10;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000591 rpci_write_byte(dev, 0x40, val);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000592
593 if (pci_read_byte(dev, 0x40) != val) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000594 msg_pinfo("\nWARNING: Failed to enable flash write on \"%s\"\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000595 name);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000596 return -1;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000597 }
Luc Verhaegen6382b442007-03-02 22:16:38 +0000598
Luc Verhaegen73d21192009-12-23 00:54:26 +0000599 if (dev->device_id == 0x3227) { /* VT8237R */
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000600 /* All memory cycles, not just ROM ones, go to LPC. */
601 val = pci_read_byte(dev, 0x59);
602 val &= ~0x80;
603 rpci_write_byte(dev, 0x59, val);
Luc Verhaegen73d21192009-12-23 00:54:26 +0000604 }
605
Uwe Hermanna7e05482007-05-09 10:17:44 +0000606 return 0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000607}
608
Uwe Hermann372eeb52007-12-04 21:49:06 +0000609static int enable_flash_cs5530(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000610{
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000611 uint8_t reg8;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000612
Uwe Hermann394131e2008-10-18 21:14:13 +0000613#define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */
614#define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000615#define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */
616#define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000617
Uwe Hermann394131e2008-10-18 21:14:13 +0000618#define LOWER_ROM_ADDRESS_RANGE (1 << 0)
619#define ROM_WRITE_ENABLE (1 << 1)
620#define UPPER_ROM_ADDRESS_RANGE (1 << 2)
621#define BIOS_ROM_POSITIVE_DECODE (1 << 5)
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000622#define CS5530_ISA_MASTER (1 << 7)
623#define CS5530_ENABLE_SA2320 (1 << 2)
624#define CS5530_ENABLE_SA20 (1 << 6)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000625
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000626 buses_supported = BUS_PARALLEL;
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000627 /* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and
628 * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB.
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000629 * FIXME: Should we really touch the low mapping below 1 MB? Flashrom
630 * ignores that region completely.
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000631 * Make the configured ROM areas writable.
632 */
633 reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG);
634 reg8 |= LOWER_ROM_ADDRESS_RANGE;
635 reg8 |= UPPER_ROM_ADDRESS_RANGE;
636 reg8 |= ROM_WRITE_ENABLE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000637 rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000638
Uwe Hermannf4a673b2007-06-06 21:35:45 +0000639 /* Set positive decode on ROM. */
640 reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2);
641 reg8 |= BIOS_ROM_POSITIVE_DECODE;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000642 rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000643
Carl-Daniel Hailfinger2a9e2452009-12-17 15:20:01 +0000644 reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG);
645 if (reg8 & CS5530_ISA_MASTER) {
646 /* We have A0-A23 available. */
647 max_rom_decode.parallel = 16 * 1024 * 1024;
648 } else {
649 reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG);
650 if (reg8 & CS5530_ENABLE_SA2320) {
651 /* We have A0-19, A20-A23 available. */
652 max_rom_decode.parallel = 16 * 1024 * 1024;
653 } else if (reg8 & CS5530_ENABLE_SA20) {
654 /* We have A0-19, A20 available. */
655 max_rom_decode.parallel = 2 * 1024 * 1024;
656 } else {
657 /* A20 and above are not active. */
658 max_rom_decode.parallel = 1024 * 1024;
659 }
660 }
661
Ollie Lhocbbf1252004-03-17 22:22:08 +0000662 return 0;
663}
664
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000665/*
Mart Raudseppe1344da2008-02-08 10:10:57 +0000666 * Geode systems write protect the BIOS via RCONFs (cache settings similar
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000667 * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22.
Mart Raudseppe1344da2008-02-08 10:10:57 +0000668 *
669 * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL.
670 * To enable write to NOR Boot flash for the benefit of systems that have such
671 * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select).
Mart Raudseppe1344da2008-02-08 10:10:57 +0000672 */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000673static int enable_flash_cs5536(struct pci_dev *dev, const char *name)
Lane Brooksd54958a2007-11-13 16:45:22 +0000674{
Uwe Hermann394131e2008-10-18 21:14:13 +0000675#define MSR_RCONF_DEFAULT 0x1808
676#define MSR_NORF_CTL 0x51400018
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000677
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000678 msr_t msr;
Lane Brooksd54958a2007-11-13 16:45:22 +0000679
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000680 /* Geode only has a single core */
681 if (setup_cpu_msr(0))
Lane Brooksd54958a2007-11-13 16:45:22 +0000682 return -1;
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000683
684 msr = rdmsr(MSR_RCONF_DEFAULT);
685 if ((msr.hi >> 24) != 0x22) {
686 msr.hi &= 0xfbffffff;
687 wrmsr(MSR_RCONF_DEFAULT, msr);
Lane Brooksd54958a2007-11-13 16:45:22 +0000688 }
Mart Raudseppe1344da2008-02-08 10:10:57 +0000689
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000690 msr = rdmsr(MSR_NORF_CTL);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000691 /* Raise WE_CS3 bit. */
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000692 msr.lo |= 0x08;
693 wrmsr(MSR_NORF_CTL, msr);
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000694
Stefan Reinauer8fa64812009-08-12 09:27:45 +0000695 cleanup_cpu_msr();
Mart Raudsepp0514a5f2008-02-08 09:59:58 +0000696
Uwe Hermann394131e2008-10-18 21:14:13 +0000697#undef MSR_RCONF_DEFAULT
698#undef MSR_NORF_CTL
Lane Brooksd54958a2007-11-13 16:45:22 +0000699 return 0;
700}
701
Uwe Hermann372eeb52007-12-04 21:49:06 +0000702static int enable_flash_sc1100(struct pci_dev *dev, const char *name)
Ollie Lhocbbf1252004-03-17 22:22:08 +0000703{
Ollie Lho184a4042005-11-26 21:55:36 +0000704 uint8_t new;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000705
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000706 rpci_write_byte(dev, 0x52, 0xee);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000707
708 new = pci_read_byte(dev, 0x52);
709
710 if (new != 0xee) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000711 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
712 "(WARNING ONLY).\n", 0x52, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000713 return -1;
714 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000715
Ollie Lhocbbf1252004-03-17 22:22:08 +0000716 return 0;
717}
718
Uwe Hermann190f8492008-10-25 18:03:50 +0000719/* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */
Uwe Hermann372eeb52007-12-04 21:49:06 +0000720static int enable_flash_amd8111(struct pci_dev *dev, const char *name)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000721{
Ollie Lho184a4042005-11-26 21:55:36 +0000722 uint8_t old, new;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000723
Uwe Hermann372eeb52007-12-04 21:49:06 +0000724 /* Enable decoding at 0xffb00000 to 0xffffffff. */
Ollie Lhocbbf1252004-03-17 22:22:08 +0000725 old = pci_read_byte(dev, 0x43);
Ollie Lhod11f3612004-12-07 17:19:04 +0000726 new = old | 0xC0;
Ollie Lhocbbf1252004-03-17 22:22:08 +0000727 if (new != old) {
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000728 rpci_write_byte(dev, 0x43, new);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000729 if (pci_read_byte(dev, 0x43) != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000730 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
731 "(WARNING ONLY).\n", 0x43, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000732 }
733 }
734
Uwe Hermann190f8492008-10-25 18:03:50 +0000735 /* Enable 'ROM write' bit. */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000736 old = pci_read_byte(dev, 0x40);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000737 new = old | 0x01;
738 if (new == old)
739 return 0;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000740 rpci_write_byte(dev, 0x40, new);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000741
742 if (pci_read_byte(dev, 0x40) != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000743 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
744 "(WARNING ONLY).\n", 0x40, new, name);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000745 return -1;
746 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000747
Ollie Lhocbbf1252004-03-17 22:22:08 +0000748 return 0;
749}
750
Marc Jones3af487d2008-10-15 17:50:29 +0000751static int enable_flash_sb600(struct pci_dev *dev, const char *name)
752{
Michael Karcherb05b9e12010-07-22 18:04:19 +0000753 uint32_t prot;
Marc Jones3af487d2008-10-15 17:50:29 +0000754 uint8_t reg;
Michael Karcherb05b9e12010-07-22 18:04:19 +0000755 int ret;
Marc Jones3af487d2008-10-15 17:50:29 +0000756
Jason Wanga3f04be2008-11-28 21:36:51 +0000757 /* Clear ROM protect 0-3. */
758 for (reg = 0x50; reg < 0x60; reg += 4) {
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000759 prot = pci_read_long(dev, reg);
760 /* No protection flags for this region?*/
761 if ((prot & 0x3) == 0)
762 continue;
Mathias Krause9fbdc032011-01-01 10:54:09 +0000763 msg_pinfo("SB600 %s%sprotected from 0x%08x to 0x%08x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000764 (prot & 0x1) ? "write " : "",
765 (prot & 0x2) ? "read " : "",
766 (prot & 0xfffff800),
767 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000768 prot &= 0xfffffffc;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000769 rpci_write_byte(dev, reg, prot);
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000770 prot = pci_read_long(dev, reg);
Carl-Daniel Hailfinger9bb88ac2009-05-06 13:51:44 +0000771 if (prot & 0x3)
Mathias Krause9fbdc032011-01-01 10:54:09 +0000772 msg_perr("SB600 %s%sunprotect failed from 0x%08x to 0x%08x\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000773 (prot & 0x1) ? "write " : "",
774 (prot & 0x2) ? "read " : "",
775 (prot & 0xfffff800),
776 (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff));
Jason Wanga3f04be2008-11-28 21:36:51 +0000777 }
778
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000779 buses_supported = BUS_LPC | BUS_FWH;
Michael Karcherb05b9e12010-07-22 18:04:19 +0000780
781 ret = sb600_probe_spi(dev);
Jason Wanga3f04be2008-11-28 21:36:51 +0000782
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000783 /* Read ROM strap override register. */
784 OUTB(0x8f, 0xcd6);
785 reg = INB(0xcd7);
786 reg &= 0x0e;
Sean Nelson316a29f2010-05-07 20:09:04 +0000787 msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not ");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000788 if (reg & 0x02) {
789 switch ((reg & 0x0c) >> 2) {
790 case 0x00:
Sean Nelson316a29f2010-05-07 20:09:04 +0000791 msg_pdbg(": LPC");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000792 break;
793 case 0x01:
Sean Nelson316a29f2010-05-07 20:09:04 +0000794 msg_pdbg(": PCI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000795 break;
796 case 0x02:
Sean Nelson316a29f2010-05-07 20:09:04 +0000797 msg_pdbg(": FWH");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000798 break;
799 case 0x03:
Sean Nelson316a29f2010-05-07 20:09:04 +0000800 msg_pdbg(": SPI");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000801 break;
802 }
803 }
Sean Nelson316a29f2010-05-07 20:09:04 +0000804 msg_pdbg("\n");
Carl-Daniel Hailfinger98622512009-05-15 23:36:23 +0000805
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000806 /* Force enable SPI ROM in SB600 PM register.
807 * If we enable SPI ROM here, we have to disable it after we leave.
Zheng Bao284a6002009-05-04 22:33:50 +0000808 * But how can we know which ROM we are going to handle? So we have
809 * to trade off. We only access LPC ROM if we boot via LPC ROM. And
Carl-Daniel Hailfinger41d6bd92009-05-05 22:50:07 +0000810 * only SPI ROM if we boot via SPI ROM. If you want to access SPI on
811 * boards with LPC straps, you have to use the code below.
Zheng Bao284a6002009-05-04 22:33:50 +0000812 */
813 /*
Jason Wanga3f04be2008-11-28 21:36:51 +0000814 OUTB(0x8f, 0xcd6);
815 OUTB(0x0e, 0xcd7);
Zheng Bao284a6002009-05-04 22:33:50 +0000816 */
Marc Jones3af487d2008-10-15 17:50:29 +0000817
Michael Karcherb05b9e12010-07-22 18:04:19 +0000818 return ret;
Marc Jones3af487d2008-10-15 17:50:29 +0000819}
820
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000821static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name)
822{
Uwe Hermanne9d04d42009-06-02 19:54:22 +0000823 uint8_t tmp;
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000824
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000825 rpci_write_byte(dev, 0x92, 0);
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000826
Uwe Hermanne9d04d42009-06-02 19:54:22 +0000827 tmp = pci_read_byte(dev, 0x6d);
828 tmp |= 0x01;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000829 rpci_write_byte(dev, 0x6d, tmp);
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000830
Uwe Hermanne9d04d42009-06-02 19:54:22 +0000831 return 0;
Luc Verhaegen90e8e612009-05-26 09:48:28 +0000832}
833
Uwe Hermann372eeb52007-12-04 21:49:06 +0000834static int enable_flash_ck804(struct pci_dev *dev, const char *name)
Yinghai Lu952dfce2005-07-06 17:13:46 +0000835{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000836 uint8_t old, new;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000837
Jonathan Kollasch9ce498e2011-08-06 12:45:21 +0000838 pci_write_byte(dev, 0x92, 0x00);
839 if (pci_read_byte(dev, 0x92) != 0x00) {
840 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
841 "(WARNING ONLY).\n", 0x92, 0x00, name);
842 }
843
Uwe Hermanna7e05482007-05-09 10:17:44 +0000844 old = pci_read_byte(dev, 0x88);
845 new = old | 0xc0;
846 if (new != old) {
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000847 rpci_write_byte(dev, 0x88, new);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000848 if (pci_read_byte(dev, 0x88) != new) {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +0000849 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
850 "(WARNING ONLY).\n", 0x88, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000851 }
852 }
Yinghai Lu952dfce2005-07-06 17:13:46 +0000853
Uwe Hermanna7e05482007-05-09 10:17:44 +0000854 old = pci_read_byte(dev, 0x6d);
855 new = old | 0x01;
856 if (new == old)
857 return 0;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000858 rpci_write_byte(dev, 0x6d, new);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000859
860 if (pci_read_byte(dev, 0x6d) != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000861 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
862 "(WARNING ONLY).\n", 0x6d, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000863 return -1;
864 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000865
Uwe Hermanna7e05482007-05-09 10:17:44 +0000866 return 0;
Yinghai Lu952dfce2005-07-06 17:13:46 +0000867}
868
Joshua Roys85835d82010-09-15 14:47:56 +0000869static int enable_flash_osb4(struct pci_dev *dev, const char *name)
870{
871 uint8_t tmp;
872
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000873 buses_supported = BUS_PARALLEL;
Joshua Roys85835d82010-09-15 14:47:56 +0000874
875 tmp = INB(0xc06);
876 tmp |= 0x1;
877 OUTB(tmp, 0xc06);
878
879 tmp = INB(0xc6f);
880 tmp |= 0x40;
881 OUTB(tmp, 0xc6f);
882
883 return 0;
884}
885
Uwe Hermann372eeb52007-12-04 21:49:06 +0000886/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
887static int enable_flash_sb400(struct pci_dev *dev, const char *name)
Stefan Reinauer86de2832006-03-31 11:26:55 +0000888{
Uwe Hermanna7e05482007-05-09 10:17:44 +0000889 uint8_t tmp;
Stefan Reinauer86de2832006-03-31 11:26:55 +0000890 struct pci_dev *smbusdev;
891
Uwe Hermann372eeb52007-12-04 21:49:06 +0000892 /* Look for the SMBus device. */
Carl-Daniel Hailfingerf6e3efb2009-05-06 00:35:31 +0000893 smbusdev = pci_dev_find(0x1002, 0x4372);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000894
Uwe Hermanna7e05482007-05-09 10:17:44 +0000895 if (!smbusdev) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000896 msg_perr("ERROR: SMBus device not found. Aborting.\n");
Stefan Reinauer86de2832006-03-31 11:26:55 +0000897 exit(1);
898 }
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000899
Uwe Hermann372eeb52007-12-04 21:49:06 +0000900 /* Enable some SMBus stuff. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000901 tmp = pci_read_byte(smbusdev, 0x79);
902 tmp |= 0x01;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000903 rpci_write_byte(smbusdev, 0x79, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000904
Uwe Hermann372eeb52007-12-04 21:49:06 +0000905 /* Change southbridge. */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000906 tmp = pci_read_byte(dev, 0x48);
907 tmp |= 0x21;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000908 rpci_write_byte(dev, 0x48, tmp);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000909
Uwe Hermann372eeb52007-12-04 21:49:06 +0000910 /* Now become a bit silly. */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000911 tmp = INB(0xc6f);
912 OUTB(tmp, 0xeb);
913 OUTB(tmp, 0xeb);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000914 tmp |= 0x40;
Andriy Gapon65c1b862008-05-22 13:22:45 +0000915 OUTB(tmp, 0xc6f);
916 OUTB(tmp, 0xeb);
917 OUTB(tmp, 0xeb);
Stefan Reinauer86de2832006-03-31 11:26:55 +0000918
919 return 0;
920}
921
Uwe Hermann372eeb52007-12-04 21:49:06 +0000922static int enable_flash_mcp55(struct pci_dev *dev, const char *name)
Yinghai Luca782972007-01-22 20:21:17 +0000923{
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000924 uint8_t old, new, val;
925 uint16_t wordval;
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000926
Uwe Hermann372eeb52007-12-04 21:49:06 +0000927 /* Set the 0-16 MB enable bits. */
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000928 val = pci_read_byte(dev, 0x88);
929 val |= 0xff; /* 256K */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000930 rpci_write_byte(dev, 0x88, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000931 val = pci_read_byte(dev, 0x8c);
932 val |= 0xff; /* 1M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000933 rpci_write_byte(dev, 0x8c, val);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000934 wordval = pci_read_word(dev, 0x90);
935 wordval |= 0x7fff; /* 16M */
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000936 rpci_write_word(dev, 0x90, wordval);
Luc Verhaegen8e3a6002007-04-04 22:45:58 +0000937
Uwe Hermanna7e05482007-05-09 10:17:44 +0000938 old = pci_read_byte(dev, 0x6d);
939 new = old | 0x01;
940 if (new == old)
941 return 0;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +0000942 rpci_write_byte(dev, 0x6d, new);
Yinghai Luca782972007-01-22 20:21:17 +0000943
Uwe Hermanna7e05482007-05-09 10:17:44 +0000944 if (pci_read_byte(dev, 0x6d) != new) {
Stefan Tauneraf882e72011-08-04 17:37:58 +0000945 msg_pinfo("Setting register 0x%x to 0x%x on %s failed "
946 "(WARNING ONLY).\n", 0x6d, new, name);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000947 return -1;
948 }
Yinghai Luca782972007-01-22 20:21:17 +0000949
950 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000951}
952
Uwe Hermann48ec1b12010-08-08 17:01:18 +0000953/*
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000954 * The MCP6x/MCP7x code is based on cleanroom reverse engineering.
955 * It is assumed that LPC chips need the MCP55 code and SPI chips need the
956 * code provided in enable_flash_mcp6x_7x_common.
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +0000957 */
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000958static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name)
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +0000959{
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000960 int ret = 0, want_spi = 0;
Michael Karchercfa674f2010-02-25 11:38:23 +0000961 uint8_t val;
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +0000962
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +0000963 msg_pinfo("This chipset is not really supported yet. Guesswork...\n");
964
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +0000965 /* dev is the ISA bridge. No idea what the stuff below does. */
Michael Karchercfa674f2010-02-25 11:38:23 +0000966 val = pci_read_byte(dev, 0x8a);
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +0000967 msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 "
Michael Karchercfa674f2010-02-25 11:38:23 +0000968 "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1);
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000969
Michael Karchercfa674f2010-02-25 11:38:23 +0000970 switch ((val >> 5) & 0x3) {
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +0000971 case 0x0:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000972 ret = enable_flash_mcp55(dev, name);
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000973 buses_supported = BUS_LPC;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000974 msg_pdbg("Flash bus type is LPC\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +0000975 break;
976 case 0x2:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000977 want_spi = 1;
978 /* SPI is added in mcp6x_spi_init if it works.
979 * Do we really want to disable LPC in this case?
980 */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000981 buses_supported = BUS_NONE;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000982 msg_pdbg("Flash bus type is SPI\n");
Stefan Tauner25b5a592011-07-13 20:48:54 +0000983 msg_pinfo("SPI on this chipset is WIP. Please report any "
984 "success or failure by mailing us the verbose "
985 "output to flashrom@flashrom.org, thanks!\n");
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +0000986 break;
987 default:
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000988 /* Should not happen. */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000989 buses_supported = BUS_NONE;
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +0000990 msg_pdbg("Flash bus type is unknown (none)\n");
991 msg_pinfo("Something went wrong with bus type detection.\n");
992 goto out_msg;
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +0000993 break;
994 }
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +0000995
996 /* Force enable SPI and disable LPC? Not a good idea. */
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +0000997#if 0
Michael Karchercfa674f2010-02-25 11:38:23 +0000998 val |= (1 << 6);
999 val &= ~(1 << 5);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001000 rpci_write_byte(dev, 0x8a, val);
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001001#endif
1002
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001003 if (mcp6x_spi_init(want_spi))
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001004 ret = 1;
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001005
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001006out_msg:
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001007 msg_pinfo("Please send the output of \"flashrom -V\" to "
Paul Menzelab6328f2010-10-08 11:03:02 +00001008 "flashrom@flashrom.org with\n"
1009 "your board name: flashrom -V as the subject to help us "
1010 "finish support for your\n"
Carl-Daniel Hailfingerea3b1b42010-02-13 23:41:01 +00001011 "chipset. Thanks.\n");
1012
Carl-Daniel Hailfingerce5fad02010-02-18 12:24:38 +00001013 return ret;
1014}
1015
Uwe Hermann372eeb52007-12-04 21:49:06 +00001016static int enable_flash_ht1000(struct pci_dev *dev, const char *name)
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001017{
Michael Karchercfa674f2010-02-25 11:38:23 +00001018 uint8_t val;
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001019
Uwe Hermanne823ee02007-06-05 15:02:18 +00001020 /* Set the 4MB enable bit. */
Michael Karchercfa674f2010-02-25 11:38:23 +00001021 val = pci_read_byte(dev, 0x41);
1022 val |= 0x0e;
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001023 rpci_write_byte(dev, 0x41, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001024
Michael Karchercfa674f2010-02-25 11:38:23 +00001025 val = pci_read_byte(dev, 0x43);
1026 val |= (1 << 4);
Carl-Daniel Hailfinger2bee8cf2010-11-10 15:25:18 +00001027 rpci_write_byte(dev, 0x43, val);
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001028
Stefan Reinauerc868b9e2007-06-05 10:28:39 +00001029 return 0;
1030}
1031
Uwe Hermann48ec1b12010-08-08 17:01:18 +00001032/*
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001033 * Usually on the x86 architectures (and on other PC-like platforms like some
1034 * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD
1035 * Elan SC520 only a small piece of the system flash is mapped there, but the
1036 * complete flash is mapped somewhere below 1G. The position can be determined
1037 * by the BOOTCS PAR register.
1038 */
1039static int get_flashbase_sc520(struct pci_dev *dev, const char *name)
1040{
1041 int i, bootcs_found = 0;
1042 uint32_t parx = 0;
1043 void *mmcr;
1044
1045 /* 1. Map MMCR */
Stefan Reinauer0593f212009-01-26 01:10:48 +00001046 mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001047
1048 /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for
1049 * BOOTCS region (PARx[31:29] = 100b)e
1050 */
1051 for (i = 0x88; i <= 0xc4; i += 4) {
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +00001052 parx = mmio_readl(mmcr + i);
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001053 if ((parx >> 29) == 4) {
1054 bootcs_found = 1;
1055 break; /* BOOTCS found */
1056 }
1057 }
1058
1059 /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0]
1060 * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0]
1061 */
1062 if (bootcs_found) {
1063 if (parx & (1 << 25)) {
1064 parx &= (1 << 14) - 1; /* Mask [13:0] */
1065 flashbase = parx << 16;
1066 } else {
1067 parx &= (1 << 18) - 1; /* Mask [17:0] */
1068 flashbase = parx << 12;
1069 }
1070 } else {
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001071 msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. "
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +00001072 "Assuming flash at 4G.\n");
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001073 }
1074
1075 /* 4. Clean up */
Carl-Daniel Hailfingerbe726812009-08-09 12:44:08 +00001076 physunmap(mmcr, getpagesize());
Stefan Reinauer9a6d1762008-12-03 21:24:40 +00001077 return 0;
1078}
1079
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001080#endif
1081
Idwer Vollering326a0602011-06-18 18:45:41 +00001082/* Please keep this list numerically sorted by vendor/device ID. */
Uwe Hermann05fab752009-05-16 23:42:17 +00001083const struct penable chipset_enables[] = {
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001084#if defined(__i386__) || defined(__x86_64__)
Idwer Vollering326a0602011-06-18 18:45:41 +00001085 {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001086 {0x1002, 0x438d, OK, "AMD", "SB600", enable_flash_sb600},
Stefan Tauner77000512011-04-02 11:47:21 +00001087 {0x1002, 0x439d, OK, "AMD", "SB700/SB710/SB750/SB850", enable_flash_sb600},
Uwe Hermann4179d292009-05-08 17:50:51 +00001088 {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100},
Idwer Vollering326a0602011-06-18 18:45:41 +00001089 {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536},
1090 {0x1022, 0x2090, OK, "AMD", "CS5536", enable_flash_cs5536},
1091 {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520},
1092 {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111},
1093 {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111},
Wang Qing Pei6e9e2ee2011-08-26 21:11:41 +00001094 {0x1022, 0x780e, OK, "AMD", "Hudson", enable_flash_sb600},
Idwer Vollering326a0602011-06-18 18:45:41 +00001095 {0x1039, 0x0406, NT, "SiS", "501/5101/5501", enable_flash_sis501},
1096 {0x1039, 0x0496, NT, "SiS", "85C496+497", enable_flash_sis85c496},
1097 {0x1039, 0x0530, NT, "SiS", "530", enable_flash_sis530},
1098 {0x1039, 0x0540, NT, "SiS", "540", enable_flash_sis540},
1099 {0x1039, 0x0620, NT, "SiS", "620", enable_flash_sis530},
1100 {0x1039, 0x0630, NT, "SiS", "630", enable_flash_sis540},
1101 {0x1039, 0x0635, NT, "SiS", "635", enable_flash_sis540},
1102 {0x1039, 0x0640, NT, "SiS", "640", enable_flash_sis540},
1103 {0x1039, 0x0645, NT, "SiS", "645", enable_flash_sis540},
Stefan Tauner716e0982011-07-25 20:38:52 +00001104 {0x1039, 0x0646, OK, "SiS", "645DX", enable_flash_sis540},
Idwer Vollering326a0602011-06-18 18:45:41 +00001105 {0x1039, 0x0648, NT, "SiS", "648", enable_flash_sis540},
1106 {0x1039, 0x0650, NT, "SiS", "650", enable_flash_sis540},
Stefan Tauner716e0982011-07-25 20:38:52 +00001107 {0x1039, 0x0651, OK, "SiS", "651", enable_flash_sis540},
Idwer Vollering326a0602011-06-18 18:45:41 +00001108 {0x1039, 0x0655, NT, "SiS", "655", enable_flash_sis540},
1109 {0x1039, 0x0661, OK, "SiS", "661", enable_flash_sis540},
1110 {0x1039, 0x0730, NT, "SiS", "730", enable_flash_sis540},
1111 {0x1039, 0x0733, NT, "SiS", "733", enable_flash_sis540},
1112 {0x1039, 0x0735, OK, "SiS", "735", enable_flash_sis540},
1113 {0x1039, 0x0740, NT, "SiS", "740", enable_flash_sis540},
1114 {0x1039, 0x0741, OK, "SiS", "741", enable_flash_sis540},
1115 {0x1039, 0x0745, OK, "SiS", "745", enable_flash_sis540},
1116 {0x1039, 0x0746, NT, "SiS", "746", enable_flash_sis540},
1117 {0x1039, 0x0748, NT, "SiS", "748", enable_flash_sis540},
1118 {0x1039, 0x0755, NT, "SiS", "755", enable_flash_sis540},
1119 {0x1039, 0x5511, NT, "SiS", "5511", enable_flash_sis5511},
1120 {0x1039, 0x5571, NT, "SiS", "5571", enable_flash_sis530},
1121 {0x1039, 0x5591, NT, "SiS", "5591/5592", enable_flash_sis530},
1122 {0x1039, 0x5596, NT, "SiS", "5596", enable_flash_sis5511},
1123 {0x1039, 0x5597, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530},
1124 {0x1039, 0x5600, NT, "SiS", "600", enable_flash_sis530},
1125 {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001126 {0x10b9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533},
Stefan Taunerd06d9412011-06-12 19:47:55 +00001127 {0x10de, 0x0030, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2},
Uwe Hermannb0039912009-05-07 13:24:49 +00001128 {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */
1129 {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */
Stefan Taunerd06d9412011-06-12 19:47:55 +00001130 {0x10de, 0x0060, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2},
1131 {0x10de, 0x00e0, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2},
Uwe Hermanneac10162008-03-13 18:52:51 +00001132 /* Slave, should not be here, to fix known bug for A01. */
Uwe Hermannb0039912009-05-07 13:24:49 +00001133 {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804},
Stefan Taunera9cbbac2011-08-07 13:17:20 +00001134 {0x10de, 0x0260, OK, "NVIDIA", "MCP51", enable_flash_ck804},
Uwe Hermannb0039912009-05-07 13:24:49 +00001135 {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1136 {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1137 {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804},
1138 {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/
Carl-Daniel Hailfinger33d7b6a2010-05-22 07:27:16 +00001139 /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to
1140 * the flash chip. Instead, 10de:0364 is connected to the flash chip.
1141 * Until we have PCI device class matching or some fallback mechanism,
1142 * this is needed to get flashrom working on Tyan S2915 and maybe other
1143 * dual-MCP55 boards.
1144 */
1145#if 0
1146 {0x10de, 0x0361, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1147#endif
Uwe Hermannb0039912009-05-07 13:24:49 +00001148 {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1149 {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1150 {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1151 {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1152 {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */
1153 {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001154 {0x10de, 0x03e0, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00001155 {0x10de, 0x03e1, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
Carl-Daniel Hailfinger2f436162010-07-28 15:08:35 +00001156 {0x10de, 0x03e2, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1157 {0x10de, 0x03e3, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x},
1158 {0x10de, 0x0440, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1159 {0x10de, 0x0441, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1160 {0x10de, 0x0442, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1161 {0x10de, 0x0443, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x},
1162 {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x},
1163 {0x10de, 0x075c, NT, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1164 {0x10de, 0x075d, NT, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x},
1165 {0x10de, 0x07d7, NT, "NVIDIA", "MCP73", enable_flash_mcp6x_7x},
1166 {0x10de, 0x0aac, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1167 {0x10de, 0x0aad, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1168 {0x10de, 0x0aae, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
1169 {0x10de, 0x0aaf, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x},
Michael Karcher89bed6d2010-06-13 10:16:12 +00001170 /* VIA northbridges */
1171 {0x1106, 0x0585, NT, "VIA", "VT82C585VPX", via_no_byte_merge},
1172 {0x1106, 0x0595, NT, "VIA", "VT82C595", via_no_byte_merge},
1173 {0x1106, 0x0597, NT, "VIA", "VT82C597", via_no_byte_merge},
Michael Karcher89bed6d2010-06-13 10:16:12 +00001174 {0x1106, 0x0601, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge},
Idwer Vollering326a0602011-06-18 18:45:41 +00001175 {0x1106, 0x0691, NT, "VIA", "VT82C69x", via_no_byte_merge}, /* 691, 693a, 694t, 694x checked */
Michael Karcher89bed6d2010-06-13 10:16:12 +00001176 {0x1106, 0x8601, NT, "VIA", "VT8601T", via_no_byte_merge},
1177 /* VIA southbridges */
Idwer Vollering326a0602011-06-18 18:45:41 +00001178 {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111},
1179 {0x1106, 0x0596, OK, "VIA", "VT82C596", enable_flash_amd8111},
1180 {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111},
Mateusz Murawskie6abef02009-06-18 12:42:46 +00001181 {0x1106, 0x3074, NT, "VIA", "VT8233", enable_flash_vt823x},
Raúl Sorianocd8404d2009-12-23 21:29:18 +00001182 {0x1106, 0x3147, OK, "VIA", "VT8233A", enable_flash_vt823x},
Uwe Hermann4179d292009-05-08 17:50:51 +00001183 {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x},
1184 {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x},
1185 {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x},
1186 {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi},
Idwer Vollering326a0602011-06-18 18:45:41 +00001187 {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x},
1188 {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001189 {0x1106, 0x8353, OK, "VIA", "VX800/VX820", enable_flash_vt8237s_spi},
1190 {0x1106, 0x8409, OK, "VIA", "VX855/VX875", enable_flash_vt823x},
Idwer Vollering326a0602011-06-18 18:45:41 +00001191 {0x1166, 0x0200, OK, "Broadcom", "OSB4", enable_flash_osb4},
1192 {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000},
1193 {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4},
1194 {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4},
Stefan Taunerbd0c70a2011-08-27 21:19:56 +00001195 {0x8086, 0x1c44, NT, "Intel", "Z68", enable_flash_pch6},
1196 {0x8086, 0x1c46, NT, "Intel", "P67", enable_flash_pch6},
1197 {0x8086, 0x1c47, NT, "Intel", "UM67", enable_flash_pch6},
1198 {0x8086, 0x1c49, NT, "Intel", "HM65", enable_flash_pch6},
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00001199 {0x8086, 0x1c4a, OK, "Intel", "H67", enable_flash_pch6},
Stefan Taunerbd0c70a2011-08-27 21:19:56 +00001200 {0x8086, 0x1c4b, NT, "Intel", "HM67", enable_flash_pch6},
1201 {0x8086, 0x1c4c, NT, "Intel", "Q65", enable_flash_pch6},
1202 {0x8086, 0x1c4d, NT, "Intel", "QS67", enable_flash_pch6},
1203 {0x8086, 0x1c4e, NT, "Intel", "Q67", enable_flash_pch6},
1204 {0x8086, 0x1c4f, NT, "Intel", "QM67", enable_flash_pch6},
1205 {0x8086, 0x1c50, NT, "Intel", "B65", enable_flash_pch6},
1206 {0x8086, 0x1c52, NT, "Intel", "C202", enable_flash_pch6},
1207 {0x8086, 0x1c54, NT, "Intel", "C204", enable_flash_pch6},
1208 {0x8086, 0x1c56, NT, "Intel", "C206", enable_flash_pch6},
1209 {0x8086, 0x1c5c, NT, "Intel", "H61", enable_flash_pch6},
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00001210 {0x8086, 0x1d40, OK, "Intel", "X79", enable_flash_ich10}, /* FIXME: when datasheet is available */
1211 {0x8086, 0x1d41, NT, "Intel", "X79", enable_flash_ich10}, /* FIXME: when datasheet is available */
Idwer Vollering326a0602011-06-18 18:45:41 +00001212 {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e},
1213 {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e},
1214 {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e},
1215 {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001216 {0x8086, 0x2450, NT, "Intel", "C-ICH", enable_flash_ich_4e},
Idwer Vollering326a0602011-06-18 18:45:41 +00001217 {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e},
1218 {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e},
1219 {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e},
1220 {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e},
1221 {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e},
1222 {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e},
1223 {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc},
1224 {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001225 {0x8086, 0x2642, NT, "Intel", "ICH6W/ICH6RW", enable_flash_ich_dc},
Idwer Vollering326a0602011-06-18 18:45:41 +00001226 {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc},
1227 {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7},
1228 {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7},
1229 {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7},
1230 {0x8086, 0x27bc, OK, "Intel", "NM10", enable_flash_ich7},
1231 {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7},
1232 {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8},
1233 {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8},
1234 {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8},
1235 {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8},
1236 {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8},
1237 {0x8086, 0x2910, OK, "Intel", "ICH9 Engineering Sample", enable_flash_ich9},
1238 {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9},
1239 {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9},
1240 {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9},
1241 {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9},
1242 {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9},
1243 {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001244 {0x8086, 0x3a10, NT, "Intel", "ICH10R Engineering Sample", enable_flash_ich10},
Idwer Vollering326a0602011-06-18 18:45:41 +00001245 {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10},
1246 {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10},
1247 {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10},
1248 {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001249 {0x8086, 0x3a1e, NT, "Intel", "ICH10 Engineering Sample", enable_flash_ich10},
Stefan Taunerbd0c70a2011-08-27 21:19:56 +00001250 {0x8086, 0x3b00, NT, "Intel", "3400 Desktop", enable_flash_pch5},
1251 {0x8086, 0x3b01, NT, "Intel", "3400 Mobile", enable_flash_pch5},
1252 {0x8086, 0x3b02, NT, "Intel", "P55", enable_flash_pch5},
1253 {0x8086, 0x3b03, NT, "Intel", "PM55", enable_flash_pch5},
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00001254 {0x8086, 0x3b06, OK, "Intel", "H55", enable_flash_pch5},
Stefan Taunerbd0c70a2011-08-27 21:19:56 +00001255 {0x8086, 0x3b07, OK, "Intel", "QM57", enable_flash_pch5},
1256 {0x8086, 0x3b08, NT, "Intel", "H57", enable_flash_pch5},
1257 {0x8086, 0x3b09, NT, "Intel", "HM55", enable_flash_pch5},
1258 {0x8086, 0x3b0a, NT, "Intel", "Q57", enable_flash_pch5},
1259 {0x8086, 0x3b0b, NT, "Intel", "HM57", enable_flash_pch5},
1260 {0x8086, 0x3b0d, NT, "Intel", "3400 Mobile SFF", enable_flash_pch5},
1261 {0x8086, 0x3b0e, NT, "Intel", "B55", enable_flash_pch5},
1262 {0x8086, 0x3b0f, OK, "Intel", "QS57", enable_flash_pch5},
1263 {0x8086, 0x3b12, NT, "Intel", "3400", enable_flash_pch5},
1264 {0x8086, 0x3b14, NT, "Intel", "3420", enable_flash_pch5},
1265 {0x8086, 0x3b16, NT, "Intel", "3450", enable_flash_pch5},
1266 {0x8086, 0x3b1e, NT, "Intel", "B55", enable_flash_pch5},
Idwer Vollering326a0602011-06-18 18:45:41 +00001267 {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7},
1268 {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4},
1269 {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4},
1270 {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4},
Idwer Vollering570dcc72011-06-18 18:45:50 +00001271 {0x8086, 0x8119, OK, "Intel", "SCH Poulsbo", enable_flash_poulsbo},
1272 {0x8086, 0x8186, NT, "Intel", "Atom E6xx(T)/Tunnel Creek", enable_flash_poulsbo},
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001273#endif
Uwe Hermann05fab752009-05-16 23:42:17 +00001274 {},
Ollie Lhocbbf1252004-03-17 22:22:08 +00001275};
Ollie Lho761bf1b2004-03-20 16:46:10 +00001276
Uwe Hermanna7e05482007-05-09 10:17:44 +00001277int chipset_flash_enable(void)
Ollie Lhocbbf1252004-03-17 22:22:08 +00001278{
Peter Huewe73f8ec82011-01-24 19:15:51 +00001279 struct pci_dev *dev = NULL;
Uwe Hermann372eeb52007-12-04 21:49:06 +00001280 int ret = -2; /* Nothing! */
Uwe Hermanna7e05482007-05-09 10:17:44 +00001281 int i;
Stefan Tauner00155492011-06-26 20:45:35 +00001282 char *s;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001283
Uwe Hermann372eeb52007-12-04 21:49:06 +00001284 /* Now let's try to find the chipset we have... */
Uwe Hermann05fab752009-05-16 23:42:17 +00001285 for (i = 0; chipset_enables[i].vendor_name != NULL; i++) {
1286 dev = pci_dev_find(chipset_enables[i].vendor_id,
1287 chipset_enables[i].device_id);
Michael Karcher89bed6d2010-06-13 10:16:12 +00001288 if (!dev)
1289 continue;
1290 if (ret != -2) {
1291 msg_pinfo("WARNING: unexpected second chipset match: "
Paul Menzelab6328f2010-10-08 11:03:02 +00001292 "\"%s %s\"\n"
1293 "ignoring, please report lspci and board URL "
1294 "to flashrom@flashrom.org\n"
Stefan Reinauerbf282b12011-03-29 21:41:41 +00001295 "with \'CHIPSET: your board name\' in the "
Paul Menzelab6328f2010-10-08 11:03:02 +00001296 "subject line.\n",
Michael Karcher89bed6d2010-06-13 10:16:12 +00001297 chipset_enables[i].vendor_name,
1298 chipset_enables[i].device_name);
1299 continue;
1300 }
Stefan Taunerec8c2482011-07-21 19:59:34 +00001301 msg_pinfo("Found chipset \"%s %s\"",
1302 chipset_enables[i].vendor_name,
1303 chipset_enables[i].device_name);
Stefan Tauner716e0982011-07-25 20:38:52 +00001304 msg_pdbg(" with PCI ID %04x:%04x",
Carl-Daniel Hailfingerf469c272010-05-22 07:31:50 +00001305 chipset_enables[i].vendor_id,
1306 chipset_enables[i].device_id);
Stefan Taunerec8c2482011-07-21 19:59:34 +00001307 msg_pinfo(". ");
Uwe Hermanna7e05482007-05-09 10:17:44 +00001308
Stefan Taunerec8c2482011-07-21 19:59:34 +00001309 if (chipset_enables[i].status == NT) {
1310 msg_pinfo("\nThis chipset is marked as untested. If "
1311 "you are using an up-to-date version\nof "
1312 "flashrom please email a report to "
1313 "flashrom@flashrom.org including a\nverbose "
1314 "(-V) log. Thank you!\n");
1315 }
1316 msg_pinfo("Enabling flash write... ");
Uwe Hermann05fab752009-05-16 23:42:17 +00001317 ret = chipset_enables[i].doit(dev,
1318 chipset_enables[i].device_name);
Michael Karcher89bed6d2010-06-13 10:16:12 +00001319 if (ret == NOT_DONE_YET) {
1320 ret = -2;
1321 msg_pinfo("OK - searching further chips.\n");
1322 } else if (ret < 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00001323 msg_pinfo("FAILED!\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001324 else if (ret == 0)
Sean Nelson316a29f2010-05-07 20:09:04 +00001325 msg_pinfo("OK.\n");
Uwe Hermann91f4afa2011-07-28 08:13:25 +00001326 else if (ret == ERROR_NONFATAL)
Michael Karchera4448d92010-07-22 18:04:15 +00001327 msg_pinfo("PROBLEMS, continuing anyway\n");
Tadas Slotkusad470342011-09-03 17:15:00 +00001328 if (ret == ERROR_FATAL) {
1329 msg_perr("FATAL ERROR!\n");
1330 return ret;
1331 }
Uwe Hermanna7e05482007-05-09 10:17:44 +00001332 }
Michael Karcher89bed6d2010-06-13 10:16:12 +00001333
Stefan Tauner00155492011-06-26 20:45:35 +00001334 s = flashbuses_to_text(buses_supported);
1335 msg_pinfo("This chipset supports the following protocols: %s.\n", s);
1336 free(s);
Uwe Hermanna7e05482007-05-09 10:17:44 +00001337
1338 return ret;
Ollie Lhocbbf1252004-03-17 22:22:08 +00001339}