uio_driver.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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>
  6. * Copyright(C) 2006, Hans J. Koch <hjk@hansjkoch.de>
  7. * Copyright(C) 2006, Greg Kroah-Hartman <greg@kroah.com>
  8. *
  9. * Userspace IO driver.
  10. *
  11. * Licensed under the GPLv2 only.
  12. */
  13. #ifndef _UIO_DRIVER_H_
  14. #define _UIO_DRIVER_H_
  15. #include <linux/fs.h>
  16. #include <linux/interrupt.h>
  17. struct module;
  18. struct uio_map;
  19. /**
  20. * struct uio_mem - description of a UIO memory region
  21. * @name: name of the memory region for identification
  22. * @addr: address of the device's memory (phys_addr is used since
  23. * addr can be logical, virtual, or physical & phys_addr_t
  24. * should always be large enough to handle any of the
  25. * address types)
  26. * @size: size of IO
  27. * @memtype: type of memory addr points to
  28. * @internal_addr: ioremap-ped version of addr, for driver internal use
  29. * @map: for use by the UIO core only.
  30. */
  31. struct uio_mem {
  32. const char *name;
  33. phys_addr_t addr;
  34. resource_size_t size;
  35. int memtype;
  36. void __iomem *internal_addr;
  37. struct uio_map *map;
  38. };
  39. #define MAX_UIO_MAPS 5
  40. struct uio_portio;
  41. /**
  42. * struct uio_port - description of a UIO port region
  43. * @name: name of the port region for identification
  44. * @start: start of port region
  45. * @size: size of port region
  46. * @porttype: type of port (see UIO_PORT_* below)
  47. * @portio: for use by the UIO core only.
  48. */
  49. struct uio_port {
  50. const char *name;
  51. unsigned long start;
  52. unsigned long size;
  53. int porttype;
  54. struct uio_portio *portio;
  55. };
  56. #define MAX_UIO_PORT_REGIONS 5
  57. struct uio_device {
  58. struct module *owner;
  59. struct device *dev;
  60. int minor;
  61. atomic_t event;
  62. struct fasync_struct *async_queue;
  63. wait_queue_head_t wait;
  64. struct uio_info *info;
  65. struct kobject *map_dir;
  66. struct kobject *portio_dir;
  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
  74. * @port: list of port regions, size==0 for end of list
  75. * @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
  82. * @irqcontrol: disable/enable irqs when 0/1 is written to /dev/uioX
  83. */
  84. struct uio_info {
  85. struct uio_device *uio_dev;
  86. const char *name;
  87. const char *version;
  88. struct uio_mem mem[MAX_UIO_MAPS];
  89. struct uio_port port[MAX_UIO_PORT_REGIONS];
  90. 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);
  97. int (*irqcontrol)(struct uio_info *info, s32 irq_on);
  98. };
  99. extern int __must_check
  100. __uio_register_device(struct module *owner,
  101. struct device *parent,
  102. struct uio_info *info);
  103. /* use a define to avoid include chaining to get THIS_MODULE */
  104. #define uio_register_device(parent, info) \
  105. __uio_register_device(THIS_MODULE, parent, info)
  106. extern void uio_unregister_device(struct uio_info *info);
  107. extern void uio_event_notify(struct uio_info *info);
  108. /* defines for uio_info->irq */
  109. #define UIO_IRQ_CUSTOM -1
  110. #define UIO_IRQ_NONE 0
  111. /* defines for uio_mem->memtype */
  112. #define UIO_MEM_NONE 0
  113. #define UIO_MEM_PHYS 1
  114. #define UIO_MEM_LOGICAL 2
  115. #define UIO_MEM_VIRTUAL 3
  116. /* defines for uio_port->porttype */
  117. #define UIO_PORT_NONE 0
  118. #define UIO_PORT_X86 1
  119. #define UIO_PORT_GPIO 2
  120. #define UIO_PORT_OTHER 3
  121. #endif /* _LINUX_UIO_DRIVER_H_ */