blob: 9670bbb65957960a28d7725b5d969fae07621bf7 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 The Chromium OS Authors. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
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,
19 * MA 02110-1301 USA
20 */
21
22/*
23 * This is a ramstage driver for the Intel Management Engine found in the
24 * 6-series chipset. It handles the required boot-time messages over the
25 * MMIO-based Management Engine Interface to tell the ME that the BIOS is
26 * finished with POST. Additional messages are defined for debug but are
27 * not used unless the console loglevel is high enough.
28 */
29
30#include <arch/acpi.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050031#include <arch/io.h>
32#include <console/console.h>
Stefan Reinauer24d1d4b2013-03-21 11:51:41 -070033#include <device/device.h>
34#include <device/pci.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050035#include <device/pci_ids.h>
36#include <device/pci_def.h>
37#include <string.h>
38#include <delay.h>
39#include <elog.h>
Patrick Georgi546953c2014-11-29 10:38:17 +010040#include <halt.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050041
Aaron Durbin76c37002012-10-30 09:03:43 -050042#include "me.h"
43#include "pch.h"
44
45#if CONFIG_CHROMEOS
46#include <vendorcode/google/chromeos/chromeos.h>
47#include <vendorcode/google/chromeos/gnvs.h>
48#endif
49
Duncan Laurieaf980622013-07-18 23:02:18 -070050#ifndef __SMM__
Aaron Durbin76c37002012-10-30 09:03:43 -050051/* Path that the BIOS should take based on ME state */
52static const char *me_bios_path_values[] = {
53 [ME_NORMAL_BIOS_PATH] = "Normal",
54 [ME_S3WAKE_BIOS_PATH] = "S3 Wake",
55 [ME_ERROR_BIOS_PATH] = "Error",
56 [ME_RECOVERY_BIOS_PATH] = "Recovery",
57 [ME_DISABLE_BIOS_PATH] = "Disable",
58 [ME_FIRMWARE_UPDATE_BIOS_PATH] = "Firmware Update",
59};
Aaron Durbin9aa031e2012-11-02 09:16:46 -050060static int intel_me_read_mbp(me_bios_payload *mbp_data, device_t dev);
Duncan Laurieaf980622013-07-18 23:02:18 -070061#endif
Aaron Durbin76c37002012-10-30 09:03:43 -050062
63/* MMIO base address for MEI interface */
64static u32 mei_base_address;
Duncan Laurie3d299c42013-07-19 08:48:05 -070065void intel_me_mbp_clear(device_t dev);
Aaron Durbin76c37002012-10-30 09:03:43 -050066
67#if CONFIG_DEBUG_INTEL_ME
68static void mei_dump(void *ptr, int dword, int offset, const char *type)
69{
70 struct mei_csr *csr;
71
72 printk(BIOS_SPEW, "%-9s[%02x] : ", type, offset);
73
74 switch (offset) {
75 case MEI_H_CSR:
76 case MEI_ME_CSR_HA:
77 csr = ptr;
78 if (!csr) {
79 printk(BIOS_SPEW, "ERROR: 0x%08x\n", dword);
80 break;
81 }
82 printk(BIOS_SPEW, "cbd=%u cbrp=%02u cbwp=%02u ready=%u "
83 "reset=%u ig=%u is=%u ie=%u\n", csr->buffer_depth,
84 csr->buffer_read_ptr, csr->buffer_write_ptr,
85 csr->ready, csr->reset, csr->interrupt_generate,
86 csr->interrupt_status, csr->interrupt_enable);
87 break;
88 case MEI_ME_CB_RW:
89 case MEI_H_CB_WW:
90 printk(BIOS_SPEW, "CB: 0x%08x\n", dword);
91 break;
92 default:
93 printk(BIOS_SPEW, "0x%08x\n", offset);
94 break;
95 }
96}
97#else
98# define mei_dump(ptr,dword,offset,type) do {} while (0)
99#endif
100
101/*
102 * ME/MEI access helpers using memcpy to avoid aliasing.
103 */
104
105static inline void mei_read_dword_ptr(void *ptr, int offset)
106{
107 u32 dword = read32(mei_base_address + offset);
108 memcpy(ptr, &dword, sizeof(dword));
109 mei_dump(ptr, dword, offset, "READ");
110}
111
112static inline void mei_write_dword_ptr(void *ptr, int offset)
113{
114 u32 dword = 0;
115 memcpy(&dword, ptr, sizeof(dword));
116 write32(mei_base_address + offset, dword);
117 mei_dump(ptr, dword, offset, "WRITE");
118}
119
Aaron Durbin76c37002012-10-30 09:03:43 -0500120static inline void pci_read_dword_ptr(device_t dev, void *ptr, int offset)
121{
122 u32 dword = pci_read_config32(dev, offset);
123 memcpy(ptr, &dword, sizeof(dword));
124 mei_dump(ptr, dword, offset, "PCI READ");
125}
Aaron Durbin76c37002012-10-30 09:03:43 -0500126
127static inline void read_host_csr(struct mei_csr *csr)
128{
129 mei_read_dword_ptr(csr, MEI_H_CSR);
130}
131
132static inline void write_host_csr(struct mei_csr *csr)
133{
134 mei_write_dword_ptr(csr, MEI_H_CSR);
135}
136
137static inline void read_me_csr(struct mei_csr *csr)
138{
139 mei_read_dword_ptr(csr, MEI_ME_CSR_HA);
140}
141
142static inline void write_cb(u32 dword)
143{
144 write32(mei_base_address + MEI_H_CB_WW, dword);
145 mei_dump(NULL, dword, MEI_H_CB_WW, "WRITE");
146}
147
148static inline u32 read_cb(void)
149{
150 u32 dword = read32(mei_base_address + MEI_ME_CB_RW);
151 mei_dump(NULL, dword, MEI_ME_CB_RW, "READ");
152 return dword;
153}
154
155/* Wait for ME ready bit to be asserted */
156static int mei_wait_for_me_ready(void)
157{
158 struct mei_csr me;
159 unsigned try = ME_RETRY;
160
161 while (try--) {
162 read_me_csr(&me);
163 if (me.ready)
164 return 0;
165 udelay(ME_DELAY);
166 }
167
168 printk(BIOS_ERR, "ME: failed to become ready\n");
169 return -1;
170}
171
172static void mei_reset(void)
173{
174 struct mei_csr host;
175
176 if (mei_wait_for_me_ready() < 0)
177 return;
178
179 /* Reset host and ME circular buffers for next message */
180 read_host_csr(&host);
181 host.reset = 1;
182 host.interrupt_generate = 1;
183 write_host_csr(&host);
184
185 if (mei_wait_for_me_ready() < 0)
186 return;
187
188 /* Re-init and indicate host is ready */
189 read_host_csr(&host);
190 host.interrupt_generate = 1;
191 host.ready = 1;
192 host.reset = 0;
193 write_host_csr(&host);
194}
195
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700196static int mei_send_packet(struct mei_header *mei, void *req_data)
Aaron Durbin76c37002012-10-30 09:03:43 -0500197{
198 struct mei_csr host;
199 unsigned ndata, n;
200 u32 *data;
201
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700202 /* Number of dwords to write */
Aaron Durbin76c37002012-10-30 09:03:43 -0500203 ndata = mei->length >> 2;
204
205 /* Pad non-dword aligned request message length */
206 if (mei->length & 3)
207 ndata++;
208 if (!ndata) {
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700209 printk(BIOS_DEBUG, "ME: request has no data\n");
Aaron Durbin76c37002012-10-30 09:03:43 -0500210 return -1;
211 }
212 ndata++; /* Add MEI header */
213
214 /*
215 * Make sure there is still room left in the circular buffer.
216 * Reset the buffer pointers if the requested message will not fit.
217 */
218 read_host_csr(&host);
219 if ((host.buffer_depth - host.buffer_write_ptr) < ndata) {
220 printk(BIOS_ERR, "ME: circular buffer full, resetting...\n");
221 mei_reset();
222 read_host_csr(&host);
223 }
224
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700225 /* Ensure the requested length will fit in the circular buffer. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500226 if ((host.buffer_depth - host.buffer_write_ptr) < ndata) {
227 printk(BIOS_ERR, "ME: message (%u) too large for buffer (%u)\n",
228 ndata + 2, host.buffer_depth);
229 return -1;
230 }
231
232 /* Write MEI header */
233 mei_write_dword_ptr(mei, MEI_H_CB_WW);
234 ndata--;
235
Aaron Durbin76c37002012-10-30 09:03:43 -0500236 /* Write message data */
237 data = req_data;
238 for (n = 0; n < ndata; ++n)
239 write_cb(*data++);
240
241 /* Generate interrupt to the ME */
242 read_host_csr(&host);
243 host.interrupt_generate = 1;
244 write_host_csr(&host);
245
246 /* Make sure ME is ready after sending request data */
247 return mei_wait_for_me_ready();
248}
249
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700250static int mei_send_data(u8 me_address, u8 host_address,
251 void *req_data, int req_bytes)
252{
253 struct mei_header header = {
254 .client_address = me_address,
255 .host_address = host_address,
256 };
257 struct mei_csr host;
258 int current = 0;
259 u8 *req_ptr = req_data;
260
261 while (!header.is_complete) {
262 int remain = req_bytes - current;
263 int buf_len;
264
265 read_host_csr(&host);
266 buf_len = host.buffer_depth - host.buffer_write_ptr;
267
268 if (buf_len > remain) {
269 /* Send all remaining data as final message */
270 header.length = req_bytes - current;
271 header.is_complete = 1;
272 } else {
273 /* Send as much data as the buffer can hold */
274 header.length = buf_len;
275 }
276
277 mei_send_packet(&header, req_ptr);
278
279 req_ptr += header.length;
280 current += header.length;
281 }
282
283 return 0;
284}
285
286static int mei_send_header(u8 me_address, u8 host_address,
287 void *header, int header_len, int complete)
288{
289 struct mei_header mei = {
290 .client_address = me_address,
291 .host_address = host_address,
292 .length = header_len,
293 .is_complete = complete,
294 };
295 return mei_send_packet(&mei, header);
296}
297
298static int mei_recv_msg(void *header, int header_bytes,
Aaron Durbin76c37002012-10-30 09:03:43 -0500299 void *rsp_data, int rsp_bytes)
300{
301 struct mei_header mei_rsp;
Aaron Durbin76c37002012-10-30 09:03:43 -0500302 struct mei_csr me, host;
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700303 unsigned ndata, n;
Aaron Durbin76c37002012-10-30 09:03:43 -0500304 unsigned expected;
305 u32 *data;
306
307 /* Total number of dwords to read from circular buffer */
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700308 expected = (rsp_bytes + sizeof(mei_rsp) + header_bytes) >> 2;
Aaron Durbin76c37002012-10-30 09:03:43 -0500309 if (rsp_bytes & 3)
310 expected++;
311
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700312 if (mei_wait_for_me_ready() < 0)
313 return -1;
314
Aaron Durbin76c37002012-10-30 09:03:43 -0500315 /*
316 * The interrupt status bit does not appear to indicate that the
317 * message has actually been received. Instead we wait until the
318 * expected number of dwords are present in the circular buffer.
319 */
320 for (n = ME_RETRY; n; --n) {
321 read_me_csr(&me);
322 if ((me.buffer_write_ptr - me.buffer_read_ptr) >= expected)
323 break;
324 udelay(ME_DELAY);
325 }
326 if (!n) {
327 printk(BIOS_ERR, "ME: timeout waiting for data: expected "
328 "%u, available %u\n", expected,
329 me.buffer_write_ptr - me.buffer_read_ptr);
330 return -1;
331 }
332
333 /* Read and verify MEI response header from the ME */
334 mei_read_dword_ptr(&mei_rsp, MEI_ME_CB_RW);
335 if (!mei_rsp.is_complete) {
336 printk(BIOS_ERR, "ME: response is not complete\n");
337 return -1;
338 }
339
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700340 /* Handle non-dword responses and expect at least the header */
Aaron Durbin76c37002012-10-30 09:03:43 -0500341 ndata = mei_rsp.length >> 2;
342 if (mei_rsp.length & 3)
343 ndata++;
344 if (ndata != (expected - 1)) {
345 printk(BIOS_ERR, "ME: response is missing data %d != %d\n",
346 ndata, (expected - 1));
347 return -1;
348 }
349
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700350 /* Read response header from the ME */
351 data = header;
352 for (n = 0; n < (header_bytes >> 2); ++n)
353 *data++ = read_cb();
354 ndata -= header_bytes >> 2;
Aaron Durbin76c37002012-10-30 09:03:43 -0500355
356 /* Make sure caller passed a buffer with enough space */
357 if (ndata != (rsp_bytes >> 2)) {
358 printk(BIOS_ERR, "ME: not enough room in response buffer: "
359 "%u != %u\n", ndata, rsp_bytes >> 2);
360 return -1;
361 }
362
363 /* Read response data from the circular buffer */
364 data = rsp_data;
365 for (n = 0; n < ndata; ++n)
366 *data++ = read_cb();
367
368 /* Tell the ME that we have consumed the response */
369 read_host_csr(&host);
370 host.interrupt_status = 1;
371 host.interrupt_generate = 1;
372 write_host_csr(&host);
373
374 return mei_wait_for_me_ready();
375}
376
Edward O'Callaghan97ccefd2015-01-07 15:53:00 +1100377#if IS_ENABLED (CONFIG_DEBUG_INTEL_ME) || defined(__SMM__)
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700378static inline int mei_sendrecv_mkhi(struct mkhi_header *mkhi,
379 void *req_data, int req_bytes,
380 void *rsp_data, int rsp_bytes)
Aaron Durbin76c37002012-10-30 09:03:43 -0500381{
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700382 struct mkhi_header mkhi_rsp;
383
384 /* Send header */
385 if (mei_send_header(MEI_ADDRESS_MKHI, MEI_HOST_ADDRESS,
386 mkhi, sizeof(*mkhi), req_bytes ? 0 : 1) < 0)
Aaron Durbin76c37002012-10-30 09:03:43 -0500387 return -1;
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700388
389 /* Send data if available */
390 if (req_bytes && mei_send_data(MEI_ADDRESS_MKHI, MEI_HOST_ADDRESS,
391 req_data, req_bytes) < 0)
Aaron Durbin76c37002012-10-30 09:03:43 -0500392 return -1;
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700393
394 /* Return now if no response expected */
395 if (!rsp_bytes)
396 return 0;
397
398 /* Read header and data */
399 if (mei_recv_msg(&mkhi_rsp, sizeof(mkhi_rsp),
400 rsp_data, rsp_bytes) < 0)
401 return -1;
402
403 if (!mkhi_rsp.is_response ||
404 mkhi->group_id != mkhi_rsp.group_id ||
405 mkhi->command != mkhi_rsp.command) {
406 printk(BIOS_ERR, "ME: invalid response, group %u ?= %u,"
407 "command %u ?= %u, is_response %u\n", mkhi->group_id,
408 mkhi_rsp.group_id, mkhi->command, mkhi_rsp.command,
409 mkhi_rsp.is_response);
410 return -1;
411 }
412
Aaron Durbin76c37002012-10-30 09:03:43 -0500413 return 0;
414}
Edward O'Callaghan97ccefd2015-01-07 15:53:00 +1100415#endif /* CONFIG_DEBUG_INTEL_ME || __SMM__ */
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700416
Duncan Laurie3d299c42013-07-19 08:48:05 -0700417/*
418 * mbp give up routine. This path is taken if hfs.mpb_rdy is 0 or the read
419 * state machine on the BIOS end doesn't match the ME's state machine.
420 */
421static void intel_me_mbp_give_up(device_t dev)
422{
423 struct mei_csr csr;
424
425 pci_write_config32(dev, PCI_ME_H_GS2, PCI_ME_MBP_GIVE_UP);
426
427 read_host_csr(&csr);
428 csr.reset = 1;
429 csr.interrupt_generate = 1;
430 write_host_csr(&csr);
431}
432
433/*
434 * mbp clear routine. This will wait for the ME to indicate that
435 * the MBP has been read and cleared.
436 */
437void intel_me_mbp_clear(device_t dev)
438{
439 int count;
440 struct me_hfs2 hfs2;
441
442 /* Wait for the mbp_cleared indicator */
443 for (count = ME_RETRY; count > 0; --count) {
444 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
445 if (hfs2.mbp_cleared)
446 break;
447 udelay(ME_DELAY);
448 }
449
450 if (count == 0) {
451 printk(BIOS_WARNING, "ME: Timeout waiting for mbp_cleared\n");
452 intel_me_mbp_give_up(dev);
453 } else {
454 printk(BIOS_INFO, "ME: MBP cleared\n");
455 }
456}
457
Duncan Laurieaf980622013-07-18 23:02:18 -0700458#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG) && !defined(__SMM__)
Aaron Durbin76c37002012-10-30 09:03:43 -0500459static void me_print_fw_version(mbp_fw_version_name *vers_name)
460{
Aaron Durbinbe985242012-12-12 12:40:33 -0600461 if (!vers_name) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500462 printk(BIOS_ERR, "ME: mbp missing version report\n");
463 return;
464 }
465
466 printk(BIOS_DEBUG, "ME: found version %d.%d.%d.%d\n",
467 vers_name->major_version, vers_name->minor_version,
468 vers_name->hotfix_version, vers_name->build_version);
469}
470
Edward O'Callaghan7bf4f482014-06-17 15:12:09 +1000471#if IS_ENABLED (CONFIG_DEBUG_INTEL_ME)
472static inline void print_cap(const char *name, int state)
473{
474 printk(BIOS_DEBUG, "ME Capability: %-41s : %sabled\n",
475 name, state ? " en" : "dis");
476}
477
Aaron Durbin76c37002012-10-30 09:03:43 -0500478/* Get ME Firmware Capabilities */
Aaron Durbinbe985242012-12-12 12:40:33 -0600479static int mkhi_get_fwcaps(mbp_mefwcaps *cap)
Aaron Durbin76c37002012-10-30 09:03:43 -0500480{
481 u32 rule_id = 0;
482 struct me_fwcaps cap_msg;
483 struct mkhi_header mkhi = {
484 .group_id = MKHI_GROUP_ID_FWCAPS,
485 .command = MKHI_FWCAPS_GET_RULE,
486 };
Aaron Durbin76c37002012-10-30 09:03:43 -0500487
488 /* Send request and wait for response */
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700489 if (mei_sendrecv_mkhi(&mkhi, &rule_id, sizeof(u32),
490 &cap_msg, sizeof(cap_msg)) < 0) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500491 printk(BIOS_ERR, "ME: GET FWCAPS message failed\n");
492 return -1;
493 }
494 *cap = cap_msg.caps_sku;
495 return 0;
496}
497
498/* Get ME Firmware Capabilities */
Aaron Durbinbe985242012-12-12 12:40:33 -0600499static void me_print_fwcaps(mbp_mefwcaps *cap)
Aaron Durbin76c37002012-10-30 09:03:43 -0500500{
Aaron Durbinbe985242012-12-12 12:40:33 -0600501 mbp_mefwcaps local_caps;
502 if (!cap) {
503 cap = &local_caps;
Aaron Durbin76c37002012-10-30 09:03:43 -0500504 printk(BIOS_ERR, "ME: mbp missing fwcaps report\n");
505 if (mkhi_get_fwcaps(cap))
506 return;
507 }
508
509 print_cap("Full Network manageability", cap->full_net);
510 print_cap("Regular Network manageability", cap->std_net);
511 print_cap("Manageability", cap->manageability);
Aaron Durbin76c37002012-10-30 09:03:43 -0500512 print_cap("IntelR Anti-Theft (AT)", cap->intel_at);
513 print_cap("IntelR Capability Licensing Service (CLS)", cap->intel_cls);
514 print_cap("IntelR Power Sharing Technology (MPC)", cap->intel_mpc);
515 print_cap("ICC Over Clocking", cap->icc_over_clocking);
Edward O'Callaghan7bf4f482014-06-17 15:12:09 +1000516 print_cap("Protected Audio Video Path (PAVP)", cap->pavp);
Aaron Durbin76c37002012-10-30 09:03:43 -0500517 print_cap("IPV6", cap->ipv6);
518 print_cap("KVM Remote Control (KVM)", cap->kvm);
519 print_cap("Outbreak Containment Heuristic (OCH)", cap->och);
520 print_cap("Virtual LAN (VLAN)", cap->vlan);
521 print_cap("TLS", cap->tls);
522 print_cap("Wireless LAN (WLAN)", cap->wlan);
523}
Edward O'Callaghan7bf4f482014-06-17 15:12:09 +1000524#endif /* CONFIG_DEBUG_INTEL_ME */
Duncan Laurie0b3cd362013-08-08 15:40:01 -0700525#endif
Aaron Durbin76c37002012-10-30 09:03:43 -0500526
527#if CONFIG_CHROMEOS && 0 /* DISABLED */
528/* Tell ME to issue a global reset */
529static int mkhi_global_reset(void)
530{
531 struct me_global_reset reset = {
532 .request_origin = GLOBAL_RESET_BIOS_POST,
533 .reset_type = CBM_RR_GLOBAL_RESET,
534 };
535 struct mkhi_header mkhi = {
536 .group_id = MKHI_GROUP_ID_CBM,
537 .command = MKHI_GLOBAL_RESET,
538 };
Aaron Durbin76c37002012-10-30 09:03:43 -0500539
540 /* Send request and wait for response */
541 printk(BIOS_NOTICE, "ME: %s\n", __FUNCTION__);
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700542 if (mei_sendrecv_mkhi(&mkhi, &reset, sizeof(reset), NULL, 0) < 0) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500543 /* No response means reset will happen shortly... */
Patrick Georgi546953c2014-11-29 10:38:17 +0100544 halt();
Aaron Durbin76c37002012-10-30 09:03:43 -0500545 }
546
547 /* If the ME responded it rejected the reset request */
548 printk(BIOS_ERR, "ME: Global Reset failed\n");
549 return -1;
550}
551#endif
552
Duncan Laurieaf980622013-07-18 23:02:18 -0700553#ifdef __SMM__
554
Aaron Durbin76c37002012-10-30 09:03:43 -0500555/* Send END OF POST message to the ME */
556static int mkhi_end_of_post(void)
557{
558 struct mkhi_header mkhi = {
559 .group_id = MKHI_GROUP_ID_GEN,
560 .command = MKHI_END_OF_POST,
561 };
Aaron Durbin76c37002012-10-30 09:03:43 -0500562 u32 eop_ack;
563
564 /* Send request and wait for response */
565 printk(BIOS_NOTICE, "ME: %s\n", __FUNCTION__);
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700566 if (mei_sendrecv_mkhi(&mkhi, NULL, 0, &eop_ack, sizeof(eop_ack)) < 0) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500567 printk(BIOS_ERR, "ME: END OF POST message failed\n");
568 return -1;
569 }
570
571 printk(BIOS_INFO, "ME: END OF POST message successful (%d)\n", eop_ack);
572 return 0;
573}
574
Duncan Laurieaf980622013-07-18 23:02:18 -0700575void intel_me_finalize_smm(void)
576{
577 struct me_hfs hfs;
578 u32 reg32;
579
580 mei_base_address =
581 pci_read_config32(PCH_ME_DEV, PCI_BASE_ADDRESS_0) & ~0xf;
582
583 /* S3 path will have hidden this device already */
584 if (!mei_base_address || mei_base_address == 0xfffffff0)
585 return;
586
Duncan Laurie3d299c42013-07-19 08:48:05 -0700587#if CONFIG_ME_MBP_CLEAR_LATE
588 /* Wait for ME MBP Cleared indicator */
589 intel_me_mbp_clear(PCH_ME_DEV);
590#endif
591
Duncan Laurieaf980622013-07-18 23:02:18 -0700592 /* Make sure ME is in a mode that expects EOP */
593 reg32 = pci_read_config32(PCH_ME_DEV, PCI_ME_HFS);
594 memcpy(&hfs, &reg32, sizeof(u32));
595
596 /* Abort and leave device alone if not normal mode */
597 if (hfs.fpt_bad ||
598 hfs.working_state != ME_HFS_CWS_NORMAL ||
599 hfs.operation_mode != ME_HFS_MODE_NORMAL)
600 return;
601
602 /* Try to send EOP command so ME stops accepting other commands */
603 mkhi_end_of_post();
604
605 /* Make sure IO is disabled */
606 reg32 = pci_read_config32(PCH_ME_DEV, PCI_COMMAND);
607 reg32 &= ~(PCI_COMMAND_MASTER |
608 PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
609 pci_write_config32(PCH_ME_DEV, PCI_COMMAND, reg32);
610
611 /* Hide the PCI device */
612 RCBA32_OR(FD2, PCH_DISABLE_MEI1);
613}
614
615#else /* !__SMM__ */
616
Edward O'Callaghan97ccefd2015-01-07 15:53:00 +1100617static inline int mei_sendrecv_icc(struct icc_header *icc,
618 void *req_data, int req_bytes,
619 void *rsp_data, int rsp_bytes)
620{
621 struct icc_header icc_rsp;
622
623 /* Send header */
624 if (mei_send_header(MEI_ADDRESS_ICC, MEI_HOST_ADDRESS,
625 icc, sizeof(*icc), req_bytes ? 0 : 1) < 0)
626 return -1;
627
628 /* Send data if available */
629 if (req_bytes && mei_send_data(MEI_ADDRESS_ICC, MEI_HOST_ADDRESS,
630 req_data, req_bytes) < 0)
631 return -1;
632
633 /* Read header and data, if needed */
634 if (rsp_bytes && mei_recv_msg(&icc_rsp, sizeof(icc_rsp),
635 rsp_data, rsp_bytes) < 0)
636 return -1;
637
638 return 0;
639}
640
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700641static int me_icc_set_clock_enables(u32 mask)
642{
643 struct icc_clock_enables_msg clk = {
644 .clock_enables = 0, /* Turn off specified clocks */
645 .clock_mask = mask,
646 .no_response = 1, /* Do not expect response */
647 };
648 struct icc_header icc = {
649 .api_version = ICC_API_VERSION_LYNXPOINT,
650 .icc_command = ICC_SET_CLOCK_ENABLES,
651 .length = sizeof(clk),
652 };
653
654 /* Send request and wait for response */
655 if (mei_sendrecv_icc(&icc, &clk, sizeof(clk), NULL, 0) < 0) {
656 printk(BIOS_ERR, "ME: ICC SET CLOCK ENABLES message failed\n");
657 return -1;
658 } else {
659 printk(BIOS_INFO, "ME: ICC SET CLOCK ENABLES 0x%08x\n", mask);
660 }
661
662 return 0;
663}
664
Aaron Durbin76c37002012-10-30 09:03:43 -0500665/* Determine the path that we should take based on ME status */
666static me_bios_path intel_me_path(device_t dev)
667{
668 me_bios_path path = ME_DISABLE_BIOS_PATH;
669 struct me_hfs hfs;
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500670 struct me_hfs2 hfs2;
Aaron Durbin76c37002012-10-30 09:03:43 -0500671
Aaron Durbin76c37002012-10-30 09:03:43 -0500672 pci_read_dword_ptr(dev, &hfs, PCI_ME_HFS);
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500673 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
Aaron Durbin76c37002012-10-30 09:03:43 -0500674
675 /* Check and dump status */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500676 intel_me_status(&hfs, &hfs2);
Aaron Durbin76c37002012-10-30 09:03:43 -0500677
678 /* Check Current Working State */
679 switch (hfs.working_state) {
680 case ME_HFS_CWS_NORMAL:
681 path = ME_NORMAL_BIOS_PATH;
682 break;
683 case ME_HFS_CWS_REC:
684 path = ME_RECOVERY_BIOS_PATH;
685 break;
686 default:
687 path = ME_DISABLE_BIOS_PATH;
688 break;
689 }
690
691 /* Check Current Operation Mode */
692 switch (hfs.operation_mode) {
693 case ME_HFS_MODE_NORMAL:
694 break;
695 case ME_HFS_MODE_DEBUG:
696 case ME_HFS_MODE_DIS:
697 case ME_HFS_MODE_OVER_JMPR:
698 case ME_HFS_MODE_OVER_MEI:
699 default:
700 path = ME_DISABLE_BIOS_PATH;
701 break;
702 }
703
704 /* Check for any error code and valid firmware and MBP */
705 if (hfs.error_code || hfs.fpt_bad)
706 path = ME_ERROR_BIOS_PATH;
707
708 /* Check if the MBP is ready */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500709 if (!hfs2.mbp_rdy) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500710 printk(BIOS_CRIT, "%s: mbp is not ready!\n",
711 __FUNCTION__);
712 path = ME_ERROR_BIOS_PATH;
713 }
714
715#if CONFIG_ELOG
716 if (path != ME_NORMAL_BIOS_PATH) {
717 struct elog_event_data_me_extended data = {
718 .current_working_state = hfs.working_state,
719 .operation_state = hfs.operation_state,
720 .operation_mode = hfs.operation_mode,
721 .error_code = hfs.error_code,
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500722 .progress_code = hfs2.progress_code,
723 .current_pmevent = hfs2.current_pmevent,
724 .current_state = hfs2.current_state,
Aaron Durbin76c37002012-10-30 09:03:43 -0500725 };
726 elog_add_event_byte(ELOG_TYPE_MANAGEMENT_ENGINE, path);
727 elog_add_event_raw(ELOG_TYPE_MANAGEMENT_ENGINE_EXT,
728 &data, sizeof(data));
729 }
730#endif
731
732 return path;
733}
734
735/* Prepare ME for MEI messages */
736static int intel_mei_setup(device_t dev)
737{
738 struct resource *res;
739 struct mei_csr host;
740 u32 reg32;
741
742 /* Find the MMIO base for the ME interface */
743 res = find_resource(dev, PCI_BASE_ADDRESS_0);
744 if (!res || res->base == 0 || res->size == 0) {
745 printk(BIOS_DEBUG, "ME: MEI resource not present!\n");
746 return -1;
747 }
748 mei_base_address = res->base;
749
750 /* Ensure Memory and Bus Master bits are set */
751 reg32 = pci_read_config32(dev, PCI_COMMAND);
752 reg32 |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
753 pci_write_config32(dev, PCI_COMMAND, reg32);
754
755 /* Clean up status for next message */
756 read_host_csr(&host);
757 host.interrupt_generate = 1;
758 host.ready = 1;
759 host.reset = 0;
760 write_host_csr(&host);
761
762 return 0;
763}
764
765/* Read the Extend register hash of ME firmware */
766static int intel_me_extend_valid(device_t dev)
767{
768 struct me_heres status;
769 u32 extend[8] = {0};
770 int i, count = 0;
771
772 pci_read_dword_ptr(dev, &status, PCI_ME_HERES);
773 if (!status.extend_feature_present) {
774 printk(BIOS_ERR, "ME: Extend Feature not present\n");
775 return -1;
776 }
777
778 if (!status.extend_reg_valid) {
779 printk(BIOS_ERR, "ME: Extend Register not valid\n");
780 return -1;
781 }
782
783 switch (status.extend_reg_algorithm) {
784 case PCI_ME_EXT_SHA1:
785 count = 5;
786 printk(BIOS_DEBUG, "ME: Extend SHA-1: ");
787 break;
788 case PCI_ME_EXT_SHA256:
789 count = 8;
790 printk(BIOS_DEBUG, "ME: Extend SHA-256: ");
791 break;
792 default:
793 printk(BIOS_ERR, "ME: Extend Algorithm %d unknown\n",
794 status.extend_reg_algorithm);
795 return -1;
796 }
797
798 for (i = 0; i < count; ++i) {
799 extend[i] = pci_read_config32(dev, PCI_ME_HER(i));
800 printk(BIOS_DEBUG, "%08x", extend[i]);
801 }
802 printk(BIOS_DEBUG, "\n");
803
804#if CONFIG_CHROMEOS
805 /* Save hash in NVS for the OS to verify */
806 chromeos_set_me_hash(extend, count);
807#endif
808
809 return 0;
810}
811
Aaron Durbin76c37002012-10-30 09:03:43 -0500812/* Check whether ME is present and do basic init */
813static void intel_me_init(device_t dev)
814{
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700815 struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
Aaron Durbin76c37002012-10-30 09:03:43 -0500816 me_bios_path path = intel_me_path(dev);
817 me_bios_payload mbp_data;
818
819 /* Do initial setup and determine the BIOS path */
820 printk(BIOS_NOTICE, "ME: BIOS path: %s\n", me_bios_path_values[path]);
821
Duncan Laurie8056dc62013-07-22 08:47:43 -0700822 if (path == ME_NORMAL_BIOS_PATH) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500823 /* Validate the extend register */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500824 intel_me_extend_valid(dev);
825 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500826
Aaron Durbinbe985242012-12-12 12:40:33 -0600827 memset(&mbp_data, 0, sizeof(mbp_data));
828
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500829 /*
830 * According to the ME9 BWG, BIOS is required to fetch MBP data in
831 * all boot flows except S3 Resume.
832 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500833
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500834 /* Prepare MEI MMIO interface */
835 if (intel_mei_setup(dev) < 0)
836 return;
Aaron Durbin76c37002012-10-30 09:03:43 -0500837
Duncan Laurie144f7b22013-05-01 11:27:58 -0700838 if (intel_me_read_mbp(&mbp_data, dev))
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500839 return;
Aaron Durbin76c37002012-10-30 09:03:43 -0500840
841#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
Aaron Durbinbe985242012-12-12 12:40:33 -0600842 me_print_fw_version(mbp_data.fw_version_name);
Duncan Laurie0b3cd362013-08-08 15:40:01 -0700843#if CONFIG_DEBUG_INTEL_ME
Aaron Durbinbe985242012-12-12 12:40:33 -0600844 me_print_fwcaps(mbp_data.fw_capabilities);
Duncan Laurie0b3cd362013-08-08 15:40:01 -0700845#endif
Duncan Laurie144f7b22013-05-01 11:27:58 -0700846
847 if (mbp_data.plat_time) {
848 printk(BIOS_DEBUG, "ME: Wake Event to ME Reset: %u ms\n",
849 mbp_data.plat_time->wake_event_mrst_time_ms);
850 printk(BIOS_DEBUG, "ME: ME Reset to Platform Reset: %u ms\n",
851 mbp_data.plat_time->mrst_pltrst_time_ms);
852 printk(BIOS_DEBUG, "ME: Platform Reset to CPU Reset: %u ms\n",
853 mbp_data.plat_time->pltrst_cpurst_time_ms);
854 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500855#endif
856
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700857 /* Set clock enables according to devicetree */
858 if (config && config->icc_clock_disable)
859 me_icc_set_clock_enables(config->icc_clock_disable);
860
Duncan Laurieaf980622013-07-18 23:02:18 -0700861 /*
862 * Leave the ME unlocked. It will be locked via SMI command later.
863 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500864}
865
866static void set_subsystem(device_t dev, unsigned vendor, unsigned device)
867{
868 if (!vendor || !device) {
869 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
870 pci_read_config32(dev, PCI_VENDOR_ID));
871 } else {
872 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
873 ((device & 0xffff) << 16) | (vendor & 0xffff));
874 }
875}
876
877static struct pci_operations pci_ops = {
878 .set_subsystem = set_subsystem,
879};
880
Duncan Laurie8056dc62013-07-22 08:47:43 -0700881static void intel_me_enable(device_t dev)
882{
Duncan Laurie8056dc62013-07-22 08:47:43 -0700883 /* Avoid talking to the device in S3 path */
Kyösti Mälkkic3ed8862014-06-19 19:50:51 +0300884 if (acpi_is_wakeup_s3()) {
Duncan Laurie8056dc62013-07-22 08:47:43 -0700885 dev->enabled = 0;
886 pch_disable_devfn(dev);
887 }
Duncan Laurie8056dc62013-07-22 08:47:43 -0700888}
889
Aaron Durbin76c37002012-10-30 09:03:43 -0500890static struct device_operations device_ops = {
891 .read_resources = pci_dev_read_resources,
892 .set_resources = pci_dev_set_resources,
893 .enable_resources = pci_dev_enable_resources,
Duncan Laurie8056dc62013-07-22 08:47:43 -0700894 .enable = intel_me_enable,
Aaron Durbin76c37002012-10-30 09:03:43 -0500895 .init = intel_me_init,
Aaron Durbin76c37002012-10-30 09:03:43 -0500896 .ops_pci = &pci_ops,
897};
898
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800899static const unsigned short pci_device_ids[] = {
900 0x8c3a, /* Mobile */
901 0x9c3a, /* Low Power */
902 0
903};
904
Aaron Durbin76c37002012-10-30 09:03:43 -0500905static const struct pci_driver intel_me __pci_driver = {
906 .ops = &device_ops,
907 .vendor = PCI_VENDOR_ID_INTEL,
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800908 .devices= pci_device_ids,
Aaron Durbin76c37002012-10-30 09:03:43 -0500909};
910
911/******************************************************************************
912 * */
913static u32 me_to_host_words_pending(void)
914{
915 struct mei_csr me;
916 read_me_csr(&me);
917 if (!me.ready)
918 return 0;
919 return (me.buffer_write_ptr - me.buffer_read_ptr) &
920 (me.buffer_depth - 1);
921}
922
923#if 0
924/* This function is not yet being used, keep it in for the future. */
925static u32 host_to_me_words_room(void)
926{
927 struct mei_csr csr;
928
929 read_me_csr(&csr);
930 if (!csr.ready)
931 return 0;
932
933 read_host_csr(&csr);
934 return (csr.buffer_read_ptr - csr.buffer_write_ptr - 1) &
935 (csr.buffer_depth - 1);
936}
937#endif
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500938
Aaron Durbinbe985242012-12-12 12:40:33 -0600939struct mbp_payload {
940 mbp_header header;
941 u32 data[0];
942};
943
Aaron Durbin76c37002012-10-30 09:03:43 -0500944/*
945 * mbp seems to be following its own flow, let's retrieve it in a dedicated
946 * function.
947 */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500948static int intel_me_read_mbp(me_bios_payload *mbp_data, device_t dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500949{
950 mbp_header mbp_hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -0500951 u32 me2host_pending;
Aaron Durbin76c37002012-10-30 09:03:43 -0500952 struct mei_csr host;
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500953 struct me_hfs2 hfs2;
Aaron Durbinbe985242012-12-12 12:40:33 -0600954 struct mbp_payload *mbp;
955 int i;
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500956
957 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
958
959 if (!hfs2.mbp_rdy) {
960 printk(BIOS_ERR, "ME: MBP not ready\n");
961 goto mbp_failure;
962 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500963
964 me2host_pending = me_to_host_words_pending();
965 if (!me2host_pending) {
966 printk(BIOS_ERR, "ME: no mbp data!\n");
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500967 goto mbp_failure;
Aaron Durbin76c37002012-10-30 09:03:43 -0500968 }
969
970 /* we know for sure that at least the header is there */
971 mei_read_dword_ptr(&mbp_hdr, MEI_ME_CB_RW);
972
973 if ((mbp_hdr.num_entries > (mbp_hdr.mbp_size / 2)) ||
974 (me2host_pending < mbp_hdr.mbp_size)) {
975 printk(BIOS_ERR, "ME: mbp of %d entries, total size %d words"
976 " buffer contains %d words\n",
977 mbp_hdr.num_entries, mbp_hdr.mbp_size,
978 me2host_pending);
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500979 goto mbp_failure;
Aaron Durbin76c37002012-10-30 09:03:43 -0500980 }
Aaron Durbinbe985242012-12-12 12:40:33 -0600981 mbp = malloc(mbp_hdr.mbp_size * sizeof(u32));
982 if (!mbp)
983 goto mbp_failure;
Aaron Durbin76c37002012-10-30 09:03:43 -0500984
Aaron Durbinbe985242012-12-12 12:40:33 -0600985 mbp->header = mbp_hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -0500986 me2host_pending--;
Aaron Durbin76c37002012-10-30 09:03:43 -0500987
Aaron Durbinbe985242012-12-12 12:40:33 -0600988 i = 0;
989 while (i != me2host_pending) {
990 mei_read_dword_ptr(&mbp->data[i], MEI_ME_CB_RW);
991 i++;
Aaron Durbin76c37002012-10-30 09:03:43 -0500992 }
993
Aaron Durbinbe985242012-12-12 12:40:33 -0600994 /* Signal to the ME that the host has finished reading the MBP. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500995 read_host_csr(&host);
996 host.interrupt_generate = 1;
997 write_host_csr(&host);
998
Duncan Laurie3d299c42013-07-19 08:48:05 -0700999#if !CONFIG_ME_MBP_CLEAR_LATE
Aaron Durbinbe985242012-12-12 12:40:33 -06001000 /* Wait for the mbp_cleared indicator. */
Duncan Laurie3d299c42013-07-19 08:48:05 -07001001 intel_me_mbp_clear(dev);
1002#endif
Aaron Durbin76c37002012-10-30 09:03:43 -05001003
Aaron Durbinbe985242012-12-12 12:40:33 -06001004 /* Dump out the MBP contents. */
1005#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
1006 printk(BIOS_INFO, "ME MBP: Header: items: %d, size dw: %d\n",
1007 mbp->header.num_entries, mbp->header.mbp_size);
Duncan Laurie0b3cd362013-08-08 15:40:01 -07001008#if CONFIG_DEBUG_INTEL_ME
Aaron Durbinbe985242012-12-12 12:40:33 -06001009 for (i = 0; i < mbp->header.mbp_size - 1; i++) {
1010 printk(BIOS_INFO, "ME MBP: %04x: 0x%08x\n", i, mbp->data[i]);
1011 }
1012#endif
Duncan Laurie0b3cd362013-08-08 15:40:01 -07001013#endif
Aaron Durbinbe985242012-12-12 12:40:33 -06001014
1015 #define ASSIGN_FIELD_PTR(field_,val_) \
1016 { \
1017 mbp_data->field_ = (typeof(mbp_data->field_))(void *)val_; \
1018 break; \
1019 }
1020 /* Setup the pointers in the me_bios_payload structure. */
1021 for (i = 0; i < mbp->header.mbp_size - 1;) {
1022 mbp_item_header *item = (void *)&mbp->data[i];
1023
1024 switch(MBP_MAKE_IDENT(item->app_id, item->item_id)) {
1025 case MBP_IDENT(KERNEL, FW_VER):
1026 ASSIGN_FIELD_PTR(fw_version_name, &mbp->data[i+1]);
1027
1028 case MBP_IDENT(ICC, PROFILE):
1029 ASSIGN_FIELD_PTR(icc_profile, &mbp->data[i+1]);
1030
1031 case MBP_IDENT(INTEL_AT, STATE):
1032 ASSIGN_FIELD_PTR(at_state, &mbp->data[i+1]);
1033
1034 case MBP_IDENT(KERNEL, FW_CAP):
1035 ASSIGN_FIELD_PTR(fw_capabilities, &mbp->data[i+1]);
1036
1037 case MBP_IDENT(KERNEL, ROM_BIST):
1038 ASSIGN_FIELD_PTR(rom_bist_data, &mbp->data[i+1]);
1039
1040 case MBP_IDENT(KERNEL, PLAT_KEY):
1041 ASSIGN_FIELD_PTR(platform_key, &mbp->data[i+1]);
1042
1043 case MBP_IDENT(KERNEL, FW_TYPE):
1044 ASSIGN_FIELD_PTR(fw_plat_type, &mbp->data[i+1]);
1045
1046 case MBP_IDENT(KERNEL, MFS_FAILURE):
1047 ASSIGN_FIELD_PTR(mfsintegrity, &mbp->data[i+1]);
1048
Duncan Laurie144f7b22013-05-01 11:27:58 -07001049 case MBP_IDENT(KERNEL, PLAT_TIME):
1050 ASSIGN_FIELD_PTR(plat_time, &mbp->data[i+1]);
1051
1052 case MBP_IDENT(NFC, SUPPORT_DATA):
1053 ASSIGN_FIELD_PTR(nfc_data, &mbp->data[i+1]);
1054
Aaron Durbinbe985242012-12-12 12:40:33 -06001055 default:
Duncan Laurie0b3cd362013-08-08 15:40:01 -07001056 printk(BIOS_ERR, "ME MBP: unknown item 0x%x @ "
1057 "dw offset 0x%x\n", mbp->data[i], i);
Aaron Durbinbe985242012-12-12 12:40:33 -06001058 break;
1059 }
1060 i += item->length;
1061 }
1062 #undef ASSIGN_FIELD_PTR
1063
Aaron Durbin76c37002012-10-30 09:03:43 -05001064 return 0;
Aaron Durbin9aa031e2012-11-02 09:16:46 -05001065
1066mbp_failure:
1067 intel_me_mbp_give_up(dev);
1068 return -1;
Aaron Durbin76c37002012-10-30 09:03:43 -05001069}
Duncan Laurieaf980622013-07-18 23:02:18 -07001070
1071#endif /* !__SMM__ */