blob: e01316f28ebb88253fa72e776965164f82af6a7c [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>
31#include <arch/hlt.h>
32#include <arch/io.h>
33#include <console/console.h>
Stefan Reinauer24d1d4b2013-03-21 11:51:41 -070034#include <device/device.h>
35#include <device/pci.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050036#include <device/pci_ids.h>
37#include <device/pci_def.h>
38#include <string.h>
39#include <delay.h>
40#include <elog.h>
41
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
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700377static inline int mei_sendrecv_mkhi(struct mkhi_header *mkhi,
378 void *req_data, int req_bytes,
379 void *rsp_data, int rsp_bytes)
Aaron Durbin76c37002012-10-30 09:03:43 -0500380{
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700381 struct mkhi_header mkhi_rsp;
382
383 /* Send header */
384 if (mei_send_header(MEI_ADDRESS_MKHI, MEI_HOST_ADDRESS,
385 mkhi, sizeof(*mkhi), req_bytes ? 0 : 1) < 0)
Aaron Durbin76c37002012-10-30 09:03:43 -0500386 return -1;
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700387
388 /* Send data if available */
389 if (req_bytes && mei_send_data(MEI_ADDRESS_MKHI, MEI_HOST_ADDRESS,
390 req_data, req_bytes) < 0)
Aaron Durbin76c37002012-10-30 09:03:43 -0500391 return -1;
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700392
393 /* Return now if no response expected */
394 if (!rsp_bytes)
395 return 0;
396
397 /* Read header and data */
398 if (mei_recv_msg(&mkhi_rsp, sizeof(mkhi_rsp),
399 rsp_data, rsp_bytes) < 0)
400 return -1;
401
402 if (!mkhi_rsp.is_response ||
403 mkhi->group_id != mkhi_rsp.group_id ||
404 mkhi->command != mkhi_rsp.command) {
405 printk(BIOS_ERR, "ME: invalid response, group %u ?= %u,"
406 "command %u ?= %u, is_response %u\n", mkhi->group_id,
407 mkhi_rsp.group_id, mkhi->command, mkhi_rsp.command,
408 mkhi_rsp.is_response);
409 return -1;
410 }
411
Aaron Durbin76c37002012-10-30 09:03:43 -0500412 return 0;
413}
414
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700415static inline int mei_sendrecv_icc(struct icc_header *icc,
416 void *req_data, int req_bytes,
417 void *rsp_data, int rsp_bytes)
418{
419 struct icc_header icc_rsp;
420
421 /* Send header */
422 if (mei_send_header(MEI_ADDRESS_ICC, MEI_HOST_ADDRESS,
423 icc, sizeof(*icc), req_bytes ? 0 : 1) < 0)
424 return -1;
425
426 /* Send data if available */
427 if (req_bytes && mei_send_data(MEI_ADDRESS_ICC, MEI_HOST_ADDRESS,
428 req_data, req_bytes) < 0)
429 return -1;
430
431 /* Read header and data, if needed */
432 if (rsp_bytes && mei_recv_msg(&icc_rsp, sizeof(icc_rsp),
433 rsp_data, rsp_bytes) < 0)
434 return -1;
435
436 return 0;
437}
438
Duncan Laurie3d299c42013-07-19 08:48:05 -0700439/*
440 * mbp give up routine. This path is taken if hfs.mpb_rdy is 0 or the read
441 * state machine on the BIOS end doesn't match the ME's state machine.
442 */
443static void intel_me_mbp_give_up(device_t dev)
444{
445 struct mei_csr csr;
446
447 pci_write_config32(dev, PCI_ME_H_GS2, PCI_ME_MBP_GIVE_UP);
448
449 read_host_csr(&csr);
450 csr.reset = 1;
451 csr.interrupt_generate = 1;
452 write_host_csr(&csr);
453}
454
455/*
456 * mbp clear routine. This will wait for the ME to indicate that
457 * the MBP has been read and cleared.
458 */
459void intel_me_mbp_clear(device_t dev)
460{
461 int count;
462 struct me_hfs2 hfs2;
463
464 /* Wait for the mbp_cleared indicator */
465 for (count = ME_RETRY; count > 0; --count) {
466 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
467 if (hfs2.mbp_cleared)
468 break;
469 udelay(ME_DELAY);
470 }
471
472 if (count == 0) {
473 printk(BIOS_WARNING, "ME: Timeout waiting for mbp_cleared\n");
474 intel_me_mbp_give_up(dev);
475 } else {
476 printk(BIOS_INFO, "ME: MBP cleared\n");
477 }
478}
479
Duncan Laurieaf980622013-07-18 23:02:18 -0700480#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG) && !defined(__SMM__)
Aaron Durbin76c37002012-10-30 09:03:43 -0500481static inline void print_cap(const char *name, int state)
482{
483 printk(BIOS_DEBUG, "ME Capability: %-41s : %sabled\n",
484 name, state ? " en" : "dis");
485}
486
487static void me_print_fw_version(mbp_fw_version_name *vers_name)
488{
Aaron Durbinbe985242012-12-12 12:40:33 -0600489 if (!vers_name) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500490 printk(BIOS_ERR, "ME: mbp missing version report\n");
491 return;
492 }
493
494 printk(BIOS_DEBUG, "ME: found version %d.%d.%d.%d\n",
495 vers_name->major_version, vers_name->minor_version,
496 vers_name->hotfix_version, vers_name->build_version);
497}
498
499/* Get ME Firmware Capabilities */
Aaron Durbinbe985242012-12-12 12:40:33 -0600500static int mkhi_get_fwcaps(mbp_mefwcaps *cap)
Aaron Durbin76c37002012-10-30 09:03:43 -0500501{
502 u32 rule_id = 0;
503 struct me_fwcaps cap_msg;
504 struct mkhi_header mkhi = {
505 .group_id = MKHI_GROUP_ID_FWCAPS,
506 .command = MKHI_FWCAPS_GET_RULE,
507 };
Aaron Durbin76c37002012-10-30 09:03:43 -0500508
509 /* Send request and wait for response */
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700510 if (mei_sendrecv_mkhi(&mkhi, &rule_id, sizeof(u32),
511 &cap_msg, sizeof(cap_msg)) < 0) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500512 printk(BIOS_ERR, "ME: GET FWCAPS message failed\n");
513 return -1;
514 }
515 *cap = cap_msg.caps_sku;
516 return 0;
517}
518
519/* Get ME Firmware Capabilities */
Aaron Durbinbe985242012-12-12 12:40:33 -0600520static void me_print_fwcaps(mbp_mefwcaps *cap)
Aaron Durbin76c37002012-10-30 09:03:43 -0500521{
Aaron Durbinbe985242012-12-12 12:40:33 -0600522 mbp_mefwcaps local_caps;
523 if (!cap) {
524 cap = &local_caps;
Aaron Durbin76c37002012-10-30 09:03:43 -0500525 printk(BIOS_ERR, "ME: mbp missing fwcaps report\n");
526 if (mkhi_get_fwcaps(cap))
527 return;
528 }
529
530 print_cap("Full Network manageability", cap->full_net);
531 print_cap("Regular Network manageability", cap->std_net);
532 print_cap("Manageability", cap->manageability);
Aaron Durbin76c37002012-10-30 09:03:43 -0500533 print_cap("IntelR Anti-Theft (AT)", cap->intel_at);
534 print_cap("IntelR Capability Licensing Service (CLS)", cap->intel_cls);
535 print_cap("IntelR Power Sharing Technology (MPC)", cap->intel_mpc);
536 print_cap("ICC Over Clocking", cap->icc_over_clocking);
537 print_cap("Protected Audio Video Path (PAVP)", cap->pavp);
538 print_cap("IPV6", cap->ipv6);
539 print_cap("KVM Remote Control (KVM)", cap->kvm);
540 print_cap("Outbreak Containment Heuristic (OCH)", cap->och);
541 print_cap("Virtual LAN (VLAN)", cap->vlan);
542 print_cap("TLS", cap->tls);
543 print_cap("Wireless LAN (WLAN)", cap->wlan);
544}
545#endif
546
547#if CONFIG_CHROMEOS && 0 /* DISABLED */
548/* Tell ME to issue a global reset */
549static int mkhi_global_reset(void)
550{
551 struct me_global_reset reset = {
552 .request_origin = GLOBAL_RESET_BIOS_POST,
553 .reset_type = CBM_RR_GLOBAL_RESET,
554 };
555 struct mkhi_header mkhi = {
556 .group_id = MKHI_GROUP_ID_CBM,
557 .command = MKHI_GLOBAL_RESET,
558 };
Aaron Durbin76c37002012-10-30 09:03:43 -0500559
560 /* Send request and wait for response */
561 printk(BIOS_NOTICE, "ME: %s\n", __FUNCTION__);
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700562 if (mei_sendrecv_mkhi(&mkhi, &reset, sizeof(reset), NULL, 0) < 0) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500563 /* No response means reset will happen shortly... */
564 hlt();
565 }
566
567 /* If the ME responded it rejected the reset request */
568 printk(BIOS_ERR, "ME: Global Reset failed\n");
569 return -1;
570}
571#endif
572
Duncan Laurieaf980622013-07-18 23:02:18 -0700573#ifdef __SMM__
574
Aaron Durbin76c37002012-10-30 09:03:43 -0500575/* Send END OF POST message to the ME */
576static int mkhi_end_of_post(void)
577{
578 struct mkhi_header mkhi = {
579 .group_id = MKHI_GROUP_ID_GEN,
580 .command = MKHI_END_OF_POST,
581 };
Aaron Durbin76c37002012-10-30 09:03:43 -0500582 u32 eop_ack;
583
584 /* Send request and wait for response */
585 printk(BIOS_NOTICE, "ME: %s\n", __FUNCTION__);
Duncan Laurie2017b4a2013-08-08 15:07:12 -0700586 if (mei_sendrecv_mkhi(&mkhi, NULL, 0, &eop_ack, sizeof(eop_ack)) < 0) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500587 printk(BIOS_ERR, "ME: END OF POST message failed\n");
588 return -1;
589 }
590
591 printk(BIOS_INFO, "ME: END OF POST message successful (%d)\n", eop_ack);
592 return 0;
593}
594
Duncan Laurieaf980622013-07-18 23:02:18 -0700595void intel_me_finalize_smm(void)
596{
597 struct me_hfs hfs;
598 u32 reg32;
599
600 mei_base_address =
601 pci_read_config32(PCH_ME_DEV, PCI_BASE_ADDRESS_0) & ~0xf;
602
603 /* S3 path will have hidden this device already */
604 if (!mei_base_address || mei_base_address == 0xfffffff0)
605 return;
606
Duncan Laurie3d299c42013-07-19 08:48:05 -0700607#if CONFIG_ME_MBP_CLEAR_LATE
608 /* Wait for ME MBP Cleared indicator */
609 intel_me_mbp_clear(PCH_ME_DEV);
610#endif
611
Duncan Laurieaf980622013-07-18 23:02:18 -0700612 /* Make sure ME is in a mode that expects EOP */
613 reg32 = pci_read_config32(PCH_ME_DEV, PCI_ME_HFS);
614 memcpy(&hfs, &reg32, sizeof(u32));
615
616 /* Abort and leave device alone if not normal mode */
617 if (hfs.fpt_bad ||
618 hfs.working_state != ME_HFS_CWS_NORMAL ||
619 hfs.operation_mode != ME_HFS_MODE_NORMAL)
620 return;
621
622 /* Try to send EOP command so ME stops accepting other commands */
623 mkhi_end_of_post();
624
625 /* Make sure IO is disabled */
626 reg32 = pci_read_config32(PCH_ME_DEV, PCI_COMMAND);
627 reg32 &= ~(PCI_COMMAND_MASTER |
628 PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
629 pci_write_config32(PCH_ME_DEV, PCI_COMMAND, reg32);
630
631 /* Hide the PCI device */
632 RCBA32_OR(FD2, PCH_DISABLE_MEI1);
633}
634
635#else /* !__SMM__ */
636
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700637static int me_icc_set_clock_enables(u32 mask)
638{
639 struct icc_clock_enables_msg clk = {
640 .clock_enables = 0, /* Turn off specified clocks */
641 .clock_mask = mask,
642 .no_response = 1, /* Do not expect response */
643 };
644 struct icc_header icc = {
645 .api_version = ICC_API_VERSION_LYNXPOINT,
646 .icc_command = ICC_SET_CLOCK_ENABLES,
647 .length = sizeof(clk),
648 };
649
650 /* Send request and wait for response */
651 if (mei_sendrecv_icc(&icc, &clk, sizeof(clk), NULL, 0) < 0) {
652 printk(BIOS_ERR, "ME: ICC SET CLOCK ENABLES message failed\n");
653 return -1;
654 } else {
655 printk(BIOS_INFO, "ME: ICC SET CLOCK ENABLES 0x%08x\n", mask);
656 }
657
658 return 0;
659}
660
Aaron Durbin76c37002012-10-30 09:03:43 -0500661/* Determine the path that we should take based on ME status */
662static me_bios_path intel_me_path(device_t dev)
663{
664 me_bios_path path = ME_DISABLE_BIOS_PATH;
665 struct me_hfs hfs;
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500666 struct me_hfs2 hfs2;
Aaron Durbin76c37002012-10-30 09:03:43 -0500667
Aaron Durbin76c37002012-10-30 09:03:43 -0500668 pci_read_dword_ptr(dev, &hfs, PCI_ME_HFS);
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500669 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
Aaron Durbin76c37002012-10-30 09:03:43 -0500670
671 /* Check and dump status */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500672 intel_me_status(&hfs, &hfs2);
Aaron Durbin76c37002012-10-30 09:03:43 -0500673
674 /* Check Current Working State */
675 switch (hfs.working_state) {
676 case ME_HFS_CWS_NORMAL:
677 path = ME_NORMAL_BIOS_PATH;
678 break;
679 case ME_HFS_CWS_REC:
680 path = ME_RECOVERY_BIOS_PATH;
681 break;
682 default:
683 path = ME_DISABLE_BIOS_PATH;
684 break;
685 }
686
687 /* Check Current Operation Mode */
688 switch (hfs.operation_mode) {
689 case ME_HFS_MODE_NORMAL:
690 break;
691 case ME_HFS_MODE_DEBUG:
692 case ME_HFS_MODE_DIS:
693 case ME_HFS_MODE_OVER_JMPR:
694 case ME_HFS_MODE_OVER_MEI:
695 default:
696 path = ME_DISABLE_BIOS_PATH;
697 break;
698 }
699
700 /* Check for any error code and valid firmware and MBP */
701 if (hfs.error_code || hfs.fpt_bad)
702 path = ME_ERROR_BIOS_PATH;
703
704 /* Check if the MBP is ready */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500705 if (!hfs2.mbp_rdy) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500706 printk(BIOS_CRIT, "%s: mbp is not ready!\n",
707 __FUNCTION__);
708 path = ME_ERROR_BIOS_PATH;
709 }
710
711#if CONFIG_ELOG
712 if (path != ME_NORMAL_BIOS_PATH) {
713 struct elog_event_data_me_extended data = {
714 .current_working_state = hfs.working_state,
715 .operation_state = hfs.operation_state,
716 .operation_mode = hfs.operation_mode,
717 .error_code = hfs.error_code,
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500718 .progress_code = hfs2.progress_code,
719 .current_pmevent = hfs2.current_pmevent,
720 .current_state = hfs2.current_state,
Aaron Durbin76c37002012-10-30 09:03:43 -0500721 };
722 elog_add_event_byte(ELOG_TYPE_MANAGEMENT_ENGINE, path);
723 elog_add_event_raw(ELOG_TYPE_MANAGEMENT_ENGINE_EXT,
724 &data, sizeof(data));
725 }
726#endif
727
728 return path;
729}
730
731/* Prepare ME for MEI messages */
732static int intel_mei_setup(device_t dev)
733{
734 struct resource *res;
735 struct mei_csr host;
736 u32 reg32;
737
738 /* Find the MMIO base for the ME interface */
739 res = find_resource(dev, PCI_BASE_ADDRESS_0);
740 if (!res || res->base == 0 || res->size == 0) {
741 printk(BIOS_DEBUG, "ME: MEI resource not present!\n");
742 return -1;
743 }
744 mei_base_address = res->base;
745
746 /* Ensure Memory and Bus Master bits are set */
747 reg32 = pci_read_config32(dev, PCI_COMMAND);
748 reg32 |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
749 pci_write_config32(dev, PCI_COMMAND, reg32);
750
751 /* Clean up status for next message */
752 read_host_csr(&host);
753 host.interrupt_generate = 1;
754 host.ready = 1;
755 host.reset = 0;
756 write_host_csr(&host);
757
758 return 0;
759}
760
761/* Read the Extend register hash of ME firmware */
762static int intel_me_extend_valid(device_t dev)
763{
764 struct me_heres status;
765 u32 extend[8] = {0};
766 int i, count = 0;
767
768 pci_read_dword_ptr(dev, &status, PCI_ME_HERES);
769 if (!status.extend_feature_present) {
770 printk(BIOS_ERR, "ME: Extend Feature not present\n");
771 return -1;
772 }
773
774 if (!status.extend_reg_valid) {
775 printk(BIOS_ERR, "ME: Extend Register not valid\n");
776 return -1;
777 }
778
779 switch (status.extend_reg_algorithm) {
780 case PCI_ME_EXT_SHA1:
781 count = 5;
782 printk(BIOS_DEBUG, "ME: Extend SHA-1: ");
783 break;
784 case PCI_ME_EXT_SHA256:
785 count = 8;
786 printk(BIOS_DEBUG, "ME: Extend SHA-256: ");
787 break;
788 default:
789 printk(BIOS_ERR, "ME: Extend Algorithm %d unknown\n",
790 status.extend_reg_algorithm);
791 return -1;
792 }
793
794 for (i = 0; i < count; ++i) {
795 extend[i] = pci_read_config32(dev, PCI_ME_HER(i));
796 printk(BIOS_DEBUG, "%08x", extend[i]);
797 }
798 printk(BIOS_DEBUG, "\n");
799
800#if CONFIG_CHROMEOS
801 /* Save hash in NVS for the OS to verify */
802 chromeos_set_me_hash(extend, count);
803#endif
804
805 return 0;
806}
807
Aaron Durbin76c37002012-10-30 09:03:43 -0500808/* Check whether ME is present and do basic init */
809static void intel_me_init(device_t dev)
810{
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700811 struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
Aaron Durbin76c37002012-10-30 09:03:43 -0500812 me_bios_path path = intel_me_path(dev);
813 me_bios_payload mbp_data;
814
815 /* Do initial setup and determine the BIOS path */
816 printk(BIOS_NOTICE, "ME: BIOS path: %s\n", me_bios_path_values[path]);
817
Duncan Laurie8056dc62013-07-22 08:47:43 -0700818 if (path == ME_NORMAL_BIOS_PATH) {
Aaron Durbin76c37002012-10-30 09:03:43 -0500819 /* Validate the extend register */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500820 intel_me_extend_valid(dev);
821 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500822
Aaron Durbinbe985242012-12-12 12:40:33 -0600823 memset(&mbp_data, 0, sizeof(mbp_data));
824
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500825 /*
826 * According to the ME9 BWG, BIOS is required to fetch MBP data in
827 * all boot flows except S3 Resume.
828 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500829
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500830 /* Prepare MEI MMIO interface */
831 if (intel_mei_setup(dev) < 0)
832 return;
Aaron Durbin76c37002012-10-30 09:03:43 -0500833
Duncan Laurie144f7b22013-05-01 11:27:58 -0700834 if (intel_me_read_mbp(&mbp_data, dev))
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500835 return;
Aaron Durbin76c37002012-10-30 09:03:43 -0500836
837#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
Aaron Durbinbe985242012-12-12 12:40:33 -0600838 me_print_fw_version(mbp_data.fw_version_name);
839 me_print_fwcaps(mbp_data.fw_capabilities);
Duncan Laurie144f7b22013-05-01 11:27:58 -0700840
841 if (mbp_data.plat_time) {
842 printk(BIOS_DEBUG, "ME: Wake Event to ME Reset: %u ms\n",
843 mbp_data.plat_time->wake_event_mrst_time_ms);
844 printk(BIOS_DEBUG, "ME: ME Reset to Platform Reset: %u ms\n",
845 mbp_data.plat_time->mrst_pltrst_time_ms);
846 printk(BIOS_DEBUG, "ME: Platform Reset to CPU Reset: %u ms\n",
847 mbp_data.plat_time->pltrst_cpurst_time_ms);
848 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500849#endif
850
Duncan Laurie0dc0d132013-08-08 15:31:51 -0700851 /* Set clock enables according to devicetree */
852 if (config && config->icc_clock_disable)
853 me_icc_set_clock_enables(config->icc_clock_disable);
854
Duncan Laurieaf980622013-07-18 23:02:18 -0700855 /*
856 * Leave the ME unlocked. It will be locked via SMI command later.
857 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500858}
859
860static void set_subsystem(device_t dev, unsigned vendor, unsigned device)
861{
862 if (!vendor || !device) {
863 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
864 pci_read_config32(dev, PCI_VENDOR_ID));
865 } else {
866 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
867 ((device & 0xffff) << 16) | (vendor & 0xffff));
868 }
869}
870
871static struct pci_operations pci_ops = {
872 .set_subsystem = set_subsystem,
873};
874
Duncan Laurie8056dc62013-07-22 08:47:43 -0700875static void intel_me_enable(device_t dev)
876{
877#if CONFIG_HAVE_ACPI_RESUME
878 /* Avoid talking to the device in S3 path */
879 if (acpi_slp_type == 3) {
880 dev->enabled = 0;
881 pch_disable_devfn(dev);
882 }
883#endif
884}
885
Aaron Durbin76c37002012-10-30 09:03:43 -0500886static struct device_operations device_ops = {
887 .read_resources = pci_dev_read_resources,
888 .set_resources = pci_dev_set_resources,
889 .enable_resources = pci_dev_enable_resources,
Duncan Laurie8056dc62013-07-22 08:47:43 -0700890 .enable = intel_me_enable,
Aaron Durbin76c37002012-10-30 09:03:43 -0500891 .init = intel_me_init,
Aaron Durbin76c37002012-10-30 09:03:43 -0500892 .ops_pci = &pci_ops,
893};
894
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800895static const unsigned short pci_device_ids[] = {
896 0x8c3a, /* Mobile */
897 0x9c3a, /* Low Power */
898 0
899};
900
Aaron Durbin76c37002012-10-30 09:03:43 -0500901static const struct pci_driver intel_me __pci_driver = {
902 .ops = &device_ops,
903 .vendor = PCI_VENDOR_ID_INTEL,
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800904 .devices= pci_device_ids,
Aaron Durbin76c37002012-10-30 09:03:43 -0500905};
906
907/******************************************************************************
908 * */
909static u32 me_to_host_words_pending(void)
910{
911 struct mei_csr me;
912 read_me_csr(&me);
913 if (!me.ready)
914 return 0;
915 return (me.buffer_write_ptr - me.buffer_read_ptr) &
916 (me.buffer_depth - 1);
917}
918
919#if 0
920/* This function is not yet being used, keep it in for the future. */
921static u32 host_to_me_words_room(void)
922{
923 struct mei_csr csr;
924
925 read_me_csr(&csr);
926 if (!csr.ready)
927 return 0;
928
929 read_host_csr(&csr);
930 return (csr.buffer_read_ptr - csr.buffer_write_ptr - 1) &
931 (csr.buffer_depth - 1);
932}
933#endif
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500934
Aaron Durbinbe985242012-12-12 12:40:33 -0600935struct mbp_payload {
936 mbp_header header;
937 u32 data[0];
938};
939
Aaron Durbin76c37002012-10-30 09:03:43 -0500940/*
941 * mbp seems to be following its own flow, let's retrieve it in a dedicated
942 * function.
943 */
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500944static int intel_me_read_mbp(me_bios_payload *mbp_data, device_t dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500945{
946 mbp_header mbp_hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -0500947 u32 me2host_pending;
Aaron Durbin76c37002012-10-30 09:03:43 -0500948 struct mei_csr host;
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500949 struct me_hfs2 hfs2;
Aaron Durbinbe985242012-12-12 12:40:33 -0600950 struct mbp_payload *mbp;
951 int i;
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500952
953 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
954
955 if (!hfs2.mbp_rdy) {
956 printk(BIOS_ERR, "ME: MBP not ready\n");
957 goto mbp_failure;
958 }
Aaron Durbin76c37002012-10-30 09:03:43 -0500959
960 me2host_pending = me_to_host_words_pending();
961 if (!me2host_pending) {
962 printk(BIOS_ERR, "ME: no mbp data!\n");
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500963 goto mbp_failure;
Aaron Durbin76c37002012-10-30 09:03:43 -0500964 }
965
966 /* we know for sure that at least the header is there */
967 mei_read_dword_ptr(&mbp_hdr, MEI_ME_CB_RW);
968
969 if ((mbp_hdr.num_entries > (mbp_hdr.mbp_size / 2)) ||
970 (me2host_pending < mbp_hdr.mbp_size)) {
971 printk(BIOS_ERR, "ME: mbp of %d entries, total size %d words"
972 " buffer contains %d words\n",
973 mbp_hdr.num_entries, mbp_hdr.mbp_size,
974 me2host_pending);
Aaron Durbin9aa031e2012-11-02 09:16:46 -0500975 goto mbp_failure;
Aaron Durbin76c37002012-10-30 09:03:43 -0500976 }
Aaron Durbinbe985242012-12-12 12:40:33 -0600977 mbp = malloc(mbp_hdr.mbp_size * sizeof(u32));
978 if (!mbp)
979 goto mbp_failure;
Aaron Durbin76c37002012-10-30 09:03:43 -0500980
Aaron Durbinbe985242012-12-12 12:40:33 -0600981 mbp->header = mbp_hdr;
Aaron Durbin76c37002012-10-30 09:03:43 -0500982 me2host_pending--;
Aaron Durbin76c37002012-10-30 09:03:43 -0500983
Aaron Durbinbe985242012-12-12 12:40:33 -0600984 i = 0;
985 while (i != me2host_pending) {
986 mei_read_dword_ptr(&mbp->data[i], MEI_ME_CB_RW);
987 i++;
Aaron Durbin76c37002012-10-30 09:03:43 -0500988 }
989
Aaron Durbinbe985242012-12-12 12:40:33 -0600990 /* Signal to the ME that the host has finished reading the MBP. */
Aaron Durbin76c37002012-10-30 09:03:43 -0500991 read_host_csr(&host);
992 host.interrupt_generate = 1;
993 write_host_csr(&host);
994
Duncan Laurie3d299c42013-07-19 08:48:05 -0700995#if !CONFIG_ME_MBP_CLEAR_LATE
Aaron Durbinbe985242012-12-12 12:40:33 -0600996 /* Wait for the mbp_cleared indicator. */
Duncan Laurie3d299c42013-07-19 08:48:05 -0700997 intel_me_mbp_clear(dev);
998#endif
Aaron Durbin76c37002012-10-30 09:03:43 -0500999
Aaron Durbinbe985242012-12-12 12:40:33 -06001000 /* Dump out the MBP contents. */
1001#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
1002 printk(BIOS_INFO, "ME MBP: Header: items: %d, size dw: %d\n",
1003 mbp->header.num_entries, mbp->header.mbp_size);
1004 for (i = 0; i < mbp->header.mbp_size - 1; i++) {
1005 printk(BIOS_INFO, "ME MBP: %04x: 0x%08x\n", i, mbp->data[i]);
1006 }
1007#endif
1008
1009 #define ASSIGN_FIELD_PTR(field_,val_) \
1010 { \
1011 mbp_data->field_ = (typeof(mbp_data->field_))(void *)val_; \
1012 break; \
1013 }
1014 /* Setup the pointers in the me_bios_payload structure. */
1015 for (i = 0; i < mbp->header.mbp_size - 1;) {
1016 mbp_item_header *item = (void *)&mbp->data[i];
1017
1018 switch(MBP_MAKE_IDENT(item->app_id, item->item_id)) {
1019 case MBP_IDENT(KERNEL, FW_VER):
1020 ASSIGN_FIELD_PTR(fw_version_name, &mbp->data[i+1]);
1021
1022 case MBP_IDENT(ICC, PROFILE):
1023 ASSIGN_FIELD_PTR(icc_profile, &mbp->data[i+1]);
1024
1025 case MBP_IDENT(INTEL_AT, STATE):
1026 ASSIGN_FIELD_PTR(at_state, &mbp->data[i+1]);
1027
1028 case MBP_IDENT(KERNEL, FW_CAP):
1029 ASSIGN_FIELD_PTR(fw_capabilities, &mbp->data[i+1]);
1030
1031 case MBP_IDENT(KERNEL, ROM_BIST):
1032 ASSIGN_FIELD_PTR(rom_bist_data, &mbp->data[i+1]);
1033
1034 case MBP_IDENT(KERNEL, PLAT_KEY):
1035 ASSIGN_FIELD_PTR(platform_key, &mbp->data[i+1]);
1036
1037 case MBP_IDENT(KERNEL, FW_TYPE):
1038 ASSIGN_FIELD_PTR(fw_plat_type, &mbp->data[i+1]);
1039
1040 case MBP_IDENT(KERNEL, MFS_FAILURE):
1041 ASSIGN_FIELD_PTR(mfsintegrity, &mbp->data[i+1]);
1042
Duncan Laurie144f7b22013-05-01 11:27:58 -07001043 case MBP_IDENT(KERNEL, PLAT_TIME):
1044 ASSIGN_FIELD_PTR(plat_time, &mbp->data[i+1]);
1045
1046 case MBP_IDENT(NFC, SUPPORT_DATA):
1047 ASSIGN_FIELD_PTR(nfc_data, &mbp->data[i+1]);
1048
Aaron Durbinbe985242012-12-12 12:40:33 -06001049 default:
1050 printk(BIOS_ERR, "ME MBP: unknown item 0x%x @ dw offset 0x%x\n",
1051 mbp->data[i], i);
1052 break;
1053 }
1054 i += item->length;
1055 }
1056 #undef ASSIGN_FIELD_PTR
1057
Aaron Durbin76c37002012-10-30 09:03:43 -05001058 return 0;
Aaron Durbin9aa031e2012-11-02 09:16:46 -05001059
1060mbp_failure:
1061 intel_me_mbp_give_up(dev);
1062 return -1;
Aaron Durbin76c37002012-10-30 09:03:43 -05001063}
Duncan Laurieaf980622013-07-18 23:02:18 -07001064
1065#endif /* !__SMM__ */