blob: 1ad4724458de0127424795eede13c63ef344476f [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
Hans J. Kochbeafc542006-12-07 10:58:29 +010017#include <linux/fs.h>
18#include <linux/interrupt.h>
19
Paul Gortmakerde477252011-05-26 13:46:22 -040020struct module;
Greg Kroah-Hartman81e7c6a2007-12-04 22:41:54 +000021struct uio_map;
22
Hans J. Kochbeafc542006-12-07 10:58:29 +010023/**
24 * struct uio_mem - description of a UIO memory region
Hans J. Koch82057792009-01-07 00:15:39 +010025 * @name: name of the memory region for identification
Kai Jiang27a90702011-10-17 20:50:20 +020026 * @addr: address of the device's memory (phys_addr is used since
27 * addr can be logical, virtual, or physical & phys_addr_t
28 * should always be large enough to handle any of the
29 * address types)
Hans J. Kochbeafc542006-12-07 10:58:29 +010030 * @size: size of IO
31 * @memtype: type of memory addr points to
32 * @internal_addr: ioremap-ped version of addr, for driver internal use
Greg Kroah-Hartman81e7c6a2007-12-04 22:41:54 +000033 * @map: for use by the UIO core only.
Hans J. Kochbeafc542006-12-07 10:58:29 +010034 */
35struct uio_mem {
Hans J. Koch82057792009-01-07 00:15:39 +010036 const char *name;
Kai Jiang27a90702011-10-17 20:50:20 +020037 phys_addr_t addr;
Hans J. Kochbeafc542006-12-07 10:58:29 +010038 unsigned long size;
39 int memtype;
40 void __iomem *internal_addr;
Greg Kroah-Hartman81e7c6a2007-12-04 22:41:54 +000041 struct uio_map *map;
Hans J. Kochbeafc542006-12-07 10:58:29 +010042};
43
Uwe Kleine-König6d8333c2008-06-10 09:14:48 +020044#define MAX_UIO_MAPS 5
Hans J. Kochbeafc542006-12-07 10:58:29 +010045
Hans J. Koche70c4122008-12-06 02:23:13 +010046struct uio_portio;
47
48/**
49 * struct uio_port - description of a UIO port region
Hans J. Koch82057792009-01-07 00:15:39 +010050 * @name: name of the port region for identification
Hans J. Koche70c4122008-12-06 02:23:13 +010051 * @start: start of port region
52 * @size: size of port region
53 * @porttype: type of port (see UIO_PORT_* below)
54 * @portio: for use by the UIO core only.
55 */
56struct uio_port {
Hans J. Koch82057792009-01-07 00:15:39 +010057 const char *name;
Hans J. Koche70c4122008-12-06 02:23:13 +010058 unsigned long start;
59 unsigned long size;
60 int porttype;
61 struct uio_portio *portio;
62};
63
64#define MAX_UIO_PORT_REGIONS 5
65
Hans J. Kochbeafc542006-12-07 10:58:29 +010066struct uio_device;
67
68/**
69 * struct uio_info - UIO device capabilities
70 * @uio_dev: the UIO device this info belongs to
71 * @name: device name
72 * @version: device driver version
73 * @mem: list of mappable memory regions, size==0 for end of list
Hans J. Koche70c4122008-12-06 02:23:13 +010074 * @port: list of port regions, size==0 for end of list
Hans J. Kochbeafc542006-12-07 10:58:29 +010075 * @irq: interrupt number or UIO_IRQ_CUSTOM
76 * @irq_flags: flags for request_irq()
77 * @priv: optional private data
78 * @handler: the device's irq handler
79 * @mmap: mmap operation for this uio device
80 * @open: open operation for this uio device
81 * @release: release operation for this uio device
Hans J. Koch328a14e2008-05-23 13:50:14 +020082 * @irqcontrol: disable/enable irqs when 0/1 is written to /dev/uioX
Hans J. Kochbeafc542006-12-07 10:58:29 +010083 */
84struct uio_info {
85 struct uio_device *uio_dev;
Stephen Rothwellb8ac9fc2008-12-12 11:44:21 +010086 const char *name;
87 const char *version;
Hans J. Kochbeafc542006-12-07 10:58:29 +010088 struct uio_mem mem[MAX_UIO_MAPS];
Hans J. Koche70c4122008-12-06 02:23:13 +010089 struct uio_port port[MAX_UIO_PORT_REGIONS];
Hans J. Kochbeafc542006-12-07 10:58:29 +010090 long irq;
91 unsigned long irq_flags;
92 void *priv;
93 irqreturn_t (*handler)(int irq, struct uio_info *dev_info);
94 int (*mmap)(struct uio_info *info, struct vm_area_struct *vma);
95 int (*open)(struct uio_info *info, struct inode *inode);
96 int (*release)(struct uio_info *info, struct inode *inode);
Hans J. Koch328a14e2008-05-23 13:50:14 +020097 int (*irqcontrol)(struct uio_info *info, s32 irq_on);
Hans J. Kochbeafc542006-12-07 10:58:29 +010098};
99
100extern int __must_check
101 __uio_register_device(struct module *owner,
102 struct device *parent,
103 struct uio_info *info);
Paul Gortmakereb5589a2011-05-27 09:02:11 -0400104
105/* use a define to avoid include chaining to get THIS_MODULE */
106#define uio_register_device(parent, info) \
107 __uio_register_device(THIS_MODULE, parent, info)
108
Hans J. Kochbeafc542006-12-07 10:58:29 +0100109extern void uio_unregister_device(struct uio_info *info);
110extern void uio_event_notify(struct uio_info *info);
111
Uwe Kleine-König6d8333c2008-06-10 09:14:48 +0200112/* defines for uio_info->irq */
Hans J. Kochbeafc542006-12-07 10:58:29 +0100113#define UIO_IRQ_CUSTOM -1
Eric W. Biederman6427a762010-09-14 11:37:36 -0700114#define UIO_IRQ_NONE 0
Hans J. Kochbeafc542006-12-07 10:58:29 +0100115
Uwe Kleine-König6d8333c2008-06-10 09:14:48 +0200116/* defines for uio_mem->memtype */
Hans J. Kochbeafc542006-12-07 10:58:29 +0100117#define UIO_MEM_NONE 0
118#define UIO_MEM_PHYS 1
119#define UIO_MEM_LOGICAL 2
120#define UIO_MEM_VIRTUAL 3
121
Hans J. Koche70c4122008-12-06 02:23:13 +0100122/* defines for uio_port->porttype */
123#define UIO_PORT_NONE 0
124#define UIO_PORT_X86 1
125#define UIO_PORT_GPIO 2
126#define UIO_PORT_OTHER 3
127
Hans J. Kochbeafc542006-12-07 10:58:29 +0100128#endif /* _LINUX_UIO_DRIVER_H_ */