1
2
3
4
5
6
7
8
9
10
11
12
13 #ifndef _UIO_DRIVER_H_
14 #define _UIO_DRIVER_H_
15
16 #include <linux/device.h>
17 #include <linux/fs.h>
18 #include <linux/interrupt.h>
19
20 struct module;
21 struct uio_map;
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37 struct uio_mem {
38 const char *name;
39 phys_addr_t addr;
40 unsigned long offs;
41 resource_size_t size;
42 int memtype;
43 void __iomem *internal_addr;
44 struct uio_map *map;
45 };
46
47 #define MAX_UIO_MAPS 5
48
49 struct uio_portio;
50
51
52
53
54
55
56
57
58
59 struct uio_port {
60 const char *name;
61 unsigned long start;
62 unsigned long size;
63 int porttype;
64 struct uio_portio *portio;
65 };
66
67 #define MAX_UIO_PORT_REGIONS 5
68
69 struct uio_device {
70 struct module *owner;
71 struct device dev;
72 int minor;
73 atomic_t event;
74 struct fasync_struct *async_queue;
75 wait_queue_head_t wait;
76 struct uio_info *info;
77 struct mutex info_lock;
78 struct kobject *map_dir;
79 struct kobject *portio_dir;
80 };
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98 struct uio_info {
99 struct uio_device *uio_dev;
100 const char *name;
101 const char *version;
102 struct uio_mem mem[MAX_UIO_MAPS];
103 struct uio_port port[MAX_UIO_PORT_REGIONS];
104 long irq;
105 unsigned long irq_flags;
106 void *priv;
107 irqreturn_t (*handler)(int irq, struct uio_info *dev_info);
108 int (*mmap)(struct uio_info *info, struct vm_area_struct *vma);
109 int (*open)(struct uio_info *info, struct inode *inode);
110 int (*release)(struct uio_info *info, struct inode *inode);
111 int (*irqcontrol)(struct uio_info *info, s32 irq_on);
112 };
113
114 extern int __must_check
115 __uio_register_device(struct module *owner,
116 struct device *parent,
117 struct uio_info *info);
118
119
120 #define uio_register_device(parent, info) \
121 __uio_register_device(THIS_MODULE, parent, info)
122
123 extern void uio_unregister_device(struct uio_info *info);
124 extern void uio_event_notify(struct uio_info *info);
125
126
127 #define UIO_IRQ_CUSTOM -1
128 #define UIO_IRQ_NONE 0
129
130
131 #define UIO_MEM_NONE 0
132 #define UIO_MEM_PHYS 1
133 #define UIO_MEM_LOGICAL 2
134 #define UIO_MEM_VIRTUAL 3
135 #define UIO_MEM_IOVA 4
136
137
138 #define UIO_PORT_NONE 0
139 #define UIO_PORT_X86 1
140 #define UIO_PORT_GPIO 2
141 #define UIO_PORT_OTHER 3
142
143 #endif