Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +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. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 4 | * Copyright (C) 2005-2007 coresystems GmbH <stepan@coresystems.de> |
| 5 | * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de> |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 6 | * Copyright (C) 2007-2009 Luc Verhaegen <libv@skynet.be> |
Carl-Daniel Hailfinger | 9224262 | 2007-09-27 14:29:57 +0000 | [diff] [blame] | 7 | * Copyright (C) 2007 Carl-Daniel Hailfinger |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 8 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; version 2 of the License. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 12 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | /* |
| 24 | * Contains the board specific flash enables. |
| 25 | */ |
| 26 | |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 27 | #include <string.h> |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 28 | #include <fcntl.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 29 | #include "flash.h" |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 30 | |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 31 | /* |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 32 | * Helper functions for many Winbond Super I/Os of the W836xx range. |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 33 | */ |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 34 | /* Enter extended functions */ |
Peter Stuge | 9d9399c | 2009-01-26 02:34:51 +0000 | [diff] [blame] | 35 | void w836xx_ext_enter(uint16_t port) |
Mondrian Nuessle | aef1c7c | 2007-05-03 10:09:23 +0000 | [diff] [blame] | 36 | { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 37 | OUTB(0x87, port); |
| 38 | OUTB(0x87, port); |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 39 | } |
Mondrian Nuessle | aef1c7c | 2007-05-03 10:09:23 +0000 | [diff] [blame] | 40 | |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 41 | /* Leave extended functions */ |
Peter Stuge | 9d9399c | 2009-01-26 02:34:51 +0000 | [diff] [blame] | 42 | void w836xx_ext_leave(uint16_t port) |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 43 | { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 44 | OUTB(0xAA, port); |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 45 | } |
Mondrian Nuessle | aef1c7c | 2007-05-03 10:09:23 +0000 | [diff] [blame] | 46 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 47 | /* Generic Super I/O helper functions */ |
| 48 | uint8_t sio_read(uint16_t port, uint8_t reg) |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 49 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 50 | OUTB(reg, port); |
| 51 | return INB(port + 1); |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 52 | } |
Mondrian Nuessle | aef1c7c | 2007-05-03 10:09:23 +0000 | [diff] [blame] | 53 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 54 | void sio_write(uint16_t port, uint8_t reg, uint8_t data) |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 55 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 56 | OUTB(reg, port); |
| 57 | OUTB(data, port + 1); |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 58 | } |
Mondrian Nuessle | aef1c7c | 2007-05-03 10:09:23 +0000 | [diff] [blame] | 59 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 60 | void sio_mask(uint16_t port, uint8_t reg, uint8_t data, uint8_t mask) |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 61 | { |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 62 | uint8_t tmp; |
Mondrian Nuessle | aef1c7c | 2007-05-03 10:09:23 +0000 | [diff] [blame] | 63 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 64 | OUTB(reg, port); |
| 65 | tmp = INB(port + 1) & ~mask; |
| 66 | OUTB(tmp | (data & mask), port + 1); |
Mondrian Nuessle | aef1c7c | 2007-05-03 10:09:23 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 69 | /** |
| 70 | * Winbond W83627HF: Raise GPIO24. |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 71 | * |
| 72 | * Suited for: |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 73 | * - Agami Aruma |
| 74 | * - IWILL DK8-HTX |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 75 | */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 76 | static int w83627hf_gpio24_raise(uint16_t port, const char *name) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 77 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 78 | w836xx_ext_enter(port); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 79 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 80 | /* Is this the W83627HF? */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 81 | if (sio_read(port, 0x20) != 0x52) { /* Super I/O device ID reg. */ |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 82 | fprintf(stderr, "\nERROR: %s: W83627HF: Wrong ID: 0x%02X.\n", |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 83 | name, sio_read(port, 0x20)); |
| 84 | w836xx_ext_leave(port); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 85 | return -1; |
| 86 | } |
| 87 | |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 88 | /* PIN89S: WDTO/GP24 multiplex -> GPIO24 */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 89 | sio_mask(port, 0x2B, 0x10, 0x10); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 90 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 91 | /* Select logical device 8: GPIO port 2 */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 92 | sio_write(port, 0x07, 0x08); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 93 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 94 | sio_mask(port, 0x30, 0x01, 0x01); /* Activate logical device. */ |
| 95 | sio_mask(port, 0xF0, 0x00, 0x10); /* GPIO24 -> output */ |
| 96 | sio_mask(port, 0xF2, 0x00, 0x10); /* Clear GPIO24 inversion */ |
| 97 | sio_mask(port, 0xF1, 0x10, 0x10); /* Raise GPIO24 */ |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 98 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 99 | w836xx_ext_leave(port); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 104 | static int w83627hf_gpio24_raise_2e(const char *name) |
| 105 | { |
Mondrian nuessle | 197d6cd | 2009-04-09 14:28:36 +0000 | [diff] [blame] | 106 | return w83627hf_gpio24_raise(0x2e, name); |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Winbond W83627THF: GPIO 4, bit 4 |
| 111 | * |
| 112 | * Suited for: |
Peter Stuge | cce2682 | 2008-07-21 17:48:40 +0000 | [diff] [blame] | 113 | * - MSI K8T Neo2-F |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 114 | * - MSI K8N-NEO3 |
| 115 | */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 116 | static int w83627thf_gpio4_4_raise(uint16_t port, const char *name) |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 117 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 118 | w836xx_ext_enter(port); |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 119 | |
| 120 | /* Is this the W83627THF? */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 121 | if (sio_read(port, 0x20) != 0x82) { /* Super I/O device ID reg. */ |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 122 | fprintf(stderr, "\nERROR: %s: W83627THF: Wrong ID: 0x%02X.\n", |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 123 | name, sio_read(port, 0x20)); |
| 124 | w836xx_ext_leave(port); |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 125 | return -1; |
| 126 | } |
| 127 | |
| 128 | /* PINxxxxS: GPIO4/bit 4 multiplex -> GPIOXXX */ |
| 129 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 130 | sio_write(port, 0x07, 0x09); /* Select LDN 9: GPIO port 4 */ |
| 131 | sio_mask(port, 0x30, 0x02, 0x02); /* Activate logical device. */ |
| 132 | sio_mask(port, 0xF4, 0x00, 0x10); /* GPIO4 bit 4 -> output */ |
| 133 | sio_mask(port, 0xF6, 0x00, 0x10); /* Clear GPIO4 bit 4 inversion */ |
| 134 | sio_mask(port, 0xF5, 0x10, 0x10); /* Raise GPIO4 bit 4 */ |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 135 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 136 | w836xx_ext_leave(port); |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 137 | |
| 138 | return 0; |
| 139 | } |
| 140 | |
Peter Stuge | cce2682 | 2008-07-21 17:48:40 +0000 | [diff] [blame] | 141 | static int w83627thf_gpio4_4_raise_2e(const char *name) |
| 142 | { |
| 143 | return w83627thf_gpio4_4_raise(0x2e, name); |
| 144 | } |
| 145 | |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 146 | static int w83627thf_gpio4_4_raise_4e(const char *name) |
| 147 | { |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 148 | return w83627thf_gpio4_4_raise(0x4e, name); |
Ronald G. Minnich | fa49692 | 2007-10-12 21:22:40 +0000 | [diff] [blame] | 149 | } |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 150 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 151 | /** |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 152 | * w83627: Enable MEMW# and set ROM size to max. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 153 | */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 154 | static void w836xx_memw_enable(uint16_t port) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 155 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 156 | w836xx_ext_enter(port); |
| 157 | if (!(sio_read(port, 0x24) & 0x02)) { /* Flash ROM enabled? */ |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 158 | /* Enable MEMW# and set ROM size select to max. (4M). */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 159 | sio_mask(port, 0x24, 0x28, 0x28); |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 160 | } |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 161 | w836xx_ext_leave(port); |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | /** |
| 165 | * Common routine for several VT823x based boards. |
| 166 | */ |
| 167 | static void vt823x_set_all_writes_to_lpc(struct pci_dev *dev) |
| 168 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 169 | uint8_t val; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 170 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 171 | /* All memory cycles, not just ROM ones, go to LPC. */ |
| 172 | val = pci_read_byte(dev, 0x59); |
| 173 | val &= ~0x80; |
| 174 | pci_write_byte(dev, 0x59, val); |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * VT823x: Set one of the GPIO pins. |
| 179 | */ |
| 180 | static void vt823x_gpio_set(struct pci_dev *dev, uint8_t gpio, int raise) |
| 181 | { |
| 182 | uint16_t base; |
| 183 | uint8_t val, bit; |
| 184 | |
Jon Harrison | 2eeff4e | 2009-06-19 13:53:59 +0000 | [diff] [blame] | 185 | if ((gpio >= 12) && (gpio <= 15)) { |
| 186 | /* GPIO12-15 -> output */ |
| 187 | val = pci_read_byte(dev, 0xE4); |
| 188 | val |= 0x10; |
| 189 | pci_write_byte(dev, 0xE4, val); |
| 190 | } else if (gpio == 9) { |
| 191 | /* GPIO9 -> Output */ |
| 192 | val = pci_read_byte(dev, 0xE4); |
| 193 | val |= 0x20; |
| 194 | pci_write_byte(dev, 0xE4, val); |
| 195 | } else { |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 196 | fprintf(stderr, "\nERROR: " |
| 197 | "VT823x GPIO%02d is not implemented.\n", gpio); |
| 198 | return; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 199 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 200 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 201 | /* Now raise/drop the GPIO line itself. */ |
| 202 | bit = 0x01 << (gpio - 8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 203 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 204 | /* We need the I/O Base Address for this board's flash enable. */ |
| 205 | base = pci_read_word(dev, 0x88) & 0xff80; |
| 206 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 207 | val = INB(base + 0x4D); |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 208 | if (raise) |
| 209 | val |= bit; |
| 210 | else |
| 211 | val &= ~bit; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 212 | OUTB(val, base + 0x4D); |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs. |
| 217 | * |
| 218 | * We don't need to do this when using coreboot, GPIO15 is never lowered there. |
| 219 | */ |
| 220 | static int board_via_epia_m(const char *name) |
| 221 | { |
| 222 | struct pci_dev *dev; |
| 223 | |
| 224 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 225 | if (!dev) { |
| 226 | fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n"); |
| 227 | return -1; |
| 228 | } |
| 229 | |
| 230 | /* GPIO15 is connected to write protect. */ |
| 231 | vt823x_gpio_set(dev, 15, 1); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 232 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 233 | return 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 236 | /** |
Luc Verhaegen | 3270754 | 2007-07-04 17:51:49 +0000 | [diff] [blame] | 237 | * Suited for: |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 238 | * - ASUS A7V8X-MX SE and A7V400-MX: AMD K7 + VIA KM400A + VT8235 |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 239 | * - Tyan S2498 (Tomcat K7M): AMD Geode NX + VIA KM400 + VT8237. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 240 | */ |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 241 | static int board_asus_a7v8x_mx(const char *name) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 242 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 243 | struct pci_dev *dev; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 244 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 245 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
Luc Verhaegen | 3270754 | 2007-07-04 17:51:49 +0000 | [diff] [blame] | 246 | if (!dev) |
| 247 | dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 248 | if (!dev) { |
Luc Verhaegen | 3270754 | 2007-07-04 17:51:49 +0000 | [diff] [blame] | 249 | fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 250 | return -1; |
| 251 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 252 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 253 | vt823x_set_all_writes_to_lpc(dev); |
| 254 | w836xx_memw_enable(0x2E); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 255 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 256 | return 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 257 | } |
| 258 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 259 | /** |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 260 | * Suited for VIAs EPIA SP and EPIA CN. |
Luc Verhaegen | 9786608 | 2008-02-09 02:03:06 +0000 | [diff] [blame] | 261 | */ |
| 262 | static int board_via_epia_sp(const char *name) |
| 263 | { |
| 264 | struct pci_dev *dev; |
Luc Verhaegen | 9786608 | 2008-02-09 02:03:06 +0000 | [diff] [blame] | 265 | |
| 266 | dev = pci_dev_find(0x1106, 0x3227); /* VT8237R ISA bridge */ |
| 267 | if (!dev) { |
| 268 | fprintf(stderr, "\nERROR: VT8237R ISA bridge not found.\n"); |
| 269 | return -1; |
| 270 | } |
| 271 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 272 | vt823x_set_all_writes_to_lpc(dev); |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | /** |
Jon Harrison | 2eeff4e | 2009-06-19 13:53:59 +0000 | [diff] [blame] | 278 | * Suited for VIAs EPIA N & NL. |
| 279 | */ |
| 280 | static int board_via_epia_n(const char *name) |
| 281 | { |
| 282 | struct pci_dev *dev; |
| 283 | |
| 284 | dev = pci_dev_find(0x1106, 0x3227); /* VT8237R ISA bridge */ |
| 285 | if (!dev) { |
| 286 | fprintf(stderr, "\nERROR: VT8237R ISA bridge not found.\n"); |
| 287 | return -1; |
| 288 | } |
| 289 | |
| 290 | /* All memory cycles, not just ROM ones, go to LPC */ |
| 291 | vt823x_set_all_writes_to_lpc(dev); |
| 292 | |
| 293 | /* GPIO9 -> output */ |
| 294 | vt823x_gpio_set(dev, 9, 1); |
| 295 | |
| 296 | return 0; |
| 297 | } |
| 298 | |
| 299 | /** |
Luc Verhaegen | 0f9221c | 2009-11-29 01:19:25 +0000 | [diff] [blame] | 300 | * Suited for: |
| 301 | * - EPoX EP-8K5A2: VIA KT333 + VT8235. |
| 302 | * - Albatron PM266A Pro: VIA P4M266A + VT8235. |
| 303 | * - Shuttle AK31 (all versions): VIA KT266 + VT8233. |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 304 | */ |
Luc Verhaegen | 0f9221c | 2009-11-29 01:19:25 +0000 | [diff] [blame] | 305 | static int w836xx_memw_enable_2e(const char *name) |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 306 | { |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 307 | w836xx_memw_enable(0x2E); |
Luc Verhaegen | 9786608 | 2008-02-09 02:03:06 +0000 | [diff] [blame] | 308 | |
| 309 | return 0; |
| 310 | } |
| 311 | |
| 312 | /** |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 313 | * Suited for ASUS P5A. |
| 314 | * |
| 315 | * This is rather nasty code, but there's no way to do this cleanly. |
| 316 | * We're basically talking to some unknown device on SMBus, my guess |
| 317 | * is that it is the Winbond W83781D that lives near the DIP BIOS. |
| 318 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 319 | static int board_asus_p5a(const char *name) |
| 320 | { |
| 321 | uint8_t tmp; |
| 322 | int i; |
| 323 | |
| 324 | #define ASUSP5A_LOOP 5000 |
| 325 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 326 | OUTB(0x00, 0xE807); |
| 327 | OUTB(0xEF, 0xE803); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 328 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 329 | OUTB(0xFF, 0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 330 | |
| 331 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 332 | OUTB(0xE1, 0xFF); |
| 333 | if (INB(0xE800) & 0x04) |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 334 | break; |
| 335 | } |
| 336 | |
| 337 | if (i == ASUSP5A_LOOP) { |
| 338 | printf("%s: Unable to contact device.\n", name); |
| 339 | return -1; |
| 340 | } |
| 341 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 342 | OUTB(0x20, 0xE801); |
| 343 | OUTB(0x20, 0xE1); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 344 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 345 | OUTB(0xFF, 0xE802); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 346 | |
| 347 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 348 | tmp = INB(0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 349 | if (tmp & 0x70) |
| 350 | break; |
| 351 | } |
| 352 | |
| 353 | if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) { |
| 354 | printf("%s: failed to read device.\n", name); |
| 355 | return -1; |
| 356 | } |
| 357 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 358 | tmp = INB(0xE804); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 359 | tmp &= ~0x02; |
| 360 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 361 | OUTB(0x00, 0xE807); |
| 362 | OUTB(0xEE, 0xE803); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 363 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 364 | OUTB(tmp, 0xE804); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 365 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 366 | OUTB(0xFF, 0xE800); |
| 367 | OUTB(0xE1, 0xFF); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 368 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 369 | OUTB(0x20, 0xE801); |
| 370 | OUTB(0x20, 0xE1); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 371 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 372 | OUTB(0xFF, 0xE802); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 373 | |
| 374 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 375 | tmp = INB(0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 376 | if (tmp & 0x70) |
| 377 | break; |
| 378 | } |
| 379 | |
| 380 | if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) { |
| 381 | printf("%s: failed to write to device.\n", name); |
| 382 | return -1; |
| 383 | } |
| 384 | |
| 385 | return 0; |
| 386 | } |
| 387 | |
Stefan Reinauer | 1c283f4 | 2007-06-05 12:51:52 +0000 | [diff] [blame] | 388 | static int board_ibm_x3455(const char *name) |
| 389 | { |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 390 | /* Set GPIO lines in the Broadcom HT-1000 southbridge. */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 391 | /* It's not a Super I/O but it uses the same index/data port method. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 392 | sio_mask(0xcd6, 0x45, 0x20, 0x20); |
Stefan Reinauer | 1c283f4 | 2007-06-05 12:51:52 +0000 | [diff] [blame] | 393 | |
| 394 | return 0; |
| 395 | } |
| 396 | |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 397 | /** |
Luc Verhaegen | 20fdce1 | 2009-10-21 12:05:50 +0000 | [diff] [blame] | 398 | * Suited for Shuttle FN25 (SN25P): AMD S939 + Nvidia CK804 (nForce4). |
| 399 | */ |
| 400 | static int board_shuttle_fn25(const char *name) |
| 401 | { |
| 402 | struct pci_dev *dev; |
| 403 | |
| 404 | dev = pci_dev_find(0x10DE, 0x0050); /* NVIDIA CK804 ISA Bridge. */ |
| 405 | if (!dev) { |
| 406 | fprintf(stderr, |
| 407 | "\nERROR: NVIDIA nForce4 ISA bridge not found.\n"); |
| 408 | return -1; |
| 409 | } |
| 410 | |
| 411 | /* one of those bits seems to be connected to TBL#, but -ENOINFO. */ |
| 412 | pci_write_byte(dev, 0x92, 0); |
| 413 | |
| 414 | return 0; |
| 415 | } |
| 416 | |
| 417 | /** |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 418 | * Very similar to AMD 8111 IO Hub. |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 419 | */ |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 420 | static int nvidia_mcp_gpio_set(int gpio, int raise) |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 421 | { |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 422 | struct pci_dev *dev; |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 423 | uint16_t base; |
| 424 | uint8_t tmp; |
| 425 | |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 426 | if ((gpio < 0) || (gpio > 31)) { |
| 427 | fprintf(stderr, "\nERROR: unsupported GPIO: %d.\n", gpio); |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 428 | return -1; |
| 429 | } |
| 430 | |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 431 | dev = pci_dev_find_vendorclass(0x10DE, 0x0C05); |
| 432 | switch (dev->device_id) { |
| 433 | case 0x0030: /* CK804 */ |
| 434 | case 0x0050: /* MCP04 */ |
| 435 | case 0x0060: /* MCP2 */ |
| 436 | break; |
| 437 | default: |
| 438 | fprintf(stderr, "\nERROR: no nVidia SMBus controller found.\n"); |
| 439 | return -1; |
| 440 | } |
| 441 | |
| 442 | base = pci_read_long(dev, 0x64) & 0x0000FF00; /* System control area */ |
| 443 | base += 0xC0; |
| 444 | |
| 445 | tmp = INB(base + gpio); |
| 446 | tmp &= ~0x0F; /* null lower nibble */ |
| 447 | tmp |= 0x04; /* gpio -> output. */ |
| 448 | if (raise) |
| 449 | tmp |= 0x01; |
| 450 | OUTB(tmp, base + gpio); |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 451 | |
| 452 | return 0; |
| 453 | } |
| 454 | |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 455 | /** |
| 456 | * Suited for ASUS P5ND2-SLI Deluxe: LGA775 + nForce4 SLI + MCP04. |
| 457 | */ |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 458 | static int nvidia_mcp_gpio10_raise(const char *name) |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 459 | { |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 460 | return nvidia_mcp_gpio_set(0x10, 1); |
| 461 | } |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 462 | |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 463 | /** |
| 464 | * Suited for the Gigabyte GA-K8N-SLI: CK804 southbridge. |
| 465 | */ |
| 466 | static int nvidia_mcp_gpio21_raise(const char *name) |
| 467 | { |
| 468 | return nvidia_mcp_gpio_set(0x21, 0x01); |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 469 | } |
| 470 | |
Luc Verhaegen | 2c04fab | 2009-10-05 18:46:35 +0000 | [diff] [blame] | 471 | /** |
| 472 | * Suited for EPoX EP-8RDA3+: Socket A + nForce2 Ultra 400 + MCP2. |
| 473 | */ |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 474 | static int nvidia_mcp_gpio31_raise(const char *name) |
Luc Verhaegen | 2c04fab | 2009-10-05 18:46:35 +0000 | [diff] [blame] | 475 | { |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 476 | return nvidia_mcp_gpio_set(0x31, 0x01); |
Luc Verhaegen | 2c04fab | 2009-10-05 18:46:35 +0000 | [diff] [blame] | 477 | } |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 478 | |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 479 | static int board_hp_dl145_g3_enable(const char *name) |
| 480 | { |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 481 | /* Set GPIO lines in the Broadcom HT-1000 southbridge. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 482 | /* GPIO 0 reg from PM regs */ |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 483 | /* Set GPIO 2 and 5 high, connected to flash WP# and TBL# pins. */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 484 | /* It's not a Super I/O but it uses the same index/data port method. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 485 | sio_mask(0xcd6, 0x44, 0x24, 0x24); |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 486 | |
| 487 | return 0; |
| 488 | } |
| 489 | |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 490 | /** |
| 491 | * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards. |
| 492 | */ |
| 493 | static int board_epox_ep_bx3(const char *name) |
| 494 | { |
| 495 | uint8_t tmp; |
| 496 | |
| 497 | /* Raise GPIO22. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 498 | tmp = INB(0x4036); |
| 499 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 500 | |
| 501 | tmp |= 0x40; |
| 502 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 503 | OUTB(tmp, 0x4036); |
| 504 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 505 | |
| 506 | return 0; |
| 507 | } |
| 508 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 509 | /** |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 510 | * Suited for Artec Group DBE61 and DBE62. |
| 511 | */ |
| 512 | static int board_artecgroup_dbe6x(const char *name) |
| 513 | { |
| 514 | #define DBE6x_MSR_DIVIL_BALL_OPTS 0x51400015 |
| 515 | #define DBE6x_PRI_BOOT_LOC_SHIFT (2) |
| 516 | #define DBE6x_BOOT_OP_LATCHED_SHIFT (8) |
| 517 | #define DBE6x_SEC_BOOT_LOC_SHIFT (10) |
| 518 | #define DBE6x_PRI_BOOT_LOC (3 << DBE6x_PRI_BOOT_LOC_SHIFT) |
| 519 | #define DBE6x_BOOT_OP_LATCHED (3 << DBE6x_BOOT_OP_LATCHED_SHIFT) |
| 520 | #define DBE6x_SEC_BOOT_LOC (3 << DBE6x_SEC_BOOT_LOC_SHIFT) |
| 521 | #define DBE6x_BOOT_LOC_FLASH (2) |
| 522 | #define DBE6x_BOOT_LOC_FWHUB (3) |
| 523 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 524 | msr_t msr; |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 525 | unsigned long boot_loc; |
| 526 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 527 | /* Geode only has a single core */ |
| 528 | if (setup_cpu_msr(0)) |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 529 | return -1; |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 530 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 531 | msr = rdmsr(DBE6x_MSR_DIVIL_BALL_OPTS); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 532 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 533 | if ((msr.lo & (DBE6x_BOOT_OP_LATCHED)) == |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 534 | (DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT)) |
| 535 | boot_loc = DBE6x_BOOT_LOC_FWHUB; |
| 536 | else |
| 537 | boot_loc = DBE6x_BOOT_LOC_FLASH; |
| 538 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 539 | msr.lo &= ~(DBE6x_PRI_BOOT_LOC | DBE6x_SEC_BOOT_LOC); |
| 540 | msr.lo |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 541 | (boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT)); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 542 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 543 | wrmsr(DBE6x_MSR_DIVIL_BALL_OPTS, msr); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 544 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 545 | cleanup_cpu_msr(); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 546 | |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 547 | return 0; |
| 548 | } |
| 549 | |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 550 | /** |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 551 | * Set a GPIO line on a given intel ICH LPC controller. |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 552 | */ |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 553 | static int intel_ich_gpio_set(int gpio, int raise) |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 554 | { |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 555 | /* table mapping the different intel ICH LPC chipsets. */ |
| 556 | static struct { |
| 557 | uint16_t id; |
| 558 | uint8_t base_reg; |
| 559 | uint32_t bank0; |
| 560 | uint32_t bank1; |
| 561 | uint32_t bank2; |
| 562 | } intel_ich_gpio_table[] = { |
| 563 | {0x2410, 0x58, 0x0FE30000, 0, 0}, /* 82801AA (ICH) */ |
| 564 | {0x2420, 0x58, 0x0FE30000, 0, 0}, /* 82801AB (ICH0) */ |
| 565 | {0x2440, 0x58, 0x1BFF391B, 0, 0}, /* 82801BA (ICH2) */ |
| 566 | {0x244C, 0x58, 0x1A23399B, 0, 0}, /* 82801BAM (ICH2M) */ |
| 567 | {0x2450, 0x58, 0x1BFF0000, 0, 0}, /* 82801E (C-ICH) */ |
| 568 | {0x2480, 0x58, 0x1BFF0000, 0x00000FFF, 0}, /* 82801CA (ICH3-S) */ |
| 569 | {0x248C, 0x58, 0x1A230000, 0x00000FFF, 0}, /* 82801CAM (ICH3-M) */ |
| 570 | {0x24C0, 0x58, 0x1BFF0000, 0x00000FFF, 0}, /* 82801DB/DBL (ICH4/ICH4-L) */ |
| 571 | {0x24CC, 0x58, 0x1A030000, 0x00000FFF, 0}, /* 82801DBM (ICH4-M) */ |
| 572 | {0x24D0, 0x58, 0x1BFF0000, 0x00030305, 0}, /* 82801EB/ER (ICH5/ICH5R) */ |
| 573 | {0x2640, 0x48, 0x1BFF0000, 0x00030307, 0}, /* 82801FB/FR (ICH6/ICH6R) */ |
| 574 | {0x2641, 0x48, 0x1BFF0000, 0x00030307, 0}, /* 82801FBM (ICH6M) */ |
| 575 | {0x27B8, 0x48, 0xFFFFFFFF, 0x000300FF, 0}, /* 82801GB/GR (ICH7 Family) */ |
| 576 | {0x27B9, 0x48, 0xFFEBFFFE, 0x000300FE, 0}, /* 82801GBM (ICH7-M) */ |
| 577 | {0x27BD, 0x48, 0xFFEBFFFE, 0x000300FE, 0}, /* 82801GHM (ICH7-M DH) */ |
| 578 | {0x2810, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HB/HR (ICH8/R) */ |
| 579 | {0x2811, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HBM (ICH8M-E) */ |
| 580 | {0x2812, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HH (ICH8DH) */ |
| 581 | {0x2814, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HO (ICH8DO) */ |
| 582 | {0x2815, 0x48, 0xFFFFFFFF, 0x00FF0FFF, 0}, /* 82801HEM (ICH8M) */ |
| 583 | {0x2912, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IH (ICH9DH) */ |
| 584 | {0x2914, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IO (ICH9DO) */ |
| 585 | {0x2916, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IR (ICH9R) */ |
| 586 | {0x2917, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IEM (ICH9M-E) */ |
| 587 | {0x2918, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IB (ICH9) */ |
| 588 | {0x2919, 0x48, 0xFFFFFFFF, 0x00FFFFFF, 0}, /* 82801IBM (ICH9M) */ |
| 589 | {0x3A14, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JDO (ICH10DO) */ |
| 590 | {0x3A16, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JIR (ICH10R) */ |
| 591 | {0x3A18, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JIB (ICH10) */ |
| 592 | {0x3A1A, 0x48, 0xFFFFFFFF, 0xFFFFFFFF, 0x00000100}, /* 82801JD (ICH10D) */ |
| 593 | {0, 0, 0, 0, 0} /* end marker */ |
| 594 | }; |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 595 | |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 596 | struct pci_dev *dev; |
| 597 | uint16_t base; |
| 598 | uint32_t tmp; |
| 599 | int i, allowed; |
| 600 | |
| 601 | /* First, look for a known LPC bridge */ |
| 602 | for (dev = pacc->devices; dev; dev = dev->next) |
| 603 | if ((dev->vendor_id == 0x8086) && |
| 604 | (dev->device_class == 0x0601)) { /* ISA Bridge */ |
| 605 | /* Is this device in our list? */ |
| 606 | for (i = 0; intel_ich_gpio_table[i].id; i++) |
| 607 | if (dev->device_id == intel_ich_gpio_table[i].id) |
| 608 | break; |
| 609 | |
| 610 | if (intel_ich_gpio_table[i].id) |
| 611 | break; |
| 612 | } |
| 613 | |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 614 | if (!dev) { |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 615 | fprintf(stderr, "\nERROR: No Known Intel LPC Bridge found.\n"); |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 616 | return -1; |
| 617 | } |
| 618 | |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 619 | /* According to the datasheets, all intel ICHs have the gpio bar 5:1 |
| 620 | strapped to zero. From some mobile ich9 version on, this becomes |
| 621 | 6:1. The mask below catches all. */ |
| 622 | base = pci_read_word(dev, intel_ich_gpio_table[i].base_reg) & 0xFFC0; |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 623 | |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 624 | /* check whether the line is allowed */ |
| 625 | if (gpio < 32) |
| 626 | allowed = (intel_ich_gpio_table[i].bank0 >> gpio) & 0x01; |
| 627 | else if (gpio < 64) |
| 628 | allowed = (intel_ich_gpio_table[i].bank1 >> (gpio - 32)) & 0x01; |
| 629 | else |
| 630 | allowed = (intel_ich_gpio_table[i].bank2 >> (gpio - 64)) & 0x01; |
| 631 | |
| 632 | if (!allowed) { |
| 633 | fprintf(stderr, "\nERROR: This Intel LPC Bridge does not allow" |
| 634 | " setting GPIO%02d\n", gpio); |
| 635 | return -1; |
| 636 | } |
| 637 | |
| 638 | printf("\nIntel ICH LPC Bridge: %sing GPIO%02d.\n", |
| 639 | raise ? "Rais" : "Dropp", gpio); |
| 640 | |
| 641 | if (gpio < 32) { |
| 642 | /* Set line to GPIO */ |
| 643 | tmp = INL(base); |
| 644 | /* ICH/ICH0 multiplexes 27/28 on the line set. */ |
| 645 | if ((gpio == 28) && |
| 646 | ((dev->device_id == 0x2410) || (dev->device_id == 0x2420))) |
| 647 | tmp |= 1 << 27; |
| 648 | else |
| 649 | tmp |= 1 << gpio; |
| 650 | OUTL(tmp, base); |
| 651 | |
| 652 | /* As soon as we are talking to ICH8 and above, this register |
| 653 | decides whether we can set the gpio or not. */ |
| 654 | if (dev->device_id > 0x2800) { |
| 655 | tmp = INL(base); |
| 656 | if (!(tmp & (1 << gpio))) { |
| 657 | fprintf(stderr, "\nERROR: This Intel LPC Bridge" |
| 658 | " does not allow setting GPIO%02d\n", |
| 659 | gpio); |
| 660 | return -1; |
| 661 | } |
| 662 | } |
| 663 | |
| 664 | /* Set GPIO to OUTPUT */ |
| 665 | tmp = INL(base + 0x04); |
| 666 | tmp &= ~(1 << gpio); |
| 667 | OUTL(tmp, base + 0x04); |
| 668 | |
| 669 | /* Raise GPIO line */ |
| 670 | tmp = INL(base + 0x0C); |
| 671 | if (raise) |
| 672 | tmp |= 1 << gpio; |
| 673 | else |
| 674 | tmp &= ~(1 << gpio); |
| 675 | OUTL(tmp, base + 0x0C); |
| 676 | } else if (gpio < 64) { |
| 677 | gpio -= 32; |
| 678 | |
| 679 | /* Set line to GPIO */ |
| 680 | tmp = INL(base + 0x30); |
| 681 | tmp |= 1 << gpio; |
| 682 | OUTL(tmp, base + 0x30); |
| 683 | |
| 684 | /* As soon as we are talking to ICH8 and above, this register |
| 685 | decides whether we can set the gpio or not. */ |
| 686 | if (dev->device_id > 0x2800) { |
| 687 | tmp = INL(base + 30); |
| 688 | if (!(tmp & (1 << gpio))) { |
| 689 | fprintf(stderr, "\nERROR: This Intel LPC Bridge" |
| 690 | " does not allow setting GPIO%02d\n", |
| 691 | gpio + 32); |
| 692 | return -1; |
| 693 | } |
| 694 | } |
| 695 | |
| 696 | /* Set GPIO to OUTPUT */ |
| 697 | tmp = INL(base + 0x34); |
| 698 | tmp &= ~(1 << gpio); |
| 699 | OUTL(tmp, base + 0x34); |
| 700 | |
| 701 | /* Raise GPIO line */ |
| 702 | tmp = INL(base + 0x38); |
| 703 | if (raise) |
| 704 | tmp |= 1 << gpio; |
| 705 | else |
| 706 | tmp &= ~(1 << gpio); |
| 707 | OUTL(tmp, base + 0x38); |
| 708 | } else { |
| 709 | gpio -= 64; |
| 710 | |
| 711 | /* Set line to GPIO */ |
| 712 | tmp = INL(base + 0x40); |
| 713 | tmp |= 1 << gpio; |
| 714 | OUTL(tmp, base + 0x40); |
| 715 | |
| 716 | tmp = INL(base + 40); |
| 717 | if (!(tmp & (1 << gpio))) { |
| 718 | fprintf(stderr, "\nERROR: This Intel LPC Bridge does " |
| 719 | "not allow setting GPIO%02d\n", gpio + 64); |
| 720 | return -1; |
| 721 | } |
| 722 | |
| 723 | /* Set GPIO to OUTPUT */ |
| 724 | tmp = INL(base + 0x44); |
| 725 | tmp &= ~(1 << gpio); |
| 726 | OUTL(tmp, base + 0x44); |
| 727 | |
| 728 | /* Raise GPIO line */ |
| 729 | tmp = INL(base + 0x48); |
| 730 | if (raise) |
| 731 | tmp |= 1 << gpio; |
| 732 | else |
| 733 | tmp &= ~(1 << gpio); |
| 734 | OUTL(tmp, base + 0x48); |
| 735 | } |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 736 | |
| 737 | return 0; |
| 738 | } |
| 739 | |
| 740 | /** |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 741 | * Suited for Abit IP35: Intel P35 + ICH9R. |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 742 | */ |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 743 | static int intel_ich_gpio16_raise(const char *name) |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 744 | { |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 745 | return intel_ich_gpio_set(16, 1); |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 748 | /** |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 749 | * Suited for MSI MS-7046: LGA775 + 915P + ICH6. |
Carl-Daniel Hailfinger | 2912426 | 2009-09-23 02:05:12 +0000 | [diff] [blame] | 750 | */ |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 751 | static int intel_ich_gpio19_raise(const char *name) |
Carl-Daniel Hailfinger | 2912426 | 2009-09-23 02:05:12 +0000 | [diff] [blame] | 752 | { |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 753 | return intel_ich_gpio_set(19, 1); |
Carl-Daniel Hailfinger | 2912426 | 2009-09-23 02:05:12 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | /** |
Luc Verhaegen | 6c5d4cc | 2009-11-28 18:26:21 +0000 | [diff] [blame] | 757 | * Suited for: |
| 758 | * - Asus P4B266LM (Sony Vaio PCV-RX650): socket478 + 845D + ICH2. |
| 759 | * - Asus P4P800-E Deluxe: Intel socket478 + 865PE + ICH5R. |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 760 | */ |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 761 | static int intel_ich_gpio21_raise(const char *name) |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 762 | { |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 763 | return intel_ich_gpio_set(21, 1); |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 764 | } |
| 765 | |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 766 | /** |
| 767 | * Suited for ASUS P4B266: socket478 + intel 845D + ICH2. |
| 768 | */ |
| 769 | static int intel_ich_gpio22_raise(const char *name) |
| 770 | { |
| 771 | return intel_ich_gpio_set(22, 1); |
| 772 | } |
| 773 | |
| 774 | /** |
Luc Verhaegen | 1265d8d | 2009-11-28 18:16:31 +0000 | [diff] [blame] | 775 | * Suited for: |
| 776 | * - Dell Poweredge 1850: Intel PPGA604 + E7520 + ICH5R. |
| 777 | * - ASRock P4i65GV: Intel Socket478 + 865GV + ICH5R. |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 778 | */ |
| 779 | static int intel_ich_gpio23_raise(const char *name) |
| 780 | { |
| 781 | return intel_ich_gpio_set(23, 1); |
| 782 | } |
| 783 | |
| 784 | /** |
| 785 | * Suited for Acorp 6A815EPD: socket 370 + intel 815 + ICH2. |
| 786 | */ |
| 787 | static int board_acorp_6a815epd(const char *name) |
| 788 | { |
| 789 | int ret; |
| 790 | |
| 791 | /* Lower Blocks Lock -- pin 7 of PLCC32 */ |
| 792 | ret = intel_ich_gpio_set(22, 1); |
| 793 | if (!ret) /* Top Block Lock -- pin 8 of PLCC32 */ |
| 794 | ret = intel_ich_gpio_set(23, 1); |
| 795 | |
| 796 | return ret; |
| 797 | } |
| 798 | |
| 799 | /** |
| 800 | * Suited for Kontron 986LCD-M: socket478 + 915GM + ICH7R. |
| 801 | */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 802 | static int board_kontron_986lcd_m(const char *name) |
| 803 | { |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 804 | int ret; |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 805 | |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 806 | ret = intel_ich_gpio_set(34, 1); /* #TBL */ |
| 807 | if (!ret) |
| 808 | ret = intel_ich_gpio_set(35, 1); /* #WP */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 809 | |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 810 | return ret; |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 813 | /** |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 814 | * Suited for: |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 815 | * - Biostar P4M80-M4: VIA P4M800 + VT8237 + IT8705AF |
| 816 | * - GIGABYTE GA-7VT600: VIA KT600 + VT8237 + IT8705 |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 817 | */ |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 818 | static int it8705_rom_write_enable(const char *name) |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 819 | { |
| 820 | /* enter IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 821 | enter_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 822 | |
| 823 | /* select right flash chip */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 824 | sio_mask(0x2e, 0x22, 0x80, 0x80); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 825 | |
| 826 | /* bit 3: flash chip write enable |
| 827 | * bit 7: map flash chip at 1MB-128K (why though? ignoring this.) |
| 828 | */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 829 | sio_mask(0x2e, 0x24, 0x04, 0x04); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 830 | |
| 831 | /* exit IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 832 | exit_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 833 | |
| 834 | return 0; |
| 835 | } |
| 836 | |
| 837 | /** |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 838 | * Suited for AOpen vKM400Am-S: VIA KM400 + VT8237 + IT8705F. |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 839 | */ |
| 840 | static int board_aopen_vkm400(const char *name) |
| 841 | { |
| 842 | struct pci_dev *dev; |
| 843 | |
| 844 | dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */ |
| 845 | if (!dev) { |
| 846 | fprintf(stderr, "\nERROR: VT8237 ISA bridge not found.\n"); |
| 847 | return -1; |
| 848 | } |
| 849 | |
| 850 | vt823x_set_all_writes_to_lpc(dev); |
| 851 | |
| 852 | return it8705_rom_write_enable(name); |
| 853 | } |
| 854 | |
| 855 | /** |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 856 | * Winbond W83697HF Super I/O + VIA VT8235 southbridge |
| 857 | * |
| 858 | * Suited for: |
| 859 | * - MSI KT4V and KT4V-L: AMD K7 + VIA KT400 + VT8235 |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 860 | * - MSI KT4 Ultra: AMD K7 + VIA KT400 + VT8235 |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 861 | */ |
| 862 | static int board_msi_kt4v(const char *name) |
| 863 | { |
| 864 | struct pci_dev *dev; |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 865 | |
| 866 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 867 | if (!dev) { |
| 868 | fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n"); |
| 869 | return -1; |
| 870 | } |
| 871 | |
Luc Verhaegen | 4802a7b | 2009-11-28 21:12:58 +0000 | [diff] [blame] | 872 | vt823x_set_all_writes_to_lpc(dev); |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 873 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 874 | vt823x_gpio_set(dev, 12, 1); |
| 875 | w836xx_memw_enable(0x2E); |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 876 | |
| 877 | return 0; |
| 878 | } |
| 879 | |
| 880 | /** |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 881 | * Suited for Soyo SY-7VCA: Pro133A + VT82C686. |
| 882 | */ |
| 883 | static int board_soyo_sy_7vca(const char *name) |
| 884 | { |
| 885 | struct pci_dev *dev; |
| 886 | uint32_t base; |
| 887 | uint8_t tmp; |
| 888 | |
| 889 | /* VT82C686 Power management */ |
| 890 | dev = pci_dev_find(0x1106, 0x3057); |
| 891 | if (!dev) { |
| 892 | fprintf(stderr, "\nERROR: VT82C686 PM device not found.\n"); |
| 893 | return -1; |
| 894 | } |
| 895 | |
| 896 | /* GPO0 output from PM IO base + 0x4C */ |
| 897 | tmp = pci_read_byte(dev, 0x54); |
| 898 | tmp &= ~0x03; |
| 899 | pci_write_byte(dev, 0x54, tmp); |
| 900 | |
| 901 | /* PM IO base */ |
| 902 | base = pci_read_long(dev, 0x48) & 0x0000FF00; |
| 903 | |
| 904 | /* Drop GPO0 */ |
| 905 | tmp = INB(base + 0x4C); |
| 906 | tmp &= ~0x01; |
| 907 | OUTB(tmp, base + 0x4C); |
| 908 | |
| 909 | return 0; |
| 910 | } |
| 911 | |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 912 | static int it8705f_write_enable(uint8_t port, const char *name) |
| 913 | { |
| 914 | enter_conf_mode_ite(port); |
| 915 | sio_mask(port, 0x24, 0x04, 0x04); /* Flash ROM I/F Writes Enable */ |
| 916 | exit_conf_mode_ite(port); |
| 917 | |
| 918 | return 0; |
| 919 | } |
| 920 | |
| 921 | /** |
Uwe Hermann | 5ab8889 | 2009-06-21 20:50:22 +0000 | [diff] [blame] | 922 | * Suited for: |
| 923 | * - Shuttle AK38N: VIA KT333CF + VIA VT8235 + ITE IT8705F |
| 924 | * - Elitegroup K7VTA3: VIA Apollo KT266/A/333 + VIA VT8235 + ITE IT8705F |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 925 | */ |
| 926 | static int it8705f_write_enable_2e(const char *name) |
| 927 | { |
| 928 | return it8705f_write_enable(0x2e, name); |
| 929 | } |
| 930 | |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 931 | /** |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 932 | * Find the runtime registers of an SMSC Super I/O, after verifying its |
| 933 | * chip ID. |
| 934 | * |
| 935 | * Returns the base port of the runtime register block, or 0 on error. |
| 936 | */ |
| 937 | static uint16_t smsc_find_runtime(uint16_t sio_port, uint16_t chip_id, |
| 938 | uint8_t logical_device) |
| 939 | { |
| 940 | uint16_t rt_port = 0; |
| 941 | |
| 942 | /* Verify the chip ID. */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 943 | OUTB(0x55, sio_port); /* Enable configuration. */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 944 | if (sio_read(sio_port, 0x20) != chip_id) { |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 945 | fprintf(stderr, "\nERROR: SMSC Super I/O not found.\n"); |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 946 | goto out; |
| 947 | } |
| 948 | |
| 949 | /* If the runtime block is active, get its address. */ |
| 950 | sio_write(sio_port, 0x07, logical_device); |
| 951 | if (sio_read(sio_port, 0x30) & 1) { |
| 952 | rt_port = (sio_read(sio_port, 0x60) << 8) |
| 953 | | sio_read(sio_port, 0x61); |
| 954 | } |
| 955 | |
| 956 | if (rt_port == 0) { |
| 957 | fprintf(stderr, "\nERROR: " |
| 958 | "Super I/O runtime interface not available.\n"); |
| 959 | } |
| 960 | out: |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 961 | OUTB(0xaa, sio_port); /* Disable configuration. */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 962 | return rt_port; |
| 963 | } |
| 964 | |
| 965 | /** |
| 966 | * Disable write protection on the Mitac 6513WU. WP# on the FWH is |
| 967 | * connected to GP30 on the Super I/O, and TBL# is always high. |
| 968 | */ |
| 969 | static int board_mitac_6513wu(const char *name) |
| 970 | { |
| 971 | struct pci_dev *dev; |
| 972 | uint16_t rt_port; |
| 973 | uint8_t val; |
| 974 | |
| 975 | dev = pci_dev_find(0x8086, 0x2410); /* Intel 82801AA ISA bridge */ |
| 976 | if (!dev) { |
| 977 | fprintf(stderr, "\nERROR: Intel 82801AA ISA bridge not found.\n"); |
| 978 | return -1; |
| 979 | } |
| 980 | |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 981 | rt_port = smsc_find_runtime(0x4e, 0x54 /* LPC47U33x */, 0xa); |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 982 | if (rt_port == 0) |
| 983 | return -1; |
| 984 | |
| 985 | /* Configure the GPIO pin. */ |
| 986 | val = INB(rt_port + 0x33); /* GP30 config */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 987 | val &= ~0x87; /* Output, non-inverted, GPIO, push/pull */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 988 | OUTB(val, rt_port + 0x33); |
| 989 | |
| 990 | /* Disable write protection. */ |
| 991 | val = INB(rt_port + 0x4d); /* GP3 values */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 992 | val |= 0x01; /* Set GP30 high. */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 993 | OUTB(val, rt_port + 0x4d); |
| 994 | |
| 995 | return 0; |
| 996 | } |
| 997 | |
| 998 | /** |
Luc Verhaegen | 78e4e12 | 2009-07-13 12:40:17 +0000 | [diff] [blame] | 999 | * Suited for Asus A7V8X: VIA KT400 + VT8235 + IT8703F-A |
| 1000 | */ |
| 1001 | static int board_asus_a7v8x(const char *name) |
| 1002 | { |
| 1003 | uint16_t id, base; |
| 1004 | uint8_t tmp; |
| 1005 | |
| 1006 | /* find the IT8703F */ |
| 1007 | w836xx_ext_enter(0x2E); |
| 1008 | id = (sio_read(0x2E, 0x20) << 8) | sio_read(0x2E, 0x21); |
| 1009 | w836xx_ext_leave(0x2E); |
| 1010 | |
| 1011 | if (id != 0x8701) { |
| 1012 | fprintf(stderr, "\nERROR: IT8703F SuperIO not found.\n"); |
| 1013 | return -1; |
| 1014 | } |
| 1015 | |
| 1016 | /* Get the GP567 IO base */ |
| 1017 | w836xx_ext_enter(0x2E); |
| 1018 | sio_write(0x2E, 0x07, 0x0C); |
| 1019 | base = (sio_read(0x2E, 0x60) << 8) | sio_read(0x2E, 0x61); |
| 1020 | w836xx_ext_leave(0x2E); |
| 1021 | |
| 1022 | if (!base) { |
| 1023 | fprintf(stderr, "\nERROR: Failed to read IT8703F SuperIO GPIO" |
| 1024 | " Base.\n"); |
| 1025 | return -1; |
| 1026 | } |
| 1027 | |
| 1028 | /* Raise GP51. */ |
| 1029 | tmp = INB(base); |
| 1030 | tmp |= 0x02; |
| 1031 | OUTB(tmp, base); |
| 1032 | |
| 1033 | return 0; |
| 1034 | } |
| 1035 | |
Luc Verhaegen | 7227291 | 2009-09-01 21:22:23 +0000 | [diff] [blame] | 1036 | /* |
| 1037 | * General routine for raising/dropping GPIO lines on the ITE IT8712F. |
| 1038 | * There is only some limited checking on the port numbers. |
| 1039 | */ |
| 1040 | static int |
| 1041 | it8712f_gpio_set(unsigned int line, int raise) |
| 1042 | { |
| 1043 | unsigned int port; |
| 1044 | uint16_t id, base; |
| 1045 | uint8_t tmp; |
| 1046 | |
| 1047 | port = line / 10; |
| 1048 | port--; |
| 1049 | line %= 10; |
| 1050 | |
| 1051 | /* Check line */ |
| 1052 | if ((port > 4) || /* also catches unsigned -1 */ |
| 1053 | ((port < 4) && (line > 7)) || ((port == 4) && (line > 5))) { |
| 1054 | fprintf(stderr, |
| 1055 | "\nERROR: Unsupported IT8712F GPIO Line %02d.\n", line); |
| 1056 | return -1; |
| 1057 | } |
| 1058 | |
| 1059 | /* find the IT8712F */ |
| 1060 | enter_conf_mode_ite(0x2E); |
| 1061 | id = (sio_read(0x2E, 0x20) << 8) | sio_read(0x2E, 0x21); |
| 1062 | exit_conf_mode_ite(0x2E); |
| 1063 | |
| 1064 | if (id != 0x8712) { |
| 1065 | fprintf(stderr, "\nERROR: IT8712F SuperIO not found.\n"); |
| 1066 | return -1; |
| 1067 | } |
| 1068 | |
| 1069 | /* Get the GPIO base */ |
| 1070 | enter_conf_mode_ite(0x2E); |
| 1071 | sio_write(0x2E, 0x07, 0x07); |
| 1072 | base = (sio_read(0x2E, 0x62) << 8) | sio_read(0x2E, 0x63); |
| 1073 | exit_conf_mode_ite(0x2E); |
| 1074 | |
| 1075 | if (!base) { |
| 1076 | fprintf(stderr, "\nERROR: Failed to read IT8712F SuperIO GPIO" |
| 1077 | " Base.\n"); |
| 1078 | return -1; |
| 1079 | } |
| 1080 | |
| 1081 | /* set GPIO. */ |
| 1082 | tmp = INB(base + port); |
| 1083 | if (raise) |
| 1084 | tmp |= 1 << line; |
| 1085 | else |
| 1086 | tmp &= ~(1 << line); |
| 1087 | OUTB(tmp, base + port); |
| 1088 | |
| 1089 | return 0; |
| 1090 | } |
| 1091 | |
| 1092 | /** |
| 1093 | * Suited for Asus A7V600-X: VIA KT600 + VT8237 + IT8712F |
| 1094 | */ |
| 1095 | static int board_asus_a7v600x(const char *name) |
| 1096 | { |
| 1097 | return it8712f_gpio_set(32, 1); |
| 1098 | } |
| 1099 | |
Luc Verhaegen | 78e4e12 | 2009-07-13 12:40:17 +0000 | [diff] [blame] | 1100 | /** |
Uwe Hermann | d0e347d | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 1101 | * Below is the list of boards which need a special "board enable" code in |
| 1102 | * flashrom before their ROM chip can be accessed/written to. |
| 1103 | * |
| 1104 | * NOTE: Please add boards that _don't_ need such enables or don't work yet |
| 1105 | * to the respective tables in print.c. Thanks! |
| 1106 | * |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1107 | * We use 2 sets of IDs here, you're free to choose which is which. This |
| 1108 | * is to provide a very high degree of certainty when matching a board on |
| 1109 | * the basis of subsystem/card IDs. As not every vendor handles |
| 1110 | * subsystem/card IDs in a sane manner. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1111 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 1112 | * Keep the second set NULLed if it should be ignored. Keep the subsystem IDs |
| 1113 | * NULLed if they don't identify the board fully. But please take care to |
| 1114 | * provide an as complete set of pci ids as possible; autodetection is the |
| 1115 | * preferred behaviour and we would like to make sure that matches are unique. |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 1116 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 1117 | * The coreboot ids are used two fold. When running with a coreboot firmware, |
| 1118 | * the ids uniquely matches the coreboot board identification string. When a |
| 1119 | * legacy bios is installed and when autodetection is not possible, these ids |
| 1120 | * can be used to identify the board through the -m command line argument. |
| 1121 | * |
| 1122 | * When a board is identified through its coreboot ids (in both cases), the |
| 1123 | * main pci ids are still required to match, as a safeguard. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1124 | */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1125 | |
Uwe Hermann | deeebe2 | 2009-05-08 16:23:34 +0000 | [diff] [blame] | 1126 | /* Please keep this list alphabetically ordered by vendor/board name. */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1127 | struct board_pciid_enable board_pciid_enables[] = { |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 1128 | /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */ |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 1129 | {0x8086, 0x2926, 0x147b, 0x1084, 0x11ab, 0x4364, 0x147b, 0x1084, NULL, NULL, "Abit", "IP35", intel_ich_gpio16_raise}, |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 1130 | {0x8086, 0x1130, 0, 0, 0x105a, 0x0d30, 0x105a, 0x4d33, "acorp", "6a815epd", "Acorp", "6A815EPD", board_acorp_6a815epd}, |
Luc Verhaegen | 1265d8d | 2009-11-28 18:16:31 +0000 | [diff] [blame] | 1131 | {0x8086, 0x24D4, 0x1849, 0x24D0, 0x8086, 0x24D5, 0x1849, 0x9739, NULL, NULL, "ASRock", "P4i65GV", intel_ich_gpio23_raise}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1132 | {0x1022, 0x746B, 0x1022, 0x36C0, 0, 0, 0, 0, "AGAMI", "ARUMA", "agami", "Aruma", w83627hf_gpio24_raise_2e}, |
Luc Verhaegen | 0f9221c | 2009-11-29 01:19:25 +0000 | [diff] [blame] | 1133 | {0x1106, 0x3177, 0x17F2, 0x3177, 0x1106, 0x3148, 0x17F2, 0x3148, NULL, NULL, "Albatron", "PM266A", w836xx_memw_enable_2e}, |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 1134 | {0x1106, 0x3205, 0x1106, 0x3205, 0x10EC, 0x8139, 0xA0A0, 0x0477, NULL, NULL, "AOpen", "vKM400Am-S", board_aopen_vkm400}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1135 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x}, |
| 1136 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x}, |
Luc Verhaegen | 7227291 | 2009-09-01 21:22:23 +0000 | [diff] [blame] | 1137 | {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3065, 0x1043, 0x80ED, NULL, NULL, "ASUS", "A7V600-X", board_asus_a7v600x}, |
Luc Verhaegen | 78e4e12 | 2009-07-13 12:40:17 +0000 | [diff] [blame] | 1138 | {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3177, 0x1043, 0x808C, NULL, NULL, "ASUS", "A7V8X", board_asus_a7v8x}, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 1139 | {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8X-MX SE", board_asus_a7v8x_mx}, |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 1140 | {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, "ASUS", "P4B266", intel_ich_gpio22_raise}, |
Luc Verhaegen | 6c5d4cc | 2009-11-28 18:26:21 +0000 | [diff] [blame] | 1141 | {0x8086, 0x1A30, 0x1043, 0x8025, 0x8086, 0x244B, 0x104D, 0x80F0, NULL, NULL, "ASUS", "P4B266-LM", intel_ich_gpio21_raise}, |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 1142 | {0x8086, 0x2570, 0x1043, 0x80F2, 0x105A, 0x3373, 0x1043, 0x80F5, NULL, NULL, "ASUS", "P4P800-E Deluxe", intel_ich_gpio21_raise}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1143 | {0x10B9, 0x1541, 0, 0, 0x10B9, 0x1533, 0, 0, "asus", "p5a", "ASUS", "P5A", board_asus_p5a}, |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 1144 | {0x10DE, 0x0030, 0x1043, 0x818a, 0x8086, 0x100E, 0x1043, 0x80EE, NULL, NULL, "ASUS", "P5ND2-SLI Deluxe", nvidia_mcp_gpio10_raise}, |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 1145 | {0x1106, 0x3149, 0x1565, 0x3206, 0x1106, 0x3344, 0x1565, 0x1202, NULL, NULL, "Biostar", "P4M80-M4", it8705_rom_write_enable}, |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 1146 | {0x8086, 0x3590, 0x1028, 0x016c, 0x1000, 0x0030, 0x1028, 0x016c, NULL, NULL, "Dell", "PowerEdge 1850", intel_ich_gpio23_raise}, |
Uwe Hermann | 5ab8889 | 2009-06-21 20:50:22 +0000 | [diff] [blame] | 1147 | {0x1106, 0x3038, 0x1019, 0x0996, 0x1106, 0x3177, 0x1019, 0x0996, NULL, NULL, "Elitegroup", "K7VTA3", it8705f_write_enable_2e}, |
Luc Verhaegen | 0f9221c | 2009-11-29 01:19:25 +0000 | [diff] [blame] | 1148 | {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, "EPoX", "EP-8K5A2", w836xx_memw_enable_2e}, |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 1149 | {0x10EC, 0x8139, 0x1695, 0x9001, 0x11C1, 0x5811, 0x1695, 0x9015, NULL, NULL, "EPoX", "EP-8RDA3+", nvidia_mcp_gpio31_raise}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1150 | {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, "epox", "ep-bx3", "EPoX", "EP-BX3", board_epox_ep_bx3}, |
| 1151 | {0x1039, 0x0761, 0, 0, 0, 0, 0, 0, "gigabyte", "2761gxdk", "GIGABYTE", "GA-2761GXDK", it87xx_probe_spi_flash}, |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 1152 | {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, NULL, NULL, "GIGABYTE", "GA-7VT600", it8705_rom_write_enable}, |
Luc Verhaegen | 96f88fb | 2009-12-03 12:25:34 +0000 | [diff] [blame^] | 1153 | {0x10DE, 0x0050, 0x1458, 0x0C11, 0x10DE, 0x005e, 0x1458, 0x5000, NULL, NULL, "GIGABYTE", "GA-K8N-SLI", nvidia_mcp_gpio21_raise}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1154 | {0x10de, 0x0360, 0, 0, 0, 0, 0, 0, "gigabyte", "m57sli", "GIGABYTE", "GA-M57SLI-S4", it87xx_probe_spi_flash}, |
| 1155 | {0x10de, 0x03e0, 0, 0, 0, 0, 0, 0, "gigabyte", "m61p", "GIGABYTE", "GA-M61P-S3", it87xx_probe_spi_flash}, |
Uwe Hermann | 0495c94 | 2009-05-18 22:27:53 +0000 | [diff] [blame] | 1156 | {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb000, NULL, NULL, "GIGABYTE", "GA-MA78G-DS3H", it87xx_probe_spi_flash}, |
| 1157 | {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb002, NULL, NULL, "GIGABYTE", "GA-MA78GM-S2H", it87xx_probe_spi_flash}, |
Uwe Hermann | deeebe2 | 2009-05-08 16:23:34 +0000 | [diff] [blame] | 1158 | /* SB600 LPC, RD790 North. Neither are specific to the GA-MA790FX-DQ6. The coreboot ID is here to be able to trigger the board enable more easily. */ |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1159 | {0x1002, 0x438d, 0x1458, 0x5001, 0x1002, 0x5956, 0x1002, 0x5956, "gigabyte", "ma790fx-dq6", "GIGABYTE", "GA-MA790FX-DQ6", it87xx_probe_spi_flash}, |
| 1160 | {0x1166, 0x0223, 0x103c, 0x320d, 0x102b, 0x0522, 0x103c, 0x31fa, "hp", "dl145_g3", "HP", "DL145 G3", board_hp_dl145_g3_enable}, |
| 1161 | {0x1166, 0x0205, 0x1014, 0x0347, 0, 0, 0, 0, "ibm", "x3455", "IBM", "x3455", board_ibm_x3455}, |
| 1162 | {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, "Intel", "D201GLY", wbsio_check_for_spi}, |
| 1163 | {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, "iwill", "dk8_htx", "IWILL", "DK8-HTX", w83627hf_gpio24_raise_2e}, |
| 1164 | /* Note: There are >= 2 version of the Kontron 986LCD-M/mITX! */ |
| 1165 | {0x8086, 0x27b8, 0, 0, 0, 0, 0, 0, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m}, |
| 1166 | {0x10ec, 0x8168, 0x10ec, 0x8168, 0x104c, 0x8023, 0x104c, 0x8019, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m}, |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 1167 | {0x8086, 0x2411, 0x8086, 0x2411, 0x8086, 0x7125, 0x0e11, 0xb165, NULL, NULL, "Mitac", "6513WU", board_mitac_6513wu}, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 1168 | {0x13f6, 0x0111, 0x1462, 0x5900, 0x1106, 0x3177, 0x1106, 0, "msi", "kt4ultra", "MSI", "MS-6590 (KT4 Ultra)",board_msi_kt4v}, |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 1169 | {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, NULL, NULL, "MSI", "MS-6702E (K8T Neo2-F)",w83627thf_gpio4_4_raise_2e}, |
Luc Verhaegen | 4802a7b | 2009-11-28 21:12:58 +0000 | [diff] [blame] | 1170 | {0x1106, 0x0571, 0x1462, 0x7120, 0x1106, 0x3065, 0x1462, 0x7120, NULL, NULL, "MSI", "MS-6712 (KT4V)", board_msi_kt4v}, |
Luc Verhaegen | 60ea7dc | 2009-11-28 18:07:51 +0000 | [diff] [blame] | 1171 | {0x8086, 0x2658, 0x1462, 0x7046, 0x1106, 0x3044, 0x1462, 0x046d, NULL, NULL, "MSI", "MS-7046", intel_ich_gpio19_raise}, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 1172 | {0x10de, 0x005e, 0, 0, 0, 0, 0, 0, "msi", "k8n-neo3", "MSI", "MS-7135 (K8N Neo3)", w83627thf_gpio4_4_raise_4e}, |
Luc Verhaegen | 0f9221c | 2009-11-29 01:19:25 +0000 | [diff] [blame] | 1173 | {0x1106, 0x3099, 0, 0, 0x1106, 0x3074, 0, 0, "shuttle", "ak31", "Shuttle", "AK31", w836xx_memw_enable_2e}, |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 1174 | {0x1106, 0x3104, 0x1297, 0xa238, 0x1106, 0x3059, 0x1297, 0xc063, NULL, NULL, "Shuttle", "AK38N", it8705f_write_enable_2e}, |
Luc Verhaegen | 20fdce1 | 2009-10-21 12:05:50 +0000 | [diff] [blame] | 1175 | {0x10DE, 0x0050, 0x1297, 0x5036, 0x1412, 0x1724, 0x1297, 0x5036, NULL, NULL, "Shuttle", "FN25", board_shuttle_fn25}, |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 1176 | {0x1106, 0x3038, 0x0925, 0x1234, 0x1106, 0x3058, 0x15DD, 0x7609, NULL, NULL, "Soyo", "SY-7VCA", board_soyo_sy_7vca}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1177 | {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, "Tyan", "S2498 (Tomcat K7M)", board_asus_a7v8x_mx}, |
| 1178 | {0x1106, 0x0314, 0x1106, 0xaa08, 0x1106, 0x3227, 0x1106, 0xAA08, NULL, NULL, "VIA", "EPIA-CN", board_via_epia_sp}, |
| 1179 | {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA M/MII/...", board_via_epia_m}, |
Jon Harrison | 2eeff4e | 2009-06-19 13:53:59 +0000 | [diff] [blame] | 1180 | {0x1106, 0x0259, 0x1106, 0x3227, 0x1106, 0x3065, 0x1106, 0x3149, "via", "epia-n", "VIA", "EPIA-N/NL", board_via_epia_n}, /* TODO: remove coreboot ids */ |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1181 | {0x1106, 0x3227, 0x1106, 0xAA01, 0x1106, 0x0259, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA SP", board_via_epia_sp}, |
| 1182 | {0x1106, 0x5337, 0x1458, 0xb003, 0x1106, 0x287e, 0x1106, 0x337e, "via", "pc3500g", "VIA", "PC3500G", it87xx_probe_spi_flash}, |
Uwe Hermann | 5ab8889 | 2009-06-21 20:50:22 +0000 | [diff] [blame] | 1183 | |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1184 | { 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL}, /* end marker */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1185 | }; |
| 1186 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1187 | /** |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 1188 | * Match boards on coreboot table gathered vendor and part name. |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1189 | * Require main PCI IDs to match too as extra safety. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1190 | */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1191 | static struct board_pciid_enable *board_match_coreboot_name(const char *vendor, |
| 1192 | const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1193 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1194 | struct board_pciid_enable *board = board_pciid_enables; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1195 | struct board_pciid_enable *partmatch = NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1196 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1197 | for (; board->vendor_name; board++) { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1198 | if (vendor && (!board->lb_vendor |
| 1199 | || strcasecmp(board->lb_vendor, vendor))) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1200 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1201 | |
Peter Stuge | 0b9c5f3 | 2008-07-02 00:47:30 +0000 | [diff] [blame] | 1202 | if (!board->lb_part || strcasecmp(board->lb_part, part)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1203 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1204 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1205 | if (!pci_dev_find(board->first_vendor, board->first_device)) |
| 1206 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1207 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1208 | if (board->second_vendor && |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1209 | !pci_dev_find(board->second_vendor, board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1210 | continue; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1211 | |
| 1212 | if (vendor) |
| 1213 | return board; |
| 1214 | |
| 1215 | if (partmatch) { |
| 1216 | /* a second entry has a matching part name */ |
| 1217 | printf("AMBIGUOUS BOARD NAME: %s\n", part); |
| 1218 | printf("At least vendors '%s' and '%s' match.\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1219 | partmatch->lb_vendor, board->lb_vendor); |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1220 | printf("Please use the full -m vendor:part syntax.\n"); |
| 1221 | return NULL; |
| 1222 | } |
| 1223 | partmatch = board; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1224 | } |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1225 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1226 | if (partmatch) |
| 1227 | return partmatch; |
| 1228 | |
Carl-Daniel Hailfinger | bc25f94 | 2009-07-30 13:30:17 +0000 | [diff] [blame] | 1229 | if (!partvendor_from_cbtable) { |
| 1230 | /* Only warn if the mainboard type was not gathered from the |
| 1231 | * coreboot table. If it was, the coreboot implementor is |
| 1232 | * expected to fix flashrom, too. |
| 1233 | */ |
| 1234 | printf("\nUnknown vendor:board from -m option: %s:%s\n\n", |
| 1235 | vendor, part); |
| 1236 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1237 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1238 | } |
| 1239 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1240 | /** |
| 1241 | * Match boards on PCI IDs and subsystem IDs. |
| 1242 | * Second set of IDs can be main only or missing completely. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1243 | */ |
| 1244 | static struct board_pciid_enable *board_match_pci_card_ids(void) |
| 1245 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1246 | struct board_pciid_enable *board = board_pciid_enables; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1247 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1248 | for (; board->vendor_name; board++) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1249 | if (!board->first_card_vendor || !board->first_card_device) |
| 1250 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1251 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1252 | if (!pci_card_find(board->first_vendor, board->first_device, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1253 | board->first_card_vendor, |
| 1254 | board->first_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1255 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1256 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1257 | if (board->second_vendor) { |
| 1258 | if (board->second_card_vendor) { |
| 1259 | if (!pci_card_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1260 | board->second_device, |
| 1261 | board->second_card_vendor, |
| 1262 | board->second_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1263 | continue; |
| 1264 | } else { |
| 1265 | if (!pci_dev_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1266 | board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1267 | continue; |
| 1268 | } |
| 1269 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1270 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1271 | return board; |
| 1272 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1273 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1274 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1275 | } |
| 1276 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1277 | int board_flash_enable(const char *vendor, const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1278 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1279 | struct board_pciid_enable *board = NULL; |
| 1280 | int ret = 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1281 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1282 | if (part) |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 1283 | board = board_match_coreboot_name(vendor, part); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1284 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1285 | if (!board) |
| 1286 | board = board_match_pci_card_ids(); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1287 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1288 | if (board) { |
Carl-Daniel Hailfinger | bc25f94 | 2009-07-30 13:30:17 +0000 | [diff] [blame] | 1289 | printf("Disabling flash write protection for board \"%s %s\"... ", |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1290 | board->vendor_name, board->board_name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1291 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1292 | ret = board->enable(board->vendor_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1293 | if (ret) |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 1294 | printf("FAILED!\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1295 | else |
| 1296 | printf("OK.\n"); |
| 1297 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1298 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1299 | return ret; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1300 | } |