blob: 6c5f2074e14f36d1368e1723394d4da9ef0cf3ae [file] [log] [blame]
Hans J. Kochbeafc542006-12-07 10:58:29 +01001/*
2 * include/linux/uio_driver.h
3 *
4 * Copyright(C) 2005, Benedikt Spranger <b.spranger@linutronix.de>
5 * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
Hans J. Koch318af552010-10-30 00:36:47 +02006 * Copyright(C) 2006, Hans J. Koch <hjk@hansjkoch.de>
Hans J. Kochbeafc542006-12-07 10:58:29 +01007 * Copyright(C) 2006, Greg Kroah-Hartman <greg@kroah.com>
8 *
9 * Userspace IO driver.
10 *
11 * Licensed under the GPLv2 only.
12 */
13
14#ifndef _UIO_DRIVER_H_
15#define _UIO_DRIVER_H_
16
Hamish Martina93e7b32018-05-14 13:32:23 +120017#include <linux/device.h>
Hans J. Kochbeafc542006-12-07 10:58:29 +010018#include <linux/fs.h>
19#include <linux/interrupt.h>
20
Paul Gortmakerde477252011-05-26 13:46:22 -040021struct module;
Greg Kroah-Hartman81e7c6a2007-12-04 22:41:54 +000022struct uio_map;
23
Hans J. Kochbeafc542006-12-07 10:58:29 +010024/**
25 * struct uio_mem - description of a UIO memory region
Hans J. Koch82057792009-01-07 00:15:39 +010026 * @name: name of the memory region for identification
Michal Sojka171058f2017-03-16 14:50:08 +010027 * @addr: address of the device's memory rounded to page
28 * size (phys_addr is used since addr can be
29 * logical, virtual, or physical & phys_addr_t
30 * should always be large enough to handle any of
31 * the address types)
32 * @offs: offset of device memory within the page
33 * @size: size of IO (multiple of page size)
Hans J. Kochbeafc542006-12-07 10:58:29 +010034 * @memtype: type of memory addr points to
35 * @internal_addr: ioremap-ped version of addr, for driver internal use
Greg Kroah-Hartman81e7c6a2007-12-04 22:41:54 +000036 * @map: for use by the UIO core only.
Hans J. Kochbeafc542006-12-07 10:58:29 +010037 */
38struct uio_mem {
Hans J. Koch82057792009-01-07 00:15:39 +010039 const char *name;
Kai Jiang27a90702011-10-17 20:50:20 +020040 phys_addr_t addr;
Michal Sojka171058f2017-03-16 14:50:08 +010041 unsigned long offs;
Cristian Stoicae0f11472014-10-09 15:00:27 +030042 resource_size_t size;
Hans J. Kochbeafc542006-12-07 10:58:29 +010043 int memtype;
44 void __iomem *internal_addr;
Greg Kroah-Hartman81e7c6a2007-12-04 22:41:54 +000045 struct uio_map *map;
Hans J. Kochbeafc542006-12-07 10:58:29 +010046};
47
Uwe Kleine-König6d8333c2008-06-10 09:14:48 +020048#define MAX_UIO_MAPS 5
Hans J. Kochbeafc542006-12-07 10:58:29 +010049
Hans J. Koche70c4122008-12-06 02:23:13 +010050struct uio_portio;
51
52/**
53 * struct uio_port - description of a UIO port region
Hans J. Koch82057792009-01-07 00:15:39 +010054 * @name: name of the port region for identification
Hans J. Koche70c4122008-12-06 02:23:13 +010055 * @start: start of port region
56 * @size: size of port region
57 * @porttype: type of port (see UIO_PORT_* below)
58 * @portio: for use by the UIO core only.
59 */
60struct uio_port {
Hans J. Koch82057792009-01-07 00:15:39 +010061 const char *name;
Hans J. Koche70c4122008-12-06 02:23:13 +010062 unsigned long start;
63 unsigned long size;
64 int porttype;
65 struct uio_portio *portio;
66};
67
68#define MAX_UIO_PORT_REGIONS 5
69
Andy Groverf14bb032014-10-01 16:07:03 -070070struct uio_device {
71 struct module *owner;
Hamish Martina93e7b32018-05-14 13:32:23 +120072 struct device dev;
Andy Groverf14bb032014-10-01 16:07:03 -070073 int minor;
74 atomic_t event;
75 struct fasync_struct *async_queue;
76 wait_queue_head_t wait;
77 struct uio_info *info;
Hamish Martina93e7b32018-05-14 13:32:23 +120078 spinlock_t info_lock;
Andy Groverf14bb032014-10-01 16:07:03 -070079 struct kobject *map_dir;
80 struct kobject *portio_dir;
81};
Hans J. Kochbeafc542006-12-07 10:58:29 +010082
83/**
84 * struct uio_info - UIO device capabilities
85 * @uio_dev: the UIO device this info belongs to
86 * @name: device name
87 * @version: device driver version
88 * @mem: list of mappable memory regions, size==0 for end of list
Hans J. Koche70c4122008-12-06 02:23:13 +010089 * @port: list of port regions, size==0 for end of list
Hans J. Kochbeafc542006-12-07 10:58:29 +010090 * @irq: interrupt number or UIO_IRQ_CUSTOM
91 * @irq_flags: flags for request_irq()
92 * @priv: optional private data
93 * @handler: the device's irq handler
94 * @mmap: mmap operation for this uio device
95 * @open: open operation for this uio device
96 * @release: release operation for this uio device
Hans J. Koch328a14e2008-05-23 13:50:14 +020097 * @irqcontrol: disable/enable irqs when 0/1 is written to /dev/uioX
Hans J. Kochbeafc542006-12-07 10:58:29 +010098 */
99struct uio_info {
100 struct uio_device *uio_dev;
Stephen Rothwellb8ac9fc2008-12-12 11:44:21 +0100101 const char *name;
102 const char *version;
Hans J. Kochbeafc542006-12-07 10:58:29 +0100103 struct uio_mem mem[MAX_UIO_MAPS];
Hans J. Koche70c4122008-12-06 02:23:13 +0100104 struct uio_port port[MAX_UIO_PORT_REGIONS];
Hans J. Kochbeafc542006-12-07 10:58:29 +0100105 long irq;
106 unsigned long irq_flags;
107 void *priv;
108 irqreturn_t (*handler)(int irq, struct uio_info *dev_info);
109 int (*mmap)(struct uio_info *info, struct vm_area_struct *vma);
110 int (*open)(struct uio_info *info, struct inode *inode);
111 int (*release)(struct uio_info *info, struct inode *inode);
Hans J. Koch328a14e2008-05-23 13:50:14 +0200112 int (*irqcontrol)(struct uio_info *info, s32 irq_on);
Hans J. Kochbeafc542006-12-07 10:58:29 +0100113};
114
115extern int __must_check
116 __uio_register_device(struct module *owner,
117 struct device *parent,
118 struct uio_info *info);
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400119
120/* use a define to avoid include chaining to get THIS_MODULE */
121#define uio_register_device(parent, info) \
122 __uio_register_device(THIS_MODULE, parent, info)
123
Hans J. Kochbeafc542006-12-07 10:58:29 +0100124extern void uio_unregister_device(struct uio_info *info);
125extern void uio_event_notify(struct uio_info *info);
126
Uwe Kleine-König6d8333c2008-06-10 09:14:48 +0200127/* defines for uio_info->irq */
Hans J. Kochbeafc542006-12-07 10:58:29 +0100128#define UIO_IRQ_CUSTOM -1
Eric W. Biederman6427a762010-09-14 11:37:36 -0700129#define UIO_IRQ_NONE 0
Hans J. Kochbeafc542006-12-07 10:58:29 +0100130
Uwe Kleine-König6d8333c2008-06-10 09:14:48 +0200131/* defines for uio_mem->memtype */
Hans J. Kochbeafc542006-12-07 10:58:29 +0100132#define UIO_MEM_NONE 0
133#define UIO_MEM_PHYS 1
134#define UIO_MEM_LOGICAL 2
135#define UIO_MEM_VIRTUAL 3
136
Hans J. Koche70c4122008-12-06 02:23:13 +0100137/* 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
Hans J. Kochbeafc542006-12-07 10:58:29 +0100143#endif /* _LINUX_UIO_DRIVER_H_ */