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