dvb-usb-dvb.c 5.8 KB
Newer Older
1 2
/* dvb-usb-dvb.c is part of the DVB USB library.
 *
3
 * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@desy.de)
4 5 6 7 8 9 10
 * see dvb-usb-init.c for copyright information.
 *
 * This file contains functions for initializing and handling the
 * linux-dvb API.
 */
#include "dvb-usb-common.h"

11
/* does the complete input transfer handling */
12 13
static int dvb_usb_ctrl_feed(struct dvb_demux_feed *dvbdmxfeed, int onoff)
{
14
	struct dvb_usb_adapter *adap = dvbdmxfeed->demux->priv;
15 16
	int newfeedcount,ret;

17
	if (adap == NULL)
18 19
		return -ENODEV;

20
	newfeedcount = adap->feedcount + (onoff ? 1 : -1);
21

22
	/* stop feed before setting a new pid if there will be no pid anymore */
23 24
	if (newfeedcount == 0) {
		deb_ts("stop feeding\n");
25
		usb_urb_kill(&adap->stream);
26

27 28
		if (adap->props.streaming_ctrl != NULL)
			if ((ret = adap->props.streaming_ctrl(adap,0)))
29 30 31
				err("error while stopping stream.");
	}

32
	adap->feedcount = newfeedcount;
33 34

	/* activate the pid on the device specific pid_filter */
35 36 37 38 39 40 41
	deb_ts("setting pid (%s): %5d %04x at index %d '%s'\n",adap->pid_filtering ?
		"yes" : "no", dvbdmxfeed->pid,dvbdmxfeed->pid,dvbdmxfeed->index,onoff ?
		"on" : "off");
	if (adap->props.caps & DVB_USB_ADAP_HAS_PID_FILTER &&
		adap->pid_filtering &&
		adap->props.pid_filter != NULL)
		adap->props.pid_filter(adap, dvbdmxfeed->index, dvbdmxfeed->pid,onoff);
42 43 44 45

	/* start the feed if this was the first feed and there is still a feed
	 * for reception.
	 */
46
	if (adap->feedcount == onoff && adap->feedcount > 0) {
47
		deb_ts("submitting all URBs\n");
48
		usb_urb_submit(&adap->stream);
49 50

		deb_ts("controlling pid parser\n");
51 52 53 54
		if (adap->props.caps & DVB_USB_ADAP_HAS_PID_FILTER &&
			adap->props.caps & DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF &&
			adap->props.pid_filter_ctrl != NULL)
			if (adap->props.pid_filter_ctrl(adap,adap->pid_filtering) < 0)
55 56 57
				err("could not handle pid_parser");

		deb_ts("start feeding\n");
58 59
		if (adap->props.streaming_ctrl != NULL)
			if (adap->props.streaming_ctrl(adap,1)) {
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
				err("error while enabling fifo.");
				return -ENODEV;
			}

	}
	return 0;
}

static int dvb_usb_start_feed(struct dvb_demux_feed *dvbdmxfeed)
{
	deb_ts("start pid: 0x%04x, feedtype: %d\n", dvbdmxfeed->pid,dvbdmxfeed->type);
	return dvb_usb_ctrl_feed(dvbdmxfeed,1);
}

static int dvb_usb_stop_feed(struct dvb_demux_feed *dvbdmxfeed)
{
	deb_ts("stop pid: 0x%04x, feedtype: %d\n", dvbdmxfeed->pid, dvbdmxfeed->type);
	return dvb_usb_ctrl_feed(dvbdmxfeed,0);
}

80
int dvb_usb_adapter_dvb_init(struct dvb_usb_adapter *adap, short *adapter_nums)
81
{
82 83 84
	int ret = dvb_register_adapter(&adap->dvb_adap, adap->dev->desc->name,
				       adap->dev->owner, &adap->dev->udev->dev,
				       adapter_nums);
85

86
	if (ret < 0) {
87 88 89
		deb_info("dvb_register_adapter failed: error %d", ret);
		goto err;
	}
90
	adap->dvb_adap.priv = adap;
91
	adap->dvb_adap.fe_ioctl_override = adap->props.fe_ioctl_override;
92 93 94

	if (adap->dev->props.read_mac_address) {
		if (adap->dev->props.read_mac_address(adap->dev,adap->dvb_adap.proposed_mac) == 0)
J
Johannes Berg 已提交
95
			info("MAC address: %pM",adap->dvb_adap.proposed_mac);
96 97 98 99 100
		else
			err("MAC address reading failed.");
	}


101 102
	adap->demux.dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING;
	adap->demux.priv             = adap;
103

104 105 106 107 108
	adap->demux.feednum          = adap->demux.filternum = adap->max_feed_count;
	adap->demux.start_feed       = dvb_usb_start_feed;
	adap->demux.stop_feed        = dvb_usb_stop_feed;
	adap->demux.write_to_decoder = NULL;
	if ((ret = dvb_dmx_init(&adap->demux)) < 0) {
109 110 111 112
		err("dvb_dmx_init failed: error %d",ret);
		goto err_dmx;
	}

113 114 115 116
	adap->dmxdev.filternum       = adap->demux.filternum;
	adap->dmxdev.demux           = &adap->demux.dmx;
	adap->dmxdev.capabilities    = 0;
	if ((ret = dvb_dmxdev_init(&adap->dmxdev, &adap->dvb_adap)) < 0) {
117 118 119 120
		err("dvb_dmxdev_init failed: error %d",ret);
		goto err_dmx_dev;
	}

121
	dvb_net_init(&adap->dvb_adap, &adap->dvb_net, &adap->demux.dmx);
122

123
	adap->state |= DVB_USB_ADAP_STATE_DVB;
124 125
	return 0;

126
err_dmx_dev:
127
	dvb_dmx_release(&adap->demux);
128
err_dmx:
129
	dvb_unregister_adapter(&adap->dvb_adap);
130 131 132 133
err:
	return ret;
}

134
int dvb_usb_adapter_dvb_exit(struct dvb_usb_adapter *adap)
135
{
136
	if (adap->state & DVB_USB_ADAP_STATE_DVB) {
137
		deb_info("unregistering DVB part\n");
138 139 140 141 142 143
		dvb_net_release(&adap->dvb_net);
		adap->demux.dmx.close(&adap->demux.dmx);
		dvb_dmxdev_release(&adap->dmxdev);
		dvb_dmx_release(&adap->demux);
		dvb_unregister_adapter(&adap->dvb_adap);
		adap->state &= ~DVB_USB_ADAP_STATE_DVB;
144 145 146 147 148 149
	}
	return 0;
}

static int dvb_usb_fe_wakeup(struct dvb_frontend *fe)
{
150
	struct dvb_usb_adapter *adap = fe->dvb->priv;
151

152
	dvb_usb_device_power_ctrl(adap->dev, 1);
153

154 155
	if (adap->fe_init)
		adap->fe_init(fe);
156 157 158 159 160 161

	return 0;
}

static int dvb_usb_fe_sleep(struct dvb_frontend *fe)
{
162
	struct dvb_usb_adapter *adap = fe->dvb->priv;
163

164 165
	if (adap->fe_sleep)
		adap->fe_sleep(fe);
166

167
	return dvb_usb_device_power_ctrl(adap->dev, 0);
168 169
}

170
int dvb_usb_adapter_frontend_init(struct dvb_usb_adapter *adap)
171
{
172 173
	if (adap->props.frontend_attach == NULL) {
		err("strange: '%s' #%d doesn't want to attach a frontend.",adap->dev->desc->name, adap->id);
174 175 176 177
		return 0;
	}

	/* re-assign sleep and wakeup functions */
178 179 180
	if (adap->props.frontend_attach(adap) == 0 && adap->fe != NULL) {
		adap->fe_init  = adap->fe->ops.init;  adap->fe->ops.init  = dvb_usb_fe_wakeup;
		adap->fe_sleep = adap->fe->ops.sleep; adap->fe->ops.sleep = dvb_usb_fe_sleep;
181

182
		if (dvb_register_frontend(&adap->dvb_adap, adap->fe)) {
183
			err("Frontend registration failed.");
184 185
			dvb_frontend_detach(adap->fe);
			adap->fe = NULL;
186 187
			return -ENODEV;
		}
188 189

		/* only attach the tuner if the demod is there */
190 191
		if (adap->props.tuner_attach != NULL)
			adap->props.tuner_attach(adap);
192
	} else
193
		err("no frontend was attached by '%s'",adap->dev->desc->name);
194 195 196 197

	return 0;
}

198
int dvb_usb_adapter_frontend_exit(struct dvb_usb_adapter *adap)
199
{
200 201 202
	if (adap->fe != NULL) {
		dvb_unregister_frontend(adap->fe);
		dvb_frontend_detach(adap->fe);
203
	}
204 205
	return 0;
}