Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux-2.6-block.git] / include / linux / uio_driver.h
CommitLineData
5efdfe75 1/* SPDX-License-Identifier: GPL-2.0-only */
beafc54c
HK
2/*
3 * include/linux/uio_driver.h
4 *
5 * Copyright(C) 2005, Benedikt Spranger <b.spranger@linutronix.de>
6 * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
318af55d 7 * Copyright(C) 2006, Hans J. Koch <hjk@hansjkoch.de>
beafc54c
HK
8 * Copyright(C) 2006, Greg Kroah-Hartman <greg@kroah.com>
9 *
10 * Userspace IO driver.
beafc54c
HK
11 */
12
13#ifndef _UIO_DRIVER_H_
14#define _UIO_DRIVER_H_
15
a93e7b33 16#include <linux/device.h>
beafc54c
HK
17#include <linux/fs.h>
18#include <linux/interrupt.h>
19
de477254 20struct module;
81e7c6a6
GKH
21struct uio_map;
22
beafc54c
HK
23/**
24 * struct uio_mem - description of a UIO memory region
82057791 25 * @name: name of the memory region for identification
171058fb
MS
26 * @addr: address of the device's memory rounded to page
27 * size (phys_addr is used since addr can be
28 * logical, virtual, or physical & phys_addr_t
29 * should always be large enough to handle any of
30 * the address types)
31 * @offs: offset of device memory within the page
32 * @size: size of IO (multiple of page size)
beafc54c
HK
33 * @memtype: type of memory addr points to
34 * @internal_addr: ioremap-ped version of addr, for driver internal use
81e7c6a6 35 * @map: for use by the UIO core only.
beafc54c
HK
36 */
37struct uio_mem {
82057791 38 const char *name;
27a90700 39 phys_addr_t addr;
171058fb 40 unsigned long offs;
e0f1147c 41 resource_size_t size;
beafc54c
HK
42 int memtype;
43 void __iomem *internal_addr;
81e7c6a6 44 struct uio_map *map;
beafc54c
HK
45};
46
6d8333c2 47#define MAX_UIO_MAPS 5
beafc54c 48
e70c412e
HK
49struct uio_portio;
50
51/**
52 * struct uio_port - description of a UIO port region
82057791 53 * @name: name of the port region for identification
e70c412e
HK
54 * @start: start of port region
55 * @size: size of port region
56 * @porttype: type of port (see UIO_PORT_* below)
57 * @portio: for use by the UIO core only.
58 */
59struct uio_port {
82057791 60 const char *name;
e70c412e
HK
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
f14bb039
AG
69struct uio_device {
70 struct module *owner;
a93e7b33 71 struct device dev;
f14bb039
AG
72 int minor;
73 atomic_t event;
74 struct fasync_struct *async_queue;
75 wait_queue_head_t wait;
76 struct uio_info *info;
543af586 77 struct mutex info_lock;
f14bb039
AG
78 struct kobject *map_dir;
79 struct kobject *portio_dir;
80};
beafc54c
HK
81
82/**
83 * struct uio_info - UIO device capabilities
84 * @uio_dev: the UIO device this info belongs to
85 * @name: device name
86 * @version: device driver version
87 * @mem: list of mappable memory regions, size==0 for end of list
e70c412e 88 * @port: list of port regions, size==0 for end of list
beafc54c
HK
89 * @irq: interrupt number or UIO_IRQ_CUSTOM
90 * @irq_flags: flags for request_irq()
91 * @priv: optional private data
92 * @handler: the device's irq handler
93 * @mmap: mmap operation for this uio device
94 * @open: open operation for this uio device
95 * @release: release operation for this uio device
328a14e7 96 * @irqcontrol: disable/enable irqs when 0/1 is written to /dev/uioX
beafc54c
HK
97 */
98struct uio_info {
99 struct uio_device *uio_dev;
b8ac9fc0
SR
100 const char *name;
101 const char *version;
beafc54c 102 struct uio_mem mem[MAX_UIO_MAPS];
e70c412e 103 struct uio_port port[MAX_UIO_PORT_REGIONS];
beafc54c
HK
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);
328a14e7 111 int (*irqcontrol)(struct uio_info *info, s32 irq_on);
beafc54c
HK
112};
113
114extern int __must_check
115 __uio_register_device(struct module *owner,
116 struct device *parent,
117 struct uio_info *info);
eb5589a8
PG
118
119/* use a define to avoid include chaining to get THIS_MODULE */
120#define uio_register_device(parent, info) \
121 __uio_register_device(THIS_MODULE, parent, info)
122
beafc54c
HK
123extern void uio_unregister_device(struct uio_info *info);
124extern void uio_event_notify(struct uio_info *info);
125
6d8333c2 126/* defines for uio_info->irq */
beafc54c 127#define UIO_IRQ_CUSTOM -1
6427a765 128#define UIO_IRQ_NONE 0
beafc54c 129
6d8333c2 130/* defines for uio_mem->memtype */
beafc54c
HK
131#define UIO_MEM_NONE 0
132#define UIO_MEM_PHYS 1
133#define UIO_MEM_LOGICAL 2
134#define UIO_MEM_VIRTUAL 3
bfddabfa 135#define UIO_MEM_IOVA 4
beafc54c 136
e70c412e
HK
137/* defines for uio_port->porttype */
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
beafc54c 143#endif /* _LINUX_UIO_DRIVER_H_ */