2 * H/W layer of ISHTP provider device (ISH)
4 * Copyright (c) 2014-2016, 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
16 #include <linux/sched.h>
17 #include <linux/spinlock.h>
18 #include <linux/delay.h>
19 #include <linux/jiffies.h>
24 /* For FW reset flow */
25 static struct work_struct fw_reset_work;
26 static struct ishtp_device *ishtp_dev;
29 * ish_reg_read() - Read register
30 * @dev: ISHTP device pointer
31 * @offset: Register offset
33 * Read 32 bit register at a given offset
35 * Return: Read register value
37 static inline uint32_t ish_reg_read(const struct ishtp_device *dev,
40 struct ish_hw *hw = to_ish_hw(dev);
42 return readl(hw->mem_addr + offset);
46 * ish_reg_write() - Write register
47 * @dev: ISHTP device pointer
48 * @offset: Register offset
49 * @value: Value to write
51 * Writes 32 bit register at a give offset
53 static inline void ish_reg_write(struct ishtp_device *dev,
57 struct ish_hw *hw = to_ish_hw(dev);
59 writel(value, hw->mem_addr + offset);
63 * _ish_read_fw_sts_reg() - Read FW status register
64 * @dev: ISHTP device pointer
66 * Read FW status register
68 * Return: Read register value
70 static inline uint32_t _ish_read_fw_sts_reg(struct ishtp_device *dev)
72 return ish_reg_read(dev, IPC_REG_ISH_HOST_FWSTS);
76 * check_generated_interrupt() - Check if ISH interrupt
77 * @dev: ISHTP device pointer
79 * Check if an interrupt was generated for ISH
81 * Return: Read true or false
83 static bool check_generated_interrupt(struct ishtp_device *dev)
85 bool interrupt_generated = true;
86 uint32_t pisr_val = 0;
88 if (dev->pdev->device == CHV_DEVICE_ID) {
89 pisr_val = ish_reg_read(dev, IPC_REG_PISR_CHV_AB);
91 IPC_INT_FROM_ISH_TO_HOST_CHV_AB(pisr_val);
93 pisr_val = ish_reg_read(dev, IPC_REG_PISR_BXT);
94 interrupt_generated = !!pisr_val;
95 /* only busy-clear bit is RW, others are RO */
97 ish_reg_write(dev, IPC_REG_PISR_BXT, pisr_val);
100 return interrupt_generated;
104 * ish_is_input_ready() - Check if FW ready for RX
105 * @dev: ISHTP device pointer
107 * Check if ISH FW is ready for receiving data
109 * Return: Read true or false
111 static bool ish_is_input_ready(struct ishtp_device *dev)
113 uint32_t doorbell_val;
115 doorbell_val = ish_reg_read(dev, IPC_REG_HOST2ISH_DRBL);
116 return !IPC_IS_BUSY(doorbell_val);
120 * set_host_ready() - Indicate host ready
121 * @dev: ISHTP device pointer
123 * Set host ready indication to FW
125 static void set_host_ready(struct ishtp_device *dev)
127 if (dev->pdev->device == CHV_DEVICE_ID) {
128 if (dev->pdev->revision == REVISION_ID_CHT_A0 ||
129 (dev->pdev->revision & REVISION_ID_SI_MASK) ==
130 REVISION_ID_CHT_Ax_SI)
131 ish_reg_write(dev, IPC_REG_HOST_COMM, 0x81);
132 else if (dev->pdev->revision == REVISION_ID_CHT_B0 ||
133 (dev->pdev->revision & REVISION_ID_SI_MASK) ==
134 REVISION_ID_CHT_Bx_SI ||
135 (dev->pdev->revision & REVISION_ID_SI_MASK) ==
136 REVISION_ID_CHT_Kx_SI ||
137 (dev->pdev->revision & REVISION_ID_SI_MASK) ==
138 REVISION_ID_CHT_Dx_SI) {
139 uint32_t host_comm_val;
141 host_comm_val = ish_reg_read(dev, IPC_REG_HOST_COMM);
142 host_comm_val |= IPC_HOSTCOMM_INT_EN_BIT_CHV_AB | 0x81;
143 ish_reg_write(dev, IPC_REG_HOST_COMM, host_comm_val);
146 uint32_t host_pimr_val;
148 host_pimr_val = ish_reg_read(dev, IPC_REG_PIMR_BXT);
149 host_pimr_val |= IPC_PIMR_INT_EN_BIT_BXT;
151 * disable interrupt generated instead of
154 host_pimr_val &= ~IPC_HOST2ISH_BUSYCLEAR_MASK_BIT;
156 ish_reg_write(dev, IPC_REG_PIMR_BXT, host_pimr_val);
161 * ishtp_fw_is_ready() - Check if FW ready
162 * @dev: ISHTP device pointer
164 * Check if ISH FW is ready
166 * Return: Read true or false
168 static bool ishtp_fw_is_ready(struct ishtp_device *dev)
170 uint32_t ish_status = _ish_read_fw_sts_reg(dev);
172 return IPC_IS_ISH_ILUP(ish_status) &&
173 IPC_IS_ISH_ISHTP_READY(ish_status);
177 * ish_set_host_rdy() - Indicate host ready
178 * @dev: ISHTP device pointer
180 * Set host ready indication to FW
182 static void ish_set_host_rdy(struct ishtp_device *dev)
184 uint32_t host_status = ish_reg_read(dev, IPC_REG_HOST_COMM);
186 IPC_SET_HOST_READY(host_status);
187 ish_reg_write(dev, IPC_REG_HOST_COMM, host_status);
191 * ish_clr_host_rdy() - Indicate host not ready
192 * @dev: ISHTP device pointer
194 * Send host not ready indication to FW
196 static void ish_clr_host_rdy(struct ishtp_device *dev)
198 uint32_t host_status = ish_reg_read(dev, IPC_REG_HOST_COMM);
200 IPC_CLEAR_HOST_READY(host_status);
201 ish_reg_write(dev, IPC_REG_HOST_COMM, host_status);
205 * _ishtp_read_hdr() - Read message header
206 * @dev: ISHTP device pointer
208 * Read header of 32bit length
210 * Return: Read register value
212 static uint32_t _ishtp_read_hdr(const struct ishtp_device *dev)
214 return ish_reg_read(dev, IPC_REG_ISH2HOST_MSG);
218 * _ishtp_read - Read message
219 * @dev: ISHTP device pointer
220 * @buffer: message buffer
221 * @buffer_length: length of message buffer
223 * Read message from FW
227 static int _ishtp_read(struct ishtp_device *dev, unsigned char *buffer,
228 unsigned long buffer_length)
231 uint32_t *r_buf = (uint32_t *)buffer;
234 msg_offs = IPC_REG_ISH2HOST_MSG + sizeof(struct ishtp_msg_hdr);
235 for (i = 0; i < buffer_length; i += sizeof(uint32_t))
236 *r_buf++ = ish_reg_read(dev, msg_offs + i);
242 * write_ipc_from_queue() - try to write ipc msg from Tx queue to device
243 * @dev: ishtp device pointer
245 * Check if DRBL is cleared. if it is - write the first IPC msg, then call
246 * the callback function (unless it's NULL)
248 * Return: 0 for success else failure code
250 static int write_ipc_from_queue(struct ishtp_device *dev)
252 struct wr_msg_ctl_info *ipc_link;
253 unsigned long length;
256 uint32_t doorbell_val;
260 void (*ipc_send_compl)(void *);
261 void *ipc_send_compl_prm;
263 if (dev->dev_state == ISHTP_DEV_DISABLED)
266 spin_lock_irqsave(&dev->wr_processing_spinlock, flags);
267 if (!ish_is_input_ready(dev)) {
268 spin_unlock_irqrestore(&dev->wr_processing_spinlock, flags);
273 * if tx send list is empty - return 0;
274 * may happen, as RX_COMPLETE handler doesn't check list emptiness.
276 if (list_empty(&dev->wr_processing_list)) {
277 spin_unlock_irqrestore(&dev->wr_processing_spinlock, flags);
281 ipc_link = list_first_entry(&dev->wr_processing_list,
282 struct wr_msg_ctl_info, link);
283 /* first 4 bytes of the data is the doorbell value (IPC header) */
284 length = ipc_link->length - sizeof(uint32_t);
285 doorbell_val = *(uint32_t *)ipc_link->inline_data;
286 r_buf = (uint32_t *)(ipc_link->inline_data + sizeof(uint32_t));
288 /* If sending MNG_SYNC_FW_CLOCK, update clock again */
289 if (IPC_HEADER_GET_PROTOCOL(doorbell_val) == IPC_PROTOCOL_MNG &&
290 IPC_HEADER_GET_MNG_CMD(doorbell_val) == MNG_SYNC_FW_CLOCK) {
291 uint64_t usec_system, usec_utc;
292 struct ipc_time_update_msg time_update;
293 struct time_sync_format ts_format;
295 usec_system = ktime_to_us(ktime_get_boottime());
296 usec_utc = ktime_to_us(ktime_get_real());
297 ts_format.ts1_source = HOST_SYSTEM_TIME_USEC;
298 ts_format.ts2_source = HOST_UTC_TIME_USEC;
299 ts_format.reserved = 0;
301 time_update.primary_host_time = usec_system;
302 time_update.secondary_host_time = usec_utc;
303 time_update.sync_info = ts_format;
305 memcpy(r_buf, &time_update,
306 sizeof(struct ipc_time_update_msg));
309 for (i = 0, reg_addr = IPC_REG_HOST2ISH_MSG; i < length >> 2; i++,
311 ish_reg_write(dev, reg_addr, r_buf[i]);
317 memcpy(®, &r_buf[length >> 2], rem);
318 ish_reg_write(dev, reg_addr, reg);
320 ish_reg_write(dev, IPC_REG_HOST2ISH_DRBL, doorbell_val);
322 /* Flush writes to msg registers and doorbell */
323 ish_reg_read(dev, IPC_REG_ISH_HOST_FWSTS);
325 /* Update IPC counters */
327 dev->ipc_tx_bytes_cnt += IPC_HEADER_GET_LENGTH(doorbell_val);
329 ipc_send_compl = ipc_link->ipc_send_compl;
330 ipc_send_compl_prm = ipc_link->ipc_send_compl_prm;
331 list_del_init(&ipc_link->link);
332 list_add(&ipc_link->link, &dev->wr_free_list);
333 spin_unlock_irqrestore(&dev->wr_processing_spinlock, flags);
336 * callback will be called out of spinlock,
337 * after ipc_link returned to free list
340 ipc_send_compl(ipc_send_compl_prm);
346 * write_ipc_to_queue() - write ipc msg to Tx queue
347 * @dev: ishtp device instance
348 * @ipc_send_compl: Send complete callback
349 * @ipc_send_compl_prm: Parameter to send in complete callback
350 * @msg: Pointer to message
351 * @length: Length of message
353 * Recived msg with IPC (and upper protocol) header and add it to the device
354 * Tx-to-write list then try to send the first IPC waiting msg
355 * (if DRBL is cleared)
356 * This function returns negative value for failure (means free list
357 * is empty, or msg too long) and 0 for success.
359 * Return: 0 for success else failure code
361 static int write_ipc_to_queue(struct ishtp_device *dev,
362 void (*ipc_send_compl)(void *), void *ipc_send_compl_prm,
363 unsigned char *msg, int length)
365 struct wr_msg_ctl_info *ipc_link;
368 if (length > IPC_FULL_MSG_SIZE)
371 spin_lock_irqsave(&dev->wr_processing_spinlock, flags);
372 if (list_empty(&dev->wr_free_list)) {
373 spin_unlock_irqrestore(&dev->wr_processing_spinlock, flags);
376 ipc_link = list_first_entry(&dev->wr_free_list,
377 struct wr_msg_ctl_info, link);
378 list_del_init(&ipc_link->link);
380 ipc_link->ipc_send_compl = ipc_send_compl;
381 ipc_link->ipc_send_compl_prm = ipc_send_compl_prm;
382 ipc_link->length = length;
383 memcpy(ipc_link->inline_data, msg, length);
385 list_add_tail(&ipc_link->link, &dev->wr_processing_list);
386 spin_unlock_irqrestore(&dev->wr_processing_spinlock, flags);
388 write_ipc_from_queue(dev);
394 * ipc_send_mng_msg() - Send management message
395 * @dev: ishtp device instance
396 * @msg_code: Message code
397 * @msg: Pointer to message
398 * @size: Length of message
400 * Send management message to FW
402 * Return: 0 for success else failure code
404 static int ipc_send_mng_msg(struct ishtp_device *dev, uint32_t msg_code,
405 void *msg, size_t size)
407 unsigned char ipc_msg[IPC_FULL_MSG_SIZE];
408 uint32_t drbl_val = IPC_BUILD_MNG_MSG(msg_code, size);
410 memcpy(ipc_msg, &drbl_val, sizeof(uint32_t));
411 memcpy(ipc_msg + sizeof(uint32_t), msg, size);
412 return write_ipc_to_queue(dev, NULL, NULL, ipc_msg,
413 sizeof(uint32_t) + size);
416 #define WAIT_FOR_FW_RDY 0x1
417 #define WAIT_FOR_INPUT_RDY 0x2
420 * timed_wait_for_timeout() - wait special event with timeout
421 * @dev: ISHTP device pointer
422 * @condition: indicate the condition for waiting
423 * @timeinc: time slice for every wait cycle, in ms
424 * @timeout: time in ms for timeout
426 * This function will check special event to be ready in a loop, the loop
427 * period is specificd in timeinc. Wait timeout will causes failure.
429 * Return: 0 for success else failure code
431 static int timed_wait_for_timeout(struct ishtp_device *dev, int condition,
432 unsigned int timeinc, unsigned int timeout)
434 bool complete = false;
438 if (condition == WAIT_FOR_FW_RDY) {
439 complete = ishtp_fw_is_ready(dev);
440 } else if (condition == WAIT_FOR_INPUT_RDY) {
441 complete = ish_is_input_ready(dev);
448 unsigned long left_time;
450 left_time = msleep_interruptible(timeinc);
451 timeout -= (timeinc - left_time);
453 } while (!complete && timeout > 0);
464 #define TIME_SLICE_FOR_FW_RDY_MS 100
465 #define TIME_SLICE_FOR_INPUT_RDY_MS 100
466 #define TIMEOUT_FOR_FW_RDY_MS 2000
467 #define TIMEOUT_FOR_INPUT_RDY_MS 2000
470 * ish_fw_reset_handler() - FW reset handler
471 * @dev: ishtp device pointer
475 * Return: 0 for success else failure code
477 static int ish_fw_reset_handler(struct ishtp_device *dev)
483 reset_id = ish_reg_read(dev, IPC_REG_ISH2HOST_MSG) & 0xFFFF;
485 /* Clear IPC output queue */
486 spin_lock_irqsave(&dev->wr_processing_spinlock, flags);
487 list_splice_init(&dev->wr_processing_list, &dev->wr_free_list);
488 spin_unlock_irqrestore(&dev->wr_processing_spinlock, flags);
490 /* ISHTP notification in IPC_RESET */
491 ishtp_reset_handler(dev);
493 if (!ish_is_input_ready(dev))
494 timed_wait_for_timeout(dev, WAIT_FOR_INPUT_RDY,
495 TIME_SLICE_FOR_INPUT_RDY_MS, TIMEOUT_FOR_INPUT_RDY_MS);
498 if (!ish_is_input_ready(dev))
501 * Set HOST2ISH.ILUP. Apparently we need this BEFORE sending
502 * RESET_NOTIFY_ACK - FW will be checking for it
504 ish_set_host_rdy(dev);
505 /* Send RESET_NOTIFY_ACK (with reset_id) */
506 ipc_send_mng_msg(dev, MNG_RESET_NOTIFY_ACK, &reset_id,
509 /* Wait for ISH FW'es ILUP and ISHTP_READY */
510 timed_wait_for_timeout(dev, WAIT_FOR_FW_RDY,
511 TIME_SLICE_FOR_FW_RDY_MS, TIMEOUT_FOR_FW_RDY_MS);
512 if (!ishtp_fw_is_ready(dev)) {
516 ish_status = _ish_read_fw_sts_reg(dev);
518 "[ishtp-ish]: completed reset, ISH is dead (FWSTS = %08X)\n",
525 #define TIMEOUT_FOR_HW_RDY_MS 300
528 * ish_fw_reset_work_fn() - FW reset worker function
531 * Call ish_fw_reset_handler to complete FW reset
533 static void fw_reset_work_fn(struct work_struct *unused)
537 rv = ish_fw_reset_handler(ishtp_dev);
539 /* ISH is ILUP & ISHTP-ready. Restart ISHTP */
540 msleep_interruptible(TIMEOUT_FOR_HW_RDY_MS);
541 ishtp_dev->recvd_hw_ready = 1;
542 wake_up_interruptible(&ishtp_dev->wait_hw_ready);
544 /* ISHTP notification in IPC_RESET sequence completion */
545 ishtp_reset_compl_handler(ishtp_dev);
547 dev_err(ishtp_dev->devc, "[ishtp-ish]: FW reset failed (%d)\n",
552 * _ish_sync_fw_clock() -Sync FW clock with the OS clock
553 * @dev: ishtp device pointer
555 * Sync FW and OS time
557 static void _ish_sync_fw_clock(struct ishtp_device *dev)
559 static unsigned long prev_sync;
562 if (prev_sync && jiffies - prev_sync < 20 * HZ)
566 usec = ktime_to_us(ktime_get_boottime());
567 ipc_send_mng_msg(dev, MNG_SYNC_FW_CLOCK, &usec, sizeof(uint64_t));
571 * recv_ipc() - Receive and process IPC management messages
572 * @dev: ishtp device instance
573 * @doorbell_val: doorbell value
575 * This function runs in ISR context.
576 * NOTE: Any other mng command than reset_notify and reset_notify_ack
577 * won't wake BH handler
579 static void recv_ipc(struct ishtp_device *dev, uint32_t doorbell_val)
583 mng_cmd = IPC_HEADER_GET_MNG_CMD(doorbell_val);
589 case MNG_RX_CMPL_INDICATION:
590 if (dev->suspend_flag) {
591 dev->suspend_flag = 0;
592 wake_up_interruptible(&dev->suspend_wait);
594 if (dev->resume_flag) {
595 dev->resume_flag = 0;
596 wake_up_interruptible(&dev->resume_wait);
599 write_ipc_from_queue(dev);
602 case MNG_RESET_NOTIFY:
605 INIT_WORK(&fw_reset_work, fw_reset_work_fn);
607 schedule_work(&fw_reset_work);
610 case MNG_RESET_NOTIFY_ACK:
611 dev->recvd_hw_ready = 1;
612 wake_up_interruptible(&dev->wait_hw_ready);
618 * ish_irq_handler() - ISH IRQ handler
620 * @dev_id: ishtp device pointer
622 * ISH IRQ handler. If interrupt is generated and is for ISH it will process
625 irqreturn_t ish_irq_handler(int irq, void *dev_id)
627 struct ishtp_device *dev = dev_id;
628 uint32_t doorbell_val;
629 bool interrupt_generated;
631 /* Check that it's interrupt from ISH (may be shared) */
632 interrupt_generated = check_generated_interrupt(dev);
634 if (!interrupt_generated)
637 doorbell_val = ish_reg_read(dev, IPC_REG_ISH2HOST_DRBL);
638 if (!IPC_IS_BUSY(doorbell_val))
641 if (dev->dev_state == ISHTP_DEV_DISABLED)
644 /* Sanity check: IPC dgram length in header */
645 if (IPC_HEADER_GET_LENGTH(doorbell_val) > IPC_PAYLOAD_SIZE) {
647 "IPC hdr - bad length: %u; dropped\n",
648 (unsigned int)IPC_HEADER_GET_LENGTH(doorbell_val));
652 switch (IPC_HEADER_GET_PROTOCOL(doorbell_val)) {
655 case IPC_PROTOCOL_MNG:
656 recv_ipc(dev, doorbell_val);
658 case IPC_PROTOCOL_ISHTP:
664 /* Update IPC counters */
666 dev->ipc_rx_bytes_cnt += IPC_HEADER_GET_LENGTH(doorbell_val);
668 ish_reg_write(dev, IPC_REG_ISH2HOST_DRBL, 0);
669 /* Flush write to doorbell */
670 ish_reg_read(dev, IPC_REG_ISH_HOST_FWSTS);
676 * ish_disable_dma() - disable dma communication between host and ISHFW
677 * @dev: ishtp device pointer
679 * Clear the dma enable bit and wait for dma inactive.
681 * Return: 0 for success else error code.
683 static int ish_disable_dma(struct ishtp_device *dev)
685 unsigned int dma_delay;
687 /* Clear the dma enable bit */
688 ish_reg_write(dev, IPC_REG_ISH_RMP2, 0);
690 /* wait for dma inactive */
691 for (dma_delay = 0; dma_delay < MAX_DMA_DELAY &&
692 _ish_read_fw_sts_reg(dev) & (IPC_ISH_IN_DMA);
696 if (dma_delay >= MAX_DMA_DELAY) {
698 "Wait for DMA inactive timeout\n");
706 * ish_wakeup() - wakeup ishfw from waiting-for-host state
707 * @dev: ishtp device pointer
709 * Set the dma enable bit and send a void message to FW,
710 * it wil wakeup FW from waiting-for-host state.
712 static void ish_wakeup(struct ishtp_device *dev)
714 /* Set dma enable bit */
715 ish_reg_write(dev, IPC_REG_ISH_RMP2, IPC_RMP2_DMA_ENABLED);
718 * Send 0 IPC message so that ISH FW wakes up if it was already
721 ish_reg_write(dev, IPC_REG_HOST2ISH_DRBL, IPC_DRBL_BUSY_BIT);
723 /* Flush writes to doorbell and REMAP2 */
724 ish_reg_read(dev, IPC_REG_ISH_HOST_FWSTS);
728 * _ish_hw_reset() - HW reset
729 * @dev: ishtp device pointer
731 * Reset ISH HW to recover if any error
733 * Return: 0 for success else error fault code
735 static int _ish_hw_reset(struct ishtp_device *dev)
737 struct pci_dev *pdev = dev->pdev;
744 rv = pci_reset_function(pdev);
746 dev->dev_state = ISHTP_DEV_RESETTING;
749 dev_err(&pdev->dev, "Can't reset - no PM caps\n");
753 /* Disable dma communication between FW and host */
754 if (ish_disable_dma(dev)) {
756 "Can't reset - stuck with DMA in-progress\n");
760 pci_read_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, &csr);
762 csr &= ~PCI_PM_CTRL_STATE_MASK;
764 pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, csr);
766 mdelay(pdev->d3_delay);
768 csr &= ~PCI_PM_CTRL_STATE_MASK;
770 pci_write_config_word(pdev, pdev->pm_cap + PCI_PM_CTRL, csr);
772 /* Now we can enable ISH DMA operation and wakeup ISHFW */
779 * _ish_ipc_reset() - IPC reset
780 * @dev: ishtp device pointer
782 * Resets host and fw IPC and upper layers
784 * Return: 0 for success else error fault code
786 static int _ish_ipc_reset(struct ishtp_device *dev)
788 struct ipc_rst_payload_type ipc_mng_msg;
791 ipc_mng_msg.reset_id = 1;
792 ipc_mng_msg.reserved = 0;
796 /* Clear the incoming doorbell */
797 ish_reg_write(dev, IPC_REG_ISH2HOST_DRBL, 0);
798 /* Flush write to doorbell */
799 ish_reg_read(dev, IPC_REG_ISH_HOST_FWSTS);
801 dev->recvd_hw_ready = 0;
804 rv = ipc_send_mng_msg(dev, MNG_RESET_NOTIFY, &ipc_mng_msg,
805 sizeof(struct ipc_rst_payload_type));
807 dev_err(dev->devc, "Failed to send IPC MNG_RESET_NOTIFY\n");
811 wait_event_interruptible_timeout(dev->wait_hw_ready,
812 dev->recvd_hw_ready, 2 * HZ);
813 if (!dev->recvd_hw_ready) {
814 dev_err(dev->devc, "Timed out waiting for HW ready\n");
822 * ish_hw_start() -Start ISH HW
823 * @dev: ishtp device pointer
825 * Set host to ready state and wait for FW reset
827 * Return: 0 for success else error fault code
829 int ish_hw_start(struct ishtp_device *dev)
831 ish_set_host_rdy(dev);
835 /* After that we can enable ISH DMA operation and wakeup ISHFW */
838 /* wait for FW-initiated reset flow */
839 if (!dev->recvd_hw_ready)
840 wait_event_interruptible_timeout(dev->wait_hw_ready,
844 if (!dev->recvd_hw_ready) {
846 "[ishtp-ish]: Timed out waiting for FW-initiated reset\n");
854 * ish_ipc_get_header() -Get doorbell value
855 * @dev: ishtp device pointer
856 * @length: length of message
859 * Get door bell value from message header
861 * Return: door bell value
863 static uint32_t ish_ipc_get_header(struct ishtp_device *dev, int length,
868 drbl_val = IPC_BUILD_HEADER(length, IPC_PROTOCOL_ISHTP, busy);
873 static const struct ishtp_hw_ops ish_hw_ops = {
874 .hw_reset = _ish_hw_reset,
875 .ipc_reset = _ish_ipc_reset,
876 .ipc_get_header = ish_ipc_get_header,
877 .ishtp_read = _ishtp_read,
878 .write = write_ipc_to_queue,
879 .get_fw_status = _ish_read_fw_sts_reg,
880 .sync_fw_clock = _ish_sync_fw_clock,
881 .ishtp_read_hdr = _ishtp_read_hdr
885 * ish_dev_init() -Initialize ISH devoce
888 * Allocate ISHTP device and initialize IPC processing
890 * Return: ISHTP device instance on success else NULL
892 struct ishtp_device *ish_dev_init(struct pci_dev *pdev)
894 struct ishtp_device *dev;
897 dev = devm_kzalloc(&pdev->dev,
898 sizeof(struct ishtp_device) + sizeof(struct ish_hw),
903 ishtp_device_init(dev);
905 init_waitqueue_head(&dev->wait_hw_ready);
907 spin_lock_init(&dev->wr_processing_spinlock);
909 /* Init IPC processing and free lists */
910 INIT_LIST_HEAD(&dev->wr_processing_list);
911 INIT_LIST_HEAD(&dev->wr_free_list);
912 for (i = 0; i < IPC_TX_FIFO_SIZE; i++) {
913 struct wr_msg_ctl_info *tx_buf;
915 tx_buf = devm_kzalloc(&pdev->dev,
916 sizeof(struct wr_msg_ctl_info),
920 * IPC buffers may be limited or not available
921 * at all - although this shouldn't happen
924 "[ishtp-ish]: failure in Tx FIFO allocations (%d)\n",
928 list_add_tail(&tx_buf->link, &dev->wr_free_list);
931 dev->ops = &ish_hw_ops;
932 dev->devc = &pdev->dev;
933 dev->mtu = IPC_PAYLOAD_SIZE - sizeof(struct ishtp_msg_hdr);
938 * ish_device_disable() - Disable ISH device
939 * @dev: ISHTP device pointer
941 * Disable ISH by clearing host ready to inform firmware.
943 void ish_device_disable(struct ishtp_device *dev)
945 struct pci_dev *pdev = dev->pdev;
950 /* Disable dma communication between FW and host */
951 if (ish_disable_dma(dev)) {
953 "Can't reset - stuck with DMA in-progress\n");
957 /* Put ISH to D3hot state for power saving */
958 pci_set_power_state(pdev, PCI_D3hot);
960 dev->dev_state = ISHTP_DEV_DISABLED;
961 ish_clr_host_rdy(dev);