3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2013-2014, Intel Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 #include <linux/pci.h>
18 #include <linux/jiffies.h>
19 #include <linux/ktime.h>
20 #include <linux/delay.h>
21 #include <linux/kthread.h>
22 #include <linux/irqreturn.h>
24 #include <linux/mei.h>
32 * mei_txe_reg_read - Reads 32bit data from the txe device
34 * @base_addr: registers base address
35 * @offset: register offset
37 * Return: register value
39 static inline u32
mei_txe_reg_read(void __iomem
*base_addr
,
42 return ioread32(base_addr
+ offset
);
46 * mei_txe_reg_write - Writes 32bit data to the txe device
48 * @base_addr: registers base address
49 * @offset: register offset
50 * @value: the value to write
52 static inline void mei_txe_reg_write(void __iomem
*base_addr
,
53 unsigned long offset
, u32 value
)
55 iowrite32(value
, base_addr
+ offset
);
59 * mei_txe_sec_reg_read_silent - Reads 32bit data from the SeC BAR
61 * @hw: the txe hardware structure
62 * @offset: register offset
64 * Doesn't check for aliveness while Reads 32bit data from the SeC BAR
66 * Return: register value
68 static inline u32
mei_txe_sec_reg_read_silent(struct mei_txe_hw
*hw
,
71 return mei_txe_reg_read(hw
->mem_addr
[SEC_BAR
], offset
);
75 * mei_txe_sec_reg_read - Reads 32bit data from the SeC BAR
77 * @hw: the txe hardware structure
78 * @offset: register offset
80 * Reads 32bit data from the SeC BAR and shout loud if aliveness is not set
82 * Return: register value
84 static inline u32
mei_txe_sec_reg_read(struct mei_txe_hw
*hw
,
87 WARN(!hw
->aliveness
, "sec read: aliveness not asserted\n");
88 return mei_txe_sec_reg_read_silent(hw
, offset
);
91 * mei_txe_sec_reg_write_silent - Writes 32bit data to the SeC BAR
92 * doesn't check for aliveness
94 * @hw: the txe hardware structure
95 * @offset: register offset
96 * @value: value to write
98 * Doesn't check for aliveness while writes 32bit data from to the SeC BAR
100 static inline void mei_txe_sec_reg_write_silent(struct mei_txe_hw
*hw
,
101 unsigned long offset
, u32 value
)
103 mei_txe_reg_write(hw
->mem_addr
[SEC_BAR
], offset
, value
);
107 * mei_txe_sec_reg_write - Writes 32bit data to the SeC BAR
109 * @hw: the txe hardware structure
110 * @offset: register offset
111 * @value: value to write
113 * Writes 32bit data from the SeC BAR and shout loud if aliveness is not set
115 static inline void mei_txe_sec_reg_write(struct mei_txe_hw
*hw
,
116 unsigned long offset
, u32 value
)
118 WARN(!hw
->aliveness
, "sec write: aliveness not asserted\n");
119 mei_txe_sec_reg_write_silent(hw
, offset
, value
);
122 * mei_txe_br_reg_read - Reads 32bit data from the Bridge BAR
124 * @hw: the txe hardware structure
125 * @offset: offset from which to read the data
127 * Return: the byte read.
129 static inline u32
mei_txe_br_reg_read(struct mei_txe_hw
*hw
,
130 unsigned long offset
)
132 return mei_txe_reg_read(hw
->mem_addr
[BRIDGE_BAR
], offset
);
136 * mei_txe_br_reg_write - Writes 32bit data to the Bridge BAR
138 * @hw: the txe hardware structure
139 * @offset: offset from which to write the data
140 * @value: the byte to write
142 static inline void mei_txe_br_reg_write(struct mei_txe_hw
*hw
,
143 unsigned long offset
, u32 value
)
145 mei_txe_reg_write(hw
->mem_addr
[BRIDGE_BAR
], offset
, value
);
149 * mei_txe_aliveness_set - request for aliveness change
151 * @dev: the device structure
152 * @req: requested aliveness value
154 * Request for aliveness change and returns true if the change is
155 * really needed and false if aliveness is already
156 * in the requested state
158 * Locking: called under "dev->device_lock" lock
160 * Return: true if request was send
162 static bool mei_txe_aliveness_set(struct mei_device
*dev
, u32 req
)
165 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
166 bool do_req
= hw
->aliveness
!= req
;
168 dev_dbg(dev
->dev
, "Aliveness current=%d request=%d\n",
171 dev
->pg_event
= MEI_PG_EVENT_WAIT
;
172 mei_txe_br_reg_write(hw
, SICR_HOST_ALIVENESS_REQ_REG
, req
);
179 * mei_txe_aliveness_req_get - get aliveness requested register value
181 * @dev: the device structure
183 * Extract HICR_HOST_ALIVENESS_RESP_ACK bit from
184 * from HICR_HOST_ALIVENESS_REQ register value
186 * Return: SICR_HOST_ALIVENESS_REQ_REQUESTED bit value
188 static u32
mei_txe_aliveness_req_get(struct mei_device
*dev
)
190 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
193 reg
= mei_txe_br_reg_read(hw
, SICR_HOST_ALIVENESS_REQ_REG
);
194 return reg
& SICR_HOST_ALIVENESS_REQ_REQUESTED
;
198 * mei_txe_aliveness_get - get aliveness response register value
200 * @dev: the device structure
202 * Return: HICR_HOST_ALIVENESS_RESP_ACK bit from HICR_HOST_ALIVENESS_RESP
205 static u32
mei_txe_aliveness_get(struct mei_device
*dev
)
207 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
210 reg
= mei_txe_br_reg_read(hw
, HICR_HOST_ALIVENESS_RESP_REG
);
211 return reg
& HICR_HOST_ALIVENESS_RESP_ACK
;
215 * mei_txe_aliveness_poll - waits for aliveness to settle
217 * @dev: the device structure
218 * @expected: expected aliveness value
220 * Polls for HICR_HOST_ALIVENESS_RESP.ALIVENESS_RESP to be set
222 * Return: 0 if the expected value was received, -ETIME otherwise
224 static int mei_txe_aliveness_poll(struct mei_device
*dev
, u32 expected
)
226 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
230 stop
= ktime_add(start
, ms_to_ktime(SEC_ALIVENESS_WAIT_TIMEOUT
));
232 hw
->aliveness
= mei_txe_aliveness_get(dev
);
233 if (hw
->aliveness
== expected
) {
234 dev
->pg_event
= MEI_PG_EVENT_IDLE
;
235 dev_dbg(dev
->dev
, "aliveness settled after %lld usecs\n",
236 ktime_to_us(ktime_sub(ktime_get(), start
)));
239 usleep_range(20, 50);
240 } while (ktime_before(ktime_get(), stop
));
242 dev
->pg_event
= MEI_PG_EVENT_IDLE
;
243 dev_err(dev
->dev
, "aliveness timed out\n");
248 * mei_txe_aliveness_wait - waits for aliveness to settle
250 * @dev: the device structure
251 * @expected: expected aliveness value
253 * Waits for HICR_HOST_ALIVENESS_RESP.ALIVENESS_RESP to be set
255 * Return: 0 on success and < 0 otherwise
257 static int mei_txe_aliveness_wait(struct mei_device
*dev
, u32 expected
)
259 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
260 const unsigned long timeout
=
261 msecs_to_jiffies(SEC_ALIVENESS_WAIT_TIMEOUT
);
265 hw
->aliveness
= mei_txe_aliveness_get(dev
);
266 if (hw
->aliveness
== expected
)
269 mutex_unlock(&dev
->device_lock
);
270 err
= wait_event_timeout(hw
->wait_aliveness_resp
,
271 dev
->pg_event
== MEI_PG_EVENT_RECEIVED
, timeout
);
272 mutex_lock(&dev
->device_lock
);
274 hw
->aliveness
= mei_txe_aliveness_get(dev
);
275 ret
= hw
->aliveness
== expected
? 0 : -ETIME
;
278 dev_warn(dev
->dev
, "aliveness timed out = %ld aliveness = %d event = %d\n",
279 err
, hw
->aliveness
, dev
->pg_event
);
281 dev_dbg(dev
->dev
, "aliveness settled after = %d msec aliveness = %d event = %d\n",
282 jiffies_to_msecs(timeout
- err
),
283 hw
->aliveness
, dev
->pg_event
);
285 dev
->pg_event
= MEI_PG_EVENT_IDLE
;
290 * mei_txe_aliveness_set_sync - sets an wait for aliveness to complete
292 * @dev: the device structure
293 * @req: requested aliveness value
295 * Return: 0 on success and < 0 otherwise
297 int mei_txe_aliveness_set_sync(struct mei_device
*dev
, u32 req
)
299 if (mei_txe_aliveness_set(dev
, req
))
300 return mei_txe_aliveness_wait(dev
, req
);
305 * mei_txe_pg_in_transition - is device now in pg transition
307 * @dev: the device structure
309 * Return: true if in pg transition, false otherwise
311 static bool mei_txe_pg_in_transition(struct mei_device
*dev
)
313 return dev
->pg_event
== MEI_PG_EVENT_WAIT
;
317 * mei_txe_pg_is_enabled - detect if PG is supported by HW
319 * @dev: the device structure
321 * Return: true is pg supported, false otherwise
323 static bool mei_txe_pg_is_enabled(struct mei_device
*dev
)
329 * mei_txe_pg_state - translate aliveness register value
330 * to the mei power gating state
332 * @dev: the device structure
334 * Return: MEI_PG_OFF if aliveness is on and MEI_PG_ON otherwise
336 static inline enum mei_pg_state
mei_txe_pg_state(struct mei_device
*dev
)
338 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
340 return hw
->aliveness
? MEI_PG_OFF
: MEI_PG_ON
;
344 * mei_txe_input_ready_interrupt_enable - sets the Input Ready Interrupt
346 * @dev: the device structure
348 static void mei_txe_input_ready_interrupt_enable(struct mei_device
*dev
)
350 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
352 /* Enable the SEC_IPC_HOST_INT_MASK_IN_RDY interrupt */
353 hintmsk
= mei_txe_sec_reg_read(hw
, SEC_IPC_HOST_INT_MASK_REG
);
354 hintmsk
|= SEC_IPC_HOST_INT_MASK_IN_RDY
;
355 mei_txe_sec_reg_write(hw
, SEC_IPC_HOST_INT_MASK_REG
, hintmsk
);
359 * mei_txe_input_doorbell_set - sets bit 0 in
360 * SEC_IPC_INPUT_DOORBELL.IPC_INPUT_DOORBELL.
362 * @hw: the txe hardware structure
364 static void mei_txe_input_doorbell_set(struct mei_txe_hw
*hw
)
366 /* Clear the interrupt cause */
367 clear_bit(TXE_INTR_IN_READY_BIT
, &hw
->intr_cause
);
368 mei_txe_sec_reg_write(hw
, SEC_IPC_INPUT_DOORBELL_REG
, 1);
372 * mei_txe_output_ready_set - Sets the SICR_SEC_IPC_OUTPUT_STATUS bit to 1
374 * @hw: the txe hardware structure
376 static void mei_txe_output_ready_set(struct mei_txe_hw
*hw
)
378 mei_txe_br_reg_write(hw
,
379 SICR_SEC_IPC_OUTPUT_STATUS_REG
,
380 SEC_IPC_OUTPUT_STATUS_RDY
);
384 * mei_txe_is_input_ready - check if TXE is ready for receiving data
386 * @dev: the device structure
388 * Return: true if INPUT STATUS READY bit is set
390 static bool mei_txe_is_input_ready(struct mei_device
*dev
)
392 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
395 status
= mei_txe_sec_reg_read(hw
, SEC_IPC_INPUT_STATUS_REG
);
396 return !!(SEC_IPC_INPUT_STATUS_RDY
& status
);
400 * mei_txe_intr_clear - clear all interrupts
402 * @dev: the device structure
404 static inline void mei_txe_intr_clear(struct mei_device
*dev
)
406 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
408 mei_txe_sec_reg_write_silent(hw
, SEC_IPC_HOST_INT_STATUS_REG
,
409 SEC_IPC_HOST_INT_STATUS_PENDING
);
410 mei_txe_br_reg_write(hw
, HISR_REG
, HISR_INT_STS_MSK
);
411 mei_txe_br_reg_write(hw
, HHISR_REG
, IPC_HHIER_MSK
);
415 * mei_txe_intr_disable - disable all interrupts
417 * @dev: the device structure
419 static void mei_txe_intr_disable(struct mei_device
*dev
)
421 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
423 mei_txe_br_reg_write(hw
, HHIER_REG
, 0);
424 mei_txe_br_reg_write(hw
, HIER_REG
, 0);
427 * mei_txe_intr_enable - enable all interrupts
429 * @dev: the device structure
431 static void mei_txe_intr_enable(struct mei_device
*dev
)
433 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
435 mei_txe_br_reg_write(hw
, HHIER_REG
, IPC_HHIER_MSK
);
436 mei_txe_br_reg_write(hw
, HIER_REG
, HIER_INT_EN_MSK
);
440 * mei_txe_pending_interrupts - check if there are pending interrupts
441 * only Aliveness, Input ready, and output doorbell are of relevance
443 * @dev: the device structure
445 * Checks if there are pending interrupts
446 * only Aliveness, Readiness, Input ready, and Output doorbell are relevant
448 * Return: true if there are pending interrupts
450 static bool mei_txe_pending_interrupts(struct mei_device
*dev
)
453 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
454 bool ret
= (hw
->intr_cause
& (TXE_INTR_READINESS
|
461 "Pending Interrupts InReady=%01d Readiness=%01d, Aliveness=%01d, OutDoor=%01d\n",
462 !!(hw
->intr_cause
& TXE_INTR_IN_READY
),
463 !!(hw
->intr_cause
& TXE_INTR_READINESS
),
464 !!(hw
->intr_cause
& TXE_INTR_ALIVENESS
),
465 !!(hw
->intr_cause
& TXE_INTR_OUT_DB
));
471 * mei_txe_input_payload_write - write a dword to the host buffer
474 * @dev: the device structure
475 * @idx: index in the host buffer
478 static void mei_txe_input_payload_write(struct mei_device
*dev
,
479 unsigned long idx
, u32 value
)
481 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
483 mei_txe_sec_reg_write(hw
, SEC_IPC_INPUT_PAYLOAD_REG
+
484 (idx
* sizeof(u32
)), value
);
488 * mei_txe_out_data_read - read dword from the device buffer
491 * @dev: the device structure
492 * @idx: index in the device buffer
494 * Return: register value at index
496 static u32
mei_txe_out_data_read(const struct mei_device
*dev
,
499 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
501 return mei_txe_br_reg_read(hw
,
502 BRIDGE_IPC_OUTPUT_PAYLOAD_REG
+ (idx
* sizeof(u32
)));
508 * mei_txe_readiness_set_host_rdy - set host readiness bit
510 * @dev: the device structure
512 static void mei_txe_readiness_set_host_rdy(struct mei_device
*dev
)
514 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
516 mei_txe_br_reg_write(hw
,
517 SICR_HOST_IPC_READINESS_REQ_REG
,
518 SICR_HOST_IPC_READINESS_HOST_RDY
);
522 * mei_txe_readiness_clear - clear host readiness bit
524 * @dev: the device structure
526 static void mei_txe_readiness_clear(struct mei_device
*dev
)
528 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
530 mei_txe_br_reg_write(hw
, SICR_HOST_IPC_READINESS_REQ_REG
,
531 SICR_HOST_IPC_READINESS_RDY_CLR
);
534 * mei_txe_readiness_get - Reads and returns
535 * the HICR_SEC_IPC_READINESS register value
537 * @dev: the device structure
539 * Return: the HICR_SEC_IPC_READINESS register value
541 static u32
mei_txe_readiness_get(struct mei_device
*dev
)
543 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
545 return mei_txe_br_reg_read(hw
, HICR_SEC_IPC_READINESS_REG
);
550 * mei_txe_readiness_is_sec_rdy - check readiness
551 * for HICR_SEC_IPC_READINESS_SEC_RDY
553 * @readiness: cached readiness state
555 * Return: true if readiness bit is set
557 static inline bool mei_txe_readiness_is_sec_rdy(u32 readiness
)
559 return !!(readiness
& HICR_SEC_IPC_READINESS_SEC_RDY
);
563 * mei_txe_hw_is_ready - check if the hw is ready
565 * @dev: the device structure
567 * Return: true if sec is ready
569 static bool mei_txe_hw_is_ready(struct mei_device
*dev
)
571 u32 readiness
= mei_txe_readiness_get(dev
);
573 return mei_txe_readiness_is_sec_rdy(readiness
);
577 * mei_txe_host_is_ready - check if the host is ready
579 * @dev: the device structure
581 * Return: true if host is ready
583 static inline bool mei_txe_host_is_ready(struct mei_device
*dev
)
585 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
586 u32 reg
= mei_txe_br_reg_read(hw
, HICR_SEC_IPC_READINESS_REG
);
588 return !!(reg
& HICR_SEC_IPC_READINESS_HOST_RDY
);
592 * mei_txe_readiness_wait - wait till readiness settles
594 * @dev: the device structure
596 * Return: 0 on success and -ETIME on timeout
598 static int mei_txe_readiness_wait(struct mei_device
*dev
)
600 if (mei_txe_hw_is_ready(dev
))
603 mutex_unlock(&dev
->device_lock
);
604 wait_event_timeout(dev
->wait_hw_ready
, dev
->recvd_hw_ready
,
605 msecs_to_jiffies(SEC_RESET_WAIT_TIMEOUT
));
606 mutex_lock(&dev
->device_lock
);
607 if (!dev
->recvd_hw_ready
) {
608 dev_err(dev
->dev
, "wait for readiness failed\n");
612 dev
->recvd_hw_ready
= false;
616 static const struct mei_fw_status mei_txe_fw_sts
= {
618 .status
[0] = PCI_CFG_TXE_FW_STS0
,
619 .status
[1] = PCI_CFG_TXE_FW_STS1
623 * mei_txe_fw_status - read fw status register from pci config space
626 * @fw_status: fw status register values
628 * Return: 0 on success, error otherwise
630 static int mei_txe_fw_status(struct mei_device
*dev
,
631 struct mei_fw_status
*fw_status
)
633 const struct mei_fw_status
*fw_src
= &mei_txe_fw_sts
;
634 struct pci_dev
*pdev
= to_pci_dev(dev
->dev
);
641 fw_status
->count
= fw_src
->count
;
642 for (i
= 0; i
< fw_src
->count
&& i
< MEI_FW_STATUS_MAX
; i
++) {
643 ret
= pci_read_config_dword(pdev
,
644 fw_src
->status
[i
], &fw_status
->status
[i
]);
653 * mei_txe_hw_config - configure hardware at the start of the devices
655 * @dev: the device structure
657 * Configure hardware at the start of the device should be done only
658 * once at the device probe time
660 static void mei_txe_hw_config(struct mei_device
*dev
)
663 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
665 /* Doesn't change in runtime */
666 dev
->hbuf_depth
= PAYLOAD_SIZE
/ 4;
668 hw
->aliveness
= mei_txe_aliveness_get(dev
);
669 hw
->readiness
= mei_txe_readiness_get(dev
);
671 dev_dbg(dev
->dev
, "aliveness_resp = 0x%08x, readiness = 0x%08x.\n",
672 hw
->aliveness
, hw
->readiness
);
677 * mei_txe_write - writes a message to device.
679 * @dev: the device structure
680 * @header: header of message
681 * @buf: message buffer will be written
683 * Return: 0 if success, <0 - otherwise.
686 static int mei_txe_write(struct mei_device
*dev
,
687 struct mei_msg_hdr
*header
, unsigned char *buf
)
689 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
691 unsigned long length
;
692 int slots
= dev
->hbuf_depth
;
693 u32
*reg_buf
= (u32
*)buf
;
697 if (WARN_ON(!header
|| !buf
))
700 length
= header
->length
;
702 dev_dbg(dev
->dev
, MEI_HDR_FMT
, MEI_HDR_PRM(header
));
704 dw_cnt
= mei_data2slots(length
);
708 if (WARN(!hw
->aliveness
, "txe write: aliveness not asserted\n"))
711 /* Enable Input Ready Interrupt. */
712 mei_txe_input_ready_interrupt_enable(dev
);
714 if (!mei_txe_is_input_ready(dev
)) {
715 char fw_sts_str
[MEI_FW_STATUS_STR_SZ
];
717 mei_fw_status_str(dev
, fw_sts_str
, MEI_FW_STATUS_STR_SZ
);
718 dev_err(dev
->dev
, "Input is not ready %s\n", fw_sts_str
);
722 mei_txe_input_payload_write(dev
, 0, *((u32
*)header
));
724 for (i
= 0; i
< length
/ 4; i
++)
725 mei_txe_input_payload_write(dev
, i
+ 1, reg_buf
[i
]);
731 memcpy(®
, &buf
[length
- rem
], rem
);
732 mei_txe_input_payload_write(dev
, i
+ 1, reg
);
735 /* after each write the whole buffer is consumed */
738 /* Set Input-Doorbell */
739 mei_txe_input_doorbell_set(hw
);
745 * mei_txe_hbuf_max_len - mimics the me hbuf circular buffer
747 * @dev: the device structure
749 * Return: the PAYLOAD_SIZE - 4
751 static size_t mei_txe_hbuf_max_len(const struct mei_device
*dev
)
753 return PAYLOAD_SIZE
- sizeof(struct mei_msg_hdr
);
757 * mei_txe_hbuf_empty_slots - mimics the me hbuf circular buffer
759 * @dev: the device structure
761 * Return: always hbuf_depth
763 static int mei_txe_hbuf_empty_slots(struct mei_device
*dev
)
765 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
771 * mei_txe_count_full_read_slots - mimics the me device circular buffer
773 * @dev: the device structure
775 * Return: always buffer size in dwords count
777 static int mei_txe_count_full_read_slots(struct mei_device
*dev
)
779 /* read buffers has static size */
780 return PAYLOAD_SIZE
/ 4;
784 * mei_txe_read_hdr - read message header which is always in 4 first bytes
786 * @dev: the device structure
788 * Return: mei message header
791 static u32
mei_txe_read_hdr(const struct mei_device
*dev
)
793 return mei_txe_out_data_read(dev
, 0);
796 * mei_txe_read - reads a message from the txe device.
798 * @dev: the device structure
799 * @buf: message buffer will be written
800 * @len: message size will be read
802 * Return: -EINVAL on error wrong argument and 0 on success
804 static int mei_txe_read(struct mei_device
*dev
,
805 unsigned char *buf
, unsigned long len
)
808 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
813 if (WARN_ON(!buf
|| !len
))
816 reg_buf
= (u32
*)buf
;
819 dev_dbg(dev
->dev
, "buffer-length = %lu buf[0]0x%08X\n",
820 len
, mei_txe_out_data_read(dev
, 0));
822 for (i
= 0; i
< len
/ 4; i
++) {
823 /* skip header: index starts from 1 */
824 reg
= mei_txe_out_data_read(dev
, i
+ 1);
825 dev_dbg(dev
->dev
, "buf[%d] = 0x%08X\n", i
, reg
);
830 reg
= mei_txe_out_data_read(dev
, i
+ 1);
831 memcpy(reg_buf
, ®
, rem
);
834 mei_txe_output_ready_set(hw
);
839 * mei_txe_hw_reset - resets host and fw.
841 * @dev: the device structure
842 * @intr_enable: if interrupt should be enabled after reset.
844 * Return: 0 on success and < 0 in case of error
846 static int mei_txe_hw_reset(struct mei_device
*dev
, bool intr_enable
)
848 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
852 * read input doorbell to ensure consistency between Bridge and SeC
853 * return value might be garbage return
855 (void)mei_txe_sec_reg_read_silent(hw
, SEC_IPC_INPUT_DOORBELL_REG
);
857 aliveness_req
= mei_txe_aliveness_req_get(dev
);
858 hw
->aliveness
= mei_txe_aliveness_get(dev
);
860 /* Disable interrupts in this stage we will poll */
861 mei_txe_intr_disable(dev
);
864 * If Aliveness Request and Aliveness Response are not equal then
865 * wait for them to be equal
866 * Since we might have interrupts disabled - poll for it
868 if (aliveness_req
!= hw
->aliveness
)
869 if (mei_txe_aliveness_poll(dev
, aliveness_req
) < 0) {
870 dev_err(dev
->dev
, "wait for aliveness settle failed ... bailing out\n");
875 * If Aliveness Request and Aliveness Response are set then clear them
878 mei_txe_aliveness_set(dev
, 0);
879 if (mei_txe_aliveness_poll(dev
, 0) < 0) {
880 dev_err(dev
->dev
, "wait for aliveness failed ... bailing out\n");
886 * Set readiness RDY_CLR bit
888 mei_txe_readiness_clear(dev
);
894 * mei_txe_hw_start - start the hardware after reset
896 * @dev: the device structure
898 * Return: 0 on success an error code otherwise
900 static int mei_txe_hw_start(struct mei_device
*dev
)
902 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
907 /* bring back interrupts */
908 mei_txe_intr_enable(dev
);
910 ret
= mei_txe_readiness_wait(dev
);
912 dev_err(dev
->dev
, "waiting for readiness failed\n");
917 * If HISR.INT2_STS interrupt status bit is set then clear it.
919 hisr
= mei_txe_br_reg_read(hw
, HISR_REG
);
920 if (hisr
& HISR_INT_2_STS
)
921 mei_txe_br_reg_write(hw
, HISR_REG
, HISR_INT_2_STS
);
923 /* Clear the interrupt cause of OutputDoorbell */
924 clear_bit(TXE_INTR_OUT_DB_BIT
, &hw
->intr_cause
);
926 ret
= mei_txe_aliveness_set_sync(dev
, 1);
928 dev_err(dev
->dev
, "wait for aliveness failed ... bailing out\n");
932 /* enable input ready interrupts:
933 * SEC_IPC_HOST_INT_MASK.IPC_INPUT_READY_INT_MASK
935 mei_txe_input_ready_interrupt_enable(dev
);
938 /* Set the SICR_SEC_IPC_OUTPUT_STATUS.IPC_OUTPUT_READY bit */
939 mei_txe_output_ready_set(hw
);
941 /* Set bit SICR_HOST_IPC_READINESS.HOST_RDY
943 mei_txe_readiness_set_host_rdy(dev
);
949 * mei_txe_check_and_ack_intrs - translate multi BAR interrupt into
950 * single bit mask and acknowledge the interrupts
952 * @dev: the device structure
953 * @do_ack: acknowledge interrupts
955 * Return: true if found interrupts to process.
957 static bool mei_txe_check_and_ack_intrs(struct mei_device
*dev
, bool do_ack
)
959 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
966 /* read interrupt registers */
967 hhisr
= mei_txe_br_reg_read(hw
, HHISR_REG
);
968 generated
= (hhisr
& IPC_HHIER_MSK
);
972 hisr
= mei_txe_br_reg_read(hw
, HISR_REG
);
974 aliveness
= mei_txe_aliveness_get(dev
);
975 if (hhisr
& IPC_HHIER_SEC
&& aliveness
)
976 ipc_isr
= mei_txe_sec_reg_read_silent(hw
,
977 SEC_IPC_HOST_INT_STATUS_REG
);
981 generated
= generated
||
982 (hisr
& HISR_INT_STS_MSK
) ||
983 (ipc_isr
& SEC_IPC_HOST_INT_STATUS_PENDING
);
985 if (generated
&& do_ack
) {
986 /* Save the interrupt causes */
987 hw
->intr_cause
|= hisr
& HISR_INT_STS_MSK
;
988 if (ipc_isr
& SEC_IPC_HOST_INT_STATUS_IN_RDY
)
989 hw
->intr_cause
|= TXE_INTR_IN_READY
;
992 mei_txe_intr_disable(dev
);
993 /* Clear the interrupts in hierarchy:
994 * IPC and Bridge, than the High Level */
995 mei_txe_sec_reg_write_silent(hw
,
996 SEC_IPC_HOST_INT_STATUS_REG
, ipc_isr
);
997 mei_txe_br_reg_write(hw
, HISR_REG
, hisr
);
998 mei_txe_br_reg_write(hw
, HHISR_REG
, hhisr
);
1006 * mei_txe_irq_quick_handler - The ISR of the MEI device
1008 * @irq: The irq number
1009 * @dev_id: pointer to the device structure
1011 * Return: IRQ_WAKE_THREAD if interrupt is designed for the device
1012 * IRQ_NONE otherwise
1014 irqreturn_t
mei_txe_irq_quick_handler(int irq
, void *dev_id
)
1016 struct mei_device
*dev
= dev_id
;
1018 if (mei_txe_check_and_ack_intrs(dev
, true))
1019 return IRQ_WAKE_THREAD
;
1025 * mei_txe_irq_thread_handler - txe interrupt thread
1027 * @irq: The irq number
1028 * @dev_id: pointer to the device structure
1030 * Return: IRQ_HANDLED
1032 irqreturn_t
mei_txe_irq_thread_handler(int irq
, void *dev_id
)
1034 struct mei_device
*dev
= (struct mei_device
*) dev_id
;
1035 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
1036 struct mei_cl_cb complete_list
;
1040 dev_dbg(dev
->dev
, "irq thread: Interrupt Registers HHISR|HISR|SEC=%02X|%04X|%02X\n",
1041 mei_txe_br_reg_read(hw
, HHISR_REG
),
1042 mei_txe_br_reg_read(hw
, HISR_REG
),
1043 mei_txe_sec_reg_read_silent(hw
, SEC_IPC_HOST_INT_STATUS_REG
));
1046 /* initialize our complete list */
1047 mutex_lock(&dev
->device_lock
);
1048 mei_io_list_init(&complete_list
);
1050 if (pci_dev_msi_enabled(to_pci_dev(dev
->dev
)))
1051 mei_txe_check_and_ack_intrs(dev
, true);
1053 /* show irq events */
1054 mei_txe_pending_interrupts(dev
);
1056 hw
->aliveness
= mei_txe_aliveness_get(dev
);
1057 hw
->readiness
= mei_txe_readiness_get(dev
);
1060 * Detection of TXE driver going through reset
1061 * or TXE driver resetting the HECI interface.
1063 if (test_and_clear_bit(TXE_INTR_READINESS_BIT
, &hw
->intr_cause
)) {
1064 dev_dbg(dev
->dev
, "Readiness Interrupt was received...\n");
1066 /* Check if SeC is going through reset */
1067 if (mei_txe_readiness_is_sec_rdy(hw
->readiness
)) {
1068 dev_dbg(dev
->dev
, "we need to start the dev.\n");
1069 dev
->recvd_hw_ready
= true;
1071 dev
->recvd_hw_ready
= false;
1072 if (dev
->dev_state
!= MEI_DEV_RESETTING
) {
1074 dev_warn(dev
->dev
, "FW not ready: resetting.\n");
1075 schedule_work(&dev
->reset_work
);
1080 wake_up(&dev
->wait_hw_ready
);
1083 /************************************************************/
1084 /* Check interrupt cause:
1085 * Aliveness: Detection of SeC acknowledge of host request that
1086 * it remain alive or host cancellation of that request.
1089 if (test_and_clear_bit(TXE_INTR_ALIVENESS_BIT
, &hw
->intr_cause
)) {
1090 /* Clear the interrupt cause */
1092 "Aliveness Interrupt: Status: %d\n", hw
->aliveness
);
1093 dev
->pg_event
= MEI_PG_EVENT_RECEIVED
;
1094 if (waitqueue_active(&hw
->wait_aliveness_resp
))
1095 wake_up(&hw
->wait_aliveness_resp
);
1100 * Detection of SeC having sent output to host
1102 slots
= mei_count_full_read_slots(dev
);
1103 if (test_and_clear_bit(TXE_INTR_OUT_DB_BIT
, &hw
->intr_cause
)) {
1105 rets
= mei_irq_read_handler(dev
, &complete_list
, &slots
);
1106 if (rets
&& dev
->dev_state
!= MEI_DEV_RESETTING
) {
1108 "mei_irq_read_handler ret = %d.\n", rets
);
1110 schedule_work(&dev
->reset_work
);
1114 /* Input Ready: Detection if host can write to SeC */
1115 if (test_and_clear_bit(TXE_INTR_IN_READY_BIT
, &hw
->intr_cause
)) {
1116 dev
->hbuf_is_ready
= true;
1117 hw
->slots
= dev
->hbuf_depth
;
1120 if (hw
->aliveness
&& dev
->hbuf_is_ready
) {
1121 /* get the real register value */
1122 dev
->hbuf_is_ready
= mei_hbuf_is_ready(dev
);
1123 rets
= mei_irq_write_handler(dev
, &complete_list
);
1124 if (rets
&& rets
!= -EMSGSIZE
)
1125 dev_err(dev
->dev
, "mei_irq_write_handler ret = %d.\n",
1127 dev
->hbuf_is_ready
= mei_hbuf_is_ready(dev
);
1130 mei_irq_compl_handler(dev
, &complete_list
);
1133 dev_dbg(dev
->dev
, "interrupt thread end ret = %d\n", rets
);
1135 mutex_unlock(&dev
->device_lock
);
1137 mei_enable_interrupts(dev
);
1141 static const struct mei_hw_ops mei_txe_hw_ops
= {
1143 .host_is_ready
= mei_txe_host_is_ready
,
1145 .fw_status
= mei_txe_fw_status
,
1146 .pg_state
= mei_txe_pg_state
,
1148 .hw_is_ready
= mei_txe_hw_is_ready
,
1149 .hw_reset
= mei_txe_hw_reset
,
1150 .hw_config
= mei_txe_hw_config
,
1151 .hw_start
= mei_txe_hw_start
,
1153 .pg_in_transition
= mei_txe_pg_in_transition
,
1154 .pg_is_enabled
= mei_txe_pg_is_enabled
,
1156 .intr_clear
= mei_txe_intr_clear
,
1157 .intr_enable
= mei_txe_intr_enable
,
1158 .intr_disable
= mei_txe_intr_disable
,
1160 .hbuf_free_slots
= mei_txe_hbuf_empty_slots
,
1161 .hbuf_is_ready
= mei_txe_is_input_ready
,
1162 .hbuf_max_len
= mei_txe_hbuf_max_len
,
1164 .write
= mei_txe_write
,
1166 .rdbuf_full_slots
= mei_txe_count_full_read_slots
,
1167 .read_hdr
= mei_txe_read_hdr
,
1169 .read
= mei_txe_read
,
1174 * mei_txe_dev_init - allocates and initializes txe hardware specific structure
1178 * Return: struct mei_device * on success or NULL
1180 struct mei_device
*mei_txe_dev_init(struct pci_dev
*pdev
)
1182 struct mei_device
*dev
;
1183 struct mei_txe_hw
*hw
;
1185 dev
= kzalloc(sizeof(struct mei_device
) +
1186 sizeof(struct mei_txe_hw
), GFP_KERNEL
);
1190 mei_device_init(dev
, &pdev
->dev
, &mei_txe_hw_ops
);
1192 hw
= to_txe_hw(dev
);
1194 init_waitqueue_head(&hw
->wait_aliveness_resp
);
1200 * mei_txe_setup_satt2 - SATT2 configuration for DMA support.
1202 * @dev: the device structure
1203 * @addr: physical address start of the range
1204 * @range: physical range size
1206 * Return: 0 on success an error code otherwise
1208 int mei_txe_setup_satt2(struct mei_device
*dev
, phys_addr_t addr
, u32 range
)
1210 struct mei_txe_hw
*hw
= to_txe_hw(dev
);
1212 u32 lo32
= lower_32_bits(addr
);
1213 u32 hi32
= upper_32_bits(addr
);
1216 /* SATT is limited to 36 Bits */
1220 /* SATT has to be 16Byte aligned */
1224 /* SATT range has to be 4Bytes aligned */
1228 /* SATT is limited to 32 MB range*/
1229 if (range
> SATT_RANGE_MAX
)
1232 ctrl
= SATT2_CTRL_VALID_MSK
;
1233 ctrl
|= hi32
<< SATT2_CTRL_BR_BASE_ADDR_REG_SHIFT
;
1235 mei_txe_br_reg_write(hw
, SATT2_SAP_SIZE_REG
, range
);
1236 mei_txe_br_reg_write(hw
, SATT2_BRG_BA_LSB_REG
, lo32
);
1237 mei_txe_br_reg_write(hw
, SATT2_CTRL_REG
, ctrl
);
1238 dev_dbg(dev
->dev
, "SATT2: SAP_SIZE_OFFSET=0x%08X, BRG_BA_LSB_OFFSET=0x%08X, CTRL_OFFSET=0x%08X\n",