3 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
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 of the License
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include "pvrusb2-context.h"
21 #include "pvrusb2-io.h"
22 #include "pvrusb2-ioread.h"
23 #include "pvrusb2-hdw.h"
24 #include "pvrusb2-debug.h"
25 #include <linux/wait.h>
26 #include <linux/kthread.h>
27 #include <linux/errno.h>
28 #include <linux/string.h>
29 #include <linux/slab.h>
31 static struct pvr2_context *pvr2_context_exist_first;
32 static struct pvr2_context *pvr2_context_exist_last;
33 static struct pvr2_context *pvr2_context_notify_first;
34 static struct pvr2_context *pvr2_context_notify_last;
35 static DEFINE_MUTEX(pvr2_context_mutex);
36 static DECLARE_WAIT_QUEUE_HEAD(pvr2_context_sync_data);
37 static DECLARE_WAIT_QUEUE_HEAD(pvr2_context_cleanup_data);
38 static int pvr2_context_cleanup_flag;
39 static int pvr2_context_cleaned_flag;
40 static struct task_struct *pvr2_context_thread_ptr;
43 static void pvr2_context_set_notify(struct pvr2_context *mp, int fl)
46 mutex_lock(&pvr2_context_mutex);
48 if (!mp->notify_flag) {
49 signal_flag = (pvr2_context_notify_first == NULL);
50 mp->notify_prev = pvr2_context_notify_last;
51 mp->notify_next = NULL;
52 pvr2_context_notify_last = mp;
53 if (mp->notify_prev) {
54 mp->notify_prev->notify_next = mp;
56 pvr2_context_notify_first = mp;
61 if (mp->notify_flag) {
63 if (mp->notify_next) {
64 mp->notify_next->notify_prev = mp->notify_prev;
66 pvr2_context_notify_last = mp->notify_prev;
68 if (mp->notify_prev) {
69 mp->notify_prev->notify_next = mp->notify_next;
71 pvr2_context_notify_first = mp->notify_next;
75 mutex_unlock(&pvr2_context_mutex);
76 if (signal_flag) wake_up(&pvr2_context_sync_data);
80 static void pvr2_context_destroy(struct pvr2_context *mp)
82 pvr2_trace(PVR2_TRACE_CTXT,"pvr2_context %p (destroy)",mp);
83 if (mp->hdw) pvr2_hdw_destroy(mp->hdw);
84 pvr2_context_set_notify(mp, 0);
85 mutex_lock(&pvr2_context_mutex);
87 mp->exist_next->exist_prev = mp->exist_prev;
89 pvr2_context_exist_last = mp->exist_prev;
92 mp->exist_prev->exist_next = mp->exist_next;
94 pvr2_context_exist_first = mp->exist_next;
96 if (!pvr2_context_exist_first) {
97 /* Trigger wakeup on control thread in case it is waiting
98 for an exit condition. */
99 wake_up(&pvr2_context_sync_data);
101 mutex_unlock(&pvr2_context_mutex);
106 static void pvr2_context_notify(struct pvr2_context *mp)
108 pvr2_context_set_notify(mp,!0);
112 static void pvr2_context_check(struct pvr2_context *mp)
114 struct pvr2_channel *ch1, *ch2;
115 pvr2_trace(PVR2_TRACE_CTXT,
116 "pvr2_context %p (notify)", mp);
117 if (!mp->initialized_flag && !mp->disconnect_flag) {
118 mp->initialized_flag = !0;
119 pvr2_trace(PVR2_TRACE_CTXT,
120 "pvr2_context %p (initialize)", mp);
121 /* Finish hardware initialization */
122 if (pvr2_hdw_initialize(mp->hdw,
123 (void (*)(void *))pvr2_context_notify,
125 mp->video_stream.stream =
126 pvr2_hdw_get_video_stream(mp->hdw);
127 /* Trigger interface initialization. By doing this
128 here initialization runs in our own safe and
129 cozy thread context. */
130 if (mp->setup_func) mp->setup_func(mp);
132 pvr2_trace(PVR2_TRACE_CTXT,
133 "pvr2_context %p (thread skipping setup)",
135 /* Even though initialization did not succeed,
136 we're still going to continue anyway. We need
137 to do this in order to await the expected
138 disconnect (which we will detect in the normal
139 course of operation). */
143 for (ch1 = mp->mc_first; ch1; ch1 = ch2) {
145 if (ch1->check_func) ch1->check_func(ch1);
148 if (mp->disconnect_flag && !mp->mc_first) {
150 pvr2_context_destroy(mp);
156 static int pvr2_context_shutok(void)
158 return pvr2_context_cleanup_flag && (pvr2_context_exist_first == NULL);
162 static int pvr2_context_thread_func(void *foo)
164 struct pvr2_context *mp;
166 pvr2_trace(PVR2_TRACE_CTXT,"pvr2_context thread start");
169 while ((mp = pvr2_context_notify_first) != NULL) {
170 pvr2_context_set_notify(mp, 0);
171 pvr2_context_check(mp);
173 wait_event_interruptible(
174 pvr2_context_sync_data,
175 ((pvr2_context_notify_first != NULL) ||
176 pvr2_context_shutok()));
177 } while (!pvr2_context_shutok());
179 pvr2_context_cleaned_flag = !0;
180 wake_up(&pvr2_context_cleanup_data);
182 pvr2_trace(PVR2_TRACE_CTXT,"pvr2_context thread cleaned up");
184 wait_event_interruptible(
185 pvr2_context_sync_data,
186 kthread_should_stop());
188 pvr2_trace(PVR2_TRACE_CTXT,"pvr2_context thread end");
194 int pvr2_context_global_init(void)
196 pvr2_context_thread_ptr = kthread_run(pvr2_context_thread_func,
199 return (pvr2_context_thread_ptr ? 0 : -ENOMEM);
203 void pvr2_context_global_done(void)
205 pvr2_context_cleanup_flag = !0;
206 wake_up(&pvr2_context_sync_data);
207 wait_event_interruptible(
208 pvr2_context_cleanup_data,
209 pvr2_context_cleaned_flag);
210 kthread_stop(pvr2_context_thread_ptr);
214 struct pvr2_context *pvr2_context_create(
215 struct usb_interface *intf,
216 const struct usb_device_id *devid,
217 void (*setup_func)(struct pvr2_context *))
219 struct pvr2_context *mp = NULL;
220 mp = kzalloc(sizeof(*mp),GFP_KERNEL);
222 pvr2_trace(PVR2_TRACE_CTXT,"pvr2_context %p (create)",mp);
223 mp->setup_func = setup_func;
224 mutex_init(&mp->mutex);
225 mutex_lock(&pvr2_context_mutex);
226 mp->exist_prev = pvr2_context_exist_last;
227 mp->exist_next = NULL;
228 pvr2_context_exist_last = mp;
229 if (mp->exist_prev) {
230 mp->exist_prev->exist_next = mp;
232 pvr2_context_exist_first = mp;
234 mutex_unlock(&pvr2_context_mutex);
235 mp->hdw = pvr2_hdw_create(intf,devid);
237 pvr2_context_destroy(mp);
241 pvr2_context_set_notify(mp, !0);
247 static void pvr2_context_reset_input_limits(struct pvr2_context *mp)
249 unsigned int tmsk,mmsk;
250 struct pvr2_channel *cp;
251 struct pvr2_hdw *hdw = mp->hdw;
252 mmsk = pvr2_hdw_get_input_available(hdw);
254 for (cp = mp->mc_first; cp; cp = cp->mc_next) {
255 if (!cp->input_mask) continue;
256 tmsk &= cp->input_mask;
258 pvr2_hdw_set_input_allowed(hdw,mmsk,tmsk);
259 pvr2_hdw_commit_ctl(hdw);
263 static void pvr2_context_enter(struct pvr2_context *mp)
265 mutex_lock(&mp->mutex);
269 static void pvr2_context_exit(struct pvr2_context *mp)
271 int destroy_flag = 0;
272 if (!(mp->mc_first || !mp->disconnect_flag)) {
275 mutex_unlock(&mp->mutex);
276 if (destroy_flag) pvr2_context_notify(mp);
280 void pvr2_context_disconnect(struct pvr2_context *mp)
282 pvr2_hdw_disconnect(mp->hdw);
283 mp->disconnect_flag = !0;
284 pvr2_context_notify(mp);
288 void pvr2_channel_init(struct pvr2_channel *cp,struct pvr2_context *mp)
290 pvr2_context_enter(mp);
294 cp->mc_prev = mp->mc_last;
296 mp->mc_last->mc_next = cp;
301 pvr2_context_exit(mp);
305 static void pvr2_channel_disclaim_stream(struct pvr2_channel *cp)
307 if (!cp->stream) return;
308 pvr2_stream_kill(cp->stream->stream);
309 cp->stream->user = NULL;
314 void pvr2_channel_done(struct pvr2_channel *cp)
316 struct pvr2_context *mp = cp->mc_head;
317 pvr2_context_enter(mp);
319 pvr2_channel_disclaim_stream(cp);
320 pvr2_context_reset_input_limits(mp);
322 cp->mc_next->mc_prev = cp->mc_prev;
324 mp->mc_last = cp->mc_prev;
327 cp->mc_prev->mc_next = cp->mc_next;
329 mp->mc_first = cp->mc_next;
332 pvr2_context_exit(mp);
336 int pvr2_channel_limit_inputs(struct pvr2_channel *cp,unsigned int cmsk)
338 unsigned int tmsk,mmsk;
340 struct pvr2_channel *p2;
341 struct pvr2_hdw *hdw = cp->hdw;
343 mmsk = pvr2_hdw_get_input_available(hdw);
345 if (cmsk == cp->input_mask) {
346 /* No change; nothing to do */
350 pvr2_context_enter(cp->mc_head);
354 pvr2_context_reset_input_limits(cp->mc_head);
358 for (p2 = cp->mc_head->mc_first; p2; p2 = p2->mc_next) {
359 if (p2 == cp) continue;
360 if (!p2->input_mask) continue;
361 tmsk &= p2->input_mask;
363 if (!(tmsk & cmsk)) {
368 if ((ret = pvr2_hdw_set_input_allowed(hdw,mmsk,tmsk)) != 0) {
369 /* Internal failure changing allowed list; probably
370 should not happen, but react if it does. */
373 cp->input_mask = cmsk;
374 pvr2_hdw_commit_ctl(hdw);
376 pvr2_context_exit(cp->mc_head);
381 unsigned int pvr2_channel_get_limited_inputs(struct pvr2_channel *cp)
383 return cp->input_mask;
387 int pvr2_channel_claim_stream(struct pvr2_channel *cp,
388 struct pvr2_context_stream *sp)
391 pvr2_context_enter(cp->mc_head); do {
392 if (sp == cp->stream) break;
393 if (sp && sp->user) {
397 pvr2_channel_disclaim_stream(cp);
401 } while (0); pvr2_context_exit(cp->mc_head);
406 // This is the marker for the real beginning of a legitimate mpeg2 stream.
407 static char stream_sync_key[] = {
408 0x00, 0x00, 0x01, 0xba,
411 struct pvr2_ioread *pvr2_channel_create_mpeg_stream(
412 struct pvr2_context_stream *sp)
414 struct pvr2_ioread *cp;
415 cp = pvr2_ioread_create();
416 if (!cp) return NULL;
417 pvr2_ioread_setup(cp,sp->stream);
418 pvr2_ioread_set_sync_key(cp,stream_sync_key,sizeof(stream_sync_key));
424 Stuff for Emacs to see, in order to encourage consistent editing style:
425 *** Local Variables: ***
427 *** fill-column: 75 ***
429 *** c-basic-offset: 8 ***