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