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