blob: 15bcc348cdd1b66e54fbc1664500faeba10873b4 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google Inc.
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; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20/*
21 * This is a ramstage driver for the Intel Management Engine found in the
22 * southbridge. It handles the required boot-time messages over the
23 * MMIO-based Management Engine Interface to tell the ME that the BIOS is
24 * finished with POST. Additional messages are defined for debug but are
25 * not used unless the console loglevel is high enough.
26 */
27
28#include <arch/acpi.h>
29#include <arch/hlt.h>
30#include <arch/io.h>
31#include <console/console.h>
32#include <device/device.h>
33#include <device/pci.h>
34#include <device/pci_ids.h>
35#include <device/pci_def.h>
36#include <string.h>
37#include <delay.h>
38#include <elog.h>
39#include <broadwell/me.h>
40#include <broadwell/lpc.h>
41#include <broadwell/pch.h>
42#include <broadwell/pci_devs.h>
43#include <broadwell/ramstage.h>
44#include <broadwell/rcba.h>
45#include <chip.h>
46
47#if CONFIG_CHROMEOS
48#include <vendorcode/google/chromeos/chromeos.h>
49#include <vendorcode/google/chromeos/gnvs.h>
50#endif
51
52/* Path that the BIOS should take based on ME state */
53static const char *me_bios_path_values[] = {
54 [ME_NORMAL_BIOS_PATH] = "Normal",
55 [ME_S3WAKE_BIOS_PATH] = "S3 Wake",
56 [ME_ERROR_BIOS_PATH] = "Error",
57 [ME_RECOVERY_BIOS_PATH] = "Recovery",
58 [ME_DISABLE_BIOS_PATH] = "Disable",
59 [ME_FIRMWARE_UPDATE_BIOS_PATH] = "Firmware Update",
60};
61static int intel_me_read_mbp(me_bios_payload *mbp_data, device_t dev);
62
63/* MMIO base address for MEI interface */
64static u32 mei_base_address;
65void intel_me_mbp_clear(device_t dev);
66
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
120static 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}
126
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
196static int mei_send_packet(struct mei_header *mei, void *req_data)
197{
198 struct mei_csr host;
199 unsigned ndata, n;
200 u32 *data;
201
202 /* Number of dwords to write */
203 ndata = mei->length >> 2;
204
205 /* Pad non-dword aligned request message length */
206 if (mei->length & 3)
207 ndata++;
208 if (!ndata) {
209 printk(BIOS_DEBUG, "ME: request has no data\n");
210 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
225 /* Ensure the requested length will fit in the circular buffer. */
226 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
236 /* 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
250static 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,
299 void *rsp_data, int rsp_bytes)
300{
301 struct mei_header mei_rsp;
302 struct mei_csr me, host;
303 unsigned ndata, n;
304 unsigned expected;
305 u32 *data;
306
307 /* Total number of dwords to read from circular buffer */
308 expected = (rsp_bytes + sizeof(mei_rsp) + header_bytes) >> 2;
309 if (rsp_bytes & 3)
310 expected++;
311
312 if (mei_wait_for_me_ready() < 0)
313 return -1;
314
315 /*
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
340 /* Handle non-dword responses and expect at least the header */
341 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
350 /* 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;
355
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
377static inline int mei_sendrecv_mkhi(struct mkhi_header *mkhi,
378 void *req_data, int req_bytes,
379 void *rsp_data, int rsp_bytes)
380{
381 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)
386 return -1;
387
388 /* Send data if available */
389 if (req_bytes && mei_send_data(MEI_ADDRESS_MKHI, MEI_HOST_ADDRESS,
390 req_data, req_bytes) < 0)
391 return -1;
392
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
412 return 0;
413}
414
415static 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
439/*
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
480#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
481static 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{
489 if (!vers_name) {
490 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#if CONFIG_DEBUG_INTEL_ME
500/* Get ME Firmware Capabilities */
501static int mkhi_get_fwcaps(mbp_mefwcaps *cap)
502{
503 u32 rule_id = 0;
504 struct me_fwcaps cap_msg;
505 struct mkhi_header mkhi = {
506 .group_id = MKHI_GROUP_ID_FWCAPS,
507 .command = MKHI_FWCAPS_GET_RULE,
508 };
509
510 /* Send request and wait for response */
511 if (mei_sendrecv_mkhi(&mkhi, &rule_id, sizeof(u32),
512 &cap_msg, sizeof(cap_msg)) < 0) {
513 printk(BIOS_ERR, "ME: GET FWCAPS message failed\n");
514 return -1;
515 }
516 *cap = cap_msg.caps_sku;
517 return 0;
518}
519
520/* Get ME Firmware Capabilities */
521static void me_print_fwcaps(mbp_mefwcaps *cap)
522{
523 mbp_mefwcaps local_caps;
524 if (!cap) {
525 cap = &local_caps;
526 printk(BIOS_ERR, "ME: mbp missing fwcaps report\n");
527 if (mkhi_get_fwcaps(cap))
528 return;
529 }
530
531 print_cap("Full Network manageability", cap->full_net);
532 print_cap("Regular Network manageability", cap->std_net);
533 print_cap("Manageability", cap->manageability);
534 print_cap("IntelR Anti-Theft (AT)", cap->intel_at);
535 print_cap("IntelR Capability Licensing Service (CLS)", cap->intel_cls);
536 print_cap("IntelR Power Sharing Technology (MPC)", cap->intel_mpc);
537 print_cap("ICC Over Clocking", cap->icc_over_clocking);
538 print_cap("Protected Audio Video Path (PAVP)", cap->pavp);
539 print_cap("IPV6", cap->ipv6);
540 print_cap("KVM Remote Control (KVM)", cap->kvm);
541 print_cap("Outbreak Containment Heuristic (OCH)", cap->och);
542 print_cap("Virtual LAN (VLAN)", cap->vlan);
543 print_cap("TLS", cap->tls);
544 print_cap("Wireless LAN (WLAN)", cap->wlan);
545}
546#endif
547#endif
548
549/* Send END OF POST message to the ME */
550static int mkhi_end_of_post(void)
551{
552 struct mkhi_header mkhi = {
553 .group_id = MKHI_GROUP_ID_GEN,
554 .command = MKHI_END_OF_POST,
555 };
556 u32 eop_ack;
557
558 /* Send request and wait for response */
559 printk(BIOS_NOTICE, "ME: %s\n", __FUNCTION__);
560 if (mei_sendrecv_mkhi(&mkhi, NULL, 0, &eop_ack, sizeof(eop_ack)) < 0) {
561 printk(BIOS_ERR, "ME: END OF POST message failed\n");
562 return -1;
563 }
564
565 printk(BIOS_INFO, "ME: END OF POST message successful (%d)\n", eop_ack);
566 return 0;
567}
568
569void intel_me_finalize(void)
570{
571 device_t dev = PCH_DEV_ME;
572 struct me_hfs hfs;
573 u32 reg32;
574
575 /* S3 path will have hidden this device already */
576 if (!mei_base_address || mei_base_address == 0xfffffff0)
577 return;
578
579#if CONFIG_ME_MBP_CLEAR_LATE
580 /* Wait for ME MBP Cleared indicator */
581 intel_me_mbp_clear(dev);
582#endif
583
584 /* Make sure ME is in a mode that expects EOP */
585 reg32 = pci_read_config32(dev, PCI_ME_HFS);
586 memcpy(&hfs, &reg32, sizeof(u32));
587
588 /* Abort and leave device alone if not normal mode */
589 if (hfs.fpt_bad ||
590 hfs.working_state != ME_HFS_CWS_NORMAL ||
591 hfs.operation_mode != ME_HFS_MODE_NORMAL)
592 return;
593
594 /* Try to send EOP command so ME stops accepting other commands */
595 mkhi_end_of_post();
596
597 /* Make sure IO is disabled */
598 reg32 = pci_read_config32(dev, PCI_COMMAND);
599 reg32 &= ~(PCI_COMMAND_MASTER |
600 PCI_COMMAND_MEMORY | PCI_COMMAND_IO);
601 pci_write_config32(dev, PCI_COMMAND, reg32);
602
603 /* Hide the PCI device */
604 RCBA32_OR(FD2, PCH_DISABLE_MEI1);
605}
606
607static int me_icc_set_clock_enables(u32 mask)
608{
609 struct icc_clock_enables_msg clk = {
610 .clock_enables = 0, /* Turn off specified clocks */
611 .clock_mask = mask,
612 .no_response = 1, /* Do not expect response */
613 };
614 struct icc_header icc = {
615 .api_version = ICC_API_VERSION_LYNXPOINT,
616 .icc_command = ICC_SET_CLOCK_ENABLES,
617 .length = sizeof(clk),
618 };
619
620 /* Send request and wait for response */
621 if (mei_sendrecv_icc(&icc, &clk, sizeof(clk), NULL, 0) < 0) {
622 printk(BIOS_ERR, "ME: ICC SET CLOCK ENABLES message failed\n");
623 return -1;
624 } else {
625 printk(BIOS_INFO, "ME: ICC SET CLOCK ENABLES 0x%08x\n", mask);
626 }
627
628 return 0;
629}
630
631/* Determine the path that we should take based on ME status */
632static me_bios_path intel_me_path(device_t dev)
633{
634 me_bios_path path = ME_DISABLE_BIOS_PATH;
635 struct me_hfs hfs;
636 struct me_hfs2 hfs2;
637
638 /* Check and dump status */
639 intel_me_status();
640
641 pci_read_dword_ptr(dev, &hfs, PCI_ME_HFS);
642 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
643
644 /* Check Current Working State */
645 switch (hfs.working_state) {
646 case ME_HFS_CWS_NORMAL:
647 path = ME_NORMAL_BIOS_PATH;
648 break;
649 case ME_HFS_CWS_REC:
650 path = ME_RECOVERY_BIOS_PATH;
651 break;
652 default:
653 path = ME_DISABLE_BIOS_PATH;
654 break;
655 }
656
657 /* Check Current Operation Mode */
658 switch (hfs.operation_mode) {
659 case ME_HFS_MODE_NORMAL:
660 break;
661 case ME_HFS_MODE_DEBUG:
662 case ME_HFS_MODE_DIS:
663 case ME_HFS_MODE_OVER_JMPR:
664 case ME_HFS_MODE_OVER_MEI:
665 default:
666 path = ME_DISABLE_BIOS_PATH;
667 break;
668 }
669
670 /* Check for any error code and valid firmware and MBP */
671 if (hfs.error_code || hfs.fpt_bad)
672 path = ME_ERROR_BIOS_PATH;
673
674 /* Check if the MBP is ready */
675 if (!hfs2.mbp_rdy) {
676 printk(BIOS_CRIT, "%s: mbp is not ready!\n",
677 __FUNCTION__);
678 path = ME_ERROR_BIOS_PATH;
679 }
680
681#if CONFIG_ELOG
682 if (path != ME_NORMAL_BIOS_PATH) {
683 struct elog_event_data_me_extended data = {
684 .current_working_state = hfs.working_state,
685 .operation_state = hfs.operation_state,
686 .operation_mode = hfs.operation_mode,
687 .error_code = hfs.error_code,
688 .progress_code = hfs2.progress_code,
689 .current_pmevent = hfs2.current_pmevent,
690 .current_state = hfs2.current_state,
691 };
692 elog_add_event_byte(ELOG_TYPE_MANAGEMENT_ENGINE, path);
693 elog_add_event_raw(ELOG_TYPE_MANAGEMENT_ENGINE_EXT,
694 &data, sizeof(data));
695 }
696#endif
697
698 return path;
699}
700
701/* Prepare ME for MEI messages */
702static int intel_mei_setup(device_t dev)
703{
704 struct resource *res;
705 struct mei_csr host;
706 u32 reg32;
707
708 /* Find the MMIO base for the ME interface */
709 res = find_resource(dev, PCI_BASE_ADDRESS_0);
710 if (!res || res->base == 0 || res->size == 0) {
711 printk(BIOS_DEBUG, "ME: MEI resource not present!\n");
712 return -1;
713 }
714 mei_base_address = res->base;
715
716 /* Ensure Memory and Bus Master bits are set */
717 reg32 = pci_read_config32(dev, PCI_COMMAND);
718 reg32 |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
719 pci_write_config32(dev, PCI_COMMAND, reg32);
720
721 /* Clean up status for next message */
722 read_host_csr(&host);
723 host.interrupt_generate = 1;
724 host.ready = 1;
725 host.reset = 0;
726 write_host_csr(&host);
727
728 return 0;
729}
730
731/* Read the Extend register hash of ME firmware */
732static int intel_me_extend_valid(device_t dev)
733{
734 struct me_heres status;
735 u32 extend[8] = {0};
736 int i, count = 0;
737
738 pci_read_dword_ptr(dev, &status, PCI_ME_HERES);
739 if (!status.extend_feature_present) {
740 printk(BIOS_ERR, "ME: Extend Feature not present\n");
741 return -1;
742 }
743
744 if (!status.extend_reg_valid) {
745 printk(BIOS_ERR, "ME: Extend Register not valid\n");
746 return -1;
747 }
748
749 switch (status.extend_reg_algorithm) {
750 case PCI_ME_EXT_SHA1:
751 count = 5;
752 printk(BIOS_DEBUG, "ME: Extend SHA-1: ");
753 break;
754 case PCI_ME_EXT_SHA256:
755 count = 8;
756 printk(BIOS_DEBUG, "ME: Extend SHA-256: ");
757 break;
758 default:
759 printk(BIOS_ERR, "ME: Extend Algorithm %d unknown\n",
760 status.extend_reg_algorithm);
761 return -1;
762 }
763
764 for (i = 0; i < count; ++i) {
765 extend[i] = pci_read_config32(dev, PCI_ME_HER(i));
766 printk(BIOS_DEBUG, "%08x", extend[i]);
767 }
768 printk(BIOS_DEBUG, "\n");
769
770#if CONFIG_CHROMEOS
771 /* Save hash in NVS for the OS to verify */
772 chromeos_set_me_hash(extend, count);
773#endif
774
775 return 0;
776}
777
778/* Check whether ME is present and do basic init */
779static void intel_me_init(device_t dev)
780{
781 config_t *config = dev->chip_info;
782 me_bios_path path = intel_me_path(dev);
783 me_bios_payload mbp_data;
784
785 /* Do initial setup and determine the BIOS path */
786 printk(BIOS_NOTICE, "ME: BIOS path: %s\n", me_bios_path_values[path]);
787
788 if (path == ME_NORMAL_BIOS_PATH) {
789 /* Validate the extend register */
790 intel_me_extend_valid(dev);
791 }
792
793 memset(&mbp_data, 0, sizeof(mbp_data));
794
795 /*
796 * According to the ME9 BWG, BIOS is required to fetch MBP data in
797 * all boot flows except S3 Resume.
798 */
799
800 /* Prepare MEI MMIO interface */
801 if (intel_mei_setup(dev) < 0)
802 return;
803
804 if (intel_me_read_mbp(&mbp_data, dev))
805 return;
806
807#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
808 me_print_fw_version(mbp_data.fw_version_name);
809#if CONFIG_DEBUG_INTEL_ME
810 me_print_fwcaps(mbp_data.fw_capabilities);
811#endif
812
813 if (mbp_data.plat_time) {
814 printk(BIOS_DEBUG, "ME: Wake Event to ME Reset: %u ms\n",
815 mbp_data.plat_time->wake_event_mrst_time_ms);
816 printk(BIOS_DEBUG, "ME: ME Reset to Platform Reset: %u ms\n",
817 mbp_data.plat_time->mrst_pltrst_time_ms);
818 printk(BIOS_DEBUG, "ME: Platform Reset to CPU Reset: %u ms\n",
819 mbp_data.plat_time->pltrst_cpurst_time_ms);
820 }
821#endif
822
823 /* Set clock enables according to devicetree */
824 if (config && config->icc_clock_disable)
825 me_icc_set_clock_enables(config->icc_clock_disable);
826
827 /*
828 * Leave the ME unlocked. It will be locked via SMI command later.
829 */
830}
831
832static void intel_me_enable(device_t dev)
833{
834#if CONFIG_HAVE_ACPI_RESUME
835 /* Avoid talking to the device in S3 path */
836 if (acpi_slp_type == 3) {
837 dev->enabled = 0;
838 pch_disable_devfn(dev);
839 }
840#endif
841}
842
843static struct device_operations device_ops = {
844 .read_resources = &pci_dev_read_resources,
845 .set_resources = &pci_dev_set_resources,
846 .enable_resources = &pci_dev_enable_resources,
847 .enable = &intel_me_enable,
848 .init = &intel_me_init,
849 .ops_pci = &broadwell_pci_ops,
850};
851
852static const unsigned short pci_device_ids[] = {
853 0x9c3a, /* Low Power */
854 0x9cba, /* WildcatPoint */
855 0
856};
857
858static const struct pci_driver intel_me __pci_driver = {
859 .ops = &device_ops,
860 .vendor = PCI_VENDOR_ID_INTEL,
861 .devices= pci_device_ids,
862};
863
864/******************************************************************************
865 * */
866static u32 me_to_host_words_pending(void)
867{
868 struct mei_csr me;
869 read_me_csr(&me);
870 if (!me.ready)
871 return 0;
872 return (me.buffer_write_ptr - me.buffer_read_ptr) &
873 (me.buffer_depth - 1);
874}
875
876struct mbp_payload {
877 mbp_header header;
878 u32 data[0];
879};
880
881/*
882 * mbp seems to be following its own flow, let's retrieve it in a dedicated
883 * function.
884 */
885static int intel_me_read_mbp(me_bios_payload *mbp_data, device_t dev)
886{
887 mbp_header mbp_hdr;
888 u32 me2host_pending;
889 struct mei_csr host;
890 struct me_hfs2 hfs2;
891 struct mbp_payload *mbp;
892 int i;
893
894 pci_read_dword_ptr(dev, &hfs2, PCI_ME_HFS2);
895
896 if (!hfs2.mbp_rdy) {
897 printk(BIOS_ERR, "ME: MBP not ready\n");
898 goto mbp_failure;
899 }
900
901 me2host_pending = me_to_host_words_pending();
902 if (!me2host_pending) {
903 printk(BIOS_ERR, "ME: no mbp data!\n");
904 goto mbp_failure;
905 }
906
907 /* we know for sure that at least the header is there */
908 mei_read_dword_ptr(&mbp_hdr, MEI_ME_CB_RW);
909
910 if ((mbp_hdr.num_entries > (mbp_hdr.mbp_size / 2)) ||
911 (me2host_pending < mbp_hdr.mbp_size)) {
912 printk(BIOS_ERR, "ME: mbp of %d entries, total size %d words"
913 " buffer contains %d words\n",
914 mbp_hdr.num_entries, mbp_hdr.mbp_size,
915 me2host_pending);
916 goto mbp_failure;
917 }
918 mbp = malloc(mbp_hdr.mbp_size * sizeof(u32));
919 if (!mbp)
920 goto mbp_failure;
921
922 mbp->header = mbp_hdr;
923 me2host_pending--;
924
925 i = 0;
926 while (i != me2host_pending) {
927 mei_read_dword_ptr(&mbp->data[i], MEI_ME_CB_RW);
928 i++;
929 }
930
931 /* Signal to the ME that the host has finished reading the MBP. */
932 read_host_csr(&host);
933 host.interrupt_generate = 1;
934 write_host_csr(&host);
935
936#if !CONFIG_ME_MBP_CLEAR_LATE
937 /* Wait for the mbp_cleared indicator. */
938 intel_me_mbp_clear(dev);
939#endif
940
941 /* Dump out the MBP contents. */
942#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
943 printk(BIOS_INFO, "ME MBP: Header: items: %d, size dw: %d\n",
944 mbp->header.num_entries, mbp->header.mbp_size);
945#if CONFIG_DEBUG_INTEL_ME
946 for (i = 0; i < mbp->header.mbp_size - 1; i++) {
947 printk(BIOS_INFO, "ME MBP: %04x: 0x%08x\n", i, mbp->data[i]);
948 }
949#endif
950#endif
951
952#define ASSIGN_FIELD_PTR(field_,val_) \
953 { \
954 mbp_data->field_ = (typeof(mbp_data->field_))(void *)val_; \
955 break; \
956 }
957
958 /* Setup the pointers in the me_bios_payload structure. */
959 for (i = 0; i < mbp->header.mbp_size - 1;) {
960 mbp_item_header *item = (void *)&mbp->data[i];
961
962 switch(MBP_MAKE_IDENT(item->app_id, item->item_id)) {
963 case MBP_IDENT(KERNEL, FW_VER):
964 ASSIGN_FIELD_PTR(fw_version_name, &mbp->data[i+1]);
965
966 case MBP_IDENT(ICC, PROFILE):
967 ASSIGN_FIELD_PTR(icc_profile, &mbp->data[i+1]);
968
969 case MBP_IDENT(INTEL_AT, STATE):
970 ASSIGN_FIELD_PTR(at_state, &mbp->data[i+1]);
971
972 case MBP_IDENT(KERNEL, FW_CAP):
973 ASSIGN_FIELD_PTR(fw_capabilities, &mbp->data[i+1]);
974
975 case MBP_IDENT(KERNEL, ROM_BIST):
976 ASSIGN_FIELD_PTR(rom_bist_data, &mbp->data[i+1]);
977
978 case MBP_IDENT(KERNEL, PLAT_KEY):
979 ASSIGN_FIELD_PTR(platform_key, &mbp->data[i+1]);
980
981 case MBP_IDENT(KERNEL, FW_TYPE):
982 ASSIGN_FIELD_PTR(fw_plat_type, &mbp->data[i+1]);
983
984 case MBP_IDENT(KERNEL, MFS_FAILURE):
985 ASSIGN_FIELD_PTR(mfsintegrity, &mbp->data[i+1]);
986
987 case MBP_IDENT(KERNEL, PLAT_TIME):
988 ASSIGN_FIELD_PTR(plat_time, &mbp->data[i+1]);
989
990 case MBP_IDENT(NFC, SUPPORT_DATA):
991 ASSIGN_FIELD_PTR(nfc_data, &mbp->data[i+1]);
992
993 default:
994 printk(BIOS_ERR, "ME MBP: unknown item 0x%x @ "
995 "dw offset 0x%x\n", mbp->data[i], i);
996 break;
997 }
998 i += item->length;
999 }
1000 #undef ASSIGN_FIELD_PTR
1001
1002 return 0;
1003
1004mbp_failure:
1005 intel_me_mbp_give_up(dev);
1006 return -1;
1007}