1 /* SPDX-License-Identifier: GPL-2.0 */
5 * Copyright 2014-2015 Google Inc.
6 * Copyright 2014-2015 Linaro Ltd.
12 #include <linux/types.h>
13 #include <linux/device.h>
15 struct gb_host_device;
21 int (*cport_allocate)(struct gb_host_device *hd, int cport_id,
23 void (*cport_release)(struct gb_host_device *hd, u16 cport_id);
24 int (*cport_enable)(struct gb_host_device *hd, u16 cport_id,
26 int (*cport_disable)(struct gb_host_device *hd, u16 cport_id);
27 int (*cport_connected)(struct gb_host_device *hd, u16 cport_id);
28 int (*cport_flush)(struct gb_host_device *hd, u16 cport_id);
29 int (*cport_shutdown)(struct gb_host_device *hd, u16 cport_id,
30 u8 phase, unsigned int timeout);
31 int (*cport_quiesce)(struct gb_host_device *hd, u16 cport_id,
32 size_t peer_space, unsigned int timeout);
33 int (*cport_clear)(struct gb_host_device *hd, u16 cport_id);
35 int (*message_send)(struct gb_host_device *hd, u16 dest_cport_id,
36 struct gb_message *message, gfp_t gfp_mask);
37 void (*message_cancel)(struct gb_message *message);
38 int (*latency_tag_enable)(struct gb_host_device *hd, u16 cport_id);
39 int (*latency_tag_disable)(struct gb_host_device *hd, u16 cport_id);
40 int (*output)(struct gb_host_device *hd, void *req, u16 size, u8 cmd,
44 struct gb_host_device {
47 const struct gb_hd_driver *driver;
49 struct list_head modules;
50 struct list_head connections;
51 struct ida cport_id_map;
53 /* Number of CPorts supported by the UniPro IP */
56 /* Host device buffer constraints */
57 size_t buffer_size_max;
60 /* Private data for the host driver */
61 unsigned long hd_priv[] __aligned(sizeof(s64));
63 #define to_gb_host_device(d) container_of(d, struct gb_host_device, dev)
65 int gb_hd_cport_reserve(struct gb_host_device *hd, u16 cport_id);
66 void gb_hd_cport_release_reserved(struct gb_host_device *hd, u16 cport_id);
67 int gb_hd_cport_allocate(struct gb_host_device *hd, int cport_id,
69 void gb_hd_cport_release(struct gb_host_device *hd, u16 cport_id);
71 struct gb_host_device *gb_hd_create(struct gb_hd_driver *driver,
72 struct device *parent,
73 size_t buffer_size_max,
75 int gb_hd_add(struct gb_host_device *hd);
76 void gb_hd_del(struct gb_host_device *hd);
77 void gb_hd_shutdown(struct gb_host_device *hd);
78 void gb_hd_put(struct gb_host_device *hd);
79 int gb_hd_output(struct gb_host_device *hd, void *req, u16 size, u8 cmd,
83 void gb_hd_exit(void);