Blame view

include/linux/uio_driver.h 3.53 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
27a90700a   Kai Jiang   uio: Support phys...
23
24
25
26
   * @addr:		address of the device's memory (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)
beafc54c4   Hans J. Koch   UIO: Add the User...
27
28
29
   * @size:		size of IO
   * @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 ...
30
   * @map:		for use by the UIO core only.
beafc54c4   Hans J. Koch   UIO: Add the User...
31
32
   */
  struct uio_mem {
820577911   Hans J. Koch   UIO: Add name att...
33
  	const char		*name;
27a90700a   Kai Jiang   uio: Support phys...
34
  	phys_addr_t		addr;
beafc54c4   Hans J. Koch   UIO: Add the User...
35
36
37
  	unsigned long		size;
  	int			memtype;
  	void __iomem		*internal_addr;
81e7c6a63   Greg Kroah-Hartman   UIO: fix kobject ...
38
  	struct uio_map		*map;
beafc54c4   Hans J. Koch   UIO: Add the User...
39
  };
6d8333c24   Uwe Kleine-König   UIO: minor style ...
40
  #define MAX_UIO_MAPS	5
beafc54c4   Hans J. Koch   UIO: Add the User...
41

e70c412ee   Hans J. Koch   UIO: Pass informa...
42
43
44
45
  struct uio_portio;
  
  /**
   * struct uio_port - description of a UIO port region
820577911   Hans J. Koch   UIO: Add name att...
46
   * @name:		name of the port region for identification
e70c412ee   Hans J. Koch   UIO: Pass informa...
47
48
49
50
51
52
   * @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...
53
  	const char		*name;
e70c412ee   Hans J. Koch   UIO: Pass informa...
54
55
56
57
58
59
60
  	unsigned long		start;
  	unsigned long		size;
  	int			porttype;
  	struct uio_portio	*portio;
  };
  
  #define MAX_UIO_PORT_REGIONS	5
beafc54c4   Hans J. Koch   UIO: Add the User...
61
62
63
64
65
66
67
68
  struct uio_device;
  
  /**
   * 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...
69
   * @port:		list of port regions, size==0 for end of list
beafc54c4   Hans J. Koch   UIO: Add the User...
70
71
72
73
74
75
76
   * @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...
77
   * @irqcontrol:		disable/enable irqs when 0/1 is written to /dev/uioX
beafc54c4   Hans J. Koch   UIO: Add the User...
78
79
80
   */
  struct uio_info {
  	struct uio_device	*uio_dev;
b8ac9fc0e   Stephen Rothwell   uio: make uio_inf...
81
82
  	const char		*name;
  	const char		*version;
beafc54c4   Hans J. Koch   UIO: Add the User...
83
  	struct uio_mem		mem[MAX_UIO_MAPS];
e70c412ee   Hans J. Koch   UIO: Pass informa...
84
  	struct uio_port		port[MAX_UIO_PORT_REGIONS];
beafc54c4   Hans J. Koch   UIO: Add the User...
85
86
87
88
89
90
91
  	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...
92
  	int (*irqcontrol)(struct uio_info *info, s32 irq_on);
beafc54c4   Hans J. Koch   UIO: Add the User...
93
94
95
96
97
98
  };
  
  extern int __must_check
  	__uio_register_device(struct module *owner,
  			      struct device *parent,
  			      struct uio_info *info);
eb5589a8f   Paul Gortmaker   include: convert ...
99
100
101
102
  
  /* 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...
103
104
  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 ...
105
  /* defines for uio_info->irq */
beafc54c4   Hans J. Koch   UIO: Add the User...
106
  #define UIO_IRQ_CUSTOM	-1
6427a7655   Eric W. Biederman   uio: Cleanup irq ...
107
  #define UIO_IRQ_NONE	0
beafc54c4   Hans J. Koch   UIO: Add the User...
108

6d8333c24   Uwe Kleine-König   UIO: minor style ...
109
  /* defines for uio_mem->memtype */
beafc54c4   Hans J. Koch   UIO: Add the User...
110
111
112
113
  #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...
114
115
116
117
118
  /* 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...
119
  #endif /* _LINUX_UIO_DRIVER_H_ */