Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 5 | * Copyright (C) 2005-2009 coresystems GmbH |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 6 | * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de> |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 7 | * Copyright (C) 2007,2008,2009 Carl-Daniel Hailfinger |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 8 | * Copyright (C) 2009 Kontron Modular Computers GmbH |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 9 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; version 2 of the License. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 13 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * Contains the chipset specific flash enables. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 26 | */ |
| 27 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 28 | #define _LARGEFILE64_SOURCE |
| 29 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 30 | #include <stdlib.h> |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 31 | #include <string.h> |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 32 | #include <sys/types.h> |
Carl-Daniel Hailfinger | dcef67e | 2010-06-21 23:20:15 +0000 | [diff] [blame] | 33 | #include <unistd.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 34 | #include "flash.h" |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 35 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 36 | #if defined(__i386__) || defined(__x86_64__) |
| 37 | |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 38 | #define NOT_DONE_YET 1 |
| 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; |
| 50 | pci_write_byte(dev, 0x47, tmp); |
| 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; |
| 61 | pci_write_byte(dev, 0xd0, tmp); |
| 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. */ |
| 75 | pci_write_byte(dev, 0x40, new); |
| 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; |
| 163 | pci_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; |
| 189 | pci_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 | |
| 236 | pci_write_word(dev, xbcs, new); |
| 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 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 267 | new = old | 1; |
| 268 | |
| 269 | if (new == old) |
| 270 | return 0; |
| 271 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 272 | pci_write_byte(dev, bios_cntl, new); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 273 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 274 | if (pci_read_byte(dev, bios_cntl) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 275 | 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] | 276 | return -1; |
| 277 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 278 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 279 | return 0; |
| 280 | } |
| 281 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 282 | 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] | 283 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 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 | */ |
Carl-Daniel Hailfinger | 7f9922d | 2010-06-20 11:04:26 +0000 | [diff] [blame] | 289 | buses_supported = CHIP_BUSTYPE_FWH; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 290 | return enable_flash_ich(dev, name, 0x4e); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 291 | } |
| 292 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 293 | 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] | 294 | { |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 295 | uint32_t fwh_conf; |
| 296 | int i; |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 297 | char *idsel = NULL; |
Carl-Daniel Hailfinger | 2a9e245 | 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; |
Carl-Daniel Hailfinger | 4c7ea38 | 2009-08-10 23:30:45 +0000 | [diff] [blame] | 302 | |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 303 | if (programmer_param) |
| 304 | idsel = strstr(programmer_param, "fwh_idsel="); |
| 305 | |
| 306 | if (idsel) { |
| 307 | idsel += strlen("fwh_idsel="); |
| 308 | fwh_conf = (uint32_t)strtoul(idsel, NULL, 0); |
| 309 | |
| 310 | /* FIXME: Need to undo this on shutdown. */ |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 311 | msg_pinfo("\nSetting IDSEL=0x%x for top 16 MB", fwh_conf); |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 312 | pci_write_long(dev, 0xd0, fwh_conf); |
| 313 | pci_write_word(dev, 0xd4, fwh_conf); |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 314 | /* FIXME: Decode settings are not changed. */ |
Carl-Daniel Hailfinger | 4449868 | 2009-08-13 23:23:37 +0000 | [diff] [blame] | 315 | } |
| 316 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 317 | /* Ignore all legacy ranges below 1 MB. |
| 318 | * We currently only support flashing the chip which responds to |
| 319 | * IDSEL=0. To support IDSEL!=0, flashbase and decode size calculations |
| 320 | * have to be adjusted. |
| 321 | */ |
| 322 | /* FWH_SEL1 */ |
| 323 | fwh_conf = pci_read_long(dev, 0xd0); |
| 324 | for (i = 7; i >= 0; i--) { |
| 325 | tmp = (fwh_conf >> (i * 4)) & 0xf; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 326 | msg_pdbg("\n0x%08x/0x%08x FWH IDSEL: 0x%x", |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 327 | (0x1ff8 + i) * 0x80000, |
| 328 | (0x1ff0 + i) * 0x80000, |
| 329 | tmp); |
| 330 | if ((tmp == 0) && contiguous) { |
| 331 | max_decode_fwh_idsel = (8 - i) * 0x80000; |
| 332 | } else { |
| 333 | contiguous = 0; |
| 334 | } |
| 335 | } |
| 336 | /* FWH_SEL2 */ |
| 337 | fwh_conf = pci_read_word(dev, 0xd4); |
| 338 | for (i = 3; 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 | (0xff4 + i) * 0x100000, |
| 342 | (0xff0 + i) * 0x100000, |
| 343 | tmp); |
| 344 | if ((tmp == 0) && contiguous) { |
| 345 | max_decode_fwh_idsel = (8 - i) * 0x100000; |
| 346 | } else { |
| 347 | contiguous = 0; |
| 348 | } |
| 349 | } |
| 350 | contiguous = 1; |
| 351 | /* FWH_DEC_EN1 */ |
| 352 | fwh_conf = pci_read_word(dev, 0xd8); |
| 353 | for (i = 7; i >= 0; i--) { |
| 354 | tmp = (fwh_conf >> (i + 0x8)) & 0x1; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 355 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 356 | (0x1ff8 + i) * 0x80000, |
| 357 | (0x1ff0 + i) * 0x80000, |
| 358 | tmp ? "en" : "dis"); |
Michael Karcher | 9678539 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 359 | if ((tmp == 1) && contiguous) { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 360 | max_decode_fwh_decode = (8 - i) * 0x80000; |
| 361 | } else { |
| 362 | contiguous = 0; |
| 363 | } |
| 364 | } |
| 365 | for (i = 3; i >= 0; i--) { |
| 366 | tmp = (fwh_conf >> i) & 0x1; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 367 | msg_pdbg("\n0x%08x/0x%08x FWH decode %sabled", |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 368 | (0xff4 + i) * 0x100000, |
| 369 | (0xff0 + i) * 0x100000, |
| 370 | tmp ? "en" : "dis"); |
Michael Karcher | 9678539 | 2010-01-03 15:09:17 +0000 | [diff] [blame] | 371 | if ((tmp == 1) && contiguous) { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 372 | max_decode_fwh_decode = (8 - i) * 0x100000; |
| 373 | } else { |
| 374 | contiguous = 0; |
| 375 | } |
| 376 | } |
| 377 | 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] | 378 | 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] | 379 | |
| 380 | /* If we're called by enable_flash_ich_dc_spi, it will override |
| 381 | * buses_supported anyway. |
| 382 | */ |
| 383 | buses_supported = CHIP_BUSTYPE_FWH; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 384 | return enable_flash_ich(dev, name, 0xdc); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 387 | static int enable_flash_poulsbo(struct pci_dev *dev, const char *name) |
| 388 | { |
| 389 | uint16_t old, new; |
| 390 | int err; |
| 391 | |
| 392 | if ((err = enable_flash_ich(dev, name, 0xd8)) != 0) |
| 393 | return err; |
| 394 | |
| 395 | old = pci_read_byte(dev, 0xd9); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 396 | msg_pdbg("BIOS Prefetch Enable: %sabled, ", |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 397 | (old & 1) ? "en" : "dis"); |
| 398 | new = old & ~1; |
| 399 | |
| 400 | if (new != old) |
| 401 | pci_write_byte(dev, 0xd9, new); |
| 402 | |
Carl-Daniel Hailfinger | 7f9922d | 2010-06-20 11:04:26 +0000 | [diff] [blame] | 403 | buses_supported = CHIP_BUSTYPE_FWH; |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 404 | return 0; |
| 405 | } |
| 406 | |
| 407 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 408 | #define ICH_STRAP_RSVD 0x00 |
| 409 | #define ICH_STRAP_SPI 0x01 |
| 410 | #define ICH_STRAP_PCI 0x02 |
| 411 | #define ICH_STRAP_LPC 0x03 |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 412 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 413 | static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) |
| 414 | { |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 415 | uint32_t mmio_base; |
| 416 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 417 | /* Do we really need no write enable? */ |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 418 | mmio_base = (pci_read_long(dev, 0xbc)) << 8; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 419 | msg_pdbg("MMIO base at = 0x%x\n", mmio_base); |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 420 | spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70); |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 421 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 422 | msg_pdbg("0x6c: 0x%04x (CLOCK/DEBUG)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 423 | mmio_readw(spibar + 0x6c)); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 424 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 425 | /* Not sure if it speaks all these bus protocols. */ |
| 426 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 427 | spi_controller = SPI_CONTROLLER_VIA; |
Rudolf Marek | 0c2029f | 2009-02-01 18:40:50 +0000 | [diff] [blame] | 428 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 429 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 430 | return 0; |
| 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 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 436 | int ret, i; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 437 | uint8_t old, new, bbs, buc; |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 438 | uint16_t spibar_offset, tmp2; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 439 | uint32_t tmp, gcs; |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 440 | void *rcrb; |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 441 | //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line |
| 442 | //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" }; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 443 | static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" }; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 444 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 445 | /* Enable Flash Writes */ |
| 446 | ret = enable_flash_ich_dc(dev, name); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 447 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 448 | /* Get physical address of Root Complex Register Block */ |
| 449 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 450 | msg_pdbg("\nRoot Complex Register Block address = 0x%x\n", tmp); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 451 | |
| 452 | /* Map RCBA to virtual memory */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 453 | rcrb = physmap("ICH RCRB", tmp, 0x4000); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 454 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 455 | gcs = mmio_readl(rcrb + 0x3410); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 456 | msg_pdbg("GCS = 0x%x: ", gcs); |
| 457 | msg_pdbg("BIOS Interface Lock-Down: %sabled, ", |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 458 | (gcs & 0x1) ? "en" : "dis"); |
| 459 | bbs = (gcs >> 10) & 0x3; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 460 | 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] | 461 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 462 | buc = mmio_readb(rcrb + 0x3414); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 463 | msg_pdbg("Top Swap : %s\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 464 | (buc & 1) ? "enabled (A16 inverted)" : "not enabled"); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 465 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 466 | /* It seems the ICH7 does not support SPI and LPC chips at the same |
| 467 | * time. At least not with our current code. So we prevent searching |
| 468 | * on ICH7 when the southbridge is strapped to LPC |
| 469 | */ |
| 470 | |
| 471 | if (ich_generation == 7 && bbs == ICH_STRAP_LPC) { |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 472 | buses_supported = CHIP_BUSTYPE_FWH; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 473 | /* No further SPI initialization required */ |
| 474 | return ret; |
| 475 | } |
| 476 | |
| 477 | switch (ich_generation) { |
| 478 | case 7: |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 479 | buses_supported = CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 480 | spi_controller = SPI_CONTROLLER_ICH7; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 481 | spibar_offset = 0x3020; |
| 482 | break; |
| 483 | case 8: |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 484 | buses_supported = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 485 | spi_controller = SPI_CONTROLLER_ICH9; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 486 | spibar_offset = 0x3020; |
| 487 | break; |
| 488 | case 9: |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 489 | case 10: |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 490 | default: /* Future version might behave the same */ |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 491 | buses_supported = CHIP_BUSTYPE_FWH | CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 492 | spi_controller = SPI_CONTROLLER_ICH9; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 493 | spibar_offset = 0x3800; |
| 494 | break; |
| 495 | } |
| 496 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 497 | /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */ |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 498 | msg_pdbg("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 499 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 500 | /* Assign Virtual Address */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 501 | spibar = rcrb + spibar_offset; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 502 | |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 503 | switch (spi_controller) { |
| 504 | case SPI_CONTROLLER_ICH7: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 505 | msg_pdbg("0x00: 0x%04x (SPIS)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 506 | mmio_readw(spibar + 0)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 507 | msg_pdbg("0x02: 0x%04x (SPIC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 508 | mmio_readw(spibar + 2)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 509 | msg_pdbg("0x04: 0x%08x (SPIA)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 510 | mmio_readl(spibar + 4)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 511 | for (i = 0; i < 8; i++) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 512 | int offs; |
| 513 | offs = 8 + (i * 8); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 514 | msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 515 | mmio_readl(spibar + offs), i); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 516 | msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 517 | mmio_readl(spibar + offs + 4), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 518 | } |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 519 | ichspi_bbar = mmio_readl(spibar + 0x50); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 520 | msg_pdbg("0x50: 0x%08x (BBAR)\n", |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 521 | ichspi_bbar); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 522 | msg_pdbg("0x54: 0x%04x (PREOP)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 523 | mmio_readw(spibar + 0x54)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 524 | msg_pdbg("0x56: 0x%04x (OPTYPE)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 525 | mmio_readw(spibar + 0x56)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 526 | msg_pdbg("0x58: 0x%08x (OPMENU)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 527 | mmio_readl(spibar + 0x58)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 528 | msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 529 | mmio_readl(spibar + 0x5c)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 530 | for (i = 0; i < 4; i++) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 531 | int offs; |
| 532 | offs = 0x60 + (i * 4); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 533 | msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 534 | mmio_readl(spibar + offs), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 535 | } |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 536 | msg_pdbg("\n"); |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 537 | if (mmio_readw(spibar) & (1 << 15)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 538 | msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 539 | ichspi_lock = 1; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 540 | } |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 541 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 542 | break; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 543 | case SPI_CONTROLLER_ICH9: |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 544 | tmp2 = mmio_readw(spibar + 4); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 545 | msg_pdbg("0x04: 0x%04x (HSFS)\n", tmp2); |
| 546 | msg_pdbg("FLOCKDN %i, ", (tmp2 >> 15 & 1)); |
| 547 | msg_pdbg("FDV %i, ", (tmp2 >> 14) & 1); |
| 548 | msg_pdbg("FDOPSS %i, ", (tmp2 >> 13) & 1); |
| 549 | msg_pdbg("SCIP %i, ", (tmp2 >> 5) & 1); |
| 550 | msg_pdbg("BERASE %i, ", (tmp2 >> 3) & 3); |
| 551 | msg_pdbg("AEL %i, ", (tmp2 >> 2) & 1); |
| 552 | msg_pdbg("FCERR %i, ", (tmp2 >> 1) & 1); |
| 553 | msg_pdbg("FDONE %i\n", (tmp2 >> 0) & 1); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 554 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 555 | tmp = mmio_readl(spibar + 0x50); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 556 | msg_pdbg("0x50: 0x%08x (FRAP)\n", tmp); |
| 557 | msg_pdbg("BMWAG %i, ", (tmp >> 24) & 0xff); |
| 558 | msg_pdbg("BMRAG %i, ", (tmp >> 16) & 0xff); |
| 559 | msg_pdbg("BRWA %i, ", (tmp >> 8) & 0xff); |
| 560 | msg_pdbg("BRRA %i\n", (tmp >> 0) & 0xff); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 561 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 562 | msg_pdbg("0x54: 0x%08x (FREG0)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 563 | mmio_readl(spibar + 0x54)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 564 | msg_pdbg("0x58: 0x%08x (FREG1)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 565 | mmio_readl(spibar + 0x58)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 566 | msg_pdbg("0x5C: 0x%08x (FREG2)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 567 | mmio_readl(spibar + 0x5C)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 568 | msg_pdbg("0x60: 0x%08x (FREG3)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 569 | mmio_readl(spibar + 0x60)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 570 | msg_pdbg("0x64: 0x%08x (FREG4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 571 | mmio_readl(spibar + 0x64)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 572 | msg_pdbg("0x74: 0x%08x (PR0)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 573 | mmio_readl(spibar + 0x74)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 574 | msg_pdbg("0x78: 0x%08x (PR1)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 575 | mmio_readl(spibar + 0x78)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 576 | msg_pdbg("0x7C: 0x%08x (PR2)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 577 | mmio_readl(spibar + 0x7C)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 578 | msg_pdbg("0x80: 0x%08x (PR3)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 579 | mmio_readl(spibar + 0x80)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 580 | msg_pdbg("0x84: 0x%08x (PR4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 581 | mmio_readl(spibar + 0x84)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 582 | msg_pdbg("0x90: 0x%08x (SSFS, SSFC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 583 | mmio_readl(spibar + 0x90)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 584 | msg_pdbg("0x94: 0x%04x (PREOP)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 585 | mmio_readw(spibar + 0x94)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 586 | msg_pdbg("0x96: 0x%04x (OPTYPE)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 587 | mmio_readw(spibar + 0x96)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 588 | msg_pdbg("0x98: 0x%08x (OPMENU)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 589 | mmio_readl(spibar + 0x98)); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 590 | msg_pdbg("0x9C: 0x%08x (OPMENU+4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 591 | mmio_readl(spibar + 0x9C)); |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 592 | ichspi_bbar = mmio_readl(spibar + 0xA0); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 593 | msg_pdbg("0xA0: 0x%08x (BBAR)\n", |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 594 | ichspi_bbar); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 595 | msg_pdbg("0xB0: 0x%08x (FDOC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 596 | mmio_readl(spibar + 0xB0)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 597 | if (tmp2 & (1 << 15)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 598 | msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n"); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 599 | ichspi_lock = 1; |
| 600 | } |
Peter Stuge | e8a3e4c | 2008-12-22 14:12:08 +0000 | [diff] [blame] | 601 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 602 | break; |
| 603 | default: |
| 604 | /* Nothing */ |
| 605 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 606 | } |
| 607 | |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 608 | old = pci_read_byte(dev, 0xdc); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 609 | msg_pdbg("SPI Read Configuration: "); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 610 | new = (old >> 2) & 0x3; |
| 611 | switch (new) { |
| 612 | case 0: |
| 613 | case 1: |
| 614 | case 2: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 615 | msg_pdbg("prefetching %sabled, caching %sabled, ", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 616 | (new & 0x2) ? "en" : "dis", |
| 617 | (new & 0x1) ? "dis" : "en"); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 618 | break; |
| 619 | default: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 620 | msg_pdbg("invalid prefetching/caching settings, "); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 621 | break; |
| 622 | } |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 623 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 624 | return ret; |
| 625 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 626 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 627 | 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] | 628 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 629 | return enable_flash_ich_dc_spi(dev, name, 7); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 630 | } |
| 631 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 632 | static int enable_flash_ich8(struct pci_dev *dev, const char *name) |
| 633 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 634 | return enable_flash_ich_dc_spi(dev, name, 8); |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 637 | static int enable_flash_ich9(struct pci_dev *dev, const char *name) |
| 638 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 639 | return enable_flash_ich_dc_spi(dev, name, 9); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 640 | } |
| 641 | |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 642 | static int enable_flash_ich10(struct pci_dev *dev, const char *name) |
| 643 | { |
| 644 | return enable_flash_ich_dc_spi(dev, name, 10); |
| 645 | } |
| 646 | |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 647 | static void via_do_byte_merge(void * arg) |
| 648 | { |
| 649 | struct pci_dev * dev = arg; |
| 650 | uint8_t val; |
| 651 | |
| 652 | msg_pdbg("Re-enabling byte merging\n"); |
| 653 | val = pci_read_byte(dev, 0x71); |
| 654 | val |= 0x40; |
| 655 | pci_write_byte(dev, 0x71, val); |
| 656 | } |
| 657 | |
| 658 | static int via_no_byte_merge(struct pci_dev *dev, const char *name) |
| 659 | { |
| 660 | uint8_t val; |
| 661 | |
| 662 | val = pci_read_byte(dev, 0x71); |
| 663 | if (val & 0x40) |
| 664 | { |
| 665 | msg_pdbg("Disabling byte merging\n"); |
| 666 | val &= ~0x40; |
| 667 | pci_write_byte(dev, 0x71, val); |
| 668 | register_shutdown(via_do_byte_merge, dev); |
| 669 | } |
| 670 | return NOT_DONE_YET; /* need to find south bridge, too */ |
| 671 | } |
| 672 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 673 | static int enable_flash_vt823x(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 674 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 675 | uint8_t val; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 676 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 677 | /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */ |
Bari Ari | 9477c4e | 2008-04-29 13:46:38 +0000 | [diff] [blame] | 678 | pci_write_byte(dev, 0x41, 0x7f); |
| 679 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 680 | /* ROM write enable */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 681 | val = pci_read_byte(dev, 0x40); |
| 682 | val |= 0x10; |
| 683 | pci_write_byte(dev, 0x40, val); |
| 684 | |
| 685 | if (pci_read_byte(dev, 0x40) != val) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 686 | msg_pinfo("\nWARNING: Failed to enable flash write on \"%s\"\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 687 | name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 688 | return -1; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 689 | } |
Luc Verhaegen | 6382b44 | 2007-03-02 22:16:38 +0000 | [diff] [blame] | 690 | |
Luc Verhaegen | 73d2119 | 2009-12-23 00:54:26 +0000 | [diff] [blame] | 691 | if (dev->device_id == 0x3227) { /* VT8237R */ |
| 692 | /* All memory cycles, not just ROM ones, go to LPC. */ |
| 693 | val = pci_read_byte(dev, 0x59); |
| 694 | val &= ~0x80; |
| 695 | pci_write_byte(dev, 0x59, val); |
| 696 | } |
| 697 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 698 | return 0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 699 | } |
| 700 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 701 | static int enable_flash_cs5530(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 702 | { |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 703 | uint8_t reg8; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 704 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 705 | #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */ |
| 706 | #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */ |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 707 | #define CS5530_RESET_CONTROL_REG 0x44 /* F0 index 0x44 */ |
| 708 | #define CS5530_USB_SHADOW_REG 0x43 /* F0 index 0x43 */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 709 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 710 | #define LOWER_ROM_ADDRESS_RANGE (1 << 0) |
| 711 | #define ROM_WRITE_ENABLE (1 << 1) |
| 712 | #define UPPER_ROM_ADDRESS_RANGE (1 << 2) |
| 713 | #define BIOS_ROM_POSITIVE_DECODE (1 << 5) |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 714 | #define CS5530_ISA_MASTER (1 << 7) |
| 715 | #define CS5530_ENABLE_SA2320 (1 << 2) |
| 716 | #define CS5530_ENABLE_SA20 (1 << 6) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 717 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 718 | buses_supported = CHIP_BUSTYPE_PARALLEL; |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 719 | /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and |
| 720 | * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB. |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 721 | * FIXME: Should we really touch the low mapping below 1 MB? Flashrom |
| 722 | * ignores that region completely. |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 723 | * Make the configured ROM areas writable. |
| 724 | */ |
| 725 | reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG); |
| 726 | reg8 |= LOWER_ROM_ADDRESS_RANGE; |
| 727 | reg8 |= UPPER_ROM_ADDRESS_RANGE; |
| 728 | reg8 |= ROM_WRITE_ENABLE; |
| 729 | pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 730 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 731 | /* Set positive decode on ROM. */ |
| 732 | reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2); |
| 733 | reg8 |= BIOS_ROM_POSITIVE_DECODE; |
| 734 | pci_write_byte(dev, DECODE_CONTROL_REG2, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 735 | |
Carl-Daniel Hailfinger | 2a9e245 | 2009-12-17 15:20:01 +0000 | [diff] [blame] | 736 | reg8 = pci_read_byte(dev, CS5530_RESET_CONTROL_REG); |
| 737 | if (reg8 & CS5530_ISA_MASTER) { |
| 738 | /* We have A0-A23 available. */ |
| 739 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 740 | } else { |
| 741 | reg8 = pci_read_byte(dev, CS5530_USB_SHADOW_REG); |
| 742 | if (reg8 & CS5530_ENABLE_SA2320) { |
| 743 | /* We have A0-19, A20-A23 available. */ |
| 744 | max_rom_decode.parallel = 16 * 1024 * 1024; |
| 745 | } else if (reg8 & CS5530_ENABLE_SA20) { |
| 746 | /* We have A0-19, A20 available. */ |
| 747 | max_rom_decode.parallel = 2 * 1024 * 1024; |
| 748 | } else { |
| 749 | /* A20 and above are not active. */ |
| 750 | max_rom_decode.parallel = 1024 * 1024; |
| 751 | } |
| 752 | } |
| 753 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 754 | return 0; |
| 755 | } |
| 756 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 757 | /** |
| 758 | * Geode systems write protect the BIOS via RCONFs (cache settings similar |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 759 | * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 760 | * |
| 761 | * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL. |
| 762 | * To enable write to NOR Boot flash for the benefit of systems that have such |
| 763 | * 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] | 764 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 765 | static int enable_flash_cs5536(struct pci_dev *dev, const char *name) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 766 | { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 767 | #define MSR_RCONF_DEFAULT 0x1808 |
| 768 | #define MSR_NORF_CTL 0x51400018 |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 769 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 770 | msr_t msr; |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 771 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 772 | /* Geode only has a single core */ |
| 773 | if (setup_cpu_msr(0)) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 774 | return -1; |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 775 | |
| 776 | msr = rdmsr(MSR_RCONF_DEFAULT); |
| 777 | if ((msr.hi >> 24) != 0x22) { |
| 778 | msr.hi &= 0xfbffffff; |
| 779 | wrmsr(MSR_RCONF_DEFAULT, msr); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 780 | } |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 781 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 782 | msr = rdmsr(MSR_NORF_CTL); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 783 | /* Raise WE_CS3 bit. */ |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 784 | msr.lo |= 0x08; |
| 785 | wrmsr(MSR_NORF_CTL, msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 786 | |
Stefan Reinauer | 8fa6481 | 2009-08-12 09:27:45 +0000 | [diff] [blame] | 787 | cleanup_cpu_msr(); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 788 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 789 | #undef MSR_RCONF_DEFAULT |
| 790 | #undef MSR_NORF_CTL |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 791 | return 0; |
| 792 | } |
| 793 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 794 | static int enable_flash_sc1100(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 795 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 796 | uint8_t new; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 797 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 798 | pci_write_byte(dev, 0x52, 0xee); |
| 799 | |
| 800 | new = pci_read_byte(dev, 0x52); |
| 801 | |
| 802 | if (new != 0xee) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 803 | 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] | 804 | return -1; |
| 805 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 806 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 807 | return 0; |
| 808 | } |
| 809 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 810 | /* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 811 | static int enable_flash_amd8111(struct pci_dev *dev, const char *name) |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 812 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 813 | uint8_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 814 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 815 | /* Enable decoding at 0xffb00000 to 0xffffffff. */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 816 | old = pci_read_byte(dev, 0x43); |
Ollie Lho | d11f361 | 2004-12-07 17:19:04 +0000 | [diff] [blame] | 817 | new = old | 0xC0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 818 | if (new != old) { |
| 819 | pci_write_byte(dev, 0x43, new); |
| 820 | if (pci_read_byte(dev, 0x43) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 821 | 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] | 822 | } |
| 823 | } |
| 824 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 825 | /* Enable 'ROM write' bit. */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 826 | old = pci_read_byte(dev, 0x40); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 827 | new = old | 0x01; |
| 828 | if (new == old) |
| 829 | return 0; |
| 830 | pci_write_byte(dev, 0x40, new); |
| 831 | |
| 832 | if (pci_read_byte(dev, 0x40) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 833 | 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] | 834 | return -1; |
| 835 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 836 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 837 | return 0; |
| 838 | } |
| 839 | |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 840 | static int enable_flash_sb600(struct pci_dev *dev, const char *name) |
| 841 | { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 842 | uint32_t tmp, prot; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 843 | uint8_t reg; |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 844 | struct pci_dev *smbus_dev; |
| 845 | int has_spi = 1; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 846 | |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 847 | /* Clear ROM protect 0-3. */ |
| 848 | for (reg = 0x50; reg < 0x60; reg += 4) { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 849 | prot = pci_read_long(dev, reg); |
| 850 | /* No protection flags for this region?*/ |
| 851 | if ((prot & 0x3) == 0) |
| 852 | continue; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 853 | msg_pinfo("SB600 %s%sprotected from %u to %u\n", |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 854 | (prot & 0x1) ? "write " : "", |
| 855 | (prot & 0x2) ? "read " : "", |
| 856 | (prot & 0xfffffc00), |
| 857 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
| 858 | prot &= 0xfffffffc; |
| 859 | pci_write_byte(dev, reg, prot); |
| 860 | prot = pci_read_long(dev, reg); |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 861 | if (prot & 0x3) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 862 | msg_perr("SB600 %s%sunprotect failed from %u to %u\n", |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 863 | (prot & 0x1) ? "write " : "", |
| 864 | (prot & 0x2) ? "read " : "", |
| 865 | (prot & 0xfffffc00), |
| 866 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 867 | } |
| 868 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 869 | /* Read SPI_BaseAddr */ |
| 870 | tmp = pci_read_long(dev, 0xa0); |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 871 | tmp &= 0xffffffe0; /* remove bits 4-0 (reserved) */ |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 872 | msg_pdbg("SPI base address is at 0x%x\n", tmp); |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 873 | |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 874 | /* If the BAR has address 0, it is unlikely SPI is used. */ |
| 875 | if (!tmp) |
| 876 | has_spi = 0; |
| 877 | |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 878 | if (has_spi) { |
| 879 | /* Physical memory has to be mapped at page (4k) boundaries. */ |
| 880 | sb600_spibar = physmap("SB600 SPI registers", tmp & 0xfffff000, |
| 881 | 0x1000); |
| 882 | /* The low bits of the SPI base address are used as offset into |
| 883 | * the mapped page. |
| 884 | */ |
| 885 | sb600_spibar += tmp & 0xfff; |
| 886 | |
| 887 | tmp = pci_read_long(dev, 0xa0); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 888 | msg_pdbg("AltSpiCSEnable=%i, SpiRomEnable=%i, " |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 889 | "AbortEnable=%i\n", tmp & 0x1, (tmp & 0x2) >> 1, |
| 890 | (tmp & 0x4) >> 2); |
| 891 | tmp = (pci_read_byte(dev, 0xba) & 0x4) >> 2; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 892 | msg_pdbg("PrefetchEnSPIFromIMC=%i, ", tmp); |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 893 | |
| 894 | tmp = pci_read_byte(dev, 0xbb); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 895 | msg_pdbg("PrefetchEnSPIFromHost=%i, SpiOpEnInLpcMode=%i\n", |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 896 | tmp & 0x1, (tmp & 0x20) >> 5); |
| 897 | tmp = mmio_readl(sb600_spibar); |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 898 | msg_pdbg("SpiArbEnable=%i, SpiAccessMacRomEn=%i, " |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 899 | "SpiHostAccessRomEn=%i, ArbWaitCount=%i, " |
| 900 | "SpiBridgeDisable=%i, DropOneClkOnRd=%i\n", |
| 901 | (tmp >> 19) & 0x1, (tmp >> 22) & 0x1, |
| 902 | (tmp >> 23) & 0x1, (tmp >> 24) & 0x7, |
| 903 | (tmp >> 27) & 0x1, (tmp >> 28) & 0x1); |
| 904 | } |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 905 | |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 906 | /* Look for the SMBus device. */ |
| 907 | smbus_dev = pci_dev_find(0x1002, 0x4385); |
| 908 | |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 909 | if (has_spi && !smbus_dev) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 910 | msg_perr("ERROR: SMBus device not found. Not enabling SPI.\n"); |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 911 | has_spi = 0; |
Carl-Daniel Hailfinger | f8555e2 | 2009-07-23 01:36:08 +0000 | [diff] [blame] | 912 | } |
| 913 | if (has_spi) { |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 914 | /* Note about the bit tests below: If a bit is zero, the GPIO is SPI. */ |
| 915 | /* GPIO11/SPI_DO and GPIO12/SPI_DI status */ |
| 916 | reg = pci_read_byte(smbus_dev, 0xAB); |
| 917 | reg &= 0xC0; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 918 | msg_pdbg("GPIO11 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_DO"); |
| 919 | msg_pdbg("GPIO12 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_DI"); |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 920 | if (reg != 0x00) |
| 921 | has_spi = 0; |
| 922 | /* GPIO31/SPI_HOLD and GPIO32/SPI_CS status */ |
| 923 | reg = pci_read_byte(smbus_dev, 0x83); |
| 924 | reg &= 0xC0; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 925 | msg_pdbg("GPIO31 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_HOLD"); |
| 926 | msg_pdbg("GPIO32 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_CS"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 927 | /* SPI_HOLD is not used on all boards, filter it out. */ |
| 928 | if ((reg & 0x80) != 0x00) |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 929 | has_spi = 0; |
| 930 | /* GPIO47/SPI_CLK status */ |
| 931 | reg = pci_read_byte(smbus_dev, 0xA7); |
| 932 | reg &= 0x40; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 933 | msg_pdbg("GPIO47 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_CLK"); |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 934 | if (reg != 0x00) |
| 935 | has_spi = 0; |
| 936 | } |
| 937 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 938 | buses_supported = CHIP_BUSTYPE_LPC | CHIP_BUSTYPE_FWH; |
| 939 | if (has_spi) { |
| 940 | buses_supported |= CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 941 | spi_controller = SPI_CONTROLLER_SB600; |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 942 | } |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 943 | |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 944 | /* Read ROM strap override register. */ |
| 945 | OUTB(0x8f, 0xcd6); |
| 946 | reg = INB(0xcd7); |
| 947 | reg &= 0x0e; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 948 | msg_pdbg("ROM strap override is %sactive", (reg & 0x02) ? "" : "not "); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 949 | if (reg & 0x02) { |
| 950 | switch ((reg & 0x0c) >> 2) { |
| 951 | case 0x00: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 952 | msg_pdbg(": LPC"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 953 | break; |
| 954 | case 0x01: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 955 | msg_pdbg(": PCI"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 956 | break; |
| 957 | case 0x02: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 958 | msg_pdbg(": FWH"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 959 | break; |
| 960 | case 0x03: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 961 | msg_pdbg(": SPI"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 962 | break; |
| 963 | } |
| 964 | } |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 965 | msg_pdbg("\n"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 966 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 967 | /* Force enable SPI ROM in SB600 PM register. |
| 968 | * 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] | 969 | * But how can we know which ROM we are going to handle? So we have |
| 970 | * 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] | 971 | * only SPI ROM if we boot via SPI ROM. If you want to access SPI on |
| 972 | * boards with LPC straps, you have to use the code below. |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 973 | */ |
| 974 | /* |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 975 | OUTB(0x8f, 0xcd6); |
| 976 | OUTB(0x0e, 0xcd7); |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 977 | */ |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 978 | |
| 979 | return 0; |
| 980 | } |
| 981 | |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 982 | static int enable_flash_nvidia_nforce2(struct pci_dev *dev, const char *name) |
| 983 | { |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 984 | uint8_t tmp; |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 985 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 986 | pci_write_byte(dev, 0x92, 0); |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 987 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 988 | tmp = pci_read_byte(dev, 0x6d); |
| 989 | tmp |= 0x01; |
| 990 | pci_write_byte(dev, 0x6d, tmp); |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 991 | |
Uwe Hermann | e9d04d4 | 2009-06-02 19:54:22 +0000 | [diff] [blame] | 992 | return 0; |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 993 | } |
| 994 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 995 | static int enable_flash_ck804(struct pci_dev *dev, const char *name) |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 996 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 997 | uint8_t old, new; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 998 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 999 | old = pci_read_byte(dev, 0x88); |
| 1000 | new = old | 0xc0; |
| 1001 | if (new != old) { |
| 1002 | pci_write_byte(dev, 0x88, new); |
| 1003 | if (pci_read_byte(dev, 0x88) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1004 | 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] | 1005 | } |
| 1006 | } |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 1007 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1008 | old = pci_read_byte(dev, 0x6d); |
| 1009 | new = old | 0x01; |
| 1010 | if (new == old) |
| 1011 | return 0; |
| 1012 | pci_write_byte(dev, 0x6d, new); |
| 1013 | |
| 1014 | if (pci_read_byte(dev, 0x6d) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1015 | 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] | 1016 | return -1; |
| 1017 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1018 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1019 | return 0; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1022 | /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */ |
| 1023 | static int enable_flash_sb400(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1024 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1025 | uint8_t tmp; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1026 | struct pci_dev *smbusdev; |
| 1027 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1028 | /* Look for the SMBus device. */ |
Carl-Daniel Hailfinger | f6e3efb | 2009-05-06 00:35:31 +0000 | [diff] [blame] | 1029 | smbusdev = pci_dev_find(0x1002, 0x4372); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1030 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1031 | if (!smbusdev) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1032 | msg_perr("ERROR: SMBus device not found. Aborting.\n"); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1033 | exit(1); |
| 1034 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1035 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1036 | /* Enable some SMBus stuff. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1037 | tmp = pci_read_byte(smbusdev, 0x79); |
| 1038 | tmp |= 0x01; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1039 | pci_write_byte(smbusdev, 0x79, tmp); |
| 1040 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1041 | /* Change southbridge. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1042 | tmp = pci_read_byte(dev, 0x48); |
| 1043 | tmp |= 0x21; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1044 | pci_write_byte(dev, 0x48, tmp); |
| 1045 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1046 | /* Now become a bit silly. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 1047 | tmp = INB(0xc6f); |
| 1048 | OUTB(tmp, 0xeb); |
| 1049 | OUTB(tmp, 0xeb); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1050 | tmp |= 0x40; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 1051 | OUTB(tmp, 0xc6f); |
| 1052 | OUTB(tmp, 0xeb); |
| 1053 | OUTB(tmp, 0xeb); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 1054 | |
| 1055 | return 0; |
| 1056 | } |
| 1057 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1058 | static int enable_flash_mcp55(struct pci_dev *dev, const char *name) |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 1059 | { |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 1060 | uint8_t old, new, val; |
| 1061 | uint16_t wordval; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1062 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1063 | /* Set the 0-16 MB enable bits. */ |
Michael Karcher | 4e2fb0e | 2010-01-12 23:29:26 +0000 | [diff] [blame] | 1064 | val = pci_read_byte(dev, 0x88); |
| 1065 | val |= 0xff; /* 256K */ |
| 1066 | pci_write_byte(dev, 0x88, val); |
| 1067 | val = pci_read_byte(dev, 0x8c); |
| 1068 | val |= 0xff; /* 1M */ |
| 1069 | pci_write_byte(dev, 0x8c, val); |
| 1070 | wordval = pci_read_word(dev, 0x90); |
| 1071 | wordval |= 0x7fff; /* 16M */ |
| 1072 | pci_write_word(dev, 0x90, wordval); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1073 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1074 | old = pci_read_byte(dev, 0x6d); |
| 1075 | new = old | 0x01; |
| 1076 | if (new == old) |
| 1077 | return 0; |
| 1078 | pci_write_byte(dev, 0x6d, new); |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 1079 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1080 | if (pci_read_byte(dev, 0x6d) != new) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1081 | 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] | 1082 | return -1; |
| 1083 | } |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 1084 | |
| 1085 | return 0; |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 1086 | } |
| 1087 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1088 | /* This is a shot in the dark. Even if the code is totally bogus for some |
| 1089 | * chipsets, users will at least start to send in reports. |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1090 | */ |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1091 | static int enable_flash_mcp6x_7x_common(struct pci_dev *dev, const char *name) |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1092 | { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1093 | int ret = 0; |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1094 | uint8_t val; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1095 | uint16_t status; |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1096 | char *busname; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1097 | uint32_t mcp_spibaraddr; |
| 1098 | void *mcp_spibar; |
| 1099 | struct pci_dev *smbusdev; |
| 1100 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1101 | msg_pinfo("This chipset is not really supported yet. Guesswork...\n"); |
| 1102 | |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1103 | /* dev is the ISA bridge. No idea what the stuff below does. */ |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1104 | val = pci_read_byte(dev, 0x8a); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1105 | 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] | 1106 | "is %i\n", val, (val >> 6) & 0x1, (val >> 5) & 0x1); |
| 1107 | switch ((val >> 5) & 0x3) { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1108 | case 0x0: |
| 1109 | buses_supported = CHIP_BUSTYPE_LPC; |
| 1110 | break; |
| 1111 | case 0x2: |
| 1112 | buses_supported = CHIP_BUSTYPE_SPI; |
| 1113 | break; |
| 1114 | default: |
| 1115 | buses_supported = CHIP_BUSTYPE_UNKNOWN; |
| 1116 | break; |
| 1117 | } |
| 1118 | busname = flashbuses_to_text(buses_supported); |
| 1119 | msg_pdbg("Guessed flash bus type is %s\n", busname); |
| 1120 | free(busname); |
| 1121 | |
| 1122 | /* Force enable SPI and disable LPC? Not a good idea. */ |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1123 | #if 0 |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1124 | val |= (1 << 6); |
| 1125 | val &= ~(1 << 5); |
| 1126 | pci_write_byte(dev, 0x8a, val); |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1127 | #endif |
| 1128 | |
| 1129 | /* Look for the SMBus device (SMBus PCI class) */ |
| 1130 | smbusdev = pci_dev_find_vendorclass(0x10de, 0x0c05); |
| 1131 | if (!smbusdev) { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1132 | if (buses_supported & CHIP_BUSTYPE_SPI) { |
| 1133 | msg_perr("ERROR: SMBus device not found. Not enabling " |
| 1134 | "SPI.\n"); |
| 1135 | buses_supported &= ~CHIP_BUSTYPE_SPI; |
| 1136 | ret = 1; |
| 1137 | } else { |
| 1138 | msg_pinfo("Odd. SMBus device not found.\n"); |
| 1139 | } |
| 1140 | goto out_msg; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1141 | } |
| 1142 | msg_pdbg("Found SMBus device %04x:%04x at %02x:%02x:%01x\n", |
| 1143 | smbusdev->vendor_id, smbusdev->device_id, |
| 1144 | smbusdev->bus, smbusdev->dev, smbusdev->func); |
| 1145 | |
| 1146 | /* Locate the BAR where the SPI interface lives. */ |
| 1147 | mcp_spibaraddr = pci_read_long(smbusdev, 0x74); |
| 1148 | msg_pdbg("SPI BAR is at 0x%08x, ", mcp_spibaraddr); |
| 1149 | /* We hope this has native alignment. We know the SPI interface (well, |
| 1150 | * a set of GPIOs that is connected to SPI flash) is at offset 0x530, |
| 1151 | * so we expect a size of at least 0x800. Clear the lower bits. |
| 1152 | * It is entirely possible that the BAR is 64k big and the low bits are |
| 1153 | * reserved for an entirely different purpose. |
| 1154 | */ |
| 1155 | mcp_spibaraddr &= ~0x7ff; |
| 1156 | msg_pdbg("after clearing low bits BAR is at 0x%08x\n", mcp_spibaraddr); |
| 1157 | |
| 1158 | /* Accessing a NULL pointer BAR is evil. Don't do it. */ |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1159 | if (mcp_spibaraddr && (buses_supported == CHIP_BUSTYPE_SPI)) { |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1160 | /* Map the BAR. Bytewise/wordwise access at 0x530 and 0x540. */ |
| 1161 | mcp_spibar = physmap("MCP67 SPI", mcp_spibaraddr, 0x544); |
| 1162 | |
| 1163 | /* Guessed. If this is correct, migrate to a separate MCP67 SPI driver. */ |
| 1164 | #define MCP67_SPI_CS (1 << 1) |
| 1165 | #define MCP67_SPI_SCK (1 << 2) |
| 1166 | #define MCP67_SPI_MOSI (1 << 3) |
| 1167 | #define MCP67_SPI_MISO (1 << 4) |
| 1168 | #define MCP67_SPI_ENABLE (1 << 0) |
| 1169 | #define MCP67_SPI_IDLE (1 << 8) |
| 1170 | |
| 1171 | status = mmio_readw(mcp_spibar + 0x530); |
| 1172 | msg_pdbg("SPI control is 0x%04x, enable=%i, idle=%i\n", |
| 1173 | status, status & 0x1, (status >> 8) & 0x1); |
| 1174 | /* FIXME: Remove the physunmap once the SPI driver exists. */ |
| 1175 | physunmap(mcp_spibar, 0x544); |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1176 | } else if (!mcp_spibaraddr && (buses_supported & CHIP_BUSTYPE_SPI)) { |
| 1177 | msg_pdbg("Strange. MCP SPI BAR is invalid.\n"); |
| 1178 | buses_supported &= ~CHIP_BUSTYPE_SPI; |
| 1179 | ret = 1; |
| 1180 | } else if (mcp_spibaraddr && !(buses_supported & CHIP_BUSTYPE_SPI)) { |
| 1181 | msg_pdbg("Strange. MCP SPI BAR is valid, but chipset apparently" |
| 1182 | " doesn't have SPI enabled.\n"); |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1183 | } else { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1184 | msg_pdbg("MCP SPI is not used.\n"); |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1185 | } |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1186 | out_msg: |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1187 | msg_pinfo("Please send the output of \"flashrom -V\" to " |
| 1188 | "flashrom@flashrom.org to help us finish support for your " |
| 1189 | "chipset. Thanks.\n"); |
| 1190 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1191 | return ret; |
| 1192 | } |
| 1193 | |
| 1194 | /** |
| 1195 | * The MCP61/MCP67 code is guesswork based on cleanroom reverse engineering. |
| 1196 | * Due to that, it only reads info and doesn't change any settings. |
| 1197 | * It is assumed that LPC chips need the MCP55 code and SPI chips need the |
| 1198 | * code provided in enable_flash_mcp6x_7x_common. Until we know for sure, call |
| 1199 | * enable_flash_mcp55 from this function only if enable_flash_mcp6x_7x_common |
| 1200 | * indicates the flash chip is LPC. Warning: enable_flash_mcp55 |
| 1201 | * might make SPI flash inaccessible. The same caveat applies to SPI init |
| 1202 | * for LPC flash. |
| 1203 | */ |
| 1204 | static int enable_flash_mcp67(struct pci_dev *dev, const char *name) |
| 1205 | { |
| 1206 | int result = 0; |
| 1207 | |
| 1208 | result = enable_flash_mcp6x_7x_common(dev, name); |
| 1209 | if (result) |
| 1210 | return result; |
| 1211 | |
| 1212 | /* Not sure if this is correct. No docs as usual. */ |
| 1213 | switch (buses_supported) { |
| 1214 | case CHIP_BUSTYPE_LPC: |
| 1215 | result = enable_flash_mcp55(dev, name); |
| 1216 | break; |
| 1217 | case CHIP_BUSTYPE_SPI: |
| 1218 | msg_pinfo("SPI on this chipset is not supported yet.\n"); |
| 1219 | buses_supported = CHIP_BUSTYPE_NONE; |
| 1220 | break; |
| 1221 | default: |
| 1222 | msg_pinfo("Something went wrong with bus type detection.\n"); |
| 1223 | buses_supported = CHIP_BUSTYPE_NONE; |
| 1224 | break; |
| 1225 | } |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1226 | |
| 1227 | return result; |
| 1228 | } |
| 1229 | |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1230 | static int enable_flash_mcp7x(struct pci_dev *dev, const char *name) |
| 1231 | { |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1232 | int result = 0; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1233 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1234 | result = enable_flash_mcp6x_7x_common(dev, name); |
| 1235 | if (result) |
| 1236 | return result; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1237 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1238 | /* Not sure if this is correct. No docs as usual. */ |
| 1239 | switch (buses_supported) { |
| 1240 | case CHIP_BUSTYPE_LPC: |
| 1241 | msg_pinfo("LPC on this chipset is not supported yet.\n"); |
| 1242 | break; |
| 1243 | case CHIP_BUSTYPE_SPI: |
| 1244 | msg_pinfo("SPI on this chipset is not supported yet.\n"); |
| 1245 | buses_supported = CHIP_BUSTYPE_NONE; |
| 1246 | break; |
| 1247 | default: |
| 1248 | msg_pinfo("Something went wrong with bus type detection.\n"); |
| 1249 | buses_supported = CHIP_BUSTYPE_NONE; |
| 1250 | break; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1251 | } |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1252 | |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1253 | return result; |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1254 | } |
| 1255 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1256 | static int enable_flash_ht1000(struct pci_dev *dev, const char *name) |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1257 | { |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1258 | uint8_t val; |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1259 | |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 1260 | /* Set the 4MB enable bit. */ |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1261 | val = pci_read_byte(dev, 0x41); |
| 1262 | val |= 0x0e; |
| 1263 | pci_write_byte(dev, 0x41, val); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1264 | |
Michael Karcher | cfa674f | 2010-02-25 11:38:23 +0000 | [diff] [blame] | 1265 | val = pci_read_byte(dev, 0x43); |
| 1266 | val |= (1 << 4); |
| 1267 | pci_write_byte(dev, 0x43, val); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1268 | |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 1269 | return 0; |
| 1270 | } |
| 1271 | |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1272 | /** |
| 1273 | * Usually on the x86 architectures (and on other PC-like platforms like some |
| 1274 | * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD |
| 1275 | * Elan SC520 only a small piece of the system flash is mapped there, but the |
| 1276 | * complete flash is mapped somewhere below 1G. The position can be determined |
| 1277 | * by the BOOTCS PAR register. |
| 1278 | */ |
| 1279 | static int get_flashbase_sc520(struct pci_dev *dev, const char *name) |
| 1280 | { |
| 1281 | int i, bootcs_found = 0; |
| 1282 | uint32_t parx = 0; |
| 1283 | void *mmcr; |
| 1284 | |
| 1285 | /* 1. Map MMCR */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 1286 | mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1287 | |
| 1288 | /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for |
| 1289 | * BOOTCS region (PARx[31:29] = 100b)e |
| 1290 | */ |
| 1291 | for (i = 0x88; i <= 0xc4; i += 4) { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 1292 | parx = mmio_readl(mmcr + i); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1293 | if ((parx >> 29) == 4) { |
| 1294 | bootcs_found = 1; |
| 1295 | break; /* BOOTCS found */ |
| 1296 | } |
| 1297 | } |
| 1298 | |
| 1299 | /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0] |
| 1300 | * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0] |
| 1301 | */ |
| 1302 | if (bootcs_found) { |
| 1303 | if (parx & (1 << 25)) { |
| 1304 | parx &= (1 << 14) - 1; /* Mask [13:0] */ |
| 1305 | flashbase = parx << 16; |
| 1306 | } else { |
| 1307 | parx &= (1 << 18) - 1; /* Mask [17:0] */ |
| 1308 | flashbase = parx << 12; |
| 1309 | } |
| 1310 | } else { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1311 | 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] | 1312 | } |
| 1313 | |
| 1314 | /* 4. Clean up */ |
Carl-Daniel Hailfinger | be72681 | 2009-08-09 12:44:08 +0000 | [diff] [blame] | 1315 | physunmap(mmcr, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 1316 | return 0; |
| 1317 | } |
| 1318 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1319 | #endif |
| 1320 | |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1321 | /* Please keep this list alphabetically sorted by vendor/device. */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1322 | const struct penable chipset_enables[] = { |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1323 | #if defined(__i386__) || defined(__x86_64__) |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1324 | {0x10B9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533}, |
| 1325 | {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111}, |
| 1326 | {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111}, |
| 1327 | {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530}, |
| 1328 | {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536}, |
Nils Jacobs | e715c7b | 2009-09-23 02:09:23 +0000 | [diff] [blame] | 1329 | {0x1022, 0x2090, OK, "AMD", "CS5536", enable_flash_cs5536}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1330 | {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520}, |
| 1331 | {0x1002, 0x438D, OK, "AMD", "SB600", enable_flash_sb600}, |
Carl-Daniel Hailfinger | 174962d | 2009-09-01 22:13:42 +0000 | [diff] [blame] | 1332 | {0x1002, 0x439d, OK, "AMD", "SB700/SB710/SB750", enable_flash_sb600}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1333 | {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100}, |
| 1334 | {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400}, |
| 1335 | {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000}, |
Carl-Daniel Hailfinger | 797a834 | 2009-11-26 16:51:39 +0000 | [diff] [blame] | 1336 | {0x8086, 0x3b00, NT, "Intel", "3400 Desktop", enable_flash_ich10}, |
| 1337 | {0x8086, 0x3b01, NT, "Intel", "3400 Mobile", enable_flash_ich10}, |
| 1338 | {0x8086, 0x3b0d, NT, "Intel", "3400 Mobile SFF", enable_flash_ich10}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1339 | {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1340 | {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e}, |
| 1341 | {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc}, |
| 1342 | {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1343 | {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1344 | {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10}, |
| 1345 | {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10}, |
| 1346 | {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10}, |
| 1347 | {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1348 | {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e}, |
| 1349 | {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1350 | {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1351 | {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1352 | {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e}, |
| 1353 | {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e}, |
| 1354 | {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1355 | {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc}, |
| 1356 | {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1357 | {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7}, |
| 1358 | {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7}, |
| 1359 | {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7}, |
| 1360 | {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7}, |
David Hendricks | db7c153 | 2010-01-19 02:19:27 +0000 | [diff] [blame] | 1361 | {0x8086, 0x27bc, OK, "Intel", "NM10", enable_flash_ich7}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1362 | {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1363 | {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8}, |
| 1364 | {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1365 | {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1366 | {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1367 | {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8}, |
| 1368 | {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1369 | {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9}, |
| 1370 | {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1371 | {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1372 | {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9}, |
| 1373 | {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9}, |
Carl-Daniel Hailfinger | 95baaad | 2009-08-21 17:26:13 +0000 | [diff] [blame] | 1374 | {0x8086, 0x2910, OK, "Intel", "ICH9 Engineering Sample", enable_flash_ich9}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1375 | {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4}, |
| 1376 | {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4}, |
| 1377 | {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4}, |
| 1378 | {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4}, |
Adam Jurkowski | e498410 | 2009-12-21 15:30:46 +0000 | [diff] [blame] | 1379 | {0x8086, 0x8119, OK, "Intel", "Poulsbo", enable_flash_poulsbo}, |
Luc Verhaegen | aad7e67 | 2009-10-06 11:32:21 +0000 | [diff] [blame] | 1380 | {0x10de, 0x0030, OK, "NVIDIA", "nForce4/MCP4", enable_flash_nvidia_nforce2}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1381 | {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */ |
| 1382 | {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */ |
Luc Verhaegen | 90e8e61 | 2009-05-26 09:48:28 +0000 | [diff] [blame] | 1383 | {0x10de, 0x0060, OK, "NVIDIA", "NForce2", enable_flash_nvidia_nforce2}, |
Michael Karcher | 5f31ebe | 2010-06-12 23:07:26 +0000 | [diff] [blame] | 1384 | {0x10de, 0x00e0, OK, "NVIDIA", "NForce3", enable_flash_nvidia_nforce2}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 1385 | /* Slave, should not be here, to fix known bug for A01. */ |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1386 | {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804}, |
| 1387 | {0x10de, 0x0260, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1388 | {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1389 | {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1390 | {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 1391 | {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/ |
Carl-Daniel Hailfinger | 33d7b6a | 2010-05-22 07:27:16 +0000 | [diff] [blame] | 1392 | /* 10de:0361 is present in Tyan S2915 OEM systems, but not connected to |
| 1393 | * the flash chip. Instead, 10de:0364 is connected to the flash chip. |
| 1394 | * Until we have PCI device class matching or some fallback mechanism, |
| 1395 | * this is needed to get flashrom working on Tyan S2915 and maybe other |
| 1396 | * dual-MCP55 boards. |
| 1397 | */ |
| 1398 | #if 0 |
| 1399 | {0x10de, 0x0361, NT, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1400 | #endif |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1401 | {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1402 | {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1403 | {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1404 | {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1405 | {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 1406 | {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */ |
Carl-Daniel Hailfinger | ce5fad0 | 2010-02-18 12:24:38 +0000 | [diff] [blame] | 1407 | {0x10de, 0x03e0, NT, "NVIDIA", "MCP61", enable_flash_mcp67}, |
| 1408 | {0x10de, 0x03e1, NT, "NVIDIA", "MCP61", enable_flash_mcp67}, |
| 1409 | {0x10de, 0x03e2, NT, "NVIDIA", "MCP61", enable_flash_mcp67}, |
| 1410 | {0x10de, 0x03e3, NT, "NVIDIA", "MCP61", enable_flash_mcp67}, |
Carl-Daniel Hailfinger | ea3b1b4 | 2010-02-13 23:41:01 +0000 | [diff] [blame] | 1411 | {0x10de, 0x0440, NT, "NVIDIA", "MCP65", enable_flash_mcp7x}, |
| 1412 | {0x10de, 0x0441, NT, "NVIDIA", "MCP65", enable_flash_mcp7x}, |
| 1413 | {0x10de, 0x0442, NT, "NVIDIA", "MCP65", enable_flash_mcp7x}, |
| 1414 | {0x10de, 0x0443, NT, "NVIDIA", "MCP65", enable_flash_mcp7x}, |
| 1415 | {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp67}, |
| 1416 | {0x10de, 0x075c, NT, "NVIDIA", "MCP78S", enable_flash_mcp7x}, |
| 1417 | {0x10de, 0x075d, NT, "NVIDIA", "MCP78S", enable_flash_mcp7x}, |
| 1418 | {0x10de, 0x07d7, NT, "NVIDIA", "MCP73", enable_flash_mcp7x}, |
| 1419 | {0x10de, 0x0aac, NT, "NVIDIA", "MCP79", enable_flash_mcp7x}, |
| 1420 | {0x10de, 0x0aad, NT, "NVIDIA", "MCP79", enable_flash_mcp7x}, |
| 1421 | {0x10de, 0x0aae, NT, "NVIDIA", "MCP79", enable_flash_mcp7x}, |
| 1422 | {0x10de, 0x0aaf, NT, "NVIDIA", "MCP79", enable_flash_mcp7x}, |
Carl-Daniel Hailfinger | 6a0269e | 2009-11-15 17:20:21 +0000 | [diff] [blame] | 1423 | {0x1039, 0x0496, NT, "SiS", "85C496+497", enable_flash_sis85c496}, |
| 1424 | {0x1039, 0x0406, NT, "SiS", "501/5101/5501", enable_flash_sis501}, |
| 1425 | {0x1039, 0x5511, NT, "SiS", "5511", enable_flash_sis5511}, |
Luc Verhaegen | 9cce2f5 | 2010-01-10 15:01:08 +0000 | [diff] [blame] | 1426 | {0x1039, 0x5596, NT, "SiS", "5596", enable_flash_sis5511}, |
Carl-Daniel Hailfinger | 6a0269e | 2009-11-15 17:20:21 +0000 | [diff] [blame] | 1427 | {0x1039, 0x5571, NT, "SiS", "5571", enable_flash_sis530}, |
| 1428 | {0x1039, 0x5591, NT, "SiS", "5591/5592", enable_flash_sis530}, |
| 1429 | {0x1039, 0x5597, NT, "SiS", "5597/5598/5581/5120", enable_flash_sis530}, |
| 1430 | {0x1039, 0x0530, NT, "SiS", "530", enable_flash_sis530}, |
| 1431 | {0x1039, 0x5600, NT, "SiS", "600", enable_flash_sis530}, |
| 1432 | {0x1039, 0x0620, NT, "SiS", "620", enable_flash_sis530}, |
| 1433 | {0x1039, 0x0540, NT, "SiS", "540", enable_flash_sis540}, |
Luc Verhaegen | 9892ca6 | 2009-12-09 07:43:13 +0000 | [diff] [blame] | 1434 | {0x1039, 0x0630, NT, "SiS", "630", enable_flash_sis540}, |
| 1435 | {0x1039, 0x0635, NT, "SiS", "635", enable_flash_sis540}, |
| 1436 | {0x1039, 0x0640, NT, "SiS", "640", enable_flash_sis540}, |
| 1437 | {0x1039, 0x0645, NT, "SiS", "645", enable_flash_sis540}, |
| 1438 | {0x1039, 0x0646, NT, "SiS", "645DX", enable_flash_sis540}, |
| 1439 | {0x1039, 0x0648, NT, "SiS", "648", enable_flash_sis540}, |
| 1440 | {0x1039, 0x0650, NT, "SiS", "650", enable_flash_sis540}, |
| 1441 | {0x1039, 0x0651, NT, "SiS", "651", enable_flash_sis540}, |
| 1442 | {0x1039, 0x0655, NT, "SiS", "655", enable_flash_sis540}, |
| 1443 | {0x1039, 0x0730, NT, "SiS", "730", enable_flash_sis540}, |
| 1444 | {0x1039, 0x0733, NT, "SiS", "733", enable_flash_sis540}, |
| 1445 | {0x1039, 0x0735, OK, "SiS", "735", enable_flash_sis540}, |
| 1446 | {0x1039, 0x0740, NT, "SiS", "740", enable_flash_sis540}, |
| 1447 | {0x1039, 0x0745, NT, "SiS", "745", enable_flash_sis540}, |
| 1448 | {0x1039, 0x0746, NT, "SiS", "746", enable_flash_sis540}, |
| 1449 | {0x1039, 0x0748, NT, "SiS", "748", enable_flash_sis540}, |
| 1450 | {0x1039, 0x0755, NT, "SiS", "755", enable_flash_sis540}, |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1451 | /* VIA northbridges */ |
| 1452 | {0x1106, 0x0585, NT, "VIA", "VT82C585VPX", via_no_byte_merge}, |
| 1453 | {0x1106, 0x0595, NT, "VIA", "VT82C595", via_no_byte_merge}, |
| 1454 | {0x1106, 0x0597, NT, "VIA", "VT82C597", via_no_byte_merge}, |
| 1455 | {0x1106, 0x0691, NT, "VIA", "VT82C69x", via_no_byte_merge}, /* 691, 693a, 694t, 694x checked */ |
| 1456 | {0x1106, 0x0601, NT, "VIA", "VT8601/VT8601A", via_no_byte_merge}, |
| 1457 | {0x1106, 0x8601, NT, "VIA", "VT8601T", via_no_byte_merge}, |
| 1458 | /* VIA southbridges */ |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1459 | {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x}, |
| 1460 | {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x}, |
Mateusz Murawski | e6abef0 | 2009-06-18 12:42:46 +0000 | [diff] [blame] | 1461 | {0x1106, 0x3074, NT, "VIA", "VT8233", enable_flash_vt823x}, |
Raúl Soriano | cd8404d | 2009-12-23 21:29:18 +0000 | [diff] [blame] | 1462 | {0x1106, 0x3147, OK, "VIA", "VT8233A", enable_flash_vt823x}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1463 | {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x}, |
| 1464 | {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x}, |
| 1465 | {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x}, |
| 1466 | {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi}, |
Arjan Koers | 8dfea83 | 2009-06-15 00:03:37 +0000 | [diff] [blame] | 1467 | {0x1106, 0x8353, OK, "VIA", "VX800", enable_flash_vt8237s_spi}, |
Uwe Hermann | 3e0774d | 2009-09-25 01:05:06 +0000 | [diff] [blame] | 1468 | {0x1106, 0x0596, OK, "VIA", "VT82C596", enable_flash_amd8111}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 1469 | {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111}, |
| 1470 | {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111}, |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 1471 | #endif |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1472 | {}, |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1473 | }; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 1474 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1475 | int chipset_flash_enable(void) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1476 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1477 | struct pci_dev *dev = 0; |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1478 | int ret = -2; /* Nothing! */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1479 | int i; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1480 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1481 | /* Now let's try to find the chipset we have... */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1482 | for (i = 0; chipset_enables[i].vendor_name != NULL; i++) { |
| 1483 | dev = pci_dev_find(chipset_enables[i].vendor_id, |
| 1484 | chipset_enables[i].device_id); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1485 | if (!dev) |
| 1486 | continue; |
| 1487 | if (ret != -2) { |
| 1488 | msg_pinfo("WARNING: unexpected second chipset match: " |
| 1489 | "\"%s %s\"\nignoring, please report lspci and " |
| 1490 | "board URL to flashrom@flashrom.org!\n", |
| 1491 | chipset_enables[i].vendor_name, |
| 1492 | chipset_enables[i].device_name); |
| 1493 | continue; |
| 1494 | } |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1495 | msg_pinfo("Found chipset \"%s %s\", enabling flash write... ", |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1496 | chipset_enables[i].vendor_name, |
| 1497 | chipset_enables[i].device_name); |
Carl-Daniel Hailfinger | f469c27 | 2010-05-22 07:31:50 +0000 | [diff] [blame] | 1498 | msg_pdbg("chipset PCI ID is %04x:%04x, ", |
| 1499 | chipset_enables[i].vendor_id, |
| 1500 | chipset_enables[i].device_id); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1501 | |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1502 | ret = chipset_enables[i].doit(dev, |
| 1503 | chipset_enables[i].device_name); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1504 | if (ret == NOT_DONE_YET) { |
| 1505 | ret = -2; |
| 1506 | msg_pinfo("OK - searching further chips.\n"); |
| 1507 | } else if (ret < 0) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1508 | msg_pinfo("FAILED!\n"); |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1509 | else if(ret == 0) |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1510 | msg_pinfo("OK.\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1511 | } |
Michael Karcher | 89bed6d | 2010-06-13 10:16:12 +0000 | [diff] [blame] | 1512 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 1513 | msg_pinfo("This chipset supports the following protocols: %s.\n", |
Uwe Hermann | 9899cad | 2009-06-28 21:47:57 +0000 | [diff] [blame] | 1514 | flashbuses_to_text(buses_supported)); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1515 | |
| 1516 | return ret; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1517 | } |