ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | /* |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 3 | * |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 5 | * Copyright (C) 2005-2009 coresystems GmbH |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de> |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 7 | * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger |
libv | a6245f0 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 8 | * Copyright (C) 2009 Kontron Modular Computers GmbH |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 9 | * |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; version 2 of the License. |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 13 | * |
uwe | b25f1ea | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * Contains the chipset specific flash enables. |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 26 | */ |
| 27 | |
jcrouse | 5915fea | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 28 | #define _LARGEFILE64_SOURCE |
| 29 | |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 30 | #include <stdlib.h> |
oxygene | 4a49726 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 31 | #include <string.h> |
jcrouse | 5915fea | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 32 | #include <sys/types.h> |
hailfinger | 6c39110 | 2010-06-21 23:20:15 +0000 | [diff] [blame] | 33 | #include <unistd.h> |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 34 | #include "flash.h" |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 35 | #include "programmer.h" |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 36 | |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 37 | #define NOT_DONE_YET 1 |
| 38 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 39 | #if defined(__i386__) || defined(__x86_64__) |
| 40 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 41 | static int enable_flash_ali_m1533(struct pci_dev *dev, const char *name) |
uwe | 691ddb6 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 42 | { |
| 43 | uint8_t tmp; |
| 44 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 45 | /* |
| 46 | * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and |
| 47 | * 0xFFFE0000-0xFFFFFFFF ROM select enable. |
| 48 | */ |
uwe | 691ddb6 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 49 | tmp = pci_read_byte(dev, 0x47); |
| 50 | tmp |= 0x46; |
| 51 | pci_write_byte(dev, 0x47, tmp); |
| 52 | |
| 53 | return 0; |
| 54 | } |
| 55 | |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 56 | static int enable_flash_sis85c496(struct pci_dev *dev, const char *name) |
| 57 | { |
| 58 | uint8_t tmp; |
| 59 | |
| 60 | tmp = pci_read_byte(dev, 0xd0); |
| 61 | tmp |= 0xf8; |
| 62 | pci_write_byte(dev, 0xd0, tmp); |
| 63 | |
| 64 | return 0; |
| 65 | } |
| 66 | |
| 67 | static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name) |
| 68 | { |
| 69 | uint8_t new, newer; |
| 70 | |
| 71 | /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */ |
| 72 | /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */ |
| 73 | new = pci_read_byte(dev, 0x40); |
| 74 | new &= (~0x04); /* No idea why we clear bit 2. */ |
| 75 | new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */ |
| 76 | pci_write_byte(dev, 0x40, new); |
| 77 | newer = pci_read_byte(dev, 0x40); |
| 78 | if (newer != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 79 | msg_perr("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name); |
| 80 | msg_perr("Stuck at 0x%x\n", newer); |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 81 | return -1; |
| 82 | } |
| 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | static struct pci_dev *find_southbridge(uint16_t vendor, const char *name) |
| 87 | { |
| 88 | struct pci_dev *sbdev; |
| 89 | |
| 90 | sbdev = pci_dev_find_vendorclass(vendor, 0x0601); |
| 91 | if (!sbdev) |
| 92 | sbdev = pci_dev_find_vendorclass(vendor, 0x0680); |
| 93 | if (!sbdev) |
| 94 | sbdev = pci_dev_find_vendorclass(vendor, 0x0000); |
| 95 | if (!sbdev) |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 96 | msg_perr("No southbridge found for %s!\n", name); |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 97 | if (sbdev) |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 98 | msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n", |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 99 | sbdev->vendor_id, sbdev->device_id, |
| 100 | sbdev->bus, sbdev->dev, sbdev->func); |
| 101 | return sbdev; |
| 102 | } |
| 103 | |
| 104 | static int enable_flash_sis501(struct pci_dev *dev, const char *name) |
| 105 | { |
| 106 | uint8_t tmp; |
| 107 | int ret = 0; |
| 108 | struct pci_dev *sbdev; |
| 109 | |
| 110 | sbdev = find_southbridge(dev->vendor_id, name); |
| 111 | if (!sbdev) |
| 112 | return -1; |
| 113 | |
| 114 | ret = enable_flash_sis_mapping(sbdev, name); |
| 115 | |
| 116 | tmp = sio_read(0x22, 0x80); |
| 117 | tmp &= (~0x20); |
| 118 | tmp |= 0x4; |
| 119 | sio_write(0x22, 0x80, tmp); |
| 120 | |
| 121 | tmp = sio_read(0x22, 0x70); |
| 122 | tmp &= (~0x20); |
| 123 | tmp |= 0x4; |
| 124 | sio_write(0x22, 0x70, tmp); |
| 125 | |
| 126 | return ret; |
| 127 | } |
| 128 | |
| 129 | static int enable_flash_sis5511(struct pci_dev *dev, const char *name) |
| 130 | { |
| 131 | uint8_t tmp; |
| 132 | int ret = 0; |
| 133 | struct pci_dev *sbdev; |
| 134 | |
| 135 | sbdev = find_southbridge(dev->vendor_id, name); |
| 136 | if (!sbdev) |
| 137 | return -1; |
| 138 | |
| 139 | ret = enable_flash_sis_mapping(sbdev, name); |
| 140 | |
| 141 | tmp = sio_read(0x22, 0x50); |
| 142 | tmp &= (~0x20); |
| 143 | tmp |= 0x4; |
| 144 | sio_write(0x22, 0x50, tmp); |
| 145 | |
| 146 | return ret; |
| 147 | } |
| 148 | |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 149 | static int enable_flash_sis530(struct pci_dev *dev, const char *name) |
| 150 | { |
| 151 | uint8_t new, newer; |
| 152 | int ret = 0; |
| 153 | struct pci_dev *sbdev; |
| 154 | |
| 155 | sbdev = find_southbridge(dev->vendor_id, name); |
| 156 | if (!sbdev) |
| 157 | return -1; |
| 158 | |
| 159 | ret = enable_flash_sis_mapping(sbdev, name); |
| 160 | |
| 161 | new = pci_read_byte(sbdev, 0x45); |
| 162 | new &= (~0x20); |
| 163 | new |= 0x4; |
| 164 | pci_write_byte(sbdev, 0x45, new); |
libv | 1a4a713 | 2010-01-10 15:01:08 +0000 | [diff] [blame] | 165 | newer = pci_read_byte(sbdev, 0x45); |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 166 | if (newer != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 167 | msg_perr("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name); |
| 168 | msg_perr("Stuck at 0x%x\n", newer); |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 169 | ret = -1; |
| 170 | } |
| 171 | |
| 172 | return ret; |
| 173 | } |
| 174 | |
| 175 | static int enable_flash_sis540(struct pci_dev *dev, const char *name) |
| 176 | { |
| 177 | uint8_t new, newer; |
| 178 | int ret = 0; |
| 179 | struct pci_dev *sbdev; |
| 180 | |
| 181 | sbdev = find_southbridge(dev->vendor_id, name); |
| 182 | if (!sbdev) |
| 183 | return -1; |
| 184 | |
| 185 | ret = enable_flash_sis_mapping(sbdev, name); |
| 186 | |
| 187 | new = pci_read_byte(sbdev, 0x45); |
| 188 | new &= (~0x80); |
| 189 | new |= 0x40; |
| 190 | pci_write_byte(sbdev, 0x45, new); |
libv | 1a4a713 | 2010-01-10 15:01:08 +0000 | [diff] [blame] | 191 | newer = pci_read_byte(sbdev, 0x45); |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 192 | if (newer != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 193 | msg_perr("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name); |
| 194 | msg_perr("Stuck at 0x%x\n", newer); |
hailfinger | 07e3ce0 | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 195 | ret = -1; |
| 196 | } |
| 197 | |
| 198 | return ret; |
| 199 | } |
| 200 | |
uwe | 877ca43 | 2006-11-07 11:16:21 +0000 | [diff] [blame] | 201 | /* Datasheet: |
| 202 | * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4) |
| 203 | * - URL: http://www.intel.com/design/intarch/datashts/290562.htm |
| 204 | * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf |
| 205 | * - Order Number: 290562-001 |
| 206 | */ |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 207 | static int enable_flash_piix4(struct pci_dev *dev, const char *name) |
uwe | 12b3869 | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 208 | { |
| 209 | uint16_t old, new; |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 210 | uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */ |
uwe | 12b3869 | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 211 | |
uwe | 56243f5 | 2009-12-08 17:26:24 +0000 | [diff] [blame] | 212 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 213 | |
uwe | 12b3869 | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 214 | old = pci_read_word(dev, xbcs); |
| 215 | |
| 216 | /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 217 | * FFF00000-FFF7FFFF are forwarded to ISA). |
uwe | b4e7666 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 218 | * Note: This bit is reserved on PIIX/PIIX3/MPIIX. |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 219 | * Set bit 7: Extended BIOS Enable (PCI master accesses to |
| 220 | * FFF80000-FFFDFFFF are forwarded to ISA). |
| 221 | * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to |
| 222 | * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top |
| 223 | * of 1 Mbyte, or the aliases at the top of 4 Gbyte |
| 224 | * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#. |
| 225 | * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA. |
| 226 | * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable). |
| 227 | */ |
uwe | b4e7666 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 228 | if (dev->device_id == 0x122e || dev->device_id == 0x7000 |
| 229 | || dev->device_id == 0x1234) |
| 230 | new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */ |
uwe | 885bc82 | 2008-10-26 18:40:42 +0000 | [diff] [blame] | 231 | else |
| 232 | new = old | 0x02c4; |
uwe | 12b3869 | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 233 | |
| 234 | if (new == old) |
| 235 | return 0; |
| 236 | |
| 237 | pci_write_word(dev, xbcs, new); |
| 238 | |
| 239 | if (pci_read_word(dev, xbcs) != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 240 | msg_perr("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name); |
uwe | 12b3869 | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 241 | return -1; |
| 242 | } |
uwe | be4477b | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 243 | |
uwe | 12b3869 | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 244 | return 0; |
| 245 | } |
| 246 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 247 | /* |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 248 | * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet" |
| 249 | * http://download.intel.com/design/chipsets/datashts/30701303.pdf |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 250 | */ |
| 251 | static int enable_flash_ich(struct pci_dev *dev, const char *name, |
| 252 | int bios_cntl) |
rminnich | 1bcc2b2 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 253 | { |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 254 | uint8_t old, new; |
stepan | ca42a0b | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 255 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 256 | /* |
| 257 | * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 258 | * just treating it as 8 bit wide seems to work fine in practice. |
stepan | ca42a0b | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 259 | */ |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 260 | old = pci_read_byte(dev, bios_cntl); |
rminnich | 1bcc2b2 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 261 | |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 262 | msg_pdbg("\nBIOS Lock Enable: %sabled, ", |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 263 | (old & (1 << 1)) ? "en" : "dis"); |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 264 | msg_pdbg("BIOS Write Enable: %sabled, ", |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 265 | (old & (1 << 0)) ? "en" : "dis"); |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 266 | msg_pdbg("BIOS_CNTL is 0x%x\n", old); |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 267 | |
rminnich | 1bcc2b2 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 268 | new = old | 1; |
| 269 | |
| 270 | if (new == old) |
| 271 | return 0; |
| 272 | |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 273 | pci_write_byte(dev, bios_cntl, new); |
rminnich | 1bcc2b2 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 274 | |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 275 | if (pci_read_byte(dev, bios_cntl) != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 276 | msg_perr("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", bios_cntl, new, name); |
rminnich | 1bcc2b2 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 277 | return -1; |
| 278 | } |
uwe | be4477b | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 279 | |
rminnich | 1bcc2b2 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 280 | return 0; |
| 281 | } |
| 282 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 283 | static int enable_flash_ich_4e(struct pci_dev *dev, const char *name) |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 284 | { |
hailfinger | b301e65 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 285 | /* |
| 286 | * Note: ICH5 has registers similar to FWH_SEL1, FWH_SEL2 and |
| 287 | * FWH_DEC_EN1, but they are called FB_SEL1, FB_SEL2, FB_DEC_EN1 and |
| 288 | * FB_DEC_EN2. |
| 289 | */ |
hailfinger | 1bf524e | 2010-06-20 11:04:26 +0000 | [diff] [blame] | 290 | buses_supported = CHIP_BUSTYPE_FWH; |
stepan | ca42a0b | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 291 | return enable_flash_ich(dev, name, 0x4e); |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 292 | } |
| 293 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 294 | static int enable_flash_ich_dc(struct pci_dev *dev, const char *name) |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 295 | { |
hailfinger | b301e65 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 296 | uint32_t fwh_conf; |
| 297 | int i; |
hailfinger | 3553ccf | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 298 | char *idsel = NULL; |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 299 | int tmp; |
| 300 | int max_decode_fwh_idsel = 0; |
| 301 | int max_decode_fwh_decode = 0; |
| 302 | int contiguous = 1; |
hailfinger | b301e65 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 303 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 304 | idsel = extract_programmer_param("fwh_idsel"); |
| 305 | if (idsel && strlen(idsel)) { |
hailfinger | 3553ccf | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 306 | fwh_conf = (uint32_t)strtoul(idsel, NULL, 0); |
| 307 | |
| 308 | /* FIXME: Need to undo this on shutdown. */ |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 309 | msg_pinfo("\nSetting IDSEL=0x%x for top 16 MB", fwh_conf); |
hailfinger | 3553ccf | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 310 | pci_write_long(dev, 0xd0, fwh_conf); |
| 311 | pci_write_word(dev, 0xd4, fwh_conf); |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 312 | /* FIXME: Decode settings are not changed. */ |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 313 | } else if (idsel) { |
| 314 | msg_perr("Error: idsel= specified, but no number given.\n"); |
| 315 | free(idsel); |
| 316 | /* FIXME: Return failure here once internal_init() starts |
| 317 | * to care about the return value of the chipset enable. |
| 318 | */ |
| 319 | exit(1); |
hailfinger | 3553ccf | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 320 | } |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 321 | free(idsel); |
hailfinger | 3553ccf | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 322 | |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 323 | /* Ignore all legacy ranges below 1 MB. |
| 324 | * We currently only support flashing the chip which responds to |
| 325 | * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations |
| 326 | * have to be adjusted. |
| 327 | */ |
| 328 | /* FWH_SEL1 */ |
| 329 | fwh_conf = pci_read_long(dev, 0xd0); |
| 330 | for (i = 7; i >= 0; i--) { |
| 331 | tmp = (fwh_conf >> (i * 4)) & 0xf; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 332 | msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 333 | (0x1ff8 + i) * 0x80000, |
| 334 | (0x1ff0 + i) * 0x80000, |
| 335 | tmp); |
| 336 | if ((tmp == 0) && contiguous) { |
| 337 | max_decode_fwh_idsel = (8 - i) * 0x80000; |
| 338 | } else { |
| 339 | contiguous = 0; |
| 340 | } |
| 341 | } |
| 342 | /* FWH_SEL2 */ |
| 343 | fwh_conf = pci_read_word(dev, 0xd4); |
| 344 | for (i = 3; i >= 0; i--) { |
| 345 | tmp = (fwh_conf >> (i * 4)) & 0xf; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 346 | msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 347 | (0xff4 + i) * 0x100000, |
| 348 | (0xff0 + i) * 0x100000, |
| 349 | tmp); |
| 350 | if ((tmp == 0) && contiguous) { |
| 351 | max_decode_fwh_idsel = (8 - i) * 0x100000; |
| 352 | } else { |
| 353 | contiguous = 0; |
| 354 | } |
| 355 | } |
| 356 | contiguous = 1; |
| 357 | /* FWH_DEC_EN1 */ |
| 358 | fwh_conf = pci_read_word(dev, 0xd8); |
| 359 | for (i = 7; i >= 0; i--) { |
| 360 | tmp = (fwh_conf >> (i + 0x8)) & 0x1; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 361 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 362 | (0x1ff8 + i) * 0x80000, |
| 363 | (0x1ff0 + i) * 0x80000, |
| 364 | tmp ? "en" : "dis"); |
mkarcher | 3d94508 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 365 | if ((tmp == 1) && contiguous) { |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 366 | max_decode_fwh_decode = (8 - i) * 0x80000; |
| 367 | } else { |
| 368 | contiguous = 0; |
| 369 | } |
| 370 | } |
| 371 | for (i = 3; i >= 0; i--) { |
| 372 | tmp = (fwh_conf >> i) & 0x1; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 373 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 374 | (0xff4 + i) * 0x100000, |
| 375 | (0xff0 + i) * 0x100000, |
| 376 | tmp ? "en" : "dis"); |
mkarcher | 3d94508 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 377 | if ((tmp == 1) && contiguous) { |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 378 | max_decode_fwh_decode = (8 - i) * 0x100000; |
| 379 | } else { |
| 380 | contiguous = 0; |
| 381 | } |
| 382 | } |
| 383 | max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode); |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 384 | msg_pdbg("\nMaximum FWH chip size: 0x%x bytes", max_rom_decode.fwh); |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 385 | |
| 386 | /* If we're called by enable_flash_ich_dc_spi, it will override |
| 387 | * buses_supported anyway. |
| 388 | */ |
| 389 | buses_supported = CHIP_BUSTYPE_FWH; |
stepan | ca42a0b | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 390 | return enable_flash_ich(dev, name, 0xdc); |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 391 | } |
| 392 | |
libv | a6245f0 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 393 | static int enable_flash_poulsbo(struct pci_dev *dev, const char *name) |
| 394 | { |
| 395 | uint16_t old, new; |
| 396 | int err; |
| 397 | |
| 398 | if ((err = enable_flash_ich(dev, name, 0xd8)) != 0) |
| 399 | return err; |
| 400 | |
| 401 | old = pci_read_byte(dev, 0xd9); |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 402 | msg_pdbg("BIOS Prefetch Enable: %sabled, ", |
libv | a6245f0 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 403 | (old & 1) ? "en" : "dis"); |
| 404 | new = old & ~1; |
| 405 | |
| 406 | if (new != old) |
| 407 | pci_write_byte(dev, 0xd9, new); |
| 408 | |
hailfinger | 1bf524e | 2010-06-20 11:04:26 +0000 | [diff] [blame] | 409 | buses_supported = CHIP_BUSTYPE_FWH; |
libv | a6245f0 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 414 | #define ICH_STRAP_RSVD 0x00 |
| 415 | #define ICH_STRAP_SPI 0x01 |
| 416 | #define ICH_STRAP_PCI 0x02 |
| 417 | #define ICH_STRAP_LPC 0x03 |
hailfinger | 62b3862 | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 418 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 419 | static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) |
| 420 | { |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 421 | /* Do we really need no write enable? */ |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 422 | return via_init_spi(dev); |
ruik | 9bc51c0 | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 423 | } |
| 424 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 425 | static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, |
| 426 | int ich_generation) |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 427 | { |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 428 | int ret; |
| 429 | uint8_t bbs, buc; |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 430 | uint32_t tmp, gcs; |
hailfinger | 62b3862 | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 431 | void *rcrb; |
hailfinger | be0950f | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 432 | //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line |
| 433 | //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" }; |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 434 | static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" }; |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 435 | |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 436 | /* Enable Flash Writes */ |
| 437 | ret = enable_flash_ich_dc(dev, name); |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 438 | |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 439 | /* Get physical address of Root Complex Register Block */ |
| 440 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 441 | msg_pdbg("\nRoot Complex Register Block address = 0x%x\n", tmp); |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 442 | |
| 443 | /* Map RCBA to virtual memory */ |
stuge | 7c943ee | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 444 | rcrb = physmap("ICH RCRB", tmp, 0x4000); |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 445 | |
David Hendricks | 6c1c569 | 2010-10-08 11:13:50 -0700 | [diff] [blame] | 446 | /* Set BBS (Boot BIOS Straps) field of GCS register. */ |
hailfinger | 38da681 | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 447 | gcs = mmio_readl(rcrb + 0x3410); |
David Hendricks | 6c1c569 | 2010-10-08 11:13:50 -0700 | [diff] [blame] | 448 | if (target_bus == CHIP_BUSTYPE_LPC) { |
| 449 | msg_pdbg("Setting BBS to LPC\n"); |
| 450 | gcs = (gcs & ~0xc00) | (0x3 << 10); |
| 451 | mmio_writel(gcs, rcrb + 0x3410); |
| 452 | } else if (target_bus == CHIP_BUSTYPE_SPI) { |
| 453 | msg_pdbg("Setting BBS to SPI\n"); |
| 454 | gcs = (gcs & ~0xc00) | (0x1 << 10); |
| 455 | mmio_writel(gcs, rcrb + 0x3410); |
| 456 | } |
| 457 | |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 458 | msg_pdbg("GCS = 0x%x: ", gcs); |
| 459 | msg_pdbg("BIOS Interface Lock-Down: %sabled, ", |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 460 | (gcs & 0x1) ? "en" : "dis"); |
| 461 | bbs = (gcs >> 10) & 0x3; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 462 | msg_pdbg("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]); |
hailfinger | 62b3862 | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 463 | |
hailfinger | 38da681 | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 464 | buc = mmio_readb(rcrb + 0x3414); |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 465 | msg_pdbg("Top Swap : %s\n", |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 466 | (buc & 1) ? "enabled (A16 inverted)" : "not enabled"); |
stepan | dbd3af1 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 467 | |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 468 | /* It seems the ICH7 does not support SPI and LPC chips at the same |
| 469 | * time. At least not with our current code. So we prevent searching |
| 470 | * on ICH7 when the southbridge is strapped to LPC |
| 471 | */ |
| 472 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 473 | buses_supported = CHIP_BUSTYPE_FWH; |
| 474 | if (ich_generation == 7) { |
| 475 | if(bbs == ICH_STRAP_LPC) { |
| 476 | /* No further SPI initialization required */ |
| 477 | return ret; |
| 478 | } |
| 479 | else |
| 480 | /* Disable LPC/FWH if strapped to PCI or SPI */ |
| 481 | buses_supported = 0; |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 482 | } |
| 483 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 484 | /* this adds CHIP_BUSTYPE_SPI */ |
| 485 | if (ich_init_spi(dev, tmp, rcrb, ich_generation) != 0) { |
| 486 | if (!ret) |
| 487 | ret = ERROR_NONFATAL; |
| 488 | } |
hailfinger | 7acfc8c | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 489 | |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 490 | return ret; |
| 491 | } |
stepan | dbd3af1 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 492 | |
hailfinger | 030d314 | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 493 | static int enable_flash_ich7(struct pci_dev *dev, const char *name) |
hailfinger | 62b3862 | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 494 | { |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 495 | return enable_flash_ich_dc_spi(dev, name, 7); |
hailfinger | 62b3862 | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 496 | } |
| 497 | |
hailfinger | 030d314 | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 498 | static int enable_flash_ich8(struct pci_dev *dev, const char *name) |
| 499 | { |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 500 | return enable_flash_ich_dc_spi(dev, name, 8); |
hailfinger | 030d314 | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 501 | } |
| 502 | |
hailfinger | 62b3862 | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 503 | static int enable_flash_ich9(struct pci_dev *dev, const char *name) |
| 504 | { |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 505 | return enable_flash_ich_dc_spi(dev, name, 9); |
hailfinger | 62b3862 | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 506 | } |
| 507 | |
hailfinger | 8afaa23 | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 508 | static int enable_flash_ich10(struct pci_dev *dev, const char *name) |
| 509 | { |
| 510 | return enable_flash_ich_dc_spi(dev, name, 10); |
| 511 | } |
| 512 | |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 513 | static void via_do_byte_merge(void * arg) |
| 514 | { |
| 515 | struct pci_dev * dev = arg; |
| 516 | uint8_t val; |
| 517 | |
| 518 | msg_pdbg("Re-enabling byte merging\n"); |
| 519 | val = pci_read_byte(dev, 0x71); |
| 520 | val |= 0x40; |
| 521 | pci_write_byte(dev, 0x71, val); |
| 522 | } |
| 523 | |
| 524 | static int via_no_byte_merge(struct pci_dev *dev, const char *name) |
| 525 | { |
| 526 | uint8_t val; |
| 527 | |
| 528 | val = pci_read_byte(dev, 0x71); |
| 529 | if (val & 0x40) |
| 530 | { |
| 531 | msg_pdbg("Disabling byte merging\n"); |
| 532 | val &= ~0x40; |
| 533 | pci_write_byte(dev, 0x71, val); |
| 534 | register_shutdown(via_do_byte_merge, dev); |
| 535 | } |
| 536 | return NOT_DONE_YET; /* need to find south bridge, too */ |
| 537 | } |
| 538 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 539 | static int enable_flash_vt823x(struct pci_dev *dev, const char *name) |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 540 | { |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 541 | uint8_t val; |
ollie | 5b62157 | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 542 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 543 | /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */ |
stepan | 38b3cac | 2008-04-29 13:46:38 +0000 | [diff] [blame] | 544 | pci_write_byte(dev, 0x41, 0x7f); |
| 545 | |
uwe | be4477b | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 546 | /* ROM write enable */ |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 547 | val = pci_read_byte(dev, 0x40); |
| 548 | val |= 0x10; |
| 549 | pci_write_byte(dev, 0x40, val); |
| 550 | |
| 551 | if (pci_read_byte(dev, 0x40) != val) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 552 | msg_perr("\nWARNING: Failed to enable flash write on \"%s\"\n", |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 553 | name); |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 554 | return -1; |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 555 | } |
uwe | 1f08847 | 2007-03-02 22:16:38 +0000 | [diff] [blame] | 556 | |
libv | 53f5814 | 2009-12-23 00:54:26 +0000 | [diff] [blame] | 557 | if (dev->device_id == 0x3227) { /* VT8237R */ |
| 558 | /* All memory cycles, not just ROM ones, go to LPC. */ |
| 559 | val = pci_read_byte(dev, 0x59); |
| 560 | val &= ~0x80; |
| 561 | pci_write_byte(dev, 0x59, val); |
| 562 | } |
| 563 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 564 | return 0; |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 565 | } |
| 566 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 567 | static int enable_flash_cs5530(struct pci_dev *dev, const char *name) |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 568 | { |
uwe | 7a75a6a | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 569 | uint8_t reg8; |
ollie | 5b62157 | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 570 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 571 | #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */ |
| 572 | #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */ |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 573 | #define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */ |
| 574 | #define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */ |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 575 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 576 | #define LOWER_ROM_ADDRESS_RANGE (1 << 0) |
| 577 | #define ROM_WRITE_ENABLE (1 << 1) |
| 578 | #define UPPER_ROM_ADDRESS_RANGE (1 << 2) |
| 579 | #define BIOS_ROM_POSITIVE_DECODE (1 << 5) |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 580 | #define CS5530_ISA_MASTER (1 << 7) |
| 581 | #define CS5530_ENABLE_SA2320 (1 << 2) |
| 582 | #define CS5530_ENABLE_SA20 (1 << 6) |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 583 | |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 584 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
uwe | 7a75a6a | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 585 | /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and |
| 586 | * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB. |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 587 | * FIXME: Should we really touch the low mapping below 1 MB? Flashrom |
| 588 | * ignores that region completely. |
uwe | 7a75a6a | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 589 | * Make the configured ROM areas writable. |
| 590 | */ |
| 591 | reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG); |
| 592 | reg8 |= LOWER_ROM_ADDRESS_RANGE; |
| 593 | reg8 |= UPPER_ROM_ADDRESS_RANGE; |
| 594 | reg8 |= ROM_WRITE_ENABLE; |
| 595 | pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8); |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 596 | |
uwe | 7a75a6a | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 597 | /* Set positive decode on ROM. */ |
| 598 | reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2); |
| 599 | reg8 |= BIOS_ROM_POSITIVE_DECODE; |
| 600 | pci_write_byte(dev, DECODE_CONTROL_REG2, reg8); |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 601 | |
hailfinger | e76cfaf | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 602 | reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG); |
| 603 | if (reg8 & CS5530_ISA_MASTER) { |
| 604 | /* We have A0-A23 available. */ |
| 605 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 606 | } else { |
| 607 | reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG); |
| 608 | if (reg8 & CS5530_ENABLE_SA2320) { |
| 609 | /* We have A0-19, A20-A23 available. */ |
| 610 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 611 | } else if (reg8 & CS5530_ENABLE_SA20) { |
| 612 | /* We have A0-19, A20 available. */ |
| 613 | max_rom_decode.parallel = 2 * 1024 * 1024; |
| 614 | } else { |
| 615 | /* A20 and above are not active. */ |
| 616 | max_rom_decode.parallel = 1024 * 1024; |
| 617 | } |
| 618 | } |
| 619 | |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 620 | return 0; |
| 621 | } |
| 622 | |
uwe | a730ed0 | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 623 | /** |
| 624 | * Geode systems write protect the BIOS via RCONFs (cache settings similar |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 625 | * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. |
uwe | a730ed0 | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 626 | * |
| 627 | * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL. |
| 628 | * To enable write to NOR Boot flash for the benefit of systems that have such |
| 629 | * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select). |
uwe | a730ed0 | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 630 | */ |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 631 | static int enable_flash_cs5536(struct pci_dev *dev, const char *name) |
jcrouse | 5915fea | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 632 | { |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 633 | #define MSR_RCONF_DEFAULT 0x1808 |
| 634 | #define MSR_NORF_CTL 0x51400018 |
uwe | 5d33a48 | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 635 | |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 636 | msr_t msr; |
jcrouse | 5915fea | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 637 | |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 638 | /* Geode only has a single core */ |
| 639 | if (setup_cpu_msr(0)) |
jcrouse | 5915fea | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 640 | return -1; |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 641 | |
| 642 | msr = rdmsr(MSR_RCONF_DEFAULT); |
| 643 | if ((msr.hi >> 24) != 0x22) { |
| 644 | msr.hi &= 0xfbffffff; |
| 645 | wrmsr(MSR_RCONF_DEFAULT, msr); |
jcrouse | 5915fea | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 646 | } |
uwe | a730ed0 | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 647 | |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 648 | msr = rdmsr(MSR_NORF_CTL); |
uwe | 5d33a48 | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 649 | /* Raise WE_CS3 bit. */ |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 650 | msr.lo |= 0x08; |
| 651 | wrmsr(MSR_NORF_CTL, msr); |
uwe | 5d33a48 | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 652 | |
stepan | 6d42c0f | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 653 | cleanup_cpu_msr(); |
uwe | 5d33a48 | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 654 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 655 | #undef MSR_RCONF_DEFAULT |
| 656 | #undef MSR_NORF_CTL |
jcrouse | 5915fea | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 657 | return 0; |
| 658 | } |
| 659 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 660 | static int enable_flash_sc1100(struct pci_dev *dev, const char *name) |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 661 | { |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 662 | uint8_t new; |
ollie | 5b62157 | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 663 | |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 664 | pci_write_byte(dev, 0x52, 0xee); |
| 665 | |
| 666 | new = pci_read_byte(dev, 0x52); |
| 667 | |
| 668 | if (new != 0xee) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 669 | msg_perr("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x52, new, name); |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 670 | return -1; |
| 671 | } |
uwe | be4477b | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 672 | |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 673 | return 0; |
| 674 | } |
| 675 | |
uwe | 30b2ebc | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 676 | /* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 677 | static int enable_flash_amd8111(struct pci_dev *dev, const char *name) |
ollie | 5b62157 | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 678 | { |
ollie | 6a60099 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 679 | uint8_t old, new; |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 680 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 681 | /* Enable decoding at 0xffb00000 to 0xffffffff. */ |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 682 | old = pci_read_byte(dev, 0x43); |
ollie | fc9a03b | 2004-12-07 17:19:04 +0000 | [diff] [blame] | 683 | new = old | 0xC0; |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 684 | if (new != old) { |
| 685 | pci_write_byte(dev, 0x43, new); |
| 686 | if (pci_read_byte(dev, 0x43) != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 687 | msg_perr("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x43, new, name); |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 688 | } |
| 689 | } |
| 690 | |
uwe | 30b2ebc | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 691 | /* Enable 'ROM write' bit. */ |
ollie | 5b62157 | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 692 | old = pci_read_byte(dev, 0x40); |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 693 | new = old | 0x01; |
| 694 | if (new == old) |
| 695 | return 0; |
| 696 | pci_write_byte(dev, 0x40, new); |
| 697 | |
| 698 | if (pci_read_byte(dev, 0x40) != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 699 | msg_perr("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name); |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 700 | return -1; |
| 701 | } |
uwe | be4477b | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 702 | |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 703 | return 0; |
| 704 | } |
| 705 | |
mjones | 9f59c79 | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 706 | static int enable_flash_sb600(struct pci_dev *dev, const char *name) |
| 707 | { |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 708 | uint32_t prot; |
mjones | 9f59c79 | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 709 | uint8_t reg; |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 710 | int ret; |
mjones | 9f59c79 | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 711 | |
uwe | 17efbed | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 712 | /* Clear ROM protect 0-3. */ |
| 713 | for (reg = 0x50; reg < 0x60; reg += 4) { |
hailfinger | 1d225fe | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 714 | prot = pci_read_long(dev, reg); |
| 715 | /* No protection flags for this region?*/ |
| 716 | if ((prot & 0x3) == 0) |
| 717 | continue; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 718 | msg_pinfo("SB600 %s%sprotected from %u to %u\n", |
hailfinger | 1d225fe | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 719 | (prot & 0x1) ? "write " : "", |
| 720 | (prot & 0x2) ? "read " : "", |
| 721 | (prot & 0xfffffc00), |
| 722 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
| 723 | prot &= 0xfffffffc; |
| 724 | pci_write_byte(dev, reg, prot); |
| 725 | prot = pci_read_long(dev, reg); |
hailfinger | 8c2c47c | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 726 | if (prot & 0x3) |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 727 | msg_perr("SB600 %s%sunprotect failed from %u to %u\n", |
hailfinger | 8c2c47c | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 728 | (prot & 0x1) ? "write " : "", |
| 729 | (prot & 0x2) ? "read " : "", |
| 730 | (prot & 0xfffffc00), |
| 731 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
uwe | 17efbed | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 732 | } |
| 733 | |
hailfinger | a916b42 | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 734 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH; |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 735 | |
| 736 | ret = sb600_probe_spi(dev); |
uwe | 17efbed | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 737 | |
hailfinger | f327d76 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 738 | /* Read ROM strap override register. */ |
| 739 | OUTB(0x8f, 0xcd6); |
| 740 | reg = INB(0xcd7); |
| 741 | reg &= 0x0e; |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 742 | msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not "); |
hailfinger | f327d76 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 743 | if (reg & 0x02) { |
| 744 | switch ((reg & 0x0c) >> 2) { |
| 745 | case 0x00: |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 746 | msg_pdbg(": LPC"); |
hailfinger | f327d76 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 747 | break; |
| 748 | case 0x01: |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 749 | msg_pdbg(": PCI"); |
hailfinger | f327d76 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 750 | break; |
| 751 | case 0x02: |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 752 | msg_pdbg(": FWH"); |
hailfinger | f327d76 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 753 | break; |
| 754 | case 0x03: |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 755 | msg_pdbg(": SPI"); |
hailfinger | f327d76 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 756 | break; |
| 757 | } |
| 758 | } |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 759 | msg_pdbg("\n"); |
hailfinger | f327d76 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 760 | |
hailfinger | 1d225fe | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 761 | /* Force enable SPI ROM in SB600 PM register. |
| 762 | * If we enable SPI ROM here, we have to disable it after we leave. |
hailfinger | 5a7cd6b | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 763 | * But how can we know which ROM we are going to handle? So we have |
| 764 | * to trade off. We only access LPC ROM if we boot via LPC ROM. And |
hailfinger | 1d225fe | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 765 | * only SPI ROM if we boot via SPI ROM. If you want to access SPI on |
| 766 | * boards with LPC straps, you have to use the code below. |
hailfinger | 5a7cd6b | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 767 | */ |
| 768 | /* |
uwe | 17efbed | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 769 | OUTB(0x8f, 0xcd6); |
| 770 | OUTB(0x0e, 0xcd7); |
hailfinger | 5a7cd6b | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 771 | */ |
mjones | 9f59c79 | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 772 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 773 | return ret; |
mjones | 9f59c79 | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 774 | } |
| 775 | |
libv | 95290b9 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 776 | static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name) |
| 777 | { |
uwe | 75f401f | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 778 | uint8_t tmp; |
libv | 95290b9 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 779 | |
uwe | 75f401f | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 780 | pci_write_byte(dev, 0x92, 0); |
libv | 95290b9 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 781 | |
uwe | 75f401f | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 782 | tmp = pci_read_byte(dev, 0x6d); |
| 783 | tmp |= 0x01; |
| 784 | pci_write_byte(dev, 0x6d, tmp); |
libv | 95290b9 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 785 | |
uwe | 75f401f | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 786 | return 0; |
libv | 95290b9 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 787 | } |
| 788 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 789 | static int enable_flash_ck804(struct pci_dev *dev, const char *name) |
arch | 6a1225a | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 790 | { |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 791 | uint8_t old, new; |
arch | 6a1225a | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 792 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 793 | old = pci_read_byte(dev, 0x88); |
| 794 | new = old | 0xc0; |
| 795 | if (new != old) { |
| 796 | pci_write_byte(dev, 0x88, new); |
| 797 | if (pci_read_byte(dev, 0x88) != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 798 | msg_perr("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 799 | } |
| 800 | } |
arch | 6a1225a | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 801 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 802 | old = pci_read_byte(dev, 0x6d); |
| 803 | new = old | 0x01; |
| 804 | if (new == old) |
| 805 | return 0; |
| 806 | pci_write_byte(dev, 0x6d, new); |
| 807 | |
| 808 | if (pci_read_byte(dev, 0x6d) != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 809 | msg_perr("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 810 | return -1; |
| 811 | } |
uwe | be4477b | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 812 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 813 | return 0; |
arch | 6a1225a | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 814 | } |
| 815 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 816 | /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */ |
| 817 | static int enable_flash_sb400(struct pci_dev *dev, const char *name) |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 818 | { |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 819 | uint8_t tmp; |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 820 | struct pci_dev *smbusdev; |
| 821 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 822 | /* Look for the SMBus device. */ |
hailfinger | e1cf8a2 | 2009-05-06 00:35:31 +0000 | [diff] [blame] | 823 | smbusdev = pci_dev_find(0x1002, 0x4372); |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 824 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 825 | if (!smbusdev) { |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 826 | msg_perr("ERROR: SMBus device not found. Aborting.\n"); |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 827 | exit(1); |
| 828 | } |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 829 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 830 | /* Enable some SMBus stuff. */ |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 831 | tmp = pci_read_byte(smbusdev, 0x79); |
| 832 | tmp |= 0x01; |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 833 | pci_write_byte(smbusdev, 0x79, tmp); |
| 834 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 835 | /* Change southbridge. */ |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 836 | tmp = pci_read_byte(dev, 0x48); |
| 837 | tmp |= 0x21; |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 838 | pci_write_byte(dev, 0x48, tmp); |
| 839 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 840 | /* Now become a bit silly. */ |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 841 | tmp = INB(0xc6f); |
| 842 | OUTB(tmp, 0xeb); |
| 843 | OUTB(tmp, 0xeb); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 844 | tmp |= 0x40; |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 845 | OUTB(tmp, 0xc6f); |
| 846 | OUTB(tmp, 0xeb); |
| 847 | OUTB(tmp, 0xeb); |
stepan | cb14009 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 848 | |
| 849 | return 0; |
| 850 | } |
| 851 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 852 | static int enable_flash_mcp55(struct pci_dev *dev, const char *name) |
uwe | 9af0ce8 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 853 | { |
mkarcher | 850a497 | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 854 | uint8_t old, new, val; |
| 855 | uint16_t wordval; |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 856 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 857 | /* Set the 0-16 MB enable bits. */ |
mkarcher | 850a497 | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 858 | val = pci_read_byte(dev, 0x88); |
| 859 | val |= 0xff; /* 256K */ |
| 860 | pci_write_byte(dev, 0x88, val); |
| 861 | val = pci_read_byte(dev, 0x8c); |
| 862 | val |= 0xff; /* 1M */ |
| 863 | pci_write_byte(dev, 0x8c, val); |
| 864 | wordval = pci_read_word(dev, 0x90); |
| 865 | wordval |= 0x7fff; /* 16M */ |
| 866 | pci_write_word(dev, 0x90, wordval); |
stepan | 927d4e2 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 867 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 868 | old = pci_read_byte(dev, 0x6d); |
| 869 | new = old | 0x01; |
| 870 | if (new == old) |
| 871 | return 0; |
| 872 | pci_write_byte(dev, 0x6d, new); |
uwe | 9af0ce8 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 873 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 874 | if (pci_read_byte(dev, 0x6d) != new) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 875 | msg_perr("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 876 | return -1; |
| 877 | } |
uwe | 9af0ce8 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 878 | |
| 879 | return 0; |
uwe | 9af0ce8 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 880 | } |
| 881 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 882 | /** |
| 883 | * The MCP6x/MCP7x code is based on cleanroom reverse engineering. |
| 884 | * It is assumed that LPC chips need the MCP55 code and SPI chips need the |
| 885 | * code provided in enable_flash_mcp6x_7x_common. |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 886 | */ |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 887 | static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name) |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 888 | { |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 889 | int ret = 0; |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 890 | int want_spi = 0; |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 891 | uint8_t val; |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 892 | |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 893 | msg_pinfo("This chipset is not really supported yet. Guesswork...\n"); |
| 894 | |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 895 | /* dev is the ISA bridge. No idea what the stuff below does. */ |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 896 | val = pci_read_byte(dev, 0x8a); |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 897 | msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 " |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 898 | "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1); |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 899 | |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 900 | switch ((val >> 5) & 0x3) { |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 901 | case 0x0: |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 902 | ret = enable_flash_mcp55(dev, name); |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 903 | buses_supported = CHIP_BUSTYPE_LPC; |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 904 | msg_pdbg("Flash bus type is LPC\n"); |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 905 | break; |
| 906 | case 0x2: |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 907 | want_spi = 1; |
| 908 | /* SPI is added in mcp6x_spi_init if it works. |
| 909 | * Do we really want to disable LPC in this case? |
| 910 | */ |
| 911 | buses_supported = CHIP_BUSTYPE_NONE; |
| 912 | msg_pdbg("Flash bus type is SPI\n"); |
| 913 | msg_perr("SPI on this chipset is WIP. Write is unsupported!\n"); |
| 914 | programmer_may_write = 0; |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 915 | break; |
| 916 | default: |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 917 | /* Should not happen. */ |
| 918 | buses_supported = CHIP_BUSTYPE_NONE; |
| 919 | msg_pdbg("Flash bus type is unknown (none)\n"); |
| 920 | msg_pinfo("Something went wrong with bus type detection.\n"); |
| 921 | goto out_msg; |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 922 | break; |
| 923 | } |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 924 | |
| 925 | /* Force enable SPI and disable LPC? Not a good idea. */ |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 926 | #if 0 |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 927 | val |= (1 << 6); |
| 928 | val &= ~(1 << 5); |
| 929 | pci_write_byte(dev, 0x8a, val); |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 930 | #endif |
| 931 | |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 932 | if (mcp6x_spi_init(want_spi)) { |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 933 | ret = 1; |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 934 | } |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 935 | out_msg: |
hailfinger | 0a9db8a | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 936 | msg_pinfo("Please send the output of \"flashrom -V\" to " |
| 937 | "flashrom@flashrom.org to help us finish support for your " |
| 938 | "chipset. Thanks.\n"); |
| 939 | |
hailfinger | 2f29448 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 940 | return ret; |
| 941 | } |
| 942 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 943 | static int enable_flash_ht1000(struct pci_dev *dev, const char *name) |
stepan | faa9c54 | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 944 | { |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 945 | uint8_t val; |
stepan | faa9c54 | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 946 | |
uwe | fcce12f | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 947 | /* Set the 4MB enable bit. */ |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 948 | val = pci_read_byte(dev, 0x41); |
| 949 | val |= 0x0e; |
| 950 | pci_write_byte(dev, 0x41, val); |
stepan | faa9c54 | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 951 | |
mkarcher | d057ea9 | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 952 | val = pci_read_byte(dev, 0x43); |
| 953 | val |= (1 << 4); |
| 954 | pci_write_byte(dev, 0x43, val); |
stepan | faa9c54 | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 955 | |
stepan | faa9c54 | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 956 | return 0; |
| 957 | } |
| 958 | |
stuge | 12ac08f | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 959 | /** |
| 960 | * Usually on the x86 architectures (and on other PC-like platforms like some |
| 961 | * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD |
| 962 | * Elan SC520 only a small piece of the system flash is mapped there, but the |
| 963 | * complete flash is mapped somewhere below 1G. The position can be determined |
| 964 | * by the BOOTCS PAR register. |
| 965 | */ |
| 966 | static int get_flashbase_sc520(struct pci_dev *dev, const char *name) |
| 967 | { |
| 968 | int i, bootcs_found = 0; |
| 969 | uint32_t parx = 0; |
| 970 | void *mmcr; |
| 971 | |
| 972 | /* 1. Map MMCR */ |
stuge | 7c943ee | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 973 | mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize()); |
stuge | 12ac08f | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 974 | |
| 975 | /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for |
| 976 | * BOOTCS region (PARx[31:29] = 100b)e |
| 977 | */ |
| 978 | for (i = 0x88; i <= 0xc4; i += 4) { |
hailfinger | 38da681 | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 979 | parx = mmio_readl(mmcr + i); |
stuge | 12ac08f | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 980 | if ((parx >> 29) == 4) { |
| 981 | bootcs_found = 1; |
| 982 | break; /* BOOTCS found */ |
| 983 | } |
| 984 | } |
| 985 | |
| 986 | /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0] |
| 987 | * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0] |
| 988 | */ |
| 989 | if (bootcs_found) { |
| 990 | if (parx & (1 << 25)) { |
| 991 | parx &= (1 << 14) - 1; /* Mask [13:0] */ |
| 992 | flashbase = parx << 16; |
| 993 | } else { |
| 994 | parx &= (1 << 18) - 1; /* Mask [17:0] */ |
| 995 | flashbase = parx << 12; |
| 996 | } |
| 997 | } else { |
snelson | e42c380 | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 998 | msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n"); |
stuge | 12ac08f | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 999 | } |
| 1000 | |
| 1001 | /* 4. Clean up */ |
hailfinger | fab0bc9 | 2009-08-09 12:44:08 +0000 | [diff] [blame] | 1002 | physunmap(mmcr, getpagesize()); |
stuge | 12ac08f | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1003 | return 0; |
| 1004 | } |
| 1005 | |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1006 | #endif |
| 1007 | |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1008 | /* Please keep this list alphabetically sorted by vendor/device. */ |
uwe | 5f612c8 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1009 | const struct penable chipset_enables[] = { |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1010 | #if defined(__i386__) || defined(__x86_64__) |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1011 | {0x10B9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533}, |
| 1012 | {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111}, |
| 1013 | {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111}, |
| 1014 | {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530}, |
| 1015 | {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536}, |
hailfinger | 411025f | 2009-09-23 02:09:23 +0000 | [diff] [blame] | 1016 | {0x1022, 0x2090, OK, "AMD", "CS5536", enable_flash_cs5536}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1017 | {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520}, |
| 1018 | {0x1002, 0x438D, OK, "AMD", "SB600", enable_flash_sb600}, |
hailfinger | 0f49caa | 2009-09-01 22:13:42 +0000 | [diff] [blame] | 1019 | {0x1002, 0x439d, OK, "AMD", "SB700/SB710/SB750", enable_flash_sb600}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1020 | {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100}, |
| 1021 | {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400}, |
| 1022 | {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000}, |
hailfinger | 7e8d9d2 | 2009-11-26 16:51:39 +0000 | [diff] [blame] | 1023 | {0x8086, 0x3b00, NT, "Intel", "3400 Desktop", enable_flash_ich10}, |
| 1024 | {0x8086, 0x3b01, NT, "Intel", "3400 Mobile", enable_flash_ich10}, |
| 1025 | {0x8086, 0x3b0d, NT, "Intel", "3400 Mobile SFF", enable_flash_ich10}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1026 | {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1027 | {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e}, |
| 1028 | {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc}, |
| 1029 | {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1030 | {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1031 | {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10}, |
| 1032 | {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10}, |
| 1033 | {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10}, |
| 1034 | {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1035 | {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e}, |
| 1036 | {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1037 | {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1038 | {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1039 | {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e}, |
| 1040 | {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e}, |
| 1041 | {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1042 | {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc}, |
| 1043 | {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1044 | {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7}, |
| 1045 | {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7}, |
| 1046 | {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7}, |
| 1047 | {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7}, |
hailfinger | 3a5fff0 | 2010-01-19 02:19:27 +0000 | [diff] [blame] | 1048 | {0x8086, 0x27bc, OK, "Intel", "NM10", enable_flash_ich7}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1049 | {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1050 | {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8}, |
| 1051 | {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1052 | {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1053 | {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1054 | {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8}, |
| 1055 | {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1056 | {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9}, |
| 1057 | {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1058 | {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1059 | {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9}, |
| 1060 | {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9}, |
hailfinger | ddc5296 | 2009-08-21 17:26:13 +0000 | [diff] [blame] | 1061 | {0x8086, 0x2910, OK, "Intel", "ICH9 Engineering Sample", enable_flash_ich9}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1062 | {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4}, |
| 1063 | {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4}, |
| 1064 | {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4}, |
| 1065 | {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4}, |
libv | a6245f0 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 1066 | {0x8086, 0x8119, OK, "Intel", "Poulsbo", enable_flash_poulsbo}, |
libv | fda283d | 2009-10-06 11:32:21 +0000 | [diff] [blame] | 1067 | {0x10de, 0x0030, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2}, |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1068 | {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */ |
| 1069 | {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */ |
libv | 95290b9 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 1070 | {0x10de, 0x0060, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2}, |
mkarcher | d2189b4 | 2010-06-12 23:07:26 +0000 | [diff] [blame] | 1071 | {0x10de, 0x00e0, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2}, |
uwe | 332b766 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 1072 | /* Slave, should not be here, to fix known bug for A01. */ |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1073 | {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804}, |
| 1074 | {0x10de, 0x0260, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1075 | {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1076 | {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1077 | {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1078 | {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/ |
hailfinger | dcdcf5c | 2010-05-22 07:27:16 +0000 | [diff] [blame] | 1079 | /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to |
| 1080 | * the flash chip. Instead, 10de:0364 is connected to the flash chip. |
| 1081 | * Until we have PCI device class matching or some fallback mechanism, |
| 1082 | * this is needed to get flashrom working on Tyan S2915 and maybe other |
| 1083 | * dual-MCP55 boards. |
| 1084 | */ |
| 1085 | #if 0 |
| 1086 | {0x10de, 0x0361, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1087 | #endif |
uwe | cb37540 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1088 | {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1089 | {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1090 | {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1091 | {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1092 | {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1093 | {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */ |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 1094 | {0x10de, 0x03e0, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1095 | {0x10de, 0x03e1, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1096 | {0x10de, 0x03e2, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1097 | {0x10de, 0x03e3, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1098 | {0x10de, 0x0440, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1099 | {0x10de, 0x0441, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1100 | {0x10de, 0x0442, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1101 | {0x10de, 0x0443, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1102 | {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x}, |
| 1103 | {0x10de, 0x075c, NT, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x}, |
| 1104 | {0x10de, 0x075d, NT, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x}, |
| 1105 | {0x10de, 0x07d7, NT, "NVIDIA", "MCP73", enable_flash_mcp6x_7x}, |
| 1106 | {0x10de, 0x0aac, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1107 | {0x10de, 0x0aad, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1108 | {0x10de, 0x0aae, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1109 | {0x10de, 0x0aaf, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
hailfinger | eb468c4 | 2009-11-15 17:20:21 +0000 | [diff] [blame] | 1110 | {0x1039, 0x0496, NT, "SiS", "85C496+497", enable_flash_sis85c496}, |
| 1111 | {0x1039, 0x0406, NT, "SiS", "501/5101/5501", enable_flash_sis501}, |
| 1112 | {0x1039, 0x5511, NT, "SiS", "5511", enable_flash_sis5511}, |
libv | 1a4a713 | 2010-01-10 15:01:08 +0000 | [diff] [blame] | 1113 | {0x1039, 0x5596, NT, "SiS", "5596", enable_flash_sis5511}, |
hailfinger | eb468c4 | 2009-11-15 17:20:21 +0000 | [diff] [blame] | 1114 | {0x1039, 0x5571, NT, "SiS", "5571", enable_flash_sis530}, |
| 1115 | {0x1039, 0x5591, NT, "SiS", "5591/5592", enable_flash_sis530}, |
| 1116 | {0x1039, 0x5597, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530}, |
| 1117 | {0x1039, 0x0530, NT, "SiS", "530", enable_flash_sis530}, |
| 1118 | {0x1039, 0x5600, NT, "SiS", "600", enable_flash_sis530}, |
| 1119 | {0x1039, 0x0620, NT, "SiS", "620", enable_flash_sis530}, |
| 1120 | {0x1039, 0x0540, NT, "SiS", "540", enable_flash_sis540}, |
libv | 9163dbb | 2009-12-09 07:43:13 +0000 | [diff] [blame] | 1121 | {0x1039, 0x0630, NT, "SiS", "630", enable_flash_sis540}, |
| 1122 | {0x1039, 0x0635, NT, "SiS", "635", enable_flash_sis540}, |
| 1123 | {0x1039, 0x0640, NT, "SiS", "640", enable_flash_sis540}, |
| 1124 | {0x1039, 0x0645, NT, "SiS", "645", enable_flash_sis540}, |
| 1125 | {0x1039, 0x0646, NT, "SiS", "645DX", enable_flash_sis540}, |
| 1126 | {0x1039, 0x0648, NT, "SiS", "648", enable_flash_sis540}, |
| 1127 | {0x1039, 0x0650, NT, "SiS", "650", enable_flash_sis540}, |
| 1128 | {0x1039, 0x0651, NT, "SiS", "651", enable_flash_sis540}, |
| 1129 | {0x1039, 0x0655, NT, "SiS", "655", enable_flash_sis540}, |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 1130 | {0x1039, 0x0661, OK, "SiS", "661", enable_flash_sis540}, |
libv | 9163dbb | 2009-12-09 07:43:13 +0000 | [diff] [blame] | 1131 | {0x1039, 0x0730, NT, "SiS", "730", enable_flash_sis540}, |
| 1132 | {0x1039, 0x0733, NT, "SiS", "733", enable_flash_sis540}, |
| 1133 | {0x1039, 0x0735, OK, "SiS", "735", enable_flash_sis540}, |
| 1134 | {0x1039, 0x0740, NT, "SiS", "740", enable_flash_sis540}, |
| 1135 | {0x1039, 0x0745, NT, "SiS", "745", enable_flash_sis540}, |
| 1136 | {0x1039, 0x0746, NT, "SiS", "746", enable_flash_sis540}, |
| 1137 | {0x1039, 0x0748, NT, "SiS", "748", enable_flash_sis540}, |
| 1138 | {0x1039, 0x0755, NT, "SiS", "755", enable_flash_sis540}, |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1139 | /* VIA northbridges */ |
| 1140 | {0x1106, 0x0585, NT, "VIA", "VT82C585VPX", via_no_byte_merge}, |
| 1141 | {0x1106, 0x0595, NT, "VIA", "VT82C595", via_no_byte_merge}, |
| 1142 | {0x1106, 0x0597, NT, "VIA", "VT82C597", via_no_byte_merge}, |
| 1143 | {0x1106, 0x0691, NT, "VIA", "VT82C69x", via_no_byte_merge}, /* 691, 693a, 694t, 694x checked */ |
| 1144 | {0x1106, 0x0601, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge}, |
| 1145 | {0x1106, 0x8601, NT, "VIA", "VT8601T", via_no_byte_merge}, |
| 1146 | /* VIA southbridges */ |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1147 | {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x}, |
| 1148 | {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x}, |
hailfinger | 394bd71 | 2009-06-18 12:42:46 +0000 | [diff] [blame] | 1149 | {0x1106, 0x3074, NT, "VIA", "VT8233", enable_flash_vt823x}, |
hailfinger | f91ce8f | 2009-12-23 21:29:18 +0000 | [diff] [blame] | 1150 | {0x1106, 0x3147, OK, "VIA", "VT8233A", enable_flash_vt823x}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1151 | {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x}, |
| 1152 | {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x}, |
| 1153 | {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x}, |
| 1154 | {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi}, |
uwe | ffdcfcd | 2009-06-15 00:03:37 +0000 | [diff] [blame] | 1155 | {0x1106, 0x8353, OK, "VIA", "VX800", enable_flash_vt8237s_spi}, |
uwe | 4f206f4 | 2009-09-25 01:05:06 +0000 | [diff] [blame] | 1156 | {0x1106, 0x0596, OK, "VIA", "VT82C596", enable_flash_amd8111}, |
uwe | bda6537 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1157 | {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111}, |
| 1158 | {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111}, |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1159 | #endif |
uwe | 5f612c8 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1160 | {}, |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1161 | }; |
ollie | 5b62157 | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 1162 | |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1163 | int chipset_flash_enable(void) |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1164 | { |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1165 | struct pci_dev *dev = 0; |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1166 | int ret = -2; /* Nothing! */ |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1167 | int i; |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1168 | |
uwe | 6ed6d95 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1169 | /* Now let's try to find the chipset we have... */ |
uwe | 5f612c8 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1170 | for (i = 0; chipset_enables[i].vendor_name != NULL; i++) { |
| 1171 | dev = pci_dev_find(chipset_enables[i].vendor_id, |
| 1172 | chipset_enables[i].device_id); |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1173 | if (!dev) |
| 1174 | continue; |
| 1175 | if (ret != -2) { |
Louis Yung-Chieh Lo | c13054a | 2010-11-05 10:10:34 +0800 | [diff] [blame] | 1176 | msg_perr("WARNING: unexpected second chipset match: " |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1177 | "\"%s %s\"\nignoring, please report lspci and " |
| 1178 | "board URL to flashrom@flashrom.org!\n", |
| 1179 | chipset_enables[i].vendor_name, |
| 1180 | chipset_enables[i].device_name); |
| 1181 | continue; |
| 1182 | } |
David Hendricks | c6c9f82 | 2010-11-03 15:07:01 -0700 | [diff] [blame] | 1183 | msg_pdbg("Found chipset \"%s %s\", enabling flash write... ", |
uwe | 5f612c8 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1184 | chipset_enables[i].vendor_name, |
| 1185 | chipset_enables[i].device_name); |
hailfinger | 664cf48 | 2010-05-22 07:31:50 +0000 | [diff] [blame] | 1186 | msg_pdbg("chipset PCI ID is %04x:%04x, ", |
| 1187 | chipset_enables[i].vendor_id, |
| 1188 | chipset_enables[i].device_id); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1189 | |
uwe | 5f612c8 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1190 | ret = chipset_enables[i].doit(dev, |
| 1191 | chipset_enables[i].device_name); |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1192 | if (ret == NOT_DONE_YET) { |
| 1193 | ret = -2; |
David Hendricks | c6c9f82 | 2010-11-03 15:07:01 -0700 | [diff] [blame] | 1194 | msg_pdbg("OK - searching further chips.\n"); |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1195 | } else if (ret < 0) |
David Hendricks | c6c9f82 | 2010-11-03 15:07:01 -0700 | [diff] [blame] | 1196 | msg_perr("Unable to enable flash write\n"); |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1197 | else if(ret == 0) |
David Hendricks | c6c9f82 | 2010-11-03 15:07:01 -0700 | [diff] [blame] | 1198 | msg_pdbg("OK.\n"); |
David Hendricks | 82fd8ae | 2010-08-04 14:34:54 -0700 | [diff] [blame] | 1199 | else if(ret == ERROR_NONFATAL) |
| 1200 | msg_pinfo("PROBLEMS, continuing anyway\n"); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1201 | } |
mkarcher | f5f203f | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1202 | |
David Hendricks | c6c9f82 | 2010-11-03 15:07:01 -0700 | [diff] [blame] | 1203 | msg_pdbg("This chipset supports the following protocols: %s.\n", |
| 1204 | flashbuses_to_text(buses_supported)); |
uwe | f664164 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1205 | |
| 1206 | return ret; |
ollie | 5672ac6 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1207 | } |