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 | /** |
Uwe Hermann | 04d5dc4 | 2009-07-03 17:12:05 +0000 | [diff] [blame] | 300 | * Suited for EPoX EP-8K5A2 and Albatron PM266A Pro. |
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. */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 396 | /* It's not a Super I/O but it uses the same index/data port method. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 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 | /** |
Luc Verhaegen | 20fdce1 | 2009-10-21 12:05:50 +0000 | [diff] [blame] | 403 | * Suited for Shuttle FN25 (SN25P): AMD S939 + Nvidia CK804 (nForce4). |
| 404 | */ |
| 405 | static int board_shuttle_fn25(const char *name) |
| 406 | { |
| 407 | struct pci_dev *dev; |
| 408 | |
| 409 | dev = pci_dev_find(0x10DE, 0x0050); /* NVIDIA CK804 ISA Bridge. */ |
| 410 | if (!dev) { |
| 411 | fprintf(stderr, |
| 412 | "\nERROR: NVIDIA nForce4 ISA bridge not found.\n"); |
| 413 | return -1; |
| 414 | } |
| 415 | |
| 416 | /* one of those bits seems to be connected to TBL#, but -ENOINFO. */ |
| 417 | pci_write_byte(dev, 0x92, 0); |
| 418 | |
| 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | /** |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 423 | * No docs, so we are just guessing that these might be individual gpio lines. |
| 424 | */ |
| 425 | static void nvidia_mcp_gpio_raise(struct pci_dev *dev, uint8_t offset) |
| 426 | { |
| 427 | uint16_t base; |
| 428 | uint8_t tmp; |
| 429 | |
| 430 | base = pci_read_long(dev, 0x64) & 0x0000FF00; /* System control area */ |
| 431 | |
| 432 | base += 0xC0; |
| 433 | |
| 434 | /* if anyone knows more about nvidia mcps, feel free to explain this */ |
| 435 | tmp = INB(base + offset); |
| 436 | tmp &= ~0x0F; |
| 437 | tmp |= 0x05; |
| 438 | OUTB(tmp, base + offset); |
| 439 | } |
| 440 | |
| 441 | /** |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 442 | * Suited for the Gigabyte GA-K8N-SLI: CK804 southbridge. |
| 443 | */ |
| 444 | static int board_ga_k8n_sli(const char *name) |
| 445 | { |
| 446 | struct pci_dev *dev; |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 447 | |
| 448 | dev = pci_dev_find(0x10DE, 0x0050); /* NVIDIA CK804 LPC */ |
| 449 | if (!dev) { |
| 450 | fprintf(stderr, "\nERROR: NVIDIA LPC bridge not found.\n"); |
| 451 | return -1; |
| 452 | } |
| 453 | |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 454 | nvidia_mcp_gpio_raise(dev, 0x21); |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 455 | |
| 456 | return 0; |
| 457 | } |
| 458 | |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 459 | /** |
| 460 | * Suited for ASUS P5ND2-SLI Deluxe: LGA775 + nForce4 SLI + MCP04. |
| 461 | */ |
| 462 | static int board_asus_p5nd2_sli(const char *name) |
| 463 | { |
| 464 | struct pci_dev *dev; |
| 465 | |
| 466 | dev = pci_dev_find(0x10DE, 0x0030); /* NVIDIA nForce4 ISA Bridge */ |
| 467 | if (!dev) { |
| 468 | fprintf(stderr, "\nERROR: NVIDIA ISA bridge not found.\n"); |
| 469 | return -1; |
| 470 | } |
| 471 | |
| 472 | nvidia_mcp_gpio_raise(dev, 0x10); |
| 473 | |
| 474 | return 0; |
| 475 | } |
| 476 | |
Luc Verhaegen | 2c04fab | 2009-10-05 18:46:35 +0000 | [diff] [blame] | 477 | /** |
| 478 | * Suited for EPoX EP-8RDA3+: Socket A + nForce2 Ultra 400 + MCP2. |
| 479 | */ |
| 480 | static int board_epox_ep_8rda3plus(const char *name) |
| 481 | { |
| 482 | struct pci_dev *dev; |
| 483 | |
| 484 | dev = pci_dev_find(0x10DE, 0x0060); /* NVIDIA nForce2 ISA Bridge */ |
| 485 | if (!dev) { |
| 486 | fprintf(stderr, "\nERROR: NVIDIA ISA bridge not found.\n"); |
| 487 | return -1; |
| 488 | } |
| 489 | |
| 490 | nvidia_mcp_gpio_raise(dev, 0x31); |
| 491 | |
| 492 | return 0; |
| 493 | } |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 494 | |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 495 | static int board_hp_dl145_g3_enable(const char *name) |
| 496 | { |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 497 | /* Set GPIO lines in the Broadcom HT-1000 southbridge. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 498 | /* GPIO 0 reg from PM regs */ |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 499 | /* Set GPIO 2 and 5 high, connected to flash WP# and TBL# pins. */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 500 | /* It's not a Super I/O but it uses the same index/data port method. */ |
Carl-Daniel Hailfinger | 500b423 | 2009-06-01 21:30:42 +0000 | [diff] [blame] | 501 | sio_mask(0xcd6, 0x44, 0x24, 0x24); |
Mondrian Nuessle | d5df330 | 2009-03-30 13:20:01 +0000 | [diff] [blame] | 502 | |
| 503 | return 0; |
| 504 | } |
| 505 | |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 506 | /** |
| 507 | * Suited for EPoX EP-BX3, and maybe some other Intel 440BX based boards. |
| 508 | */ |
| 509 | static int board_epox_ep_bx3(const char *name) |
| 510 | { |
| 511 | uint8_t tmp; |
| 512 | |
| 513 | /* Raise GPIO22. */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 514 | tmp = INB(0x4036); |
| 515 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 516 | |
| 517 | tmp |= 0x40; |
| 518 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 519 | OUTB(tmp, 0x4036); |
| 520 | OUTB(tmp, 0xEB); |
Luc Verhaegen | fdd0c58 | 2007-08-11 16:59:11 +0000 | [diff] [blame] | 521 | |
| 522 | return 0; |
| 523 | } |
| 524 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 525 | /** |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 526 | * Suited for Acorp 6A815EPD. |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 527 | */ |
| 528 | static int board_acorp_6a815epd(const char *name) |
| 529 | { |
| 530 | struct pci_dev *dev; |
| 531 | uint16_t port; |
| 532 | uint8_t val; |
| 533 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 534 | dev = pci_dev_find(0x8086, 0x2440); /* Intel ICH2 LPC */ |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 535 | if (!dev) { |
| 536 | fprintf(stderr, "\nERROR: ICH2 LPC bridge not found.\n"); |
| 537 | return -1; |
| 538 | } |
| 539 | |
| 540 | /* Use GPIOBASE register to find where the GPIO is mapped. */ |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 541 | port = (pci_read_word(dev, 0x58) & 0xFFC0) + 0xE; |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 542 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 543 | val = INB(port); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 544 | val |= 0x80; /* Top Block Lock -- pin 8 of PLCC32 */ |
| 545 | val |= 0x40; /* Lower Blocks Lock -- pin 7 of PLCC32 */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 546 | OUTB(val, port); |
Jonathan A. Kollasch | c778556 | 2007-12-02 19:03:23 +0000 | [diff] [blame] | 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
| 551 | /** |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 552 | * Suited for Artec Group DBE61 and DBE62. |
| 553 | */ |
| 554 | static int board_artecgroup_dbe6x(const char *name) |
| 555 | { |
| 556 | #define DBE6x_MSR_DIVIL_BALL_OPTS 0x51400015 |
| 557 | #define DBE6x_PRI_BOOT_LOC_SHIFT (2) |
| 558 | #define DBE6x_BOOT_OP_LATCHED_SHIFT (8) |
| 559 | #define DBE6x_SEC_BOOT_LOC_SHIFT (10) |
| 560 | #define DBE6x_PRI_BOOT_LOC (3 << DBE6x_PRI_BOOT_LOC_SHIFT) |
| 561 | #define DBE6x_BOOT_OP_LATCHED (3 << DBE6x_BOOT_OP_LATCHED_SHIFT) |
| 562 | #define DBE6x_SEC_BOOT_LOC (3 << DBE6x_SEC_BOOT_LOC_SHIFT) |
| 563 | #define DBE6x_BOOT_LOC_FLASH (2) |
| 564 | #define DBE6x_BOOT_LOC_FWHUB (3) |
| 565 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 566 | msr_t msr; |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 567 | unsigned long boot_loc; |
| 568 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 569 | /* Geode only has a single core */ |
| 570 | if (setup_cpu_msr(0)) |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 571 | return -1; |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 572 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 573 | msr = rdmsr(DBE6x_MSR_DIVIL_BALL_OPTS); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 574 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 575 | if ((msr.lo & (DBE6x_BOOT_OP_LATCHED)) == |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 576 | (DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT)) |
| 577 | boot_loc = DBE6x_BOOT_LOC_FWHUB; |
| 578 | else |
| 579 | boot_loc = DBE6x_BOOT_LOC_FLASH; |
| 580 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 581 | msr.lo &= ~(DBE6x_PRI_BOOT_LOC | DBE6x_SEC_BOOT_LOC); |
| 582 | msr.lo |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 583 | (boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT)); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 584 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 585 | wrmsr(DBE6x_MSR_DIVIL_BALL_OPTS, msr); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 586 | |
Stefan Reinauer | b4fe664 | 2009-08-12 18:25:24 +0000 | [diff] [blame] | 587 | cleanup_cpu_msr(); |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 588 | |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 589 | return 0; |
| 590 | } |
| 591 | |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 592 | /** |
| 593 | * Set the specified GPIO on the specified ICHx southbridge to high. |
| 594 | * |
| 595 | * @param name The name of this board. |
| 596 | * @param ich_vendor PCI vendor ID of the specified ICHx southbridge. |
| 597 | * @param ich_device PCI device ID of the specified ICHx southbridge. |
| 598 | * @param gpiobase_reg GPIOBASE register offset in the LPC bridge. |
| 599 | * @param gp_lvl Offset of GP_LVL register in I/O space, relative to GPIOBASE. |
| 600 | * @param gp_lvl_bitmask GP_LVL bitmask (set GPIO bits to 1, all others to 0). |
| 601 | * @param gpio_bit The bit (GPIO) which shall be set to high. |
| 602 | * @return If the write-enable was successful return 0, otherwise return -1. |
| 603 | */ |
| 604 | static int ich_gpio_raise(const char *name, uint16_t ich_vendor, |
| 605 | uint16_t ich_device, uint8_t gpiobase_reg, |
| 606 | uint8_t gp_lvl, uint32_t gp_lvl_bitmask, |
| 607 | unsigned int gpio_bit) |
| 608 | { |
| 609 | struct pci_dev *dev; |
| 610 | uint16_t gpiobar; |
| 611 | uint32_t reg32; |
| 612 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 613 | dev = pci_dev_find(ich_vendor, ich_device); /* Intel ICHx LPC */ |
Uwe Hermann | 93f66db | 2008-05-22 21:19:38 +0000 | [diff] [blame] | 614 | if (!dev) { |
| 615 | fprintf(stderr, "\nERROR: ICHx LPC dev %4x:%4x not found.\n", |
| 616 | ich_vendor, ich_device); |
| 617 | return -1; |
| 618 | } |
| 619 | |
| 620 | /* Use GPIOBASE register to find the I/O space for GPIO. */ |
| 621 | gpiobar = pci_read_word(dev, gpiobase_reg) & gp_lvl_bitmask; |
| 622 | |
| 623 | /* Set specified GPIO to high. */ |
| 624 | reg32 = INL(gpiobar + gp_lvl); |
| 625 | reg32 |= (1 << gpio_bit); |
| 626 | OUTL(reg32, gpiobar + gp_lvl); |
| 627 | |
| 628 | return 0; |
| 629 | } |
| 630 | |
| 631 | /** |
| 632 | * Suited for ASUS P4B266. |
| 633 | */ |
| 634 | static int ich2_gpio22_raise(const char *name) |
| 635 | { |
| 636 | return ich_gpio_raise(name, 0x8086, 0x2440, 0x58, 0x0c, 0xffc0, 22); |
| 637 | } |
| 638 | |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 639 | /** |
Uwe Hermann | 14b3e1e | 2009-10-06 20:23:29 +0000 | [diff] [blame] | 640 | * Suited for the Dell PowerEdge 1850. All parameters except the last one are |
| 641 | * documented in the public Intel 82801EB ICH5 / 82801ER ICH5R datasheet. The |
| 642 | * last parameter (GPIO number) has to be in the range [16,31] according to |
| 643 | * said Intel datasheet and was found by exhaustive search. |
Carl-Daniel Hailfinger | 2912426 | 2009-09-23 02:05:12 +0000 | [diff] [blame] | 644 | */ |
| 645 | static int ich5_gpio23_raise(const char *name) |
| 646 | { |
| 647 | return ich_gpio_raise(name, 0x8086, 0x24d0, 0x58, 0x0c, 0xffc0, 23); |
| 648 | } |
| 649 | |
| 650 | /** |
Peter Stuge | 09c1333 | 2009-02-02 22:55:26 +0000 | [diff] [blame] | 651 | * Suited for MSI MS-7046. |
| 652 | */ |
| 653 | static int ich6_gpio19_raise(const char *name) |
| 654 | { |
| 655 | return ich_gpio_raise(name, 0x8086, 0x2640, 0x48, 0x0c, 0xffc0, 19); |
| 656 | } |
| 657 | |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 658 | static int board_kontron_986lcd_m(const char *name) |
| 659 | { |
| 660 | struct pci_dev *dev; |
| 661 | uint16_t gpiobar; |
| 662 | uint32_t val; |
| 663 | |
| 664 | #define ICH7_GPIO_LVL2 0x38 |
| 665 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 666 | dev = pci_dev_find(0x8086, 0x27b8); /* Intel ICH7 LPC */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 667 | if (!dev) { |
| 668 | // This will never happen on this board |
| 669 | fprintf(stderr, "\nERROR: ICH7 LPC bridge not found.\n"); |
| 670 | return -1; |
| 671 | } |
| 672 | |
| 673 | /* Use GPIOBASE register to find where the GPIO is mapped. */ |
| 674 | gpiobar = pci_read_word(dev, 0x48) & 0xfffc; |
| 675 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 676 | val = INL(gpiobar + ICH7_GPIO_LVL2); /* GP_LVL2 */ |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 677 | printf_debug("\nGPIOBAR=0x%04x GP_LVL: 0x%08x\n", gpiobar, val); |
| 678 | |
| 679 | /* bit 2 (0x04) = 0 #TBL --> bootblock locking = 1 |
| 680 | * bit 2 (0x04) = 1 #TBL --> bootblock locking = 0 |
| 681 | * bit 3 (0x08) = 0 #WP --> block locking = 1 |
| 682 | * bit 3 (0x08) = 1 #WP --> block locking = 0 |
| 683 | * |
| 684 | * To enable full block locking, you would do: |
| 685 | * val &= ~ ((1 << 2) | (1 << 3)); |
| 686 | */ |
| 687 | val |= (1 << 2) | (1 << 3); |
| 688 | |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 689 | OUTL(val, gpiobar + ICH7_GPIO_LVL2); |
Stefan Reinauer | ac37897 | 2008-03-17 22:59:40 +0000 | [diff] [blame] | 690 | |
| 691 | return 0; |
| 692 | } |
| 693 | |
Mart Raudsepp | faa62fb | 2008-02-20 11:11:18 +0000 | [diff] [blame] | 694 | /** |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 695 | * Suited for: |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 696 | * - Biostar P4M80-M4: VIA P4M800 + VT8237 + IT8705AF |
| 697 | * - GIGABYTE GA-7VT600: VIA KT600 + VT8237 + IT8705 |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 698 | */ |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 699 | static int it8705_rom_write_enable(const char *name) |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 700 | { |
| 701 | /* enter IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 702 | enter_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 703 | |
| 704 | /* select right flash chip */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 705 | sio_mask(0x2e, 0x22, 0x80, 0x80); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 706 | |
| 707 | /* bit 3: flash chip write enable |
| 708 | * bit 7: map flash chip at 1MB-128K (why though? ignoring this.) |
| 709 | */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 710 | sio_mask(0x2e, 0x24, 0x04, 0x04); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 711 | |
| 712 | /* exit IT87xx conf mode */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 713 | exit_conf_mode_ite(0x2e); |
Peter Stuge | 4aa7156 | 2008-06-11 02:22:42 +0000 | [diff] [blame] | 714 | |
| 715 | return 0; |
| 716 | } |
| 717 | |
| 718 | /** |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 719 | * Suited for AOpen vKM400Am-S: VIA KM400 + VT8237 + IT8705F. |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 720 | */ |
| 721 | static int board_aopen_vkm400(const char *name) |
| 722 | { |
| 723 | struct pci_dev *dev; |
| 724 | |
| 725 | dev = pci_dev_find(0x1106, 0x3227); /* VT8237 ISA bridge */ |
| 726 | if (!dev) { |
| 727 | fprintf(stderr, "\nERROR: VT8237 ISA bridge not found.\n"); |
| 728 | return -1; |
| 729 | } |
| 730 | |
| 731 | vt823x_set_all_writes_to_lpc(dev); |
| 732 | |
| 733 | return it8705_rom_write_enable(name); |
| 734 | } |
| 735 | |
| 736 | /** |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 737 | * Winbond W83697HF Super I/O + VIA VT8235 southbridge |
| 738 | * |
| 739 | * Suited for: |
| 740 | * - MSI KT4V and KT4V-L: AMD K7 + VIA KT400 + VT8235 |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 741 | * - MSI KT4 Ultra: AMD K7 + VIA KT400 + VT8235 |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 742 | * - MSI KT3 Ultra2: AMD K7 + VIA KT333 + VT8235 |
| 743 | */ |
| 744 | static int board_msi_kt4v(const char *name) |
| 745 | { |
| 746 | struct pci_dev *dev; |
| 747 | uint8_t val; |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 748 | |
| 749 | dev = pci_dev_find(0x1106, 0x3177); /* VT8235 ISA bridge */ |
| 750 | if (!dev) { |
| 751 | fprintf(stderr, "\nERROR: VT823x ISA bridge not found.\n"); |
| 752 | return -1; |
| 753 | } |
| 754 | |
| 755 | val = pci_read_byte(dev, 0x59); |
| 756 | val &= 0x0c; |
| 757 | pci_write_byte(dev, 0x59, val); |
| 758 | |
Luc Verhaegen | add6d9b | 2009-05-09 14:26:04 +0000 | [diff] [blame] | 759 | vt823x_gpio_set(dev, 12, 1); |
| 760 | w836xx_memw_enable(0x2E); |
Sean Nelson | b20953c | 2008-08-19 21:51:39 +0000 | [diff] [blame] | 761 | |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | /** |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 766 | * Suited for Soyo SY-7VCA: Pro133A + VT82C686. |
| 767 | */ |
| 768 | static int board_soyo_sy_7vca(const char *name) |
| 769 | { |
| 770 | struct pci_dev *dev; |
| 771 | uint32_t base; |
| 772 | uint8_t tmp; |
| 773 | |
| 774 | /* VT82C686 Power management */ |
| 775 | dev = pci_dev_find(0x1106, 0x3057); |
| 776 | if (!dev) { |
| 777 | fprintf(stderr, "\nERROR: VT82C686 PM device not found.\n"); |
| 778 | return -1; |
| 779 | } |
| 780 | |
| 781 | /* GPO0 output from PM IO base + 0x4C */ |
| 782 | tmp = pci_read_byte(dev, 0x54); |
| 783 | tmp &= ~0x03; |
| 784 | pci_write_byte(dev, 0x54, tmp); |
| 785 | |
| 786 | /* PM IO base */ |
| 787 | base = pci_read_long(dev, 0x48) & 0x0000FF00; |
| 788 | |
| 789 | /* Drop GPO0 */ |
| 790 | tmp = INB(base + 0x4C); |
| 791 | tmp &= ~0x01; |
| 792 | OUTB(tmp, base + 0x4C); |
| 793 | |
| 794 | return 0; |
| 795 | } |
| 796 | |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 797 | static int it8705f_write_enable(uint8_t port, const char *name) |
| 798 | { |
| 799 | enter_conf_mode_ite(port); |
| 800 | sio_mask(port, 0x24, 0x04, 0x04); /* Flash ROM I/F Writes Enable */ |
| 801 | exit_conf_mode_ite(port); |
| 802 | |
| 803 | return 0; |
| 804 | } |
| 805 | |
| 806 | /** |
Uwe Hermann | 5ab8889 | 2009-06-21 20:50:22 +0000 | [diff] [blame] | 807 | * Suited for: |
| 808 | * - Shuttle AK38N: VIA KT333CF + VIA VT8235 + ITE IT8705F |
| 809 | * - Elitegroup K7VTA3: VIA Apollo KT266/A/333 + VIA VT8235 + ITE IT8705F |
Uwe Hermann | 265e755 | 2009-06-21 15:45:34 +0000 | [diff] [blame] | 810 | */ |
| 811 | static int it8705f_write_enable_2e(const char *name) |
| 812 | { |
| 813 | return it8705f_write_enable(0x2e, name); |
| 814 | } |
| 815 | |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 816 | /** |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 817 | * Find the runtime registers of an SMSC Super I/O, after verifying its |
| 818 | * chip ID. |
| 819 | * |
| 820 | * Returns the base port of the runtime register block, or 0 on error. |
| 821 | */ |
| 822 | static uint16_t smsc_find_runtime(uint16_t sio_port, uint16_t chip_id, |
| 823 | uint8_t logical_device) |
| 824 | { |
| 825 | uint16_t rt_port = 0; |
| 826 | |
| 827 | /* Verify the chip ID. */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 828 | OUTB(0x55, sio_port); /* Enable configuration. */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 829 | if (sio_read(sio_port, 0x20) != chip_id) { |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 830 | fprintf(stderr, "\nERROR: SMSC Super I/O not found.\n"); |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 831 | goto out; |
| 832 | } |
| 833 | |
| 834 | /* If the runtime block is active, get its address. */ |
| 835 | sio_write(sio_port, 0x07, logical_device); |
| 836 | if (sio_read(sio_port, 0x30) & 1) { |
| 837 | rt_port = (sio_read(sio_port, 0x60) << 8) |
| 838 | | sio_read(sio_port, 0x61); |
| 839 | } |
| 840 | |
| 841 | if (rt_port == 0) { |
| 842 | fprintf(stderr, "\nERROR: " |
| 843 | "Super I/O runtime interface not available.\n"); |
| 844 | } |
| 845 | out: |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 846 | OUTB(0xaa, sio_port); /* Disable configuration. */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 847 | return rt_port; |
| 848 | } |
| 849 | |
| 850 | /** |
| 851 | * Disable write protection on the Mitac 6513WU. WP# on the FWH is |
| 852 | * connected to GP30 on the Super I/O, and TBL# is always high. |
| 853 | */ |
| 854 | static int board_mitac_6513wu(const char *name) |
| 855 | { |
| 856 | struct pci_dev *dev; |
| 857 | uint16_t rt_port; |
| 858 | uint8_t val; |
| 859 | |
| 860 | dev = pci_dev_find(0x8086, 0x2410); /* Intel 82801AA ISA bridge */ |
| 861 | if (!dev) { |
| 862 | fprintf(stderr, "\nERROR: Intel 82801AA ISA bridge not found.\n"); |
| 863 | return -1; |
| 864 | } |
| 865 | |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 866 | rt_port = smsc_find_runtime(0x4e, 0x54 /* LPC47U33x */, 0xa); |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 867 | if (rt_port == 0) |
| 868 | return -1; |
| 869 | |
| 870 | /* Configure the GPIO pin. */ |
| 871 | val = INB(rt_port + 0x33); /* GP30 config */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 872 | val &= ~0x87; /* Output, non-inverted, GPIO, push/pull */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 873 | OUTB(val, rt_port + 0x33); |
| 874 | |
| 875 | /* Disable write protection. */ |
| 876 | val = INB(rt_port + 0x4d); /* GP3 values */ |
Uwe Hermann | 1432a60 | 2009-06-28 23:26:37 +0000 | [diff] [blame] | 877 | val |= 0x01; /* Set GP30 high. */ |
Michael Gold | 6d52e47 | 2009-06-19 13:00:24 +0000 | [diff] [blame] | 878 | OUTB(val, rt_port + 0x4d); |
| 879 | |
| 880 | return 0; |
| 881 | } |
| 882 | |
| 883 | /** |
Luc Verhaegen | 2f1d0a5 | 2009-07-06 22:58:46 +0000 | [diff] [blame] | 884 | * Suited for Abit IP35: Intel P35 + ICH9R. |
| 885 | */ |
| 886 | static int board_abit_ip35(const char *name) |
| 887 | { |
| 888 | struct pci_dev *dev; |
| 889 | uint16_t base; |
| 890 | uint8_t tmp; |
| 891 | |
| 892 | dev = pci_dev_find(0x8086, 0x2916); /* Intel ICH9R LPC Interface */ |
| 893 | if (!dev) { |
| 894 | fprintf(stderr, "\nERROR: Intel ICH9R LPC not found.\n"); |
| 895 | return -1; |
| 896 | } |
| 897 | |
| 898 | /* get LPC GPIO base */ |
| 899 | base = pci_read_long(dev, 0x48) & 0x0000FFC0; |
| 900 | |
| 901 | /* Raise GPIO 16 */ |
| 902 | tmp = INB(base + 0x0E); |
| 903 | tmp |= 0x01; |
| 904 | OUTB(tmp, base + 0x0E); |
| 905 | |
| 906 | return 0; |
| 907 | } |
| 908 | |
| 909 | /** |
Luc Verhaegen | 78e4e12 | 2009-07-13 12:40:17 +0000 | [diff] [blame] | 910 | * Suited for Asus A7V8X: VIA KT400 + VT8235 + IT8703F-A |
| 911 | */ |
| 912 | static int board_asus_a7v8x(const char *name) |
| 913 | { |
| 914 | uint16_t id, base; |
| 915 | uint8_t tmp; |
| 916 | |
| 917 | /* find the IT8703F */ |
| 918 | w836xx_ext_enter(0x2E); |
| 919 | id = (sio_read(0x2E, 0x20) << 8) | sio_read(0x2E, 0x21); |
| 920 | w836xx_ext_leave(0x2E); |
| 921 | |
| 922 | if (id != 0x8701) { |
| 923 | fprintf(stderr, "\nERROR: IT8703F SuperIO not found.\n"); |
| 924 | return -1; |
| 925 | } |
| 926 | |
| 927 | /* Get the GP567 IO base */ |
| 928 | w836xx_ext_enter(0x2E); |
| 929 | sio_write(0x2E, 0x07, 0x0C); |
| 930 | base = (sio_read(0x2E, 0x60) << 8) | sio_read(0x2E, 0x61); |
| 931 | w836xx_ext_leave(0x2E); |
| 932 | |
| 933 | if (!base) { |
| 934 | fprintf(stderr, "\nERROR: Failed to read IT8703F SuperIO GPIO" |
| 935 | " Base.\n"); |
| 936 | return -1; |
| 937 | } |
| 938 | |
| 939 | /* Raise GP51. */ |
| 940 | tmp = INB(base); |
| 941 | tmp |= 0x02; |
| 942 | OUTB(tmp, base); |
| 943 | |
| 944 | return 0; |
| 945 | } |
| 946 | |
Luc Verhaegen | 7227291 | 2009-09-01 21:22:23 +0000 | [diff] [blame] | 947 | /* |
| 948 | * General routine for raising/dropping GPIO lines on the ITE IT8712F. |
| 949 | * There is only some limited checking on the port numbers. |
| 950 | */ |
| 951 | static int |
| 952 | it8712f_gpio_set(unsigned int line, int raise) |
| 953 | { |
| 954 | unsigned int port; |
| 955 | uint16_t id, base; |
| 956 | uint8_t tmp; |
| 957 | |
| 958 | port = line / 10; |
| 959 | port--; |
| 960 | line %= 10; |
| 961 | |
| 962 | /* Check line */ |
| 963 | if ((port > 4) || /* also catches unsigned -1 */ |
| 964 | ((port < 4) && (line > 7)) || ((port == 4) && (line > 5))) { |
| 965 | fprintf(stderr, |
| 966 | "\nERROR: Unsupported IT8712F GPIO Line %02d.\n", line); |
| 967 | return -1; |
| 968 | } |
| 969 | |
| 970 | /* find the IT8712F */ |
| 971 | enter_conf_mode_ite(0x2E); |
| 972 | id = (sio_read(0x2E, 0x20) << 8) | sio_read(0x2E, 0x21); |
| 973 | exit_conf_mode_ite(0x2E); |
| 974 | |
| 975 | if (id != 0x8712) { |
| 976 | fprintf(stderr, "\nERROR: IT8712F SuperIO not found.\n"); |
| 977 | return -1; |
| 978 | } |
| 979 | |
| 980 | /* Get the GPIO base */ |
| 981 | enter_conf_mode_ite(0x2E); |
| 982 | sio_write(0x2E, 0x07, 0x07); |
| 983 | base = (sio_read(0x2E, 0x62) << 8) | sio_read(0x2E, 0x63); |
| 984 | exit_conf_mode_ite(0x2E); |
| 985 | |
| 986 | if (!base) { |
| 987 | fprintf(stderr, "\nERROR: Failed to read IT8712F SuperIO GPIO" |
| 988 | " Base.\n"); |
| 989 | return -1; |
| 990 | } |
| 991 | |
| 992 | /* set GPIO. */ |
| 993 | tmp = INB(base + port); |
| 994 | if (raise) |
| 995 | tmp |= 1 << line; |
| 996 | else |
| 997 | tmp &= ~(1 << line); |
| 998 | OUTB(tmp, base + port); |
| 999 | |
| 1000 | return 0; |
| 1001 | } |
| 1002 | |
| 1003 | /** |
| 1004 | * Suited for Asus A7V600-X: VIA KT600 + VT8237 + IT8712F |
| 1005 | */ |
| 1006 | static int board_asus_a7v600x(const char *name) |
| 1007 | { |
| 1008 | return it8712f_gpio_set(32, 1); |
| 1009 | } |
| 1010 | |
Luc Verhaegen | 78e4e12 | 2009-07-13 12:40:17 +0000 | [diff] [blame] | 1011 | /** |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 1012 | * Suited for Asus P4P800-E Deluxe: Intel Intel 865PE + ICH5R. |
Luc Verhaegen | 4eeb713 | 2009-08-12 16:58:11 +0000 | [diff] [blame] | 1013 | */ |
| 1014 | static int board_asus_p4p800(const char *name) |
| 1015 | { |
| 1016 | struct pci_dev *dev; |
| 1017 | uint16_t base; |
| 1018 | uint8_t tmp; |
| 1019 | |
| 1020 | dev = pci_dev_find(0x8086, 0x24D0); /* Intel ICH5R ISA Bridge */ |
| 1021 | if (!dev) { |
| 1022 | fprintf(stderr, "\nERROR: Intel ICH5R ISA Bridge not found.\n"); |
| 1023 | return -1; |
| 1024 | } |
| 1025 | |
| 1026 | /* get PM IO base */ |
| 1027 | base = pci_read_long(dev, 0x58) & 0x0000FFC0; |
| 1028 | |
| 1029 | /* Raise GPIO 21 */ |
| 1030 | tmp = INB(base + 0x0E); |
| 1031 | tmp |= 0x20; |
| 1032 | OUTB(tmp, base + 0x0E); |
| 1033 | |
| 1034 | return 0; |
| 1035 | } |
| 1036 | |
| 1037 | /** |
Uwe Hermann | d0e347d | 2009-10-06 13:00:00 +0000 | [diff] [blame] | 1038 | * Below is the list of boards which need a special "board enable" code in |
| 1039 | * flashrom before their ROM chip can be accessed/written to. |
| 1040 | * |
| 1041 | * NOTE: Please add boards that _don't_ need such enables or don't work yet |
| 1042 | * to the respective tables in print.c. Thanks! |
| 1043 | * |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1044 | * We use 2 sets of IDs here, you're free to choose which is which. This |
| 1045 | * is to provide a very high degree of certainty when matching a board on |
| 1046 | * the basis of subsystem/card IDs. As not every vendor handles |
| 1047 | * subsystem/card IDs in a sane manner. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1048 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 1049 | * Keep the second set NULLed if it should be ignored. Keep the subsystem IDs |
| 1050 | * NULLed if they don't identify the board fully. But please take care to |
| 1051 | * provide an as complete set of pci ids as possible; autodetection is the |
| 1052 | * 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] | 1053 | * |
Luc Verhaegen | c521016 | 2009-04-20 12:38:17 +0000 | [diff] [blame] | 1054 | * The coreboot ids are used two fold. When running with a coreboot firmware, |
| 1055 | * the ids uniquely matches the coreboot board identification string. When a |
| 1056 | * legacy bios is installed and when autodetection is not possible, these ids |
| 1057 | * can be used to identify the board through the -m command line argument. |
| 1058 | * |
| 1059 | * When a board is identified through its coreboot ids (in both cases), the |
| 1060 | * main pci ids are still required to match, as a safeguard. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1061 | */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1062 | |
Uwe Hermann | deeebe2 | 2009-05-08 16:23:34 +0000 | [diff] [blame] | 1063 | /* Please keep this list alphabetically ordered by vendor/board name. */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1064 | struct board_pciid_enable board_pciid_enables[] = { |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 1065 | /* first pci-id set [4], second pci-id set [4], coreboot id [2], vendor name board name flash enable */ |
Luc Verhaegen | 2f1d0a5 | 2009-07-06 22:58:46 +0000 | [diff] [blame] | 1066 | {0x8086, 0x2926, 0x147b, 0x1084, 0x11ab, 0x4364, 0x147b, 0x1084, NULL, NULL, "Abit", "IP35", board_abit_ip35}, |
Uwe Hermann | ab60a43 | 2009-05-23 00:56:49 +0000 | [diff] [blame] | 1067 | {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] | 1068 | {0x1022, 0x746B, 0x1022, 0x36C0, 0, 0, 0, 0, "AGAMI", "ARUMA", "agami", "Aruma", w83627hf_gpio24_raise_2e}, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 1069 | {0x1106, 0x3177, 0x17F2, 0x3177, 0x1106, 0x3148, 0x17F2, 0x3148, NULL, NULL, "Albatron", "PM266A*", board_epox_ep_8k5a2}, |
Uwe Hermann | a02d666 | 2009-08-20 18:45:18 +0000 | [diff] [blame] | 1070 | {0x1106, 0x3205, 0x1106, 0x3205, 0x10EC, 0x8139, 0xA0A0, 0x0477, NULL, NULL, "AOpen", "vKM400Am-S", board_aopen_vkm400}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1071 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe61", "Artec Group", "DBE61", board_artecgroup_dbe6x}, |
| 1072 | {0x1022, 0x2090, 0, 0, 0x1022, 0x2080, 0, 0, "artecgroup", "dbe62", "Artec Group", "DBE62", board_artecgroup_dbe6x}, |
Luc Verhaegen | 7227291 | 2009-09-01 21:22:23 +0000 | [diff] [blame] | 1073 | {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3065, 0x1043, 0x80ED, NULL, NULL, "ASUS", "A7V600-X", board_asus_a7v600x}, |
Luc Verhaegen | 78e4e12 | 2009-07-13 12:40:17 +0000 | [diff] [blame] | 1074 | {0x1106, 0x3189, 0x1043, 0x807F, 0x1106, 0x3177, 0x1043, 0x808C, NULL, NULL, "ASUS", "A7V8X", board_asus_a7v8x}, |
Uwe Hermann | ef016f5 | 2009-07-04 15:10:41 +0000 | [diff] [blame] | 1075 | {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, "ASUS", "A7V8X-MX SE", board_asus_a7v8x_mx}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1076 | {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, "ASUS", "P4B266", ich2_gpio22_raise}, |
Luc Verhaegen | 4eeb713 | 2009-08-12 16:58:11 +0000 | [diff] [blame] | 1077 | {0x8086, 0x2570, 0x1043, 0x80F2, 0x105A, 0x3373, 0x1043, 0x80F5, NULL, NULL, "ASUS", "P4P800-E Deluxe", board_asus_p4p800}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1078 | {0x10B9, 0x1541, 0, 0, 0x10B9, 0x1533, 0, 0, "asus", "p5a", "ASUS", "P5A", board_asus_p5a}, |
Luc Verhaegen | 8ff741e | 2009-10-05 16:07:00 +0000 | [diff] [blame] | 1079 | {0x10DE, 0x0030, 0x1043, 0x818a, 0x8086, 0x100E, 0x1043, 0x80EE, NULL, NULL, "ASUS", "P5ND2-SLI Deluxe", board_asus_p5nd2_sli}, |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 1080 | {0x1106, 0x3149, 0x1565, 0x3206, 0x1106, 0x3344, 0x1565, 0x1202, NULL, NULL, "Biostar", "P4M80-M4", it8705_rom_write_enable}, |
Uwe Hermann | 14b3e1e | 2009-10-06 20:23:29 +0000 | [diff] [blame] | 1081 | {0x8086, 0x3590, 0x1028, 0x016c, 0x1000, 0x0030, 0x1028, 0x016c, NULL, NULL, "Dell", "PowerEdge 1850", ich5_gpio23_raise}, |
Uwe Hermann | 5ab8889 | 2009-06-21 20:50:22 +0000 | [diff] [blame] | 1082 | {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] | 1083 | {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, "EPoX", "EP-8K5A2", board_epox_ep_8k5a2}, |
Luc Verhaegen | 2c04fab | 2009-10-05 18:46:35 +0000 | [diff] [blame] | 1084 | {0x10EC, 0x8139, 0x1695, 0x9001, 0x11C1, 0x5811, 0x1695, 0x9015, NULL, NULL, "EPoX", "EP-8RDA3+", board_epox_ep_8rda3plus}, |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1085 | {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, "epox", "ep-bx3", "EPoX", "EP-BX3", board_epox_ep_bx3}, |
| 1086 | {0x1039, 0x0761, 0, 0, 0, 0, 0, 0, "gigabyte", "2761gxdk", "GIGABYTE", "GA-2761GXDK", it87xx_probe_spi_flash}, |
Luc Verhaegen | 1179377 | 2009-07-21 01:44:45 +0000 | [diff] [blame] | 1087 | {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, NULL, NULL, "GIGABYTE", "GA-7VT600", it8705_rom_write_enable}, |
Luc Verhaegen | 48f34c6 | 2009-06-03 07:50:39 +0000 | [diff] [blame] | 1088 | {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] | 1089 | {0x10de, 0x0360, 0, 0, 0, 0, 0, 0, "gigabyte", "m57sli", "GIGABYTE", "GA-M57SLI-S4", it87xx_probe_spi_flash}, |
| 1090 | {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] | 1091 | {0x1002, 0x4398, 0x1458, 0x5004, 0x1002, 0x4391, 0x1458, 0xb000, NULL, NULL, "GIGABYTE", "GA-MA78G-DS3H", it87xx_probe_spi_flash}, |
| 1092 | {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] | 1093 | /* 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] | 1094 | {0x1002, 0x438d, 0x1458, 0x5001, 0x1002, 0x5956, 0x1002, 0x5956, "gigabyte", "ma790fx-dq6", "GIGABYTE", "GA-MA790FX-DQ6", it87xx_probe_spi_flash}, |
| 1095 | {0x1166, 0x0223, 0x103c, 0x320d, 0x102b, 0x0522, 0x103c, 0x31fa, "hp", "dl145_g3", "HP", "DL145 G3", board_hp_dl145_g3_enable}, |
| 1096 | {0x1166, 0x0205, 0x1014, 0x0347, 0, 0, 0, 0, "ibm", "x3455", "IBM", "x3455", board_ibm_x3455}, |
| 1097 | {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, "Intel", "D201GLY", wbsio_check_for_spi}, |
| 1098 | {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, "iwill", "dk8_htx", "IWILL", "DK8-HTX", w83627hf_gpio24_raise_2e}, |
| 1099 | /* Note: There are >= 2 version of the Kontron 986LCD-M/mITX! */ |
| 1100 | {0x8086, 0x27b8, 0, 0, 0, 0, 0, 0, "kontron", "986lcd-m", "Kontron", "986LCD-M", board_kontron_986lcd_m}, |
| 1101 | {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] | 1102 | {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] | 1103 | {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] | 1104 | {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, NULL, NULL, "MSI", "MS-6702E (K8T Neo2-F)",w83627thf_gpio4_4_raise_2e}, |
| 1105 | {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] | 1106 | {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] | 1107 | {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] | 1108 | {0x1106, 0x3104, 0x1297, 0xa238, 0x1106, 0x3059, 0x1297, 0xc063, NULL, NULL, "Shuttle", "AK38N", it8705f_write_enable_2e}, |
Luc Verhaegen | 20fdce1 | 2009-10-21 12:05:50 +0000 | [diff] [blame] | 1109 | {0x10DE, 0x0050, 0x1297, 0x5036, 0x1412, 0x1724, 0x1297, 0x5036, NULL, NULL, "Shuttle", "FN25", board_shuttle_fn25}, |
Luc Verhaegen | 3920eda | 2009-06-17 14:43:24 +0000 | [diff] [blame] | 1110 | {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] | 1111 | {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, "Tyan", "S2498 (Tomcat K7M)", board_asus_a7v8x_mx}, |
| 1112 | {0x1106, 0x0314, 0x1106, 0xaa08, 0x1106, 0x3227, 0x1106, 0xAA08, NULL, NULL, "VIA", "EPIA-CN", board_via_epia_sp}, |
| 1113 | {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] | 1114 | {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] | 1115 | {0x1106, 0x3227, 0x1106, 0xAA01, 0x1106, 0x0259, 0x1106, 0xAA01, NULL, NULL, "VIA", "EPIA SP", board_via_epia_sp}, |
| 1116 | {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] | 1117 | |
Uwe Hermann | 5e1aecd | 2009-05-18 21:56:16 +0000 | [diff] [blame] | 1118 | { 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] | 1119 | }; |
| 1120 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1121 | /** |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 1122 | * Match boards on coreboot table gathered vendor and part name. |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1123 | * Require main PCI IDs to match too as extra safety. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1124 | */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1125 | static struct board_pciid_enable *board_match_coreboot_name(const char *vendor, |
| 1126 | const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1127 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1128 | struct board_pciid_enable *board = board_pciid_enables; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1129 | struct board_pciid_enable *partmatch = NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1130 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1131 | for (; board->vendor_name; board++) { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1132 | if (vendor && (!board->lb_vendor |
| 1133 | || strcasecmp(board->lb_vendor, vendor))) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1134 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1135 | |
Peter Stuge | 0b9c5f3 | 2008-07-02 00:47:30 +0000 | [diff] [blame] | 1136 | if (!board->lb_part || strcasecmp(board->lb_part, part)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1137 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1138 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1139 | if (!pci_dev_find(board->first_vendor, board->first_device)) |
| 1140 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1141 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1142 | if (board->second_vendor && |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1143 | !pci_dev_find(board->second_vendor, board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1144 | continue; |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1145 | |
| 1146 | if (vendor) |
| 1147 | return board; |
| 1148 | |
| 1149 | if (partmatch) { |
| 1150 | /* a second entry has a matching part name */ |
| 1151 | printf("AMBIGUOUS BOARD NAME: %s\n", part); |
| 1152 | printf("At least vendors '%s' and '%s' match.\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1153 | partmatch->lb_vendor, board->lb_vendor); |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1154 | printf("Please use the full -m vendor:part syntax.\n"); |
| 1155 | return NULL; |
| 1156 | } |
| 1157 | partmatch = board; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1158 | } |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1159 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1160 | if (partmatch) |
| 1161 | return partmatch; |
| 1162 | |
Carl-Daniel Hailfinger | bc25f94 | 2009-07-30 13:30:17 +0000 | [diff] [blame] | 1163 | if (!partvendor_from_cbtable) { |
| 1164 | /* Only warn if the mainboard type was not gathered from the |
| 1165 | * coreboot table. If it was, the coreboot implementor is |
| 1166 | * expected to fix flashrom, too. |
| 1167 | */ |
| 1168 | printf("\nUnknown vendor:board from -m option: %s:%s\n\n", |
| 1169 | vendor, part); |
| 1170 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1171 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1172 | } |
| 1173 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 1174 | /** |
| 1175 | * Match boards on PCI IDs and subsystem IDs. |
| 1176 | * Second set of IDs can be main only or missing completely. |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1177 | */ |
| 1178 | static struct board_pciid_enable *board_match_pci_card_ids(void) |
| 1179 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1180 | struct board_pciid_enable *board = board_pciid_enables; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1181 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1182 | for (; board->vendor_name; board++) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1183 | if (!board->first_card_vendor || !board->first_card_device) |
| 1184 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1185 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1186 | if (!pci_card_find(board->first_vendor, board->first_device, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1187 | board->first_card_vendor, |
| 1188 | board->first_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1189 | continue; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1190 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1191 | if (board->second_vendor) { |
| 1192 | if (board->second_card_vendor) { |
| 1193 | if (!pci_card_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1194 | board->second_device, |
| 1195 | board->second_card_vendor, |
| 1196 | board->second_card_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1197 | continue; |
| 1198 | } else { |
| 1199 | if (!pci_dev_find(board->second_vendor, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 1200 | board->second_device)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1201 | continue; |
| 1202 | } |
| 1203 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1204 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1205 | return board; |
| 1206 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1207 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1208 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1209 | } |
| 1210 | |
Uwe Hermann | 372eeb5 | 2007-12-04 21:49:06 +0000 | [diff] [blame] | 1211 | int board_flash_enable(const char *vendor, const char *part) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1212 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1213 | struct board_pciid_enable *board = NULL; |
| 1214 | int ret = 0; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1215 | |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 1216 | if (part) |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 1217 | board = board_match_coreboot_name(vendor, part); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1218 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1219 | if (!board) |
| 1220 | board = board_match_pci_card_ids(); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1221 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1222 | if (board) { |
Carl-Daniel Hailfinger | bc25f94 | 2009-07-30 13:30:17 +0000 | [diff] [blame] | 1223 | printf("Disabling flash write protection for board \"%s %s\"... ", |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1224 | board->vendor_name, board->board_name); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1225 | |
Uwe Hermann | a93045c | 2009-05-09 00:47:04 +0000 | [diff] [blame] | 1226 | ret = board->enable(board->vendor_name); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1227 | if (ret) |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 1228 | printf("FAILED!\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1229 | else |
| 1230 | printf("OK.\n"); |
| 1231 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1232 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 1233 | return ret; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 1234 | } |