dvbdev.h 4.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * dvbdev.h
 *
 * Copyright (C) 2000 Ralph Metzler & Marcus Metzler
 *                    for convergence integrated media GmbH
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Lesser Public License
 * as published by the Free Software Foundation; either version 2.1
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 */

#ifndef _DVBDEV_H_
#define _DVBDEV_H_

#include <linux/types.h>
#include <linux/poll.h>
#include <linux/fs.h>
#include <linux/list.h>

#define DVB_MAJOR 212

33
#if defined(CONFIG_DVB_MAX_ADAPTERS) && CONFIG_DVB_MAX_ADAPTERS > 0
34
  #define DVB_MAX_ADAPTERS CONFIG_DVB_MAX_ADAPTERS
35
#else
36
  #define DVB_MAX_ADAPTERS 8
37
#endif
38 39 40

#define DVB_UNSET (-1)

L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48 49 50
#define DVB_DEVICE_VIDEO      0
#define DVB_DEVICE_AUDIO      1
#define DVB_DEVICE_SEC        2
#define DVB_DEVICE_FRONTEND   3
#define DVB_DEVICE_DEMUX      4
#define DVB_DEVICE_DVR        5
#define DVB_DEVICE_CA         6
#define DVB_DEVICE_NET        7
#define DVB_DEVICE_OSD        8

51 52 53 54 55
#define DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr) \
	static short adapter_nr[] = \
		{[0 ... (DVB_MAX_ADAPTERS - 1)] = DVB_UNSET }; \
	module_param_array(adapter_nr, short, NULL, 0444); \
	MODULE_PARM_DESC(adapter_nr, "DVB adapter numbers")
L
Linus Torvalds 已提交
56

57 58
struct dvb_frontend;

L
Linus Torvalds 已提交
59 60 61 62 63 64 65 66
struct dvb_adapter {
	int num;
	struct list_head list_head;
	struct list_head device_list;
	const char *name;
	u8 proposed_mac [6];
	void* priv;

67 68
	struct device *device;

L
Linus Torvalds 已提交
69
	struct module *module;
70 71 72 73

	int mfe_shared;			/* indicates mutually exclusive frontends */
	struct dvb_device *mfe_dvbdev;	/* frontend device in use */
	struct mutex mfe_lock;		/* access lock for thread creation */
L
Linus Torvalds 已提交
74 75 76 77 78
};


struct dvb_device {
	struct list_head list_head;
79
	const struct file_operations *fops;
L
Linus Torvalds 已提交
80 81
	struct dvb_adapter *adapter;
	int type;
82
	int minor;
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90
	u32 id;

	/* in theory, 'users' can vanish now,
	   but I don't want to change too much now... */
	int readers;
	int writers;
	int users;

91
	wait_queue_head_t	  wait_queue;
92
	/* don't really need those !? -- FIXME: use video_usercopy  */
93
	int (*kernel_ioctl)(struct file *file, unsigned int cmd, void *arg);
L
Linus Torvalds 已提交
94 95 96 97 98

	void *priv;
};


99 100 101
extern int dvb_register_adapter(struct dvb_adapter *adap, const char *name,
				struct module *module, struct device *device,
				short *adapter_nums);
L
Linus Torvalds 已提交
102 103 104 105 106 107 108 109 110 111 112 113
extern int dvb_unregister_adapter (struct dvb_adapter *adap);

extern int dvb_register_device (struct dvb_adapter *adap,
				struct dvb_device **pdvbdev,
				const struct dvb_device *template,
				void *priv,
				int type);

extern void dvb_unregister_device (struct dvb_device *dvbdev);

extern int dvb_generic_open (struct inode *inode, struct file *file);
extern int dvb_generic_release (struct inode *inode, struct file *file);
114
extern long dvb_generic_ioctl (struct file *file,
L
Linus Torvalds 已提交
115 116 117 118 119 120
			      unsigned int cmd, unsigned long arg);

/* we don't mess with video_usercopy() any more,
we simply define out own dvb_usercopy(), which will hopefully become
generic_usercopy()  someday... */

121 122
extern int dvb_usercopy(struct file *file, unsigned int cmd, unsigned long arg,
			    int (*func)(struct file *file, unsigned int cmd, void *arg));
L
Linus Torvalds 已提交
123

124
/** generic DVB attach function. */
125
#ifdef CONFIG_MEDIA_ATTACH
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
#define dvb_attach(FUNCTION, ARGS...) ({ \
	void *__r = NULL; \
	typeof(&FUNCTION) __a = symbol_request(FUNCTION); \
	if (__a) { \
		__r = (void *) __a(ARGS); \
		if (__r == NULL) \
			symbol_put(FUNCTION); \
	} else { \
		printk(KERN_ERR "DVB: Unable to find symbol "#FUNCTION"()\n"); \
	} \
	__r; \
})

#else
#define dvb_attach(FUNCTION, ARGS...) ({ \
	FUNCTION(ARGS); \
})

#endif

L
Linus Torvalds 已提交
146
#endif /* #ifndef _DVBDEV_H_ */