blob: 8def19d9ab921698af30fef7bf7ce5529e097c0b [file] [log] [blame]
Pierrick Hascoet41b44e02011-10-31 12:24:39 -03001/*
2 * Abilis Systems Single DVB-T Receiver
3 * Copyright (C) 2008 Pierrick Hascoet <pierrick.hascoet@abilis.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
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.
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030014 */
15
Mauro Carvalho Chehab47f79122014-08-12 18:50:22 -030016#ifndef _AS102_DRV_H
17#define _AS102_DRV_H
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030018#include <linux/usb.h>
Sylwester Nawrocki82aae982011-11-06 16:31:40 -030019#include <dvb_demux.h>
20#include <dvb_frontend.h>
21#include <dmxdev.h>
Mauro Carvalho Chehab47f79122014-08-12 18:50:22 -030022#include "as10x_handle.h"
Sylwester Nawrocki82aae982011-11-06 16:31:40 -030023#include "as10x_cmd.h"
24#include "as102_usb_drv.h"
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030025
26#define DRIVER_FULL_NAME "Abilis Systems as10x usb driver"
27#define DRIVER_NAME "as10x_usb"
28
Randy Dunlapd29387e2011-11-16 18:17:03 -080029#define debug as102_debug
Sylwester Nawrocki82aae982011-11-06 16:31:40 -030030extern struct usb_driver as102_usb_driver;
Sylwester Nawrockia1172632011-11-06 16:31:48 -030031extern int elna_enable;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030032
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030033#define AS102_DEVICE_MAJOR 192
34
35#define AS102_USB_BUF_SIZE 512
36#define MAX_STREAM_URB 32
37
Sylwester Nawrocki34490a02011-11-06 16:31:50 -030038struct as10x_bus_adapter_t {
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030039 struct usb_device *usb_dev;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030040 /* bus token lock */
41 struct mutex lock;
42 /* low level interface for bus adapter */
43 union as10x_bus_token_t {
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030044 /* usb token */
45 struct as10x_usb_token_cmd_t usb;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030046 } token;
47
48 /* token cmd xfer id */
49 uint16_t cmd_xid;
50
51 /* as10x command and response for dvb interface*/
52 struct as10x_cmd_t *cmd, *rsp;
53
54 /* bus adapter private ops callback */
Julia Lawallf691ba92015-12-06 13:51:38 -020055 const struct as102_priv_ops_t *ops;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030056};
57
58struct as102_dev_t {
Devin Heitmueller4f7b7c02011-10-31 12:24:48 -030059 const char *name;
Sylwester Nawrocki34490a02011-11-06 16:31:50 -030060 struct as10x_bus_adapter_t bus_adap;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030061 struct list_head device_entry;
62 struct kref kref;
Gianluca Gennariabfac0b2012-03-06 09:47:46 -030063 uint8_t elna_cfg;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030064
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030065 struct dvb_adapter dvb_adap;
Mauro Carvalho Chehabb601d9a2014-08-12 18:50:19 -030066 struct dvb_frontend *dvb_fe;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030067 struct dvb_demux dvb_dmx;
68 struct dmxdev dvb_dmxdev;
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030069
Pierrick Hascoet41b44e02011-10-31 12:24:39 -030070 /* timer handle to trig ts stream download */
71 struct timer_list timer_handle;
72
73 struct mutex sem;
74 dma_addr_t dma_addr;
75 void *stream;
76 int streaming;
77 struct urb *stream_urb[MAX_STREAM_URB];
78};
79
80int as102_dvb_register(struct as102_dev_t *dev);
81void as102_dvb_unregister(struct as102_dev_t *dev);
82
Mauro Carvalho Chehab289297b2014-09-24 09:59:02 -030083#endif