alistair23-linux/drivers/staging/media/lirc/lirc_parallel.h
Mauro Carvalho Chehab 4860c73804 staging: Move media drivers to staging/media
In practice, it is being hard to distinguish when a patch
should go to staging tree or to the media tree. Better
to distinguish it, by putting the media drivers at a
separate staging directory. Newer staging drivers that include
anything with "dvb*.h", "v4l2*.h" or "videodev2.h" should
go to the drivers/staging/media tree.

Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2011-11-03 07:59:03 -02:00

27 lines
795 B
C

/* lirc_parallel.h */
#ifndef _LIRC_PARALLEL_H
#define _LIRC_PARALLEL_H
#include <linux/lp.h>
#define LIRC_PORT_LEN 3
#define LIRC_LP_BASE 0
#define LIRC_LP_STATUS 1
#define LIRC_LP_CONTROL 2
#define LIRC_PORT_DATA LIRC_LP_BASE /* base */
#define LIRC_PORT_TIMER LIRC_LP_STATUS /* status port */
#define LIRC_PORT_TIMER_BIT LP_PBUSY /* busy signal */
#define LIRC_PORT_SIGNAL LIRC_LP_STATUS /* status port */
#define LIRC_PORT_SIGNAL_BIT LP_PACK /* ack signal */
#define LIRC_PORT_IRQ LIRC_LP_CONTROL /* control port */
#define LIRC_SFH506_DELAY 0 /* delay t_phl in usecs */
#define LIRC_PARALLEL_MAX_TRANSMITTERS 8
#define LIRC_PARALLEL_TRANSMITTER_MASK ((1<<LIRC_PARALLEL_MAX_TRANSMITTERS) - 1)
#endif