Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 1 | /* |
| 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. Koch | 318af55 | 2010-10-30 00:36:47 +0200 | [diff] [blame] | 6 | * Copyright(C) 2006, Hans J. Koch <hjk@hansjkoch.de> |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 7 | * 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. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 17 | #include <linux/fs.h> |
| 18 | #include <linux/interrupt.h> |
| 19 | |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 20 | struct module; |
Greg Kroah-Hartman | 81e7c6a | 2007-12-04 22:41:54 +0000 | [diff] [blame] | 21 | struct uio_map; |
| 22 | |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 23 | /** |
| 24 | * struct uio_mem - description of a UIO memory region |
Hans J. Koch | 8205779 | 2009-01-07 00:15:39 +0100 | [diff] [blame] | 25 | * @name: name of the memory region for identification |
Michal Sojka | 171058f | 2017-03-16 14:50:08 +0100 | [diff] [blame] | 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) |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 33 | * @memtype: type of memory addr points to |
| 34 | * @internal_addr: ioremap-ped version of addr, for driver internal use |
Greg Kroah-Hartman | 81e7c6a | 2007-12-04 22:41:54 +0000 | [diff] [blame] | 35 | * @map: for use by the UIO core only. |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 36 | */ |
| 37 | struct uio_mem { |
Hans J. Koch | 8205779 | 2009-01-07 00:15:39 +0100 | [diff] [blame] | 38 | const char *name; |
Kai Jiang | 27a9070 | 2011-10-17 20:50:20 +0200 | [diff] [blame] | 39 | phys_addr_t addr; |
Michal Sojka | 171058f | 2017-03-16 14:50:08 +0100 | [diff] [blame] | 40 | unsigned long offs; |
Cristian Stoica | e0f1147 | 2014-10-09 15:00:27 +0300 | [diff] [blame] | 41 | resource_size_t size; |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 42 | int memtype; |
| 43 | void __iomem *internal_addr; |
Greg Kroah-Hartman | 81e7c6a | 2007-12-04 22:41:54 +0000 | [diff] [blame] | 44 | struct uio_map *map; |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 45 | }; |
| 46 | |
Uwe Kleine-König | 6d8333c | 2008-06-10 09:14:48 +0200 | [diff] [blame] | 47 | #define MAX_UIO_MAPS 5 |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 48 | |
Hans J. Koch | e70c412 | 2008-12-06 02:23:13 +0100 | [diff] [blame] | 49 | struct uio_portio; |
| 50 | |
| 51 | /** |
| 52 | * struct uio_port - description of a UIO port region |
Hans J. Koch | 8205779 | 2009-01-07 00:15:39 +0100 | [diff] [blame] | 53 | * @name: name of the port region for identification |
Hans J. Koch | e70c412 | 2008-12-06 02:23:13 +0100 | [diff] [blame] | 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 | */ |
| 59 | struct uio_port { |
Hans J. Koch | 8205779 | 2009-01-07 00:15:39 +0100 | [diff] [blame] | 60 | const char *name; |
Hans J. Koch | e70c412 | 2008-12-06 02:23:13 +0100 | [diff] [blame] | 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 | |
Andy Grover | f14bb03 | 2014-10-01 16:07:03 -0700 | [diff] [blame] | 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 kobject *map_dir; |
| 78 | struct kobject *portio_dir; |
| 79 | }; |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 80 | |
| 81 | /** |
| 82 | * struct uio_info - UIO device capabilities |
| 83 | * @uio_dev: the UIO device this info belongs to |
| 84 | * @name: device name |
| 85 | * @version: device driver version |
| 86 | * @mem: list of mappable memory regions, size==0 for end of list |
Hans J. Koch | e70c412 | 2008-12-06 02:23:13 +0100 | [diff] [blame] | 87 | * @port: list of port regions, size==0 for end of list |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 88 | * @irq: interrupt number or UIO_IRQ_CUSTOM |
| 89 | * @irq_flags: flags for request_irq() |
| 90 | * @priv: optional private data |
| 91 | * @handler: the device's irq handler |
| 92 | * @mmap: mmap operation for this uio device |
| 93 | * @open: open operation for this uio device |
| 94 | * @release: release operation for this uio device |
Hans J. Koch | 328a14e | 2008-05-23 13:50:14 +0200 | [diff] [blame] | 95 | * @irqcontrol: disable/enable irqs when 0/1 is written to /dev/uioX |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 96 | */ |
| 97 | struct uio_info { |
| 98 | struct uio_device *uio_dev; |
Stephen Rothwell | b8ac9fc | 2008-12-12 11:44:21 +0100 | [diff] [blame] | 99 | const char *name; |
| 100 | const char *version; |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 101 | struct uio_mem mem[MAX_UIO_MAPS]; |
Hans J. Koch | e70c412 | 2008-12-06 02:23:13 +0100 | [diff] [blame] | 102 | struct uio_port port[MAX_UIO_PORT_REGIONS]; |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 103 | long irq; |
| 104 | unsigned long irq_flags; |
| 105 | void *priv; |
| 106 | irqreturn_t (*handler)(int irq, struct uio_info *dev_info); |
| 107 | int (*mmap)(struct uio_info *info, struct vm_area_struct *vma); |
| 108 | int (*open)(struct uio_info *info, struct inode *inode); |
| 109 | int (*release)(struct uio_info *info, struct inode *inode); |
Hans J. Koch | 328a14e | 2008-05-23 13:50:14 +0200 | [diff] [blame] | 110 | int (*irqcontrol)(struct uio_info *info, s32 irq_on); |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 111 | }; |
| 112 | |
| 113 | extern int __must_check |
| 114 | __uio_register_device(struct module *owner, |
| 115 | struct device *parent, |
| 116 | struct uio_info *info); |
Paul Gortmaker | eb5589a | 2011-05-27 09:02:11 -0400 | [diff] [blame] | 117 | |
| 118 | /* use a define to avoid include chaining to get THIS_MODULE */ |
| 119 | #define uio_register_device(parent, info) \ |
| 120 | __uio_register_device(THIS_MODULE, parent, info) |
| 121 | |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 122 | extern void uio_unregister_device(struct uio_info *info); |
| 123 | extern void uio_event_notify(struct uio_info *info); |
| 124 | |
Uwe Kleine-König | 6d8333c | 2008-06-10 09:14:48 +0200 | [diff] [blame] | 125 | /* defines for uio_info->irq */ |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 126 | #define UIO_IRQ_CUSTOM -1 |
Eric W. Biederman | 6427a76 | 2010-09-14 11:37:36 -0700 | [diff] [blame] | 127 | #define UIO_IRQ_NONE 0 |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 128 | |
Uwe Kleine-König | 6d8333c | 2008-06-10 09:14:48 +0200 | [diff] [blame] | 129 | /* defines for uio_mem->memtype */ |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 130 | #define UIO_MEM_NONE 0 |
| 131 | #define UIO_MEM_PHYS 1 |
| 132 | #define UIO_MEM_LOGICAL 2 |
| 133 | #define UIO_MEM_VIRTUAL 3 |
| 134 | |
Hans J. Koch | e70c412 | 2008-12-06 02:23:13 +0100 | [diff] [blame] | 135 | /* defines for uio_port->porttype */ |
| 136 | #define UIO_PORT_NONE 0 |
| 137 | #define UIO_PORT_X86 1 |
| 138 | #define UIO_PORT_GPIO 2 |
| 139 | #define UIO_PORT_OTHER 3 |
| 140 | |
Hans J. Koch | beafc54 | 2006-12-07 10:58:29 +0100 | [diff] [blame] | 141 | #endif /* _LINUX_UIO_DRIVER_H_ */ |