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 |
| 5 | * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de> |
| 6 | * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 7 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; version 2 of the License. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 11 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * Contains the chipset specific flash enables. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 24 | */ |
| 25 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 26 | #define _LARGEFILE64_SOURCE |
| 27 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 28 | #include <stdlib.h> |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 29 | #include <string.h> |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 30 | #include <sys/types.h> |
| 31 | #include <sys/stat.h> |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 32 | #include <sys/mman.h> |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 33 | #include <fcntl.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 34 | #include "flash.h" |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 35 | |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 36 | unsigned long flashbase = 0; |
| 37 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 38 | /** |
| 39 | * flashrom defaults to LPC flash devices. If a known SPI controller is found |
| 40 | * and the SPI strappings are set, this will be overwritten by the probing code. |
| 41 | * |
| 42 | * Eventually, this will become an array when multiple flash support works. |
| 43 | */ |
| 44 | |
| 45 | flashbus_t flashbus = BUS_TYPE_LPC; |
| 46 | void *spibar = NULL; |
| 47 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 48 | extern int ichspi_lock; |
| 49 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 50 | 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] | 51 | { |
| 52 | uint8_t tmp; |
| 53 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 54 | /* |
| 55 | * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and |
| 56 | * 0xFFFE0000-0xFFFFFFFF ROM select enable. |
| 57 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 58 | tmp = pci_read_byte(dev, 0x47); |
| 59 | tmp |= 0x46; |
| 60 | pci_write_byte(dev, 0x47, tmp); |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 65 | static int enable_flash_sis630(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 66 | { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 67 | uint8_t b; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 68 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 69 | /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */ |
Alex Beregszaszi | c9fb5d9 | 2007-09-11 15:58:18 +0000 | [diff] [blame] | 70 | b = pci_read_byte(dev, 0x40); |
| 71 | pci_write_byte(dev, 0x40, b | 0xb); |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 72 | |
| 73 | /* Flash write enable on SiS 540/630. */ |
Alex Beregszaszi | c9fb5d9 | 2007-09-11 15:58:18 +0000 | [diff] [blame] | 74 | b = pci_read_byte(dev, 0x45); |
| 75 | pci_write_byte(dev, 0x45, b | 0x40); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 76 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 77 | /* The same thing on SiS 950 Super I/O side... */ |
| 78 | |
| 79 | /* First probe for Super I/O on config port 0x2e. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 80 | OUTB(0x87, 0x2e); |
| 81 | OUTB(0x01, 0x2e); |
| 82 | OUTB(0x55, 0x2e); |
| 83 | OUTB(0x55, 0x2e); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 84 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 85 | if (INB(0x2f) != 0x87) { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 86 | /* If that failed, try config port 0x4e. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 87 | OUTB(0x87, 0x4e); |
| 88 | OUTB(0x01, 0x4e); |
| 89 | OUTB(0x55, 0x4e); |
| 90 | OUTB(0xaa, 0x4e); |
| 91 | if (INB(0x4f) != 0x87) { |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 92 | printf("Can not access SiS 950\n"); |
| 93 | return -1; |
| 94 | } |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 95 | OUTB(0x24, 0x4e); |
| 96 | b = INB(0x4f) | 0xfc; |
| 97 | OUTB(0x24, 0x4e); |
| 98 | OUTB(b, 0x4f); |
| 99 | OUTB(0x02, 0x4e); |
| 100 | OUTB(0x02, 0x4f); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 103 | OUTB(0x24, 0x2e); |
| 104 | printf("2f is %#x\n", INB(0x2f)); |
| 105 | b = INB(0x2f) | 0xfc; |
| 106 | OUTB(0x24, 0x2e); |
| 107 | OUTB(b, 0x2f); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 108 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 109 | OUTB(0x02, 0x2e); |
| 110 | OUTB(0x02, 0x2f); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | |
Uwe Hermann | 987942d | 2006-11-07 11:16:21 +0000 | [diff] [blame] | 115 | /* Datasheet: |
| 116 | * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4) |
| 117 | * - URL: http://www.intel.com/design/intarch/datashts/290562.htm |
| 118 | * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf |
| 119 | * - Order Number: 290562-001 |
| 120 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 121 | static int enable_flash_piix4(struct pci_dev *dev, const char *name) |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 122 | { |
| 123 | uint16_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 124 | uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */ |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 125 | |
| 126 | old = pci_read_word(dev, xbcs); |
| 127 | |
| 128 | /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 129 | * FFF00000-FFF7FFFF are forwarded to ISA). |
Uwe Hermann | c556d32 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 130 | * Note: This bit is reserved on PIIX/PIIX3/MPIIX. |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 131 | * Set bit 7: Extended BIOS Enable (PCI master accesses to |
| 132 | * FFF80000-FFFDFFFF are forwarded to ISA). |
| 133 | * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to |
| 134 | * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top |
| 135 | * of 1 Mbyte, or the aliases at the top of 4 Gbyte |
| 136 | * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#. |
| 137 | * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA. |
| 138 | * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable). |
| 139 | */ |
Uwe Hermann | c556d32 | 2008-10-28 11:50:05 +0000 | [diff] [blame] | 140 | if (dev->device_id == 0x122e || dev->device_id == 0x7000 |
| 141 | || dev->device_id == 0x1234) |
| 142 | new = old | 0x00c4; /* PIIX/PIIX3/MPIIX: Bit 9 is reserved. */ |
Uwe Hermann | 8720345 | 2008-10-26 18:40:42 +0000 | [diff] [blame] | 143 | else |
| 144 | new = old | 0x02c4; |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 145 | |
| 146 | if (new == old) |
| 147 | return 0; |
| 148 | |
| 149 | pci_write_word(dev, xbcs, new); |
| 150 | |
| 151 | if (pci_read_word(dev, xbcs) != new) { |
| 152 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name); |
| 153 | return -1; |
| 154 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 155 | |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 156 | return 0; |
| 157 | } |
| 158 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 159 | /* |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 160 | * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet" |
| 161 | * http://download.intel.com/design/chipsets/datashts/30701303.pdf |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 162 | */ |
| 163 | static int enable_flash_ich(struct pci_dev *dev, const char *name, |
| 164 | int bios_cntl) |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 165 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 166 | uint8_t old, new; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 167 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 168 | /* |
| 169 | * 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] | 170 | * 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] | 171 | */ |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 172 | old = pci_read_byte(dev, bios_cntl); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 173 | |
Uwe Hermann | 793bdcd | 2008-05-22 22:47:04 +0000 | [diff] [blame] | 174 | printf_debug("\nBIOS Lock Enable: %sabled, ", |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 175 | (old & (1 << 1)) ? "en" : "dis"); |
| 176 | printf_debug("BIOS Write Enable: %sabled, ", |
| 177 | (old & (1 << 0)) ? "en" : "dis"); |
| 178 | printf_debug("BIOS_CNTL is 0x%x\n", old); |
| 179 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 180 | new = old | 1; |
| 181 | |
| 182 | if (new == old) |
| 183 | return 0; |
| 184 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 185 | pci_write_byte(dev, bios_cntl, new); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 186 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 187 | if (pci_read_byte(dev, bios_cntl) != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 188 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", bios_cntl, new, name); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 189 | return -1; |
| 190 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 191 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 192 | return 0; |
| 193 | } |
| 194 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 195 | 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] | 196 | { |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 197 | return enable_flash_ich(dev, name, 0x4e); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 200 | 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] | 201 | { |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 202 | return enable_flash_ich(dev, name, 0xdc); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 203 | } |
| 204 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 205 | #define ICH_STRAP_RSVD 0x00 |
| 206 | #define ICH_STRAP_SPI 0x01 |
| 207 | #define ICH_STRAP_PCI 0x02 |
| 208 | #define ICH_STRAP_LPC 0x03 |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 209 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 210 | static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) |
| 211 | { |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 212 | uint32_t mmio_base; |
| 213 | |
| 214 | mmio_base = (pci_read_long(dev, 0xbc)) << 8; |
| 215 | printf_debug("MMIO base at = 0x%x\n", mmio_base); |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 216 | spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70); |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 217 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 218 | printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 219 | mmio_readw(spibar + 0x6c)); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 220 | |
| 221 | flashbus = BUS_TYPE_VIA_SPI; |
Rudolf Marek | 0c2029f | 2009-02-01 18:40:50 +0000 | [diff] [blame] | 222 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 223 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 224 | return 0; |
| 225 | } |
| 226 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 227 | static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, |
| 228 | int ich_generation) |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 229 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 230 | int ret, i; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 231 | uint8_t old, new, bbs, buc; |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 232 | uint16_t spibar_offset, tmp2; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 233 | uint32_t tmp, gcs; |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 234 | void *rcrb; |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 235 | //TODO: These names are incorrect for EP80579. For that, the solution would look like the commented line |
| 236 | //static const char *straps_names[] = {"SPI", "reserved", "reserved", "LPC" }; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 237 | static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" }; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 238 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 239 | /* Enable Flash Writes */ |
| 240 | ret = enable_flash_ich_dc(dev, name); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 241 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 242 | /* Get physical address of Root Complex Register Block */ |
| 243 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 244 | printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 245 | |
| 246 | /* Map RCBA to virtual memory */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 247 | rcrb = physmap("ICH RCRB", tmp, 0x4000); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 248 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 249 | gcs = mmio_readl(rcrb + 0x3410); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 250 | printf_debug("GCS = 0x%x: ", gcs); |
| 251 | printf_debug("BIOS Interface Lock-Down: %sabled, ", |
| 252 | (gcs & 0x1) ? "en" : "dis"); |
| 253 | bbs = (gcs >> 10) & 0x3; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 254 | printf_debug("BOOT BIOS Straps: 0x%x (%s)\n", bbs, straps_names[bbs]); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 255 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 256 | buc = mmio_readb(rcrb + 0x3414); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 257 | printf_debug("Top Swap : %s\n", |
| 258 | (buc & 1) ? "enabled (A16 inverted)" : "not enabled"); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 259 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 260 | /* It seems the ICH7 does not support SPI and LPC chips at the same |
| 261 | * time. At least not with our current code. So we prevent searching |
| 262 | * on ICH7 when the southbridge is strapped to LPC |
| 263 | */ |
| 264 | |
| 265 | if (ich_generation == 7 && bbs == ICH_STRAP_LPC) { |
| 266 | /* No further SPI initialization required */ |
| 267 | return ret; |
| 268 | } |
| 269 | |
| 270 | switch (ich_generation) { |
| 271 | case 7: |
| 272 | flashbus = BUS_TYPE_ICH7_SPI; |
| 273 | spibar_offset = 0x3020; |
| 274 | break; |
| 275 | case 8: |
| 276 | flashbus = BUS_TYPE_ICH9_SPI; |
| 277 | spibar_offset = 0x3020; |
| 278 | break; |
| 279 | case 9: |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 280 | case 10: |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 281 | default: /* Future version might behave the same */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 282 | flashbus = BUS_TYPE_ICH9_SPI; |
| 283 | spibar_offset = 0x3800; |
| 284 | break; |
| 285 | } |
| 286 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 287 | /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 288 | printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 289 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 290 | /* Assign Virtual Address */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 291 | spibar = rcrb + spibar_offset; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 292 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 293 | switch (flashbus) { |
| 294 | case BUS_TYPE_ICH7_SPI: |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 295 | printf_debug("0x00: 0x%04x (SPIS)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 296 | mmio_readw(spibar + 0)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 297 | printf_debug("0x02: 0x%04x (SPIC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 298 | mmio_readw(spibar + 2)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 299 | printf_debug("0x04: 0x%08x (SPIA)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 300 | mmio_readl(spibar + 4)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 301 | for (i = 0; i < 8; i++) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 302 | int offs; |
| 303 | offs = 8 + (i * 8); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 304 | printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 305 | mmio_readl(spibar + offs), i); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 306 | printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 307 | mmio_readl(spibar + offs + 4), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 308 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 309 | printf_debug("0x50: 0x%08x (BBAR)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 310 | mmio_readl(spibar + 0x50)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 311 | printf_debug("0x54: 0x%04x (PREOP)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 312 | mmio_readw(spibar + 0x54)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 313 | printf_debug("0x56: 0x%04x (OPTYPE)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 314 | mmio_readw(spibar + 0x56)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 315 | printf_debug("0x58: 0x%08x (OPMENU)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 316 | mmio_readl(spibar + 0x58)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 317 | printf_debug("0x5c: 0x%08x (OPMENU+4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 318 | mmio_readl(spibar + 0x5c)); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 319 | for (i = 0; i < 4; i++) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 320 | int offs; |
| 321 | offs = 0x60 + (i * 4); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 322 | printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs, |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 323 | mmio_readl(spibar + offs), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 324 | } |
| 325 | printf_debug("\n"); |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 326 | if (mmio_readw(spibar) & (1 << 15)) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 327 | printf("WARNING: SPI Configuration Lockdown activated.\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 328 | ichspi_lock = 1; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 329 | } |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 330 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 331 | break; |
| 332 | case BUS_TYPE_ICH9_SPI: |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 333 | tmp2 = mmio_readw(spibar + 4); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 334 | printf_debug("0x04: 0x%04x (HSFS)\n", tmp2); |
| 335 | printf_debug("FLOCKDN %i, ", (tmp2 >> 15 & 1)); |
| 336 | printf_debug("FDV %i, ", (tmp2 >> 14) & 1); |
| 337 | printf_debug("FDOPSS %i, ", (tmp2 >> 13) & 1); |
| 338 | printf_debug("SCIP %i, ", (tmp2 >> 5) & 1); |
| 339 | printf_debug("BERASE %i, ", (tmp2 >> 3) & 3); |
| 340 | printf_debug("AEL %i, ", (tmp2 >> 2) & 1); |
| 341 | printf_debug("FCERR %i, ", (tmp2 >> 1) & 1); |
| 342 | printf_debug("FDONE %i\n", (tmp2 >> 0) & 1); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 343 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 344 | tmp = mmio_readl(spibar + 0x50); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 345 | printf_debug("0x50: 0x%08x (FRAP)\n", tmp); |
| 346 | printf_debug("BMWAG %i, ", (tmp >> 24) & 0xff); |
| 347 | printf_debug("BMRAG %i, ", (tmp >> 16) & 0xff); |
| 348 | printf_debug("BRWA %i, ", (tmp >> 8) & 0xff); |
| 349 | printf_debug("BRRA %i\n", (tmp >> 0) & 0xff); |
| 350 | |
| 351 | printf_debug("0x54: 0x%08x (FREG0)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 352 | mmio_readl(spibar + 0x54)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 353 | printf_debug("0x58: 0x%08x (FREG1)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 354 | mmio_readl(spibar + 0x58)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 355 | printf_debug("0x5C: 0x%08x (FREG2)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 356 | mmio_readl(spibar + 0x5C)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 357 | printf_debug("0x60: 0x%08x (FREG3)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 358 | mmio_readl(spibar + 0x60)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 359 | printf_debug("0x64: 0x%08x (FREG4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 360 | mmio_readl(spibar + 0x64)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 361 | printf_debug("0x74: 0x%08x (PR0)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 362 | mmio_readl(spibar + 0x74)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 363 | printf_debug("0x78: 0x%08x (PR1)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 364 | mmio_readl(spibar + 0x78)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 365 | printf_debug("0x7C: 0x%08x (PR2)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 366 | mmio_readl(spibar + 0x7C)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 367 | printf_debug("0x80: 0x%08x (PR3)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 368 | mmio_readl(spibar + 0x80)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 369 | printf_debug("0x84: 0x%08x (PR4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 370 | mmio_readl(spibar + 0x84)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 371 | printf_debug("0x90: 0x%08x (SSFS, SSFC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 372 | mmio_readl(spibar + 0x90)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 373 | printf_debug("0x94: 0x%04x (PREOP)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 374 | mmio_readw(spibar + 0x94)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 375 | printf_debug("0x96: 0x%04x (OPTYPE)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 376 | mmio_readw(spibar + 0x96)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 377 | printf_debug("0x98: 0x%08x (OPMENU)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 378 | mmio_readl(spibar + 0x98)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 379 | printf_debug("0x9C: 0x%08x (OPMENU+4)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 380 | mmio_readl(spibar + 0x9C)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 381 | printf_debug("0xA0: 0x%08x (BBAR)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 382 | mmio_readl(spibar + 0xA0)); |
Carl-Daniel Hailfinger | d3b0e39 | 2008-11-03 00:20:22 +0000 | [diff] [blame] | 383 | printf_debug("0xB0: 0x%08x (FDOC)\n", |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 384 | mmio_readl(spibar + 0xB0)); |
FENG yu ning | 37179b8 | 2009-01-18 06:39:32 +0000 | [diff] [blame] | 385 | if (tmp2 & (1 << 15)) { |
| 386 | printf("WARNING: SPI Configuration Lockdown activated.\n"); |
| 387 | ichspi_lock = 1; |
| 388 | } |
Peter Stuge | e8a3e4c | 2008-12-22 14:12:08 +0000 | [diff] [blame] | 389 | ich_init_opcodes(); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 390 | break; |
| 391 | default: |
| 392 | /* Nothing */ |
| 393 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 394 | } |
| 395 | |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 396 | old = pci_read_byte(dev, 0xdc); |
| 397 | printf_debug("SPI Read Configuration: "); |
| 398 | new = (old >> 2) & 0x3; |
| 399 | switch (new) { |
| 400 | case 0: |
| 401 | case 1: |
| 402 | case 2: |
| 403 | printf_debug("prefetching %sabled, caching %sabled, ", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 404 | (new & 0x2) ? "en" : "dis", |
| 405 | (new & 0x1) ? "dis" : "en"); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 406 | break; |
| 407 | default: |
| 408 | printf_debug("invalid prefetching/caching settings, "); |
| 409 | break; |
| 410 | } |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 411 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 412 | return ret; |
| 413 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 414 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 415 | 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] | 416 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 417 | return enable_flash_ich_dc_spi(dev, name, 7); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 418 | } |
| 419 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 420 | static int enable_flash_ich8(struct pci_dev *dev, const char *name) |
| 421 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 422 | return enable_flash_ich_dc_spi(dev, name, 8); |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 425 | static int enable_flash_ich9(struct pci_dev *dev, const char *name) |
| 426 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 427 | return enable_flash_ich_dc_spi(dev, name, 9); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 428 | } |
| 429 | |
Carl-Daniel Hailfinger | 28ec74b | 2008-10-10 20:54:41 +0000 | [diff] [blame] | 430 | static int enable_flash_ich10(struct pci_dev *dev, const char *name) |
| 431 | { |
| 432 | return enable_flash_ich_dc_spi(dev, name, 10); |
| 433 | } |
| 434 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 435 | static int enable_flash_vt823x(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 436 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 437 | uint8_t val; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 438 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 439 | /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF */ |
Bari Ari | 9477c4e | 2008-04-29 13:46:38 +0000 | [diff] [blame] | 440 | pci_write_byte(dev, 0x41, 0x7f); |
| 441 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 442 | /* ROM write enable */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 443 | val = pci_read_byte(dev, 0x40); |
| 444 | val |= 0x10; |
| 445 | pci_write_byte(dev, 0x40, val); |
| 446 | |
| 447 | if (pci_read_byte(dev, 0x40) != val) { |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 448 | printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 449 | name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 450 | return -1; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 451 | } |
Luc Verhaegen | 6382b44 | 2007-03-02 22:16:38 +0000 | [diff] [blame] | 452 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 453 | return 0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 454 | } |
| 455 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 456 | static int enable_flash_cs5530(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 457 | { |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 458 | uint8_t reg8; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 459 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 460 | #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */ |
| 461 | #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 462 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 463 | #define LOWER_ROM_ADDRESS_RANGE (1 << 0) |
| 464 | #define ROM_WRITE_ENABLE (1 << 1) |
| 465 | #define UPPER_ROM_ADDRESS_RANGE (1 << 2) |
| 466 | #define BIOS_ROM_POSITIVE_DECODE (1 << 5) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 467 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 468 | /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and |
| 469 | * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB. |
| 470 | * Make the configured ROM areas writable. |
| 471 | */ |
| 472 | reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG); |
| 473 | reg8 |= LOWER_ROM_ADDRESS_RANGE; |
| 474 | reg8 |= UPPER_ROM_ADDRESS_RANGE; |
| 475 | reg8 |= ROM_WRITE_ENABLE; |
| 476 | pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 477 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 478 | /* Set positive decode on ROM. */ |
| 479 | reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2); |
| 480 | reg8 |= BIOS_ROM_POSITIVE_DECODE; |
| 481 | pci_write_byte(dev, DECODE_CONTROL_REG2, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 482 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 483 | return 0; |
| 484 | } |
| 485 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 486 | /** |
| 487 | * Geode systems write protect the BIOS via RCONFs (cache settings similar |
| 488 | * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and |
| 489 | * writing to MSRs, however requires instructions rdmsr/wrmsr, which are |
| 490 | * ring0 privileged instructions so only the kernel can do the read/write. |
| 491 | * This function, therefore, requires that the msr kernel module be loaded |
| 492 | * to access these instructions from user space using device /dev/cpu/0/msr. |
| 493 | * |
| 494 | * This hard-coded location could have potential problems on SMP machines |
| 495 | * since it assumes cpu0, but it is safe on the Geode which is not SMP. |
| 496 | * |
| 497 | * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL. |
| 498 | * To enable write to NOR Boot flash for the benefit of systems that have such |
| 499 | * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select). |
| 500 | * |
| 501 | * This is probably not portable beyond Linux. |
| 502 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 503 | static int enable_flash_cs5536(struct pci_dev *dev, const char *name) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 504 | { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 505 | #define MSR_RCONF_DEFAULT 0x1808 |
| 506 | #define MSR_NORF_CTL 0x51400018 |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 507 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 508 | int fd_msr; |
| 509 | unsigned char buf[8]; |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 510 | |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 511 | fd_msr = open("/dev/cpu/0/msr", O_RDWR); |
Bertrand Jacquin | b452a91 | 2009-05-05 21:08:36 +0000 | [diff] [blame] | 512 | if (fd_msr == -1) { |
Peter Stuge | 7725fa8 | 2009-05-06 13:38:55 +0000 | [diff] [blame] | 513 | perror("open(/dev/cpu/0/msr)"); |
| 514 | printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n"); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 515 | return -1; |
| 516 | } |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 517 | |
| 518 | if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) { |
| 519 | perror("lseek64"); |
| 520 | close(fd_msr); |
| 521 | return -1; |
| 522 | } |
| 523 | |
| 524 | if (read(fd_msr, buf, 8) != 8) { |
Mart Raudsepp | 3697ac7 | 2008-02-11 14:32:45 +0000 | [diff] [blame] | 525 | perror("read msr"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 526 | close(fd_msr); |
| 527 | return -1; |
| 528 | } |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 529 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 530 | if (buf[7] != 0x22) { |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 531 | buf[7] &= 0xfb; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 532 | if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, |
| 533 | SEEK_SET) == -1) { |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 534 | perror("lseek64"); |
| 535 | close(fd_msr); |
| 536 | return -1; |
| 537 | } |
| 538 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 539 | if (write(fd_msr, buf, 8) < 0) { |
| 540 | perror("msr write"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 541 | close(fd_msr); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 542 | return -1; |
| 543 | } |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 544 | } |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 545 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 546 | if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) { |
| 547 | perror("lseek64"); |
| 548 | close(fd_msr); |
| 549 | return -1; |
| 550 | } |
| 551 | |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 552 | if (read(fd_msr, buf, 8) != 8) { |
| 553 | perror("read msr"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 554 | close(fd_msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 555 | return -1; |
| 556 | } |
| 557 | |
| 558 | /* Raise WE_CS3 bit. */ |
| 559 | buf[0] |= 0x08; |
| 560 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 561 | if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) { |
| 562 | perror("lseek64"); |
| 563 | close(fd_msr); |
| 564 | return -1; |
| 565 | } |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 566 | if (write(fd_msr, buf, 8) < 0) { |
| 567 | perror("msr write"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 568 | close(fd_msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 569 | return -1; |
| 570 | } |
| 571 | |
| 572 | close(fd_msr); |
| 573 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 574 | #undef MSR_RCONF_DEFAULT |
| 575 | #undef MSR_NORF_CTL |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 576 | return 0; |
| 577 | } |
| 578 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 579 | static int enable_flash_sc1100(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 580 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 581 | uint8_t new; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 582 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 583 | pci_write_byte(dev, 0x52, 0xee); |
| 584 | |
| 585 | new = pci_read_byte(dev, 0x52); |
| 586 | |
| 587 | if (new != 0xee) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 588 | printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x52, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 589 | return -1; |
| 590 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 591 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 592 | return 0; |
| 593 | } |
| 594 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 595 | static int enable_flash_sis5595(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 596 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 597 | uint8_t new, newer; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 598 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 599 | new = pci_read_byte(dev, 0x45); |
| 600 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 601 | new &= (~0x20); /* Clear bit 5. */ |
| 602 | new |= 0x4; /* Set bit 2. */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 603 | |
| 604 | pci_write_byte(dev, 0x45, new); |
| 605 | |
| 606 | newer = pci_read_byte(dev, 0x45); |
| 607 | if (newer != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 608 | printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x45, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 609 | printf("Stuck at 0x%x\n", newer); |
| 610 | return -1; |
| 611 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 612 | |
Urja Rannikko | a88daa7 | 2008-10-18 13:54:30 +0000 | [diff] [blame] | 613 | /* Extended BIOS enable = 1, Lower BIOS Enable = 1 */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 614 | new = pci_read_byte(dev, 0x40); |
Urja Rannikko | a88daa7 | 2008-10-18 13:54:30 +0000 | [diff] [blame] | 615 | new &= 0xFB; |
| 616 | new |= 0x3; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 617 | pci_write_byte(dev, 0x40, new); |
| 618 | newer = pci_read_byte(dev, 0x40); |
Urja Rannikko | a88daa7 | 2008-10-18 13:54:30 +0000 | [diff] [blame] | 619 | if (newer != new) { |
| 620 | printf("tried to set register 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name); |
| 621 | printf("Stuck at 0x%x\n", newer); |
| 622 | return -1; |
| 623 | } |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 624 | return 0; |
| 625 | } |
| 626 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 627 | /* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 628 | static int enable_flash_amd8111(struct pci_dev *dev, const char *name) |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 629 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 630 | uint8_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 631 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 632 | /* Enable decoding at 0xffb00000 to 0xffffffff. */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 633 | old = pci_read_byte(dev, 0x43); |
Ollie Lho | d11f361 | 2004-12-07 17:19:04 +0000 | [diff] [blame] | 634 | new = old | 0xC0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 635 | if (new != old) { |
| 636 | pci_write_byte(dev, 0x43, new); |
| 637 | if (pci_read_byte(dev, 0x43) != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 638 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x43, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 639 | } |
| 640 | } |
| 641 | |
Uwe Hermann | 190f849 | 2008-10-25 18:03:50 +0000 | [diff] [blame] | 642 | /* Enable 'ROM write' bit. */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 643 | old = pci_read_byte(dev, 0x40); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 644 | new = old | 0x01; |
| 645 | if (new == old) |
| 646 | return 0; |
| 647 | pci_write_byte(dev, 0x40, new); |
| 648 | |
| 649 | if (pci_read_byte(dev, 0x40) != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 650 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x40, new, name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 651 | return -1; |
| 652 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 653 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 654 | return 0; |
| 655 | } |
| 656 | |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 657 | static int enable_flash_sb600(struct pci_dev *dev, const char *name) |
| 658 | { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 659 | uint32_t tmp, prot; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 660 | uint8_t reg; |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 661 | struct pci_dev *smbus_dev; |
| 662 | int has_spi = 1; |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 663 | |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 664 | /* Clear ROM protect 0-3. */ |
| 665 | for (reg = 0x50; reg < 0x60; reg += 4) { |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 666 | prot = pci_read_long(dev, reg); |
| 667 | /* No protection flags for this region?*/ |
| 668 | if ((prot & 0x3) == 0) |
| 669 | continue; |
| 670 | printf_debug("SB600 %s%sprotected from %u to %u\n", |
| 671 | (prot & 0x1) ? "write " : "", |
| 672 | (prot & 0x2) ? "read " : "", |
| 673 | (prot & 0xfffffc00), |
| 674 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
| 675 | prot &= 0xfffffffc; |
| 676 | pci_write_byte(dev, reg, prot); |
| 677 | prot = pci_read_long(dev, reg); |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 678 | if (prot & 0x3) |
Peter Stuge | 19997ae | 2009-05-06 15:05:39 +0000 | [diff] [blame] | 679 | printf("SB600 %s%sunprotect failed from %u to %u\n", |
Carl-Daniel Hailfinger | 9bb88ac | 2009-05-06 13:51:44 +0000 | [diff] [blame] | 680 | (prot & 0x1) ? "write " : "", |
| 681 | (prot & 0x2) ? "read " : "", |
| 682 | (prot & 0xfffffc00), |
| 683 | (prot & 0xfffffc00) + ((prot & 0x3ff) << 8)); |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 684 | } |
| 685 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 686 | /* Read SPI_BaseAddr */ |
| 687 | tmp = pci_read_long(dev, 0xa0); |
| 688 | tmp &= 0xfffffff0; /* remove low 4 bits (reserved) */ |
| 689 | printf_debug("SPI base address is at 0x%x\n", tmp); |
| 690 | |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 691 | /* If the BAR has address 0, it is unlikely SPI is used. */ |
| 692 | if (!tmp) |
| 693 | has_spi = 0; |
| 694 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 695 | /* Physical memory can only be mapped at page (4k) boundaries */ |
| 696 | sb600_spibar = physmap("SB600 SPI registers", tmp & 0xfffff000, 0x1000); |
| 697 | /* The low bits of the SPI base address are used as offset into the mapped page */ |
| 698 | sb600_spibar += tmp & 0xfff; |
| 699 | |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 700 | /* Look for the SMBus device. */ |
| 701 | smbus_dev = pci_dev_find(0x1002, 0x4385); |
| 702 | |
| 703 | if (!smbus_dev) { |
| 704 | fprintf(stderr, "ERROR: SMBus device not found. Not enabling SPI.\n"); |
| 705 | has_spi = 0; |
| 706 | } else { |
| 707 | /* Note about the bit tests below: If a bit is zero, the GPIO is SPI. */ |
| 708 | /* GPIO11/SPI_DO and GPIO12/SPI_DI status */ |
| 709 | reg = pci_read_byte(smbus_dev, 0xAB); |
| 710 | reg &= 0xC0; |
| 711 | printf_debug("GPIO11 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_DO"); |
| 712 | printf_debug("GPIO12 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_DI"); |
| 713 | if (reg != 0x00) |
| 714 | has_spi = 0; |
| 715 | /* GPIO31/SPI_HOLD and GPIO32/SPI_CS status */ |
| 716 | reg = pci_read_byte(smbus_dev, 0x83); |
| 717 | reg &= 0xC0; |
| 718 | printf_debug("GPIO31 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_HOLD"); |
| 719 | printf_debug("GPIO32 used for %s\n", (reg & (1 << 7)) ? "GPIO" : "SPI_CS"); |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 720 | /* SPI_HOLD is not used on all boards, filter it out. */ |
| 721 | if ((reg & 0x80) != 0x00) |
Carl-Daniel Hailfinger | dbfa029 | 2009-05-10 14:11:07 +0000 | [diff] [blame] | 722 | has_spi = 0; |
| 723 | /* GPIO47/SPI_CLK status */ |
| 724 | reg = pci_read_byte(smbus_dev, 0xA7); |
| 725 | reg &= 0x40; |
| 726 | printf_debug("GPIO47 used for %s\n", (reg & (1 << 6)) ? "GPIO" : "SPI_CLK"); |
| 727 | if (reg != 0x00) |
| 728 | has_spi = 0; |
| 729 | } |
| 730 | |
| 731 | if (has_spi) |
| 732 | flashbus = BUS_TYPE_SB600_SPI; |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 733 | |
Carl-Daniel Hailfinger | 9862251 | 2009-05-15 23:36:23 +0000 | [diff] [blame] | 734 | /* Read ROM strap override register. */ |
| 735 | OUTB(0x8f, 0xcd6); |
| 736 | reg = INB(0xcd7); |
| 737 | reg &= 0x0e; |
| 738 | printf_debug("ROM strap override is %sactive", (reg & 0x02) ? "" : "not "); |
| 739 | if (reg & 0x02) { |
| 740 | switch ((reg & 0x0c) >> 2) { |
| 741 | case 0x00: |
| 742 | printf_debug(": LPC"); |
| 743 | break; |
| 744 | case 0x01: |
| 745 | printf_debug(": PCI"); |
| 746 | break; |
| 747 | case 0x02: |
| 748 | printf_debug(": FWH"); |
| 749 | break; |
| 750 | case 0x03: |
| 751 | printf_debug(": SPI"); |
| 752 | break; |
| 753 | } |
| 754 | } |
| 755 | printf_debug("\n"); |
| 756 | |
Carl-Daniel Hailfinger | 41d6bd9 | 2009-05-05 22:50:07 +0000 | [diff] [blame] | 757 | /* Force enable SPI ROM in SB600 PM register. |
| 758 | * 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] | 759 | * But how can we know which ROM we are going to handle? So we have |
| 760 | * 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] | 761 | * only SPI ROM if we boot via SPI ROM. If you want to access SPI on |
| 762 | * boards with LPC straps, you have to use the code below. |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 763 | */ |
| 764 | /* |
Jason Wang | a3f04be | 2008-11-28 21:36:51 +0000 | [diff] [blame] | 765 | OUTB(0x8f, 0xcd6); |
| 766 | OUTB(0x0e, 0xcd7); |
Zheng Bao | 284a600 | 2009-05-04 22:33:50 +0000 | [diff] [blame] | 767 | */ |
Marc Jones | 3af487d | 2008-10-15 17:50:29 +0000 | [diff] [blame] | 768 | |
| 769 | return 0; |
| 770 | } |
| 771 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 772 | static int enable_flash_ck804(struct pci_dev *dev, const char *name) |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 773 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 774 | uint8_t old, new; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 775 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 776 | old = pci_read_byte(dev, 0x88); |
| 777 | new = old | 0xc0; |
| 778 | if (new != old) { |
| 779 | pci_write_byte(dev, 0x88, new); |
| 780 | if (pci_read_byte(dev, 0x88) != new) { |
| 781 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name); |
| 782 | } |
| 783 | } |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 784 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 785 | old = pci_read_byte(dev, 0x6d); |
| 786 | new = old | 0x01; |
| 787 | if (new == old) |
| 788 | return 0; |
| 789 | pci_write_byte(dev, 0x6d, new); |
| 790 | |
| 791 | if (pci_read_byte(dev, 0x6d) != new) { |
| 792 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name); |
| 793 | return -1; |
| 794 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 795 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 796 | return 0; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 797 | } |
| 798 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 799 | /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */ |
| 800 | static int enable_flash_sb400(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 801 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 802 | uint8_t tmp; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 803 | struct pci_dev *smbusdev; |
| 804 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 805 | /* Look for the SMBus device. */ |
Carl-Daniel Hailfinger | f6e3efb | 2009-05-06 00:35:31 +0000 | [diff] [blame] | 806 | smbusdev = pci_dev_find(0x1002, 0x4372); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 807 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 808 | if (!smbusdev) { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 809 | fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n"); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 810 | exit(1); |
| 811 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 812 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 813 | /* Enable some SMBus stuff. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 814 | tmp = pci_read_byte(smbusdev, 0x79); |
| 815 | tmp |= 0x01; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 816 | pci_write_byte(smbusdev, 0x79, tmp); |
| 817 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 818 | /* Change southbridge. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 819 | tmp = pci_read_byte(dev, 0x48); |
| 820 | tmp |= 0x21; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 821 | pci_write_byte(dev, 0x48, tmp); |
| 822 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 823 | /* Now become a bit silly. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 824 | tmp = INB(0xc6f); |
| 825 | OUTB(tmp, 0xeb); |
| 826 | OUTB(tmp, 0xeb); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 827 | tmp |= 0x40; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 828 | OUTB(tmp, 0xc6f); |
| 829 | OUTB(tmp, 0xeb); |
| 830 | OUTB(tmp, 0xeb); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 831 | |
| 832 | return 0; |
| 833 | } |
| 834 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 835 | static int enable_flash_mcp55(struct pci_dev *dev, const char *name) |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 836 | { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 837 | uint8_t old, new, byte; |
| 838 | uint16_t word; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 839 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 840 | /* Set the 0-16 MB enable bits. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 841 | byte = pci_read_byte(dev, 0x88); |
| 842 | byte |= 0xff; /* 256K */ |
| 843 | pci_write_byte(dev, 0x88, byte); |
| 844 | byte = pci_read_byte(dev, 0x8c); |
| 845 | byte |= 0xff; /* 1M */ |
| 846 | pci_write_byte(dev, 0x8c, byte); |
| 847 | word = pci_read_word(dev, 0x90); |
Carl-Daniel Hailfinger | dca0ab1 | 2007-10-17 22:30:07 +0000 | [diff] [blame] | 848 | word |= 0x7fff; /* 16M */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 849 | pci_write_word(dev, 0x90, word); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 850 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 851 | old = pci_read_byte(dev, 0x6d); |
| 852 | new = old | 0x01; |
| 853 | if (new == old) |
| 854 | return 0; |
| 855 | pci_write_byte(dev, 0x6d, new); |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 856 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 857 | if (pci_read_byte(dev, 0x6d) != new) { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 858 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 859 | return -1; |
| 860 | } |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 861 | |
| 862 | return 0; |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 863 | } |
| 864 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 865 | static int enable_flash_ht1000(struct pci_dev *dev, const char *name) |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 866 | { |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 867 | uint8_t byte; |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 868 | |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 869 | /* Set the 4MB enable bit. */ |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 870 | byte = pci_read_byte(dev, 0x41); |
| 871 | byte |= 0x0e; |
| 872 | pci_write_byte(dev, 0x41, byte); |
| 873 | |
| 874 | byte = pci_read_byte(dev, 0x43); |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 875 | byte |= (1 << 4); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 876 | pci_write_byte(dev, 0x43, byte); |
| 877 | |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 878 | return 0; |
| 879 | } |
| 880 | |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 881 | /** |
| 882 | * Usually on the x86 architectures (and on other PC-like platforms like some |
| 883 | * Alphas or Itanium) the system flash is mapped right below 4G. On the AMD |
| 884 | * Elan SC520 only a small piece of the system flash is mapped there, but the |
| 885 | * complete flash is mapped somewhere below 1G. The position can be determined |
| 886 | * by the BOOTCS PAR register. |
| 887 | */ |
| 888 | static int get_flashbase_sc520(struct pci_dev *dev, const char *name) |
| 889 | { |
| 890 | int i, bootcs_found = 0; |
| 891 | uint32_t parx = 0; |
| 892 | void *mmcr; |
| 893 | |
| 894 | /* 1. Map MMCR */ |
Stefan Reinauer | 0593f21 | 2009-01-26 01:10:48 +0000 | [diff] [blame] | 895 | mmcr = physmap("Elan SC520 MMCR", 0xfffef000, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 896 | |
| 897 | /* 2. Scan PAR0 (0x88) - PAR15 (0xc4) for |
| 898 | * BOOTCS region (PARx[31:29] = 100b)e |
| 899 | */ |
| 900 | for (i = 0x88; i <= 0xc4; i += 4) { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 901 | parx = mmio_readl(mmcr + i); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 902 | if ((parx >> 29) == 4) { |
| 903 | bootcs_found = 1; |
| 904 | break; /* BOOTCS found */ |
| 905 | } |
| 906 | } |
| 907 | |
| 908 | /* 3. PARx[25] = 1b --> flashbase[29:16] = PARx[13:0] |
| 909 | * PARx[25] = 0b --> flashbase[29:12] = PARx[17:0] |
| 910 | */ |
| 911 | if (bootcs_found) { |
| 912 | if (parx & (1 << 25)) { |
| 913 | parx &= (1 << 14) - 1; /* Mask [13:0] */ |
| 914 | flashbase = parx << 16; |
| 915 | } else { |
| 916 | parx &= (1 << 18) - 1; /* Mask [17:0] */ |
| 917 | flashbase = parx << 12; |
| 918 | } |
| 919 | } else { |
| 920 | printf("AMD Elan SC520 detected, but no BOOTCS. Assuming flash at 4G\n"); |
| 921 | } |
| 922 | |
| 923 | /* 4. Clean up */ |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 924 | munmap(mmcr, getpagesize()); |
Stefan Reinauer | 9a6d176 | 2008-12-03 21:24:40 +0000 | [diff] [blame] | 925 | return 0; |
| 926 | } |
| 927 | |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 928 | #define OK 0 |
| 929 | #define NT 1 /* Not tested */ |
| 930 | |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 931 | /* Please keep this list alphabetically sorted by vendor/device. */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 932 | const struct penable chipset_enables[] = { |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 933 | {0x10B9, 0x1533, OK, "ALi", "M1533", enable_flash_ali_m1533}, |
| 934 | {0x1022, 0x7440, OK, "AMD", "AMD-768", enable_flash_amd8111}, |
| 935 | {0x1022, 0x7468, OK, "AMD", "AMD8111", enable_flash_amd8111}, |
| 936 | {0x1078, 0x0100, OK, "AMD", "CS5530(A)", enable_flash_cs5530}, |
| 937 | {0x1022, 0x2080, OK, "AMD", "CS5536", enable_flash_cs5536}, |
| 938 | {0x1022, 0x3000, OK, "AMD", "Elan SC520", get_flashbase_sc520}, |
| 939 | {0x1002, 0x438D, OK, "AMD", "SB600", enable_flash_sb600}, |
| 940 | {0x1002, 0x439d, OK, "AMD", "SB700", enable_flash_sb600}, |
| 941 | {0x100b, 0x0510, NT, "AMD", "SC1100", enable_flash_sc1100}, |
| 942 | {0x1002, 0x4377, OK, "ATI", "SB400", enable_flash_sb400}, |
| 943 | {0x1166, 0x0205, OK, "Broadcom", "HT-1000", enable_flash_ht1000}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 944 | {0x8086, 0x7198, OK, "Intel", "440MX", enable_flash_piix4}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 945 | {0x8086, 0x25a1, OK, "Intel", "6300ESB", enable_flash_ich_4e}, |
| 946 | {0x8086, 0x2670, OK, "Intel", "631xESB/632xESB/3100", enable_flash_ich_dc}, |
| 947 | {0x8086, 0x5031, OK, "Intel", "EP80579", enable_flash_ich7}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 948 | {0x8086, 0x2420, OK, "Intel", "ICH0", enable_flash_ich_4e}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 949 | {0x8086, 0x3a18, OK, "Intel", "ICH10", enable_flash_ich10}, |
| 950 | {0x8086, 0x3a1a, OK, "Intel", "ICH10D", enable_flash_ich10}, |
| 951 | {0x8086, 0x3a14, OK, "Intel", "ICH10DO", enable_flash_ich10}, |
| 952 | {0x8086, 0x3a16, OK, "Intel", "ICH10R", enable_flash_ich10}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 953 | {0x8086, 0x2440, OK, "Intel", "ICH2", enable_flash_ich_4e}, |
| 954 | {0x8086, 0x244c, OK, "Intel", "ICH2-M", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 955 | {0x8086, 0x248c, OK, "Intel", "ICH3-M", enable_flash_ich_4e}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 956 | {0x8086, 0x2480, OK, "Intel", "ICH3-S", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 957 | {0x8086, 0x24c0, OK, "Intel", "ICH4/ICH4-L", enable_flash_ich_4e}, |
| 958 | {0x8086, 0x24cc, OK, "Intel", "ICH4-M", enable_flash_ich_4e}, |
| 959 | {0x8086, 0x24d0, OK, "Intel", "ICH5/ICH5R", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 960 | {0x8086, 0x2640, OK, "Intel", "ICH6/ICH6R", enable_flash_ich_dc}, |
| 961 | {0x8086, 0x2641, OK, "Intel", "ICH6-M", enable_flash_ich_dc}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 962 | {0x8086, 0x27b0, OK, "Intel", "ICH7DH", enable_flash_ich7}, |
| 963 | {0x8086, 0x27b8, OK, "Intel", "ICH7/ICH7R", enable_flash_ich7}, |
| 964 | {0x8086, 0x27b9, OK, "Intel", "ICH7M", enable_flash_ich7}, |
| 965 | {0x8086, 0x27bd, OK, "Intel", "ICH7MDH", enable_flash_ich7}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 966 | {0x8086, 0x2410, OK, "Intel", "ICH", enable_flash_ich_4e}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 967 | {0x8086, 0x2812, OK, "Intel", "ICH8DH", enable_flash_ich8}, |
| 968 | {0x8086, 0x2814, OK, "Intel", "ICH8DO", enable_flash_ich8}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 969 | {0x8086, 0x2810, OK, "Intel", "ICH8/ICH8R", enable_flash_ich8}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 970 | {0x8086, 0x2815, OK, "Intel", "ICH8M", enable_flash_ich8}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 971 | {0x8086, 0x2811, OK, "Intel", "ICH8M-E", enable_flash_ich8}, |
| 972 | {0x8086, 0x2918, OK, "Intel", "ICH9", enable_flash_ich9}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 973 | {0x8086, 0x2912, OK, "Intel", "ICH9DH", enable_flash_ich9}, |
| 974 | {0x8086, 0x2914, OK, "Intel", "ICH9DO", enable_flash_ich9}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 975 | {0x8086, 0x2919, OK, "Intel", "ICH9M", enable_flash_ich9}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 976 | {0x8086, 0x2917, OK, "Intel", "ICH9M-E", enable_flash_ich9}, |
| 977 | {0x8086, 0x2916, OK, "Intel", "ICH9R", enable_flash_ich9}, |
| 978 | {0x8086, 0x1234, NT, "Intel", "MPIIX", enable_flash_piix4}, |
| 979 | {0x8086, 0x7000, OK, "Intel", "PIIX3", enable_flash_piix4}, |
| 980 | {0x8086, 0x7110, OK, "Intel", "PIIX4/4E/4M", enable_flash_piix4}, |
| 981 | {0x8086, 0x122e, OK, "Intel", "PIIX", enable_flash_piix4}, |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 982 | {0x10de, 0x0050, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* LPC */ |
| 983 | {0x10de, 0x0051, OK, "NVIDIA", "CK804", enable_flash_ck804}, /* Pro */ |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 984 | /* Slave, should not be here, to fix known bug for A01. */ |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 985 | {0x10de, 0x00d3, OK, "NVIDIA", "CK804", enable_flash_ck804}, |
| 986 | {0x10de, 0x0260, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 987 | {0x10de, 0x0261, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 988 | {0x10de, 0x0262, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 989 | {0x10de, 0x0263, NT, "NVIDIA", "MCP51", enable_flash_ck804}, |
| 990 | {0x10de, 0x0360, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* M57SLI*/ |
| 991 | {0x10de, 0x0361, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 992 | {0x10de, 0x0362, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 993 | {0x10de, 0x0363, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 994 | {0x10de, 0x0364, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 995 | {0x10de, 0x0365, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 996 | {0x10de, 0x0366, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* LPC */ |
| 997 | {0x10de, 0x0367, OK, "NVIDIA", "MCP55", enable_flash_mcp55}, /* Pro */ |
| 998 | {0x10de, 0x0548, OK, "NVIDIA", "MCP67", enable_flash_mcp55}, |
Uwe Hermann | 4179d29 | 2009-05-08 17:50:51 +0000 | [diff] [blame] | 999 | {0x1039, 0x0008, OK, "SiS", "SiS5595", enable_flash_sis5595}, |
| 1000 | {0x1039, 0x0630, NT, "SiS", "SiS630", enable_flash_sis630}, |
| 1001 | {0x1106, 0x8324, OK, "VIA", "CX700", enable_flash_vt823x}, |
| 1002 | {0x1106, 0x8231, NT, "VIA", "VT8231", enable_flash_vt823x}, |
| 1003 | {0x1106, 0x3177, OK, "VIA", "VT8235", enable_flash_vt823x}, |
| 1004 | {0x1106, 0x3227, OK, "VIA", "VT8237", enable_flash_vt823x}, |
| 1005 | {0x1106, 0x3337, OK, "VIA", "VT8237A", enable_flash_vt823x}, |
| 1006 | {0x1106, 0x3372, OK, "VIA", "VT8237S", enable_flash_vt8237s_spi}, |
| 1007 | {0x1106, 0x0586, OK, "VIA", "VT82C586A/B", enable_flash_amd8111}, |
| 1008 | {0x1106, 0x0686, NT, "VIA", "VT82C686A/B", enable_flash_amd8111}, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1009 | |
| 1010 | {}, |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1011 | }; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 1012 | |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 1013 | void print_supported_chipsets(void) |
| 1014 | { |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 1015 | int i, j; |
| 1016 | const struct penable *c = chipset_enables; |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 1017 | |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 1018 | printf("\nSupported chipsets:\n\nVendor: Chipset:" |
| 1019 | " PCI IDs:\n\n"); |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 1020 | |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 1021 | for (i = 0; c[i].vendor_name != NULL; i++) { |
| 1022 | printf("%s", c[i].vendor_name); |
| 1023 | for (j = 0; j < 25 - strlen(c[i].vendor_name); j++) |
| 1024 | printf(" "); |
| 1025 | printf("%s", c[i].device_name); |
| 1026 | for (j = 0; j < 25 - strlen(c[i].device_name); j++) |
| 1027 | printf(" "); |
| 1028 | printf("%04x:%04x%s\n", c[i].vendor_id, c[i].device_id, |
| 1029 | (c[i].status == OK) ? "" : " (untested)"); |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1030 | } |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 1031 | } |
| 1032 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1033 | int chipset_flash_enable(void) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1034 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1035 | struct pci_dev *dev = 0; |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1036 | int ret = -2; /* Nothing! */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1037 | int i; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1038 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1039 | /* Now let's try to find the chipset we have... */ |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1040 | for (i = 0; chipset_enables[i].vendor_name != NULL; i++) { |
| 1041 | dev = pci_dev_find(chipset_enables[i].vendor_id, |
| 1042 | chipset_enables[i].device_id); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1043 | if (dev) |
| 1044 | break; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1045 | } |
| 1046 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1047 | if (dev) { |
Uwe Hermann | b003991 | 2009-05-07 13:24:49 +0000 | [diff] [blame] | 1048 | printf("Found chipset \"%s %s\", enabling flash write... ", |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1049 | chipset_enables[i].vendor_name, |
| 1050 | chipset_enables[i].device_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1051 | |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 1052 | ret = chipset_enables[i].doit(dev, |
| 1053 | chipset_enables[i].device_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1054 | if (ret) |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 1055 | printf("FAILED!\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1056 | else |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 1057 | printf("OK.\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1058 | } |
| 1059 | |
| 1060 | return ret; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 1061 | } |