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> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 7 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; version 2 of the License. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 11 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * Contains the chipset specific flash enables. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 24 | */ |
| 25 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 26 | #define _LARGEFILE64_SOURCE |
| 27 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 28 | #include <stdlib.h> |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 29 | #include <string.h> |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 30 | #include <sys/types.h> |
| 31 | #include <sys/stat.h> |
| 32 | #include <fcntl.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 33 | #include "flash.h" |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 34 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 35 | extern int ichspi_lock; |
| 36 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 37 | 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] | 38 | { |
| 39 | uint8_t tmp; |
| 40 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 41 | /* |
| 42 | * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and |
| 43 | * 0xFFFE0000-0xFFFFFFFF ROM select enable. |
| 44 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 45 | tmp = pci_read_byte(dev, 0x47); |
| 46 | tmp |= 0x46; |
| 47 | pci_write_byte(dev, 0x47, tmp); |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 52 | static int enable_flash_sis85c496(struct pci_dev *dev, const char *name) |
| 53 | { |
| 54 | uint8_t tmp; |
| 55 | |
| 56 | tmp = pci_read_byte(dev, 0xd0); |
| 57 | tmp |= 0xf8; |
| 58 | pci_write_byte(dev, 0xd0, tmp); |
| 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | static int enable_flash_sis_mapping(struct pci_dev *dev, const char *name) |
| 64 | { |
| 65 | uint8_t new, newer; |
| 66 | |
| 67 | /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */ |
| 68 | /* This is 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */ |
| 69 | new = pci_read_byte(dev, 0x40); |
| 70 | new &= (~0x04); /* No idea why we clear bit 2. */ |
| 71 | new |= 0xb; /* 0x3 for some chipsets, bit 7 seems to be don't care. */ |
| 72 | pci_write_byte(dev, 0x40, new); |
| 73 | newer = pci_read_byte(dev, 0x40); |
| 74 | if (newer != new) { |
| 75 | printf_debug("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name); |
| 76 | printf_debug("Stuck at 0x%x\n", newer); |
| 77 | return -1; |
| 78 | } |
| 79 | return 0; |
| 80 | } |
| 81 | |
| 82 | static struct pci_dev *find_southbridge(uint16_t vendor, const char *name) |
| 83 | { |
| 84 | struct pci_dev *sbdev; |
| 85 | |
| 86 | sbdev = pci_dev_find_vendorclass(vendor, 0x0601); |
| 87 | if (!sbdev) |
| 88 | sbdev = pci_dev_find_vendorclass(vendor, 0x0680); |
| 89 | if (!sbdev) |
| 90 | sbdev = pci_dev_find_vendorclass(vendor, 0x0000); |
| 91 | if (!sbdev) |
| 92 | fprintf(stderr, "No southbridge found for %s!\n", name); |
| 93 | if (sbdev) |
| 94 | printf_debug("Found southbridge %04x:%04x at %02x:%02x:%01x\n", |
| 95 | sbdev->vendor_id, sbdev->device_id, |
| 96 | sbdev->bus, sbdev->dev, sbdev->func); |
| 97 | return sbdev; |
| 98 | } |
| 99 | |
| 100 | static int enable_flash_sis501(struct pci_dev *dev, const char *name) |
| 101 | { |
| 102 | uint8_t tmp; |
| 103 | int ret = 0; |
| 104 | struct pci_dev *sbdev; |
| 105 | |
| 106 | sbdev = find_southbridge(dev->vendor_id, name); |
| 107 | if (!sbdev) |
| 108 | return -1; |
| 109 | |
| 110 | ret = enable_flash_sis_mapping(sbdev, name); |
| 111 | |
| 112 | tmp = sio_read(0x22, 0x80); |
| 113 | tmp &= (~0x20); |
| 114 | tmp |= 0x4; |
| 115 | sio_write(0x22, 0x80, tmp); |
| 116 | |
| 117 | tmp = sio_read(0x22, 0x70); |
| 118 | tmp &= (~0x20); |
| 119 | tmp |= 0x4; |
| 120 | sio_write(0x22, 0x70, tmp); |
| 121 | |
| 122 | return ret; |
| 123 | } |
| 124 | |
| 125 | static int enable_flash_sis5511(struct pci_dev *dev, const char *name) |
| 126 | { |
| 127 | uint8_t tmp; |
| 128 | int ret = 0; |
| 129 | struct pci_dev *sbdev; |
| 130 | |
| 131 | sbdev = find_southbridge(dev->vendor_id, name); |
| 132 | if (!sbdev) |
| 133 | return -1; |
| 134 | |
| 135 | ret = enable_flash_sis_mapping(sbdev, name); |
| 136 | |
| 137 | tmp = sio_read(0x22, 0x50); |
| 138 | tmp &= (~0x20); |
| 139 | tmp |= 0x4; |
| 140 | sio_write(0x22, 0x50, tmp); |
| 141 | |
| 142 | return ret; |
| 143 | } |
| 144 | |
| 145 | static int enable_flash_sis5596(struct pci_dev *dev, const char *name) |
| 146 | { |
| 147 | int ret; |
| 148 | |
| 149 | ret = enable_flash_sis5511(dev, name); |
| 150 | |
| 151 | /* FIXME: Needs same superio handling as enable_flash_sis630 */ |
| 152 | return ret; |
| 153 | } |
| 154 | |
| 155 | static int enable_flash_sis530(struct pci_dev *dev, const char *name) |
| 156 | { |
| 157 | uint8_t new, newer; |
| 158 | int ret = 0; |
| 159 | struct pci_dev *sbdev; |
| 160 | |
| 161 | sbdev = find_southbridge(dev->vendor_id, name); |
| 162 | if (!sbdev) |
| 163 | return -1; |
| 164 | |
| 165 | ret = enable_flash_sis_mapping(sbdev, name); |
| 166 | |
| 167 | new = pci_read_byte(sbdev, 0x45); |
| 168 | new &= (~0x20); |
| 169 | new |= 0x4; |
| 170 | pci_write_byte(sbdev, 0x45, new); |
| 171 | newer = pci_read_byte(dev, 0x45); |
| 172 | if (newer != new) { |
| 173 | printf_debug("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name); |
| 174 | printf_debug("Stuck at 0x%x\n", newer); |
| 175 | ret = -1; |
| 176 | } |
| 177 | |
| 178 | return ret; |
| 179 | } |
| 180 | |
| 181 | static int enable_flash_sis540(struct pci_dev *dev, const char *name) |
| 182 | { |
| 183 | uint8_t new, newer; |
| 184 | int ret = 0; |
| 185 | struct pci_dev *sbdev; |
| 186 | |
| 187 | sbdev = find_southbridge(dev->vendor_id, name); |
| 188 | if (!sbdev) |
| 189 | return -1; |
| 190 | |
| 191 | ret = enable_flash_sis_mapping(sbdev, name); |
| 192 | |
| 193 | new = pci_read_byte(sbdev, 0x45); |
| 194 | new &= (~0x80); |
| 195 | new |= 0x40; |
| 196 | pci_write_byte(sbdev, 0x45, new); |
| 197 | newer = pci_read_byte(dev, 0x45); |
| 198 | if (newer != new) { |
| 199 | printf_debug("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name); |
| 200 | printf_debug("Stuck at 0x%x\n", newer); |
| 201 | ret = -1; |
| 202 | } |
| 203 | |
| 204 | return ret; |
| 205 | } |
| 206 | |
Uwe Hermann | 987942d | 2006-11-07 11:16:21 +0000 | [diff] [blame] | 207 | /* Datasheet: |
| 208 | * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4) |
| 209 | * - URL: http://www.intel.com/design/intarch/datashts/290562.htm |
| 210 | * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf |
| 211 | * - Order Number: 290562-001 |
| 212 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 213 | static int enable_flash_piix4(struct pci_dev *dev, const char *name) |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 214 | { |
| 215 | uint16_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 216 | uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */ |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 217 | |
Maciej Pijanka | a661e15 | 2009-12-08 17:26:24 +0000 | [diff] [blame] | 218 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 219 | |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 220 | old = pci_read_word(dev, xbcs); |
| 221 | |
| 222 | /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 223 | * FFF00000-FFF7FFFF are forwarded to ISA). |
Uwe Hermann | c556d32 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 224 | * Note: This bit is reserved on PIIX/PIIX3/MPIIX. |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 225 | * Set bit 7: Extended BIOS Enable (PCI master accesses to |
| 226 | * FFF80000-FFFDFFFF are forwarded to ISA). |
| 227 | * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to |
| 228 | * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top |
| 229 | * of 1 Mbyte, or the aliases at the top of 4 Gbyte |
| 230 | * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#. |
| 231 | * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA. |
| 232 | * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable). |
| 233 | */ |
Uwe Hermann | c556d32 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 234 | if (dev->device_id == 0x122e || dev->device_id == 0x7000 |
| 235 | || dev->device_id == 0x1234) |
| 236 | new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */ |
Uwe Hermann | 8720345 | 2008-10-26 18:40:42 +0000 | [diff] [blame] | 237 | else |
| 238 | new = old | 0x02c4; |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 239 | |
| 240 | if (new == old) |
| 241 | return 0; |
| 242 | |
| 243 | pci_write_word(dev, xbcs, new); |
| 244 | |
| 245 | if (pci_read_word(dev, xbcs) != new) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 246 | printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name); |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 247 | return -1; |
| 248 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 249 | |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 250 | return 0; |
| 251 | } |
| 252 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 253 | /* |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 254 | * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet" |
| 255 | * http://download.intel.com/design/chipsets/datashts/30701303.pdf |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 256 | */ |
| 257 | static int enable_flash_ich(struct pci_dev *dev, const char *name, |
| 258 | int bios_cntl) |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 259 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 260 | uint8_t old, new; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 261 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 262 | /* |
| 263 | * Note: the ICH0-ICH5 BIOS_CNTL register is actually 16 bit wide, but |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 264 | * 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] | 265 | */ |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 266 | old = pci_read_byte(dev, bios_cntl); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 267 | |
Uwe Hermann | 793bdcd | 2008-05-22 22:47:04 +0000 | [diff] [blame] | 268 | printf_debug("\nBIOS Lock Enable: %sabled, ", |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 269 | (old & (1 << 1)) ? "en" : "dis"); |
| 270 | printf_debug("BIOS Write Enable: %sabled, ", |
| 271 | (old & (1 << 0)) ? "en" : "dis"); |
| 272 | printf_debug("BIOS_CNTL is 0x%x\n", old); |
| 273 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 274 | new = old | 1; |
| 275 | |
| 276 | if (new == old) |
| 277 | return 0; |
| 278 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 279 | pci_write_byte(dev, bios_cntl, new); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 280 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 281 | if (pci_read_byte(dev, bios_cntl) != new) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 282 | printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", bios_cntl, new, name); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 283 | return -1; |
| 284 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 285 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 286 | return 0; |
| 287 | } |
| 288 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 289 | 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] | 290 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 291 | /* |
| 292 | * Note: ICH5 has registers similar to FWH_SEL1, FWH_SEL2 and |
| 293 | * FWH_DEC_EN1, but they are called FB_SEL1, FB_SEL2, FB_DEC_EN1 and |
| 294 | * FB_DEC_EN2. |
| 295 | */ |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 296 | return enable_flash_ich(dev, name, 0x4e); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 299 | 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] | 300 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 301 | uint32_t fwh_conf; |
| 302 | int i; |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 303 | char *idsel = NULL; |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 304 | |
| 305 | /* Ignore all legacy ranges below 1 MB. */ |
| 306 | /* FWH_SEL1 */ |
| 307 | fwh_conf = pci_read_long(dev, 0xd0); |
| 308 | for (i = 7; i >= 0; i--) |
| 309 | printf_debug("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
| 310 | (0x1ff8 + i) * 0x80000, |
| 311 | (0x1ff0 + i) * 0x80000, |
| 312 | (fwh_conf >> (i * 4)) & 0xf); |
| 313 | /* FWH_SEL2 */ |
| 314 | fwh_conf = pci_read_word(dev, 0xd4); |
| 315 | for (i = 3; i >= 0; i--) |
| 316 | printf_debug("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
| 317 | (0xff4 + i) * 0x100000, |
| 318 | (0xff0 + i) * 0x100000, |
| 319 | (fwh_conf >> (i * 4)) & 0xf); |
| 320 | /* FWH_DEC_EN1 */ |
| 321 | fwh_conf = pci_read_word(dev, 0xd8); |
| 322 | for (i = 7; i >= 0; i--) |
| 323 | printf_debug("\n0x%08x/0x%08x FWH decode %sabled", |
| 324 | (0x1ff8 + i) * 0x80000, |
| 325 | (0x1ff0 + i) * 0x80000, |
| 326 | (fwh_conf >> (i + 0x8)) & 0x1 ? "en" : "dis"); |
| 327 | for (i = 3; i >= 0; i--) |
| 328 | printf_debug("\n0x%08x/0x%08x FWH decode %sabled", |
| 329 | (0xff4 + i) * 0x100000, |
| 330 | (0xff0 + i) * 0x100000, |
| 331 | (fwh_conf >> i) & 0x1 ? "en" : "dis"); |
| 332 | |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 333 | if (programmer_param) |
| 334 | idsel = strstr(programmer_param, "fwh_idsel="); |
| 335 | |
| 336 | if (idsel) { |
| 337 | idsel += strlen("fwh_idsel="); |
| 338 | fwh_conf = (uint32_t)strtoul(idsel, NULL, 0); |
| 339 | |
| 340 | /* FIXME: Need to undo this on shutdown. */ |
| 341 | printf("\nSetting IDSEL=0x%x for top 16 MB", fwh_conf); |
| 342 | pci_write_long(dev, 0xd0, fwh_conf); |
| 343 | pci_write_word(dev, 0xd4, fwh_conf); |
| 344 | } |
| 345 | |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 346 | return enable_flash_ich(dev, name, 0xdc); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 347 | } |
| 348 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 349 | #define ICH_STRAP_RSVD 0x00 |
| 350 | #define ICH_STRAP_SPI 0x01 |
| 351 | #define ICH_STRAP_PCI 0x02 |
| 352 | #define ICH_STRAP_LPC 0x03 |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 353 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 354 | static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) |
| 355 | { |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 356 | uint32_t mmio_base; |
| 357 | |
| 358 | mmio_base = (pci_read_long(dev, 0xbc)) << 8; |
| 359 | printf_debug("MMIO base at = 0x%x\n", mmio_base); |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 360 | spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70); |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 361 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 362 | printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 363 | mmio_readw(spibar + 0x6c)); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 364 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 365 | /* Not sure if it speaks all these bus protocols. */ |
| 366 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 367 | spi_controller = SPI_CONTROLLER_VIA; |
Rudolf Marek | 0c2029f | 2009-02-01 18:40:50 +0000 | [diff] [blame] | 368 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 369 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 370 | return 0; |
| 371 | } |
| 372 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 373 | static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, |
| 374 | int ich_generation) |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 375 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 376 | int ret, i; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 377 | uint8_t old, new, bbs, buc; |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 378 | uint16_t spibar_offset, tmp2; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 379 | uint32_t tmp, gcs; |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 380 | void *rcrb; |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 381 | //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line |
| 382 | //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" }; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 383 | static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" }; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 384 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 385 | /* Enable Flash Writes */ |
| 386 | ret = enable_flash_ich_dc(dev, name); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 387 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 388 | /* Get physical address of Root Complex Register Block */ |
| 389 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 390 | printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 391 | |
| 392 | /* Map RCBA to virtual memory */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 393 | rcrb = physmap("ICH RCRB", tmp, 0x4000); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 394 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 395 | gcs = mmio_readl(rcrb + 0x3410); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 396 | printf_debug("GCS = 0x%x: ", gcs); |
| 397 | printf_debug("BIOS Interface Lock-Down: %sabled, ", |
| 398 | (gcs & 0x1) ? "en" : "dis"); |
| 399 | bbs = (gcs >> 10) & 0x3; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 400 | printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 401 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 402 | buc = mmio_readb(rcrb + 0x3414); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 403 | printf_debug("Top Swap : %s\n", |
| 404 | (buc & 1) ? "enabled (A16 inverted)" : "not enabled"); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 405 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 406 | /* It seems the ICH7 does not support SPI and LPC chips at the same |
| 407 | * time. At least not with our current code. So we prevent searching |
| 408 | * on ICH7 when the southbridge is strapped to LPC |
| 409 | */ |
| 410 | |
| 411 | if (ich_generation == 7 && bbs == ICH_STRAP_LPC) { |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 412 | /* Not sure if it speaks LPC as well. */ |
| 413 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 414 | /* No further SPI initialization required */ |
| 415 | return ret; |
| 416 | } |
| 417 | |
| 418 | switch (ich_generation) { |
| 419 | case 7: |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 420 | buses_supported = CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 421 | spi_controller = SPI_CONTROLLER_ICH7; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 422 | spibar_offset = 0x3020; |
| 423 | break; |
| 424 | case 8: |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 425 | /* Not sure if it speaks LPC as well. */ |
| 426 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 427 | spi_controller = SPI_CONTROLLER_ICH9; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 428 | spibar_offset = 0x3020; |
| 429 | break; |
| 430 | case 9: |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 431 | case 10: |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 432 | default: /* Future version might behave the same */ |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 433 | /* Not sure if it speaks LPC as well. */ |
| 434 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 435 | spi_controller = SPI_CONTROLLER_ICH9; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 436 | spibar_offset = 0x3800; |
| 437 | break; |
| 438 | } |
| 439 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 440 | /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 441 | printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 442 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 443 | /* Assign Virtual Address */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 444 | spibar = rcrb + spibar_offset; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 445 | |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 446 | switch (spi_controller) { |
| 447 | case SPI_CONTROLLER_ICH7: |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 448 | printf_debug("0x00: 0x%04x (SPIS)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 449 | mmio_readw(spibar + 0)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 450 | printf_debug("0x02: 0x%04x (SPIC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 451 | mmio_readw(spibar + 2)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 452 | printf_debug("0x04: 0x%08x (SPIA)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 453 | mmio_readl(spibar + 4)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 454 | for (i = 0; i < 8; i++) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 455 | int offs; |
| 456 | offs = 8 + (i * 8); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 457 | printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 458 | mmio_readl(spibar + offs), i); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 459 | printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 460 | mmio_readl(spibar + offs + 4), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 461 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 462 | printf_debug("0x50: 0x%08x (BBAR)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 463 | mmio_readl(spibar + 0x50)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 464 | printf_debug("0x54: 0x%04x (PREOP)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 465 | mmio_readw(spibar + 0x54)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 466 | printf_debug("0x56: 0x%04x (OPTYPE)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 467 | mmio_readw(spibar + 0x56)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 468 | printf_debug("0x58: 0x%08x (OPMENU)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 469 | mmio_readl(spibar + 0x58)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 470 | printf_debug("0x5c: 0x%08x (OPMENU+4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 471 | mmio_readl(spibar + 0x5c)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 472 | for (i = 0; i < 4; i++) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 473 | int offs; |
| 474 | offs = 0x60 + (i * 4); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 475 | printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 476 | mmio_readl(spibar + offs), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 477 | } |
| 478 | printf_debug("\n"); |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 479 | if (mmio_readw(spibar) & (1 << 15)) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 480 | printf("WARNING: SPI Configuration Lockdown activated.\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 481 | ichspi_lock = 1; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 482 | } |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 483 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 484 | break; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 485 | case SPI_CONTROLLER_ICH9: |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 486 | tmp2 = mmio_readw(spibar + 4); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 487 | printf_debug("0x04: 0x%04x (HSFS)\n", tmp2); |
| 488 | printf_debug("FLOCKDN %i, ", (tmp2 >> 15 & 1)); |
| 489 | printf_debug("FDV %i, ", (tmp2 >> 14) & 1); |
| 490 | printf_debug("FDOPSS %i, ", (tmp2 >> 13) & 1); |
| 491 | printf_debug("SCIP %i, ", (tmp2 >> 5) & 1); |
| 492 | printf_debug("BERASE %i, ", (tmp2 >> 3) & 3); |
| 493 | printf_debug("AEL %i, ", (tmp2 >> 2) & 1); |
| 494 | printf_debug("FCERR %i, ", (tmp2 >> 1) & 1); |
| 495 | printf_debug("FDONE %i\n", (tmp2 >> 0) & 1); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 496 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 497 | tmp = mmio_readl(spibar + 0x50); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 498 | printf_debug("0x50: 0x%08x (FRAP)\n", tmp); |
| 499 | printf_debug("BMWAG %i, ", (tmp >> 24) & 0xff); |
| 500 | printf_debug("BMRAG %i, ", (tmp >> 16) & 0xff); |
| 501 | printf_debug("BRWA %i, ", (tmp >> 8) & 0xff); |
| 502 | printf_debug("BRRA %i\n", (tmp >> 0) & 0xff); |
| 503 | |
| 504 | printf_debug("0x54: 0x%08x (FREG0)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 505 | mmio_readl(spibar + 0x54)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 506 | printf_debug("0x58: 0x%08x (FREG1)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 507 | mmio_readl(spibar + 0x58)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 508 | printf_debug("0x5C: 0x%08x (FREG2)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 509 | mmio_readl(spibar + 0x5C)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 510 | printf_debug("0x60: 0x%08x (FREG3)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 511 | mmio_readl(spibar + 0x60)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 512 | printf_debug("0x64: 0x%08x (FREG4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 513 | mmio_readl(spibar + 0x64)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 514 | printf_debug("0x74: 0x%08x (PR0)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 515 | mmio_readl(spibar + 0x74)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 516 | printf_debug("0x78: 0x%08x (PR1)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 517 | mmio_readl(spibar + 0x78)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 518 | printf_debug("0x7C: 0x%08x (PR2)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 519 | mmio_readl(spibar + 0x7C)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 520 | printf_debug("0x80: 0x%08x (PR3)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 521 | mmio_readl(spibar + 0x80)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 522 | printf_debug("0x84: 0x%08x (PR4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 523 | mmio_readl(spibar + 0x84)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 524 | printf_debug("0x90: 0x%08x (SSFS, SSFC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 525 | mmio_readl(spibar + 0x90)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 526 | printf_debug("0x94: 0x%04x (PREOP)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 527 | mmio_readw(spibar + 0x94)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 528 | printf_debug("0x96: 0x%04x (OPTYPE)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 529 | mmio_readw(spibar + 0x96)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 530 | printf_debug("0x98: 0x%08x (OPMENU)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 531 | mmio_readl(spibar + 0x98)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 532 | printf_debug("0x9C: 0x%08x (OPMENU+4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 533 | mmio_readl(spibar + 0x9C)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 534 | printf_debug("0xA0: 0x%08x (BBAR)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 535 | mmio_readl(spibar + 0xA0)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 536 | printf_debug("0xB0: 0x%08x (FDOC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 537 | mmio_readl(spibar + 0xB0)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 538 | if (tmp2 & (1 << 15)) { |
| 539 | printf("WARNING: SPI Configuration Lockdown activated.\n"); |
| 540 | ichspi_lock = 1; |
| 541 | } |
Peter Stuge | e8a3e4c | 2008-12-22 14:12:08 +0000 | [diff] [blame] | 542 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 543 | break; |
| 544 | default: |
| 545 | /* Nothing */ |
| 546 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 549 | old = pci_read_byte(dev, 0xdc); |
| 550 | printf_debug("SPI Read Configuration: "); |
| 551 | new = (old >> 2) & 0x3; |
| 552 | switch (new) { |
| 553 | case 0: |
| 554 | case 1: |
| 555 | case 2: |
| 556 | printf_debug("prefetching %sabled, caching %sabled, ", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 557 | (new & 0x2) ? "en" : "dis", |
| 558 | (new & 0x1) ? "dis" : "en"); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 559 | break; |
| 560 | default: |
| 561 | printf_debug("invalid prefetching/caching settings, "); |
| 562 | break; |
| 563 | } |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 564 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 565 | return ret; |
| 566 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 567 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 568 | 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] | 569 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 570 | return enable_flash_ich_dc_spi(dev, name, 7); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 571 | } |
| 572 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 573 | static int enable_flash_ich8(struct pci_dev *dev, const char *name) |
| 574 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 575 | return enable_flash_ich_dc_spi(dev, name, 8); |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 576 | } |
| 577 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 578 | static int enable_flash_ich9(struct pci_dev *dev, const char *name) |
| 579 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 580 | return enable_flash_ich_dc_spi(dev, name, 9); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 583 | static int enable_flash_ich10(struct pci_dev *dev, const char *name) |
| 584 | { |
| 585 | return enable_flash_ich_dc_spi(dev, name, 10); |
| 586 | } |
| 587 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 588 | static int enable_flash_vt823x(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 589 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 590 | uint8_t val; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 591 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 592 | /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */ |
Bari Ari | 9477c4e | 2008-04-29 13:46:38 +0000 | [diff] [blame] | 593 | pci_write_byte(dev, 0x41, 0x7f); |
| 594 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 595 | /* ROM write enable */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 596 | val = pci_read_byte(dev, 0x40); |
| 597 | val |= 0x10; |
| 598 | pci_write_byte(dev, 0x40, val); |
| 599 | |
| 600 | if (pci_read_byte(dev, 0x40) != val) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 601 | printf("\nWARNING: Failed to enable flash write on \"%s\"\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 602 | name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 603 | return -1; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 604 | } |
Luc Verhaegen | 6382b44 | 2007-03-02 22:16:38 +0000 | [diff] [blame] | 605 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 606 | return 0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 609 | static int enable_flash_cs5530(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 610 | { |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 611 | uint8_t reg8; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 612 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 613 | #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */ |
| 614 | #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 615 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 616 | #define LOWER_ROM_ADDRESS_RANGE (1 << 0) |
| 617 | #define ROM_WRITE_ENABLE (1 << 1) |
| 618 | #define UPPER_ROM_ADDRESS_RANGE (1 << 2) |
| 619 | #define BIOS_ROM_POSITIVE_DECODE (1 << 5) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 620 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 621 | /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and |
| 622 | * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB. |
| 623 | * Make the configured ROM areas writable. |
| 624 | */ |
| 625 | reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG); |
| 626 | reg8 |= LOWER_ROM_ADDRESS_RANGE; |
| 627 | reg8 |= UPPER_ROM_ADDRESS_RANGE; |
| 628 | reg8 |= ROM_WRITE_ENABLE; |
| 629 | pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 630 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 631 | /* Set positive decode on ROM. */ |
| 632 | reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2); |
| 633 | reg8 |= BIOS_ROM_POSITIVE_DECODE; |
| 634 | pci_write_byte(dev, DECODE_CONTROL_REG2, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 635 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 636 | return 0; |
| 637 | } |
| 638 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 639 | /** |
| 640 | * Geode systems write protect the BIOS via RCONFs (cache settings similar |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 641 | * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 642 | * |
| 643 | * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL. |
| 644 | * To enable write to NOR Boot flash for the benefit of systems that have such |
| 645 | * 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] | 646 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 647 | static int enable_flash_cs5536(struct pci_dev *dev, const char *name) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 648 | { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 649 | #define MSR_RCONF_DEFAULT 0x1808 |
| 650 | #define MSR_NORF_CTL 0x51400018 |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 651 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 652 | msr_t msr; |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 653 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 654 | /* Geode only has a single core */ |
| 655 | if (setup_cpu_msr(0)) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 656 | return -1; |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 657 | |
| 658 | msr = rdmsr(MSR_RCONF_DEFAULT); |
| 659 | if ((msr.hi >> 24) != 0x22) { |
| 660 | msr.hi &= 0xfbffffff; |
| 661 | wrmsr(MSR_RCONF_DEFAULT, msr); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 662 | } |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 663 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 664 | msr = rdmsr(MSR_NORF_CTL); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 665 | /* Raise WE_CS3 bit. */ |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 666 | msr.lo |= 0x08; |
| 667 | wrmsr(MSR_NORF_CTL, msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 668 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 669 | cleanup_cpu_msr(); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 670 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 671 | #undef MSR_RCONF_DEFAULT |
| 672 | #undef MSR_NORF_CTL |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 673 | return 0; |
| 674 | } |
| 675 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 676 | static int enable_flash_sc1100(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 677 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 678 | uint8_t new; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 679 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 680 | pci_write_byte(dev, 0x52, 0xee); |
| 681 | |
| 682 | new = pci_read_byte(dev, 0x52); |
| 683 | |
| 684 | if (new != 0xee) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 685 | printf_debug("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x52, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 686 | return -1; |
| 687 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 688 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 689 | return 0; |
| 690 | } |
| 691 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 692 | /* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 693 | static int enable_flash_amd8111(struct pci_dev *dev, const char *name) |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 694 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 695 | uint8_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 696 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 697 | /* Enable decoding at 0xffb00000 to 0xffffffff. */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 698 | old = pci_read_byte(dev, 0x43); |
Ollie Lho | d11f361 | 2004-12-07 17:19:04 +0000 | [diff] [blame] | 699 | new = old | 0xC0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 700 | if (new != old) { |
| 701 | pci_write_byte(dev, 0x43, new); |
| 702 | if (pci_read_byte(dev, 0x43) != new) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 703 | printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x43, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 704 | } |
| 705 | } |
| 706 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 707 | /* Enable 'ROM write' bit. */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 708 | old = pci_read_byte(dev, 0x40); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 709 | new = old | 0x01; |
| 710 | if (new == old) |
| 711 | return 0; |
| 712 | pci_write_byte(dev, 0x40, new); |
| 713 | |
| 714 | if (pci_read_byte(dev, 0x40) != new) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 715 | printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 716 | return -1; |
| 717 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 718 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 719 | return 0; |
| 720 | } |
| 721 | |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 722 | static int enable_flash_sb600(struct pci_dev *dev, const char *name) |
| 723 | { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 724 | uint32_t tmp, prot; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 725 | uint8_t reg; |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 726 | struct pci_dev *smbus_dev; |
| 727 | int has_spi = 1; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 728 | |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 729 | /* Clear ROM protect 0-3. */ |
| 730 | for (reg = 0x50; reg < 0x60; reg += 4) { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 731 | prot = pci_read_long(dev, reg); |
| 732 | /* No protection flags for this region?*/ |
| 733 | if ((prot & 0x3) == 0) |
| 734 | continue; |
| 735 | printf_debug("SB600 %s%sprotected from %u to %u\n", |
| 736 | (prot & 0x1) ? "write " : "", |
| 737 | (prot & 0x2) ? "read " : "", |
| 738 | (prot & 0xfffffc00), |
| 739 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
| 740 | prot &= 0xfffffffc; |
| 741 | pci_write_byte(dev, reg, prot); |
| 742 | prot = pci_read_long(dev, reg); |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 743 | if (prot & 0x3) |
Peter Stuge | 19997ae | 2009-05-06 15:05:39 +0000 | [diff] [blame] | 744 | printf("SB600 %s%sunprotect failed from %u to %u\n", |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 745 | (prot & 0x1) ? "write " : "", |
| 746 | (prot & 0x2) ? "read " : "", |
| 747 | (prot & 0xfffffc00), |
| 748 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 749 | } |
| 750 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 751 | /* Read SPI_BaseAddr */ |
| 752 | tmp = pci_read_long(dev, 0xa0); |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 753 | tmp &= 0xffffffe0; /* remove bits 4-0 (reserved) */ |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 754 | printf_debug("SPI base address is at 0x%x\n", tmp); |
| 755 | |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 756 | /* If the BAR has address 0, it is unlikely SPI is used. */ |
| 757 | if (!tmp) |
| 758 | has_spi = 0; |
| 759 | |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 760 | if (has_spi) { |
| 761 | /* Physical memory has to be mapped at page (4k) boundaries. */ |
| 762 | sb600_spibar = physmap("SB600 SPI registers", tmp & 0xfffff000, |
| 763 | 0x1000); |
| 764 | /* The low bits of the SPI base address are used as offset into |
| 765 | * the mapped page. |
| 766 | */ |
| 767 | sb600_spibar += tmp & 0xfff; |
| 768 | |
| 769 | tmp = pci_read_long(dev, 0xa0); |
| 770 | printf_debug("AltSpiCSEnable=%i, SpiRomEnable=%i, " |
| 771 | "AbortEnable=%i\n", tmp & 0x1, (tmp & 0x2) >> 1, |
| 772 | (tmp & 0x4) >> 2); |
| 773 | tmp = (pci_read_byte(dev, 0xba) & 0x4) >> 2; |
| 774 | printf_debug("PrefetchEnSPIFromIMC=%i, ", tmp); |
| 775 | |
| 776 | tmp = pci_read_byte(dev, 0xbb); |
| 777 | printf_debug("PrefetchEnSPIFromHost=%i, SpiOpEnInLpcMode=%i\n", |
| 778 | tmp & 0x1, (tmp & 0x20) >> 5); |
| 779 | tmp = mmio_readl(sb600_spibar); |
| 780 | printf_debug("SpiArbEnable=%i, SpiAccessMacRomEn=%i, " |
| 781 | "SpiHostAccessRomEn=%i, ArbWaitCount=%i, " |
| 782 | "SpiBridgeDisable=%i, DropOneClkOnRd=%i\n", |
| 783 | (tmp >> 19) & 0x1, (tmp >> 22) & 0x1, |
| 784 | (tmp >> 23) & 0x1, (tmp >> 24) & 0x7, |
| 785 | (tmp >> 27) & 0x1, (tmp >> 28) & 0x1); |
| 786 | } |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 787 | |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 788 | /* Look for the SMBus device. */ |
| 789 | smbus_dev = pci_dev_find(0x1002, 0x4385); |
| 790 | |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 791 | if (has_spi && !smbus_dev) { |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 792 | fprintf(stderr, "ERROR: SMBus device not found. Not enabling SPI.\n"); |
| 793 | has_spi = 0; |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 794 | } |
| 795 | if (has_spi) { |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 796 | /* Note about the bit tests below: If a bit is zero, the GPIO is SPI. */ |
| 797 | /* GPIO11/SPI_DO and GPIO12/SPI_DI status */ |
| 798 | reg = pci_read_byte(smbus_dev, 0xAB); |
| 799 | reg &= 0xC0; |
| 800 | printf_debug("GPIO11 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_DO"); |
| 801 | printf_debug("GPIO12 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_DI"); |
| 802 | if (reg != 0x00) |
| 803 | has_spi = 0; |
| 804 | /* GPIO31/SPI_HOLD and GPIO32/SPI_CS status */ |
| 805 | reg = pci_read_byte(smbus_dev, 0x83); |
| 806 | reg &= 0xC0; |
| 807 | printf_debug("GPIO31 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_HOLD"); |
| 808 | printf_debug("GPIO32 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_CS"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 809 | /* SPI_HOLD is not used on all boards, filter it out. */ |
| 810 | if ((reg & 0x80) != 0x00) |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 811 | has_spi = 0; |
| 812 | /* GPIO47/SPI_CLK status */ |
| 813 | reg = pci_read_byte(smbus_dev, 0xA7); |
| 814 | reg &= 0x40; |
| 815 | printf_debug("GPIO47 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_CLK"); |
| 816 | if (reg != 0x00) |
| 817 | has_spi = 0; |
| 818 | } |
| 819 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 820 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH; |
| 821 | if (has_spi) { |
| 822 | buses_supported |= CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 823 | spi_controller = SPI_CONTROLLER_SB600; |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 824 | } |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 825 | |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 826 | /* Read ROM strap override register. */ |
| 827 | OUTB(0x8f, 0xcd6); |
| 828 | reg = INB(0xcd7); |
| 829 | reg &= 0x0e; |
| 830 | printf_debug("ROM strap override is %sactive", (reg & 0x02) ? "" : "not "); |
| 831 | if (reg & 0x02) { |
| 832 | switch ((reg & 0x0c) >> 2) { |
| 833 | case 0x00: |
| 834 | printf_debug(": LPC"); |
| 835 | break; |
| 836 | case 0x01: |
| 837 | printf_debug(": PCI"); |
| 838 | break; |
| 839 | case 0x02: |
| 840 | printf_debug(": FWH"); |
| 841 | break; |
| 842 | case 0x03: |
| 843 | printf_debug(": SPI"); |
| 844 | break; |
| 845 | } |
| 846 | } |
| 847 | printf_debug("\n"); |
| 848 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 849 | /* Force enable SPI ROM in SB600 PM register. |
| 850 | * 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] | 851 | * But how can we know which ROM we are going to handle? So we have |
| 852 | * 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] | 853 | * only SPI ROM if we boot via SPI ROM. If you want to access SPI on |
| 854 | * boards with LPC straps, you have to use the code below. |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 855 | */ |
| 856 | /* |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 857 | OUTB(0x8f, 0xcd6); |
| 858 | OUTB(0x0e, 0xcd7); |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 859 | */ |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 860 | |
| 861 | return 0; |
| 862 | } |
| 863 | |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 864 | static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name) |
| 865 | { |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 866 | uint8_t tmp; |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 867 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 868 | pci_write_byte(dev, 0x92, 0); |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 869 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 870 | tmp = pci_read_byte(dev, 0x6d); |
| 871 | tmp |= 0x01; |
| 872 | pci_write_byte(dev, 0x6d, tmp); |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 873 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 874 | return 0; |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 877 | static int enable_flash_ck804(struct pci_dev *dev, const char *name) |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 878 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 879 | uint8_t old, new; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 880 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 881 | old = pci_read_byte(dev, 0x88); |
| 882 | new = old | 0xc0; |
| 883 | if (new != old) { |
| 884 | pci_write_byte(dev, 0x88, new); |
| 885 | if (pci_read_byte(dev, 0x88) != new) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 886 | printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 887 | } |
| 888 | } |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 889 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 890 | old = pci_read_byte(dev, 0x6d); |
| 891 | new = old | 0x01; |
| 892 | if (new == old) |
| 893 | return 0; |
| 894 | pci_write_byte(dev, 0x6d, new); |
| 895 | |
| 896 | if (pci_read_byte(dev, 0x6d) != new) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 897 | printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 898 | return -1; |
| 899 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 900 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 901 | return 0; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 902 | } |
| 903 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 904 | /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */ |
| 905 | static int enable_flash_sb400(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 906 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 907 | uint8_t tmp; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 908 | struct pci_dev *smbusdev; |
| 909 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 910 | /* Look for the SMBus device. */ |
Carl-Daniel Hailfinger | f6e3efb | 2009-05-06 00:35:31 +0000 | [diff] [blame] | 911 | smbusdev = pci_dev_find(0x1002, 0x4372); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 912 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 913 | if (!smbusdev) { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 914 | fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n"); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 915 | exit(1); |
| 916 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 917 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 918 | /* Enable some SMBus stuff. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 919 | tmp = pci_read_byte(smbusdev, 0x79); |
| 920 | tmp |= 0x01; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 921 | pci_write_byte(smbusdev, 0x79, tmp); |
| 922 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 923 | /* Change southbridge. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 924 | tmp = pci_read_byte(dev, 0x48); |
| 925 | tmp |= 0x21; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 926 | pci_write_byte(dev, 0x48, tmp); |
| 927 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 928 | /* Now become a bit silly. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 929 | tmp = INB(0xc6f); |
| 930 | OUTB(tmp, 0xeb); |
| 931 | OUTB(tmp, 0xeb); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 932 | tmp |= 0x40; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 933 | OUTB(tmp, 0xc6f); |
| 934 | OUTB(tmp, 0xeb); |
| 935 | OUTB(tmp, 0xeb); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 936 | |
| 937 | return 0; |
| 938 | } |
| 939 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 940 | static int enable_flash_mcp55(struct pci_dev *dev, const char *name) |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 941 | { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 942 | uint8_t old, new, byte; |
| 943 | uint16_t word; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 944 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 945 | /* Set the 0-16 MB enable bits. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 946 | byte = pci_read_byte(dev, 0x88); |
| 947 | byte |= 0xff; /* 256K */ |
| 948 | pci_write_byte(dev, 0x88, byte); |
| 949 | byte = pci_read_byte(dev, 0x8c); |
| 950 | byte |= 0xff; /* 1M */ |
| 951 | pci_write_byte(dev, 0x8c, byte); |
| 952 | word = pci_read_word(dev, 0x90); |
Carl-Daniel Hailfinger | dca0ab1 | 2007-10-17 22:30:07 +0000 | [diff] [blame] | 953 | word |= 0x7fff; /* 16M */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 954 | pci_write_word(dev, 0x90, word); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 955 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 956 | old = pci_read_byte(dev, 0x6d); |
| 957 | new = old | 0x01; |
| 958 | if (new == old) |
| 959 | return 0; |
| 960 | pci_write_byte(dev, 0x6d, new); |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 961 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 962 | if (pci_read_byte(dev, 0x6d) != new) { |
Stefan Reinauer | 630c79d | 2009-08-11 12:15:39 +0000 | [diff] [blame] | 963 | printf_debug("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 964 | return -1; |
| 965 | } |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 966 | |
| 967 | return 0; |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 968 | } |
| 969 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 970 | static int enable_flash_ht1000(struct pci_dev *dev, const char *name) |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 971 | { |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 972 | uint8_t byte; |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 973 | |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 974 | /* Set the 4MB enable bit. */ |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 975 | byte = pci_read_byte(dev, 0x41); |
| 976 | byte |= 0x0e; |
| 977 | pci_write_byte(dev, 0x41, byte); |
| 978 | |
| 979 | byte = pci_read_byte(dev, 0x43); |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 980 | byte |= (1 << 4); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 981 | pci_write_byte(dev, 0x43, byte); |
| 982 | |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 983 | return 0; |
| 984 | } |
| 985 | |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 986 | /** |
| 987 | * Usually on the x86 architectures (and on other PC-like platforms like some |
| 988 | * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD |
| 989 | * Elan SC520 only a small piece of the system flash is mapped there, but the |
| 990 | * complete flash is mapped somewhere below 1G. The position can be determined |
| 991 | * by the BOOTCS PAR register. |
| 992 | */ |
| 993 | static int get_flashbase_sc520(struct pci_dev *dev, const char *name) |
| 994 | { |
| 995 | int i, bootcs_found = 0; |
| 996 | uint32_t parx = 0; |
| 997 | void *mmcr; |
| 998 | |
| 999 | /* 1. Map MMCR */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 1000 | mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1001 | |
| 1002 | /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for |
| 1003 | * BOOTCS region (PARx[31:29] = 100b)e |
| 1004 | */ |
| 1005 | for (i = 0x88; i <= 0xc4; i += 4) { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 1006 | parx = mmio_readl(mmcr + i); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1007 | if ((parx >> 29) == 4) { |
| 1008 | bootcs_found = 1; |
| 1009 | break; /* BOOTCS found */ |
| 1010 | } |
| 1011 | } |
| 1012 | |
| 1013 | /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0] |
| 1014 | * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0] |
| 1015 | */ |
| 1016 | if (bootcs_found) { |
| 1017 | if (parx & (1 << 25)) { |
| 1018 | parx &= (1 << 14) - 1; /* Mask [13:0] */ |
| 1019 | flashbase = parx << 16; |
| 1020 | } else { |
| 1021 | parx &= (1 << 18) - 1; /* Mask [17:0] */ |
| 1022 | flashbase = parx << 12; |
| 1023 | } |
| 1024 | } else { |
| 1025 | printf("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n"); |
| 1026 | } |
| 1027 | |
| 1028 | /* 4. Clean up */ |
Carl-Daniel Hailfinger | be72681 | 2009-08-09 12:44:08 +0000 | [diff] [blame] | 1029 | physunmap(mmcr, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1030 | return 0; |
| 1031 | } |
| 1032 | |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1033 | /* Please keep this list alphabetically sorted by vendor/device. */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1034 | const struct penable chipset_enables[] = { |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1035 | {0x10B9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533}, |
| 1036 | {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111}, |
| 1037 | {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111}, |
| 1038 | {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530}, |
| 1039 | {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536}, |
Nils Jacobs | e715c7b | 2009-09-23 02:09:23 +0000 | [diff] [blame] | 1040 | {0x1022, 0x2090, OK, "AMD", "CS5536", enable_flash_cs5536}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1041 | {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520}, |
| 1042 | {0x1002, 0x438D, OK, "AMD", "SB600", enable_flash_sb600}, |
Carl-Daniel Hailfinger | 174962d | 2009-09-01 22:13:42 +0000 | [diff] [blame] | 1043 | {0x1002, 0x439d, OK, "AMD", "SB700/SB710/SB750", enable_flash_sb600}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1044 | {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100}, |
| 1045 | {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400}, |
| 1046 | {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000}, |
Carl-Daniel Hailfinger | 797a834 | 2009-11-26 16:51:39 +0000 | [diff] [blame] | 1047 | {0x8086, 0x3b00, NT, "Intel", "3400 Desktop", enable_flash_ich10}, |
| 1048 | {0x8086, 0x3b01, NT, "Intel", "3400 Mobile", enable_flash_ich10}, |
| 1049 | {0x8086, 0x3b0d, NT, "Intel", "3400 Mobile SFF", enable_flash_ich10}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1050 | {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1051 | {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e}, |
| 1052 | {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc}, |
| 1053 | {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1054 | {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1055 | {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10}, |
| 1056 | {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10}, |
| 1057 | {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10}, |
| 1058 | {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1059 | {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e}, |
| 1060 | {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1061 | {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1062 | {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1063 | {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e}, |
| 1064 | {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e}, |
| 1065 | {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1066 | {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc}, |
| 1067 | {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1068 | {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7}, |
| 1069 | {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7}, |
| 1070 | {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7}, |
| 1071 | {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1072 | {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1073 | {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8}, |
| 1074 | {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1075 | {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1076 | {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1077 | {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8}, |
| 1078 | {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1079 | {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9}, |
| 1080 | {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1081 | {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1082 | {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9}, |
| 1083 | {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9}, |
Carl-Daniel Hailfinger | 95baaad | 2009-08-21 17:26:13 +0000 | [diff] [blame] | 1084 | {0x8086, 0x2910, OK, "Intel", "ICH9 Engineering Sample", enable_flash_ich9}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1085 | {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4}, |
| 1086 | {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4}, |
| 1087 | {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4}, |
| 1088 | {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4}, |
Luc Verhaegen | aad7e67 | 2009-10-06 11:32:21 +0000 | [diff] [blame] | 1089 | {0x10de, 0x0030, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1090 | {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */ |
| 1091 | {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */ |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 1092 | {0x10de, 0x0060, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 1093 | /* Slave, should not be here, to fix known bug for A01. */ |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1094 | {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804}, |
| 1095 | {0x10de, 0x0260, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1096 | {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1097 | {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1098 | {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1099 | {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/ |
| 1100 | {0x10de, 0x0361, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1101 | {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1102 | {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1103 | {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1104 | {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1105 | {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1106 | {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */ |
| 1107 | {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp55}, |
Carl-Daniel Hailfinger | 6a0269e | 2009-11-15 17:20:21 +0000 | [diff] [blame] | 1108 | {0x1039, 0x0496, NT, "SiS", "85C496+497", enable_flash_sis85c496}, |
| 1109 | {0x1039, 0x0406, NT, "SiS", "501/5101/5501", enable_flash_sis501}, |
| 1110 | {0x1039, 0x5511, NT, "SiS", "5511", enable_flash_sis5511}, |
| 1111 | {0x1039, 0x5596, NT, "SiS", "5596", enable_flash_sis5596}, |
| 1112 | {0x1039, 0x5571, NT, "SiS", "5571", enable_flash_sis530}, |
| 1113 | {0x1039, 0x5591, NT, "SiS", "5591/5592", enable_flash_sis530}, |
| 1114 | {0x1039, 0x5597, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530}, |
| 1115 | {0x1039, 0x0530, NT, "SiS", "530", enable_flash_sis530}, |
| 1116 | {0x1039, 0x5600, NT, "SiS", "600", enable_flash_sis530}, |
| 1117 | {0x1039, 0x0620, NT, "SiS", "620", enable_flash_sis530}, |
| 1118 | {0x1039, 0x0540, NT, "SiS", "540", enable_flash_sis540}, |
Luc Verhaegen | 9892ca6 | 2009-12-09 07:43:13 +0000 | [diff] [blame] | 1119 | {0x1039, 0x0630, NT, "SiS", "630", enable_flash_sis540}, |
| 1120 | {0x1039, 0x0635, NT, "SiS", "635", enable_flash_sis540}, |
| 1121 | {0x1039, 0x0640, NT, "SiS", "640", enable_flash_sis540}, |
| 1122 | {0x1039, 0x0645, NT, "SiS", "645", enable_flash_sis540}, |
| 1123 | {0x1039, 0x0646, NT, "SiS", "645DX", enable_flash_sis540}, |
| 1124 | {0x1039, 0x0648, NT, "SiS", "648", enable_flash_sis540}, |
| 1125 | {0x1039, 0x0650, NT, "SiS", "650", enable_flash_sis540}, |
| 1126 | {0x1039, 0x0651, NT, "SiS", "651", enable_flash_sis540}, |
| 1127 | {0x1039, 0x0655, NT, "SiS", "655", enable_flash_sis540}, |
| 1128 | {0x1039, 0x0730, NT, "SiS", "730", enable_flash_sis540}, |
| 1129 | {0x1039, 0x0733, NT, "SiS", "733", enable_flash_sis540}, |
| 1130 | {0x1039, 0x0735, OK, "SiS", "735", enable_flash_sis540}, |
| 1131 | {0x1039, 0x0740, NT, "SiS", "740", enable_flash_sis540}, |
| 1132 | {0x1039, 0x0745, NT, "SiS", "745", enable_flash_sis540}, |
| 1133 | {0x1039, 0x0746, NT, "SiS", "746", enable_flash_sis540}, |
| 1134 | {0x1039, 0x0748, NT, "SiS", "748", enable_flash_sis540}, |
| 1135 | {0x1039, 0x0755, NT, "SiS", "755", enable_flash_sis540}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1136 | {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x}, |
| 1137 | {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x}, |
Mateusz Murawski | e6abef0 | 2009-06-18 12:42:46 +0000 | [diff] [blame] | 1138 | {0x1106, 0x3074, NT, "VIA", "VT8233", enable_flash_vt823x}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1139 | {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x}, |
| 1140 | {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x}, |
| 1141 | {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x}, |
| 1142 | {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi}, |
Arjan Koers | 8dfea83 | 2009-06-15 00:03:37 +0000 | [diff] [blame] | 1143 | {0x1106, 0x8353, OK, "VIA", "VX800", enable_flash_vt8237s_spi}, |
Uwe Hermann | 3e0774d | 2009-09-25 01:05:06 +0000 | [diff] [blame] | 1144 | {0x1106, 0x0596, OK, "VIA", "VT82C596", enable_flash_amd8111}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1145 | {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111}, |
| 1146 | {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111}, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1147 | |
| 1148 | {}, |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1149 | }; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 1150 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1151 | int chipset_flash_enable(void) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1152 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1153 | struct pci_dev *dev = 0; |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1154 | int ret = -2; /* Nothing! */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1155 | int i; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1156 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1157 | /* Now let's try to find the chipset we have... */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1158 | for (i = 0; chipset_enables[i].vendor_name != NULL; i++) { |
| 1159 | dev = pci_dev_find(chipset_enables[i].vendor_id, |
| 1160 | chipset_enables[i].device_id); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1161 | if (dev) |
| 1162 | break; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1163 | } |
| 1164 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1165 | if (dev) { |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1166 | printf("Found chipset \"%s %s\", enabling flash write... ", |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1167 | chipset_enables[i].vendor_name, |
| 1168 | chipset_enables[i].device_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1169 | |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1170 | ret = chipset_enables[i].doit(dev, |
| 1171 | chipset_enables[i].device_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1172 | if (ret) |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 1173 | printf("FAILED!\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1174 | else |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 1175 | printf("OK.\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1176 | } |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 1177 | printf("This chipset supports the following protocols: %s.\n", |
Uwe Hermann | 9899cad | 2009-06-28 21:47:57 +0000 | [diff] [blame] | 1178 | flashbuses_to_text(buses_supported)); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1179 | |
| 1180 | return ret; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1181 | } |