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