1
2
3
4
5
6
7#ifndef __FSL_DPAA2_IO_H
8#define __FSL_DPAA2_IO_H
9
10#include <linux/types.h>
11#include <linux/cpumask.h>
12#include <linux/irqreturn.h>
13
14#include "dpaa2-fd.h"
15#include "dpaa2-global.h"
16
17struct dpaa2_io;
18struct dpaa2_io_store;
19struct device;
20
21
22
23
24
25
26
27
28
29
30
31
32#define DPAA2_IO_ANY_CPU -1
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50struct dpaa2_io_desc {
51 int receives_notifications;
52 int has_8prio;
53 int cpu;
54 void *regs_cena;
55 void __iomem *regs_cinh;
56 int dpio_id;
57 u32 qman_version;
58};
59
60struct dpaa2_io *dpaa2_io_create(const struct dpaa2_io_desc *desc);
61
62void dpaa2_io_down(struct dpaa2_io *d);
63
64irqreturn_t dpaa2_io_irq(struct dpaa2_io *obj);
65
66struct dpaa2_io *dpaa2_io_service_select(int cpu);
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82struct dpaa2_io_notification_ctx {
83 void (*cb)(struct dpaa2_io_notification_ctx *ctx);
84 int is_cdan;
85 u32 id;
86 int desired_cpu;
87 int dpio_id;
88 u64 qman64;
89 struct list_head node;
90 void *dpio_private;
91};
92
93int dpaa2_io_service_register(struct dpaa2_io *service,
94 struct dpaa2_io_notification_ctx *ctx);
95void dpaa2_io_service_deregister(struct dpaa2_io *service,
96 struct dpaa2_io_notification_ctx *ctx);
97int dpaa2_io_service_rearm(struct dpaa2_io *service,
98 struct dpaa2_io_notification_ctx *ctx);
99
100int dpaa2_io_service_pull_fq(struct dpaa2_io *d, u32 fqid,
101 struct dpaa2_io_store *s);
102int dpaa2_io_service_pull_channel(struct dpaa2_io *d, u32 channelid,
103 struct dpaa2_io_store *s);
104
105int dpaa2_io_service_enqueue_fq(struct dpaa2_io *d, u32 fqid,
106 const struct dpaa2_fd *fd);
107int dpaa2_io_service_enqueue_qd(struct dpaa2_io *d, u32 qdid, u8 prio,
108 u16 qdbin, const struct dpaa2_fd *fd);
109int dpaa2_io_service_release(struct dpaa2_io *d, u32 bpid,
110 const u64 *buffers, unsigned int num_buffers);
111int dpaa2_io_service_acquire(struct dpaa2_io *d, u32 bpid,
112 u64 *buffers, unsigned int num_buffers);
113
114struct dpaa2_io_store *dpaa2_io_store_create(unsigned int max_frames,
115 struct device *dev);
116void dpaa2_io_store_destroy(struct dpaa2_io_store *s);
117struct dpaa2_dq *dpaa2_io_store_next(struct dpaa2_io_store *s, int *is_last);
118
119int dpaa2_io_query_fq_count(struct dpaa2_io *d, u32 fqid,
120 u32 *fcnt, u32 *bcnt);
121int dpaa2_io_query_bp_count(struct dpaa2_io *d, u16 bpid,
122 u32 *num);
123#endif
124