File: capture.c

package info (click to toggle)
libdc1394 2.2.6-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,080 kB
  • sloc: ansic: 17,304; sh: 11,542; makefile: 207
file content (468 lines) | stat: -rw-r--r-- 15,808 bytes parent folder | download | duplicates (5)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/*
 * 1394-Based Digital Camera Control Library
 *
 * Camera Capture Code for Linux
 *  
 * Written by
 *   Chris Urmson <curmson@ri.cmu.edu>
 *   Damien Douxchamps <ddouxchamps@users.sf.net>
 *   Dan Dennedy <ddennedy@users.sf.net>
 *   David Moore <dcm@acm.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <libraw1394/raw1394.h>
#include <libraw1394/csr.h>

#include "config.h"

#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#if HAVE_SYS_MMAN_H
#include <sys/mman.h>
#endif
#include <unistd.h>

#include "kernel-video1394.h"
#include "linux.h"
#include "internal.h"

/**********************/
/* Internal functions */
/**********************/


dc1394error_t
open_dma_device(platform_camera_t * craw)
{
    char filename[64];
    struct stat statbuf;

    // if the dma device file has been set manually, use that device name
    if (craw->capture.dma_device_file!=NULL) {
        if ( (craw->capture.dma_fd = open(craw->capture.dma_device_file,O_RDWR)) < 0 ) {
            return DC1394_INVALID_VIDEO1394_DEVICE;
        }
        else {
            return DC1394_SUCCESS;
        }
    }

    // automatic mode: try to open several usual device files.
    sprintf(filename,"/dev/video1394/%d",craw->port);
    if ( stat (filename, &statbuf) == 0 &&
         S_ISCHR (statbuf.st_mode) &&
         (craw->capture.dma_fd = open(filename,O_RDWR)) >= 0 ) {
        return DC1394_SUCCESS;
    }

    sprintf(filename,"/dev/video1394-%d",craw->port);
    if ( stat (filename, &statbuf) == 0 &&
         S_ISCHR (statbuf.st_mode) &&
         (craw->capture.dma_fd = open(filename,O_RDWR)) >= 0 ) {
        return DC1394_SUCCESS;
    }

    if (craw->port==0) {
        sprintf(filename,"/dev/video1394");
        if ( stat (filename, &statbuf) == 0 &&
             S_ISCHR (statbuf.st_mode) &&
             (craw->capture.dma_fd = open(filename,O_RDWR)) >= 0 ) {
            return DC1394_SUCCESS;
        }
    }

    return DC1394_FAILURE;
}

/*****************************************************
 capture_linux_setup

 This sets up the dma for the given camera.
 capture_basic_setup must be called before

******************************************************/
static dc1394error_t
capture_linux_setup(platform_camera_t * craw, uint32_t num_dma_buffers)
{
    struct video1394_mmap vmmap;
    struct video1394_wait vwait;
    uint32_t i;
    dc1394video_frame_t * f;

    memset(&vmmap, 0, sizeof(vmmap));
    memset(&vwait, 0, sizeof(vwait));

    if (open_dma_device(craw) != DC1394_SUCCESS) {
        dc1394_log_warning("Could not open video1394 device file in /dev");
        return DC1394_INVALID_VIDEO1394_DEVICE;
    }

    vmmap.sync_tag= 1;
    vmmap.nb_buffers= num_dma_buffers;
    vmmap.flags= VIDEO1394_SYNC_FRAMES;
    vmmap.buf_size= craw->capture.frames[0].total_bytes; //number of bytes needed
    vmmap.channel= craw->iso_channel;

    /* tell the video1394 system that we want to listen to the given channel */
    if (ioctl(craw->capture.dma_fd, VIDEO1394_IOC_LISTEN_CHANNEL, &vmmap) < 0) {
        dc1394_log_error("VIDEO1394_IOC_LISTEN_CHANNEL ioctl failed: %s", strerror(errno));
        close (craw->capture.dma_fd);
        return DC1394_IOCTL_FAILURE;
    }
    // starting from here we use the ISO channel so we set the flag in the camera struct:
    craw->capture_is_set=1;

    craw->capture.dma_frame_size= vmmap.buf_size;
    craw->capture.num_dma_buffers= vmmap.nb_buffers;
    craw->capture.dma_last_buffer= -1;
    vwait.channel= craw->iso_channel;

    /* QUEUE the buffers */
    for (i= 0; i < vmmap.nb_buffers; i++) {
        vwait.buffer= i;

        if (ioctl(craw->capture.dma_fd,VIDEO1394_IOC_LISTEN_QUEUE_BUFFER,&vwait) < 0) {
            dc1394_log_error("VIDEO1394_IOC_LISTEN_QUEUE_BUFFER ioctl failed");
            ioctl(craw->capture.dma_fd, VIDEO1394_IOC_UNLISTEN_CHANNEL, &(vwait.channel));
            craw->capture_is_set=0;
            close (craw->capture.dma_fd);
            return DC1394_IOCTL_FAILURE;
        }

    }

    craw->capture.dma_ring_buffer= mmap(0, vmmap.nb_buffers * vmmap.buf_size,
                                        PROT_READ|PROT_WRITE,MAP_SHARED, craw->capture.dma_fd, 0);

    /* make sure the ring buffer was allocated */
    if (craw->capture.dma_ring_buffer == (uint8_t*)(-1)) {
        dc1394_log_error("mmap failed!");
        ioctl(craw->capture.dma_fd, VIDEO1394_IOC_UNLISTEN_CHANNEL, &vmmap.channel);
        craw->capture_is_set=0;
        close (craw->capture.dma_fd);

        // This should be display if the user has low memory
        if (vmmap.nb_buffers * vmmap.buf_size > sysconf (_SC_PAGESIZE) * sysconf (_SC_AVPHYS_PAGES)) {
            dc1394_log_error("Unable to allocate DMA buffer.\nThe requested size (0x%ux or %ud MiB) is bigger than the available memory (0x%lux or %lud MiB).\nPlease free some memory before allocating the buffers",
			     vmmap.nb_buffers * vmmap.buf_size,
			     vmmap.nb_buffers * vmmap.buf_size/1048576,
			     sysconf (_SC_PAGESIZE) * sysconf (_SC_AVPHYS_PAGES),
			     sysconf (_SC_PAGESIZE) * sysconf (_SC_AVPHYS_PAGES)/1048576);
        } else {
            // if it's not low memory, then it's the vmalloc limit.
            // VMALLOC_RESERVED not sufficient (default is 128MiB in recent kernels)
            dc1394_log_error("Unable to allocate DMA buffer. The requested size (0x%x) may be larger than the usual default VMALLOC_RESERVED limit of 128MiB. To verify this, look for the following line in dmesg:\n'allocation failed: out of vmalloc space'\nIf you see this, reboot with the kernel boot parameter:\n'vmalloc=k'\nwhere k (in bytes) is larger than your requested DMA ring buffer size.\nNote that other processes share the vmalloc space so you may need a\nlarge amount of vmalloc memory.", vmmap.nb_buffers * vmmap.buf_size);
            //}
        }
        return DC1394_IOCTL_FAILURE;
    }

    craw->capture.dma_buffer_size= vmmap.buf_size * vmmap.nb_buffers;

    for (i = 0; i < num_dma_buffers; i++) {
        f = craw->capture.frames + i;
        if (i > 0)
            memcpy (f, craw->capture.frames, sizeof (dc1394video_frame_t));
        f->image = (unsigned char *)(craw->capture.dma_ring_buffer +
                                     i * craw->capture.dma_frame_size);
        f->id = i;
    }

    return DC1394_SUCCESS;
}


/* This function allows you to specify the DMA device filename manually. */
dc1394error_t
dc1394_capture_set_device_filename(dc1394camera_t* camera, char *filename)
{
    dc1394camera_priv_t * cpriv = DC1394_CAMERA_PRIV (camera);
    platform_camera_t * craw = cpriv->pcam;
    if (craw->capture.dma_device_file==NULL) {
        craw->capture.dma_device_file=(char*)malloc(64*sizeof(char));
        if (craw->capture.dma_device_file==NULL)
            return DC1394_MEMORY_ALLOCATION_FAILURE;
    }
    // note that the device filename is limited to 64 characters.
    memcpy(craw->capture.dma_device_file,filename,64*sizeof(char));

    return DC1394_SUCCESS;
}

dc1394error_t
dc1394_linux_capture_setup(platform_camera_t *craw, uint32_t num_dma_buffers,
                     uint32_t flags)
{
    dc1394camera_t * camera = craw->camera;
    dc1394error_t err;

    if (flags & DC1394_CAPTURE_FLAGS_DEFAULT)
        flags = DC1394_CAPTURE_FLAGS_CHANNEL_ALLOC |
            DC1394_CAPTURE_FLAGS_BANDWIDTH_ALLOC;

    // if capture is already set, abort
    if (craw->capture_is_set>0)
        return DC1394_CAPTURE_IS_RUNNING;

    craw->capture.flags=flags;
    craw->allocated_channel = -1;

    // if auto iso is requested, stop ISO (if necessary)
    if (flags & DC1394_CAPTURE_FLAGS_AUTO_ISO) {
        dc1394switch_t is_iso_on;
        dc1394_video_get_transmission(camera, &is_iso_on);
        if (is_iso_on == DC1394_ON) {
            err=dc1394_video_set_transmission(camera, DC1394_OFF);
            DC1394_ERR_RTN(err,"Could not stop ISO!");
        }
    }

    // allocate channel/bandwidth if requested
    if (flags & DC1394_CAPTURE_FLAGS_CHANNEL_ALLOC) {
        if (dc1394_iso_allocate_channel (camera, 0, &craw->allocated_channel)
            != DC1394_SUCCESS)
            goto fail;
        if (dc1394_video_set_iso_channel (camera, craw->allocated_channel)
            != DC1394_SUCCESS)
            goto fail;
    }
    if (flags & DC1394_CAPTURE_FLAGS_BANDWIDTH_ALLOC) {
        unsigned int bandwidth_usage;
        if (dc1394_video_get_bandwidth_usage (camera, &bandwidth_usage)
            != DC1394_SUCCESS)
            goto fail;
        if (dc1394_iso_allocate_bandwidth (camera, bandwidth_usage)
            != DC1394_SUCCESS)
            goto fail;
        craw->allocated_bandwidth = bandwidth_usage;
    }

    craw->capture.frames = malloc (num_dma_buffers * sizeof (dc1394video_frame_t));

    err=capture_basic_setup(camera, craw->capture.frames);
    if (err != DC1394_SUCCESS)
        goto fail;

    if (dc1394_video_get_iso_channel (camera, &craw->iso_channel)
        != DC1394_SUCCESS)
        goto fail;

    // the capture_is_set flag is set inside this function:
    err=capture_linux_setup (craw, num_dma_buffers);
    if (err != DC1394_SUCCESS)
        goto fail;

    // if auto iso is requested, start ISO
    if (flags & DC1394_CAPTURE_FLAGS_AUTO_ISO) {
        err=dc1394_video_set_transmission(camera, DC1394_ON);
        DC1394_ERR_RTN(err,"Could not start ISO!");
        craw->iso_auto_started=1;
    }

    return DC1394_SUCCESS;

 fail:
    // free resources if they were allocated
    if (craw->allocated_channel >= 0) {
        if (dc1394_iso_release_channel (camera, craw->allocated_channel)
            != DC1394_SUCCESS)
            dc1394_log_warning("Warning: Could not free ISO channel");
    }
    if (craw->allocated_bandwidth) {
        if (dc1394_iso_release_bandwidth (camera, craw->allocated_bandwidth)
            != DC1394_SUCCESS)
            dc1394_log_warning("Warning: Could not free bandwidth");
    }
    craw->allocated_channel = -1;
    craw->allocated_bandwidth = 0;

    free (craw->capture.frames);
    craw->capture.frames = NULL;
    dc1394_log_error ("Error: Failed to setup DMA capture");

    return DC1394_FAILURE;
}

/*****************************************************
 CAPTURE_STOP
*****************************************************/

dc1394error_t
dc1394_linux_capture_stop(platform_camera_t *craw)
{
    dc1394camera_t * camera = craw->camera;
    int err;

    if (craw->capture_is_set>0) {
        // unlisten
        if (ioctl(craw->capture.dma_fd, VIDEO1394_IOC_UNLISTEN_CHANNEL,
                    &(craw->iso_channel)) < 0)
            return DC1394_IOCTL_FAILURE;

        // release
        if (craw->capture.dma_ring_buffer) {
            munmap((void*)craw->capture.dma_ring_buffer,craw->capture.dma_buffer_size);
        }


        while (close(craw->capture.dma_fd) != 0) {
            dc1394_log_debug("waiting for dma_fd to close");
            sleep (1);
        }
        craw->capture.dma_fd = -1;

        free (craw->capture.frames);
        craw->capture.frames = NULL;

        // this dma_device file is allocated by the strdup() function and can be freed here without problems.
        free(craw->capture.dma_device_file);
        craw->capture.dma_device_file=NULL;

        // capture is not set anymore
        craw->capture_is_set=0;

        // free ressources if they were allocated
        if (craw->allocated_channel >= 0) {
            if (dc1394_iso_release_channel (camera, craw->allocated_channel)
                    != DC1394_SUCCESS)
                dc1394_log_warning("Warning: Could not free ISO channel");
        }
        if (craw->allocated_bandwidth) {
            if (dc1394_iso_release_bandwidth (camera, craw->allocated_bandwidth)
                    != DC1394_SUCCESS)
                dc1394_log_warning("Warning: Could not free bandwidth");
        }
        craw->allocated_channel = -1;
        craw->allocated_bandwidth = 0;

        // stop ISO if it was started automatically
        if (craw->iso_auto_started>0) {
            err=dc1394_video_set_transmission(camera, DC1394_OFF);
            DC1394_ERR_RTN(err,"Could not stop ISO!");
            craw->iso_auto_started=0;
        }

        // free the additional capture handle
        raw1394_destroy_handle(craw->capture.handle);
    }
    else {
        return DC1394_CAPTURE_IS_NOT_SET;
    }

    return DC1394_SUCCESS;
}


dc1394error_t
dc1394_linux_capture_dequeue (platform_camera_t * craw,
                        dc1394capture_policy_t policy,
                        dc1394video_frame_t **frame)
{
    dc1394capture_t * capture = &(craw->capture);
    struct video1394_wait vwait;
    dc1394video_frame_t * frame_tmp;
    int cb;
    int result=-1;

	if(craw->capture.frames==NULL || craw->capture_is_set==0) {
		*frame=NULL;
		return DC1394_CAPTURE_IS_NOT_SET;
	}

    if ( (policy<DC1394_CAPTURE_POLICY_MIN) || (policy>DC1394_CAPTURE_POLICY_MAX) )
        return DC1394_INVALID_CAPTURE_POLICY;

    // default: return NULL in case of failures or lack of frames
    *frame=NULL;

    memset(&vwait, 0, sizeof(vwait));

    cb = (capture->dma_last_buffer + 1) % capture->num_dma_buffers;
    frame_tmp = capture->frames + cb;

    vwait.channel = craw->iso_channel;
    vwait.buffer = cb;
    switch (policy) {
    case DC1394_CAPTURE_POLICY_POLL:
        result=ioctl(capture->dma_fd, VIDEO1394_IOC_LISTEN_POLL_BUFFER, &vwait);
        break;
    case DC1394_CAPTURE_POLICY_WAIT:
    default:
        while (1) {
            result=ioctl(capture->dma_fd, VIDEO1394_IOC_LISTEN_WAIT_BUFFER,
                    &vwait);
            if (result == 0 || errno != EINTR)
                break;
        }
        break;
    }
    if ( result != 0) {
        if ((policy==DC1394_CAPTURE_POLICY_POLL) && (errno == EINTR)) {
            // when no frames is present, just return
            return DC1394_SUCCESS;
        }
        else {
            dc1394_log_error("VIDEO1394_IOC_LISTEN_WAIT/POLL_BUFFER ioctl failed!");
            return DC1394_IOCTL_FAILURE;
        }
    }

    capture->dma_last_buffer = cb;

    frame_tmp->frames_behind = vwait.buffer;
    frame_tmp->timestamp = (uint64_t) vwait.filltime.tv_sec * 1000000 + vwait.filltime.tv_usec;

    *frame=frame_tmp;

    return DC1394_SUCCESS;
}

dc1394error_t
dc1394_linux_capture_enqueue (platform_camera_t * craw,
                        dc1394video_frame_t * frame)
{
    dc1394camera_t * camera = craw->camera;
    struct video1394_wait vwait;

    memset(&vwait, 0, sizeof(vwait));

    if (frame->camera != camera) {
        dc1394_log_error("camera does not match frame's camera");
        return DC1394_INVALID_ARGUMENT_VALUE;
    }

    vwait.channel = craw->iso_channel;
    vwait.buffer = frame->id;

    if (ioctl(craw->capture.dma_fd, VIDEO1394_IOC_LISTEN_QUEUE_BUFFER, &vwait) < 0)  {
        dc1394_log_error("VIDEO1394_IOC_LISTEN_QUEUE_BUFFER ioctl failed!");
        return DC1394_IOCTL_FAILURE;
    }

    return DC1394_SUCCESS;
}

int
dc1394_linux_capture_get_fileno (platform_camera_t * craw)
{
    return craw->capture.dma_fd;
}