as102_drv.h 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Abilis Systems Single DVB-T Receiver
 * Copyright (C) 2008 Pierrick Hascoet <pierrick.hascoet@abilis.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, 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.
 */

16 17
#ifndef _AS102_DRV_H
#define _AS102_DRV_H
18
#include <linux/usb.h>
19 20 21
#include <dvb_demux.h>
#include <dvb_frontend.h>
#include <dmxdev.h>
22
#include "as10x_handle.h"
23 24
#include "as10x_cmd.h"
#include "as102_usb_drv.h"
25 26 27 28

#define DRIVER_FULL_NAME "Abilis Systems as10x usb driver"
#define DRIVER_NAME "as10x_usb"

29
#define debug	as102_debug
30
extern struct usb_driver as102_usb_driver;
31
extern int elna_enable;
32 33 34 35 36 37

#define AS102_DEVICE_MAJOR	192

#define AS102_USB_BUF_SIZE	512
#define MAX_STREAM_URB		32

38
struct as10x_bus_adapter_t {
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
	struct usb_device *usb_dev;
	/* bus token lock */
	struct mutex lock;
	/* low level interface for bus adapter */
	union as10x_bus_token_t {
		/* usb token */
		struct as10x_usb_token_cmd_t usb;
	} token;

	/* token cmd xfer id */
	uint16_t cmd_xid;

	/* as10x command and response for dvb interface*/
	struct as10x_cmd_t *cmd, *rsp;

	/* bus adapter private ops callback */
55
	const struct as102_priv_ops_t *ops;
56 57 58
};

struct as102_dev_t {
59
	const char *name;
60
	struct as10x_bus_adapter_t bus_adap;
61 62
	struct list_head device_entry;
	struct kref kref;
63
	uint8_t elna_cfg;
64 65

	struct dvb_adapter dvb_adap;
66
	struct dvb_frontend *dvb_fe;
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
	struct dvb_demux dvb_dmx;
	struct dmxdev dvb_dmxdev;

	/* timer handle to trig ts stream download */
	struct timer_list timer_handle;

	struct mutex sem;
	dma_addr_t dma_addr;
	void *stream;
	int streaming;
	struct urb *stream_urb[MAX_STREAM_URB];
};

int as102_dvb_register(struct as102_dev_t *dev);
void as102_dvb_unregister(struct as102_dev_t *dev);

83
#endif