Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 5 | * Copyright (C) 2005-2009 coresystems GmbH |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de> |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 7 | * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 8 | * Copyright (C) 2009 Kontron Modular Computers GmbH |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 9 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; version 2 of the License. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 13 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * Contains the chipset specific flash enables. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 26 | */ |
| 27 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 28 | #define _LARGEFILE64_SOURCE |
| 29 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 30 | #include <stdlib.h> |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 31 | #include <string.h> |
Carl-Daniel Hailfinger | dcef67e | 2010-06-21 23:20:15 +0000 | [diff] [blame] | 32 | #include <unistd.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 33 | #include "flash.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 34 | #include "programmer.h" |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 35 | |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 36 | #define NOT_DONE_YET 1 |
| 37 | |
Carl-Daniel Hailfinger | 1d3a2fe | 2010-07-27 22:03:46 +0000 | [diff] [blame] | 38 | #if defined(__i386__) || defined(__x86_64__) |
| 39 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 40 | 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] | 41 | { |
| 42 | uint8_t tmp; |
| 43 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 44 | /* |
| 45 | * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and |
| 46 | * 0xFFFE0000-0xFFFFFFFF ROM select enable. |
| 47 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 48 | tmp = pci_read_byte(dev, 0x47); |
| 49 | tmp |= 0x46; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 50 | rpci_write_byte(dev, 0x47, tmp); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
Carl-Daniel Hailfinger | 9f46cfc | 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; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 61 | rpci_write_byte(dev, 0xd0, tmp); |
Carl-Daniel Hailfinger | 9f46cfc | 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. */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 75 | rpci_write_byte(dev, 0x40, new); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 76 | newer = pci_read_byte(dev, 0x40); |
| 77 | if (newer != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 78 | msg_pinfo("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name); |
| 79 | msg_pinfo("Stuck at 0x%x\n", newer); |
Carl-Daniel Hailfinger | 9f46cfc | 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) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 95 | msg_perr("No southbridge found for %s!\n", name); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 96 | if (sbdev) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 97 | msg_pdbg("Found southbridge %04x:%04x at %02x:%02x:%01x\n", |
Carl-Daniel Hailfinger | 9f46cfc | 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 | |
Carl-Daniel Hailfinger | 9f46cfc | 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; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 163 | rpci_write_byte(sbdev, 0x45, new); |
Luc Verhaegen | 9cce2f5 | 2010-01-10 15:01:08 +0000 | [diff] [blame] | 164 | newer = pci_read_byte(sbdev, 0x45); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 165 | if (newer != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 166 | msg_pinfo("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name); |
| 167 | msg_pinfo("Stuck at 0x%x\n", newer); |
Carl-Daniel Hailfinger | 9f46cfc | 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; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 189 | rpci_write_byte(sbdev, 0x45, new); |
Luc Verhaegen | 9cce2f5 | 2010-01-10 15:01:08 +0000 | [diff] [blame] | 190 | newer = pci_read_byte(sbdev, 0x45); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 191 | if (newer != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 192 | msg_pinfo("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name); |
| 193 | msg_pinfo("Stuck at 0x%x\n", newer); |
Carl-Daniel Hailfinger | 9f46cfc | 2009-11-15 17:13:29 +0000 | [diff] [blame] | 194 | ret = -1; |
| 195 | } |
| 196 | |
| 197 | return ret; |
| 198 | } |
| 199 | |
Uwe Hermann | 987942d | 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 Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 206 | static int enable_flash_piix4(struct pci_dev *dev, const char *name) |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 207 | { |
| 208 | uint16_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 209 | uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */ |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 210 | |
Maciej Pijanka | a661e15 | 2009-12-08 17:26:24 +0000 | [diff] [blame] | 211 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 212 | |
Uwe Hermann | ea2c66d | 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 Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 216 | * FFF00000-FFF7FFFF are forwarded to ISA). |
Uwe Hermann | c556d32 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 217 | * Note: This bit is reserved on PIIX/PIIX3/MPIIX. |
Uwe Hermann | a7e0548 | 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 Hermann | c556d32 | 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 Hermann | 8720345 | 2008-10-26 18:40:42 +0000 | [diff] [blame] | 230 | else |
| 231 | new = old | 0x02c4; |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 232 | |
| 233 | if (new == old) |
| 234 | return 0; |
| 235 | |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 236 | rpci_write_word(dev, xbcs, new); |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 237 | |
| 238 | if (pci_read_word(dev, xbcs) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 239 | msg_pinfo("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] | 240 | return -1; |
| 241 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 242 | |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 243 | return 0; |
| 244 | } |
| 245 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 246 | /* |
Carl-Daniel Hailfinger | 67f9ea3 | 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 Hermann | 372eeb5 | 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) |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 252 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 253 | uint8_t old, new; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 254 | |
Uwe Hermann | 372eeb5 | 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 Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 257 | * 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] | 258 | */ |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 259 | old = pci_read_byte(dev, bios_cntl); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 260 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 261 | msg_pdbg("\nBIOS Lock Enable: %sabled, ", |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 262 | (old & (1 << 1)) ? "en" : "dis"); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 263 | msg_pdbg("BIOS Write Enable: %sabled, ", |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 264 | (old & (1 << 0)) ? "en" : "dis"); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 265 | msg_pdbg("BIOS_CNTL is 0x%x\n", old); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 266 | |
Stefan Tauner | f9a8da5 | 2011-06-11 18:16:50 +0000 | [diff] [blame] | 267 | /* |
| 268 | * Quote from the 6 Series datasheet (Document Number: 324645-004): |
| 269 | * "Bit 5: SMM BIOS Write Protect Disable (SMM_BWP) |
| 270 | * 1 = BIOS region SMM protection is enabled. |
| 271 | * The BIOS Region is not writable unless all processors are in SMM." |
| 272 | * In earlier chipsets this bit is reserved. */ |
| 273 | if (old & (1 << 5)) { |
| 274 | msg_pinfo("WARNING: BIOS region SMM protection is enabled!\n"); |
| 275 | } |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 276 | |
Stefan Tauner | f9a8da5 | 2011-06-11 18:16:50 +0000 | [diff] [blame] | 277 | new = old | 1; |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 278 | if (new == old) |
| 279 | return 0; |
| 280 | |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 281 | rpci_write_byte(dev, bios_cntl, new); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 282 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 283 | if (pci_read_byte(dev, bios_cntl) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 284 | msg_pinfo("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] | 285 | return -1; |
| 286 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 287 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 288 | return 0; |
| 289 | } |
| 290 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 291 | 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] | 292 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 293 | /* |
| 294 | * Note: ICH5 has registers similar to FWH_SEL1, FWH_SEL2 and |
| 295 | * FWH_DEC_EN1, but they are called FB_SEL1, FB_SEL2, FB_DEC_EN1 and |
| 296 | * FB_DEC_EN2. |
| 297 | */ |
Carl-Daniel Hailfinger | 7f9922d | 2010-06-20 11:04:26 +0000 | [diff] [blame] | 298 | buses_supported = CHIP_BUSTYPE_FWH; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 299 | return enable_flash_ich(dev, name, 0x4e); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 302 | 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] | 303 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 304 | uint32_t fwh_conf; |
| 305 | int i; |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 306 | char *idsel = NULL; |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 307 | int tmp; |
| 308 | int max_decode_fwh_idsel = 0; |
| 309 | int max_decode_fwh_decode = 0; |
| 310 | int contiguous = 1; |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 311 | |
Carl-Daniel Hailfinger | 2b6dcb3 | 2010-07-08 10:13:37 +0000 | [diff] [blame] | 312 | idsel = extract_programmer_param("fwh_idsel"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 313 | if (idsel && strlen(idsel)) { |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 314 | fwh_conf = (uint32_t)strtoul(idsel, NULL, 0); |
| 315 | |
| 316 | /* FIXME: Need to undo this on shutdown. */ |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 317 | msg_pinfo("\nSetting IDSEL=0x%x for top 16 MB", fwh_conf); |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 318 | rpci_write_long(dev, 0xd0, fwh_conf); |
| 319 | rpci_write_word(dev, 0xd4, fwh_conf); |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 320 | /* FIXME: Decode settings are not changed. */ |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 321 | } else if (idsel) { |
| 322 | msg_perr("Error: idsel= specified, but no number given.\n"); |
| 323 | free(idsel); |
| 324 | /* FIXME: Return failure here once internal_init() starts |
| 325 | * to care about the return value of the chipset enable. |
| 326 | */ |
| 327 | exit(1); |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 328 | } |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 329 | free(idsel); |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 330 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 331 | /* Ignore all legacy ranges below 1 MB. |
| 332 | * We currently only support flashing the chip which responds to |
| 333 | * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations |
| 334 | * have to be adjusted. |
| 335 | */ |
| 336 | /* FWH_SEL1 */ |
| 337 | fwh_conf = pci_read_long(dev, 0xd0); |
| 338 | for (i = 7; i >= 0; i--) { |
| 339 | tmp = (fwh_conf >> (i * 4)) & 0xf; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 340 | msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 341 | (0x1ff8 + i) * 0x80000, |
| 342 | (0x1ff0 + i) * 0x80000, |
| 343 | tmp); |
| 344 | if ((tmp == 0) && contiguous) { |
| 345 | max_decode_fwh_idsel = (8 - i) * 0x80000; |
| 346 | } else { |
| 347 | contiguous = 0; |
| 348 | } |
| 349 | } |
| 350 | /* FWH_SEL2 */ |
| 351 | fwh_conf = pci_read_word(dev, 0xd4); |
| 352 | for (i = 3; i >= 0; i--) { |
| 353 | tmp = (fwh_conf >> (i * 4)) & 0xf; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 354 | msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 355 | (0xff4 + i) * 0x100000, |
| 356 | (0xff0 + i) * 0x100000, |
| 357 | tmp); |
| 358 | if ((tmp == 0) && contiguous) { |
| 359 | max_decode_fwh_idsel = (8 - i) * 0x100000; |
| 360 | } else { |
| 361 | contiguous = 0; |
| 362 | } |
| 363 | } |
| 364 | contiguous = 1; |
| 365 | /* FWH_DEC_EN1 */ |
| 366 | fwh_conf = pci_read_word(dev, 0xd8); |
| 367 | for (i = 7; i >= 0; i--) { |
| 368 | tmp = (fwh_conf >> (i + 0x8)) & 0x1; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 369 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 370 | (0x1ff8 + i) * 0x80000, |
| 371 | (0x1ff0 + i) * 0x80000, |
| 372 | tmp ? "en" : "dis"); |
Michael Karcher | 9678539 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 373 | if ((tmp == 1) && contiguous) { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 374 | max_decode_fwh_decode = (8 - i) * 0x80000; |
| 375 | } else { |
| 376 | contiguous = 0; |
| 377 | } |
| 378 | } |
| 379 | for (i = 3; i >= 0; i--) { |
| 380 | tmp = (fwh_conf >> i) & 0x1; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 381 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 382 | (0xff4 + i) * 0x100000, |
| 383 | (0xff0 + i) * 0x100000, |
| 384 | tmp ? "en" : "dis"); |
Michael Karcher | 9678539 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 385 | if ((tmp == 1) && contiguous) { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 386 | max_decode_fwh_decode = (8 - i) * 0x100000; |
| 387 | } else { |
| 388 | contiguous = 0; |
| 389 | } |
| 390 | } |
| 391 | max_rom_decode.fwh = min(max_decode_fwh_idsel, max_decode_fwh_decode); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 392 | msg_pdbg("\nMaximum FWH chip size: 0x%x bytes", max_rom_decode.fwh); |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 393 | |
| 394 | /* If we're called by enable_flash_ich_dc_spi, it will override |
| 395 | * buses_supported anyway. |
| 396 | */ |
| 397 | buses_supported = CHIP_BUSTYPE_FWH; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 398 | return enable_flash_ich(dev, name, 0xdc); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 399 | } |
| 400 | |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 401 | static int enable_flash_poulsbo(struct pci_dev *dev, const char *name) |
| 402 | { |
| 403 | uint16_t old, new; |
| 404 | int err; |
| 405 | |
| 406 | if ((err = enable_flash_ich(dev, name, 0xd8)) != 0) |
| 407 | return err; |
| 408 | |
| 409 | old = pci_read_byte(dev, 0xd9); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 410 | msg_pdbg("BIOS Prefetch Enable: %sabled, ", |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 411 | (old & 1) ? "en" : "dis"); |
| 412 | new = old & ~1; |
| 413 | |
| 414 | if (new != old) |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 415 | rpci_write_byte(dev, 0xd9, new); |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 416 | |
Carl-Daniel Hailfinger | 7f9922d | 2010-06-20 11:04:26 +0000 | [diff] [blame] | 417 | buses_supported = CHIP_BUSTYPE_FWH; |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 422 | #define ICH_STRAP_RSVD 0x00 |
| 423 | #define ICH_STRAP_SPI 0x01 |
| 424 | #define ICH_STRAP_PCI 0x02 |
| 425 | #define ICH_STRAP_LPC 0x03 |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 426 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 427 | static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) |
| 428 | { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 429 | /* Do we really need no write enable? */ |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 430 | return via_init_spi(dev); |
Joshua Roys | f93b36a | 2010-07-01 17:45:54 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 433 | static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, |
| 434 | int ich_generation) |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 435 | { |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 436 | int ret; |
| 437 | uint8_t bbs, buc; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 438 | uint32_t tmp, gcs; |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 439 | void *rcrb; |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 440 | //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line |
| 441 | //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" }; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 442 | static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" }; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 443 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 444 | /* Enable Flash Writes */ |
| 445 | ret = enable_flash_ich_dc(dev, name); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 446 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 447 | /* Get physical address of Root Complex Register Block */ |
| 448 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 449 | msg_pdbg("\nRoot Complex Register Block address = 0x%x\n", tmp); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 450 | |
| 451 | /* Map RCBA to virtual memory */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 452 | rcrb = physmap("ICH RCRB", tmp, 0x4000); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 453 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 454 | gcs = mmio_readl(rcrb + 0x3410); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 455 | msg_pdbg("GCS = 0x%x: ", gcs); |
| 456 | msg_pdbg("BIOS Interface Lock-Down: %sabled, ", |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 457 | (gcs & 0x1) ? "en" : "dis"); |
| 458 | bbs = (gcs >> 10) & 0x3; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 459 | msg_pdbg("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 460 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 461 | buc = mmio_readb(rcrb + 0x3414); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 462 | msg_pdbg("Top Swap : %s\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 463 | (buc & 1) ? "enabled (A16 inverted)" : "not enabled"); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 464 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 465 | /* It seems the ICH7 does not support SPI and LPC chips at the same |
| 466 | * time. At least not with our current code. So we prevent searching |
| 467 | * on ICH7 when the southbridge is strapped to LPC |
| 468 | */ |
| 469 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 470 | buses_supported = CHIP_BUSTYPE_FWH; |
| 471 | if (ich_generation == 7) { |
| 472 | if(bbs == ICH_STRAP_LPC) { |
| 473 | /* No further SPI initialization required */ |
| 474 | return ret; |
| 475 | } |
| 476 | else |
| 477 | /* Disable LPC/FWH if strapped to PCI or SPI */ |
| 478 | buses_supported = 0; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 479 | } |
| 480 | |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 481 | /* this adds CHIP_BUSTYPE_SPI */ |
| 482 | if (ich_init_spi(dev, tmp, rcrb, ich_generation) != 0) { |
| 483 | if (!ret) |
| 484 | ret = ERROR_NONFATAL; |
| 485 | } |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 486 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 487 | return ret; |
| 488 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 489 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 490 | 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] | 491 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 492 | return enable_flash_ich_dc_spi(dev, name, 7); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 493 | } |
| 494 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 495 | static int enable_flash_ich8(struct pci_dev *dev, const char *name) |
| 496 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 497 | return enable_flash_ich_dc_spi(dev, name, 8); |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 498 | } |
| 499 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 500 | static int enable_flash_ich9(struct pci_dev *dev, const char *name) |
| 501 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 502 | return enable_flash_ich_dc_spi(dev, name, 9); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 505 | static int enable_flash_ich10(struct pci_dev *dev, const char *name) |
| 506 | { |
| 507 | return enable_flash_ich_dc_spi(dev, name, 10); |
| 508 | } |
| 509 | |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 510 | static int via_no_byte_merge(struct pci_dev *dev, const char *name) |
| 511 | { |
| 512 | uint8_t val; |
| 513 | |
| 514 | val = pci_read_byte(dev, 0x71); |
| 515 | if (val & 0x40) |
| 516 | { |
| 517 | msg_pdbg("Disabling byte merging\n"); |
| 518 | val &= ~0x40; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 519 | rpci_write_byte(dev, 0x71, val); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 520 | } |
| 521 | return NOT_DONE_YET; /* need to find south bridge, too */ |
| 522 | } |
| 523 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 524 | static int enable_flash_vt823x(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 525 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 526 | uint8_t val; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 527 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 528 | /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 529 | rpci_write_byte(dev, 0x41, 0x7f); |
Bari Ari | 9477c4e | 2008-04-29 13:46:38 +0000 | [diff] [blame] | 530 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 531 | /* ROM write enable */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 532 | val = pci_read_byte(dev, 0x40); |
| 533 | val |= 0x10; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 534 | rpci_write_byte(dev, 0x40, val); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 535 | |
| 536 | if (pci_read_byte(dev, 0x40) != val) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 537 | msg_pinfo("\nWARNING: Failed to enable flash write on \"%s\"\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 538 | name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 539 | return -1; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 540 | } |
Luc Verhaegen | 6382b44 | 2007-03-02 22:16:38 +0000 | [diff] [blame] | 541 | |
Luc Verhaegen | 73d2119 | 2009-12-23 00:54:26 +0000 | [diff] [blame] | 542 | if (dev->device_id == 0x3227) { /* VT8237R */ |
| 543 | /* All memory cycles, not just ROM ones, go to LPC. */ |
| 544 | val = pci_read_byte(dev, 0x59); |
| 545 | val &= ~0x80; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 546 | rpci_write_byte(dev, 0x59, val); |
Luc Verhaegen | 73d2119 | 2009-12-23 00:54:26 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 549 | return 0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 550 | } |
| 551 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 552 | static int enable_flash_cs5530(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 553 | { |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 554 | uint8_t reg8; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 555 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 556 | #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */ |
| 557 | #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */ |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 558 | #define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */ |
| 559 | #define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 560 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 561 | #define LOWER_ROM_ADDRESS_RANGE (1 << 0) |
| 562 | #define ROM_WRITE_ENABLE (1 << 1) |
| 563 | #define UPPER_ROM_ADDRESS_RANGE (1 << 2) |
| 564 | #define BIOS_ROM_POSITIVE_DECODE (1 << 5) |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 565 | #define CS5530_ISA_MASTER (1 << 7) |
| 566 | #define CS5530_ENABLE_SA2320 (1 << 2) |
| 567 | #define CS5530_ENABLE_SA20 (1 << 6) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 568 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 569 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 570 | /* Decode 0x000E0000-0x000FFFFF (128 kB), not just 64 kB, and |
| 571 | * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 kB. |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 572 | * FIXME: Should we really touch the low mapping below 1 MB? Flashrom |
| 573 | * ignores that region completely. |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 574 | * Make the configured ROM areas writable. |
| 575 | */ |
| 576 | reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG); |
| 577 | reg8 |= LOWER_ROM_ADDRESS_RANGE; |
| 578 | reg8 |= UPPER_ROM_ADDRESS_RANGE; |
| 579 | reg8 |= ROM_WRITE_ENABLE; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 580 | rpci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 581 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 582 | /* Set positive decode on ROM. */ |
| 583 | reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2); |
| 584 | reg8 |= BIOS_ROM_POSITIVE_DECODE; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 585 | rpci_write_byte(dev, DECODE_CONTROL_REG2, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 586 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 587 | reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG); |
| 588 | if (reg8 & CS5530_ISA_MASTER) { |
| 589 | /* We have A0-A23 available. */ |
| 590 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 591 | } else { |
| 592 | reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG); |
| 593 | if (reg8 & CS5530_ENABLE_SA2320) { |
| 594 | /* We have A0-19, A20-A23 available. */ |
| 595 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 596 | } else if (reg8 & CS5530_ENABLE_SA20) { |
| 597 | /* We have A0-19, A20 available. */ |
| 598 | max_rom_decode.parallel = 2 * 1024 * 1024; |
| 599 | } else { |
| 600 | /* A20 and above are not active. */ |
| 601 | max_rom_decode.parallel = 1024 * 1024; |
| 602 | } |
| 603 | } |
| 604 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 605 | return 0; |
| 606 | } |
| 607 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 608 | /* |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 609 | * Geode systems write protect the BIOS via RCONFs (cache settings similar |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 610 | * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 611 | * |
| 612 | * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL. |
| 613 | * To enable write to NOR Boot flash for the benefit of systems that have such |
| 614 | * 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] | 615 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 616 | static int enable_flash_cs5536(struct pci_dev *dev, const char *name) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 617 | { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 618 | #define MSR_RCONF_DEFAULT 0x1808 |
| 619 | #define MSR_NORF_CTL 0x51400018 |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 620 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 621 | msr_t msr; |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 622 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 623 | /* Geode only has a single core */ |
| 624 | if (setup_cpu_msr(0)) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 625 | return -1; |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 626 | |
| 627 | msr = rdmsr(MSR_RCONF_DEFAULT); |
| 628 | if ((msr.hi >> 24) != 0x22) { |
| 629 | msr.hi &= 0xfbffffff; |
| 630 | wrmsr(MSR_RCONF_DEFAULT, msr); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 631 | } |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 632 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 633 | msr = rdmsr(MSR_NORF_CTL); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 634 | /* Raise WE_CS3 bit. */ |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 635 | msr.lo |= 0x08; |
| 636 | wrmsr(MSR_NORF_CTL, msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 637 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 638 | cleanup_cpu_msr(); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 639 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 640 | #undef MSR_RCONF_DEFAULT |
| 641 | #undef MSR_NORF_CTL |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 642 | return 0; |
| 643 | } |
| 644 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 645 | static int enable_flash_sc1100(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 646 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 647 | uint8_t new; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 648 | |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 649 | rpci_write_byte(dev, 0x52, 0xee); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 650 | |
| 651 | new = pci_read_byte(dev, 0x52); |
| 652 | |
| 653 | if (new != 0xee) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 654 | msg_pinfo("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] | 655 | return -1; |
| 656 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 657 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 658 | return 0; |
| 659 | } |
| 660 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 661 | /* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 662 | static int enable_flash_amd8111(struct pci_dev *dev, const char *name) |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 663 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 664 | uint8_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 665 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 666 | /* Enable decoding at 0xffb00000 to 0xffffffff. */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 667 | old = pci_read_byte(dev, 0x43); |
Ollie Lho | d11f361 | 2004-12-07 17:19:04 +0000 | [diff] [blame] | 668 | new = old | 0xC0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 669 | if (new != old) { |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 670 | rpci_write_byte(dev, 0x43, new); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 671 | if (pci_read_byte(dev, 0x43) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 672 | msg_pinfo("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] | 673 | } |
| 674 | } |
| 675 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 676 | /* Enable 'ROM write' bit. */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 677 | old = pci_read_byte(dev, 0x40); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 678 | new = old | 0x01; |
| 679 | if (new == old) |
| 680 | return 0; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 681 | rpci_write_byte(dev, 0x40, new); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 682 | |
| 683 | if (pci_read_byte(dev, 0x40) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 684 | msg_pinfo("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] | 685 | return -1; |
| 686 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 687 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 688 | return 0; |
| 689 | } |
| 690 | |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 691 | static int enable_flash_sb600(struct pci_dev *dev, const char *name) |
| 692 | { |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 693 | uint32_t prot; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 694 | uint8_t reg; |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 695 | int ret; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 696 | |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 697 | /* Clear ROM protect 0-3. */ |
| 698 | for (reg = 0x50; reg < 0x60; reg += 4) { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 699 | prot = pci_read_long(dev, reg); |
| 700 | /* No protection flags for this region?*/ |
| 701 | if ((prot & 0x3) == 0) |
| 702 | continue; |
Mathias Krause | 9fbdc03 | 2011-01-01 10:54:09 +0000 | [diff] [blame] | 703 | msg_pinfo("SB600 %s%sprotected from 0x%08x to 0x%08x\n", |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 704 | (prot & 0x1) ? "write " : "", |
| 705 | (prot & 0x2) ? "read " : "", |
Mathias Krause | 9fbdc03 | 2011-01-01 10:54:09 +0000 | [diff] [blame] | 706 | (prot & 0xfffff800), |
| 707 | (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff)); |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 708 | prot &= 0xfffffffc; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 709 | rpci_write_byte(dev, reg, prot); |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 710 | prot = pci_read_long(dev, reg); |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 711 | if (prot & 0x3) |
Mathias Krause | 9fbdc03 | 2011-01-01 10:54:09 +0000 | [diff] [blame] | 712 | msg_perr("SB600 %s%sunprotect failed from 0x%08x to 0x%08x\n", |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 713 | (prot & 0x1) ? "write " : "", |
| 714 | (prot & 0x2) ? "read " : "", |
Mathias Krause | 9fbdc03 | 2011-01-01 10:54:09 +0000 | [diff] [blame] | 715 | (prot & 0xfffff800), |
| 716 | (prot & 0xfffff800) + (((prot & 0x7fc) << 8) | 0x3ff)); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 717 | } |
| 718 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 719 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH; |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 720 | |
| 721 | ret = sb600_probe_spi(dev); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 722 | |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 723 | /* Read ROM strap override register. */ |
| 724 | OUTB(0x8f, 0xcd6); |
| 725 | reg = INB(0xcd7); |
| 726 | reg &= 0x0e; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 727 | msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not "); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 728 | if (reg & 0x02) { |
| 729 | switch ((reg & 0x0c) >> 2) { |
| 730 | case 0x00: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 731 | msg_pdbg(": LPC"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 732 | break; |
| 733 | case 0x01: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 734 | msg_pdbg(": PCI"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 735 | break; |
| 736 | case 0x02: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 737 | msg_pdbg(": FWH"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 738 | break; |
| 739 | case 0x03: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 740 | msg_pdbg(": SPI"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 741 | break; |
| 742 | } |
| 743 | } |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 744 | msg_pdbg("\n"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 745 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 746 | /* Force enable SPI ROM in SB600 PM register. |
| 747 | * 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] | 748 | * But how can we know which ROM we are going to handle? So we have |
| 749 | * 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] | 750 | * only SPI ROM if we boot via SPI ROM. If you want to access SPI on |
| 751 | * boards with LPC straps, you have to use the code below. |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 752 | */ |
| 753 | /* |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 754 | OUTB(0x8f, 0xcd6); |
| 755 | OUTB(0x0e, 0xcd7); |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 756 | */ |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 757 | |
Michael Karcher | b05b9e1 | 2010-07-22 18:04:19 +0000 | [diff] [blame] | 758 | return ret; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 761 | static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name) |
| 762 | { |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 763 | uint8_t tmp; |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 764 | |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 765 | rpci_write_byte(dev, 0x92, 0); |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 766 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 767 | tmp = pci_read_byte(dev, 0x6d); |
| 768 | tmp |= 0x01; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 769 | rpci_write_byte(dev, 0x6d, tmp); |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 770 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 771 | return 0; |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 772 | } |
| 773 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 774 | static int enable_flash_ck804(struct pci_dev *dev, const char *name) |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 775 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 776 | uint8_t old, new; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 777 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 778 | old = pci_read_byte(dev, 0x88); |
| 779 | new = old | 0xc0; |
| 780 | if (new != old) { |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 781 | rpci_write_byte(dev, 0x88, new); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 782 | if (pci_read_byte(dev, 0x88) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 783 | msg_pinfo("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] | 784 | } |
| 785 | } |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 786 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 787 | old = pci_read_byte(dev, 0x6d); |
| 788 | new = old | 0x01; |
| 789 | if (new == old) |
| 790 | return 0; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 791 | rpci_write_byte(dev, 0x6d, new); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 792 | |
| 793 | if (pci_read_byte(dev, 0x6d) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 794 | msg_pinfo("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] | 795 | return -1; |
| 796 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 797 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 798 | return 0; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 799 | } |
| 800 | |
Joshua Roys | 85835d8 | 2010-09-15 14:47:56 +0000 | [diff] [blame] | 801 | static int enable_flash_osb4(struct pci_dev *dev, const char *name) |
| 802 | { |
| 803 | uint8_t tmp; |
| 804 | |
| 805 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
| 806 | |
| 807 | tmp = INB(0xc06); |
| 808 | tmp |= 0x1; |
| 809 | OUTB(tmp, 0xc06); |
| 810 | |
| 811 | tmp = INB(0xc6f); |
| 812 | tmp |= 0x40; |
| 813 | OUTB(tmp, 0xc6f); |
| 814 | |
| 815 | return 0; |
| 816 | } |
| 817 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 818 | /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */ |
| 819 | static int enable_flash_sb400(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 820 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 821 | uint8_t tmp; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 822 | struct pci_dev *smbusdev; |
| 823 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 824 | /* Look for the SMBus device. */ |
Carl-Daniel Hailfinger | f6e3efb | 2009-05-06 00:35:31 +0000 | [diff] [blame] | 825 | smbusdev = pci_dev_find(0x1002, 0x4372); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 826 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 827 | if (!smbusdev) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 828 | msg_perr("ERROR: SMBus device not found. Aborting.\n"); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 829 | exit(1); |
| 830 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 831 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 832 | /* Enable some SMBus stuff. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 833 | tmp = pci_read_byte(smbusdev, 0x79); |
| 834 | tmp |= 0x01; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 835 | rpci_write_byte(smbusdev, 0x79, tmp); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 836 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 837 | /* Change southbridge. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 838 | tmp = pci_read_byte(dev, 0x48); |
| 839 | tmp |= 0x21; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 840 | rpci_write_byte(dev, 0x48, tmp); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 841 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 842 | /* Now become a bit silly. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 843 | tmp = INB(0xc6f); |
| 844 | OUTB(tmp, 0xeb); |
| 845 | OUTB(tmp, 0xeb); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 846 | tmp |= 0x40; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 847 | OUTB(tmp, 0xc6f); |
| 848 | OUTB(tmp, 0xeb); |
| 849 | OUTB(tmp, 0xeb); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 850 | |
| 851 | return 0; |
| 852 | } |
| 853 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 854 | static int enable_flash_mcp55(struct pci_dev *dev, const char *name) |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 855 | { |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 856 | uint8_t old, new, val; |
| 857 | uint16_t wordval; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 858 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 859 | /* Set the 0-16 MB enable bits. */ |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 860 | val = pci_read_byte(dev, 0x88); |
| 861 | val |= 0xff; /* 256K */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 862 | rpci_write_byte(dev, 0x88, val); |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 863 | val = pci_read_byte(dev, 0x8c); |
| 864 | val |= 0xff; /* 1M */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 865 | rpci_write_byte(dev, 0x8c, val); |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 866 | wordval = pci_read_word(dev, 0x90); |
| 867 | wordval |= 0x7fff; /* 16M */ |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 868 | rpci_write_word(dev, 0x90, wordval); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 869 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 870 | old = pci_read_byte(dev, 0x6d); |
| 871 | new = old | 0x01; |
| 872 | if (new == old) |
| 873 | return 0; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 874 | rpci_write_byte(dev, 0x6d, new); |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 875 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 876 | if (pci_read_byte(dev, 0x6d) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 877 | msg_pinfo("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] | 878 | return -1; |
| 879 | } |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 880 | |
| 881 | return 0; |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 882 | } |
| 883 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 884 | /* |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 885 | * The MCP6x/MCP7x code is based on cleanroom reverse engineering. |
| 886 | * It is assumed that LPC chips need the MCP55 code and SPI chips need the |
| 887 | * code provided in enable_flash_mcp6x_7x_common. |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 888 | */ |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 889 | static int enable_flash_mcp6x_7x(struct pci_dev *dev, const char *name) |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 890 | { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 891 | int ret = 0; |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 892 | int want_spi = 0; |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 893 | uint8_t val; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 894 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 895 | msg_pinfo("This chipset is not really supported yet. Guesswork...\n"); |
| 896 | |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 897 | /* dev is the ISA bridge. No idea what the stuff below does. */ |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 898 | val = pci_read_byte(dev, 0x8a); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 899 | msg_pdbg("ISA/LPC bridge reg 0x8a contents: 0x%02x, bit 6 is %i, bit 5 " |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 900 | "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1); |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 901 | |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 902 | switch ((val >> 5) & 0x3) { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 903 | case 0x0: |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 904 | ret = enable_flash_mcp55(dev, name); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 905 | buses_supported = CHIP_BUSTYPE_LPC; |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 906 | msg_pdbg("Flash bus type is LPC\n"); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 907 | break; |
| 908 | case 0x2: |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 909 | want_spi = 1; |
| 910 | /* SPI is added in mcp6x_spi_init if it works. |
| 911 | * Do we really want to disable LPC in this case? |
| 912 | */ |
| 913 | buses_supported = CHIP_BUSTYPE_NONE; |
| 914 | msg_pdbg("Flash bus type is SPI\n"); |
Stefan Tauner | 25b5a59 | 2011-07-13 20:48:54 +0000 | [diff] [blame] | 915 | msg_pinfo("SPI on this chipset is WIP. Please report any " |
| 916 | "success or failure by mailing us the verbose " |
| 917 | "output to flashrom@flashrom.org, thanks!\n"); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 918 | break; |
| 919 | default: |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 920 | /* Should not happen. */ |
| 921 | buses_supported = CHIP_BUSTYPE_NONE; |
| 922 | msg_pdbg("Flash bus type is unknown (none)\n"); |
| 923 | msg_pinfo("Something went wrong with bus type detection.\n"); |
| 924 | goto out_msg; |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 925 | break; |
| 926 | } |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 927 | |
| 928 | /* Force enable SPI and disable LPC? Not a good idea. */ |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 929 | #if 0 |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 930 | val |= (1 << 6); |
| 931 | val &= ~(1 << 5); |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 932 | rpci_write_byte(dev, 0x8a, val); |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 933 | #endif |
| 934 | |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 935 | if (mcp6x_spi_init(want_spi)) { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 936 | ret = 1; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 937 | } |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 938 | out_msg: |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 939 | msg_pinfo("Please send the output of \"flashrom -V\" to " |
Paul Menzel | ab6328f | 2010-10-08 11:03:02 +0000 | [diff] [blame] | 940 | "flashrom@flashrom.org with\n" |
| 941 | "your board name: flashrom -V as the subject to help us " |
| 942 | "finish support for your\n" |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 943 | "chipset. Thanks.\n"); |
| 944 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 945 | return ret; |
| 946 | } |
| 947 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 948 | static int enable_flash_ht1000(struct pci_dev *dev, const char *name) |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 949 | { |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 950 | uint8_t val; |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 951 | |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 952 | /* Set the 4MB enable bit. */ |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 953 | val = pci_read_byte(dev, 0x41); |
| 954 | val |= 0x0e; |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 955 | rpci_write_byte(dev, 0x41, val); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 956 | |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 957 | val = pci_read_byte(dev, 0x43); |
| 958 | val |= (1 << 4); |
Carl-Daniel Hailfinger | 2bee8cf | 2010-11-10 15:25:18 +0000 | [diff] [blame] | 959 | rpci_write_byte(dev, 0x43, val); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 960 | |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 961 | return 0; |
| 962 | } |
| 963 | |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 964 | /* |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 965 | * Usually on the x86 architectures (and on other PC-like platforms like some |
| 966 | * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD |
| 967 | * Elan SC520 only a small piece of the system flash is mapped there, but the |
| 968 | * complete flash is mapped somewhere below 1G. The position can be determined |
| 969 | * by the BOOTCS PAR register. |
| 970 | */ |
| 971 | static int get_flashbase_sc520(struct pci_dev *dev, const char *name) |
| 972 | { |
| 973 | int i, bootcs_found = 0; |
| 974 | uint32_t parx = 0; |
| 975 | void *mmcr; |
| 976 | |
| 977 | /* 1. Map MMCR */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 978 | mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 979 | |
| 980 | /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for |
| 981 | * BOOTCS region (PARx[31:29] = 100b)e |
| 982 | */ |
| 983 | for (i = 0x88; i <= 0xc4; i += 4) { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 984 | parx = mmio_readl(mmcr + i); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 985 | if ((parx >> 29) == 4) { |
| 986 | bootcs_found = 1; |
| 987 | break; /* BOOTCS found */ |
| 988 | } |
| 989 | } |
| 990 | |
| 991 | /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0] |
| 992 | * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0] |
| 993 | */ |
| 994 | if (bootcs_found) { |
| 995 | if (parx & (1 << 25)) { |
| 996 | parx &= (1 << 14) - 1; /* Mask [13:0] */ |
| 997 | flashbase = parx << 16; |
| 998 | } else { |
| 999 | parx &= (1 << 18) - 1; /* Mask [17:0] */ |
| 1000 | flashbase = parx << 12; |
| 1001 | } |
| 1002 | } else { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1003 | msg_pinfo("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n"); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | /* 4. Clean up */ |
Carl-Daniel Hailfinger | be72681 | 2009-08-09 12:44:08 +0000 | [diff] [blame] | 1007 | physunmap(mmcr, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1008 | return 0; |
| 1009 | } |
| 1010 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1011 | #endif |
| 1012 | |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1013 | /* Please keep this list numerically sorted by vendor/device ID. */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1014 | const struct penable chipset_enables[] = { |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1015 | #if defined(__i386__) || defined(__x86_64__) |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1016 | {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1017 | {0x1002, 0x438d, OK, "AMD", "SB600", enable_flash_sb600}, |
Stefan Tauner | 7700051 | 2011-04-02 11:47:21 +0000 | [diff] [blame] | 1018 | {0x1002, 0x439d, OK, "AMD", "SB700/SB710/SB750/SB850", enable_flash_sb600}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1019 | {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1020 | {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536}, |
| 1021 | {0x1022, 0x2090, OK, "AMD", "CS5536", enable_flash_cs5536}, |
| 1022 | {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520}, |
| 1023 | {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111}, |
| 1024 | {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111}, |
| 1025 | {0x1039, 0x0406, NT, "SiS", "501/5101/5501", enable_flash_sis501}, |
| 1026 | {0x1039, 0x0496, NT, "SiS", "85C496+497", enable_flash_sis85c496}, |
| 1027 | {0x1039, 0x0530, NT, "SiS", "530", enable_flash_sis530}, |
| 1028 | {0x1039, 0x0540, NT, "SiS", "540", enable_flash_sis540}, |
| 1029 | {0x1039, 0x0620, NT, "SiS", "620", enable_flash_sis530}, |
| 1030 | {0x1039, 0x0630, NT, "SiS", "630", enable_flash_sis540}, |
| 1031 | {0x1039, 0x0635, NT, "SiS", "635", enable_flash_sis540}, |
| 1032 | {0x1039, 0x0640, NT, "SiS", "640", enable_flash_sis540}, |
| 1033 | {0x1039, 0x0645, NT, "SiS", "645", enable_flash_sis540}, |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 1034 | {0x1039, 0x0646, OK, "SiS", "645DX", enable_flash_sis540}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1035 | {0x1039, 0x0648, NT, "SiS", "648", enable_flash_sis540}, |
| 1036 | {0x1039, 0x0650, NT, "SiS", "650", enable_flash_sis540}, |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 1037 | {0x1039, 0x0651, OK, "SiS", "651", enable_flash_sis540}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1038 | {0x1039, 0x0655, NT, "SiS", "655", enable_flash_sis540}, |
| 1039 | {0x1039, 0x0661, OK, "SiS", "661", enable_flash_sis540}, |
| 1040 | {0x1039, 0x0730, NT, "SiS", "730", enable_flash_sis540}, |
| 1041 | {0x1039, 0x0733, NT, "SiS", "733", enable_flash_sis540}, |
| 1042 | {0x1039, 0x0735, OK, "SiS", "735", enable_flash_sis540}, |
| 1043 | {0x1039, 0x0740, NT, "SiS", "740", enable_flash_sis540}, |
| 1044 | {0x1039, 0x0741, OK, "SiS", "741", enable_flash_sis540}, |
| 1045 | {0x1039, 0x0745, OK, "SiS", "745", enable_flash_sis540}, |
| 1046 | {0x1039, 0x0746, NT, "SiS", "746", enable_flash_sis540}, |
| 1047 | {0x1039, 0x0748, NT, "SiS", "748", enable_flash_sis540}, |
| 1048 | {0x1039, 0x0755, NT, "SiS", "755", enable_flash_sis540}, |
| 1049 | {0x1039, 0x5511, NT, "SiS", "5511", enable_flash_sis5511}, |
| 1050 | {0x1039, 0x5571, NT, "SiS", "5571", enable_flash_sis530}, |
| 1051 | {0x1039, 0x5591, NT, "SiS", "5591/5592", enable_flash_sis530}, |
| 1052 | {0x1039, 0x5596, NT, "SiS", "5596", enable_flash_sis5511}, |
| 1053 | {0x1039, 0x5597, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530}, |
| 1054 | {0x1039, 0x5600, NT, "SiS", "600", enable_flash_sis530}, |
| 1055 | {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1056 | {0x10b9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533}, |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 1057 | {0x10de, 0x0030, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1058 | {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */ |
| 1059 | {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */ |
Stefan Tauner | d06d941 | 2011-06-12 19:47:55 +0000 | [diff] [blame] | 1060 | {0x10de, 0x0060, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2}, |
| 1061 | {0x10de, 0x00e0, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 1062 | /* Slave, should not be here, to fix known bug for A01. */ |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1063 | {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804}, |
| 1064 | {0x10de, 0x0260, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1065 | {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1066 | {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1067 | {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1068 | {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/ |
Carl-Daniel Hailfinger | 33d7b6a | 2010-05-22 07:27:16 +0000 | [diff] [blame] | 1069 | /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to |
| 1070 | * the flash chip. Instead, 10de:0364 is connected to the flash chip. |
| 1071 | * Until we have PCI device class matching or some fallback mechanism, |
| 1072 | * this is needed to get flashrom working on Tyan S2915 and maybe other |
| 1073 | * dual-MCP55 boards. |
| 1074 | */ |
| 1075 | #if 0 |
| 1076 | {0x10de, 0x0361, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1077 | #endif |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1078 | {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1079 | {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1080 | {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1081 | {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1082 | {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1083 | {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */ |
Carl-Daniel Hailfinger | 2f43616 | 2010-07-28 15:08:35 +0000 | [diff] [blame] | 1084 | {0x10de, 0x03e0, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1085 | {0x10de, 0x03e1, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1086 | {0x10de, 0x03e2, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1087 | {0x10de, 0x03e3, NT, "NVIDIA", "MCP61", enable_flash_mcp6x_7x}, |
| 1088 | {0x10de, 0x0440, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1089 | {0x10de, 0x0441, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1090 | {0x10de, 0x0442, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1091 | {0x10de, 0x0443, NT, "NVIDIA", "MCP65", enable_flash_mcp6x_7x}, |
| 1092 | {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp6x_7x}, |
| 1093 | {0x10de, 0x075c, NT, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x}, |
| 1094 | {0x10de, 0x075d, NT, "NVIDIA", "MCP78S", enable_flash_mcp6x_7x}, |
| 1095 | {0x10de, 0x07d7, NT, "NVIDIA", "MCP73", enable_flash_mcp6x_7x}, |
| 1096 | {0x10de, 0x0aac, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1097 | {0x10de, 0x0aad, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1098 | {0x10de, 0x0aae, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
| 1099 | {0x10de, 0x0aaf, NT, "NVIDIA", "MCP79", enable_flash_mcp6x_7x}, |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1100 | /* VIA northbridges */ |
| 1101 | {0x1106, 0x0585, NT, "VIA", "VT82C585VPX", via_no_byte_merge}, |
| 1102 | {0x1106, 0x0595, NT, "VIA", "VT82C595", via_no_byte_merge}, |
| 1103 | {0x1106, 0x0597, NT, "VIA", "VT82C597", via_no_byte_merge}, |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1104 | {0x1106, 0x0601, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1105 | {0x1106, 0x0691, NT, "VIA", "VT82C69x", via_no_byte_merge}, /* 691, 693a, 694t, 694x checked */ |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1106 | {0x1106, 0x8601, NT, "VIA", "VT8601T", via_no_byte_merge}, |
| 1107 | /* VIA southbridges */ |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1108 | {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111}, |
| 1109 | {0x1106, 0x0596, OK, "VIA", "VT82C596", enable_flash_amd8111}, |
| 1110 | {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111}, |
Mateusz Murawski | e6abef0 | 2009-06-18 12:42:46 +0000 | [diff] [blame] | 1111 | {0x1106, 0x3074, NT, "VIA", "VT8233", enable_flash_vt823x}, |
Raúl Soriano | cd8404d | 2009-12-23 21:29:18 +0000 | [diff] [blame] | 1112 | {0x1106, 0x3147, OK, "VIA", "VT8233A", enable_flash_vt823x}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1113 | {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x}, |
| 1114 | {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x}, |
| 1115 | {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x}, |
| 1116 | {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1117 | {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x}, |
| 1118 | {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1119 | {0x1106, 0x8353, OK, "VIA", "VX800/VX820", enable_flash_vt8237s_spi}, |
| 1120 | {0x1106, 0x8409, OK, "VIA", "VX855/VX875", enable_flash_vt823x}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1121 | {0x1166, 0x0200, OK, "Broadcom", "OSB4", enable_flash_osb4}, |
| 1122 | {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000}, |
| 1123 | {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4}, |
| 1124 | {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4}, |
Stefan Tauner | 2cf2da6 | 2011-06-18 18:45:56 +0000 | [diff] [blame] | 1125 | {0x8086, 0x1c44, NT, "Intel", "Z68", enable_flash_ich10}, |
| 1126 | {0x8086, 0x1c46, NT, "Intel", "P67", enable_flash_ich10}, |
| 1127 | {0x8086, 0x1c47, NT, "Intel", "UM67", enable_flash_ich10}, |
| 1128 | {0x8086, 0x1c49, NT, "Intel", "HM65", enable_flash_ich10}, |
| 1129 | {0x8086, 0x1c4a, NT, "Intel", "H67", enable_flash_ich10}, |
| 1130 | {0x8086, 0x1c4b, NT, "Intel", "HM67", enable_flash_ich10}, |
| 1131 | {0x8086, 0x1c4c, NT, "Intel", "Q65", enable_flash_ich10}, |
| 1132 | {0x8086, 0x1c4d, NT, "Intel", "QS67", enable_flash_ich10}, |
| 1133 | {0x8086, 0x1c4e, NT, "Intel", "Q67", enable_flash_ich10}, |
| 1134 | {0x8086, 0x1c4f, NT, "Intel", "QM67", enable_flash_ich10}, |
| 1135 | {0x8086, 0x1c50, NT, "Intel", "B65", enable_flash_ich10}, |
| 1136 | {0x8086, 0x1c52, NT, "Intel", "C202", enable_flash_ich10}, |
| 1137 | {0x8086, 0x1c54, NT, "Intel", "C204", enable_flash_ich10}, |
| 1138 | {0x8086, 0x1c56, NT, "Intel", "C206", enable_flash_ich10}, |
| 1139 | {0x8086, 0x1c5c, NT, "Intel", "H61", enable_flash_ich10}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1140 | {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e}, |
| 1141 | {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e}, |
| 1142 | {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e}, |
| 1143 | {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1144 | {0x8086, 0x2450, NT, "Intel", "C-ICH", enable_flash_ich_4e}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1145 | {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e}, |
| 1146 | {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e}, |
| 1147 | {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e}, |
| 1148 | {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e}, |
| 1149 | {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e}, |
| 1150 | {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e}, |
| 1151 | {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc}, |
| 1152 | {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1153 | {0x8086, 0x2642, NT, "Intel", "ICH6W/ICH6RW", enable_flash_ich_dc}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1154 | {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc}, |
| 1155 | {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7}, |
| 1156 | {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7}, |
| 1157 | {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7}, |
| 1158 | {0x8086, 0x27bc, OK, "Intel", "NM10", enable_flash_ich7}, |
| 1159 | {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7}, |
| 1160 | {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8}, |
| 1161 | {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8}, |
| 1162 | {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8}, |
| 1163 | {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8}, |
| 1164 | {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8}, |
| 1165 | {0x8086, 0x2910, OK, "Intel", "ICH9 Engineering Sample", enable_flash_ich9}, |
| 1166 | {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9}, |
| 1167 | {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9}, |
| 1168 | {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9}, |
| 1169 | {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9}, |
| 1170 | {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9}, |
| 1171 | {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1172 | {0x8086, 0x3a10, NT, "Intel", "ICH10R Engineering Sample", enable_flash_ich10}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1173 | {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10}, |
| 1174 | {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10}, |
| 1175 | {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10}, |
| 1176 | {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1177 | {0x8086, 0x3a1e, NT, "Intel", "ICH10 Engineering Sample", enable_flash_ich10}, |
Idwer Vollering | 326a060 | 2011-06-18 18:45:41 +0000 | [diff] [blame] | 1178 | {0x8086, 0x3b00, NT, "Intel", "3400 Desktop", enable_flash_ich10}, |
| 1179 | {0x8086, 0x3b01, NT, "Intel", "3400 Mobile", enable_flash_ich10}, |
| 1180 | {0x8086, 0x3b02, NT, "Intel", "P55", enable_flash_ich10}, |
| 1181 | {0x8086, 0x3b03, NT, "Intel", "PM55", enable_flash_ich10}, |
| 1182 | {0x8086, 0x3b06, NT, "Intel", "H55", enable_flash_ich10}, |
| 1183 | {0x8086, 0x3b07, OK, "Intel", "QM57", enable_flash_ich10}, |
| 1184 | {0x8086, 0x3b08, NT, "Intel", "H57", enable_flash_ich10}, |
| 1185 | {0x8086, 0x3b09, NT, "Intel", "HM55", enable_flash_ich10}, |
| 1186 | {0x8086, 0x3b0a, NT, "Intel", "Q57", enable_flash_ich10}, |
| 1187 | {0x8086, 0x3b0b, NT, "Intel", "HM57", enable_flash_ich10}, |
| 1188 | {0x8086, 0x3b0d, NT, "Intel", "3400 Mobile SFF", enable_flash_ich10}, |
| 1189 | {0x8086, 0x3b0e, NT, "Intel", "B55", enable_flash_ich10}, |
| 1190 | {0x8086, 0x3b0f, OK, "Intel", "QS57", enable_flash_ich10}, |
| 1191 | {0x8086, 0x3b12, NT, "Intel", "3400", enable_flash_ich10}, |
| 1192 | {0x8086, 0x3b14, NT, "Intel", "3420", enable_flash_ich10}, |
| 1193 | {0x8086, 0x3b16, NT, "Intel", "3450", enable_flash_ich10}, |
| 1194 | {0x8086, 0x3b1e, NT, "Intel", "B55", enable_flash_ich10}, |
| 1195 | {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7}, |
| 1196 | {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4}, |
| 1197 | {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4}, |
| 1198 | {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4}, |
Idwer Vollering | 570dcc7 | 2011-06-18 18:45:50 +0000 | [diff] [blame] | 1199 | {0x8086, 0x8119, OK, "Intel", "SCH Poulsbo", enable_flash_poulsbo}, |
| 1200 | {0x8086, 0x8186, NT, "Intel", "Atom E6xx(T)/Tunnel Creek", enable_flash_poulsbo}, |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1201 | #endif |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1202 | {}, |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1203 | }; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 1204 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1205 | int chipset_flash_enable(void) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1206 | { |
Peter Huewe | 73f8ec8 | 2011-01-24 19:15:51 +0000 | [diff] [blame] | 1207 | struct pci_dev *dev = NULL; |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1208 | int ret = -2; /* Nothing! */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1209 | int i; |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 1210 | char *s; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1211 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1212 | /* Now let's try to find the chipset we have... */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1213 | for (i = 0; chipset_enables[i].vendor_name != NULL; i++) { |
| 1214 | dev = pci_dev_find(chipset_enables[i].vendor_id, |
| 1215 | chipset_enables[i].device_id); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1216 | if (!dev) |
| 1217 | continue; |
| 1218 | if (ret != -2) { |
| 1219 | msg_pinfo("WARNING: unexpected second chipset match: " |
Paul Menzel | ab6328f | 2010-10-08 11:03:02 +0000 | [diff] [blame] | 1220 | "\"%s %s\"\n" |
| 1221 | "ignoring, please report lspci and board URL " |
| 1222 | "to flashrom@flashrom.org\n" |
Stefan Reinauer | bf282b1 | 2011-03-29 21:41:41 +0000 | [diff] [blame] | 1223 | "with \'CHIPSET: your board name\' in the " |
Paul Menzel | ab6328f | 2010-10-08 11:03:02 +0000 | [diff] [blame] | 1224 | "subject line.\n", |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1225 | chipset_enables[i].vendor_name, |
| 1226 | chipset_enables[i].device_name); |
| 1227 | continue; |
| 1228 | } |
Stefan Tauner | ec8c248 | 2011-07-21 19:59:34 +0000 | [diff] [blame] | 1229 | msg_pinfo("Found chipset \"%s %s\"", |
| 1230 | chipset_enables[i].vendor_name, |
| 1231 | chipset_enables[i].device_name); |
Stefan Tauner | 716e098 | 2011-07-25 20:38:52 +0000 | [diff] [blame] | 1232 | msg_pdbg(" with PCI ID %04x:%04x", |
Carl-Daniel Hailfinger | f469c27 | 2010-05-22 07:31:50 +0000 | [diff] [blame] | 1233 | chipset_enables[i].vendor_id, |
| 1234 | chipset_enables[i].device_id); |
Stefan Tauner | ec8c248 | 2011-07-21 19:59:34 +0000 | [diff] [blame] | 1235 | msg_pinfo(". "); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1236 | |
Stefan Tauner | ec8c248 | 2011-07-21 19:59:34 +0000 | [diff] [blame] | 1237 | if (chipset_enables[i].status == NT) { |
| 1238 | msg_pinfo("\nThis chipset is marked as untested. If " |
| 1239 | "you are using an up-to-date version\nof " |
| 1240 | "flashrom please email a report to " |
| 1241 | "flashrom@flashrom.org including a\nverbose " |
| 1242 | "(-V) log. Thank you!\n"); |
| 1243 | } |
| 1244 | msg_pinfo("Enabling flash write... "); |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1245 | ret = chipset_enables[i].doit(dev, |
| 1246 | chipset_enables[i].device_name); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1247 | if (ret == NOT_DONE_YET) { |
| 1248 | ret = -2; |
| 1249 | msg_pinfo("OK - searching further chips.\n"); |
| 1250 | } else if (ret < 0) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1251 | msg_pinfo("FAILED!\n"); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1252 | else if(ret == 0) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1253 | msg_pinfo("OK.\n"); |
Michael Karcher | a4448d9 | 2010-07-22 18:04:15 +0000 | [diff] [blame] | 1254 | else if(ret == ERROR_NONFATAL) |
| 1255 | msg_pinfo("PROBLEMS, continuing anyway\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1256 | } |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1257 | |
Stefan Tauner | 0015549 | 2011-06-26 20:45:35 +0000 | [diff] [blame] | 1258 | s = flashbuses_to_text(buses_supported); |
| 1259 | msg_pinfo("This chipset supports the following protocols: %s.\n", s); |
| 1260 | free(s); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1261 | |
| 1262 | return ret; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1263 | } |