dvb-usb-dvb.c 9.1 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
	int newfeedcount, ret;
16

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

20 21
	if ((adap->active_fe < 0) ||
	    (adap->active_fe >= adap->num_frontends_initialized)) {
22 23 24
		return -EINVAL;
	}

25
	newfeedcount = adap->feedcount + (onoff ? 1 : -1);
26

27
	/* stop feed before setting a new pid if there will be no pid anymore */
28 29
	if (newfeedcount == 0) {
		deb_ts("stop feeding\n");
30
		usb_urb_kill(&adap->fe_adap[adap->active_fe].stream);
31

32 33
		if (adap->props.fe[adap->active_fe].streaming_ctrl != NULL) {
			ret = adap->props.fe[adap->active_fe].streaming_ctrl(adap, 0);
34 35
			if (ret < 0) {
				err("error while stopping stream.");
36
				return ret;
37
			}
38
		}
39 40
	}

41
	adap->feedcount = newfeedcount;
42 43

	/* activate the pid on the device specific pid_filter */
44 45 46 47
	deb_ts("setting pid (%s): %5d %04x at index %d '%s'\n",
		adap->fe_adap[adap->active_fe].pid_filtering ?
		"yes" : "no", dvbdmxfeed->pid, dvbdmxfeed->pid,
		dvbdmxfeed->index, onoff ? "on" : "off");
48 49 50 51
	if (adap->props.fe[adap->active_fe].caps & DVB_USB_ADAP_HAS_PID_FILTER &&
		adap->fe_adap[adap->active_fe].pid_filtering &&
		adap->props.fe[adap->active_fe].pid_filter != NULL)
		adap->props.fe[adap->active_fe].pid_filter(adap, dvbdmxfeed->index, dvbdmxfeed->pid, onoff);
52 53 54 55

	/* start the feed if this was the first feed and there is still a feed
	 * for reception.
	 */
56
	if (adap->feedcount == onoff && adap->feedcount > 0) {
57
		deb_ts("submitting all URBs\n");
58
		usb_urb_submit(&adap->fe_adap[adap->active_fe].stream);
59 60

		deb_ts("controlling pid parser\n");
61 62
		if (adap->props.fe[adap->active_fe].caps & DVB_USB_ADAP_HAS_PID_FILTER &&
			adap->props.fe[adap->active_fe].caps &
63
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF &&
64 65 66
			adap->props.fe[adap->active_fe].pid_filter_ctrl != NULL) {
			ret = adap->props.fe[adap->active_fe].pid_filter_ctrl(adap,
				adap->fe_adap[adap->active_fe].pid_filtering);
67
			if (ret < 0) {
68
				err("could not handle pid_parser");
69 70 71
				return ret;
			}
		}
72
		deb_ts("start feeding\n");
73 74
		if (adap->props.fe[adap->active_fe].streaming_ctrl != NULL) {
			ret = adap->props.fe[adap->active_fe].streaming_ctrl(adap, 1);
75
			if (ret < 0) {
76
				err("error while enabling fifo.");
77
				return ret;
78
			}
79
		}
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96

	}
	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);
}

97
static void dvb_usb_media_device_register(struct dvb_usb_adapter *adap)
98 99 100
{
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
	struct media_device *mdev;
101
	struct dvb_usb_device *d = adap->dev;
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
	struct usb_device *udev = d->udev;
	int ret;

	mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
	if (!mdev)
		return;

	mdev->dev = &udev->dev;
	strlcpy(mdev->model, d->desc->name, sizeof(mdev->model));
	if (udev->serial)
		strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
	strcpy(mdev->bus_info, udev->devpath);
	mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
	mdev->driver_version = LINUX_VERSION_CODE;

	ret = media_device_register(mdev);
	if (ret) {
		dev_err(&d->udev->dev,
			"Couldn't create a media device. Error: %d\n",
			ret);
		kfree(mdev);
		return;
	}
125
	adap->dvb_adap.mdev = mdev;
126 127 128 129 130

	dev_info(&d->udev->dev, "media controller created\n");
#endif
}

131
static void dvb_usb_media_device_unregister(struct dvb_usb_adapter *adap)
132 133
{
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
134
	if (!adap->dvb_adap.mdev)
135 136
		return;

137 138 139
	media_device_unregister(adap->dvb_adap.mdev);
	kfree(adap->dvb_adap.mdev);
	adap->dvb_adap.mdev = NULL;
140 141 142
#endif
}

143
int dvb_usb_adapter_dvb_init(struct dvb_usb_adapter *adap, short *adapter_nums)
144
{
145
	int i;
146 147 148
	int ret = dvb_register_adapter(&adap->dvb_adap, adap->dev->desc->name,
				       adap->dev->owner, &adap->dev->udev->dev,
				       adapter_nums);
149

150
	if (ret < 0) {
151 152 153
		deb_info("dvb_register_adapter failed: error %d", ret);
		goto err;
	}
154 155
	adap->dvb_adap.priv = adap;

156
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
157
	dvb_usb_media_device_register(adap);
158 159
#endif

160 161
	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 已提交
162
			info("MAC address: %pM",adap->dvb_adap.proposed_mac);
163 164 165 166 167
		else
			err("MAC address reading failed.");
	}


168 169
	adap->demux.dmx.capabilities = DMX_TS_FILTERING | DMX_SECTION_FILTERING;
	adap->demux.priv             = adap;
170

171 172 173 174 175 176
	adap->demux.filternum        = 0;
	for (i = 0; i < adap->props.num_frontends; i++) {
		if (adap->demux.filternum < adap->fe_adap[i].max_feed_count)
			adap->demux.filternum = adap->fe_adap[i].max_feed_count;
	}
	adap->demux.feednum          = adap->demux.filternum;
177 178 179 180
	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) {
181 182 183 184
		err("dvb_dmx_init failed: error %d",ret);
		goto err_dmx;
	}

185 186 187 188
	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) {
189 190 191 192
		err("dvb_dmxdev_init failed: error %d",ret);
		goto err_dmx_dev;
	}

193 194 195 196 197
	if ((ret = dvb_net_init(&adap->dvb_adap, &adap->dvb_net,
						&adap->demux.dmx)) < 0) {
		err("dvb_net_init failed: error %d",ret);
		goto err_net_init;
	}
198

199
	adap->state |= DVB_USB_ADAP_STATE_DVB;
200 201
	return 0;

202 203
err_net_init:
	dvb_dmxdev_release(&adap->dmxdev);
204
err_dmx_dev:
205
	dvb_dmx_release(&adap->demux);
206
err_dmx:
207
	dvb_usb_media_device_unregister(adap);
208
	dvb_unregister_adapter(&adap->dvb_adap);
209 210 211 212
err:
	return ret;
}

213
int dvb_usb_adapter_dvb_exit(struct dvb_usb_adapter *adap)
214
{
215
	if (adap->state & DVB_USB_ADAP_STATE_DVB) {
216
		deb_info("unregistering DVB part\n");
217 218 219 220
		dvb_net_release(&adap->dvb_net);
		adap->demux.dmx.close(&adap->demux.dmx);
		dvb_dmxdev_release(&adap->dmxdev);
		dvb_dmx_release(&adap->demux);
221
		dvb_usb_media_device_unregister(adap);
222 223
		dvb_unregister_adapter(&adap->dvb_adap);
		adap->state &= ~DVB_USB_ADAP_STATE_DVB;
224 225 226 227
	}
	return 0;
}

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
static int dvb_usb_set_active_fe(struct dvb_frontend *fe, int onoff)
{
	struct dvb_usb_adapter *adap = fe->dvb->priv;

	int ret = (adap->props.frontend_ctrl) ?
		adap->props.frontend_ctrl(fe, onoff) : 0;

	if (ret < 0) {
		err("frontend_ctrl request failed");
		return ret;
	}
	if (onoff)
		adap->active_fe = fe->id;

	return 0;
}

245 246
static int dvb_usb_fe_wakeup(struct dvb_frontend *fe)
{
247
	struct dvb_usb_adapter *adap = fe->dvb->priv;
248

249
	dvb_usb_device_power_ctrl(adap->dev, 1);
250

251
	dvb_usb_set_active_fe(fe, 1);
252

253 254
	if (adap->fe_adap[fe->id].fe_init)
		adap->fe_adap[fe->id].fe_init(fe);
255 256 257 258 259 260

	return 0;
}

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

263 264
	if (adap->fe_adap[fe->id].fe_sleep)
		adap->fe_adap[fe->id].fe_sleep(fe);
265

266
	dvb_usb_set_active_fe(fe, 0);
267

268
	return dvb_usb_device_power_ctrl(adap->dev, 0);
269 270
}

271
int dvb_usb_adapter_frontend_init(struct dvb_usb_adapter *adap)
272
{
273
	int ret, i;
274

275 276
	/* register all given adapter frontends */
	for (i = 0; i < adap->props.num_frontends; i++) {
277

278 279 280 281
		if (adap->props.fe[i].frontend_attach == NULL) {
			err("strange: '%s' #%d,%d "
			    "doesn't want to attach a frontend.",
			    adap->dev->desc->name, adap->id, i);
282

283 284
			return 0;
		}
285

286 287
		ret = adap->props.fe[i].frontend_attach(adap);
		if (ret || adap->fe_adap[i].fe == NULL) {
288 289 290 291 292 293 294
			/* only print error when there is no FE at all */
			if (i == 0)
				err("no frontend was attached by '%s'",
					adap->dev->desc->name);

			return 0;
		}
295

296
		adap->fe_adap[i].fe->id = i;
297 298

		/* re-assign sleep and wakeup functions */
299 300 301 302
		adap->fe_adap[i].fe_init = adap->fe_adap[i].fe->ops.init;
		adap->fe_adap[i].fe->ops.init  = dvb_usb_fe_wakeup;
		adap->fe_adap[i].fe_sleep = adap->fe_adap[i].fe->ops.sleep;
		adap->fe_adap[i].fe->ops.sleep = dvb_usb_fe_sleep;
303

304
		if (dvb_register_frontend(&adap->dvb_adap, adap->fe_adap[i].fe)) {
305
			err("Frontend %d registration failed.", i);
306 307
			dvb_frontend_detach(adap->fe_adap[i].fe);
			adap->fe_adap[i].fe = NULL;
308 309 310 311 312 313
			/* In error case, do not try register more FEs,
			 * still leaving already registered FEs alive. */
			if (i == 0)
				return -ENODEV;
			else
				return 0;
314
		}
315 316

		/* only attach the tuner if the demod is there */
317 318 319 320
		if (adap->props.fe[i].tuner_attach != NULL)
			adap->props.fe[i].tuner_attach(adap);

		adap->num_frontends_initialized++;
321
	}
322

323
	dvb_create_media_graph(&adap->dvb_adap);
324

325 326 327
	return 0;
}

328
int dvb_usb_adapter_frontend_exit(struct dvb_usb_adapter *adap)
329
{
330
	int i = adap->num_frontends_initialized - 1;
331 332 333

	/* unregister all given adapter frontends */
	for (; i >= 0; i--) {
334 335 336
		if (adap->fe_adap[i].fe != NULL) {
			dvb_unregister_frontend(adap->fe_adap[i].fe);
			dvb_frontend_detach(adap->fe_adap[i].fe);
337
		}
338
	}
339
	adap->num_frontends_initialized = 0;
340

341 342
	return 0;
}