Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 5 | * Copyright (C) 2005-2009 coresystems GmbH |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de> |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 7 | * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 8 | * Copyright (C) 2009 Kontron Modular Computers GmbH |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 9 | * Copyright (C) 2011, 2012 Stefan Tauner |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 10 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; version 2 of the License. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 14 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * Contains the chipset specific flash enables. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 27 | */ |
| 28 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 29 | #define _LARGEFILE64_SOURCE |
| 30 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 31 | #include <stdlib.h> |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 32 | #include <string.h> |
Carl-Daniel Hailfinger | dcef67e | 2010-06-21 23:20:15 +0000 | [diff] [blame] | 33 | #include <unistd.h> |
Carl-Daniel Hailfinger | 46fa068 | 2011-07-25 22:44:09 +0000 | [diff] [blame] | 34 | #include <inttypes.h> |
| 35 | #include <errno.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 36 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 37 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame] | 38 | #include "hwaccess.h" |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 39 | |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 40 | #define NOT_DONE_YET 1 |
| 41 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 42 | #if defined(__i386__) || defined(__x86_64__) |
| 43 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 44 | static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name) |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 45 | { |
| 46 | uint8_t tmp; |
| 47 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 48 | /* |
| 49 | * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and |
| 50 | * 0xFFFE0000-0xFFFFFFFF ROM select enable. |
| 51 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 52 | tmp = pci_read_byte(dev, 0x47); |
| 53 | tmp |= 0x46; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 54 | rpci_write_byte(dev, 0x47, tmp); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | |
Rudolf Marek | 23907d8 | 2012-02-07 21:29:48 +0000 | [diff] [blame] | 59 | static int enable_flash_rdc_r8610(struct pci_dev *dev, const char *name) |
| 60 | { |
| 61 | uint8_t tmp; |
| 62 | |
| 63 | /* enable ROMCS for writes */ |
| 64 | tmp = pci_read_byte(dev, 0x43); |
| 65 | tmp |= 0x80; |
| 66 | pci_write_byte(dev, 0x43, tmp); |
| 67 | |
| 68 | /* read the bootstrapping register */ |
| 69 | tmp = pci_read_byte(dev, 0x40) & 0x3; |
| 70 | switch (tmp) { |
| 71 | case 3: |
| 72 | internal_buses_supported = BUS_FWH; |
| 73 | break; |
| 74 | case 2: |
| 75 | internal_buses_supported = BUS_LPC; |
| 76 | break; |
| 77 | default: |
| 78 | internal_buses_supported = BUS_PARALLEL; |
| 79 | break; |
| 80 | } |
| 81 | |
| 82 | return 0; |
| 83 | } |
| 84 | |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 85 | static int enable_flash_sis85c496(struct pci_dev *dev, const char *name) |
| 86 | { |
| 87 | uint8_t tmp; |
| 88 | |
| 89 | tmp = pci_read_byte(dev, 0xd0); |
| 90 | tmp |= 0xf8; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 91 | rpci_write_byte(dev, 0xd0, tmp); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name) |
| 97 | { |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 98 | #define SIS_MAPREG 0x40 |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 99 | uint8_t new, newer; |
| 100 | |
| 101 | /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */ |
| 102 | /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */ |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 103 | new = pci_read_byte(dev, SIS_MAPREG); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 104 | new &= (~0x04); /* No idea why we clear bit 2. */ |
| 105 | new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */ |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 106 | rpci_write_byte(dev, SIS_MAPREG, new); |
| 107 | newer = pci_read_byte(dev, SIS_MAPREG); |
| 108 | if (newer != new) { /* FIXME: share this with other code? */ |
| 109 | msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", |
| 110 | SIS_MAPREG, new, name); |
| 111 | msg_pinfo("Stuck at 0x%02x.\n", newer); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 112 | return -1; |
| 113 | } |
| 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | static struct pci_dev *find_southbridge(uint16_t vendor, const char *name) |
| 118 | { |
| 119 | struct pci_dev *sbdev; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 120 | |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 121 | sbdev = pci_dev_find_vendorclass(vendor, 0x0601); |
| 122 | if (!sbdev) |
| 123 | sbdev = pci_dev_find_vendorclass(vendor, 0x0680); |
| 124 | if (!sbdev) |
| 125 | sbdev = pci_dev_find_vendorclass(vendor, 0x0000); |
| 126 | if (!sbdev) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 127 | msg_perr("No southbridge found for %s!\n", name); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 128 | if (sbdev) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 129 | msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 130 | sbdev->vendor_id, sbdev->device_id, |
| 131 | sbdev->bus, sbdev->dev, sbdev->func); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 132 | return sbdev; |
| 133 | } |
| 134 | |
| 135 | static int enable_flash_sis501(struct pci_dev *dev, const char *name) |
| 136 | { |
| 137 | uint8_t tmp; |
| 138 | int ret = 0; |
| 139 | struct pci_dev *sbdev; |
| 140 | |
| 141 | sbdev = find_southbridge(dev->vendor_id, name); |
| 142 | if (!sbdev) |
| 143 | return -1; |
| 144 | |
| 145 | ret = enable_flash_sis_mapping(sbdev, name); |
| 146 | |
| 147 | tmp = sio_read(0x22, 0x80); |
| 148 | tmp &= (~0x20); |
| 149 | tmp |= 0x4; |
| 150 | sio_write(0x22, 0x80, tmp); |
| 151 | |
| 152 | tmp = sio_read(0x22, 0x70); |
| 153 | tmp &= (~0x20); |
| 154 | tmp |= 0x4; |
| 155 | sio_write(0x22, 0x70, tmp); |
| 156 | |
| 157 | return ret; |
| 158 | } |
| 159 | |
| 160 | static int enable_flash_sis5511(struct pci_dev *dev, const char *name) |
| 161 | { |
| 162 | uint8_t tmp; |
| 163 | int ret = 0; |
| 164 | struct pci_dev *sbdev; |
| 165 | |
| 166 | sbdev = find_southbridge(dev->vendor_id, name); |
| 167 | if (!sbdev) |
| 168 | return -1; |
| 169 | |
| 170 | ret = enable_flash_sis_mapping(sbdev, name); |
| 171 | |
| 172 | tmp = sio_read(0x22, 0x50); |
| 173 | tmp &= (~0x20); |
| 174 | tmp |= 0x4; |
| 175 | sio_write(0x22, 0x50, tmp); |
| 176 | |
| 177 | return ret; |
| 178 | } |
| 179 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 180 | static int enable_flash_sis5x0(struct pci_dev *dev, const char *name, uint8_t dis_mask, uint8_t en_mask) |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 181 | { |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 182 | #define SIS_REG 0x45 |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 183 | uint8_t new, newer; |
| 184 | int ret = 0; |
| 185 | struct pci_dev *sbdev; |
| 186 | |
| 187 | sbdev = find_southbridge(dev->vendor_id, name); |
| 188 | if (!sbdev) |
| 189 | return -1; |
| 190 | |
| 191 | ret = enable_flash_sis_mapping(sbdev, name); |
| 192 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 193 | new = pci_read_byte(sbdev, SIS_REG); |
| 194 | new &= (~dis_mask); |
| 195 | new |= en_mask; |
| 196 | rpci_write_byte(sbdev, SIS_REG, new); |
| 197 | newer = pci_read_byte(sbdev, SIS_REG); |
| 198 | if (newer != new) { /* FIXME: share this with other code? */ |
| 199 | msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SIS_REG, new, name); |
| 200 | msg_pinfo("Stuck at 0x%02x\n", newer); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 201 | ret = -1; |
| 202 | } |
| 203 | |
| 204 | return ret; |
| 205 | } |
| 206 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 207 | static int enable_flash_sis530(struct pci_dev *dev, const char *name) |
| 208 | { |
| 209 | return enable_flash_sis5x0(dev, name, 0x20, 0x04); |
| 210 | } |
| 211 | |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 212 | static int enable_flash_sis540(struct pci_dev *dev, const char *name) |
| 213 | { |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 214 | return enable_flash_sis5x0(dev, name, 0x80, 0x40); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 215 | } |
| 216 | |
Uwe Hermann | 987942d | 2006-11-07 11:16:21 +0000 | [diff] [blame] | 217 | /* Datasheet: |
| 218 | * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4) |
| 219 | * - URL: http://www.intel.com/design/intarch/datashts/290562.htm |
| 220 | * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf |
| 221 | * - Order Number: 290562-001 |
| 222 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 223 | static int enable_flash_piix4(struct pci_dev *dev, const char *name) |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 224 | { |
| 225 | uint16_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 226 | uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */ |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 227 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 228 | internal_buses_supported = BUS_PARALLEL; |
Maciej Pijanka | a661e15 | 2009-12-08 17:26:24 +0000 | [diff] [blame] | 229 | |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 230 | old = pci_read_word(dev, xbcs); |
| 231 | |
| 232 | /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 233 | * FFF00000-FFF7FFFF are forwarded to ISA). |
Uwe Hermann | c556d32 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 234 | * Note: This bit is reserved on PIIX/PIIX3/MPIIX. |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 235 | * Set bit 7: Extended BIOS Enable (PCI master accesses to |
| 236 | * FFF80000-FFFDFFFF are forwarded to ISA). |
| 237 | * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to |
| 238 | * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top |
| 239 | * of 1 Mbyte, or the aliases at the top of 4 Gbyte |
| 240 | * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#. |
| 241 | * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA. |
| 242 | * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable). |
| 243 | */ |
Uwe Hermann | c556d32 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 244 | if (dev->device_id == 0x122e || dev->device_id == 0x7000 |
| 245 | || dev->device_id == 0x1234) |
| 246 | new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */ |
Uwe Hermann | 8720345 | 2008-10-26 18:40:42 +0000 | [diff] [blame] | 247 | else |
| 248 | new = old | 0x02c4; |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 249 | |
| 250 | if (new == old) |
| 251 | return 0; |
| 252 | |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 253 | rpci_write_word(dev, xbcs, new); |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 254 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 255 | if (pci_read_word(dev, xbcs) != new) { /* FIXME: share this with other code? */ |
| 256 | msg_pinfo("Setting register 0x%04x to 0x%04x on %s failed (WARNING ONLY).\n", xbcs, new, name); |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 257 | return -1; |
| 258 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 259 | |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 260 | return 0; |
| 261 | } |
| 262 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 263 | /* |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 264 | * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet" |
| 265 | * http://download.intel.com/design/chipsets/datashts/30701303.pdf |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 266 | */ |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 267 | static int enable_flash_ich(struct pci_dev *dev, const char *name, uint8_t bios_cntl) |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 268 | { |
Stefan Tauner | d5c4ab4 | 2011-09-09 12:46:32 +0000 | [diff] [blame] | 269 | uint8_t old, new, wanted; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 270 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 271 | /* |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 272 | * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, in Tunnel Creek it is even 32b, but |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 273 | * just treating it as 8 bit wide seems to work fine in practice. |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 274 | */ |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 275 | wanted = old = pci_read_byte(dev, bios_cntl); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 276 | |
Stefan Tauner | f9a8da5 | 2011-06-11 18:16:50 +0000 | [diff] [blame] | 277 | /* |
| 278 | * Quote from the 6 Series datasheet (Document Number: 324645-004): |
| 279 | * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP) |
| 280 | * 1 = BIOS region SMM protection is enabled. |
| 281 | * The BIOS Region is not writable unless all processors are in SMM." |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 282 | * In earlier chipsets this bit is reserved. |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 283 | * |
| 284 | * Try to unset it in any case. |
| 285 | * It won't hurt and makes sense in some cases according to Stefan Reinauer. |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 286 | */ |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 287 | wanted &= ~(1 << 5); |
| 288 | |
| 289 | /* Set BIOS Write Enable */ |
| 290 | wanted |= (1 << 0); |
| 291 | |
| 292 | /* Only write the register if it's necessary */ |
| 293 | if (wanted != old) { |
| 294 | rpci_write_byte(dev, bios_cntl, wanted); |
| 295 | new = pci_read_byte(dev, bios_cntl); |
| 296 | } else |
| 297 | new = old; |
| 298 | |
| 299 | msg_pdbg("\nBIOS_CNTL = 0x%02x: ", new); |
| 300 | msg_pdbg("BIOS Lock Enable: %sabled, ", (new & (1 << 1)) ? "en" : "dis"); |
| 301 | msg_pdbg("BIOS Write Enable: %sabled\n", (new & (1 << 0)) ? "en" : "dis"); |
| 302 | if (new & (1 << 5)) |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 303 | msg_pwarn("Warning: BIOS region SMM protection is enabled!\n"); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 304 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 305 | |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 306 | if (new != wanted) |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 307 | msg_pwarn("Warning: Setting Bios Control at 0x%x from 0x%02x to 0x%02x on %s failed.\n" |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 308 | "New value is 0x%02x.\n", bios_cntl, old, wanted, name, new); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 309 | |
Stefan Reinauer | 62218c3 | 2012-08-26 02:35:13 +0000 | [diff] [blame] | 310 | /* Return an error if we could not set the write enable */ |
| 311 | if (!(new & (1 << 0))) |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 312 | return -1; |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 313 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 314 | return 0; |
| 315 | } |
| 316 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 317 | static int enable_flash_ich_4e(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 318 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 319 | /* |
| 320 | * Note: ICH5 has registers similar to FWH_SEL1, FWH_SEL2 and |
| 321 | * FWH_DEC_EN1, but they are called FB_SEL1, FB_SEL2, FB_DEC_EN1 and |
| 322 | * FB_DEC_EN2. |
| 323 | */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 324 | internal_buses_supported = BUS_FWH; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 325 | return enable_flash_ich(dev, name, 0x4e); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 328 | static int enable_flash_ich_dc(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 329 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 330 | uint32_t fwh_conf; |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 331 | int i, tmp; |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 332 | char *idsel = NULL; |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 333 | int max_decode_fwh_idsel = 0, max_decode_fwh_decode = 0; |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 334 | int contiguous = 1; |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 335 | |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 336 | idsel = extract_programmer_param("fwh_idsel"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 337 | if (idsel && strlen(idsel)) { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 338 | uint64_t fwh_idsel_old, fwh_idsel; |
Carl-Daniel Hailfinger | 46fa068 | 2011-07-25 22:44:09 +0000 | [diff] [blame] | 339 | errno = 0; |
| 340 | /* Base 16, nothing else makes sense. */ |
| 341 | fwh_idsel = (uint64_t)strtoull(idsel, NULL, 16); |
| 342 | if (errno) { |
| 343 | msg_perr("Error: fwh_idsel= specified, but value could " |
| 344 | "not be converted.\n"); |
| 345 | goto idsel_garbage_out; |
| 346 | } |
| 347 | if (fwh_idsel & 0xffff000000000000ULL) { |
| 348 | msg_perr("Error: fwh_idsel= specified, but value had " |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 349 | "unused bits set.\n"); |
Carl-Daniel Hailfinger | 46fa068 | 2011-07-25 22:44:09 +0000 | [diff] [blame] | 350 | goto idsel_garbage_out; |
| 351 | } |
| 352 | fwh_idsel_old = pci_read_long(dev, 0xd0); |
| 353 | fwh_idsel_old <<= 16; |
| 354 | fwh_idsel_old |= pci_read_word(dev, 0xd4); |
| 355 | msg_pdbg("\nSetting IDSEL from 0x%012" PRIx64 " to " |
| 356 | "0x%012" PRIx64 " for top 16 MB.", fwh_idsel_old, |
| 357 | fwh_idsel); |
| 358 | rpci_write_long(dev, 0xd0, (fwh_idsel >> 16) & 0xffffffff); |
| 359 | rpci_write_word(dev, 0xd4, fwh_idsel & 0xffff); |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 360 | /* FIXME: Decode settings are not changed. */ |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 361 | } else if (idsel) { |
Carl-Daniel Hailfinger | 46fa068 | 2011-07-25 22:44:09 +0000 | [diff] [blame] | 362 | msg_perr("Error: fwh_idsel= specified, but no value given.\n"); |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 363 | idsel_garbage_out: |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 364 | free(idsel); |
Tadas Slotkus | 0e3f1cf | 2011-09-06 18:49:31 +0000 | [diff] [blame] | 365 | return ERROR_FATAL; |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 366 | } |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 367 | free(idsel); |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 368 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 369 | /* Ignore all legacy ranges below 1 MB. |
| 370 | * We currently only support flashing the chip which responds to |
| 371 | * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations |
| 372 | * have to be adjusted. |
| 373 | */ |
| 374 | /* FWH_SEL1 */ |
| 375 | fwh_conf = pci_read_long(dev, 0xd0); |
| 376 | for (i = 7; i >= 0; i--) { |
| 377 | tmp = (fwh_conf >> (i * 4)) & 0xf; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 378 | msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 379 | (0x1ff8 + i) * 0x80000, |
| 380 | (0x1ff0 + i) * 0x80000, |
| 381 | tmp); |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 382 | if ((tmp == 0) && contiguous) { |
| 383 | max_decode_fwh_idsel = (8 - i) * 0x80000; |
| 384 | } else { |
| 385 | contiguous = 0; |
| 386 | } |
| 387 | } |
| 388 | /* FWH_SEL2 */ |
| 389 | fwh_conf = pci_read_word(dev, 0xd4); |
| 390 | for (i = 3; i >= 0; i--) { |
| 391 | tmp = (fwh_conf >> (i * 4)) & 0xf; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 392 | msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 393 | (0xff4 + i) * 0x100000, |
| 394 | (0xff0 + i) * 0x100000, |
| 395 | tmp); |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 396 | if ((tmp == 0) && contiguous) { |
| 397 | max_decode_fwh_idsel = (8 - i) * 0x100000; |
| 398 | } else { |
| 399 | contiguous = 0; |
| 400 | } |
| 401 | } |
| 402 | contiguous = 1; |
| 403 | /* FWH_DEC_EN1 */ |
| 404 | fwh_conf = pci_read_word(dev, 0xd8); |
| 405 | for (i = 7; i >= 0; i--) { |
| 406 | tmp = (fwh_conf >> (i + 0x8)) & 0x1; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 407 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 408 | (0x1ff8 + i) * 0x80000, |
| 409 | (0x1ff0 + i) * 0x80000, |
| 410 | tmp ? "en" : "dis"); |
Michael Karcher | 9678539 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 411 | if ((tmp == 1) && contiguous) { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 412 | max_decode_fwh_decode = (8 - i) * 0x80000; |
| 413 | } else { |
| 414 | contiguous = 0; |
| 415 | } |
| 416 | } |
| 417 | for (i = 3; i >= 0; i--) { |
| 418 | tmp = (fwh_conf >> i) & 0x1; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 419 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 420 | (0xff4 + i) * 0x100000, |
| 421 | (0xff0 + i) * 0x100000, |
| 422 | tmp ? "en" : "dis"); |
Michael Karcher | 9678539 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 423 | if ((tmp == 1) && contiguous) { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 424 | max_decode_fwh_decode = (8 - i) * 0x100000; |
| 425 | } else { |
| 426 | contiguous = 0; |
| 427 | } |
| 428 | } |
| 429 | max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 430 | msg_pdbg("\nMaximum FWH chip size: 0x%x bytes", max_rom_decode.fwh); |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 431 | |
| 432 | /* If we're called by enable_flash_ich_dc_spi, it will override |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 433 | * internal_buses_supported anyway. |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 434 | */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 435 | internal_buses_supported = BUS_FWH; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 436 | return enable_flash_ich(dev, name, 0xdc); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 437 | } |
| 438 | |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 439 | static int enable_flash_poulsbo(struct pci_dev *dev, const char *name) |
| 440 | { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 441 | uint16_t old, new; |
| 442 | int err; |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 443 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 444 | if ((err = enable_flash_ich(dev, name, 0xd8)) != 0) |
| 445 | return err; |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 446 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 447 | old = pci_read_byte(dev, 0xd9); |
| 448 | msg_pdbg("BIOS Prefetch Enable: %sabled, ", |
| 449 | (old & 1) ? "en" : "dis"); |
| 450 | new = old & ~1; |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 451 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 452 | if (new != old) |
| 453 | rpci_write_byte(dev, 0xd9, new); |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 454 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 455 | internal_buses_supported = BUS_FWH; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 456 | return 0; |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 457 | } |
| 458 | |
Ingo Feldschmid | dadc0a6 | 2011-09-07 19:18:25 +0000 | [diff] [blame] | 459 | static int enable_flash_tunnelcreek(struct pci_dev *dev, const char *name) |
| 460 | { |
| 461 | uint16_t old, new; |
| 462 | uint32_t tmp, bnt; |
| 463 | void *rcrb; |
| 464 | int ret; |
| 465 | |
| 466 | /* Enable Flash Writes */ |
| 467 | ret = enable_flash_ich(dev, name, 0xd8); |
| 468 | if (ret == ERROR_FATAL) |
| 469 | return ret; |
| 470 | |
| 471 | /* Make sure BIOS prefetch mechanism is disabled */ |
| 472 | old = pci_read_byte(dev, 0xd9); |
| 473 | msg_pdbg("BIOS Prefetch Enable: %sabled, ", (old & 1) ? "en" : "dis"); |
| 474 | new = old & ~1; |
| 475 | if (new != old) |
| 476 | rpci_write_byte(dev, 0xd9, new); |
| 477 | |
| 478 | /* Get physical address of Root Complex Register Block */ |
| 479 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
| 480 | msg_pdbg("\nRoot Complex Register Block address = 0x%x\n", tmp); |
| 481 | |
| 482 | /* Map RCBA to virtual memory */ |
Stefan Tauner | 7fb5aa0 | 2013-08-14 15:48:44 +0000 | [diff] [blame] | 483 | rcrb = rphysmap("ICH RCRB", tmp, 0x4000); |
| 484 | if (rcrb == ERROR_PTR) |
| 485 | return 1; |
Ingo Feldschmid | dadc0a6 | 2011-09-07 19:18:25 +0000 | [diff] [blame] | 486 | |
| 487 | /* Test Boot BIOS Strap Status */ |
| 488 | bnt = mmio_readl(rcrb + 0x3410); |
| 489 | if (bnt & 0x02) { |
| 490 | /* If strapped to LPC, no SPI initialization is required */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 491 | internal_buses_supported = BUS_FWH; |
Ingo Feldschmid | dadc0a6 | 2011-09-07 19:18:25 +0000 | [diff] [blame] | 492 | return 0; |
| 493 | } |
| 494 | |
| 495 | /* This adds BUS_SPI */ |
Ingo Feldschmid | dadc0a6 | 2011-09-07 19:18:25 +0000 | [diff] [blame] | 496 | if (ich_init_spi(dev, tmp, rcrb, 7) != 0) { |
| 497 | if (!ret) |
| 498 | ret = ERROR_NONFATAL; |
| 499 | } |
| 500 | |
| 501 | return ret; |
| 502 | } |
| 503 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 504 | static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 505 | enum ich_chipset ich_generation) |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 506 | { |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 507 | int ret, ret_spi; |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 508 | uint8_t bbs, buc; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 509 | uint32_t tmp, gcs; |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 510 | void *rcrb; |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 511 | const char *const *straps_names; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 512 | |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 513 | static const char *const straps_names_EP80579[] = { "SPI", "reserved", "reserved", "LPC" }; |
| 514 | static const char *const straps_names_ich7_nm10[] = { "reserved", "SPI", "PCI", "LPC" }; |
| 515 | static const char *const straps_names_ich8910[] = { "SPI", "SPI", "PCI", "LPC" }; |
Helge Wagner | a0fce5f | 2012-07-24 16:33:55 +0000 | [diff] [blame] | 516 | static const char *const straps_names_pch567[] = { "LPC", "reserved", "PCI", "SPI" }; |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 517 | static const char *const straps_names_pch8[] = { "LPC", "reserved", "reserved", "SPI" }; |
| 518 | static const char *const straps_names_pch8_lp[] = { "SPI", "LPC", "unknown", "unknown" }; |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 519 | static const char *const straps_names_unknown[] = { "unknown", "unknown", "unknown", "unknown" }; |
| 520 | |
| 521 | switch (ich_generation) { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 522 | case CHIPSET_ICH7: |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 523 | /* EP80579 may need further changes, but this is the least |
| 524 | * intrusive way to get correct BOOT Strap printing without |
| 525 | * changing the rest of its code path). */ |
| 526 | if (strcmp(name, "EP80579") == 0) |
| 527 | straps_names = straps_names_EP80579; |
| 528 | else |
| 529 | straps_names = straps_names_ich7_nm10; |
| 530 | break; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 531 | case CHIPSET_ICH8: |
| 532 | case CHIPSET_ICH9: |
| 533 | case CHIPSET_ICH10: |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 534 | straps_names = straps_names_ich8910; |
| 535 | break; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 536 | case CHIPSET_5_SERIES_IBEX_PEAK: |
| 537 | case CHIPSET_6_SERIES_COUGAR_POINT: |
Helge Wagner | a0fce5f | 2012-07-24 16:33:55 +0000 | [diff] [blame] | 538 | case CHIPSET_7_SERIES_PANTHER_POINT: |
| 539 | straps_names = straps_names_pch567; |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 540 | break; |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 541 | case CHIPSET_8_SERIES_LYNX_POINT: |
| 542 | straps_names = straps_names_pch8; |
| 543 | break; |
| 544 | case CHIPSET_8_SERIES_LYNX_POINT_LP: |
| 545 | straps_names = straps_names_pch8_lp; |
| 546 | break; |
| 547 | case CHIPSET_8_SERIES_WELLSBURG: // FIXME: check datasheet |
| 548 | straps_names = straps_names_unknown; |
| 549 | break; |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 550 | default: |
| 551 | msg_gerr("%s: unknown ICH generation. Please report!\n", |
| 552 | __func__); |
| 553 | straps_names = straps_names_unknown; |
| 554 | break; |
| 555 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 556 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 557 | /* Enable Flash Writes */ |
| 558 | ret = enable_flash_ich_dc(dev, name); |
Tadas Slotkus | 0e3f1cf | 2011-09-06 18:49:31 +0000 | [diff] [blame] | 559 | if (ret == ERROR_FATAL) |
| 560 | return ret; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 561 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 562 | /* Get physical address of Root Complex Register Block */ |
| 563 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 564 | msg_pdbg("Root Complex Register Block address = 0x%x\n", tmp); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 565 | |
| 566 | /* Map RCBA to virtual memory */ |
Stefan Tauner | 7fb5aa0 | 2013-08-14 15:48:44 +0000 | [diff] [blame] | 567 | rcrb = rphysmap("ICH RCRB", tmp, 0x4000); |
| 568 | if (rcrb == ERROR_PTR) |
| 569 | return 1; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 570 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 571 | gcs = mmio_readl(rcrb + 0x3410); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 572 | msg_pdbg("GCS = 0x%x: ", gcs); |
| 573 | msg_pdbg("BIOS Interface Lock-Down: %sabled, ", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 574 | (gcs & 0x1) ? "en" : "dis"); |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 575 | |
| 576 | switch (ich_generation) { |
| 577 | case CHIPSET_8_SERIES_LYNX_POINT_LP: |
| 578 | case CHIPSET_8_SERIES_WELLSBURG: // FIXME: check datasheet |
| 579 | /* Lynx Point LP uses a single bit for GCS */ |
| 580 | bbs = (gcs >> 10) & 0x1; |
| 581 | break; |
| 582 | default: |
| 583 | /* Older chipsets use two bits for GCS */ |
| 584 | bbs = (gcs >> 10) & 0x3; |
| 585 | break; |
| 586 | } |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 587 | msg_pdbg("Boot BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 588 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 589 | buc = mmio_readb(rcrb + 0x3414); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 590 | msg_pdbg("Top Swap : %s\n", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 591 | (buc & 1) ? "enabled (A16 inverted)" : "not enabled"); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 592 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 593 | /* It seems the ICH7 does not support SPI and LPC chips at the same |
| 594 | * time. At least not with our current code. So we prevent searching |
| 595 | * on ICH7 when the southbridge is strapped to LPC |
| 596 | */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 597 | internal_buses_supported = BUS_FWH; |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 598 | if (ich_generation == CHIPSET_ICH7) { |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 599 | if (bbs == 0x03) { |
| 600 | /* If strapped to LPC, no further SPI initialization is |
| 601 | * required. */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 602 | return ret; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 603 | } else { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 604 | /* Disable LPC/FWH if strapped to PCI or SPI */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 605 | internal_buses_supported = BUS_NONE; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 606 | } |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 609 | /* This adds BUS_SPI */ |
Stefan Tauner | 50e7c60 | 2011-11-08 10:55:54 +0000 | [diff] [blame] | 610 | ret_spi = ich_init_spi(dev, tmp, rcrb, ich_generation); |
| 611 | if (ret_spi == ERROR_FATAL) |
| 612 | return ret_spi; |
| 613 | |
| 614 | if (ret || ret_spi) |
| 615 | ret = ERROR_NONFATAL; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 616 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 617 | return ret; |
| 618 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 619 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 620 | static int enable_flash_ich7(struct pci_dev *dev, const char *name) |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 621 | { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 622 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_ICH7); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 623 | } |
| 624 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 625 | static int enable_flash_ich8(struct pci_dev *dev, const char *name) |
| 626 | { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 627 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_ICH8); |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 628 | } |
| 629 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 630 | static int enable_flash_ich9(struct pci_dev *dev, const char *name) |
| 631 | { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 632 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_ICH9); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 635 | static int enable_flash_ich10(struct pci_dev *dev, const char *name) |
| 636 | { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 637 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_ICH10); |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 638 | } |
| 639 | |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 640 | /* Ibex Peak aka. 5 series & 3400 series */ |
| 641 | static int enable_flash_pch5(struct pci_dev *dev, const char *name) |
| 642 | { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 643 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_5_SERIES_IBEX_PEAK); |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | /* Cougar Point aka. 6 series & c200 series */ |
| 647 | static int enable_flash_pch6(struct pci_dev *dev, const char *name) |
| 648 | { |
Stefan Tauner | a8d838d | 2011-11-06 23:51:09 +0000 | [diff] [blame] | 649 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_6_SERIES_COUGAR_POINT); |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 650 | } |
| 651 | |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 652 | /* Panther Point aka. 7 series */ |
| 653 | static int enable_flash_pch7(struct pci_dev *dev, const char *name) |
| 654 | { |
| 655 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_7_SERIES_PANTHER_POINT); |
| 656 | } |
| 657 | |
| 658 | /* Lynx Point aka. 8 series */ |
| 659 | static int enable_flash_pch8(struct pci_dev *dev, const char *name) |
| 660 | { |
| 661 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_8_SERIES_LYNX_POINT); |
| 662 | } |
| 663 | |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 664 | /* Lynx Point aka. 8 series low-power */ |
| 665 | static int enable_flash_pch8_lp(struct pci_dev *dev, const char *name) |
| 666 | { |
| 667 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_8_SERIES_LYNX_POINT_LP); |
| 668 | } |
| 669 | |
| 670 | /* Wellsburg (for Haswell-EP Xeons) */ |
| 671 | static int enable_flash_pch8_wb(struct pci_dev *dev, const char *name) |
| 672 | { |
| 673 | return enable_flash_ich_dc_spi(dev, name, CHIPSET_8_SERIES_WELLSBURG); |
| 674 | } |
| 675 | |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 676 | static int via_no_byte_merge(struct pci_dev *dev, const char *name) |
| 677 | { |
| 678 | uint8_t val; |
| 679 | |
| 680 | val = pci_read_byte(dev, 0x71); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 681 | if (val & 0x40) { |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 682 | msg_pdbg("Disabling byte merging\n"); |
| 683 | val &= ~0x40; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 684 | rpci_write_byte(dev, 0x71, val); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 685 | } |
| 686 | return NOT_DONE_YET; /* need to find south bridge, too */ |
| 687 | } |
| 688 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 689 | static int enable_flash_vt823x(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 690 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 691 | uint8_t val; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 692 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 693 | /* Enable ROM decode range (1MB) FFC00000 - FFFFFFFF. */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 694 | rpci_write_byte(dev, 0x41, 0x7f); |
Bari Ari | 9477c4e | 2008-04-29 13:46:38 +0000 | [diff] [blame] | 695 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 696 | /* ROM write enable */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 697 | val = pci_read_byte(dev, 0x40); |
| 698 | val |= 0x10; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 699 | rpci_write_byte(dev, 0x40, val); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 700 | |
| 701 | if (pci_read_byte(dev, 0x40) != val) { |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 702 | msg_pwarn("\nWarning: Failed to enable flash write on \"%s\"\n", name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 703 | return -1; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 704 | } |
Luc Verhaegen | 6382b44 | 2007-03-02 22:16:38 +0000 | [diff] [blame] | 705 | |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 706 | if (dev->device_id == 0x3227) { /* VT8237/VT8237R */ |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 707 | /* All memory cycles, not just ROM ones, go to LPC. */ |
| 708 | val = pci_read_byte(dev, 0x59); |
| 709 | val &= ~0x80; |
| 710 | rpci_write_byte(dev, 0x59, val); |
Luc Verhaegen | 73d2119 | 2009-12-23 00:54:26 +0000 | [diff] [blame] | 711 | } |
| 712 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 713 | return 0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 714 | } |
| 715 | |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 716 | static int enable_flash_vt_vx(struct pci_dev *dev, const char *name) |
| 717 | { |
| 718 | struct pci_dev *south_north = pci_dev_find(0x1106, 0xa353); |
| 719 | if (south_north == NULL) { |
| 720 | msg_perr("Could not find South-North Module Interface Control device!\n"); |
| 721 | return ERROR_FATAL; |
| 722 | } |
| 723 | |
| 724 | msg_pdbg("Strapped to "); |
| 725 | if ((pci_read_byte(south_north, 0x56) & 0x01) == 0) { |
| 726 | msg_pdbg("LPC.\n"); |
| 727 | return enable_flash_vt823x(dev, name); |
| 728 | } |
| 729 | msg_pdbg("SPI.\n"); |
| 730 | |
| 731 | uint32_t mmio_base; |
| 732 | void *mmio_base_physmapped; |
| 733 | uint32_t spi_cntl; |
| 734 | #define SPI_CNTL_LEN 0x08 |
| 735 | uint32_t spi0_mm_base = 0; |
| 736 | switch(dev->device_id) { |
| 737 | case 0x8353: /* VX800/VX820 */ |
| 738 | spi0_mm_base = pci_read_long(dev, 0xbc) << 8; |
| 739 | break; |
| 740 | case 0x8409: /* VX855/VX875 */ |
| 741 | case 0x8410: /* VX900 */ |
| 742 | mmio_base = pci_read_long(dev, 0xbc) << 8; |
| 743 | mmio_base_physmapped = physmap("VIA VX MMIO register", mmio_base, SPI_CNTL_LEN); |
Stefan Tauner | 7fb5aa0 | 2013-08-14 15:48:44 +0000 | [diff] [blame] | 744 | if (mmio_base_physmapped == ERROR_PTR) |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 745 | return ERROR_FATAL; |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 746 | |
| 747 | /* Offset 0 - Bit 0 holds SPI Bus0 Enable Bit. */ |
| 748 | spi_cntl = mmio_readl(mmio_base_physmapped) + 0x00; |
| 749 | if ((spi_cntl & 0x01) == 0) { |
| 750 | msg_pdbg ("SPI Bus0 disabled!\n"); |
| 751 | physunmap(mmio_base_physmapped, SPI_CNTL_LEN); |
| 752 | return ERROR_FATAL; |
| 753 | } |
| 754 | /* Offset 1-3 has SPI Bus Memory Map Base Address: */ |
| 755 | spi0_mm_base = spi_cntl & 0xFFFFFF00; |
| 756 | |
| 757 | /* Offset 4 - Bit 0 holds SPI Bus1 Enable Bit. */ |
| 758 | spi_cntl = mmio_readl(mmio_base_physmapped) + 0x04; |
| 759 | if ((spi_cntl & 0x01) == 1) |
| 760 | msg_pdbg2("SPI Bus1 is enabled too.\n"); |
| 761 | |
| 762 | physunmap(mmio_base_physmapped, SPI_CNTL_LEN); |
| 763 | break; |
| 764 | default: |
| 765 | msg_perr("%s: Unsupported chipset %x:%x!\n", __func__, dev->vendor_id, dev->device_id); |
| 766 | return ERROR_FATAL; |
| 767 | } |
| 768 | |
| 769 | return via_init_spi(dev, spi0_mm_base); |
| 770 | } |
| 771 | |
| 772 | static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) |
| 773 | { |
| 774 | return via_init_spi(dev, pci_read_long(dev, 0xbc) << 8); |
| 775 | } |
| 776 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 777 | static int enable_flash_cs5530(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 778 | { |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 779 | uint8_t reg8; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 780 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 781 | #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */ |
| 782 | #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */ |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 783 | #define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */ |
| 784 | #define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 785 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 786 | #define LOWER_ROM_ADDRESS_RANGE (1 << 0) |
| 787 | #define ROM_WRITE_ENABLE (1 << 1) |
| 788 | #define UPPER_ROM_ADDRESS_RANGE (1 << 2) |
| 789 | #define BIOS_ROM_POSITIVE_DECODE (1 << 5) |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 790 | #define CS5530_ISA_MASTER (1 << 7) |
| 791 | #define CS5530_ENABLE_SA2320 (1 << 2) |
| 792 | #define CS5530_ENABLE_SA20 (1 << 6) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 793 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 794 | internal_buses_supported = BUS_PARALLEL; |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 795 | /* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and |
| 796 | * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB. |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 797 | * FIXME: Should we really touch the low mapping below 1 MB? Flashrom |
| 798 | * ignores that region completely. |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 799 | * Make the configured ROM areas writable. |
| 800 | */ |
| 801 | reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG); |
| 802 | reg8 |= LOWER_ROM_ADDRESS_RANGE; |
| 803 | reg8 |= UPPER_ROM_ADDRESS_RANGE; |
| 804 | reg8 |= ROM_WRITE_ENABLE; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 805 | rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 806 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 807 | /* Set positive decode on ROM. */ |
| 808 | reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2); |
| 809 | reg8 |= BIOS_ROM_POSITIVE_DECODE; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 810 | rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 811 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 812 | reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG); |
| 813 | if (reg8 & CS5530_ISA_MASTER) { |
| 814 | /* We have A0-A23 available. */ |
| 815 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 816 | } else { |
| 817 | reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG); |
| 818 | if (reg8 & CS5530_ENABLE_SA2320) { |
| 819 | /* We have A0-19, A20-A23 available. */ |
| 820 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 821 | } else if (reg8 & CS5530_ENABLE_SA20) { |
| 822 | /* We have A0-19, A20 available. */ |
| 823 | max_rom_decode.parallel = 2 * 1024 * 1024; |
| 824 | } else { |
| 825 | /* A20 and above are not active. */ |
| 826 | max_rom_decode.parallel = 1024 * 1024; |
| 827 | } |
| 828 | } |
| 829 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 830 | return 0; |
| 831 | } |
| 832 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 833 | /* |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 834 | * Geode systems write protect the BIOS via RCONFs (cache settings similar |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 835 | * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 836 | * |
| 837 | * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL. |
| 838 | * To enable write to NOR Boot flash for the benefit of systems that have such |
| 839 | * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select). |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 840 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 841 | static int enable_flash_cs5536(struct pci_dev *dev, const char *name) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 842 | { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 843 | #define MSR_RCONF_DEFAULT 0x1808 |
| 844 | #define MSR_NORF_CTL 0x51400018 |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 845 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 846 | msr_t msr; |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 847 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 848 | /* Geode only has a single core */ |
| 849 | if (setup_cpu_msr(0)) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 850 | return -1; |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 851 | |
| 852 | msr = rdmsr(MSR_RCONF_DEFAULT); |
| 853 | if ((msr.hi >> 24) != 0x22) { |
| 854 | msr.hi &= 0xfbffffff; |
| 855 | wrmsr(MSR_RCONF_DEFAULT, msr); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 856 | } |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 857 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 858 | msr = rdmsr(MSR_NORF_CTL); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 859 | /* Raise WE_CS3 bit. */ |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 860 | msr.lo |= 0x08; |
| 861 | wrmsr(MSR_NORF_CTL, msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 862 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 863 | cleanup_cpu_msr(); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 864 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 865 | #undef MSR_RCONF_DEFAULT |
| 866 | #undef MSR_NORF_CTL |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 867 | return 0; |
| 868 | } |
| 869 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 870 | static int enable_flash_sc1100(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 871 | { |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 872 | #define SC_REG 0x52 |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 873 | uint8_t new; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 874 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 875 | rpci_write_byte(dev, SC_REG, 0xee); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 876 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 877 | new = pci_read_byte(dev, SC_REG); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 878 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 879 | if (new != 0xee) { /* FIXME: share this with other code? */ |
| 880 | msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", SC_REG, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 881 | return -1; |
| 882 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 883 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 884 | return 0; |
| 885 | } |
| 886 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 887 | /* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 888 | static int enable_flash_amd8111(struct pci_dev *dev, const char *name) |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 889 | { |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 890 | #define AMD_MAPREG 0x43 |
| 891 | #define AMD_ENREG 0x40 |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 892 | uint8_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 893 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 894 | /* Enable decoding at 0xffb00000 to 0xffffffff. */ |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 895 | old = pci_read_byte(dev, AMD_MAPREG); |
Ollie Lho | d11f361 | 2004-12-07 17:19:04 +0000 | [diff] [blame] | 896 | new = old | 0xC0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 897 | if (new != old) { |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 898 | rpci_write_byte(dev, AMD_MAPREG, new); |
| 899 | if (pci_read_byte(dev, AMD_MAPREG) != new) { |
| 900 | msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", |
| 901 | AMD_MAPREG, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 902 | } |
| 903 | } |
| 904 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 905 | /* Enable 'ROM write' bit. */ |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 906 | old = pci_read_byte(dev, AMD_ENREG); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 907 | new = old | 0x01; |
| 908 | if (new == old) |
| 909 | return 0; |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 910 | rpci_write_byte(dev, AMD_ENREG, new); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 911 | |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 912 | if (pci_read_byte(dev, AMD_ENREG) != new) { |
| 913 | msg_pinfo("Setting register 0x%x to 0x%02x on %s failed (WARNING ONLY).\n", |
| 914 | AMD_ENREG, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 915 | return -1; |
| 916 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 917 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 918 | return 0; |
| 919 | } |
| 920 | |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 921 | static int enable_flash_sb600(struct pci_dev *dev, const char *name) |
| 922 | { |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 923 | uint32_t prot; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 924 | uint8_t reg; |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 925 | int ret; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 926 | |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 927 | /* Clear ROM protect 0-3. */ |
| 928 | for (reg = 0x50; reg < 0x60; reg += 4) { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 929 | prot = pci_read_long(dev, reg); |
| 930 | /* No protection flags for this region?*/ |
| 931 | if ((prot & 0x3) == 0) |
| 932 | continue; |
Mathias Krause | 9fbdc03 | 2011-01-01 10:54:09 +0000 | [diff] [blame] | 933 | msg_pinfo("SB600 %s%sprotected from 0x%08x to 0x%08x\n", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 934 | (prot & 0x1) ? "write " : "", |
| 935 | (prot & 0x2) ? "read " : "", |
| 936 | (prot & 0xfffff800), |
| 937 | (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff)); |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 938 | prot &= 0xfffffffc; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 939 | rpci_write_byte(dev, reg, prot); |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 940 | prot = pci_read_long(dev, reg); |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 941 | if (prot & 0x3) |
Mathias Krause | 9fbdc03 | 2011-01-01 10:54:09 +0000 | [diff] [blame] | 942 | msg_perr("SB600 %s%sunprotect failed from 0x%08x to 0x%08x\n", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 943 | (prot & 0x1) ? "write " : "", |
| 944 | (prot & 0x2) ? "read " : "", |
| 945 | (prot & 0xfffff800), |
| 946 | (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff)); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 947 | } |
| 948 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 949 | internal_buses_supported = BUS_LPC | BUS_FWH; |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 950 | |
| 951 | ret = sb600_probe_spi(dev); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 952 | |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 953 | /* Read ROM strap override register. */ |
| 954 | OUTB(0x8f, 0xcd6); |
| 955 | reg = INB(0xcd7); |
| 956 | reg &= 0x0e; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 957 | msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not "); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 958 | if (reg & 0x02) { |
| 959 | switch ((reg & 0x0c) >> 2) { |
| 960 | case 0x00: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 961 | msg_pdbg(": LPC"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 962 | break; |
| 963 | case 0x01: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 964 | msg_pdbg(": PCI"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 965 | break; |
| 966 | case 0x02: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 967 | msg_pdbg(": FWH"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 968 | break; |
| 969 | case 0x03: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 970 | msg_pdbg(": SPI"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 971 | break; |
| 972 | } |
| 973 | } |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 974 | msg_pdbg("\n"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 975 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 976 | /* Force enable SPI ROM in SB600 PM register. |
| 977 | * If we enable SPI ROM here, we have to disable it after we leave. |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 978 | * But how can we know which ROM we are going to handle? So we have |
| 979 | * to trade off. We only access LPC ROM if we boot via LPC ROM. And |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 980 | * only SPI ROM if we boot via SPI ROM. If you want to access SPI on |
| 981 | * boards with LPC straps, you have to use the code below. |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 982 | */ |
| 983 | /* |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 984 | OUTB(0x8f, 0xcd6); |
| 985 | OUTB(0x0e, 0xcd7); |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 986 | */ |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 987 | |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 988 | return ret; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 989 | } |
| 990 | |
Stefan Tauner | b66ba1e | 2012-09-04 01:49:49 +0000 | [diff] [blame] | 991 | /* sets bit 0 in 0x6d */ |
| 992 | static int enable_flash_nvidia_common(struct pci_dev *dev, const char *name) |
| 993 | { |
| 994 | uint8_t old, new; |
| 995 | |
| 996 | old = pci_read_byte(dev, 0x6d); |
| 997 | new = old | 0x01; |
| 998 | if (new == old) |
| 999 | return 0; |
| 1000 | |
| 1001 | rpci_write_byte(dev, 0x6d, new); |
| 1002 | if (pci_read_byte(dev, 0x6d) != new) { |
| 1003 | msg_pinfo("Setting register 0x6d to 0x%02x on %s failed.\n", new, name); |
| 1004 | return 1; |
| 1005 | } |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 1009 | static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name) |
| 1010 | { |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1011 | rpci_write_byte(dev, 0x92, 0); |
Stefan Tauner | b66ba1e | 2012-09-04 01:49:49 +0000 | [diff] [blame] | 1012 | if (enable_flash_nvidia_common(dev, name)) |
| 1013 | return ERROR_NONFATAL; |
| 1014 | else |
| 1015 | return 0; |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1018 | static int enable_flash_ck804(struct pci_dev *dev, const char *name) |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 1019 | { |
Jonathan Kollasch | c819000 | 2012-09-04 03:55:04 +0000 | [diff] [blame] | 1020 | uint32_t segctrl; |
| 1021 | uint8_t reg, old, new; |
| 1022 | unsigned int err = 0; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 1023 | |
Jonathan Kollasch | c819000 | 2012-09-04 03:55:04 +0000 | [diff] [blame] | 1024 | /* 0x8A is special: it is a single byte and only one nibble is touched. */ |
| 1025 | reg = 0x8A; |
| 1026 | segctrl = pci_read_byte(dev, reg); |
| 1027 | if ((segctrl & 0x3) != 0x0) { |
| 1028 | if ((segctrl & 0xC) != 0x0) { |
| 1029 | msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg); |
| 1030 | err++; |
| 1031 | } else { |
| 1032 | msg_pdbg("Unlocking protection in register 0x%02x... ", reg); |
| 1033 | rpci_write_byte(dev, reg, segctrl & 0xF0); |
| 1034 | |
| 1035 | segctrl = pci_read_byte(dev, reg); |
| 1036 | if ((segctrl & 0x3) != 0x0) { |
| 1037 | msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%x).\n", |
| 1038 | reg, segctrl); |
| 1039 | err++; |
| 1040 | } else |
| 1041 | msg_pdbg("OK\n"); |
| 1042 | } |
Jonathan Kollasch | 9ce498e | 2011-08-06 12:45:21 +0000 | [diff] [blame] | 1043 | } |
| 1044 | |
Jonathan Kollasch | c819000 | 2012-09-04 03:55:04 +0000 | [diff] [blame] | 1045 | for (reg = 0x8C; reg <= 0x94; reg += 4) { |
| 1046 | segctrl = pci_read_long(dev, reg); |
| 1047 | if ((segctrl & 0x33333333) == 0x00000000) { |
| 1048 | /* reads and writes are unlocked */ |
| 1049 | continue; |
| 1050 | } |
| 1051 | if ((segctrl & 0xCCCCCCCC) != 0x00000000) { |
| 1052 | msg_pinfo("Can not unlock existing protection in register 0x%02x.\n", reg); |
| 1053 | err++; |
| 1054 | continue; |
| 1055 | } |
| 1056 | msg_pdbg("Unlocking protection in register 0x%02x... ", reg); |
| 1057 | rpci_write_long(dev, reg, 0x00000000); |
| 1058 | |
| 1059 | segctrl = pci_read_long(dev, reg); |
| 1060 | if ((segctrl & 0x33333333) != 0x00000000) { |
| 1061 | msg_pinfo("Could not unlock protection in register 0x%02x (new value: 0x%08x).\n", |
| 1062 | reg, segctrl); |
| 1063 | err++; |
| 1064 | } else |
| 1065 | msg_pdbg("OK\n"); |
| 1066 | } |
| 1067 | |
| 1068 | if (err > 0) { |
| 1069 | msg_pinfo("%d locks could not be disabled, disabling writes (reads may also fail).\n", err); |
| 1070 | programmer_may_write = 0; |
| 1071 | } |
| 1072 | |
| 1073 | reg = 0x88; |
| 1074 | old = pci_read_byte(dev, reg); |
| 1075 | new = old | 0xC0; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1076 | if (new != old) { |
Jonathan Kollasch | c819000 | 2012-09-04 03:55:04 +0000 | [diff] [blame] | 1077 | rpci_write_byte(dev, reg, new); |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 1078 | if (pci_read_byte(dev, reg) != new) { /* FIXME: share this with other code? */ |
| 1079 | msg_pinfo("Setting register 0x%02x to 0x%02x on %s failed.\n", reg, new, name); |
Jonathan Kollasch | c819000 | 2012-09-04 03:55:04 +0000 | [diff] [blame] | 1080 | err++; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1081 | } |
| 1082 | } |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 1083 | |
Stefan Tauner | b66ba1e | 2012-09-04 01:49:49 +0000 | [diff] [blame] | 1084 | if (enable_flash_nvidia_common(dev, name)) |
Jonathan Kollasch | c819000 | 2012-09-04 03:55:04 +0000 | [diff] [blame] | 1085 | err++; |
| 1086 | |
| 1087 | if (err > 0) |
Stefan Tauner | b66ba1e | 2012-09-04 01:49:49 +0000 | [diff] [blame] | 1088 | return ERROR_NONFATAL; |
| 1089 | else |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1090 | return 0; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 1091 | } |
| 1092 | |
Joshua Roys | 85835d8 | 2010-09-15 14:47:56 +0000 | [diff] [blame] | 1093 | static int enable_flash_osb4(struct pci_dev *dev, const char *name) |
| 1094 | { |
| 1095 | uint8_t tmp; |
| 1096 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 1097 | internal_buses_supported = BUS_PARALLEL; |
Joshua Roys | 85835d8 | 2010-09-15 14:47:56 +0000 | [diff] [blame] | 1098 | |
| 1099 | tmp = INB(0xc06); |
| 1100 | tmp |= 0x1; |
| 1101 | OUTB(tmp, 0xc06); |
| 1102 | |
| 1103 | tmp = INB(0xc6f); |
| 1104 | tmp |= 0x40; |
| 1105 | OUTB(tmp, 0xc6f); |
| 1106 | |
| 1107 | return 0; |
| 1108 | } |
| 1109 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1110 | /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */ |
| 1111 | static int enable_flash_sb400(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1112 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1113 | uint8_t tmp; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1114 | struct pci_dev *smbusdev; |
| 1115 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1116 | /* Look for the SMBus device. */ |
Carl-Daniel Hailfinger | f6e3efb | 2009-05-06 00:35:31 +0000 | [diff] [blame] | 1117 | smbusdev = pci_dev_find(0x1002, 0x4372); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1118 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1119 | if (!smbusdev) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1120 | msg_perr("ERROR: SMBus device not found. Aborting.\n"); |
Tadas Slotkus | 0e3f1cf | 2011-09-06 18:49:31 +0000 | [diff] [blame] | 1121 | return ERROR_FATAL; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1122 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1123 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1124 | /* Enable some SMBus stuff. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1125 | tmp = pci_read_byte(smbusdev, 0x79); |
| 1126 | tmp |= 0x01; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1127 | rpci_write_byte(smbusdev, 0x79, tmp); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1128 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1129 | /* Change southbridge. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1130 | tmp = pci_read_byte(dev, 0x48); |
| 1131 | tmp |= 0x21; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1132 | rpci_write_byte(dev, 0x48, tmp); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1133 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1134 | /* Now become a bit silly. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 1135 | tmp = INB(0xc6f); |
| 1136 | OUTB(tmp, 0xeb); |
| 1137 | OUTB(tmp, 0xeb); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1138 | tmp |= 0x40; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 1139 | OUTB(tmp, 0xc6f); |
| 1140 | OUTB(tmp, 0xeb); |
| 1141 | OUTB(tmp, 0xeb); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1142 | |
| 1143 | return 0; |
| 1144 | } |
| 1145 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1146 | static int enable_flash_mcp55(struct pci_dev *dev, const char *name) |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 1147 | { |
Stefan Tauner | b66ba1e | 2012-09-04 01:49:49 +0000 | [diff] [blame] | 1148 | uint8_t val; |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 1149 | uint16_t wordval; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1150 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1151 | /* Set the 0-16 MB enable bits. */ |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 1152 | val = pci_read_byte(dev, 0x88); |
| 1153 | val |= 0xff; /* 256K */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1154 | rpci_write_byte(dev, 0x88, val); |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 1155 | val = pci_read_byte(dev, 0x8c); |
| 1156 | val |= 0xff; /* 1M */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1157 | rpci_write_byte(dev, 0x8c, val); |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 1158 | wordval = pci_read_word(dev, 0x90); |
| 1159 | wordval |= 0x7fff; /* 16M */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1160 | rpci_write_word(dev, 0x90, wordval); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1161 | |
Stefan Tauner | b66ba1e | 2012-09-04 01:49:49 +0000 | [diff] [blame] | 1162 | if (enable_flash_nvidia_common(dev, name)) |
| 1163 | return ERROR_NONFATAL; |
| 1164 | else |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1165 | return 0; |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 1168 | /* |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1169 | * The MCP6x/MCP7x code is based on cleanroom reverse engineering. |
| 1170 | * It is assumed that LPC chips need the MCP55 code and SPI chips need the |
| 1171 | * code provided in enable_flash_mcp6x_7x_common. |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1172 | */ |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1173 | static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name) |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1174 | { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1175 | int ret = 0, want_spi = 0; |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1176 | uint8_t val; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1177 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1178 | msg_pinfo("This chipset is not really supported yet. Guesswork...\n"); |
| 1179 | |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1180 | /* dev is the ISA bridge. No idea what the stuff below does. */ |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1181 | val = pci_read_byte(dev, 0x8a); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1182 | msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 " |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1183 | "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1); |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1184 | |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1185 | switch ((val >> 5) & 0x3) { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1186 | case 0x0: |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1187 | ret = enable_flash_mcp55(dev, name); |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 1188 | internal_buses_supported = BUS_LPC; |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1189 | msg_pdbg("Flash bus type is LPC\n"); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1190 | break; |
| 1191 | case 0x2: |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1192 | want_spi = 1; |
| 1193 | /* SPI is added in mcp6x_spi_init if it works. |
| 1194 | * Do we really want to disable LPC in this case? |
| 1195 | */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 1196 | internal_buses_supported = BUS_NONE; |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1197 | msg_pdbg("Flash bus type is SPI\n"); |
Stefan Tauner | 25b5a59 | 2011-07-13 20:48:54 +0000 | [diff] [blame] | 1198 | msg_pinfo("SPI on this chipset is WIP. Please report any " |
| 1199 | "success or failure by mailing us the verbose " |
| 1200 | "output to flashrom@flashrom.org, thanks!\n"); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1201 | break; |
| 1202 | default: |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1203 | /* Should not happen. */ |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 1204 | internal_buses_supported = BUS_NONE; |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1205 | msg_pdbg("Flash bus type is unknown (none)\n"); |
| 1206 | msg_pinfo("Something went wrong with bus type detection.\n"); |
| 1207 | goto out_msg; |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1208 | break; |
| 1209 | } |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1210 | |
| 1211 | /* Force enable SPI and disable LPC? Not a good idea. */ |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1212 | #if 0 |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1213 | val |= (1 << 6); |
| 1214 | val &= ~(1 << 5); |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1215 | rpci_write_byte(dev, 0x8a, val); |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1216 | #endif |
| 1217 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1218 | if (mcp6x_spi_init(want_spi)) |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1219 | ret = 1; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1220 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1221 | out_msg: |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1222 | msg_pinfo("Please send the output of \"flashrom -V\" to " |
Paul Menzel | ab6328f | 2010-10-08 11:03:02 +0000 | [diff] [blame] | 1223 | "flashrom@flashrom.org with\n" |
| 1224 | "your board name: flashrom -V as the subject to help us " |
| 1225 | "finish support for your\n" |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1226 | "chipset. Thanks.\n"); |
| 1227 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1228 | return ret; |
| 1229 | } |
| 1230 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1231 | static int enable_flash_ht1000(struct pci_dev *dev, const char *name) |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1232 | { |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1233 | uint8_t val; |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1234 | |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 1235 | /* Set the 4MB enable bit. */ |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1236 | val = pci_read_byte(dev, 0x41); |
| 1237 | val |= 0x0e; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1238 | rpci_write_byte(dev, 0x41, val); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1239 | |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1240 | val = pci_read_byte(dev, 0x43); |
| 1241 | val |= (1 << 4); |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 1242 | rpci_write_byte(dev, 0x43, val); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1243 | |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1244 | return 0; |
| 1245 | } |
| 1246 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 1247 | /* |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1248 | * Usually on the x86 architectures (and on other PC-like platforms like some |
| 1249 | * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD |
| 1250 | * Elan SC520 only a small piece of the system flash is mapped there, but the |
| 1251 | * complete flash is mapped somewhere below 1G. The position can be determined |
| 1252 | * by the BOOTCS PAR register. |
| 1253 | */ |
| 1254 | static int get_flashbase_sc520(struct pci_dev *dev, const char *name) |
| 1255 | { |
| 1256 | int i, bootcs_found = 0; |
| 1257 | uint32_t parx = 0; |
| 1258 | void *mmcr; |
| 1259 | |
| 1260 | /* 1. Map MMCR */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 1261 | mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1262 | |
| 1263 | /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for |
| 1264 | * BOOTCS region (PARx[31:29] = 100b)e |
| 1265 | */ |
| 1266 | for (i = 0x88; i <= 0xc4; i += 4) { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 1267 | parx = mmio_readl(mmcr + i); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1268 | if ((parx >> 29) == 4) { |
| 1269 | bootcs_found = 1; |
| 1270 | break; /* BOOTCS found */ |
| 1271 | } |
| 1272 | } |
| 1273 | |
| 1274 | /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0] |
| 1275 | * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0] |
| 1276 | */ |
| 1277 | if (bootcs_found) { |
| 1278 | if (parx & (1 << 25)) { |
| 1279 | parx &= (1 << 14) - 1; /* Mask [13:0] */ |
| 1280 | flashbase = parx << 16; |
| 1281 | } else { |
| 1282 | parx &= (1 << 18) - 1; /* Mask [17:0] */ |
| 1283 | flashbase = parx << 12; |
| 1284 | } |
| 1285 | } else { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1286 | msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. " |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 1287 | "Assuming flash at 4G.\n"); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1288 | } |
| 1289 | |
| 1290 | /* 4. Clean up */ |
Carl-Daniel Hailfinger | be72681 | 2009-08-09 12:44:08 +0000 | [diff] [blame] | 1291 | physunmap(mmcr, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1292 | return 0; |
| 1293 | } |
| 1294 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1295 | #endif |
| 1296 | |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1297 | /* Please keep this list numerically sorted by vendor/device ID. */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1298 | const struct penable chipset_enables[] = { |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1299 | #if defined(__i386__) || defined(__x86_64__) |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1300 | {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1301 | {0x1002, 0x438d, OK, "AMD", "SB600", enable_flash_sb600}, |
Paul Menzel | ac427b2 | 2012-02-16 21:07:07 +0000 | [diff] [blame] | 1302 | {0x1002, 0x439d, OK, "AMD", "SB7x0/SB8x0/SB9x0", enable_flash_sb600}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1303 | {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1304 | {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536}, |
| 1305 | {0x1022, 0x2090, OK, "AMD", "CS5536", enable_flash_cs5536}, |
| 1306 | {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520}, |
| 1307 | {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111}, |
| 1308 | {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111}, |
Stefan Tauner | 463dd69 | 2013-08-08 12:00:19 +0000 | [diff] [blame] | 1309 | {0x1022, 0x780e, OK, "AMD", "FCH", enable_flash_sb600}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1310 | {0x1039, 0x0406, NT, "SiS", "501/5101/5501", enable_flash_sis501}, |
| 1311 | {0x1039, 0x0496, NT, "SiS", "85C496+497", enable_flash_sis85c496}, |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 1312 | {0x1039, 0x0530, OK, "SiS", "530", enable_flash_sis530}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1313 | {0x1039, 0x0540, NT, "SiS", "540", enable_flash_sis540}, |
| 1314 | {0x1039, 0x0620, NT, "SiS", "620", enable_flash_sis530}, |
| 1315 | {0x1039, 0x0630, NT, "SiS", "630", enable_flash_sis540}, |
| 1316 | {0x1039, 0x0635, NT, "SiS", "635", enable_flash_sis540}, |
| 1317 | {0x1039, 0x0640, NT, "SiS", "640", enable_flash_sis540}, |
| 1318 | {0x1039, 0x0645, NT, "SiS", "645", enable_flash_sis540}, |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 1319 | {0x1039, 0x0646, OK, "SiS", "645DX", enable_flash_sis540}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1320 | {0x1039, 0x0648, NT, "SiS", "648", enable_flash_sis540}, |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 1321 | {0x1039, 0x0650, OK, "SiS", "650", enable_flash_sis540}, |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 1322 | {0x1039, 0x0651, OK, "SiS", "651", enable_flash_sis540}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1323 | {0x1039, 0x0655, NT, "SiS", "655", enable_flash_sis540}, |
| 1324 | {0x1039, 0x0661, OK, "SiS", "661", enable_flash_sis540}, |
Paul Menzel | ac427b2 | 2012-02-16 21:07:07 +0000 | [diff] [blame] | 1325 | {0x1039, 0x0730, OK, "SiS", "730", enable_flash_sis540}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1326 | {0x1039, 0x0733, NT, "SiS", "733", enable_flash_sis540}, |
| 1327 | {0x1039, 0x0735, OK, "SiS", "735", enable_flash_sis540}, |
| 1328 | {0x1039, 0x0740, NT, "SiS", "740", enable_flash_sis540}, |
| 1329 | {0x1039, 0x0741, OK, "SiS", "741", enable_flash_sis540}, |
| 1330 | {0x1039, 0x0745, OK, "SiS", "745", enable_flash_sis540}, |
| 1331 | {0x1039, 0x0746, NT, "SiS", "746", enable_flash_sis540}, |
| 1332 | {0x1039, 0x0748, NT, "SiS", "748", enable_flash_sis540}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1333 | {0x1039, 0x0755, OK, "SiS", "755", enable_flash_sis540}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1334 | {0x1039, 0x5511, NT, "SiS", "5511", enable_flash_sis5511}, |
| 1335 | {0x1039, 0x5571, NT, "SiS", "5571", enable_flash_sis530}, |
| 1336 | {0x1039, 0x5591, NT, "SiS", "5591/5592", enable_flash_sis530}, |
| 1337 | {0x1039, 0x5596, NT, "SiS", "5596", enable_flash_sis5511}, |
| 1338 | {0x1039, 0x5597, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530}, |
| 1339 | {0x1039, 0x5600, NT, "SiS", "600", enable_flash_sis530}, |
| 1340 | {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1341 | {0x10b9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533}, |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 1342 | {0x10de, 0x0030, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1343 | {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */ |
| 1344 | {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */ |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 1345 | {0x10de, 0x0060, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2}, |
| 1346 | {0x10de, 0x00e0, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 1347 | /* Slave, should not be here, to fix known bug for A01. */ |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1348 | {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804}, |
Stefan Tauner | a9cbbac | 2011-08-07 13:17:20 +0000 | [diff] [blame] | 1349 | {0x10de, 0x0260, OK, "NVIDIA", "MCP51", enable_flash_ck804}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1350 | {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1351 | {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1352 | {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1353 | {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/ |
Carl-Daniel Hailfinger | 33d7b6a | 2010-05-22 07:27:16 +0000 | [diff] [blame] | 1354 | /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to |
| 1355 | * the flash chip. Instead, 10de:0364 is connected to the flash chip. |
| 1356 | * Until we have PCI device class matching or some fallback mechanism, |
| 1357 | * this is needed to get flashrom working on Tyan S2915 and maybe other |
| 1358 | * dual-MCP55 boards. |
| 1359 | */ |
| 1360 | #if 0 |
| 1361 | {0x10de, 0x0361, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1362 | #endif |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1363 | {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1364 | {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1365 | {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1366 | {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1367 | {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1368 | {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */ |
Paul Menzel | ac427b2 | 2012-02-16 21:07:07 +0000 | [diff] [blame] | 1369 | {0x10de, 0x03e0, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 1370 | {0x10de, 0x03e1, OK, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1371 | {0x10de, 0x03e3, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1372 | {0x10de, 0x0440, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1373 | {0x10de, 0x0441, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1374 | {0x10de, 0x0442, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1375 | {0x10de, 0x0443, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1376 | {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x}, |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 1377 | {0x10de, 0x075c, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x}, |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 1378 | {0x10de, 0x075d, OK, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x}, |
Paul Menzel | ac427b2 | 2012-02-16 21:07:07 +0000 | [diff] [blame] | 1379 | {0x10de, 0x07d7, OK, "NVIDIA", "MCP73", enable_flash_mcp6x_7x}, |
| 1380 | {0x10de, 0x0aac, OK, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1381 | {0x10de, 0x0aad, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1382 | {0x10de, 0x0aae, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1383 | {0x10de, 0x0aaf, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 1384 | {0x10de, 0x0d80, NT, "NVIDIA", "MCP89", enable_flash_mcp6x_7x}, |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1385 | /* VIA northbridges */ |
| 1386 | {0x1106, 0x0585, NT, "VIA", "VT82C585VPX", via_no_byte_merge}, |
| 1387 | {0x1106, 0x0595, NT, "VIA", "VT82C595", via_no_byte_merge}, |
| 1388 | {0x1106, 0x0597, NT, "VIA", "VT82C597", via_no_byte_merge}, |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1389 | {0x1106, 0x0601, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge}, |
Paul Menzel | ac427b2 | 2012-02-16 21:07:07 +0000 | [diff] [blame] | 1390 | {0x1106, 0x0691, OK, "VIA", "VT82C69x", via_no_byte_merge}, |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1391 | {0x1106, 0x8601, NT, "VIA", "VT8601T", via_no_byte_merge}, |
| 1392 | /* VIA southbridges */ |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1393 | {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111}, |
| 1394 | {0x1106, 0x0596, OK, "VIA", "VT82C596", enable_flash_amd8111}, |
Paul Menzel | ac427b2 | 2012-02-16 21:07:07 +0000 | [diff] [blame] | 1395 | {0x1106, 0x0686, OK, "VIA", "VT82C686A/B", enable_flash_amd8111}, |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 1396 | {0x1106, 0x3074, OK, "VIA", "VT8233", enable_flash_vt823x}, |
Raúl Soriano | cd8404d | 2009-12-23 21:29:18 +0000 | [diff] [blame] | 1397 | {0x1106, 0x3147, OK, "VIA", "VT8233A", enable_flash_vt823x}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1398 | {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x}, |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 1399 | {0x1106, 0x3227, OK, "VIA", "VT8237(R)", enable_flash_vt823x}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1400 | {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x}, |
| 1401 | {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1402 | {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x}, |
| 1403 | {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x}, |
Helge Wagner | dd73d83 | 2012-08-24 23:03:46 +0000 | [diff] [blame] | 1404 | {0x1106, 0x8353, NT, "VIA", "VX800/VX820", enable_flash_vt_vx}, |
| 1405 | {0x1106, 0x8409, NT, "VIA", "VX855/VX875", enable_flash_vt_vx}, |
| 1406 | {0x1106, 0x8410, NT, "VIA", "VX900", enable_flash_vt_vx}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1407 | {0x1166, 0x0200, OK, "Broadcom", "OSB4", enable_flash_osb4}, |
| 1408 | {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000}, |
Rudolf Marek | 23907d8 | 2012-02-07 21:29:48 +0000 | [diff] [blame] | 1409 | {0x17f3, 0x6030, OK, "RDC", "R8610/R3210", enable_flash_rdc_r8610}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1410 | {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4}, |
| 1411 | {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4}, |
Paul Menzel | 018d482 | 2011-10-21 12:33:07 +0000 | [diff] [blame] | 1412 | {0x8086, 0x1c44, OK, "Intel", "Z68", enable_flash_pch6}, |
| 1413 | {0x8086, 0x1c46, OK, "Intel", "P67", enable_flash_pch6}, |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 1414 | {0x8086, 0x1c47, NT, "Intel", "UM67", enable_flash_pch6}, |
| 1415 | {0x8086, 0x1c49, NT, "Intel", "HM65", enable_flash_pch6}, |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 1416 | {0x8086, 0x1c4a, OK, "Intel", "H67", enable_flash_pch6}, |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 1417 | {0x8086, 0x1c4b, NT, "Intel", "HM67", enable_flash_pch6}, |
| 1418 | {0x8086, 0x1c4c, NT, "Intel", "Q65", enable_flash_pch6}, |
| 1419 | {0x8086, 0x1c4d, NT, "Intel", "QS67", enable_flash_pch6}, |
| 1420 | {0x8086, 0x1c4e, NT, "Intel", "Q67", enable_flash_pch6}, |
| 1421 | {0x8086, 0x1c4f, NT, "Intel", "QM67", enable_flash_pch6}, |
| 1422 | {0x8086, 0x1c50, NT, "Intel", "B65", enable_flash_pch6}, |
| 1423 | {0x8086, 0x1c52, NT, "Intel", "C202", enable_flash_pch6}, |
| 1424 | {0x8086, 0x1c54, NT, "Intel", "C204", enable_flash_pch6}, |
| 1425 | {0x8086, 0x1c56, NT, "Intel", "C206", enable_flash_pch6}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1426 | {0x8086, 0x1c5c, OK, "Intel", "H61", enable_flash_pch6}, |
Paul Menzel | ac427b2 | 2012-02-16 21:07:07 +0000 | [diff] [blame] | 1427 | {0x8086, 0x1d40, OK, "Intel", "X79", enable_flash_pch6}, |
Stefan Tauner | eb58257 | 2012-09-21 12:52:50 +0000 | [diff] [blame] | 1428 | {0x8086, 0x1d41, OK, "Intel", "X79", enable_flash_pch6}, |
Stefan Tauner | d7d423b | 2012-10-20 09:13:16 +0000 | [diff] [blame] | 1429 | {0x8086, 0x1e44, OK, "Intel", "Z77", enable_flash_pch7}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1430 | {0x8086, 0x1e46, NT, "Intel", "Z75", enable_flash_pch7}, |
Stefan Tauner | eb58257 | 2012-09-21 12:52:50 +0000 | [diff] [blame] | 1431 | {0x8086, 0x1e47, NT, "Intel", "Q77", enable_flash_pch7}, |
| 1432 | {0x8086, 0x1e48, NT, "Intel", "Q75", enable_flash_pch7}, |
Stefan Tauner | 0554ca5 | 2013-07-25 22:54:25 +0000 | [diff] [blame] | 1433 | {0x8086, 0x1e49, OK, "Intel", "B75", enable_flash_pch7}, |
| 1434 | {0x8086, 0x1e4a, OK, "Intel", "H77", enable_flash_pch7}, |
Stefan Tauner | eb58257 | 2012-09-21 12:52:50 +0000 | [diff] [blame] | 1435 | {0x8086, 0x1e53, NT, "Intel", "C216", enable_flash_pch7}, |
Helge Wagner | a0fce5f | 2012-07-24 16:33:55 +0000 | [diff] [blame] | 1436 | {0x8086, 0x1e55, OK, "Intel", "QM77", enable_flash_pch7}, |
Stefan Tauner | eb58257 | 2012-09-21 12:52:50 +0000 | [diff] [blame] | 1437 | {0x8086, 0x1e56, NT, "Intel", "QS77", enable_flash_pch7}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1438 | {0x8086, 0x1e57, NT, "Intel", "HM77", enable_flash_pch7}, |
| 1439 | {0x8086, 0x1e58, NT, "Intel", "UM77", enable_flash_pch7}, |
| 1440 | {0x8086, 0x1e59, NT, "Intel", "HM76", enable_flash_pch7}, |
| 1441 | {0x8086, 0x1e5d, NT, "Intel", "HM75", enable_flash_pch7}, |
| 1442 | {0x8086, 0x1e5e, NT, "Intel", "HM70", enable_flash_pch7}, |
Stefan Tauner | eb58257 | 2012-09-21 12:52:50 +0000 | [diff] [blame] | 1443 | {0x8086, 0x1e5f, NT, "Intel", "NM70", enable_flash_pch7}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1444 | {0x8086, 0x2310, NT, "Intel", "DH89xxCC", enable_flash_pch7}, |
Stefan Tauner | dbac46c | 2013-08-13 22:10:41 +0000 | [diff] [blame] | 1445 | {0x8086, 0x2390, NT, "Intel", "Coleto Creek", enable_flash_pch7}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1446 | {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e}, |
| 1447 | {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e}, |
| 1448 | {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e}, |
| 1449 | {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1450 | {0x8086, 0x2450, NT, "Intel", "C-ICH", enable_flash_ich_4e}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1451 | {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e}, |
| 1452 | {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e}, |
| 1453 | {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e}, |
| 1454 | {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e}, |
| 1455 | {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e}, |
| 1456 | {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e}, |
| 1457 | {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc}, |
| 1458 | {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1459 | {0x8086, 0x2642, NT, "Intel", "ICH6W/ICH6RW", enable_flash_ich_dc}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1460 | {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc}, |
| 1461 | {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7}, |
| 1462 | {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7}, |
| 1463 | {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7}, |
| 1464 | {0x8086, 0x27bc, OK, "Intel", "NM10", enable_flash_ich7}, |
| 1465 | {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7}, |
| 1466 | {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8}, |
| 1467 | {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8}, |
| 1468 | {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8}, |
| 1469 | {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8}, |
| 1470 | {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8}, |
| 1471 | {0x8086, 0x2910, OK, "Intel", "ICH9 Engineering Sample", enable_flash_ich9}, |
| 1472 | {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9}, |
| 1473 | {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9}, |
| 1474 | {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9}, |
| 1475 | {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9}, |
| 1476 | {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9}, |
| 1477 | {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1478 | {0x8086, 0x3a10, NT, "Intel", "ICH10R Engineering Sample", enable_flash_ich10}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1479 | {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10}, |
| 1480 | {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10}, |
| 1481 | {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10}, |
| 1482 | {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1483 | {0x8086, 0x3a1e, NT, "Intel", "ICH10 Engineering Sample", enable_flash_ich10}, |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 1484 | {0x8086, 0x3b00, NT, "Intel", "3400 Desktop", enable_flash_pch5}, |
| 1485 | {0x8086, 0x3b01, NT, "Intel", "3400 Mobile", enable_flash_pch5}, |
| 1486 | {0x8086, 0x3b02, NT, "Intel", "P55", enable_flash_pch5}, |
| 1487 | {0x8086, 0x3b03, NT, "Intel", "PM55", enable_flash_pch5}, |
Sylvain "ythier" Hitier | 3093f8f | 2011-09-03 11:22:27 +0000 | [diff] [blame] | 1488 | {0x8086, 0x3b06, OK, "Intel", "H55", enable_flash_pch5}, |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 1489 | {0x8086, 0x3b07, OK, "Intel", "QM57", enable_flash_pch5}, |
| 1490 | {0x8086, 0x3b08, NT, "Intel", "H57", enable_flash_pch5}, |
| 1491 | {0x8086, 0x3b09, NT, "Intel", "HM55", enable_flash_pch5}, |
| 1492 | {0x8086, 0x3b0a, NT, "Intel", "Q57", enable_flash_pch5}, |
| 1493 | {0x8086, 0x3b0b, NT, "Intel", "HM57", enable_flash_pch5}, |
| 1494 | {0x8086, 0x3b0d, NT, "Intel", "3400 Mobile SFF", enable_flash_pch5}, |
| 1495 | {0x8086, 0x3b0e, NT, "Intel", "B55", enable_flash_pch5}, |
| 1496 | {0x8086, 0x3b0f, OK, "Intel", "QS57", enable_flash_pch5}, |
| 1497 | {0x8086, 0x3b12, NT, "Intel", "3400", enable_flash_pch5}, |
Stefan Tauner | d94d25d | 2012-07-28 03:17:15 +0000 | [diff] [blame] | 1498 | {0x8086, 0x3b14, OK, "Intel", "3420", enable_flash_pch5}, |
Stefan Tauner | bd0c70a | 2011-08-27 21:19:56 +0000 | [diff] [blame] | 1499 | {0x8086, 0x3b16, NT, "Intel", "3450", enable_flash_pch5}, |
| 1500 | {0x8086, 0x3b1e, NT, "Intel", "B55", enable_flash_pch5}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1501 | {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7}, |
| 1502 | {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4}, |
| 1503 | {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4}, |
| 1504 | {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1505 | {0x8086, 0x8119, OK, "Intel", "SCH Poulsbo", enable_flash_poulsbo}, |
Ingo Feldschmid | dadc0a6 | 2011-09-07 19:18:25 +0000 | [diff] [blame] | 1506 | {0x8086, 0x8186, OK, "Intel", "Atom E6xx(T)/Tunnel Creek", enable_flash_tunnelcreek}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1507 | {0x8086, 0x8c40, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1508 | {0x8086, 0x8c41, NT, "Intel", "Lynx Point Mobile Engineering Sample", enable_flash_pch8}, |
| 1509 | {0x8086, 0x8c42, NT, "Intel", "Lynx Point Desktop Engineering Sample", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1510 | {0x8086, 0x8c43, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1511 | {0x8086, 0x8c44, NT, "Intel", "Z87", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1512 | {0x8086, 0x8c45, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1513 | {0x8086, 0x8c46, NT, "Intel", "Z85", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1514 | {0x8086, 0x8c47, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
| 1515 | {0x8086, 0x8c48, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1516 | {0x8086, 0x8c49, NT, "Intel", "HM86", enable_flash_pch8}, |
Stefan Tauner | dbac46c | 2013-08-13 22:10:41 +0000 | [diff] [blame] | 1517 | {0x8086, 0x8c4a, OK, "Intel", "H87", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1518 | {0x8086, 0x8c4b, NT, "Intel", "HM87", enable_flash_pch8}, |
| 1519 | {0x8086, 0x8c4c, NT, "Intel", "Q85", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1520 | {0x8086, 0x8c4d, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1521 | {0x8086, 0x8c4e, NT, "Intel", "Q87", enable_flash_pch8}, |
| 1522 | {0x8086, 0x8c4f, NT, "Intel", "QM87", enable_flash_pch8}, |
| 1523 | {0x8086, 0x8c50, NT, "Intel", "B85", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1524 | {0x8086, 0x8c51, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1525 | {0x8086, 0x8c52, NT, "Intel", "C222", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1526 | {0x8086, 0x8c53, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1527 | {0x8086, 0x8c54, NT, "Intel", "C224", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1528 | {0x8086, 0x8c55, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1529 | {0x8086, 0x8c56, NT, "Intel", "C226", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1530 | {0x8086, 0x8c57, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
| 1531 | {0x8086, 0x8c58, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
| 1532 | {0x8086, 0x8c59, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
| 1533 | {0x8086, 0x8c5a, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
| 1534 | {0x8086, 0x8c5b, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1535 | {0x8086, 0x8c5c, NT, "Intel", "H81", enable_flash_pch8}, |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1536 | {0x8086, 0x8c5d, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
| 1537 | {0x8086, 0x8c5e, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
| 1538 | {0x8086, 0x8c5f, NT, "Intel", "Lynx Point", enable_flash_pch8}, |
Duncan Laurie | 90eb226 | 2013-03-15 03:12:29 +0000 | [diff] [blame] | 1539 | {0x8086, 0x9c41, NT, "Intel", "Lynx Point LP Engineering Sample", enable_flash_pch8_lp}, |
| 1540 | {0x8086, 0x9c43, NT, "Intel", "Lynx Point LP Premium", enable_flash_pch8_lp}, |
| 1541 | {0x8086, 0x9c45, NT, "Intel", "Lynx Point LP Mainstream", enable_flash_pch8_lp}, |
| 1542 | {0x8086, 0x9c47, NT, "Intel", "Lynx Point LP Value", enable_flash_pch8_lp}, |
| 1543 | {0x8086, 0x8d40, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1544 | {0x8086, 0x8d41, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1545 | {0x8086, 0x8d42, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1546 | {0x8086, 0x8d43, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1547 | {0x8086, 0x8d44, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1548 | {0x8086, 0x8d45, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1549 | {0x8086, 0x8d46, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1550 | {0x8086, 0x8d47, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1551 | {0x8086, 0x8d48, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1552 | {0x8086, 0x8d49, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1553 | {0x8086, 0x8d4a, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1554 | {0x8086, 0x8d4b, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1555 | {0x8086, 0x8d4c, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1556 | {0x8086, 0x8d4d, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1557 | {0x8086, 0x8d4e, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1558 | {0x8086, 0x8d4f, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1559 | {0x8086, 0x8d50, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1560 | {0x8086, 0x8d51, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1561 | {0x8086, 0x8d52, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1562 | {0x8086, 0x8d53, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1563 | {0x8086, 0x8d54, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1564 | {0x8086, 0x8d55, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1565 | {0x8086, 0x8d56, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1566 | {0x8086, 0x8d57, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1567 | {0x8086, 0x8d58, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1568 | {0x8086, 0x8d59, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1569 | {0x8086, 0x8d5a, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1570 | {0x8086, 0x8d5b, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1571 | {0x8086, 0x8d5c, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1572 | {0x8086, 0x8d5d, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1573 | {0x8086, 0x8d5e, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
| 1574 | {0x8086, 0x8d5f, NT, "Intel", "Wellsburg", enable_flash_pch8_wb}, |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1575 | #endif |
Carl-Daniel Hailfinger | 1c6d2ff | 2012-08-27 00:44:42 +0000 | [diff] [blame] | 1576 | {0}, |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1577 | }; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 1578 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1579 | int chipset_flash_enable(void) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1580 | { |
Peter Huewe | 73f8ec8 | 2011-01-24 19:15:51 +0000 | [diff] [blame] | 1581 | struct pci_dev *dev = NULL; |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1582 | int ret = -2; /* Nothing! */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1583 | int i; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1584 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1585 | /* Now let's try to find the chipset we have... */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1586 | for (i = 0; chipset_enables[i].vendor_name != NULL; i++) { |
| 1587 | dev = pci_dev_find(chipset_enables[i].vendor_id, |
| 1588 | chipset_enables[i].device_id); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1589 | if (!dev) |
| 1590 | continue; |
| 1591 | if (ret != -2) { |
Stefan Tauner | c6fa32d | 2013-01-04 22:54:07 +0000 | [diff] [blame] | 1592 | msg_pwarn("Warning: unexpected second chipset match: " |
Paul Menzel | ab6328f | 2010-10-08 11:03:02 +0000 | [diff] [blame] | 1593 | "\"%s %s\"\n" |
| 1594 | "ignoring, please report lspci and board URL " |
| 1595 | "to flashrom@flashrom.org\n" |
Stefan Reinauer | bf282b1 | 2011-03-29 21:41:41 +0000 | [diff] [blame] | 1596 | "with \'CHIPSET: your board name\' in the " |
Paul Menzel | ab6328f | 2010-10-08 11:03:02 +0000 | [diff] [blame] | 1597 | "subject line.\n", |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1598 | chipset_enables[i].vendor_name, |
| 1599 | chipset_enables[i].device_name); |
| 1600 | continue; |
| 1601 | } |
Stefan Tauner | ec8c248 | 2011-07-21 19:59:34 +0000 | [diff] [blame] | 1602 | msg_pinfo("Found chipset \"%s %s\"", |
| 1603 | chipset_enables[i].vendor_name, |
| 1604 | chipset_enables[i].device_name); |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 1605 | msg_pdbg(" with PCI ID %04x:%04x", |
Carl-Daniel Hailfinger | f469c27 | 2010-05-22 07:31:50 +0000 | [diff] [blame] | 1606 | chipset_enables[i].vendor_id, |
| 1607 | chipset_enables[i].device_id); |
Stefan Tauner | ec8c248 | 2011-07-21 19:59:34 +0000 | [diff] [blame] | 1608 | msg_pinfo(". "); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1609 | |
Stefan Tauner | ec8c248 | 2011-07-21 19:59:34 +0000 | [diff] [blame] | 1610 | if (chipset_enables[i].status == NT) { |
| 1611 | msg_pinfo("\nThis chipset is marked as untested. If " |
| 1612 | "you are using an up-to-date version\nof " |
Stefan Tauner | 2abab94 | 2012-04-27 20:41:23 +0000 | [diff] [blame] | 1613 | "flashrom *and* were (not) able to " |
| 1614 | "successfully update your firmware with it,\n" |
| 1615 | "then please email a report to " |
| 1616 | "flashrom@flashrom.org including a verbose " |
| 1617 | "(-V) log.\nThank you!\n"); |
Stefan Tauner | ec8c248 | 2011-07-21 19:59:34 +0000 | [diff] [blame] | 1618 | } |
| 1619 | msg_pinfo("Enabling flash write... "); |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1620 | ret = chipset_enables[i].doit(dev, |
| 1621 | chipset_enables[i].device_name); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1622 | if (ret == NOT_DONE_YET) { |
| 1623 | ret = -2; |
| 1624 | msg_pinfo("OK - searching further chips.\n"); |
| 1625 | } else if (ret < 0) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1626 | msg_pinfo("FAILED!\n"); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1627 | else if (ret == 0) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1628 | msg_pinfo("OK.\n"); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 1629 | else if (ret == ERROR_NONFATAL) |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1630 | msg_pinfo("PROBLEMS, continuing anyway\n"); |
Tadas Slotkus | ad47034 | 2011-09-03 17:15:00 +0000 | [diff] [blame] | 1631 | if (ret == ERROR_FATAL) { |
| 1632 | msg_perr("FATAL ERROR!\n"); |
| 1633 | return ret; |
| 1634 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1635 | } |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1636 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1637 | return ret; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1638 | } |