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 | b0d0f63 | 2009-06-09 18:29:30 +0000 | [diff] [blame] | 300 | * Suited for EPoX EP-8K5A2 and Albatron PM266A. |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 301 | */ |
| 302 | static int board_epox_ep_8k5a2(const char *name) |
| 303 | { |
| 304 | struct pci_dev *dev; |
| 305 | |
| 306 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 307 | if (!dev) { |
| 308 | fprintf(stderr, "\nERROR: VT8235 ISA bridge not found.\n"); |
| 309 | return -1; |
| 310 | } |
| 311 | |
| 312 | w836xx_memw_enable(0x2E); |
Luc Verhaegen | 9786608 | 2008-02-09 02:03:06 +0000 | [diff] [blame] | 313 | |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | /** |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 318 | * Suited for ASUS P5A. |
| 319 | * |
| 320 | * This is rather nasty code, but there's no way to do this cleanly. |
| 321 | * We're basically talking to some unknown device on SMBus, my guess |
| 322 | * is that it is the Winbond W83781D that lives near the DIP BIOS. |
| 323 | */ |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 324 | static int board_asus_p5a(const char *name) |
| 325 | { |
| 326 | uint8_t tmp; |
| 327 | int i; |
| 328 | |
| 329 | #define ASUSP5A_LOOP 5000 |
| 330 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 331 | OUTB(0x00, 0xE807); |
| 332 | OUTB(0xEF, 0xE803); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 333 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 334 | OUTB(0xFF, 0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 335 | |
| 336 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 337 | OUTB(0xE1, 0xFF); |
| 338 | if (INB(0xE800) & 0x04) |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 339 | break; |
| 340 | } |
| 341 | |
| 342 | if (i == ASUSP5A_LOOP) { |
| 343 | printf("%s: Unable to contact device.\n", name); |
| 344 | return -1; |
| 345 | } |
| 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 read device.\n", name); |
| 360 | return -1; |
| 361 | } |
| 362 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 363 | tmp = INB(0xE804); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 364 | tmp &= ~0x02; |
| 365 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 366 | OUTB(0x00, 0xE807); |
| 367 | OUTB(0xEE, 0xE803); |
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(tmp, 0xE804); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 370 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 371 | OUTB(0xFF, 0xE800); |
| 372 | OUTB(0xE1, 0xFF); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 373 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 374 | OUTB(0x20, 0xE801); |
| 375 | OUTB(0x20, 0xE1); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 376 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 377 | OUTB(0xFF, 0xE802); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 378 | |
| 379 | for (i = 0; i < ASUSP5A_LOOP; i++) { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 380 | tmp = INB(0xE800); |
Luc Verhaegen | 6b14175 | 2007-05-20 16:16:13 +0000 | [diff] [blame] | 381 | if (tmp & 0x70) |
| 382 | break; |
| 383 | } |
| 384 | |
| 385 | if ((i == ASUSP5A_LOOP) || !(tmp & 0x10)) { |
| 386 | printf("%s: failed to write to device.\n", name); |
| 387 | return -1; |
| 388 | } |
| 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
Stefan Reinauer | 1c283f4 | 2007-06-05 12:51:52 +0000 | [diff] [blame] | 393 | static int board_ibm_x3455(const char *name) |
| 394 | { |
Uwe Hermann | e823ee0 | 2007-06-05 15:02:18 +0000 | [diff] [blame] | 395 | /* Set GPIO lines in the Broadcom HT-1000 southbridge. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 396 | /* It's not a superio but it uses the same index/data port method. */ |
| 397 | sio_mask(0xcd6, 0x45, 0x20, 0x20); |
Stefan Reinauer | 1c283f4 | 2007-06-05 12:51:52 +0000 | [diff] [blame] | 398 | |
| 399 | return 0; |
| 400 | } |
| 401 | |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 402 | /** |
| 403 | * Suited for the Gigabyte GA-K8N-SLI: CK804 southbridge. |
| 404 | */ |
| 405 | static int board_ga_k8n_sli(const char *name) |
| 406 | { |
| 407 | struct pci_dev *dev; |
| 408 | uint32_t base; |
| 409 | uint8_t tmp; |
| 410 | |
| 411 | dev = pci_dev_find(0x10DE, 0x0050); /* NVIDIA CK804 LPC */ |
| 412 | if (!dev) { |
| 413 | fprintf(stderr, "\nERROR: NVIDIA LPC bridge not found.\n"); |
| 414 | return -1; |
| 415 | } |
| 416 | |
| 417 | base = pci_read_long(dev, 0x64) & 0x0000FF00; /* System control area */ |
| 418 | |
| 419 | /* if anyone knows more about nvidia lpcs, feel free to explain this */ |
Idwer Vollering | fe72cfa | 2009-06-03 16:41:11 +0000 | [diff] [blame] | 420 | tmp = INB(base + 0xE1); |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 421 | tmp |= 0x05; |
Idwer Vollering | fe72cfa | 2009-06-03 16:41:11 +0000 | [diff] [blame] | 422 | OUTB(tmp, base + 0xE1); |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 423 | |
| 424 | return 0; |
| 425 | } |
| 426 | |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 427 | static int board_hp_dl145_g3_enable(const char *name) |
| 428 | { |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 429 | /* Set GPIO lines in the Broadcom HT-1000 southbridge. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 430 | /* GPIO 0 reg from PM regs */ |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 431 | /* 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] | 432 | /* It's not a superio but it uses the same index/data port method. */ |
| 433 | sio_mask(0xcd6, 0x44, 0x24, 0x24); |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 434 | |
| 435 | return 0; |
| 436 | } |
| 437 | |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 438 | /** |
| 439 | * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards. |
| 440 | */ |
| 441 | static int board_epox_ep_bx3(const char *name) |
| 442 | { |
| 443 | uint8_t tmp; |
| 444 | |
| 445 | /* Raise GPIO22. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 446 | tmp = INB(0x4036); |
| 447 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 448 | |
| 449 | tmp |= 0x40; |
| 450 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 451 | OUTB(tmp, 0x4036); |
| 452 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 453 | |
| 454 | return 0; |
| 455 | } |
| 456 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 457 | /** |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 458 | * Suited for Acorp 6A815EPD. |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 459 | */ |
| 460 | static int board_acorp_6a815epd(const char *name) |
| 461 | { |
| 462 | struct pci_dev *dev; |
| 463 | uint16_t port; |
| 464 | uint8_t val; |
| 465 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 466 | dev = pci_dev_find(0x8086, 0x2440); /* Intel ICH2 LPC */ |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 467 | if (!dev) { |
| 468 | fprintf(stderr, "\nERROR: ICH2 LPC bridge not found.\n"); |
| 469 | return -1; |
| 470 | } |
| 471 | |
| 472 | /* Use GPIOBASE register to find where the GPIO is mapped. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 473 | port = (pci_read_word(dev, 0x58) & 0xFFC0) + 0xE; |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 474 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 475 | val = INB(port); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 476 | val |= 0x80; /* Top Block Lock -- pin 8 of PLCC32 */ |
| 477 | val |= 0x40; /* Lower Blocks Lock -- pin 7 of PLCC32 */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 478 | OUTB(val, port); |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 479 | |
| 480 | return 0; |
| 481 | } |
| 482 | |
| 483 | /** |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 484 | * Suited for Artec Group DBE61 and DBE62. |
| 485 | */ |
| 486 | static int board_artecgroup_dbe6x(const char *name) |
| 487 | { |
| 488 | #define DBE6x_MSR_DIVIL_BALL_OPTS 0x51400015 |
| 489 | #define DBE6x_PRI_BOOT_LOC_SHIFT (2) |
| 490 | #define DBE6x_BOOT_OP_LATCHED_SHIFT (8) |
| 491 | #define DBE6x_SEC_BOOT_LOC_SHIFT (10) |
| 492 | #define DBE6x_PRI_BOOT_LOC (3 << DBE6x_PRI_BOOT_LOC_SHIFT) |
| 493 | #define DBE6x_BOOT_OP_LATCHED (3 << DBE6x_BOOT_OP_LATCHED_SHIFT) |
| 494 | #define DBE6x_SEC_BOOT_LOC (3 << DBE6x_SEC_BOOT_LOC_SHIFT) |
| 495 | #define DBE6x_BOOT_LOC_FLASH (2) |
| 496 | #define DBE6x_BOOT_LOC_FWHUB (3) |
| 497 | |
| 498 | unsigned long msr[2]; |
| 499 | int msr_fd; |
| 500 | unsigned long boot_loc; |
| 501 | |
| 502 | msr_fd = open("/dev/cpu/0/msr", O_RDWR); |
| 503 | if (msr_fd == -1) { |
| 504 | perror("open /dev/cpu/0/msr"); |
| 505 | return -1; |
| 506 | } |
| 507 | |
| 508 | if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) { |
| 509 | perror("lseek"); |
| 510 | close(msr_fd); |
| 511 | return -1; |
| 512 | } |
| 513 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 514 | if (read(msr_fd, (void *)msr, 8) != 8) { |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 515 | perror("read"); |
| 516 | close(msr_fd); |
| 517 | return -1; |
| 518 | } |
| 519 | |
| 520 | if ((msr[0] & (DBE6x_BOOT_OP_LATCHED)) == |
| 521 | (DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT)) |
| 522 | boot_loc = DBE6x_BOOT_LOC_FWHUB; |
| 523 | else |
| 524 | boot_loc = DBE6x_BOOT_LOC_FLASH; |
| 525 | |
| 526 | msr[0] &= ~(DBE6x_PRI_BOOT_LOC | DBE6x_SEC_BOOT_LOC); |
| 527 | msr[0] |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 528 | (boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT)); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 529 | |
| 530 | if (lseek(msr_fd, DBE6x_MSR_DIVIL_BALL_OPTS, SEEK_SET) == -1) { |
| 531 | perror("lseek"); |
| 532 | close(msr_fd); |
| 533 | return -1; |
| 534 | } |
| 535 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 536 | if (write(msr_fd, (void *)msr, 8) != 8) { |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 537 | perror("write"); |
| 538 | close(msr_fd); |
| 539 | return -1; |
| 540 | } |
| 541 | |
| 542 | close(msr_fd); |
| 543 | return 0; |
| 544 | } |
| 545 | |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 546 | /** |
| 547 | * Set the specified GPIO on the specified ICHx southbridge to high. |
| 548 | * |
| 549 | * @param name The name of this board. |
| 550 | * @param ich_vendor PCI vendor ID of the specified ICHx southbridge. |
| 551 | * @param ich_device PCI device ID of the specified ICHx southbridge. |
| 552 | * @param gpiobase_reg GPIOBASE register offset in the LPC bridge. |
| 553 | * @param gp_lvl Offset of GP_LVL register in I/O space, relative to GPIOBASE. |
| 554 | * @param gp_lvl_bitmask GP_LVL bitmask (set GPIO bits to 1, all others to 0). |
| 555 | * @param gpio_bit The bit (GPIO) which shall be set to high. |
| 556 | * @return If the write-enable was successful return 0, otherwise return -1. |
| 557 | */ |
| 558 | static int ich_gpio_raise(const char *name, uint16_t ich_vendor, |
| 559 | uint16_t ich_device, uint8_t gpiobase_reg, |
| 560 | uint8_t gp_lvl, uint32_t gp_lvl_bitmask, |
| 561 | unsigned int gpio_bit) |
| 562 | { |
| 563 | struct pci_dev *dev; |
| 564 | uint16_t gpiobar; |
| 565 | uint32_t reg32; |
| 566 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 567 | dev = pci_dev_find(ich_vendor, ich_device); /* Intel ICHx LPC */ |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 568 | if (!dev) { |
| 569 | fprintf(stderr, "\nERROR: ICHx LPC dev %4x:%4x not found.\n", |
| 570 | ich_vendor, ich_device); |
| 571 | return -1; |
| 572 | } |
| 573 | |
| 574 | /* Use GPIOBASE register to find the I/O space for GPIO. */ |
| 575 | gpiobar = pci_read_word(dev, gpiobase_reg) & gp_lvl_bitmask; |
| 576 | |
| 577 | /* Set specified GPIO to high. */ |
| 578 | reg32 = INL(gpiobar + gp_lvl); |
| 579 | reg32 |= (1 << gpio_bit); |
| 580 | OUTL(reg32, gpiobar + gp_lvl); |
| 581 | |
| 582 | return 0; |
| 583 | } |
| 584 | |
| 585 | /** |
| 586 | * Suited for ASUS P4B266. |
| 587 | */ |
| 588 | static int ich2_gpio22_raise(const char *name) |
| 589 | { |
| 590 | return ich_gpio_raise(name, 0x8086, 0x2440, 0x58, 0x0c, 0xffc0, 22); |
| 591 | } |
| 592 | |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 593 | /** |
| 594 | * Suited for MSI MS-7046. |
| 595 | */ |
| 596 | static int ich6_gpio19_raise(const char *name) |
| 597 | { |
| 598 | return ich_gpio_raise(name, 0x8086, 0x2640, 0x48, 0x0c, 0xffc0, 19); |
| 599 | } |
| 600 | |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 601 | static int board_kontron_986lcd_m(const char *name) |
| 602 | { |
| 603 | struct pci_dev *dev; |
| 604 | uint16_t gpiobar; |
| 605 | uint32_t val; |
| 606 | |
| 607 | #define ICH7_GPIO_LVL2 0x38 |
| 608 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 609 | dev = pci_dev_find(0x8086, 0x27b8); /* Intel ICH7 LPC */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 610 | if (!dev) { |
| 611 | // This will never happen on this board |
| 612 | fprintf(stderr, "\nERROR: ICH7 LPC bridge not found.\n"); |
| 613 | return -1; |
| 614 | } |
| 615 | |
| 616 | /* Use GPIOBASE register to find where the GPIO is mapped. */ |
| 617 | gpiobar = pci_read_word(dev, 0x48) & 0xfffc; |
| 618 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 619 | val = INL(gpiobar + ICH7_GPIO_LVL2); /* GP_LVL2 */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 620 | printf_debug("\nGPIOBAR=0x%04x GP_LVL: 0x%08x\n", gpiobar, val); |
| 621 | |
| 622 | /* bit 2 (0x04) = 0 #TBL --> bootblock locking = 1 |
| 623 | * bit 2 (0x04) = 1 #TBL --> bootblock locking = 0 |
| 624 | * bit 3 (0x08) = 0 #WP --> block locking = 1 |
| 625 | * bit 3 (0x08) = 1 #WP --> block locking = 0 |
| 626 | * |
| 627 | * To enable full block locking, you would do: |
| 628 | * val &= ~ ((1 << 2) | (1 << 3)); |
| 629 | */ |
| 630 | val |= (1 << 2) | (1 << 3); |
| 631 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 632 | OUTL(val, gpiobar + ICH7_GPIO_LVL2); |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 637 | /** |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 638 | * Suited for: |
| 639 | * - BioStar P4M80-M4: Intel P4 + VIA P4M800 + VT8237 |
Peter Stuge | 663f171 | 2008-06-13 01:39:45 +0000 | [diff] [blame] | 640 | * - GIGABYTE GA-7VT600: AMD K7 + VIA KT600 + VT8237 |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 641 | */ |
| 642 | static int board_biostar_p4m80_m4(const char *name) |
| 643 | { |
| 644 | /* enter IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 645 | enter_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 646 | |
| 647 | /* select right flash chip */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 648 | sio_mask(0x2e, 0x22, 0x80, 0x80); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 649 | |
| 650 | /* bit 3: flash chip write enable |
| 651 | * bit 7: map flash chip at 1MB-128K (why though? ignoring this.) |
| 652 | */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 653 | sio_mask(0x2e, 0x24, 0x04, 0x04); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 654 | |
| 655 | /* exit IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 656 | exit_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 657 | |
| 658 | return 0; |
| 659 | } |
| 660 | |
| 661 | /** |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 662 | * Winbond W83697HF Super I/O + VIA VT8235 southbridge |
| 663 | * |
| 664 | * Suited for: |
| 665 | * - MSI KT4V and KT4V-L: AMD K7 + VIA KT400 + VT8235 |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 666 | * - MSI KT4 Ultra: AMD K7 + VIA KT400 + VT8235 |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 667 | * - MSI KT3 Ultra2: AMD K7 + VIA KT333 + VT8235 |
| 668 | */ |
| 669 | static int board_msi_kt4v(const char *name) |
| 670 | { |
| 671 | struct pci_dev *dev; |
| 672 | uint8_t val; |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 673 | |
| 674 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 675 | if (!dev) { |
| 676 | fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n"); |
| 677 | return -1; |
| 678 | } |
| 679 | |
| 680 | val = pci_read_byte(dev, 0x59); |
| 681 | val &= 0x0c; |
| 682 | pci_write_byte(dev, 0x59, val); |
| 683 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 684 | vt823x_gpio_set(dev, 12, 1); |
| 685 | w836xx_memw_enable(0x2E); |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 686 | |
| 687 | return 0; |
| 688 | } |
| 689 | |
| 690 | /** |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 691 | * Suited for Soyo SY-7VCA: Pro133A + VT82C686. |
| 692 | */ |
| 693 | static int board_soyo_sy_7vca(const char *name) |
| 694 | { |
| 695 | struct pci_dev *dev; |
| 696 | uint32_t base; |
| 697 | uint8_t tmp; |
| 698 | |
| 699 | /* VT82C686 Power management */ |
| 700 | dev = pci_dev_find(0x1106, 0x3057); |
| 701 | if (!dev) { |
| 702 | fprintf(stderr, "\nERROR: VT82C686 PM device not found.\n"); |
| 703 | return -1; |
| 704 | } |
| 705 | |
| 706 | /* GPO0 output from PM IO base + 0x4C */ |
| 707 | tmp = pci_read_byte(dev, 0x54); |
| 708 | tmp &= ~0x03; |
| 709 | pci_write_byte(dev, 0x54, tmp); |
| 710 | |
| 711 | /* PM IO base */ |
| 712 | base = pci_read_long(dev, 0x48) & 0x0000FF00; |
| 713 | |
| 714 | /* Drop GPO0 */ |
| 715 | tmp = INB(base + 0x4C); |
| 716 | tmp &= ~0x01; |
| 717 | OUTB(tmp, base + 0x4C); |
| 718 | |
| 719 | return 0; |
| 720 | } |
| 721 | |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 722 | static int it8705f_write_enable(uint8_t port, const char *name) |
| 723 | { |
| 724 | enter_conf_mode_ite(port); |
| 725 | sio_mask(port, 0x24, 0x04, 0x04); /* Flash ROM I/F Writes Enable */ |
| 726 | exit_conf_mode_ite(port); |
| 727 | |
| 728 | return 0; |
| 729 | } |
| 730 | |
| 731 | /** |
Uwe Hermann | 5ab8889 | 2009-06-21 20:50:22 +0000 | [diff] [blame] | 732 | * Suited for: |
| 733 | * - Shuttle AK38N: VIA KT333CF + VIA VT8235 + ITE IT8705F |
| 734 | * - Elitegroup K7VTA3: VIA Apollo KT266/A/333 + VIA VT8235 + ITE IT8705F |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 735 | */ |
| 736 | static int it8705f_write_enable_2e(const char *name) |
| 737 | { |
| 738 | return it8705f_write_enable(0x2e, name); |
| 739 | } |
| 740 | |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 741 | /** |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 742 | * Find the runtime registers of an SMSC Super I/O, after verifying its |
| 743 | * chip ID. |
| 744 | * |
| 745 | * Returns the base port of the runtime register block, or 0 on error. |
| 746 | */ |
| 747 | static uint16_t smsc_find_runtime(uint16_t sio_port, uint16_t chip_id, |
| 748 | uint8_t logical_device) |
| 749 | { |
| 750 | uint16_t rt_port = 0; |
| 751 | |
| 752 | /* Verify the chip ID. */ |
| 753 | OUTB(0x55, sio_port); /* enable configuration */ |
| 754 | if (sio_read(sio_port, 0x20) != chip_id) { |
| 755 | fprintf(stderr, "\nERROR: SMSC super I/O not found.\n"); |
| 756 | goto out; |
| 757 | } |
| 758 | |
| 759 | /* If the runtime block is active, get its address. */ |
| 760 | sio_write(sio_port, 0x07, logical_device); |
| 761 | if (sio_read(sio_port, 0x30) & 1) { |
| 762 | rt_port = (sio_read(sio_port, 0x60) << 8) |
| 763 | | sio_read(sio_port, 0x61); |
| 764 | } |
| 765 | |
| 766 | if (rt_port == 0) { |
| 767 | fprintf(stderr, "\nERROR: " |
| 768 | "Super I/O runtime interface not available.\n"); |
| 769 | } |
| 770 | out: |
| 771 | OUTB(0xaa, sio_port); /* disable configuration */ |
| 772 | return rt_port; |
| 773 | } |
| 774 | |
| 775 | /** |
| 776 | * Disable write protection on the Mitac 6513WU. WP# on the FWH is |
| 777 | * connected to GP30 on the Super I/O, and TBL# is always high. |
| 778 | */ |
| 779 | static int board_mitac_6513wu(const char *name) |
| 780 | { |
| 781 | struct pci_dev *dev; |
| 782 | uint16_t rt_port; |
| 783 | uint8_t val; |
| 784 | |
| 785 | dev = pci_dev_find(0x8086, 0x2410); /* Intel 82801AA ISA bridge */ |
| 786 | if (!dev) { |
| 787 | fprintf(stderr, "\nERROR: Intel 82801AA ISA bridge not found.\n"); |
| 788 | return -1; |
| 789 | } |
| 790 | |
| 791 | rt_port = smsc_find_runtime(0x4e, 0x54, 0xa); |
| 792 | if (rt_port == 0) |
| 793 | return -1; |
| 794 | |
| 795 | /* Configure the GPIO pin. */ |
| 796 | val = INB(rt_port + 0x33); /* GP30 config */ |
| 797 | val &= ~0x87; /* output, non-inverted, GPIO, push/pull */ |
| 798 | OUTB(val, rt_port + 0x33); |
| 799 | |
| 800 | /* Disable write protection. */ |
| 801 | val = INB(rt_port + 0x4d); /* GP3 values */ |
| 802 | val |= 0x01; /* set GP30 high */ |
| 803 | OUTB(val, rt_port + 0x4d); |
| 804 | |
| 805 | return 0; |
| 806 | } |
| 807 | |
| 808 | /** |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 809 | * We use 2 sets of IDs here, you're free to choose which is which. This |
| 810 | * is to provide a very high degree of certainty when matching a board on |
| 811 | * the basis of subsystem/card IDs. As not every vendor handles |
| 812 | * subsystem/card IDs in a sane manner. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 813 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 814 | * Keep the second set NULLed if it should be ignored. Keep the subsystem IDs |
| 815 | * NULLed if they don't identify the board fully. But please take care to |
| 816 | * provide an as complete set of pci ids as possible; autodetection is the |
| 817 | * 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] | 818 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 819 | * The coreboot ids are used two fold. When running with a coreboot firmware, |
| 820 | * the ids uniquely matches the coreboot board identification string. When a |
| 821 | * legacy bios is installed and when autodetection is not possible, these ids |
| 822 | * can be used to identify the board through the -m command line argument. |
| 823 | * |
| 824 | * When a board is identified through its coreboot ids (in both cases), the |
| 825 | * main pci ids are still required to match, as a safeguard. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 826 | */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 827 | |
Uwe Hermann | deeebe2 | 2009-05-08 16:23:34 +0000 | [diff] [blame] | 828 | /* Please keep this list alphabetically ordered by vendor/board name. */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 829 | struct board_pciid_enable board_pciid_enables[] = { |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 830 | /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */ |
| 831 | {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] | 832 | {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] | 833 | {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] | 834 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x}, |
| 835 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x}, |
| 836 | {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8-MX SE", board_asus_a7v8x_mx}, |
| 837 | {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, "ASUS", "P4B266", ich2_gpio22_raise}, |
| 838 | {0x10B9, 0x1541, 0, 0, 0x10B9, 0x1533, 0, 0, "asus", "p5a", "ASUS", "P5A", board_asus_p5a}, |
| 839 | {0x1106, 0x3149, 0x1565, 0x3206, 0x1106, 0x3344, 0x1565, 0x1202, NULL, NULL, "BioStar", "P4M80-M4", board_biostar_p4m80_m4}, |
Uwe Hermann | 5ab8889 | 2009-06-21 20:50:22 +0000 | [diff] [blame] | 840 | {0x1106, 0x3038, 0x1019, 0x0996, 0x1106, 0x3177, 0x1019, 0x0996, NULL, NULL, "Elitegroup", "K7VTA3", it8705f_write_enable_2e}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 841 | {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, "EPoX", "EP-8K5A2", board_epox_ep_8k5a2}, |
| 842 | {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, "epox", "ep-bx3", "EPoX", "EP-BX3", board_epox_ep_bx3}, |
| 843 | {0x1039, 0x0761, 0, 0, 0, 0, 0, 0, "gigabyte", "2761gxdk", "GIGABYTE", "GA-2761GXDK", it87xx_probe_spi_flash}, |
| 844 | {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] | 845 | {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] | 846 | {0x10de, 0x0360, 0, 0, 0, 0, 0, 0, "gigabyte", "m57sli", "GIGABYTE", "GA-M57SLI-S4", it87xx_probe_spi_flash}, |
| 847 | {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] | 848 | {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb000, NULL, NULL, "GIGABYTE", "GA-MA78G-DS3H", it87xx_probe_spi_flash}, |
| 849 | {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] | 850 | /* 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] | 851 | {0x1002, 0x438d, 0x1458, 0x5001, 0x1002, 0x5956, 0x1002, 0x5956, "gigabyte", "ma790fx-dq6", "GIGABYTE", "GA-MA790FX-DQ6", it87xx_probe_spi_flash}, |
| 852 | {0x1166, 0x0223, 0x103c, 0x320d, 0x102b, 0x0522, 0x103c, 0x31fa, "hp", "dl145_g3", "HP", "DL145 G3", board_hp_dl145_g3_enable}, |
| 853 | {0x1166, 0x0205, 0x1014, 0x0347, 0, 0, 0, 0, "ibm", "x3455", "IBM", "x3455", board_ibm_x3455}, |
| 854 | {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, "Intel", "D201GLY", wbsio_check_for_spi}, |
| 855 | {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, "iwill", "dk8_htx", "IWILL", "DK8-HTX", w83627hf_gpio24_raise_2e}, |
| 856 | /* Note: There are >= 2 version of the Kontron 986LCD-M/mITX! */ |
| 857 | {0x8086, 0x27b8, 0, 0, 0, 0, 0, 0, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m}, |
| 858 | {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] | 859 | {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] | 860 | {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] | 861 | {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, NULL, NULL, "MSI", "MS-6702E (K8T Neo2-F)",w83627thf_gpio4_4_raise_2e}, |
| 862 | {0x1106, 0x0571, 0x1462, 0x7120, 0, 0, 0, 0, "msi", "kt4v", "MSI", "MS-6712 (KT4V)", board_msi_kt4v}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 863 | {0x8086, 0x2658, 0x1462, 0x7046, 0x1106, 0x3044, 0x1462, 0x046d, NULL, NULL, "MSI", "MS-7046", ich6_gpio19_raise}, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 864 | {0x10de, 0x005e, 0, 0, 0, 0, 0, 0, "msi", "k8n-neo3", "MSI", "MS-7135 (K8N Neo3)", w83627thf_gpio4_4_raise_4e}, |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 865 | {0x1106, 0x3104, 0x1297, 0xa238, 0x1106, 0x3059, 0x1297, 0xc063, NULL, NULL, "Shuttle", "AK38N", it8705f_write_enable_2e}, |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 866 | {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] | 867 | {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, "Tyan", "S2498 (Tomcat K7M)", board_asus_a7v8x_mx}, |
| 868 | {0x1106, 0x0314, 0x1106, 0xaa08, 0x1106, 0x3227, 0x1106, 0xAA08, NULL, NULL, "VIA", "EPIA-CN", board_via_epia_sp}, |
| 869 | {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] | 870 | {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] | 871 | {0x1106, 0x3227, 0x1106, 0xAA01, 0x1106, 0x0259, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA SP", board_via_epia_sp}, |
| 872 | {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] | 873 | |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 874 | { 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] | 875 | }; |
| 876 | |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 877 | /* Please keep this list alphabetically ordered by vendor/board. */ |
| 878 | const struct board_info boards_ok[] = { |
| 879 | /* Verified working boards that don't need write-enables. */ |
| 880 | { "Abit", "AX8", }, |
| 881 | { "Advantech", "PCM-5820", }, |
| 882 | { "ASI", "MB-5BLMP", }, |
Uwe Hermann | 24bd1bd | 2009-06-18 18:25:39 +0000 | [diff] [blame] | 883 | { "ASRock", "A770CrossFire", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 884 | { "ASUS", "A7N8X Deluxe", }, |
| 885 | { "ASUS", "A7N8X-E Deluxe", }, |
| 886 | { "ASUS", "A7V400-MX", }, |
| 887 | { "ASUS", "A7V8X-MX", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 888 | { "ASUS", "A8N-E", }, |
| 889 | { "ASUS", "A8NE-FM/S", }, |
Uwe Hermann | 265c838 | 2009-06-02 13:39:42 +0000 | [diff] [blame] | 890 | { "ASUS", "A8N-SLI", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 891 | { "ASUS", "A8N-SLI Premium", }, |
| 892 | { "ASUS", "A8V-E Deluxe", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 893 | { "ASUS", "A8V-E SE", }, |
| 894 | { "ASUS", "M2A-MX", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 895 | { "ASUS", "M2A-VM", }, |
| 896 | { "ASUS", "M2N-E", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 897 | { "ASUS", "M2V", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 898 | { "ASUS", "P2B", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 899 | { "ASUS", "P2B-D", }, |
| 900 | { "ASUS", "P2B-DS", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 901 | { "ASUS", "P2B-F", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 902 | { "ASUS", "P2L97-S", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 903 | { "ASUS", "P5B-Deluxe", }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 904 | { "ASUS", "P5KC", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 905 | { "ASUS", "P6T Deluxe V2", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 906 | { "A-Trend", "ATC-6220", }, |
| 907 | { "BCOM", "WinNET100", }, |
| 908 | { "GIGABYTE", "GA-6BXC", }, |
| 909 | { "GIGABYTE", "GA-6BXDU", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 910 | { "GIGABYTE", "GA-6ZMA", }, |
Uwe Hermann | bca6aa1 | 2009-06-22 01:37:06 +0000 | [diff] [blame] | 911 | { "GIGABYTE", "GA-7ZM", }, |
Uwe Hermann | dd2e14c | 2009-06-23 20:27:33 +0000 | [diff] [blame] | 912 | { "GIGABYTE", "GA-EP35-DS3L", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 913 | { "Intel", "EP80759", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 914 | { "Jetway", "J7F4K1G5D-PB", }, |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 915 | { "MSI", "MS-6570 (K7N2)", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 916 | { "MSI", "MS-7065", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 917 | { "MSI", "MS-7168 (Orion)", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 918 | { "MSI", "MS-7236 (945PL Neo3)", }, |
Uwe Hermann | 265c838 | 2009-06-02 13:39:42 +0000 | [diff] [blame] | 919 | { "MSI", "MS-7255 (P4M890M)", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 920 | { "MSI", "MS-7345 (P35 Neo2-FIR)", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 921 | { "NEC", "PowerMate 2000", }, |
| 922 | { "PC Engines", "Alix.1c", }, |
| 923 | { "PC Engines", "Alix.2c2", }, |
| 924 | { "PC Engines", "Alix.2c3", }, |
| 925 | { "PC Engines", "Alix.3c3", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 926 | { "PC Engines", "Alix.3d3", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 927 | { "RCA", "RM4100", }, |
| 928 | { "Sun", "Blade x6250", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 929 | { "Supermicro", "H8QC8", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 930 | { "Thomson", "IP1000", }, |
| 931 | { "T-Online", "S-100", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 932 | { "Tyan", "iS5375-1U", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 933 | { "Tyan", "S1846", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 934 | { "Tyan", "S2881", }, |
| 935 | { "Tyan", "S2882", }, |
| 936 | { "Tyan", "S2882-D", }, |
Uwe Hermann | e615e51 | 2009-05-18 15:31:10 +0000 | [diff] [blame] | 937 | { "Tyan", "S2891", }, |
| 938 | { "Tyan", "S2892", }, |
| 939 | { "Tyan", "S2895", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 940 | { "Tyan", "S3095", }, |
| 941 | { "Tyan", "S5180", }, |
| 942 | { "Tyan", "S5191", }, |
| 943 | { "Tyan", "S5197", }, |
| 944 | { "Tyan", "S5211", }, |
| 945 | { "Tyan", "S5211-1U", }, |
| 946 | { "Tyan", "S5220", }, |
| 947 | { "Tyan", "S5375", }, |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 948 | { "Tyan", "S5376G2NR/S5376WAG2NR", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 949 | { "Tyan", "S5377", }, |
| 950 | { "Tyan", "S5397", }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 951 | { "VIA", "EPIA-EX15000G", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 952 | { "VIA", "EPIA-LN", }, |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 953 | { "VIA", "EPIA-NX15000G", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 954 | { "VIA", "NAB74X0", }, |
| 955 | { "VIA", "pc2500e", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 956 | { "VIA", "VB700X", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 957 | |
| 958 | {}, |
| 959 | }; |
| 960 | |
| 961 | /* Please keep this list alphabetically ordered by vendor/board. */ |
| 962 | const struct board_info boards_bad[] = { |
| 963 | /* Verified non-working boards (for now). */ |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 964 | { "Abit", "IS-10", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 965 | { "ASUS", "M3N78 Pro", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 966 | { "ASUS", "MEW-AM", }, |
| 967 | { "ASUS", "MEW-VM", }, |
| 968 | { "ASUS", "P3B-F", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 969 | { "ASUS", "P5B", }, |
| 970 | { "ASUS", "P5BV-M", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 971 | { "Biostar", "M6TBA", }, |
Uwe Hermann | 690bcba | 2009-05-21 17:11:25 +0000 | [diff] [blame] | 972 | { "Boser", "HS-6637", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 973 | { "DFI", "855GME-MGF", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 974 | { "FIC", "VA-502", }, |
Uwe Hermann | 50d3f3e | 2009-05-28 00:00:23 +0000 | [diff] [blame] | 975 | { "MSI", "MS-6178", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 976 | { "MSI", "MS-7260 (K9N Neo)", }, |
| 977 | { "PCCHIPS", "M537DMA33", }, |
| 978 | { "Soyo", "SY-5VD", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 979 | { "Sun", "Fire x4150", }, |
| 980 | { "Sun", "Fire x4200", }, |
Uwe Hermann | 65287d9 | 2009-06-04 19:25:54 +0000 | [diff] [blame] | 981 | { "Sun", "Fire x4540", }, |
Uwe Hermann | 05fab75 | 2009-05-16 23:42:17 +0000 | [diff] [blame] | 982 | { "Sun", "Fire x4600", }, |
| 983 | |
| 984 | {}, |
| 985 | }; |
| 986 | |
Uwe Hermann | e1aa75e | 2009-06-18 14:04:44 +0000 | [diff] [blame] | 987 | /* Please keep this list alphabetically ordered by vendor/board. */ |
| 988 | const struct board_info laptops_ok[] = { |
| 989 | /* Verified working laptops. */ |
| 990 | { "Lenovo", "3000 V100 TF05Cxx", }, |
| 991 | |
| 992 | {}, |
| 993 | }; |
| 994 | |
| 995 | /* Please keep this list alphabetically ordered by vendor/board. */ |
| 996 | const struct board_info laptops_bad[] = { |
Uwe Hermann | 0b0cc16 | 2009-06-19 19:00:48 +0000 | [diff] [blame] | 997 | /* Verified non-working laptops (for now). */ |
Uwe Hermann | e1aa75e | 2009-06-18 14:04:44 +0000 | [diff] [blame] | 998 | { "Acer", "Aspire One", }, |
| 999 | { "Dell", "Latitude CPi A366XT", }, |
Uwe Hermann | 24bd1bd | 2009-06-18 18:25:39 +0000 | [diff] [blame] | 1000 | { "HP/Compaq", "nx9010", }, |
Uwe Hermann | e1aa75e | 2009-06-18 14:04:44 +0000 | [diff] [blame] | 1001 | { "IBM/Lenovo", "Thinkpad T40p", }, |
| 1002 | { "IBM/Lenovo", "240", }, |
| 1003 | |
| 1004 | {}, |
| 1005 | }; |
| 1006 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1007 | /** |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 1008 | * Match boards on coreboot table gathered vendor and part name. |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1009 | * Require main PCI IDs to match too as extra safety. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1010 | */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1011 | static struct board_pciid_enable *board_match_coreboot_name(const char *vendor, |
| 1012 | const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1013 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1014 | struct board_pciid_enable *board = board_pciid_enables; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1015 | struct board_pciid_enable *partmatch = NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1016 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1017 | for (; board->vendor_name; board++) { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1018 | if (vendor && (!board->lb_vendor |
| 1019 | || strcasecmp(board->lb_vendor, vendor))) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1020 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1021 | |
Peter Stuge | 0b9c5f3 | 2008-07-02 00:47:30 +0000 | [diff] [blame] | 1022 | if (!board->lb_part || strcasecmp(board->lb_part, part)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1023 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1024 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1025 | if (!pci_dev_find(board->first_vendor, board->first_device)) |
| 1026 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1027 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1028 | if (board->second_vendor && |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1029 | !pci_dev_find(board->second_vendor, board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1030 | continue; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1031 | |
| 1032 | if (vendor) |
| 1033 | return board; |
| 1034 | |
| 1035 | if (partmatch) { |
| 1036 | /* a second entry has a matching part name */ |
| 1037 | printf("AMBIGUOUS BOARD NAME: %s\n", part); |
| 1038 | printf("At least vendors '%s' and '%s' match.\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1039 | partmatch->lb_vendor, board->lb_vendor); |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1040 | printf("Please use the full -m vendor:part syntax.\n"); |
| 1041 | return NULL; |
| 1042 | } |
| 1043 | partmatch = board; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1044 | } |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1045 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1046 | if (partmatch) |
| 1047 | return partmatch; |
| 1048 | |
Peter Stuge | 00019d9 | 2008-07-02 00:59:29 +0000 | [diff] [blame] | 1049 | 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] | 1050 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1051 | } |
| 1052 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1053 | /** |
| 1054 | * Match boards on PCI IDs and subsystem IDs. |
| 1055 | * Second set of IDs can be main only or missing completely. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1056 | */ |
| 1057 | static struct board_pciid_enable *board_match_pci_card_ids(void) |
| 1058 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1059 | struct board_pciid_enable *board = board_pciid_enables; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1060 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1061 | for (; board->vendor_name; board++) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1062 | if (!board->first_card_vendor || !board->first_card_device) |
| 1063 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1064 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1065 | if (!pci_card_find(board->first_vendor, board->first_device, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1066 | board->first_card_vendor, |
| 1067 | board->first_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1068 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1069 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1070 | if (board->second_vendor) { |
| 1071 | if (board->second_card_vendor) { |
| 1072 | if (!pci_card_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1073 | board->second_device, |
| 1074 | board->second_card_vendor, |
| 1075 | board->second_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1076 | continue; |
| 1077 | } else { |
| 1078 | if (!pci_dev_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1079 | board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1080 | continue; |
| 1081 | } |
| 1082 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1083 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1084 | return board; |
| 1085 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1086 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1087 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1088 | } |
| 1089 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1090 | int board_flash_enable(const char *vendor, const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1091 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1092 | struct board_pciid_enable *board = NULL; |
| 1093 | int ret = 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1094 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1095 | if (part) |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 1096 | board = board_match_coreboot_name(vendor, part); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1097 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1098 | if (!board) |
| 1099 | board = board_match_pci_card_ids(); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1100 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1101 | if (board) { |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1102 | printf("Found board \"%s %s\", enabling flash write... ", |
| 1103 | board->vendor_name, board->board_name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1104 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1105 | ret = board->enable(board->vendor_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1106 | if (ret) |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 1107 | printf("FAILED!\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1108 | else |
| 1109 | printf("OK.\n"); |
| 1110 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1111 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1112 | return ret; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1113 | } |