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