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