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