Blame view

include/linux/uio_driver.h 4.04 KB
beafc54c4   Hans J. Koch   UIO: Add the User...
1
2
3
4
5
  /*
   * include/linux/uio_driver.h
   *
   * Copyright(C) 2005, Benedikt Spranger <b.spranger@linutronix.de>
   * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de>
318af55dd   Hans J. Koch   uio: Change mail ...
6
   * Copyright(C) 2006, Hans J. Koch <hjk@hansjkoch.de>
beafc54c4   Hans J. Koch   UIO: Add the User...
7
8
9
10
11
12
13
14
15
   * Copyright(C) 2006, Greg Kroah-Hartman <greg@kroah.com>
   *
   * Userspace IO driver.
   *
   * Licensed under the GPLv2 only.
   */
  
  #ifndef _UIO_DRIVER_H_
  #define _UIO_DRIVER_H_
beafc54c4   Hans J. Koch   UIO: Add the User...
16
17
  #include <linux/fs.h>
  #include <linux/interrupt.h>
de4772542   Paul Gortmaker   include: replace ...
18
  struct module;
81e7c6a63   Greg Kroah-Hartman   UIO: fix kobject ...
19
  struct uio_map;
beafc54c4   Hans J. Koch   UIO: Add the User...
20
21
  /**
   * struct uio_mem - description of a UIO memory region
820577911   Hans J. Koch   UIO: Add name att...
22
   * @name:		name of the memory region for identification
171058fb0   Michal Sojka   uio: Allow handli...
23
24
25
26
27
28
29
   * @addr:               address of the device's memory rounded to page
   * 			size (phys_addr is used since addr can be
   * 			logical, virtual, or physical & phys_addr_t
   * 			should always be large enough to handle any of
   * 			the address types)
   * @offs:               offset of device memory within the page
   * @size:		size of IO (multiple of page size)
beafc54c4   Hans J. Koch   UIO: Add the User...
30
31
   * @memtype:		type of memory addr points to
   * @internal_addr:	ioremap-ped version of addr, for driver internal use
81e7c6a63   Greg Kroah-Hartman   UIO: fix kobject ...
32
   * @map:		for use by the UIO core only.
beafc54c4   Hans J. Koch   UIO: Add the User...
33
34
   */
  struct uio_mem {
820577911   Hans J. Koch   UIO: Add name att...
35
  	const char		*name;
27a90700a   Kai Jiang   uio: Support phys...
36
  	phys_addr_t		addr;
171058fb0   Michal Sojka   uio: Allow handli...
37
  	unsigned long		offs;
e0f1147cc   Cristian Stoica   uio: support memo...
38
  	resource_size_t		size;
beafc54c4   Hans J. Koch   UIO: Add the User...
39
40
  	int			memtype;
  	void __iomem		*internal_addr;
81e7c6a63   Greg Kroah-Hartman   UIO: fix kobject ...
41
  	struct uio_map		*map;
beafc54c4   Hans J. Koch   UIO: Add the User...
42
  };
6d8333c24   Uwe Kleine-König   UIO: minor style ...
43
  #define MAX_UIO_MAPS	5
beafc54c4   Hans J. Koch   UIO: Add the User...
44

e70c412ee   Hans J. Koch   UIO: Pass informa...
45
46
47
48
  struct uio_portio;
  
  /**
   * struct uio_port - description of a UIO port region
820577911   Hans J. Koch   UIO: Add name att...
49
   * @name:		name of the port region for identification
e70c412ee   Hans J. Koch   UIO: Pass informa...
50
51
52
53
54
55
   * @start:		start of port region
   * @size:		size of port region
   * @porttype:		type of port (see UIO_PORT_* below)
   * @portio:		for use by the UIO core only.
   */
  struct uio_port {
820577911   Hans J. Koch   UIO: Add name att...
56
  	const char		*name;
e70c412ee   Hans J. Koch   UIO: Pass informa...
57
58
59
60
61
62
63
  	unsigned long		start;
  	unsigned long		size;
  	int			porttype;
  	struct uio_portio	*portio;
  };
  
  #define MAX_UIO_PORT_REGIONS	5
f14bb039a   Andy Grover   uio: Export defin...
64
65
66
67
68
69
70
71
72
73
74
  struct uio_device {
          struct module           *owner;
          struct device           *dev;
          int                     minor;
          atomic_t                event;
          struct fasync_struct    *async_queue;
          wait_queue_head_t       wait;
          struct uio_info         *info;
          struct kobject          *map_dir;
          struct kobject          *portio_dir;
  };
beafc54c4   Hans J. Koch   UIO: Add the User...
75
76
77
78
79
80
81
  
  /**
   * struct uio_info - UIO device capabilities
   * @uio_dev:		the UIO device this info belongs to
   * @name:		device name
   * @version:		device driver version
   * @mem:		list of mappable memory regions, size==0 for end of list
e70c412ee   Hans J. Koch   UIO: Pass informa...
82
   * @port:		list of port regions, size==0 for end of list
beafc54c4   Hans J. Koch   UIO: Add the User...
83
84
85
86
87
88
89
   * @irq:		interrupt number or UIO_IRQ_CUSTOM
   * @irq_flags:		flags for request_irq()
   * @priv:		optional private data
   * @handler:		the device's irq handler
   * @mmap:		mmap operation for this uio device
   * @open:		open operation for this uio device
   * @release:		release operation for this uio device
328a14e70   Hans J. Koch   UIO: Add write fu...
90
   * @irqcontrol:		disable/enable irqs when 0/1 is written to /dev/uioX
beafc54c4   Hans J. Koch   UIO: Add the User...
91
92
93
   */
  struct uio_info {
  	struct uio_device	*uio_dev;
b8ac9fc0e   Stephen Rothwell   uio: make uio_inf...
94
95
  	const char		*name;
  	const char		*version;
beafc54c4   Hans J. Koch   UIO: Add the User...
96
  	struct uio_mem		mem[MAX_UIO_MAPS];
e70c412ee   Hans J. Koch   UIO: Pass informa...
97
  	struct uio_port		port[MAX_UIO_PORT_REGIONS];
beafc54c4   Hans J. Koch   UIO: Add the User...
98
99
100
101
102
103
104
  	long			irq;
  	unsigned long		irq_flags;
  	void			*priv;
  	irqreturn_t (*handler)(int irq, struct uio_info *dev_info);
  	int (*mmap)(struct uio_info *info, struct vm_area_struct *vma);
  	int (*open)(struct uio_info *info, struct inode *inode);
  	int (*release)(struct uio_info *info, struct inode *inode);
328a14e70   Hans J. Koch   UIO: Add write fu...
105
  	int (*irqcontrol)(struct uio_info *info, s32 irq_on);
beafc54c4   Hans J. Koch   UIO: Add the User...
106
107
108
109
110
111
  };
  
  extern int __must_check
  	__uio_register_device(struct module *owner,
  			      struct device *parent,
  			      struct uio_info *info);
eb5589a8f   Paul Gortmaker   include: convert ...
112
113
114
115
  
  /* use a define to avoid include chaining to get THIS_MODULE */
  #define uio_register_device(parent, info) \
  	__uio_register_device(THIS_MODULE, parent, info)
beafc54c4   Hans J. Koch   UIO: Add the User...
116
117
  extern void uio_unregister_device(struct uio_info *info);
  extern void uio_event_notify(struct uio_info *info);
6d8333c24   Uwe Kleine-König   UIO: minor style ...
118
  /* defines for uio_info->irq */
beafc54c4   Hans J. Koch   UIO: Add the User...
119
  #define UIO_IRQ_CUSTOM	-1
6427a7655   Eric W. Biederman   uio: Cleanup irq ...
120
  #define UIO_IRQ_NONE	0
beafc54c4   Hans J. Koch   UIO: Add the User...
121

6d8333c24   Uwe Kleine-König   UIO: minor style ...
122
  /* defines for uio_mem->memtype */
beafc54c4   Hans J. Koch   UIO: Add the User...
123
124
125
126
  #define UIO_MEM_NONE	0
  #define UIO_MEM_PHYS	1
  #define UIO_MEM_LOGICAL	2
  #define UIO_MEM_VIRTUAL 3
e70c412ee   Hans J. Koch   UIO: Pass informa...
127
128
129
130
131
  /* defines for uio_port->porttype */
  #define UIO_PORT_NONE	0
  #define UIO_PORT_X86	1
  #define UIO_PORT_GPIO	2
  #define UIO_PORT_OTHER	3
beafc54c4   Hans J. Koch   UIO: Add the User...
132
  #endif /* _LINUX_UIO_DRIVER_H_ */