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 | 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 | |
| 48 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 49 | 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] | 50 | { |
| 51 | uint8_t tmp; |
| 52 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 53 | /* |
| 54 | * ROM Write enable, 0xFFFC0000-0xFFFDFFFF and |
| 55 | * 0xFFFE0000-0xFFFFFFFF ROM select enable. |
| 56 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 57 | tmp = pci_read_byte(dev, 0x47); |
| 58 | tmp |= 0x46; |
| 59 | pci_write_byte(dev, 0x47, tmp); |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 64 | static int enable_flash_sis630(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 65 | { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 66 | uint8_t b; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 67 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 68 | /* Enable 0xFFF8000~0xFFFF0000 decoding on SiS 540/630. */ |
Alex Beregszaszi | c9fb5d9 | 2007-09-11 15:58:18 +0000 | [diff] [blame] | 69 | b = pci_read_byte(dev, 0x40); |
| 70 | pci_write_byte(dev, 0x40, b | 0xb); |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 71 | |
| 72 | /* Flash write enable on SiS 540/630. */ |
Alex Beregszaszi | c9fb5d9 | 2007-09-11 15:58:18 +0000 | [diff] [blame] | 73 | b = pci_read_byte(dev, 0x45); |
| 74 | pci_write_byte(dev, 0x45, b | 0x40); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 75 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 76 | /* The same thing on SiS 950 Super I/O side... */ |
| 77 | |
| 78 | /* First probe for Super I/O on config port 0x2e. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 79 | OUTB(0x87, 0x2e); |
| 80 | OUTB(0x01, 0x2e); |
| 81 | OUTB(0x55, 0x2e); |
| 82 | OUTB(0x55, 0x2e); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 83 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 84 | if (INB(0x2f) != 0x87) { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 85 | /* If that failed, try config port 0x4e. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 86 | OUTB(0x87, 0x4e); |
| 87 | OUTB(0x01, 0x4e); |
| 88 | OUTB(0x55, 0x4e); |
| 89 | OUTB(0xaa, 0x4e); |
| 90 | if (INB(0x4f) != 0x87) { |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 91 | printf("Can not access SiS 950\n"); |
| 92 | return -1; |
| 93 | } |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 94 | OUTB(0x24, 0x4e); |
| 95 | b = INB(0x4f) | 0xfc; |
| 96 | OUTB(0x24, 0x4e); |
| 97 | OUTB(b, 0x4f); |
| 98 | OUTB(0x02, 0x4e); |
| 99 | OUTB(0x02, 0x4f); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 102 | OUTB(0x24, 0x2e); |
| 103 | printf("2f is %#x\n", INB(0x2f)); |
| 104 | b = INB(0x2f) | 0xfc; |
| 105 | OUTB(0x24, 0x2e); |
| 106 | OUTB(b, 0x2f); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 107 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 108 | OUTB(0x02, 0x2e); |
| 109 | OUTB(0x02, 0x2f); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
Uwe Hermann | 987942d | 2006-11-07 11:16:21 +0000 | [diff] [blame] | 114 | /* Datasheet: |
| 115 | * - Name: 82371AB PCI-TO-ISA / IDE XCELERATOR (PIIX4) |
| 116 | * - URL: http://www.intel.com/design/intarch/datashts/290562.htm |
| 117 | * - PDF: http://www.intel.com/design/intarch/datashts/29056201.pdf |
| 118 | * - Order Number: 290562-001 |
| 119 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 120 | static int enable_flash_piix4(struct pci_dev *dev, const char *name) |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 121 | { |
| 122 | uint16_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 123 | uint16_t xbcs = 0x4e; /* X-Bus Chip Select register. */ |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 124 | |
| 125 | old = pci_read_word(dev, xbcs); |
| 126 | |
| 127 | /* Set bit 9: 1-Meg Extended BIOS Enable (PCI master accesses to |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 128 | * FFF00000-FFF7FFFF are forwarded to ISA). |
| 129 | * Set bit 7: Extended BIOS Enable (PCI master accesses to |
| 130 | * FFF80000-FFFDFFFF are forwarded to ISA). |
| 131 | * Set bit 6: Lower BIOS Enable (PCI master, or ISA master accesses to |
| 132 | * the lower 64-Kbyte BIOS block (E0000-EFFFF) at the top |
| 133 | * of 1 Mbyte, or the aliases at the top of 4 Gbyte |
| 134 | * (FFFE0000-FFFEFFFF) result in the generation of BIOSCS#. |
| 135 | * Note: Accesses to FFFF0000-FFFFFFFF are always forwarded to ISA. |
| 136 | * Set bit 2: BIOSCS# Write Enable (1=enable, 0=disable). |
| 137 | */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 138 | new = old | 0x02c4; |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 139 | |
| 140 | if (new == old) |
| 141 | return 0; |
| 142 | |
| 143 | pci_write_word(dev, xbcs, new); |
| 144 | |
| 145 | if (pci_read_word(dev, xbcs) != new) { |
| 146 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", xbcs, new, name); |
| 147 | return -1; |
| 148 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 149 | |
Uwe Hermann | ea2c66d | 2006-11-05 18:26:08 +0000 | [diff] [blame] | 150 | return 0; |
| 151 | } |
| 152 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 153 | /* |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 154 | * See ie. page 375 of "Intel I/O Controller Hub 7 (ICH7) Family Datasheet" |
| 155 | * http://download.intel.com/design/chipsets/datashts/30701303.pdf |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 156 | */ |
| 157 | static int enable_flash_ich(struct pci_dev *dev, const char *name, |
| 158 | int bios_cntl) |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 159 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 160 | uint8_t old, new; |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 161 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 162 | /* |
| 163 | * 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] | 164 | * 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] | 165 | */ |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 166 | old = pci_read_byte(dev, bios_cntl); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 167 | |
Uwe Hermann | 793bdcd | 2008-05-22 22:47:04 +0000 | [diff] [blame] | 168 | printf_debug("\nBIOS Lock Enable: %sabled, ", |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 169 | (old & (1 << 1)) ? "en" : "dis"); |
| 170 | printf_debug("BIOS Write Enable: %sabled, ", |
| 171 | (old & (1 << 0)) ? "en" : "dis"); |
| 172 | printf_debug("BIOS_CNTL is 0x%x\n", old); |
| 173 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 174 | new = old | 1; |
| 175 | |
| 176 | if (new == old) |
| 177 | return 0; |
| 178 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 179 | pci_write_byte(dev, bios_cntl, new); |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 180 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 181 | if (pci_read_byte(dev, bios_cntl) != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 182 | 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] | 183 | return -1; |
| 184 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 185 | |
Ronald G. Minnich | 6a96741 | 2004-09-28 20:09:06 +0000 | [diff] [blame] | 186 | return 0; |
| 187 | } |
| 188 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 189 | 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] | 190 | { |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 191 | return enable_flash_ich(dev, name, 0x4e); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 194 | 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] | 195 | { |
Stefan Reinauer | eb36647 | 2006-09-06 15:48:48 +0000 | [diff] [blame] | 196 | return enable_flash_ich(dev, name, 0xdc); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 199 | #define ICH_STRAP_RSVD 0x00 |
| 200 | #define ICH_STRAP_SPI 0x01 |
| 201 | #define ICH_STRAP_PCI 0x02 |
| 202 | #define ICH_STRAP_LPC 0x03 |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 203 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 204 | static int enable_flash_vt8237s_spi(struct pci_dev *dev, const char *name) { |
| 205 | uint32_t mmio_base; |
| 206 | |
| 207 | mmio_base = (pci_read_long(dev, 0xbc)) << 8; |
| 208 | printf_debug("MMIO base at = 0x%x\n", mmio_base); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 209 | spibar = mmap(NULL, 0x70, PROT_READ | PROT_WRITE, MAP_SHARED, |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 210 | fd_mem, mmio_base); |
| 211 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 212 | if (spibar == MAP_FAILED) { |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 213 | perror("Can't mmap memory using " MEM_DEV); |
| 214 | exit(1); |
| 215 | } |
| 216 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 217 | printf_debug("0x6c: 0x%04x (CLOCK/DEBUG)\n", *(uint16_t *)(spibar + 0x6c)); |
| 218 | |
| 219 | flashbus = BUS_TYPE_VIA_SPI; |
| 220 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 221 | return 0; |
| 222 | } |
| 223 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 224 | static int enable_flash_ich_dc_spi(struct pci_dev *dev, const char *name, int ich_generation) |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 225 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 226 | int ret, i; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 227 | uint8_t old, new, bbs, buc; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 228 | uint16_t spibar_offset; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 229 | uint32_t tmp, gcs; |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 230 | void *rcrb; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 231 | static const char *straps_names[] = { "reserved", "SPI", "PCI", "LPC" }; |
| 232 | |
| 233 | /* Enable Flash Writes */ |
| 234 | ret = enable_flash_ich_dc(dev, name); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 235 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 236 | /* Get physical address of Root Complex Register Block */ |
| 237 | tmp = pci_read_long(dev, 0xf0) & 0xffffc000; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 238 | printf_debug("\nRoot Complex Register Block address = 0x%x\n", tmp); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 239 | |
| 240 | /* Map RCBA to virtual memory */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 241 | rcrb = mmap(0, 0x4000, PROT_READ | PROT_WRITE, MAP_SHARED, fd_mem, (off_t)tmp); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 242 | if (rcrb == MAP_FAILED) { |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 243 | perror("Can't mmap memory using " MEM_DEV); |
| 244 | exit(1); |
| 245 | } |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 246 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 247 | gcs = *(volatile uint32_t *)(rcrb + 0x3410); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 248 | printf_debug("GCS = 0x%x: ", gcs); |
| 249 | printf_debug("BIOS Interface Lock-Down: %sabled, ", |
| 250 | (gcs & 0x1) ? "en" : "dis"); |
| 251 | bbs = (gcs >> 10) & 0x3; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 252 | 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] | 253 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 254 | buc = *(volatile uint8_t *)(rcrb + 0x3414); |
| 255 | printf_debug("Top Swap : %s\n", (buc & 1)?"enabled (A16 inverted)":"not enabled"); |
| 256 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 257 | /* It seems the ICH7 does not support SPI and LPC chips at the same |
| 258 | * time. At least not with our current code. So we prevent searching |
| 259 | * on ICH7 when the southbridge is strapped to LPC |
| 260 | */ |
| 261 | |
| 262 | if (ich_generation == 7 && bbs == ICH_STRAP_LPC) { |
| 263 | /* No further SPI initialization required */ |
| 264 | return ret; |
| 265 | } |
| 266 | |
| 267 | switch (ich_generation) { |
| 268 | case 7: |
| 269 | flashbus = BUS_TYPE_ICH7_SPI; |
| 270 | spibar_offset = 0x3020; |
| 271 | break; |
| 272 | case 8: |
| 273 | flashbus = BUS_TYPE_ICH9_SPI; |
| 274 | spibar_offset = 0x3020; |
| 275 | break; |
| 276 | case 9: |
| 277 | default: /* Future version might behave the same */ |
| 278 | flashbus = BUS_TYPE_ICH9_SPI; |
| 279 | spibar_offset = 0x3800; |
| 280 | break; |
| 281 | } |
| 282 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 283 | /* 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] | 284 | printf_debug("SPIBAR = 0x%x + 0x%04x\n", tmp, spibar_offset); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 285 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 286 | /* Assign Virtual Address */ |
| 287 | spibar = rcrb + spibar_offset; |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 288 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 289 | switch (flashbus) { |
| 290 | case BUS_TYPE_ICH7_SPI: |
| 291 | printf_debug("0x00: 0x%04x (SPIS)\n", *(uint16_t *)(spibar + 0)); |
| 292 | printf_debug("0x02: 0x%04x (SPIC)\n", *(uint16_t *)(spibar + 2)); |
| 293 | printf_debug("0x04: 0x%08x (SPIA)\n", *(uint32_t *)(spibar + 4)); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 294 | for (i=0; i < 8; i++) { |
| 295 | int offs; |
| 296 | offs = 8 + (i * 8); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 297 | printf_debug("0x%02x: 0x%08x (SPID%d)\n", offs, *(uint32_t *)(spibar + offs), i); |
| 298 | printf_debug("0x%02x: 0x%08x (SPID%d+4)\n", offs+4, *(uint32_t *)(spibar + offs +4), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 299 | } |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 300 | printf_debug("0x50: 0x%08x (BBAR)\n", *(uint32_t *)(spibar + 0x50)); |
| 301 | printf_debug("0x54: 0x%04x (PREOP)\n", *(uint16_t *)(spibar + 0x54)); |
| 302 | printf_debug("0x56: 0x%04x (OPTYPE)\n", *(uint16_t *)(spibar + 0x56)); |
| 303 | printf_debug("0x58: 0x%08x (OPMENU)\n", *(uint32_t *)(spibar + 0x58)); |
| 304 | printf_debug("0x5c: 0x%08x (OPMENU+4)\n", *(uint32_t *)(spibar + 0x5c)); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 305 | for (i=0; i < 4; i++) { |
| 306 | int offs; |
| 307 | offs = 0x60 + (i * 4); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 308 | printf_debug("0x%02x: 0x%08x (PBR%d)\n", offs, *(uint32_t *)(spibar + offs), i); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 309 | } |
| 310 | printf_debug("\n"); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 311 | if ( (*(uint16_t *)spibar) & (1 << 15)) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 312 | printf("WARNING: SPI Configuration Lockdown activated.\n"); |
| 313 | } |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 314 | break; |
| 315 | case BUS_TYPE_ICH9_SPI: |
| 316 | /* TODO: Add dumping function for ICH8/ICH9, or drop the |
| 317 | * whole SPIBAR dumping from chipset_enable.c - There's |
| 318 | * inteltool for this task already. |
| 319 | */ |
| 320 | break; |
| 321 | default: |
| 322 | /* Nothing */ |
| 323 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 324 | } |
| 325 | |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 326 | old = pci_read_byte(dev, 0xdc); |
| 327 | printf_debug("SPI Read Configuration: "); |
| 328 | new = (old >> 2) & 0x3; |
| 329 | switch (new) { |
| 330 | case 0: |
| 331 | case 1: |
| 332 | case 2: |
| 333 | printf_debug("prefetching %sabled, caching %sabled, ", |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 334 | (new & 0x2) ? "en" : "dis", |
| 335 | (new & 0x1) ? "dis" : "en"); |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 336 | break; |
| 337 | default: |
| 338 | printf_debug("invalid prefetching/caching settings, "); |
| 339 | break; |
| 340 | } |
Carl-Daniel Hailfinger | 67f9ea3 | 2008-03-14 17:20:59 +0000 | [diff] [blame] | 341 | |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 342 | return ret; |
| 343 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 344 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 345 | 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] | 346 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 347 | return enable_flash_ich_dc_spi(dev, name, 7); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 350 | static int enable_flash_ich8(struct pci_dev *dev, const char *name) |
| 351 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 352 | return enable_flash_ich_dc_spi(dev, name, 8); |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 353 | } |
| 354 | |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 355 | static int enable_flash_ich9(struct pci_dev *dev, const char *name) |
| 356 | { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 357 | return enable_flash_ich_dc_spi(dev, name, 9); |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 358 | } |
| 359 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 360 | static int enable_flash_vt823x(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 361 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 362 | uint8_t val; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 363 | |
Bari Ari | 9477c4e | 2008-04-29 13:46:38 +0000 | [diff] [blame] | 364 | /* enable ROM decode range (1MB) FFC00000 - FFFFFFFF*/ |
| 365 | pci_write_byte(dev, 0x41, 0x7f); |
| 366 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 367 | /* ROM write enable */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 368 | val = pci_read_byte(dev, 0x40); |
| 369 | val |= 0x10; |
| 370 | pci_write_byte(dev, 0x40, val); |
| 371 | |
| 372 | if (pci_read_byte(dev, 0x40) != val) { |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 373 | printf("\nWARNING: Failed to enable ROM Write on \"%s\"\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 374 | name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 375 | return -1; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 376 | } |
Luc Verhaegen | 6382b44 | 2007-03-02 22:16:38 +0000 | [diff] [blame] | 377 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 378 | return 0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 379 | } |
| 380 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 381 | static int enable_flash_cs5530(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 382 | { |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 383 | uint8_t reg8; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 384 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 385 | #define DECODE_CONTROL_REG2 0x5b /* F0 index 0x5b */ |
| 386 | #define ROM_AT_LOGIC_CONTROL_REG 0x52 /* F0 index 0x52 */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 387 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 388 | #define LOWER_ROM_ADDRESS_RANGE (1 << 0) |
| 389 | #define ROM_WRITE_ENABLE (1 << 1) |
| 390 | #define UPPER_ROM_ADDRESS_RANGE (1 << 2) |
| 391 | #define BIOS_ROM_POSITIVE_DECODE (1 << 5) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 392 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 393 | /* Decode 0x000E0000-0x000FFFFF (128 KB), not just 64 KB, and |
| 394 | * decode 0xFF000000-0xFFFFFFFF (16 MB), not just 256 KB. |
| 395 | * Make the configured ROM areas writable. |
| 396 | */ |
| 397 | reg8 = pci_read_byte(dev, ROM_AT_LOGIC_CONTROL_REG); |
| 398 | reg8 |= LOWER_ROM_ADDRESS_RANGE; |
| 399 | reg8 |= UPPER_ROM_ADDRESS_RANGE; |
| 400 | reg8 |= ROM_WRITE_ENABLE; |
| 401 | pci_write_byte(dev, ROM_AT_LOGIC_CONTROL_REG, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 402 | |
Uwe Hermann | f4a673b | 2007-06-06 21:35:45 +0000 | [diff] [blame] | 403 | /* Set positive decode on ROM. */ |
| 404 | reg8 = pci_read_byte(dev, DECODE_CONTROL_REG2); |
| 405 | reg8 |= BIOS_ROM_POSITIVE_DECODE; |
| 406 | pci_write_byte(dev, DECODE_CONTROL_REG2, reg8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 407 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 411 | /** |
| 412 | * Geode systems write protect the BIOS via RCONFs (cache settings similar |
| 413 | * to MTRRs). To unlock, change MSR 0x1808 top byte to 0x22. Reading and |
| 414 | * writing to MSRs, however requires instructions rdmsr/wrmsr, which are |
| 415 | * ring0 privileged instructions so only the kernel can do the read/write. |
| 416 | * This function, therefore, requires that the msr kernel module be loaded |
| 417 | * to access these instructions from user space using device /dev/cpu/0/msr. |
| 418 | * |
| 419 | * This hard-coded location could have potential problems on SMP machines |
| 420 | * since it assumes cpu0, but it is safe on the Geode which is not SMP. |
| 421 | * |
| 422 | * Geode systems also write protect the NOR flash chip itself via MSR_NORF_CTL. |
| 423 | * To enable write to NOR Boot flash for the benefit of systems that have such |
| 424 | * a setup, raise MSR 0x51400018 WE_CS3 (write enable Boot Flash Chip Select). |
| 425 | * |
| 426 | * This is probably not portable beyond Linux. |
| 427 | */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 428 | static int enable_flash_cs5536(struct pci_dev *dev, const char *name) |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 429 | { |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 430 | #define MSR_RCONF_DEFAULT 0x1808 |
| 431 | #define MSR_NORF_CTL 0x51400018 |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 432 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 433 | int fd_msr; |
| 434 | unsigned char buf[8]; |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 435 | |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 436 | fd_msr = open("/dev/cpu/0/msr", O_RDWR); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 437 | if (!fd_msr) { |
| 438 | perror("open msr"); |
| 439 | return -1; |
| 440 | } |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 441 | |
| 442 | if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) { |
| 443 | perror("lseek64"); |
Mart Raudsepp | 3697ac7 | 2008-02-11 14:32:45 +0000 | [diff] [blame] | 444 | printf("Cannot operate on MSR. Did you run 'modprobe msr'?\n"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 445 | close(fd_msr); |
| 446 | return -1; |
| 447 | } |
| 448 | |
| 449 | if (read(fd_msr, buf, 8) != 8) { |
Mart Raudsepp | 3697ac7 | 2008-02-11 14:32:45 +0000 | [diff] [blame] | 450 | perror("read msr"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 451 | close(fd_msr); |
| 452 | return -1; |
| 453 | } |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 454 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 455 | if (buf[7] != 0x22) { |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 456 | buf[7] &= 0xfb; |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 457 | if (lseek64(fd_msr, (off64_t) MSR_RCONF_DEFAULT, SEEK_SET) == -1) { |
| 458 | perror("lseek64"); |
| 459 | close(fd_msr); |
| 460 | return -1; |
| 461 | } |
| 462 | |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 463 | if (write(fd_msr, buf, 8) < 0) { |
| 464 | perror("msr write"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 465 | close(fd_msr); |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 466 | return -1; |
| 467 | } |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 468 | } |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 469 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 470 | if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) { |
| 471 | perror("lseek64"); |
| 472 | close(fd_msr); |
| 473 | return -1; |
| 474 | } |
| 475 | |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 476 | if (read(fd_msr, buf, 8) != 8) { |
| 477 | perror("read msr"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 478 | close(fd_msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 479 | return -1; |
| 480 | } |
| 481 | |
| 482 | /* Raise WE_CS3 bit. */ |
| 483 | buf[0] |= 0x08; |
| 484 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 485 | if (lseek64(fd_msr, (off64_t) MSR_NORF_CTL, SEEK_SET) == -1) { |
| 486 | perror("lseek64"); |
| 487 | close(fd_msr); |
| 488 | return -1; |
| 489 | } |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 490 | if (write(fd_msr, buf, 8) < 0) { |
| 491 | perror("msr write"); |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 492 | close(fd_msr); |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 493 | return -1; |
| 494 | } |
| 495 | |
| 496 | close(fd_msr); |
| 497 | |
Mart Raudsepp | e1344da | 2008-02-08 10:10:57 +0000 | [diff] [blame] | 498 | #undef MSR_RCONF_DEFAULT |
Mart Raudsepp | 0514a5f | 2008-02-08 09:59:58 +0000 | [diff] [blame] | 499 | #undef MSR_NORF_CTL |
Lane Brooks | d54958a | 2007-11-13 16:45:22 +0000 | [diff] [blame] | 500 | return 0; |
| 501 | } |
| 502 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 503 | static int enable_flash_sc1100(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 504 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 505 | uint8_t new; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 506 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 507 | pci_write_byte(dev, 0x52, 0xee); |
| 508 | |
| 509 | new = pci_read_byte(dev, 0x52); |
| 510 | |
| 511 | if (new != 0xee) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 512 | 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] | 513 | return -1; |
| 514 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 515 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 516 | return 0; |
| 517 | } |
| 518 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 519 | static int enable_flash_sis5595(struct pci_dev *dev, const char *name) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 520 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 521 | uint8_t new, newer; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 522 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 523 | new = pci_read_byte(dev, 0x45); |
| 524 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 525 | new &= (~0x20); /* Clear bit 5. */ |
| 526 | new |= 0x4; /* Set bit 2. */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 527 | |
| 528 | pci_write_byte(dev, 0x45, new); |
| 529 | |
| 530 | newer = pci_read_byte(dev, 0x45); |
| 531 | if (newer != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 532 | 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] | 533 | printf("Stuck at 0x%x\n", newer); |
| 534 | return -1; |
| 535 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 536 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 537 | return 0; |
| 538 | } |
| 539 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 540 | static int enable_flash_amd8111(struct pci_dev *dev, const char *name) |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 541 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 542 | uint8_t old, new; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 543 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 544 | /* Enable decoding at 0xffb00000 to 0xffffffff. */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 545 | old = pci_read_byte(dev, 0x43); |
Ollie Lho | d11f361 | 2004-12-07 17:19:04 +0000 | [diff] [blame] | 546 | new = old | 0xC0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 547 | if (new != old) { |
| 548 | pci_write_byte(dev, 0x43, new); |
| 549 | if (pci_read_byte(dev, 0x43) != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 550 | 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] | 551 | } |
| 552 | } |
| 553 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 554 | old = pci_read_byte(dev, 0x40); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 555 | new = old | 0x01; |
| 556 | if (new == old) |
| 557 | return 0; |
| 558 | pci_write_byte(dev, 0x40, new); |
| 559 | |
| 560 | if (pci_read_byte(dev, 0x40) != new) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 561 | 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] | 562 | return -1; |
| 563 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 564 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 565 | return 0; |
| 566 | } |
| 567 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 568 | static int enable_flash_ck804(struct pci_dev *dev, const char *name) |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 569 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 570 | uint8_t old, new; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 571 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 572 | old = pci_read_byte(dev, 0x88); |
| 573 | new = old | 0xc0; |
| 574 | if (new != old) { |
| 575 | pci_write_byte(dev, 0x88, new); |
| 576 | if (pci_read_byte(dev, 0x88) != new) { |
| 577 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x88, new, name); |
| 578 | } |
| 579 | } |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 580 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 581 | old = pci_read_byte(dev, 0x6d); |
| 582 | new = old | 0x01; |
| 583 | if (new == old) |
| 584 | return 0; |
| 585 | pci_write_byte(dev, 0x6d, new); |
| 586 | |
| 587 | if (pci_read_byte(dev, 0x6d) != new) { |
| 588 | printf("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", 0x6d, new, name); |
| 589 | return -1; |
| 590 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 591 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 592 | return 0; |
Yinghai Lu | 952dfce | 2005-07-06 17:13:46 +0000 | [diff] [blame] | 593 | } |
| 594 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 595 | /* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */ |
| 596 | static int enable_flash_sb400(struct pci_dev *dev, const char *name) |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 597 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 598 | uint8_t tmp; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 599 | struct pci_filter f; |
| 600 | struct pci_dev *smbusdev; |
| 601 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 602 | /* Look for the SMBus device. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 603 | pci_filter_init((struct pci_access *)0, &f); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 604 | f.vendor = 0x1002; |
| 605 | f.device = 0x4372; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 606 | |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 607 | for (smbusdev = pacc->devices; smbusdev; smbusdev = smbusdev->next) { |
| 608 | if (pci_filter_match(&f, smbusdev)) { |
| 609 | break; |
| 610 | } |
| 611 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 612 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 613 | if (!smbusdev) { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 614 | fprintf(stderr, "ERROR: SMBus device not found. Aborting.\n"); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 615 | exit(1); |
| 616 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 617 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 618 | /* Enable some SMBus stuff. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 619 | tmp = pci_read_byte(smbusdev, 0x79); |
| 620 | tmp |= 0x01; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 621 | pci_write_byte(smbusdev, 0x79, tmp); |
| 622 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 623 | /* Change southbridge. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 624 | tmp = pci_read_byte(dev, 0x48); |
| 625 | tmp |= 0x21; |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 626 | pci_write_byte(dev, 0x48, tmp); |
| 627 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 628 | /* Now become a bit silly. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 629 | tmp = INB(0xc6f); |
| 630 | OUTB(tmp, 0xeb); |
| 631 | OUTB(tmp, 0xeb); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 632 | tmp |= 0x40; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 633 | OUTB(tmp, 0xc6f); |
| 634 | OUTB(tmp, 0xeb); |
| 635 | OUTB(tmp, 0xeb); |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 636 | |
| 637 | return 0; |
| 638 | } |
| 639 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 640 | static int enable_flash_mcp55(struct pci_dev *dev, const char *name) |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 641 | { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 642 | uint8_t old, new, byte; |
| 643 | uint16_t word; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 644 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 645 | /* Set the 0-16 MB enable bits. */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 646 | byte = pci_read_byte(dev, 0x88); |
| 647 | byte |= 0xff; /* 256K */ |
| 648 | pci_write_byte(dev, 0x88, byte); |
| 649 | byte = pci_read_byte(dev, 0x8c); |
| 650 | byte |= 0xff; /* 1M */ |
| 651 | pci_write_byte(dev, 0x8c, byte); |
| 652 | word = pci_read_word(dev, 0x90); |
Carl-Daniel Hailfinger | dca0ab1 | 2007-10-17 22:30:07 +0000 | [diff] [blame] | 653 | word |= 0x7fff; /* 16M */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 654 | pci_write_word(dev, 0x90, word); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 655 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 656 | old = pci_read_byte(dev, 0x6d); |
| 657 | new = old | 0x01; |
| 658 | if (new == old) |
| 659 | return 0; |
| 660 | pci_write_byte(dev, 0x6d, new); |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 661 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 662 | if (pci_read_byte(dev, 0x6d) != new) { |
| 663 | printf |
| 664 | ("tried to set 0x%x to 0x%x on %s failed (WARNING ONLY)\n", |
| 665 | 0x6d, new, name); |
| 666 | return -1; |
| 667 | } |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 668 | |
| 669 | return 0; |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 670 | } |
| 671 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 672 | static int enable_flash_ht1000(struct pci_dev *dev, const char *name) |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 673 | { |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 674 | uint8_t byte; |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 675 | |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 676 | /* Set the 4MB enable bit. */ |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 677 | byte = pci_read_byte(dev, 0x41); |
| 678 | byte |= 0x0e; |
| 679 | pci_write_byte(dev, 0x41, byte); |
| 680 | |
| 681 | byte = pci_read_byte(dev, 0x43); |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 682 | byte |= (1 << 4); |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 683 | pci_write_byte(dev, 0x43, byte); |
| 684 | |
Stefan Reinauer | c868b9e | 2007-06-05 10:28:39 +0000 | [diff] [blame] | 685 | return 0; |
| 686 | } |
| 687 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 688 | typedef struct penable { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 689 | uint16_t vendor, device; |
| 690 | const char *name; |
| 691 | int (*doit) (struct pci_dev *dev, const char *name); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 692 | } FLASH_ENABLE; |
| 693 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 694 | static const FLASH_ENABLE enables[] = { |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 695 | {0x1039, 0x0630, "SiS630", enable_flash_sis630}, |
| 696 | {0x8086, 0x7110, "Intel PIIX4/4E/4M", enable_flash_piix4}, |
| 697 | {0x8086, 0x7198, "Intel 440MX", enable_flash_piix4}, |
| 698 | {0x8086, 0x2410, "Intel ICH", enable_flash_ich_4e}, |
| 699 | {0x8086, 0x2420, "Intel ICH0", enable_flash_ich_4e}, |
| 700 | {0x8086, 0x2440, "Intel ICH2", enable_flash_ich_4e}, |
| 701 | {0x8086, 0x244c, "Intel ICH2-M", enable_flash_ich_4e}, |
| 702 | {0x8086, 0x2480, "Intel ICH3-S", enable_flash_ich_4e}, |
| 703 | {0x8086, 0x248c, "Intel ICH3-M", enable_flash_ich_4e}, |
| 704 | {0x8086, 0x24c0, "Intel ICH4/ICH4-L", enable_flash_ich_4e}, |
| 705 | {0x8086, 0x24cc, "Intel ICH4-M", enable_flash_ich_4e}, |
| 706 | {0x8086, 0x24d0, "Intel ICH5/ICH5R", enable_flash_ich_4e}, |
Claus Gindhart | a00e2a0 | 2008-05-14 12:22:38 +0000 | [diff] [blame] | 707 | {0x8086, 0x25a1, "Intel 6300ESB", enable_flash_ich_4e}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 708 | {0x8086, 0x2640, "Intel ICH6/ICH6R", enable_flash_ich_dc}, |
| 709 | {0x8086, 0x2641, "Intel ICH6-M", enable_flash_ich_dc}, |
Ed Swierk | cd2ed47 | 2008-08-20 20:31:41 +0000 | [diff] [blame] | 710 | {0x8086, 0x5031, "Intel EP80579", enable_flash_ich_dc}, |
Carl-Daniel Hailfinger | 1b18b3c | 2008-05-16 14:39:39 +0000 | [diff] [blame] | 711 | {0x8086, 0x27b0, "Intel ICH7DH", enable_flash_ich7}, |
| 712 | {0x8086, 0x27b8, "Intel ICH7/ICH7R", enable_flash_ich7}, |
| 713 | {0x8086, 0x27b9, "Intel ICH7M", enable_flash_ich7}, |
| 714 | {0x8086, 0x27bd, "Intel ICH7MDH", enable_flash_ich7}, |
| 715 | {0x8086, 0x2810, "Intel ICH8/ICH8R", enable_flash_ich8}, |
| 716 | {0x8086, 0x2811, "Intel ICH8M-E", enable_flash_ich8}, |
| 717 | {0x8086, 0x2812, "Intel ICH8DH", enable_flash_ich8}, |
| 718 | {0x8086, 0x2814, "Intel ICH8DO", enable_flash_ich8}, |
| 719 | {0x8086, 0x2815, "Intel ICH8M", enable_flash_ich8}, |
Carl-Daniel Hailfinger | 6dc1d3b | 2008-05-14 14:51:22 +0000 | [diff] [blame] | 720 | {0x8086, 0x2912, "Intel ICH9DH", enable_flash_ich9}, |
| 721 | {0x8086, 0x2914, "Intel ICH9DO", enable_flash_ich9}, |
| 722 | {0x8086, 0x2916, "Intel ICH9R", enable_flash_ich9}, |
| 723 | {0x8086, 0x2917, "Intel ICH9M-E", enable_flash_ich9}, |
| 724 | {0x8086, 0x2918, "Intel ICH9", enable_flash_ich9}, |
| 725 | {0x8086, 0x2919, "Intel ICH9M", enable_flash_ich9}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 726 | {0x1106, 0x8231, "VIA VT8231", enable_flash_vt823x}, |
| 727 | {0x1106, 0x3177, "VIA VT8235", enable_flash_vt823x}, |
| 728 | {0x1106, 0x3227, "VIA VT8237", enable_flash_vt823x}, |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 729 | {0x1106, 0x3372, "VIA VT8237S", enable_flash_vt8237s_spi}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 730 | {0x1106, 0x8324, "VIA CX700", enable_flash_vt823x}, |
| 731 | {0x1106, 0x0686, "VIA VT82C686", enable_flash_amd8111}, |
| 732 | {0x1078, 0x0100, "AMD CS5530(A)", enable_flash_cs5530}, |
| 733 | {0x100b, 0x0510, "AMD SC1100", enable_flash_sc1100}, |
| 734 | {0x1039, 0x0008, "SiS5595", enable_flash_sis5595}, |
| 735 | {0x1022, 0x2080, "AMD CS5536", enable_flash_cs5536}, |
| 736 | {0x1022, 0x7468, "AMD8111", enable_flash_amd8111}, |
| 737 | {0x10B9, 0x1533, "ALi M1533", enable_flash_ali_m1533}, |
| 738 | {0x10de, 0x0050, "NVIDIA CK804", enable_flash_ck804}, /* LPC */ |
| 739 | {0x10de, 0x0051, "NVIDIA CK804", enable_flash_ck804}, /* Pro */ |
| 740 | /* Slave, should not be here, to fix known bug for A01. */ |
| 741 | {0x10de, 0x00d3, "NVIDIA CK804", enable_flash_ck804}, |
| 742 | {0x10de, 0x0260, "NVIDIA MCP51", enable_flash_ck804}, |
| 743 | {0x10de, 0x0261, "NVIDIA MCP51", enable_flash_ck804}, |
| 744 | {0x10de, 0x0262, "NVIDIA MCP51", enable_flash_ck804}, |
| 745 | {0x10de, 0x0263, "NVIDIA MCP51", enable_flash_ck804}, |
| 746 | {0x10de, 0x0360, "NVIDIA MCP55", enable_flash_mcp55}, /* M57SLI*/ |
| 747 | {0x10de, 0x0361, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */ |
| 748 | {0x10de, 0x0362, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */ |
| 749 | {0x10de, 0x0363, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */ |
| 750 | {0x10de, 0x0364, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */ |
| 751 | {0x10de, 0x0365, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */ |
| 752 | {0x10de, 0x0366, "NVIDIA MCP55", enable_flash_mcp55}, /* LPC */ |
| 753 | {0x10de, 0x0367, "NVIDIA MCP55", enable_flash_mcp55}, /* Pro */ |
Stefan Reinauer | 7f27464 | 2008-07-05 09:48:30 +0000 | [diff] [blame] | 754 | {0x10de, 0x0548, "NVIDIA MCP67", enable_flash_mcp55}, |
Uwe Hermann | eac1016 | 2008-03-13 18:52:51 +0000 | [diff] [blame] | 755 | {0x1002, 0x4377, "ATI SB400", enable_flash_sb400}, |
| 756 | {0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000}, |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 757 | }; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 758 | |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 759 | void print_supported_chipsets(void) |
| 760 | { |
| 761 | int i; |
| 762 | |
| 763 | printf("\nSupported chipsets:\n\n"); |
| 764 | |
| 765 | for (i = 0; i < ARRAY_SIZE(enables); i++) |
| 766 | printf("%s (%04x:%04x)\n", enables[i].name, |
| 767 | enables[i].vendor, enables[i].device); |
| 768 | } |
| 769 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 770 | int chipset_flash_enable(void) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 771 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 772 | struct pci_dev *dev = 0; |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 773 | int ret = -2; /* Nothing! */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 774 | int i; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 775 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 776 | /* Now let's try to find the chipset we have... */ |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 777 | for (i = 0; i < ARRAY_SIZE(enables); i++) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 778 | dev = pci_dev_find(enables[i].vendor, enables[i].device); |
| 779 | if (dev) |
| 780 | break; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 781 | } |
| 782 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 783 | if (dev) { |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 784 | printf("Found chipset \"%s\", enabling flash write... ", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 785 | enables[i].name); |
| 786 | |
| 787 | ret = enables[i].doit(dev, enables[i].name); |
| 788 | if (ret) |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 789 | printf("FAILED!\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 790 | else |
Uwe Hermann | ac30934 | 2007-10-10 17:42:20 +0000 | [diff] [blame] | 791 | printf("OK.\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | return ret; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 795 | } |