4 * by Artur Lipowski <alipowski@interia.pl>
5 * This code is licensed under GNU GPL
9 #ifndef _LINUX_LIRC_DEV_H
10 #define _LINUX_LIRC_DEV_H
12 #define MAX_IRCTL_DEVICES 8
15 #define mod(n, div) ((n) % (div))
17 #include <linux/slab.h>
19 #include <linux/ioctl.h>
20 #include <linux/poll.h>
21 #include <linux/kfifo.h>
22 #include <media/lirc.h>
25 wait_queue_head_t wait_poll
;
27 unsigned int chunk_size
;
28 unsigned int size
; /* in chunks */
29 /* Using chunks instead of bytes pretends to simplify boundary checking
30 * And should allow for some performance fine tunning later */
34 static inline void lirc_buffer_clear(struct lirc_buffer
*buf
)
38 if (kfifo_initialized(&buf
->fifo
)) {
39 spin_lock_irqsave(&buf
->fifo_lock
, flags
);
40 kfifo_reset(&buf
->fifo
);
41 spin_unlock_irqrestore(&buf
->fifo_lock
, flags
);
43 WARN(1, "calling %s on an uninitialized lirc_buffer\n",
47 static inline int lirc_buffer_init(struct lirc_buffer
*buf
,
48 unsigned int chunk_size
,
53 init_waitqueue_head(&buf
->wait_poll
);
54 spin_lock_init(&buf
->fifo_lock
);
55 buf
->chunk_size
= chunk_size
;
57 ret
= kfifo_alloc(&buf
->fifo
, size
* chunk_size
, GFP_KERNEL
);
62 static inline void lirc_buffer_free(struct lirc_buffer
*buf
)
64 if (kfifo_initialized(&buf
->fifo
)) {
65 kfifo_free(&buf
->fifo
);
67 WARN(1, "calling %s on an uninitialized lirc_buffer\n",
71 static inline int lirc_buffer_len(struct lirc_buffer
*buf
)
76 spin_lock_irqsave(&buf
->fifo_lock
, flags
);
77 len
= kfifo_len(&buf
->fifo
);
78 spin_unlock_irqrestore(&buf
->fifo_lock
, flags
);
83 static inline int lirc_buffer_full(struct lirc_buffer
*buf
)
85 return lirc_buffer_len(buf
) == buf
->size
* buf
->chunk_size
;
88 static inline int lirc_buffer_empty(struct lirc_buffer
*buf
)
90 return !lirc_buffer_len(buf
);
93 static inline int lirc_buffer_available(struct lirc_buffer
*buf
)
95 return buf
->size
- (lirc_buffer_len(buf
) / buf
->chunk_size
);
98 static inline unsigned int lirc_buffer_read(struct lirc_buffer
*buf
,
101 unsigned int ret
= 0;
103 if (lirc_buffer_len(buf
) >= buf
->chunk_size
)
104 ret
= kfifo_out_locked(&buf
->fifo
, dest
, buf
->chunk_size
,
110 static inline unsigned int lirc_buffer_write(struct lirc_buffer
*buf
,
115 ret
= kfifo_in_locked(&buf
->fifo
, orig
, buf
->chunk_size
,
122 * struct lirc_driver - Defines the parameters on a LIRC driver
124 * @name: this string will be used for logs
126 * @minor: indicates minor device (/dev/lirc) number for
127 * registered driver if caller fills it with negative
128 * value, then the first free minor number will be used
131 * @code_length: length of the remote control key code expressed in bits.
133 * @buffer_size: Number of FIFO buffers with @chunk_size size. If zero,
134 * creates a buffer with BUFLEN size (16 bytes).
136 * @sample_rate: if zero, the device will wait for an event with a new
137 * code to be parsed. Otherwise, specifies the sample
138 * rate for polling. Value should be between 0
139 * and HZ. If equal to HZ, it would mean one polling per
142 * @features: lirc compatible hardware features, like LIRC_MODE_RAW,
143 * LIRC_CAN\_\*, as defined at include/media/lirc.h.
145 * @chunk_size: Size of each FIFO buffer.
147 * @data: it may point to any driver data and this pointer will
148 * be passed to all callback functions.
150 * @min_timeout: Minimum timeout for record. Valid only if
151 * LIRC_CAN_SET_REC_TIMEOUT is defined.
153 * @max_timeout: Maximum timeout for record. Valid only if
154 * LIRC_CAN_SET_REC_TIMEOUT is defined.
156 * @add_to_buf: add_to_buf will be called after specified period of the
157 * time or triggered by the external event, this behavior
158 * depends on value of the sample_rate this function will
159 * be called in user context. This routine should return
160 * 0 if data was added to the buffer and -ENODATA if none
161 * was available. This should add some number of bits
162 * evenly divisible by code_length to the buffer.
164 * @rbuf: if not NULL, it will be used as a read buffer, you will
165 * have to write to the buffer by other means, like irq's
166 * (see also lirc_serial.c).
168 * @set_use_inc: set_use_inc will be called after device is opened
170 * @set_use_dec: set_use_dec will be called after device is closed
172 * @rdev: Pointed to struct rc_dev associated with the LIRC
175 * @fops: file_operations for drivers which don't fit the current
177 * Some ioctl's can be directly handled by lirc_dev if the
178 * driver's ioctl function is NULL or if it returns
179 * -ENOIOCTLCMD (see also lirc_serial.c).
181 * @dev: pointer to the struct device associated with the LIRC
184 * @owner: the module owning this struct
190 unsigned int buffer_size
; /* in chunks holding one code each */
194 unsigned int chunk_size
;
199 int (*add_to_buf
)(void *data
, struct lirc_buffer
*buf
);
200 struct lirc_buffer
*rbuf
;
201 int (*set_use_inc
)(void *data
);
202 void (*set_use_dec
)(void *data
);
204 const struct file_operations
*fops
;
206 struct module
*owner
;
209 /* following functions can be called ONLY from user context
211 * returns negative value on error or minor number
212 * of the registered device if success
213 * contents of the structure pointed by p is copied
215 extern int lirc_register_driver(struct lirc_driver
*d
);
217 /* returns negative value on error or 0 if success
219 extern int lirc_unregister_driver(int minor
);
221 /* Returns the private data stored in the lirc_driver
222 * associated with the given device file pointer.
224 void *lirc_get_pdata(struct file
*file
);
226 /* default file operations
227 * used by drivers if they override only some operations
229 int lirc_dev_fop_open(struct inode
*inode
, struct file
*file
);
230 int lirc_dev_fop_close(struct inode
*inode
, struct file
*file
);
231 unsigned int lirc_dev_fop_poll(struct file
*file
, poll_table
*wait
);
232 long lirc_dev_fop_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
);
233 ssize_t
lirc_dev_fop_read(struct file
*file
, char __user
*buffer
, size_t length
,
235 ssize_t
lirc_dev_fop_write(struct file
*file
, const char __user
*buffer
,
236 size_t length
, loff_t
*ppos
);