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 | |
| 185 | if ((gpio < 12) || (gpio > 15)) { |
| 186 | fprintf(stderr, "\nERROR: " |
| 187 | "VT823x GPIO%02d is not implemented.\n", gpio); |
| 188 | return; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 189 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 190 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 191 | /* GPIO12-15 -> output */ |
| 192 | val = pci_read_byte(dev, 0xE4); |
| 193 | val |= 0x10; |
| 194 | pci_write_byte(dev, 0xE4, val); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 195 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 196 | /* Now raise/drop the GPIO line itself. */ |
| 197 | bit = 0x01 << (gpio - 8); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 198 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 199 | /* We need the I/O Base Address for this board's flash enable. */ |
| 200 | base = pci_read_word(dev, 0x88) & 0xff80; |
| 201 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 202 | val = INB(base + 0x4D); |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 203 | if (raise) |
| 204 | val |= bit; |
| 205 | else |
| 206 | val &= ~bit; |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 207 | OUTB(val, base + 0x4D); |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | /** |
| 211 | * Suited for VIAs EPIA M and MII, and maybe other CLE266 based EPIAs. |
| 212 | * |
| 213 | * We don't need to do this when using coreboot, GPIO15 is never lowered there. |
| 214 | */ |
| 215 | static int board_via_epia_m(const char *name) |
| 216 | { |
| 217 | struct pci_dev *dev; |
| 218 | |
| 219 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 220 | if (!dev) { |
| 221 | fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n"); |
| 222 | return -1; |
| 223 | } |
| 224 | |
| 225 | /* GPIO15 is connected to write protect. */ |
| 226 | vt823x_gpio_set(dev, 15, 1); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 227 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 228 | return 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 229 | } |
| 230 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 231 | /** |
Luc Verhaegen | 3270754 | 2007-07-04 17:51:49 +0000 | [diff] [blame] | 232 | * Suited for: |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 233 | * - ASUS A7V8X-MX SE and A7V400-MX: AMD K7 + VIA KM400A + VT8235 |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 234 | * - Tyan S2498 (Tomcat K7M): AMD Geode NX + VIA KM400 + VT8237. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 235 | */ |
Luc Verhaegen | 7977f4e | 2007-05-04 04:47:04 +0000 | [diff] [blame] | 236 | static int board_asus_a7v8x_mx(const char *name) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 237 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 238 | struct pci_dev *dev; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 239 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 240 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
Luc Verhaegen | 3270754 | 2007-07-04 17:51:49 +0000 | [diff] [blame] | 241 | if (!dev) |
| 242 | dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 243 | if (!dev) { |
Luc Verhaegen | 3270754 | 2007-07-04 17:51:49 +0000 | [diff] [blame] | 244 | fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 245 | return -1; |
| 246 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 247 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 248 | vt823x_set_all_writes_to_lpc(dev); |
| 249 | w836xx_memw_enable(0x2E); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 250 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 251 | return 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 254 | /** |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 255 | * Suited for VIAs EPIA SP and EPIA CN. |
Luc Verhaegen | 9786608 | 2008-02-09 02:03:06 +0000 | [diff] [blame] | 256 | */ |
| 257 | static int board_via_epia_sp(const char *name) |
| 258 | { |
| 259 | struct pci_dev *dev; |
Luc Verhaegen | 9786608 | 2008-02-09 02:03:06 +0000 | [diff] [blame] | 260 | |
| 261 | dev = pci_dev_find(0x1106, 0x3227); /* VT8237R ISA bridge */ |
| 262 | if (!dev) { |
| 263 | fprintf(stderr, "\nERROR: VT8237R ISA bridge not found.\n"); |
| 264 | return -1; |
| 265 | } |
| 266 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 267 | vt823x_set_all_writes_to_lpc(dev); |
| 268 | |
| 269 | return 0; |
| 270 | } |
| 271 | |
| 272 | /** |
Luc Verhaegen | b0d0f63 | 2009-06-09 18:29:30 +0000 | [diff] [blame] | 273 | * Suited for EPoX EP-8K5A2 and Albatron PM266A. |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 274 | */ |
| 275 | static int board_epox_ep_8k5a2(const char *name) |
| 276 | { |
| 277 | struct pci_dev *dev; |
| 278 | |
| 279 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 280 | if (!dev) { |
| 281 | fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n"); |
| 282 | return -1; |
| 283 | } |
| 284 | |
| 285 | w836xx_memw_enable(0x2E); |
Luc Verhaegen | 9786608 | 2008-02-09 02:03:06 +0000 | [diff] [blame] | 286 | |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | /** |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 291 | * Suited for ASUS P5A. |
| 292 | * |
| 293 | * This is rather nasty code, but there's no way to do this cleanly. |
| 294 | * We're basically talking to some unknown device on SMBus, my guess |
| 295 | * is that it is the Winbond W83781D that lives near the DIP BIOS. |
| 296 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 297 | static int board_asus_p5a(const char *name) |
| 298 | { |
| 299 | uint8_t tmp; |
| 300 | int i; |
| 301 | |
| 302 | #define ASUSP5A_LOOP 5000 |
| 303 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 304 | OUTB(0x00, 0xE807); |
| 305 | OUTB(0xEF, 0xE803); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 306 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 307 | OUTB(0xFF, 0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 308 | |
| 309 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 310 | OUTB(0xE1, 0xFF); |
| 311 | if (INB(0xE800) & 0x04) |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 312 | break; |
| 313 | } |
| 314 | |
| 315 | if (i == ASUSP5A_LOOP) { |
| 316 | printf("%s: Unable to contact device.\n", name); |
| 317 | return -1; |
| 318 | } |
| 319 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 320 | OUTB(0x20, 0xE801); |
| 321 | OUTB(0x20, 0xE1); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 322 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 323 | OUTB(0xFF, 0xE802); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 324 | |
| 325 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 326 | tmp = INB(0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 327 | if (tmp & 0x70) |
| 328 | break; |
| 329 | } |
| 330 | |
| 331 | if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) { |
| 332 | printf("%s: failed to read device.\n", name); |
| 333 | return -1; |
| 334 | } |
| 335 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 336 | tmp = INB(0xE804); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 337 | tmp &= ~0x02; |
| 338 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 339 | OUTB(0x00, 0xE807); |
| 340 | OUTB(0xEE, 0xE803); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 341 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 342 | OUTB(tmp, 0xE804); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 343 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 344 | OUTB(0xFF, 0xE800); |
| 345 | OUTB(0xE1, 0xFF); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 346 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 347 | OUTB(0x20, 0xE801); |
| 348 | OUTB(0x20, 0xE1); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 349 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 350 | OUTB(0xFF, 0xE802); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 351 | |
| 352 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 353 | tmp = INB(0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 354 | if (tmp & 0x70) |
| 355 | break; |
| 356 | } |
| 357 | |
| 358 | if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) { |
| 359 | printf("%s: failed to write to device.\n", name); |
| 360 | return -1; |
| 361 | } |
| 362 | |
| 363 | return 0; |
| 364 | } |
| 365 | |
Stefan Reinauer | 1c283f4 | 2007-06-05 12:51:52 +0000 | [diff] [blame] | 366 | static int board_ibm_x3455(const char *name) |
| 367 | { |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 368 | /* Set GPIO lines in the Broadcom HT-1000 southbridge. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 369 | /* It's not a superio but it uses the same index/data port method. */ |
| 370 | sio_mask(0xcd6, 0x45, 0x20, 0x20); |
Stefan Reinauer | 1c283f4 | 2007-06-05 12:51:52 +0000 | [diff] [blame] | 371 | |
| 372 | return 0; |
| 373 | } |
| 374 | |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 375 | /** |
| 376 | * Suited for the Gigabyte GA-K8N-SLI: CK804 southbridge. |
| 377 | */ |
| 378 | static int board_ga_k8n_sli(const char *name) |
| 379 | { |
| 380 | struct pci_dev *dev; |
| 381 | uint32_t base; |
| 382 | uint8_t tmp; |
| 383 | |
| 384 | dev = pci_dev_find(0x10DE, 0x0050); /* NVIDIA CK804 LPC */ |
| 385 | if (!dev) { |
| 386 | fprintf(stderr, "\nERROR: NVIDIA LPC bridge not found.\n"); |
| 387 | return -1; |
| 388 | } |
| 389 | |
| 390 | base = pci_read_long(dev, 0x64) & 0x0000FF00; /* System control area */ |
| 391 | |
| 392 | /* if anyone knows more about nvidia lpcs, feel free to explain this */ |
Idwer Vollering | fe72cfa | 2009-06-03 16:41:11 +0000 | [diff] [blame] | 393 | tmp = INB(base + 0xE1); |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 394 | tmp |= 0x05; |
Idwer Vollering | fe72cfa | 2009-06-03 16:41:11 +0000 | [diff] [blame] | 395 | OUTB(tmp, base + 0xE1); |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 396 | |
| 397 | return 0; |
| 398 | } |
| 399 | |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 400 | static int board_hp_dl145_g3_enable(const char *name) |
| 401 | { |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 402 | /* Set GPIO lines in the Broadcom HT-1000 southbridge. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 403 | /* GPIO 0 reg from PM regs */ |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 404 | /* Set GPIO 2 and 5 high, connected to flash WP# and TBL# pins. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 405 | /* It's not a superio but it uses the same index/data port method. */ |
| 406 | sio_mask(0xcd6, 0x44, 0x24, 0x24); |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 407 | |
| 408 | return 0; |
| 409 | } |
| 410 | |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 411 | /** |
| 412 | * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards. |
| 413 | */ |
| 414 | static int board_epox_ep_bx3(const char *name) |
| 415 | { |
| 416 | uint8_t tmp; |
| 417 | |
| 418 | /* Raise GPIO22. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 419 | tmp = INB(0x4036); |
| 420 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 421 | |
| 422 | tmp |= 0x40; |
| 423 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 424 | OUTB(tmp, 0x4036); |
| 425 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 426 | |
| 427 | return 0; |
| 428 | } |
| 429 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 430 | /** |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 431 | * Suited for Acorp 6A815EPD. |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 432 | */ |
| 433 | static int board_acorp_6a815epd(const char *name) |
| 434 | { |
| 435 | struct pci_dev *dev; |
| 436 | uint16_t port; |
| 437 | uint8_t val; |
| 438 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 439 | dev = pci_dev_find(0x8086, 0x2440); /* Intel ICH2 LPC */ |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 440 | if (!dev) { |
| 441 | fprintf(stderr, "\nERROR: ICH2 LPC bridge not found.\n"); |
| 442 | return -1; |
| 443 | } |
| 444 | |
| 445 | /* Use GPIOBASE register to find where the GPIO is mapped. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 446 | port = (pci_read_word(dev, 0x58) & 0xFFC0) + 0xE; |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 447 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 448 | val = INB(port); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 449 | val |= 0x80; /* Top Block Lock -- pin 8 of PLCC32 */ |
| 450 | val |= 0x40; /* Lower Blocks Lock -- pin 7 of PLCC32 */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 451 | OUTB(val, port); |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 452 | |
| 453 | return 0; |
| 454 | } |
| 455 | |
| 456 | /** |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 457 | * Suited for Artec Group DBE61 and DBE62. |
| 458 | */ |
| 459 | static int board_artecgroup_dbe6x(const char *name) |
| 460 | { |
| 461 | #define DBE6x_MSR_DIVIL_BALL_OPTS 0x51400015 |
| 462 | #define DBE6x_PRI_BOOT_LOC_SHIFT (2) |
| 463 | #define DBE6x_BOOT_OP_LATCHED_SHIFT (8) |
| 464 | #define DBE6x_SEC_BOOT_LOC_SHIFT (10) |
| 465 | #define DBE6x_PRI_BOOT_LOC (3 << DBE6x_PRI_BOOT_LOC_SHIFT) |
| 466 | #define DBE6x_BOOT_OP_LATCHED (3 << DBE6x_BOOT_OP_LATCHED_SHIFT) |
| 467 | #define DBE6x_SEC_BOOT_LOC (3 << DBE6x_SEC_BOOT_LOC_SHIFT) |
| 468 | #define DBE6x_BOOT_LOC_FLASH (2) |
| 469 | #define DBE6x_BOOT_LOC_FWHUB (3) |
| 470 | |
| 471 | unsigned long msr[2]; |
| 472 | int msr_fd; |
| 473 | unsigned long boot_loc; |
| 474 | |
| 475 | msr_fd = open("/dev/cpu/0/msr", O_RDWR); |
| 476 | if (msr_fd == -1) { |
| 477 | perror("open /dev/cpu/0/msr"); |
| 478 | return -1; |
| 479 | } |
| 480 | |
| 481 | if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) { |
| 482 | perror("lseek"); |
| 483 | close(msr_fd); |
| 484 | return -1; |
| 485 | } |
| 486 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 487 | if (read(msr_fd, (void *)msr, 8) != 8) { |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 488 | perror("read"); |
| 489 | close(msr_fd); |
| 490 | return -1; |
| 491 | } |
| 492 | |
| 493 | if ((msr[0] & (DBE6x_BOOT_OP_LATCHED)) == |
| 494 | (DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT)) |
| 495 | boot_loc = DBE6x_BOOT_LOC_FWHUB; |
| 496 | else |
| 497 | boot_loc = DBE6x_BOOT_LOC_FLASH; |
| 498 | |
| 499 | msr[0] &= ~(DBE6x_PRI_BOOT_LOC | DBE6x_SEC_BOOT_LOC); |
| 500 | msr[0] |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 501 | (boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT)); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 502 | |
| 503 | if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) { |
| 504 | perror("lseek"); |
| 505 | close(msr_fd); |
| 506 | return -1; |
| 507 | } |
| 508 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 509 | if (write(msr_fd, (void *)msr, 8) != 8) { |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 510 | perror("write"); |
| 511 | close(msr_fd); |
| 512 | return -1; |
| 513 | } |
| 514 | |
| 515 | close(msr_fd); |
| 516 | return 0; |
| 517 | } |
| 518 | |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 519 | /** |
| 520 | * Set the specified GPIO on the specified ICHx southbridge to high. |
| 521 | * |
| 522 | * @param name The name of this board. |
| 523 | * @param ich_vendor PCI vendor ID of the specified ICHx southbridge. |
| 524 | * @param ich_device PCI device ID of the specified ICHx southbridge. |
| 525 | * @param gpiobase_reg GPIOBASE register offset in the LPC bridge. |
| 526 | * @param gp_lvl Offset of GP_LVL register in I/O space, relative to GPIOBASE. |
| 527 | * @param gp_lvl_bitmask GP_LVL bitmask (set GPIO bits to 1, all others to 0). |
| 528 | * @param gpio_bit The bit (GPIO) which shall be set to high. |
| 529 | * @return If the write-enable was successful return 0, otherwise return -1. |
| 530 | */ |
| 531 | static int ich_gpio_raise(const char *name, uint16_t ich_vendor, |
| 532 | uint16_t ich_device, uint8_t gpiobase_reg, |
| 533 | uint8_t gp_lvl, uint32_t gp_lvl_bitmask, |
| 534 | unsigned int gpio_bit) |
| 535 | { |
| 536 | struct pci_dev *dev; |
| 537 | uint16_t gpiobar; |
| 538 | uint32_t reg32; |
| 539 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 540 | dev = pci_dev_find(ich_vendor, ich_device); /* Intel ICHx LPC */ |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 541 | if (!dev) { |
| 542 | fprintf(stderr, "\nERROR: ICHx LPC dev %4x:%4x not found.\n", |
| 543 | ich_vendor, ich_device); |
| 544 | return -1; |
| 545 | } |
| 546 | |
| 547 | /* Use GPIOBASE register to find the I/O space for GPIO. */ |
| 548 | gpiobar = pci_read_word(dev, gpiobase_reg) & gp_lvl_bitmask; |
| 549 | |
| 550 | /* Set specified GPIO to high. */ |
| 551 | reg32 = INL(gpiobar + gp_lvl); |
| 552 | reg32 |= (1 << gpio_bit); |
| 553 | OUTL(reg32, gpiobar + gp_lvl); |
| 554 | |
| 555 | return 0; |
| 556 | } |
| 557 | |
| 558 | /** |
| 559 | * Suited for ASUS P4B266. |
| 560 | */ |
| 561 | static int ich2_gpio22_raise(const char *name) |
| 562 | { |
| 563 | return ich_gpio_raise(name, 0x8086, 0x2440, 0x58, 0x0c, 0xffc0, 22); |
| 564 | } |
| 565 | |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 566 | /** |
| 567 | * Suited for MSI MS-7046. |
| 568 | */ |
| 569 | static int ich6_gpio19_raise(const char *name) |
| 570 | { |
| 571 | return ich_gpio_raise(name, 0x8086, 0x2640, 0x48, 0x0c, 0xffc0, 19); |
| 572 | } |
| 573 | |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 574 | static int board_kontron_986lcd_m(const char *name) |
| 575 | { |
| 576 | struct pci_dev *dev; |
| 577 | uint16_t gpiobar; |
| 578 | uint32_t val; |
| 579 | |
| 580 | #define ICH7_GPIO_LVL2 0x38 |
| 581 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 582 | dev = pci_dev_find(0x8086, 0x27b8); /* Intel ICH7 LPC */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 583 | if (!dev) { |
| 584 | // This will never happen on this board |
| 585 | fprintf(stderr, "\nERROR: ICH7 LPC bridge not found.\n"); |
| 586 | return -1; |
| 587 | } |
| 588 | |
| 589 | /* Use GPIOBASE register to find where the GPIO is mapped. */ |
| 590 | gpiobar = pci_read_word(dev, 0x48) & 0xfffc; |
| 591 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 592 | val = INL(gpiobar + ICH7_GPIO_LVL2); /* GP_LVL2 */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 593 | printf_debug("\nGPIOBAR=0x%04x GP_LVL: 0x%08x\n", gpiobar, val); |
| 594 | |
| 595 | /* bit 2 (0x04) = 0 #TBL --> bootblock locking = 1 |
| 596 | * bit 2 (0x04) = 1 #TBL --> bootblock locking = 0 |
| 597 | * bit 3 (0x08) = 0 #WP --> block locking = 1 |
| 598 | * bit 3 (0x08) = 1 #WP --> block locking = 0 |
| 599 | * |
| 600 | * To enable full block locking, you would do: |
| 601 | * val &= ~ ((1 << 2) | (1 << 3)); |
| 602 | */ |
| 603 | val |= (1 << 2) | (1 << 3); |
| 604 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 605 | OUTL(val, gpiobar + ICH7_GPIO_LVL2); |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 606 | |
| 607 | return 0; |
| 608 | } |
| 609 | |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 610 | /** |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 611 | * Suited for: |
| 612 | * - BioStar P4M80-M4: Intel P4 + VIA P4M800 + VT8237 |
Peter Stuge | 663f171 | 2008-06-13 01:39:45 +0000 | [diff] [blame] | 613 | * - GIGABYTE GA-7VT600: AMD K7 + VIA KT600 + VT8237 |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 614 | */ |
| 615 | static int board_biostar_p4m80_m4(const char *name) |
| 616 | { |
| 617 | /* enter IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 618 | enter_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 619 | |
| 620 | /* select right flash chip */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 621 | sio_mask(0x2e, 0x22, 0x80, 0x80); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 622 | |
| 623 | /* bit 3: flash chip write enable |
| 624 | * bit 7: map flash chip at 1MB-128K (why though? ignoring this.) |
| 625 | */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 626 | sio_mask(0x2e, 0x24, 0x04, 0x04); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 627 | |
| 628 | /* exit IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 629 | exit_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 630 | |
| 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | /** |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 635 | * Winbond W83697HF Super I/O + VIA VT8235 southbridge |
| 636 | * |
| 637 | * Suited for: |
| 638 | * - MSI KT4V and KT4V-L: AMD K7 + VIA KT400 + VT8235 |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 639 | * - MSI KT4 Ultra: AMD K7 + VIA KT400 + VT8235 |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 640 | * - MSI KT3 Ultra2: AMD K7 + VIA KT333 + VT8235 |
| 641 | */ |
| 642 | static int board_msi_kt4v(const char *name) |
| 643 | { |
| 644 | struct pci_dev *dev; |
| 645 | uint8_t val; |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 646 | |
| 647 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 648 | if (!dev) { |
| 649 | fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n"); |
| 650 | return -1; |
| 651 | } |
| 652 | |
| 653 | val = pci_read_byte(dev, 0x59); |
| 654 | val &= 0x0c; |
| 655 | pci_write_byte(dev, 0x59, val); |
| 656 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 657 | vt823x_gpio_set(dev, 12, 1); |
| 658 | w836xx_memw_enable(0x2E); |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 659 | |
| 660 | return 0; |
| 661 | } |
| 662 | |
| 663 | /** |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 664 | * We use 2 sets of IDs here, you're free to choose which is which. This |
| 665 | * is to provide a very high degree of certainty when matching a board on |
| 666 | * the basis of subsystem/card IDs. As not every vendor handles |
| 667 | * subsystem/card IDs in a sane manner. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 668 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 669 | * Keep the second set NULLed if it should be ignored. Keep the subsystem IDs |
| 670 | * NULLed if they don't identify the board fully. But please take care to |
| 671 | * provide an as complete set of pci ids as possible; autodetection is the |
| 672 | * 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] | 673 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 674 | * The coreboot ids are used two fold. When running with a coreboot firmware, |
| 675 | * the ids uniquely matches the coreboot board identification string. When a |
| 676 | * legacy bios is installed and when autodetection is not possible, these ids |
| 677 | * can be used to identify the board through the -m command line argument. |
| 678 | * |
| 679 | * When a board is identified through its coreboot ids (in both cases), the |
| 680 | * main pci ids are still required to match, as a safeguard. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 681 | */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 682 | |
Uwe Hermann | deeebe2 | 2009-05-08 16:23:34 +0000 | [diff] [blame] | 683 | /* Please keep this list alphabetically ordered by vendor/board name. */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 684 | struct board_pciid_enable board_pciid_enables[] = { |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 685 | /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */ |
| 686 | {0x8086, 0x1130, 0, 0, 0x105a, 0x0d30, 0x105a, 0x4d33, "acorp", "6a815epd", "Acorp", "6A815EPD", board_acorp_6a815epd}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 687 | {0x1022, 0x746B, 0x1022, 0x36C0, 0, 0, 0, 0, "AGAMI", "ARUMA", "agami", "Aruma", w83627hf_gpio24_raise_2e}, |
Luc Verhaegen | b0d0f63 | 2009-06-09 18:29:30 +0000 | [diff] [blame] | 688 | {0x1106, 0x3177, 0x17F2, 0x3177, 0x1106, 0x3148, 0x17F2, 0x3148, NULL, NULL, "Albatron", "PM266A", board_epox_ep_8k5a2}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 689 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x}, |
| 690 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x}, |
| 691 | {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8-MX SE", board_asus_a7v8x_mx}, |
| 692 | {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, "ASUS", "P4B266", ich2_gpio22_raise}, |
| 693 | {0x10B9, 0x1541, 0, 0, 0x10B9, 0x1533, 0, 0, "asus", "p5a", "ASUS", "P5A", board_asus_p5a}, |
| 694 | {0x1106, 0x3149, 0x1565, 0x3206, 0x1106, 0x3344, 0x1565, 0x1202, NULL, NULL, "BioStar", "P4M80-M4", board_biostar_p4m80_m4}, |
| 695 | {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, "EPoX", "EP-8K5A2", board_epox_ep_8k5a2}, |
| 696 | {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, "epox", "ep-bx3", "EPoX", "EP-BX3", board_epox_ep_bx3}, |
| 697 | {0x1039, 0x0761, 0, 0, 0, 0, 0, 0, "gigabyte", "2761gxdk", "GIGABYTE", "GA-2761GXDK", it87xx_probe_spi_flash}, |
| 698 | {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, NULL, NULL, "GIGABYTE", "GA-7VT600", board_biostar_p4m80_m4}, |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 699 | {0x10DE, 0x0050, 0x1458, 0x0C11, 0x10DE, 0x005e, 0x1458, 0x5000, NULL, NULL, "GIGABYTE", "GA-K8N-SLI", board_ga_k8n_sli}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 700 | {0x10de, 0x0360, 0, 0, 0, 0, 0, 0, "gigabyte", "m57sli", "GIGABYTE", "GA-M57SLI-S4", it87xx_probe_spi_flash}, |
| 701 | {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] | 702 | {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb000, NULL, NULL, "GIGABYTE", "GA-MA78G-DS3H", it87xx_probe_spi_flash}, |
| 703 | {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] | 704 | /* 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] | 705 | {0x1002, 0x438d, 0x1458, 0x5001, 0x1002, 0x5956, 0x1002, 0x5956, "gigabyte", "ma790fx-dq6", "GIGABYTE", "GA-MA790FX-DQ6", it87xx_probe_spi_flash}, |
| 706 | {0x1166, 0x0223, 0x103c, 0x320d, 0x102b, 0x0522, 0x103c, 0x31fa, "hp", "dl145_g3", "HP", "DL145 G3", board_hp_dl145_g3_enable}, |
| 707 | {0x1166, 0x0205, 0x1014, 0x0347, 0, 0, 0, 0, "ibm", "x3455", "IBM", "x3455", board_ibm_x3455}, |
| 708 | {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, "Intel", "D201GLY", wbsio_check_for_spi}, |
| 709 | {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, "iwill", "dk8_htx", "IWILL", "DK8-HTX", w83627hf_gpio24_raise_2e}, |
| 710 | /* Note: There are >= 2 version of the Kontron 986LCD-M/mITX! */ |
| 711 | {0x8086, 0x27b8, 0, 0, 0, 0, 0, 0, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m}, |
| 712 | {0x10ec, 0x8168, 0x10ec, 0x8168, 0x104c, 0x8023, 0x104c, 0x8019, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m}, |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 713 | {0x10de, 0x005e, 0, 0, 0, 0, 0, 0, "msi", "k8n-neo3", "MSI", "MS-7135 (K8N Neo3)", w83627thf_gpio4_4_raise_4e}, |
| 714 | {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, NULL, NULL, "MSI", "MS-6702E (K8T Neo2-F)",w83627thf_gpio4_4_raise_2e}, |
| 715 | {0x1106, 0x0571, 0x1462, 0x7120, 0, 0, 0, 0, "msi", "kt4v", "MSI", "MS-6712 (KT4V)", board_msi_kt4v}, |
| 716 | {0x13f6, 0x0111, 0x1462, 0x5900, 0x1106, 0x3177, 0x1106, 0, "msi", "kt4ultra", "MSI", "MS-6590 (KT4 Ultra)",board_msi_kt4v}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 717 | {0x8086, 0x2658, 0x1462, 0x7046, 0x1106, 0x3044, 0x1462, 0x046d, NULL, NULL, "MSI", "MS-7046", ich6_gpio19_raise}, |
| 718 | {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, "Tyan", "S2498 (Tomcat K7M)", board_asus_a7v8x_mx}, |
| 719 | {0x1106, 0x0314, 0x1106, 0xaa08, 0x1106, 0x3227, 0x1106, 0xAA08, NULL, NULL, "VIA", "EPIA-CN", board_via_epia_sp}, |
| 720 | {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA M/MII/...", board_via_epia_m}, |
| 721 | {0x1106, 0x3227, 0x1106, 0xAA01, 0x1106, 0x0259, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA SP", board_via_epia_sp}, |
| 722 | {0x1106, 0x5337, 0x1458, 0xb003, 0x1106, 0x287e, 0x1106, 0x337e, "via", "pc3500g", "VIA", "PC3500G", it87xx_probe_spi_flash}, |
| 723 | { 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] | 724 | }; |
| 725 | |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 726 | /* Please keep this list alphabetically ordered by vendor/board. */ |
| 727 | const struct board_info boards_ok[] = { |
| 728 | /* Verified working boards that don't need write-enables. */ |
| 729 | { "Abit", "AX8", }, |
| 730 | { "Advantech", "PCM-5820", }, |
| 731 | { "ASI", "MB-5BLMP", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 732 | { "ASUS", "A7N8X Deluxe", }, |
| 733 | { "ASUS", "A7N8X-E Deluxe", }, |
| 734 | { "ASUS", "A7V400-MX", }, |
| 735 | { "ASUS", "A7V8X-MX", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 736 | { "ASUS", "A8N-E", }, |
| 737 | { "ASUS", "A8NE-FM/S", }, |
Uwe Hermann | 265c838 | 2009-06-02 13:39:42 +0000 | [diff] [blame] | 738 | { "ASUS", "A8N-SLI", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 739 | { "ASUS", "A8N-SLI Premium", }, |
| 740 | { "ASUS", "A8V-E Deluxe", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 741 | { "ASUS", "A8V-E SE", }, |
| 742 | { "ASUS", "M2A-MX", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 743 | { "ASUS", "M2A-VM", }, |
| 744 | { "ASUS", "M2N-E", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 745 | { "ASUS", "M2V", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 746 | { "ASUS", "P2B", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 747 | { "ASUS", "P2B-D", }, |
| 748 | { "ASUS", "P2B-DS", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 749 | { "ASUS", "P2B-F", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 750 | { "ASUS", "P2L97-S", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 751 | { "ASUS", "P5B-Deluxe", }, |
| 752 | { "ASUS", "P6T Deluxe V2", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 753 | { "A-Trend", "ATC-6220", }, |
| 754 | { "BCOM", "WinNET100", }, |
| 755 | { "GIGABYTE", "GA-6BXC", }, |
| 756 | { "GIGABYTE", "GA-6BXDU", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 757 | { "GIGABYTE", "GA-6ZMA", }, |
| 758 | { "Intel", "EP80759", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 759 | { "Jetway", "J7F4K1G5D-PB", }, |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 760 | { "MSI", "MS-6570 (K7N2)", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 761 | { "MSI", "MS-7065", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 762 | { "MSI", "MS-7168 (Orion)", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 763 | { "MSI", "MS-7236 (945PL Neo3)", }, |
Uwe Hermann | 265c838 | 2009-06-02 13:39:42 +0000 | [diff] [blame] | 764 | { "MSI", "MS-7255 (P4M890M)", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 765 | { "MSI", "MS-7345 (P35 Neo2-FIR)", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 766 | { "NEC", "PowerMate 2000", }, |
| 767 | { "PC Engines", "Alix.1c", }, |
| 768 | { "PC Engines", "Alix.2c2", }, |
| 769 | { "PC Engines", "Alix.2c3", }, |
| 770 | { "PC Engines", "Alix.3c3", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 771 | { "PC Engines", "Alix.3d3", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 772 | { "RCA", "RM4100", }, |
| 773 | { "Sun", "Blade x6250", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 774 | { "Supermicro", "H8QC8", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 775 | { "Thomson", "IP1000", }, |
| 776 | { "T-Online", "S-100", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 777 | { "Tyan", "iS5375-1U", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 778 | { "Tyan", "S1846", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 779 | { "Tyan", "S2881", }, |
| 780 | { "Tyan", "S2882", }, |
| 781 | { "Tyan", "S2882-D", }, |
Uwe Hermann | e615e51 | 2009-05-18 15:31:10 +0000 | [diff] [blame] | 782 | { "Tyan", "S2891", }, |
| 783 | { "Tyan", "S2892", }, |
| 784 | { "Tyan", "S2895", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 785 | { "Tyan", "S3095", }, |
| 786 | { "Tyan", "S5180", }, |
| 787 | { "Tyan", "S5191", }, |
| 788 | { "Tyan", "S5197", }, |
| 789 | { "Tyan", "S5211", }, |
| 790 | { "Tyan", "S5211-1U", }, |
| 791 | { "Tyan", "S5220", }, |
| 792 | { "Tyan", "S5375", }, |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 793 | { "Tyan", "S5376G2NR/S5376WAG2NR", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 794 | { "Tyan", "S5377", }, |
| 795 | { "Tyan", "S5397", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 796 | { "VIA", "EPIA-LN", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 797 | { "VIA", "NAB74X0", }, |
| 798 | { "VIA", "pc2500e", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 799 | { "VIA", "VB700X", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 800 | |
| 801 | {}, |
| 802 | }; |
| 803 | |
| 804 | /* Please keep this list alphabetically ordered by vendor/board. */ |
| 805 | const struct board_info boards_bad[] = { |
| 806 | /* Verified non-working boards (for now). */ |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 807 | { "Abit", "IS-10", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 808 | { "ASUS", "M3N78 Pro", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 809 | { "ASUS", "MEW-AM", }, |
| 810 | { "ASUS", "MEW-VM", }, |
| 811 | { "ASUS", "P3B-F", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 812 | { "ASUS", "P5B", }, |
| 813 | { "ASUS", "P5BV-M", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 814 | { "Biostar", "M6TBA", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 815 | { "Boser", "HS-6637", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 816 | { "DFI", "855GME-MGF", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 817 | { "FIC", "VA-502", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 818 | { "MSI", "MS-6178", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 819 | { "MSI", "MS-7260 (K9N Neo)", }, |
| 820 | { "PCCHIPS", "M537DMA33", }, |
| 821 | { "Soyo", "SY-5VD", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 822 | { "Sun", "Fire x4150", }, |
| 823 | { "Sun", "Fire x4200", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 824 | { "Sun", "Fire x4540", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 825 | { "Sun", "Fire x4600", }, |
| 826 | |
| 827 | {}, |
| 828 | }; |
| 829 | |
| 830 | void print_supported_boards_helper(const struct board_info *b) |
| 831 | { |
Uwe Hermann | 4e58790 | 2009-06-16 23:15:10 +0000 | [diff] [blame^] | 832 | int i, j, boardcount = 0; |
| 833 | |
| 834 | for (i = 0; b[i].vendor != NULL; i++) |
| 835 | boardcount++; |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 836 | |
| 837 | for (i = 0; b[i].vendor != NULL; i++) { |
| 838 | printf("%s", b[i].vendor); |
| 839 | for (j = 0; j < 25 - strlen(b[i].vendor); j++) |
| 840 | printf(" "); |
| 841 | printf("%s", b[i].name); |
| 842 | for (j = 0; j < 23 - strlen(b[i].name); j++) |
| 843 | printf(" "); |
| 844 | printf("\n"); |
| 845 | } |
| 846 | } |
| 847 | |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 848 | void print_supported_boards(void) |
| 849 | { |
Uwe Hermann | 4e58790 | 2009-06-16 23:15:10 +0000 | [diff] [blame^] | 850 | int i, j, boardcount = 0; |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 851 | struct board_pciid_enable *b = board_pciid_enables; |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 852 | |
Uwe Hermann | 4e58790 | 2009-06-16 23:15:10 +0000 | [diff] [blame^] | 853 | for (i = 0; b[i].vendor_name != NULL; i++) |
| 854 | boardcount++; |
| 855 | |
| 856 | printf("\nSupported boards which need write-enable code (total: %d):" |
| 857 | "\n\nVendor: Board: " |
| 858 | "Required option:\n\n", boardcount); |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 859 | |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 860 | for (i = 0; b[i].vendor_name != NULL; i++) { |
| 861 | printf("%s", b[i].vendor_name); |
| 862 | for (j = 0; j < 25 - strlen(b[i].vendor_name); j++) |
| 863 | printf(" "); |
| 864 | printf("%s", b[i].board_name); |
| 865 | for (j = 0; j < 25 - strlen(b[i].board_name); j++) |
| 866 | printf(" "); |
| 867 | if (b[i].lb_vendor != NULL) |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 868 | printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part); |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 869 | else |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 870 | printf("(none, board is autodetected)\n"); |
Uwe Hermann | 23c3d95 | 2008-03-13 18:41:07 +0000 | [diff] [blame] | 871 | } |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 872 | |
Uwe Hermann | 4e58790 | 2009-06-16 23:15:10 +0000 | [diff] [blame^] | 873 | for (i = 0, boardcount = 0; boards_ok[i].vendor != NULL; i++) |
| 874 | boardcount++; |
| 875 | printf("\nSupported boards which don't need write-enable code " |
| 876 | "(total: %d):\n\n", boardcount); |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 877 | print_supported_boards_helper(boards_ok); |
| 878 | |
Uwe Hermann | 4e58790 | 2009-06-16 23:15:10 +0000 | [diff] [blame^] | 879 | for (i = 0, boardcount = 0; boards_bad[i].vendor != NULL; i++) |
| 880 | boardcount++; |
| 881 | printf("\nBoards which have been verified to NOT work yet " |
| 882 | "(total: %d):\n\n", boardcount); |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 883 | print_supported_boards_helper(boards_bad); |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 884 | } |
| 885 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 886 | /** |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 887 | * Match boards on coreboot table gathered vendor and part name. |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 888 | * Require main PCI IDs to match too as extra safety. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 889 | */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 890 | static struct board_pciid_enable *board_match_coreboot_name(const char *vendor, |
| 891 | const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 892 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 893 | struct board_pciid_enable *board = board_pciid_enables; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 894 | struct board_pciid_enable *partmatch = NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 895 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 896 | for (; board->vendor_name; board++) { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 897 | if (vendor && (!board->lb_vendor |
| 898 | || strcasecmp(board->lb_vendor, vendor))) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 899 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 900 | |
Peter Stuge | 0b9c5f3 | 2008-07-02 00:47:30 +0000 | [diff] [blame] | 901 | if (!board->lb_part || strcasecmp(board->lb_part, part)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 902 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 903 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 904 | if (!pci_dev_find(board->first_vendor, board->first_device)) |
| 905 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 906 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 907 | if (board->second_vendor && |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 908 | !pci_dev_find(board->second_vendor, board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 909 | continue; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 910 | |
| 911 | if (vendor) |
| 912 | return board; |
| 913 | |
| 914 | if (partmatch) { |
| 915 | /* a second entry has a matching part name */ |
| 916 | printf("AMBIGUOUS BOARD NAME: %s\n", part); |
| 917 | printf("At least vendors '%s' and '%s' match.\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 918 | partmatch->lb_vendor, board->lb_vendor); |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 919 | printf("Please use the full -m vendor:part syntax.\n"); |
| 920 | return NULL; |
| 921 | } |
| 922 | partmatch = board; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 923 | } |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 924 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 925 | if (partmatch) |
| 926 | return partmatch; |
| 927 | |
Peter Stuge | 00019d9 | 2008-07-02 00:59:29 +0000 | [diff] [blame] | 928 | printf("\nUnknown vendor:board from coreboot table or -m option: %s:%s\n\n", vendor, part); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 929 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 930 | } |
| 931 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 932 | /** |
| 933 | * Match boards on PCI IDs and subsystem IDs. |
| 934 | * Second set of IDs can be main only or missing completely. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 935 | */ |
| 936 | static struct board_pciid_enable *board_match_pci_card_ids(void) |
| 937 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 938 | struct board_pciid_enable *board = board_pciid_enables; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 939 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 940 | for (; board->vendor_name; board++) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 941 | if (!board->first_card_vendor || !board->first_card_device) |
| 942 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 943 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 944 | if (!pci_card_find(board->first_vendor, board->first_device, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 945 | board->first_card_vendor, |
| 946 | board->first_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 947 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 948 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 949 | if (board->second_vendor) { |
| 950 | if (board->second_card_vendor) { |
| 951 | if (!pci_card_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 952 | board->second_device, |
| 953 | board->second_card_vendor, |
| 954 | board->second_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 955 | continue; |
| 956 | } else { |
| 957 | if (!pci_dev_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 958 | board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 959 | continue; |
| 960 | } |
| 961 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 962 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 963 | return board; |
| 964 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 965 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 966 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 969 | int board_flash_enable(const char *vendor, const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 970 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 971 | struct board_pciid_enable *board = NULL; |
| 972 | int ret = 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 973 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 974 | if (part) |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 975 | board = board_match_coreboot_name(vendor, part); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 976 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 977 | if (!board) |
| 978 | board = board_match_pci_card_ids(); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 979 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 980 | if (board) { |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 981 | printf("Found board \"%s %s\", enabling flash write... ", |
| 982 | board->vendor_name, board->board_name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 983 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 984 | ret = board->enable(board->vendor_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 985 | if (ret) |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 986 | printf("FAILED!\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 987 | else |
| 988 | printf("OK.\n"); |
| 989 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 990 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 991 | return ret; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 992 | } |