blob: 82309261986cbd64e0f0964043543dbf94b89ac7 [file] [log] [blame]
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Carl-Daniel Hailfinger
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdint.h>
22#include <string.h>
23#include <stdlib.h>
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000024#include <sys/types.h>
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000025#include "flash.h"
26
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000027#if NEED_PCI == 1
Christian Ruppert0cdb0312009-05-14 18:57:26 +000028struct pci_dev *pci_dev_find_filter(struct pci_filter filter)
29{
30 struct pci_dev *temp;
31
32 for (temp = pacc->devices; temp; temp = temp->next)
33 if (pci_filter_match(&filter, temp))
34 return temp;
35
36 return NULL;
37}
38
Carl-Daniel Hailfinger9f46cfc2009-11-15 17:13:29 +000039struct pci_dev *pci_dev_find_vendorclass(uint16_t vendor, uint16_t class)
40{
41 struct pci_dev *temp;
42 struct pci_filter filter;
43 uint16_t tmp2;
44
45 pci_filter_init(NULL, &filter);
46 filter.vendor = vendor;
47
48 for (temp = pacc->devices; temp; temp = temp->next)
49 if (pci_filter_match(&filter, temp)) {
50 /* Read PCI class */
51 tmp2 = pci_read_word(temp, 0x0a);
52 if (tmp2 == class)
53 return temp;
54 }
55
56 return NULL;
57}
58
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000059struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device)
60{
61 struct pci_dev *temp;
62 struct pci_filter filter;
63
64 pci_filter_init(NULL, &filter);
65 filter.vendor = vendor;
66 filter.device = device;
67
68 for (temp = pacc->devices; temp; temp = temp->next)
69 if (pci_filter_match(&filter, temp))
70 return temp;
71
72 return NULL;
73}
74
75struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device,
76 uint16_t card_vendor, uint16_t card_device)
77{
78 struct pci_dev *temp;
79 struct pci_filter filter;
80
81 pci_filter_init(NULL, &filter);
82 filter.vendor = vendor;
83 filter.device = device;
84
85 for (temp = pacc->devices; temp; temp = temp->next)
86 if (pci_filter_match(&filter, temp)) {
87 if ((card_vendor ==
88 pci_read_word(temp, PCI_SUBSYSTEM_VENDOR_ID))
89 && (card_device ==
90 pci_read_word(temp, PCI_SUBSYSTEM_ID)))
91 return temp;
92 }
93
94 return NULL;
95}
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000096#endif
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +000097
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000098#if CONFIG_INTERNAL == 1
Michael Karcher0bdc0922010-02-28 01:33:48 +000099int force_boardenable = 0;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000100int force_boardmismatch = 0;
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000101
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000102#if defined(__i386__) || defined(__x86_64__)
103struct superio superio = {};
104
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000105void probe_superio(void)
106{
107 superio = probe_superio_ite();
Uwe Hermann43959702010-03-13 17:28:29 +0000108#if 0
109 /* Winbond Super I/O code is not yet available. */
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000110 if (superio.vendor == SUPERIO_VENDOR_NONE)
111 superio = probe_superio_winbond();
112#endif
113}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000114#endif
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000115
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000116int is_laptop = 0;
Michael Karcher8c1df282010-02-26 09:51:20 +0000117
Uwe Hermanna0869322009-05-14 20:41:57 +0000118int internal_init(void)
119{
120 int ret = 0;
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000121 int force_laptop = 0;
122 char *arg;
Uwe Hermanna0869322009-05-14 20:41:57 +0000123
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000124 arg = extract_param(&programmer_param, "boardenable=", ",:");
125 if (arg && !strcmp(arg,"force")) {
126 force_boardenable = 1;
127 } else if (arg && !strlen(arg)) {
128 msg_perr("Missing argument for boardenable.\n");
129 } else if (arg) {
130 msg_perr("Unknown argument for boardenable: %s\n", arg);
131 exit(1);
Michael Karcher0bdc0922010-02-28 01:33:48 +0000132 }
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000133 free(arg);
Michael Karcher0bdc0922010-02-28 01:33:48 +0000134
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000135 arg = extract_param(&programmer_param, "boardmismatch=", ",:");
136 if (arg && !strcmp(arg,"force")) {
137 force_boardmismatch = 1;
138 } else if (arg && !strlen(arg)) {
139 msg_perr("Missing argument for boardmismatch.\n");
140 } else if (arg) {
141 msg_perr("Unknown argument for boardmismatch: %s\n", arg);
142 exit(1);
Michael Karcher0bdc0922010-02-28 01:33:48 +0000143 }
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000144 free(arg);
145
146 arg = extract_param(&programmer_param, "laptop=", ",:");
147 if (arg && !strcmp(arg,"force_I_want_a_brick")) {
148 force_laptop = 1;
149 } else if (arg && !strlen(arg)) {
150 msg_perr("Missing argument for laptop.\n");
151 } else if (arg) {
152 msg_perr("Unknown argument for laptop: %s\n", arg);
153 exit(1);
154 }
155 free(arg);
156
Carl-Daniel Hailfinger3b7e75a2009-05-14 21:41:10 +0000157 get_io_perms();
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000158
159 /* Initialize PCI access for flash enables */
160 pacc = pci_alloc(); /* Get the pci_access structure */
161 /* Set all options you want -- here we stick with the defaults */
162 pci_init(pacc); /* Initialize the PCI library */
163 pci_scan_bus(pacc); /* We want to get the list of devices */
164
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000165 if (processor_flash_enable()) {
166 msg_perr("Processor detection/init failed.\n"
167 "Aborting.\n");
168 return 1;
169 }
170
171#if defined(__i386__) || defined(__x86_64__)
172 /* We look at the cbtable first to see if we need a
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000173 * mainboard specific flash enable sequence.
174 */
175 coreboot_init();
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000176
Michael Karcher6701ee82010-01-20 14:14:11 +0000177 dmi_init();
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000178
Uwe Hermann43959702010-03-13 17:28:29 +0000179 /* Probe for the Super I/O chip and fill global struct superio. */
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000180 probe_superio();
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000181#else
182 /* FIXME: Enable cbtable searching on all non-x86 platforms supported
183 * by coreboot.
184 * FIXME: Find a replacement for DMI on non-x86.
185 * FIXME: Enable Super I/O probing once port I/O is possible.
186 */
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000187#endif
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000188
Uwe Hermann43959702010-03-13 17:28:29 +0000189 /* Warn if a laptop is detected. */
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000190 if (is_laptop) {
191 msg_perr("========================================================================\n"
192 "WARNING! You seem to be running flashrom on a laptop.\n"
193 "Laptops, notebooks and netbooks are difficult to support and we recommend\n"
194 "to use the vendor flashing utility. The embedded controller (EC) in these\n"
195 "machines often interacts badly with flashing.\n"
196 "See http://www.flashrom.org/Laptops for details.\n\n"
197 "If flash is shared with the EC, erase is guaranteed to brick your laptop\n"
198 "and write may brick your laptop.\n"
199 "Read and probe may irritate your EC and cause fan failure, backlight\n"
200 "failure and sudden poweroff.\n"
201 "You have been warned.\n"
202 "========================================================================\n");
203 if (force_laptop) {
204 msg_perr("Proceeding anyway because user specified "
205 "laptop=force_I_want_a_brick\n");
206 } else {
207 msg_perr("Aborting.\n");
208 exit(1);
209 }
210 }
Michael Karcher8c1df282010-02-26 09:51:20 +0000211
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000212#if __FLASHROM_LITTLE_ENDIAN__
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000213 /* try to enable it. Failure IS an option, since not all motherboards
214 * really need this to be done, etc., etc.
215 */
216 ret = chipset_flash_enable();
217 if (ret == -2) {
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000218 msg_perr("WARNING: No chipset found. Flash detection "
219 "will most likely fail.\n");
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000220 }
221
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000222#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfinger01f3ef42010-03-25 02:50:40 +0000223 /* Probe for IT87* LPC->SPI translation unconditionally. */
224 it87xx_probe_spi_flash(NULL);
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000225#endif
Carl-Daniel Hailfinger01f3ef42010-03-25 02:50:40 +0000226
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000227 board_flash_enable(lb_vendor, lb_part);
228
Carl-Daniel Hailfinger9246ff42009-09-02 13:43:56 +0000229 /* Even if chipset init returns an error code, we don't want to abort.
230 * The error code might have been a warning only.
231 * Besides that, we don't check the board enable return code either.
232 */
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000233#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +0000234 return 0;
Carl-Daniel Hailfingerb5b161b2010-06-04 19:05:39 +0000235#else
236 msg_perr("Your platform is not supported yet for the internal "
237 "programmer due to missing\n"
238 "flash_base and top/bottom alignment information.\n"
239 "Aborting.\n");
240 return 1;
241#endif
242#else
243 /* FIXME: Remove this unconditional abort once all PCI drivers are
244 * converted to use little-endian accesses for memory BARs.
245 */
246 msg_perr("Your platform is not supported yet for the internal "
247 "programmer because it has\n"
248 "not been converted from native endian to little endian "
249 "access yet.\n"
250 "Aborting.\n");
251 return 1;
252#endif
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000253}
254
255int internal_shutdown(void)
256{
Carl-Daniel Hailfingerdb41c592009-08-09 21:50:24 +0000257 release_io_perms();
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000258
259 return 0;
260}
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000261#endif
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000262
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000263void internal_chip_writeb(uint8_t val, chipaddr addr)
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000264{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000265 mmio_writeb(val, (void *) addr);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000266}
267
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000268void internal_chip_writew(uint16_t val, chipaddr addr)
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000269{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000270 mmio_writew(val, (void *) addr);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000271}
272
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000273void internal_chip_writel(uint32_t val, chipaddr addr)
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000274{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000275 mmio_writel(val, (void *) addr);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000276}
277
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000278uint8_t internal_chip_readb(const chipaddr addr)
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000279{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000280 return mmio_readb((void *) addr);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000281}
282
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000283uint16_t internal_chip_readw(const chipaddr addr)
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000284{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000285 return mmio_readw((void *) addr);
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000286}
287
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000288uint32_t internal_chip_readl(const chipaddr addr)
Carl-Daniel Hailfinger702218d2009-05-08 17:43:22 +0000289{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000290 return mmio_readl((void *) addr);
291}
292
Carl-Daniel Hailfinger0bd2a2b2009-06-05 18:32:07 +0000293void internal_chip_readn(uint8_t *buf, const chipaddr addr, size_t len)
294{
295 memcpy(buf, (void *)addr, len);
296 return;
297}