1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (c) 2012-2016, Intel Corporation.
8 #include <linux/module.h>
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/device.h>
12 #include <linux/sched.h>
13 #include <linux/slab.h>
15 #include "ishtp-dev.h"
19 static int ishtp_use_dma
;
20 module_param_named(ishtp_use_dma
, ishtp_use_dma
, int, 0600);
21 MODULE_PARM_DESC(ishtp_use_dma
, "Use DMA to send messages");
23 #define to_ishtp_cl_driver(d) container_of(d, struct ishtp_cl_driver, driver)
24 #define to_ishtp_cl_device(d) container_of(d, struct ishtp_cl_device, dev)
25 static bool ishtp_device_ready
;
28 * ishtp_recv() - process ishtp message
31 * If a message with valid header and size is received, then
32 * this function calls appropriate handler. The host or firmware
33 * address is zero, then they are host bus management message,
34 * otherwise they are message fo clients.
36 void ishtp_recv(struct ishtp_device
*dev
)
39 struct ishtp_msg_hdr
*ishtp_hdr
;
41 /* Read ISHTP header dword */
42 msg_hdr
= dev
->ops
->ishtp_read_hdr(dev
);
46 dev
->ops
->sync_fw_clock(dev
);
48 ishtp_hdr
= (struct ishtp_msg_hdr
*)&msg_hdr
;
49 dev
->ishtp_msg_hdr
= msg_hdr
;
51 /* Sanity check: ISHTP frag. length in header */
52 if (ishtp_hdr
->length
> dev
->mtu
) {
54 "ISHTP hdr - bad length: %u; dropped [%08X]\n",
55 (unsigned int)ishtp_hdr
->length
, msg_hdr
);
59 /* ISHTP bus message */
60 if (!ishtp_hdr
->host_addr
&& !ishtp_hdr
->fw_addr
)
61 recv_hbm(dev
, ishtp_hdr
);
62 /* ISHTP fixed-client message */
63 else if (!ishtp_hdr
->host_addr
)
64 recv_fixed_cl_msg(dev
, ishtp_hdr
);
66 /* ISHTP client message */
67 recv_ishtp_cl_msg(dev
, ishtp_hdr
);
69 EXPORT_SYMBOL(ishtp_recv
);
72 * ishtp_send_msg() - Send ishtp message
74 * @hdr: Message header
75 * @msg: Message contents
76 * @ipc_send_compl: completion callback
77 * @ipc_send_compl_prm: completion callback parameter
79 * Send a multi fragment message via IPC. After sending the first fragment
80 * the completion callback is called to schedule transmit of next fragment.
82 * Return: This returns IPC send message status.
84 int ishtp_send_msg(struct ishtp_device
*dev
, struct ishtp_msg_hdr
*hdr
,
85 void *msg
, void(*ipc_send_compl
)(void *),
86 void *ipc_send_compl_prm
)
88 unsigned char ipc_msg
[IPC_FULL_MSG_SIZE
];
91 drbl_val
= dev
->ops
->ipc_get_header(dev
, hdr
->length
+
92 sizeof(struct ishtp_msg_hdr
),
95 memcpy(ipc_msg
, &drbl_val
, sizeof(uint32_t));
96 memcpy(ipc_msg
+ sizeof(uint32_t), hdr
, sizeof(uint32_t));
97 memcpy(ipc_msg
+ 2 * sizeof(uint32_t), msg
, hdr
->length
);
98 return dev
->ops
->write(dev
, ipc_send_compl
, ipc_send_compl_prm
,
99 ipc_msg
, 2 * sizeof(uint32_t) + hdr
->length
);
103 * ishtp_write_message() - Send ishtp single fragment message
105 * @hdr: Message header
108 * Send a single fragment message via IPC. This returns IPC send message
111 * Return: This returns IPC send message status.
113 int ishtp_write_message(struct ishtp_device
*dev
, struct ishtp_msg_hdr
*hdr
,
116 return ishtp_send_msg(dev
, hdr
, buf
, NULL
, NULL
);
120 * ishtp_fw_cl_by_uuid() - locate index of fw client
122 * @uuid: uuid of the client to search
124 * Search firmware client using UUID.
126 * Return: fw client index or -ENOENT if not found
128 int ishtp_fw_cl_by_uuid(struct ishtp_device
*dev
, const guid_t
*uuid
)
132 for (i
= 0; i
< dev
->fw_clients_num
; ++i
) {
133 if (guid_equal(uuid
, &dev
->fw_clients
[i
].props
.protocol_name
))
138 EXPORT_SYMBOL(ishtp_fw_cl_by_uuid
);
141 * ishtp_fw_cl_get_client() - return client information to client
142 * @dev: the ishtp device structure
143 * @uuid: uuid of the client to search
145 * Search firmware client using UUID and reture related client information.
147 * Return: pointer of client information on success, NULL on failure.
149 struct ishtp_fw_client
*ishtp_fw_cl_get_client(struct ishtp_device
*dev
,
155 spin_lock_irqsave(&dev
->fw_clients_lock
, flags
);
156 i
= ishtp_fw_cl_by_uuid(dev
, uuid
);
157 spin_unlock_irqrestore(&dev
->fw_clients_lock
, flags
);
158 if (i
< 0 || dev
->fw_clients
[i
].props
.fixed_address
)
161 return &dev
->fw_clients
[i
];
163 EXPORT_SYMBOL(ishtp_fw_cl_get_client
);
166 * ishtp_get_fw_client_id() - Get fw client id
168 * This interface is used to reset HW get FW client id.
170 * Return: firmware client id.
172 int ishtp_get_fw_client_id(struct ishtp_fw_client
*fw_client
)
174 return fw_client
->client_id
;
176 EXPORT_SYMBOL(ishtp_get_fw_client_id
);
179 * ishtp_fw_cl_by_id() - return index to fw_clients for client_id
180 * @dev: the ishtp device structure
181 * @client_id: fw client id to search
183 * Search firmware client using client id.
185 * Return: index on success, -ENOENT on failure.
187 int ishtp_fw_cl_by_id(struct ishtp_device
*dev
, uint8_t client_id
)
189 int i
, res
= -ENOENT
;
192 spin_lock_irqsave(&dev
->fw_clients_lock
, flags
);
193 for (i
= 0; i
< dev
->fw_clients_num
; i
++) {
194 if (dev
->fw_clients
[i
].client_id
== client_id
) {
199 spin_unlock_irqrestore(&dev
->fw_clients_lock
, flags
);
205 * ishtp_cl_device_probe() - Bus probe() callback
206 * @dev: the device structure
208 * This is a bus probe callback and calls the drive probe function.
210 * Return: Return value from driver probe() call.
212 static int ishtp_cl_device_probe(struct device
*dev
)
214 struct ishtp_cl_device
*device
= to_ishtp_cl_device(dev
);
215 struct ishtp_cl_driver
*driver
;
220 driver
= to_ishtp_cl_driver(dev
->driver
);
221 if (!driver
|| !driver
->probe
)
224 return driver
->probe(device
);
228 * ishtp_cl_bus_match() - Bus match() callback
229 * @dev: the device structure
230 * @drv: the driver structure
232 * This is a bus match callback, called when a new ishtp_cl_device is
233 * registered during ishtp bus client enumeration. Use the guid_t in
234 * drv and dev to decide whether they match or not.
236 * Return: 1 if dev & drv matches, 0 otherwise.
238 static int ishtp_cl_bus_match(struct device
*dev
, struct device_driver
*drv
)
240 struct ishtp_cl_device
*device
= to_ishtp_cl_device(dev
);
241 struct ishtp_cl_driver
*driver
= to_ishtp_cl_driver(drv
);
243 return guid_equal(driver
->guid
,
244 &device
->fw_client
->props
.protocol_name
);
248 * ishtp_cl_device_remove() - Bus remove() callback
249 * @dev: the device structure
251 * This is a bus remove callback and calls the drive remove function.
252 * Since the ISH driver model supports only built in, this is
253 * primarily can be called during pci driver init failure.
255 * Return: Return value from driver remove() call.
257 static int ishtp_cl_device_remove(struct device
*dev
)
259 struct ishtp_cl_device
*device
= to_ishtp_cl_device(dev
);
260 struct ishtp_cl_driver
*driver
;
262 if (!device
|| !dev
->driver
)
265 if (device
->event_cb
) {
266 device
->event_cb
= NULL
;
267 cancel_work_sync(&device
->event_work
);
270 driver
= to_ishtp_cl_driver(dev
->driver
);
271 if (!driver
->remove
) {
277 return driver
->remove(device
);
281 * ishtp_cl_device_suspend() - Bus suspend callback
284 * Called during device suspend process.
286 * Return: Return value from driver suspend() call.
288 static int ishtp_cl_device_suspend(struct device
*dev
)
290 struct ishtp_cl_device
*device
= to_ishtp_cl_device(dev
);
291 struct ishtp_cl_driver
*driver
;
297 driver
= to_ishtp_cl_driver(dev
->driver
);
298 if (driver
&& driver
->driver
.pm
) {
299 if (driver
->driver
.pm
->suspend
)
300 ret
= driver
->driver
.pm
->suspend(dev
);
307 * ishtp_cl_device_resume() - Bus resume callback
310 * Called during device resume process.
312 * Return: Return value from driver resume() call.
314 static int ishtp_cl_device_resume(struct device
*dev
)
316 struct ishtp_cl_device
*device
= to_ishtp_cl_device(dev
);
317 struct ishtp_cl_driver
*driver
;
324 * When ISH needs hard reset, it is done asynchrnously, hence bus
325 * resume will be called before full ISH resume
327 if (device
->ishtp_dev
->resume_flag
)
330 driver
= to_ishtp_cl_driver(dev
->driver
);
331 if (driver
&& driver
->driver
.pm
) {
332 if (driver
->driver
.pm
->resume
)
333 ret
= driver
->driver
.pm
->resume(dev
);
340 * ishtp_cl_device_reset() - Reset callback
341 * @device: ishtp client device instance
343 * This is a callback when HW reset is done and the device need
346 * Return: Return value from driver reset() call.
348 static int ishtp_cl_device_reset(struct ishtp_cl_device
*device
)
350 struct ishtp_cl_driver
*driver
;
353 device
->event_cb
= NULL
;
354 cancel_work_sync(&device
->event_work
);
356 driver
= to_ishtp_cl_driver(device
->dev
.driver
);
357 if (driver
&& driver
->reset
)
358 ret
= driver
->reset(device
);
363 static ssize_t
modalias_show(struct device
*dev
, struct device_attribute
*a
,
368 len
= snprintf(buf
, PAGE_SIZE
, "ishtp:%s\n", dev_name(dev
));
369 return (len
>= PAGE_SIZE
) ? (PAGE_SIZE
- 1) : len
;
371 static DEVICE_ATTR_RO(modalias
);
373 static struct attribute
*ishtp_cl_dev_attrs
[] = {
374 &dev_attr_modalias
.attr
,
377 ATTRIBUTE_GROUPS(ishtp_cl_dev
);
379 static int ishtp_cl_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
381 if (add_uevent_var(env
, "MODALIAS=ishtp:%s", dev_name(dev
)))
386 static const struct dev_pm_ops ishtp_cl_bus_dev_pm_ops
= {
387 /* Suspend callbacks */
388 .suspend
= ishtp_cl_device_suspend
,
389 .resume
= ishtp_cl_device_resume
,
390 /* Hibernate callbacks */
391 .freeze
= ishtp_cl_device_suspend
,
392 .thaw
= ishtp_cl_device_resume
,
393 .restore
= ishtp_cl_device_resume
,
396 static struct bus_type ishtp_cl_bus_type
= {
398 .dev_groups
= ishtp_cl_dev_groups
,
399 .probe
= ishtp_cl_device_probe
,
400 .match
= ishtp_cl_bus_match
,
401 .remove
= ishtp_cl_device_remove
,
402 .pm
= &ishtp_cl_bus_dev_pm_ops
,
403 .uevent
= ishtp_cl_uevent
,
406 static void ishtp_cl_dev_release(struct device
*dev
)
408 kfree(to_ishtp_cl_device(dev
));
411 static const struct device_type ishtp_cl_device_type
= {
412 .release
= ishtp_cl_dev_release
,
416 * ishtp_bus_add_device() - Function to create device on bus
418 * @uuid: uuid of the client
419 * @name: Name of the client
421 * Allocate ISHTP bus client device, attach it to uuid
422 * and register with ISHTP bus.
424 * Return: ishtp_cl_device pointer or NULL on failure
426 static struct ishtp_cl_device
*ishtp_bus_add_device(struct ishtp_device
*dev
,
427 guid_t uuid
, char *name
)
429 struct ishtp_cl_device
*device
;
433 spin_lock_irqsave(&dev
->device_list_lock
, flags
);
434 list_for_each_entry(device
, &dev
->device_list
, device_link
) {
435 if (!strcmp(name
, dev_name(&device
->dev
))) {
436 device
->fw_client
= &dev
->fw_clients
[
437 dev
->fw_client_presentation_num
- 1];
438 spin_unlock_irqrestore(&dev
->device_list_lock
, flags
);
439 ishtp_cl_device_reset(device
);
443 spin_unlock_irqrestore(&dev
->device_list_lock
, flags
);
445 device
= kzalloc(sizeof(struct ishtp_cl_device
), GFP_KERNEL
);
449 device
->dev
.parent
= dev
->devc
;
450 device
->dev
.bus
= &ishtp_cl_bus_type
;
451 device
->dev
.type
= &ishtp_cl_device_type
;
452 device
->ishtp_dev
= dev
;
455 &dev
->fw_clients
[dev
->fw_client_presentation_num
- 1];
457 dev_set_name(&device
->dev
, "%s", name
);
459 spin_lock_irqsave(&dev
->device_list_lock
, flags
);
460 list_add_tail(&device
->device_link
, &dev
->device_list
);
461 spin_unlock_irqrestore(&dev
->device_list_lock
, flags
);
463 status
= device_register(&device
->dev
);
465 spin_lock_irqsave(&dev
->device_list_lock
, flags
);
466 list_del(&device
->device_link
);
467 spin_unlock_irqrestore(&dev
->device_list_lock
, flags
);
468 dev_err(dev
->devc
, "Failed to register ISHTP client device\n");
469 put_device(&device
->dev
);
473 ishtp_device_ready
= true;
479 * ishtp_bus_remove_device() - Function to relase device on bus
480 * @device: client device instance
482 * This is a counterpart of ishtp_bus_add_device.
483 * Device is unregistered.
484 * the device structure is freed in 'ishtp_cl_dev_release' function
485 * Called only during error in pci driver init path.
487 static void ishtp_bus_remove_device(struct ishtp_cl_device
*device
)
489 device_unregister(&device
->dev
);
493 * ishtp_cl_driver_register() - Client driver register
494 * @driver: the client driver instance
495 * @owner: Owner of this driver module
497 * Once a client driver is probed, it created a client
498 * instance and registers with the bus.
500 * Return: Return value of driver_register or -ENODEV if not ready
502 int ishtp_cl_driver_register(struct ishtp_cl_driver
*driver
,
503 struct module
*owner
)
507 if (!ishtp_device_ready
)
510 driver
->driver
.name
= driver
->name
;
511 driver
->driver
.owner
= owner
;
512 driver
->driver
.bus
= &ishtp_cl_bus_type
;
514 err
= driver_register(&driver
->driver
);
520 EXPORT_SYMBOL(ishtp_cl_driver_register
);
523 * ishtp_cl_driver_unregister() - Client driver unregister
524 * @driver: the client driver instance
526 * Unregister client during device removal process.
528 void ishtp_cl_driver_unregister(struct ishtp_cl_driver
*driver
)
530 driver_unregister(&driver
->driver
);
532 EXPORT_SYMBOL(ishtp_cl_driver_unregister
);
535 * ishtp_bus_event_work() - event work function
536 * @work: work struct pointer
538 * Once an event is received for a client this work
539 * function is called. If the device has registered a
540 * callback then the callback is called.
542 static void ishtp_bus_event_work(struct work_struct
*work
)
544 struct ishtp_cl_device
*device
;
546 device
= container_of(work
, struct ishtp_cl_device
, event_work
);
548 if (device
->event_cb
)
549 device
->event_cb(device
);
553 * ishtp_cl_bus_rx_event() - schedule event work
554 * @device: client device instance
556 * Once an event is received for a client this schedules
557 * a work function to process.
559 void ishtp_cl_bus_rx_event(struct ishtp_cl_device
*device
)
561 if (!device
|| !device
->event_cb
)
564 if (device
->event_cb
)
565 schedule_work(&device
->event_work
);
569 * ishtp_register_event_cb() - Register callback
570 * @device: client device instance
571 * @event_cb: Event processor for an client
573 * Register a callback for events, called from client driver
575 * Return: Return 0 or -EALREADY if already registered
577 int ishtp_register_event_cb(struct ishtp_cl_device
*device
,
578 void (*event_cb
)(struct ishtp_cl_device
*))
580 if (device
->event_cb
)
583 device
->event_cb
= event_cb
;
584 INIT_WORK(&device
->event_work
, ishtp_bus_event_work
);
588 EXPORT_SYMBOL(ishtp_register_event_cb
);
591 * ishtp_get_device() - update usage count for the device
592 * @cl_device: client device instance
594 * Increment the usage count. The device can't be deleted
596 void ishtp_get_device(struct ishtp_cl_device
*cl_device
)
598 cl_device
->reference_count
++;
600 EXPORT_SYMBOL(ishtp_get_device
);
603 * ishtp_put_device() - decrement usage count for the device
604 * @cl_device: client device instance
606 * Decrement the usage count. The device can be deleted is count = 0
608 void ishtp_put_device(struct ishtp_cl_device
*cl_device
)
610 cl_device
->reference_count
--;
612 EXPORT_SYMBOL(ishtp_put_device
);
615 * ishtp_set_drvdata() - set client driver data
616 * @cl_device: client device instance
617 * @data: driver data need to be set
619 * Set client driver data to cl_device->driver_data.
621 void ishtp_set_drvdata(struct ishtp_cl_device
*cl_device
, void *data
)
623 cl_device
->driver_data
= data
;
625 EXPORT_SYMBOL(ishtp_set_drvdata
);
628 * ishtp_get_drvdata() - get client driver data
629 * @cl_device: client device instance
631 * Get client driver data from cl_device->driver_data.
633 * Return: pointer of driver data
635 void *ishtp_get_drvdata(struct ishtp_cl_device
*cl_device
)
637 return cl_device
->driver_data
;
639 EXPORT_SYMBOL(ishtp_get_drvdata
);
642 * ishtp_dev_to_cl_device() - get ishtp_cl_device instance from device instance
643 * @device: device instance
645 * Get ish_cl_device instance which embeds device instance in it.
647 * Return: pointer to ishtp_cl_device instance
649 struct ishtp_cl_device
*ishtp_dev_to_cl_device(struct device
*device
)
651 return to_ishtp_cl_device(device
);
653 EXPORT_SYMBOL(ishtp_dev_to_cl_device
);
656 * ishtp_bus_new_client() - Create a new client
657 * @dev: ISHTP device instance
659 * Once bus protocol enumerates a client, this is called
660 * to add a device for the client.
662 * Return: 0 on success or error code on failure
664 int ishtp_bus_new_client(struct ishtp_device
*dev
)
668 struct ishtp_cl_device
*cl_device
;
672 * For all reported clients, create an unconnected client and add its
673 * device to ISHTP bus.
674 * If appropriate driver has loaded, this will trigger its probe().
675 * Otherwise, probe() will be called when driver is loaded
677 i
= dev
->fw_client_presentation_num
- 1;
678 device_uuid
= dev
->fw_clients
[i
].props
.protocol_name
;
679 dev_name
= kasprintf(GFP_KERNEL
, "{%pUL}", &device_uuid
);
683 cl_device
= ishtp_bus_add_device(dev
, device_uuid
, dev_name
);
695 * ishtp_cl_device_bind() - bind a device
696 * @cl: ishtp client device
698 * Binds connected ishtp_cl to ISHTP bus device
700 * Return: 0 on success or fault code
702 int ishtp_cl_device_bind(struct ishtp_cl
*cl
)
704 struct ishtp_cl_device
*cl_device
;
708 if (!cl
->fw_client_id
|| cl
->state
!= ISHTP_CL_CONNECTED
)
712 spin_lock_irqsave(&cl
->dev
->device_list_lock
, flags
);
713 list_for_each_entry(cl_device
, &cl
->dev
->device_list
,
715 if (cl_device
->fw_client
&&
716 cl_device
->fw_client
->client_id
== cl
->fw_client_id
) {
717 cl
->device
= cl_device
;
722 spin_unlock_irqrestore(&cl
->dev
->device_list_lock
, flags
);
727 * ishtp_bus_remove_all_clients() - Remove all clients
728 * @ishtp_dev: ishtp device
729 * @warm_reset: Reset due to FW reset dure to errors or S3 suspend
731 * This is part of reset/remove flow. This function the main processing
732 * only targets error processing, if the FW has forced reset or
733 * error to remove connected clients. When warm reset the client devices are
736 void ishtp_bus_remove_all_clients(struct ishtp_device
*ishtp_dev
,
739 struct ishtp_cl_device
*cl_device
, *n
;
743 spin_lock_irqsave(&ishtp_dev
->cl_list_lock
, flags
);
744 list_for_each_entry(cl
, &ishtp_dev
->cl_list
, link
) {
745 cl
->state
= ISHTP_CL_DISCONNECTED
;
748 * Wake any pending process. The waiter would check dev->state
749 * and determine that it's not enabled already,
750 * and will return error to its caller
752 wake_up_interruptible(&cl
->wait_ctrl_res
);
754 /* Disband any pending read/write requests and free rb */
755 ishtp_cl_flush_queues(cl
);
757 /* Remove all free and in_process rings, both Rx and Tx */
758 ishtp_cl_free_rx_ring(cl
);
759 ishtp_cl_free_tx_ring(cl
);
762 * Free client and ISHTP bus client device structures
763 * don't free host client because it is part of the OS fd
767 spin_unlock_irqrestore(&ishtp_dev
->cl_list_lock
, flags
);
769 /* Release DMA buffers for client messages */
770 ishtp_cl_free_dma_buf(ishtp_dev
);
772 /* remove bus clients */
773 spin_lock_irqsave(&ishtp_dev
->device_list_lock
, flags
);
774 list_for_each_entry_safe(cl_device
, n
, &ishtp_dev
->device_list
,
776 cl_device
->fw_client
= NULL
;
777 if (warm_reset
&& cl_device
->reference_count
)
780 list_del(&cl_device
->device_link
);
781 spin_unlock_irqrestore(&ishtp_dev
->device_list_lock
, flags
);
782 ishtp_bus_remove_device(cl_device
);
783 spin_lock_irqsave(&ishtp_dev
->device_list_lock
, flags
);
785 spin_unlock_irqrestore(&ishtp_dev
->device_list_lock
, flags
);
787 /* Free all client structures */
788 spin_lock_irqsave(&ishtp_dev
->fw_clients_lock
, flags
);
789 kfree(ishtp_dev
->fw_clients
);
790 ishtp_dev
->fw_clients
= NULL
;
791 ishtp_dev
->fw_clients_num
= 0;
792 ishtp_dev
->fw_client_presentation_num
= 0;
793 ishtp_dev
->fw_client_index
= 0;
794 bitmap_zero(ishtp_dev
->fw_clients_map
, ISHTP_CLIENTS_MAX
);
795 spin_unlock_irqrestore(&ishtp_dev
->fw_clients_lock
, flags
);
797 EXPORT_SYMBOL(ishtp_bus_remove_all_clients
);
800 * ishtp_reset_handler() - IPC reset handler
803 * ISHTP Handler for IPC_RESET notification
805 void ishtp_reset_handler(struct ishtp_device
*dev
)
809 /* Handle FW-initiated reset */
810 dev
->dev_state
= ISHTP_DEV_RESETTING
;
812 /* Clear BH processing queue - no further HBMs */
813 spin_lock_irqsave(&dev
->rd_msg_spinlock
, flags
);
814 dev
->rd_msg_fifo_head
= dev
->rd_msg_fifo_tail
= 0;
815 spin_unlock_irqrestore(&dev
->rd_msg_spinlock
, flags
);
817 /* Handle ISH FW reset against upper layers */
818 ishtp_bus_remove_all_clients(dev
, true);
820 EXPORT_SYMBOL(ishtp_reset_handler
);
823 * ishtp_reset_compl_handler() - Reset completion handler
826 * ISHTP handler for IPC_RESET sequence completion to start
827 * host message bus start protocol sequence.
829 void ishtp_reset_compl_handler(struct ishtp_device
*dev
)
831 dev
->dev_state
= ISHTP_DEV_INIT_CLIENTS
;
832 dev
->hbm_state
= ISHTP_HBM_START
;
833 ishtp_hbm_start_req(dev
);
835 EXPORT_SYMBOL(ishtp_reset_compl_handler
);
838 * ishtp_use_dma_transfer() - Function to use DMA
840 * This interface is used to enable usage of DMA
842 * Return non zero if DMA can be enabled
844 int ishtp_use_dma_transfer(void)
846 return ishtp_use_dma
;
850 * ishtp_device() - Return device pointer
852 * This interface is used to return device pointer from ishtp_cl_device
857 struct device
*ishtp_device(struct ishtp_cl_device
*device
)
861 EXPORT_SYMBOL(ishtp_device
);
864 * ishtp_get_pci_device() - Return PCI device dev pointer
865 * This interface is used to return PCI device pointer
866 * from ishtp_cl_device instance.
870 struct device
*ishtp_get_pci_device(struct ishtp_cl_device
*device
)
872 return device
->ishtp_dev
->devc
;
874 EXPORT_SYMBOL(ishtp_get_pci_device
);
877 * ishtp_trace_callback() - Return trace callback
879 * This interface is used to return trace callback function pointer.
883 void *ishtp_trace_callback(struct ishtp_cl_device
*cl_device
)
885 return cl_device
->ishtp_dev
->print_log
;
887 EXPORT_SYMBOL(ishtp_trace_callback
);
890 * ish_hw_reset() - Call HW reset IPC callback
892 * This interface is used to reset HW in case of error.
894 * Return: value from IPC hw_reset callback
896 int ish_hw_reset(struct ishtp_device
*dev
)
898 return dev
->ops
->hw_reset(dev
);
900 EXPORT_SYMBOL(ish_hw_reset
);
903 * ishtp_bus_register() - Function to register bus
905 * This register ishtp bus
907 * Return: Return output of bus_register
909 static int __init
ishtp_bus_register(void)
911 return bus_register(&ishtp_cl_bus_type
);
915 * ishtp_bus_unregister() - Function to unregister bus
917 * This unregister ishtp bus
919 static void __exit
ishtp_bus_unregister(void)
921 bus_unregister(&ishtp_cl_bus_type
);
924 module_init(ishtp_bus_register
);
925 module_exit(ishtp_bus_unregister
);
927 MODULE_LICENSE("GPL");