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