aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/firesat/firesat_iso.c
blob: 15e23cf7d503f24bc14684b5001059b84981e2b6 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * FireSAT DVB driver
 *
 * Copyright (c) 2008 Henrik Kurelid <henrik@kurelid.se>
 *
 *	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 of
 *	the License, or (at your option) any later version.
 */

#include "firesat.h"

static void rawiso_activity_cb(struct hpsb_iso *iso);

void tear_down_iso_channel(struct firesat *firesat)
{
	if (firesat->iso_handle != NULL) {
		hpsb_iso_stop(firesat->iso_handle);
		hpsb_iso_shutdown(firesat->iso_handle);
	}
	firesat->iso_handle = NULL;
}

int setup_iso_channel(struct firesat *firesat)
{
	int result;
	firesat->iso_handle =
		hpsb_iso_recv_init(firesat->host,
				   256 * 200, //data_buf_size,
				   256, //buf_packets,
				   firesat->isochannel,
				   HPSB_ISO_DMA_DEFAULT, //dma_mode,
				   -1, //stat.config.irq_interval,
				   rawiso_activity_cb);
	if (firesat->iso_handle == NULL) {
		printk(KERN_ERR "Cannot initialize iso receive.\n");
		return -EINVAL;
	}
	result = hpsb_iso_recv_start(firesat->iso_handle, -1, -1, 0);
	if (result != 0) {
		printk(KERN_ERR "Cannot start iso receive.\n");
		return -EINVAL;
	}
	return 0;
}

static void rawiso_activity_cb(struct hpsb_iso *iso)
{
	unsigned int num;
	unsigned int i;
/* 	unsigned int j; */
	unsigned int packet;
	unsigned long flags;
	struct firesat *firesat = NULL;
	struct firesat *firesat_iterator;

	spin_lock_irqsave(&firesat_list_lock, flags);
	list_for_each_entry(firesat_iterator, &firesat_list, list) {
		if(firesat_iterator->iso_handle == iso) {
			firesat = firesat_iterator;
			break;
		}
	}
	spin_unlock_irqrestore(&firesat_list_lock, flags);

	if (firesat) {
		packet = iso->first_packet;
		num = hpsb_iso_n_ready(iso);
		for (i = 0; i < num; i++,
			     packet = (packet + 1) % iso->buf_packets) {
			unsigned char *buf =
				dma_region_i(&iso->data_buf, unsigned char,
					     iso->infos[packet].offset +
					     sizeof(struct CIPHeader));
			int count = (iso->infos[packet].len -
				     sizeof(struct CIPHeader)) /
				(188 + sizeof(struct firewireheader));
			if (iso->infos[packet].len <= sizeof(struct CIPHeader))
				continue; // ignore empty packet
/* 			printk("%s: Handling packets (%d): ", __func__, */
/* 			       iso->infos[packet].len); */
/* 			for (j = 0; j < iso->infos[packet].len - */
/* 				     sizeof(struct CIPHeader); j++) */
/* 				printk("%02X,", buf[j]); */
/* 			printk("\n"); */
			while (count --) {
				if (buf[sizeof(struct firewireheader)] == 0x47)
					dvb_dmx_swfilter_packets(&firesat->demux,
								 &buf[sizeof(struct firewireheader)], 1);
				else
					printk("%s: invalid packet, skipping\n", __func__);
				buf += 188 + sizeof(struct firewireheader);

			}

		}
		hpsb_iso_recv_release_packets(iso, num);
	}
	else {
		printk("%s: packets for unknown iso channel, skipping\n",
		       __func__);
		hpsb_iso_recv_release_packets(iso, hpsb_iso_n_ready(iso));
	}
}