ir-core.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*
  2. * Remote Controller core header
  3. *
  4. * Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation version 2 of the License.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #ifndef _IR_CORE
  16. #define _IR_CORE
  17. #include <linux/spinlock.h>
  18. #include <linux/kfifo.h>
  19. #include <linux/time.h>
  20. #include <linux/timer.h>
  21. #include <media/rc-map.h>
  22. extern int ir_core_debug;
  23. #define IR_dprintk(level, fmt, arg...) if (ir_core_debug >= level) \
  24. printk(KERN_DEBUG "%s: " fmt , __func__, ## arg)
  25. enum rc_driver_type {
  26. RC_DRIVER_SCANCODE = 0, /* Driver or hardware generates a scancode */
  27. RC_DRIVER_IR_RAW, /* Needs a Infra-Red pulse/space decoder */
  28. };
  29. /**
  30. * struct ir_dev_props - Allow caller drivers to set special properties
  31. * @driver_type: specifies if the driver or hardware have already a decoder,
  32. * or if it needs to use the IR raw event decoders to produce a scancode
  33. * @allowed_protos: bitmask with the supported IR_TYPE_* protocols
  34. * @scanmask: some hardware decoders are not capable of providing the full
  35. * scancode to the application. As this is a hardware limit, we can't do
  36. * anything with it. Yet, as the same keycode table can be used with other
  37. * devices, a mask is provided to allow its usage. Drivers should generally
  38. * leave this field in blank
  39. * @timeout: optional time after which device stops sending data
  40. * @min_timeout: minimum timeout supported by device
  41. * @max_timeout: maximum timeout supported by device
  42. * @rx_resolution : resolution (in ns) of input sampler
  43. * @tx_resolution: resolution (in ns) of output sampler
  44. * @priv: driver-specific data, to be used on the callbacks
  45. * @change_protocol: allow changing the protocol used on hardware decoders
  46. * @open: callback to allow drivers to enable polling/irq when IR input device
  47. * is opened.
  48. * @close: callback to allow drivers to disable polling/irq when IR input device
  49. * is opened.
  50. * @s_tx_mask: set transmitter mask (for devices with multiple tx outputs)
  51. * @s_tx_carrier: set transmit carrier frequency
  52. * @s_tx_duty_cycle: set transmit duty cycle (0% - 100%)
  53. * @s_rx_carrier: inform driver about carrier it is expected to handle
  54. * @tx_ir: transmit IR
  55. * @s_idle: optional: enable/disable hardware idle mode, upon which,
  56. device doesn't interrupt host until it sees IR pulses
  57. * @s_learning_mode: enable wide band receiver used for learning
  58. */
  59. struct ir_dev_props {
  60. enum rc_driver_type driver_type;
  61. unsigned long allowed_protos;
  62. u32 scanmask;
  63. u32 timeout;
  64. u32 min_timeout;
  65. u32 max_timeout;
  66. u32 rx_resolution;
  67. u32 tx_resolution;
  68. void *priv;
  69. int (*change_protocol)(void *priv, u64 ir_type);
  70. int (*open)(void *priv);
  71. void (*close)(void *priv);
  72. int (*s_tx_mask)(void *priv, u32 mask);
  73. int (*s_tx_carrier)(void *priv, u32 carrier);
  74. int (*s_tx_duty_cycle)(void *priv, u32 duty_cycle);
  75. int (*s_rx_carrier_range)(void *priv, u32 min, u32 max);
  76. int (*tx_ir)(void *priv, int *txbuf, u32 n);
  77. void (*s_idle)(void *priv, int enable);
  78. int (*s_learning_mode)(void *priv, int enable);
  79. };
  80. struct ir_input_dev {
  81. struct device dev; /* device */
  82. char *driver_name; /* Name of the driver module */
  83. struct ir_scancode_table rc_tab; /* scan/key table */
  84. unsigned long devno; /* device number */
  85. struct ir_dev_props *props; /* Device properties */
  86. struct ir_raw_event_ctrl *raw; /* for raw pulse/space events */
  87. struct input_dev *input_dev; /* the input device associated with this device */
  88. bool idle;
  89. /* key info - needed by IR keycode handlers */
  90. spinlock_t keylock; /* protects the below members */
  91. bool keypressed; /* current state */
  92. unsigned long keyup_jiffies; /* when should the current keypress be released? */
  93. struct timer_list timer_keyup; /* timer for releasing a keypress */
  94. u32 last_keycode; /* keycode of last command */
  95. u32 last_scancode; /* scancode of last command */
  96. u8 last_toggle; /* toggle of last command */
  97. };
  98. enum raw_event_type {
  99. IR_SPACE = (1 << 0),
  100. IR_PULSE = (1 << 1),
  101. IR_START_EVENT = (1 << 2),
  102. IR_STOP_EVENT = (1 << 3),
  103. };
  104. #define to_ir_input_dev(_attr) container_of(_attr, struct ir_input_dev, attr)
  105. /* From ir-keytable.c */
  106. int __ir_input_register(struct input_dev *dev,
  107. const struct ir_scancode_table *ir_codes,
  108. struct ir_dev_props *props,
  109. const char *driver_name);
  110. static inline int ir_input_register(struct input_dev *dev,
  111. const char *map_name,
  112. struct ir_dev_props *props,
  113. const char *driver_name) {
  114. struct ir_scancode_table *ir_codes;
  115. struct ir_input_dev *ir_dev;
  116. int rc;
  117. if (!map_name)
  118. return -EINVAL;
  119. ir_codes = get_rc_map(map_name);
  120. if (!ir_codes) {
  121. ir_codes = get_rc_map(RC_MAP_EMPTY);
  122. if (!ir_codes)
  123. return -EINVAL;
  124. }
  125. rc = __ir_input_register(dev, ir_codes, props, driver_name);
  126. if (rc < 0)
  127. return -EINVAL;
  128. ir_dev = input_get_drvdata(dev);
  129. if (!rc && ir_dev->props && ir_dev->props->change_protocol)
  130. rc = ir_dev->props->change_protocol(ir_dev->props->priv,
  131. ir_codes->ir_type);
  132. return rc;
  133. }
  134. void ir_input_unregister(struct input_dev *input_dev);
  135. void ir_repeat(struct input_dev *dev);
  136. void ir_keydown(struct input_dev *dev, int scancode, u8 toggle);
  137. u32 ir_g_keycode_from_table(struct input_dev *input_dev, u32 scancode);
  138. /* From ir-raw-event.c */
  139. struct ir_raw_event {
  140. unsigned pulse:1;
  141. unsigned duration:31;
  142. };
  143. #define IR_MAX_DURATION 0x7FFFFFFF /* a bit more than 2 seconds */
  144. void ir_raw_event_handle(struct input_dev *input_dev);
  145. int ir_raw_event_store(struct input_dev *input_dev, struct ir_raw_event *ev);
  146. int ir_raw_event_store_edge(struct input_dev *input_dev, enum raw_event_type type);
  147. int ir_raw_event_store_with_filter(struct input_dev *input_dev,
  148. struct ir_raw_event *ev);
  149. void ir_raw_event_set_idle(struct input_dev *input_dev, int idle);
  150. static inline void ir_raw_event_reset(struct input_dev *input_dev)
  151. {
  152. struct ir_raw_event ev = { .pulse = false, .duration = 0 };
  153. ir_raw_event_store(input_dev, &ev);
  154. ir_raw_event_handle(input_dev);
  155. }
  156. #endif /* _IR_CORE */