summaryrefslogtreecommitdiffstats
path: root/share/examples/meteor/test-n.c
blob: 22889574c90d16ce7ecc3eec6774986eed591973 (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
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
/* A simple program to test the communication between the matrox meteor
 * driver and an user application in the continous sync capture mode.
 * 
 * First the driver clears the mask and decrements the counter like it
 * would in a normal application. Then it purpose does not handle these
 * responsibilities to simulate an application falling behind. I use
 * the HUP signal to work as if the some of the  buffers were removed
 * (the second couter is used to cleared the correct bits.
 *
 *	build kernel with at least:
 *
 *		options "METEOR_ALLOC_PAGES=301"  
 *
 */
/* Copyright (c) 1995 Mark Tinguely and Jim Lowe 
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *      This product includes software developed by Mark Tinguely and Jim Lowe
 * 4. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");

#include <sys/types.h>
#include <sys/mman.h>
#include <sys/fcntl.h>
#include <dev/bktr/ioctl_meteor.h>

typedef unsigned char uint8;
typedef signed char int8;

int i;
static uint8 *y;
extern int errno;
struct meteor_mem *common_mem;
int sig_cnt;
int sig_cnt2;

void
hup_catcher()
{
	/* clear 4 oldest active bits */
	common_mem->active &= ~(1 << (sig_cnt2++ % 32));
	common_mem->active &= ~(1 << (sig_cnt2++ % 32));
	common_mem->active &= ~(1 << (sig_cnt2++ % 32));
	common_mem->active &= ~(1 << (sig_cnt2++ % 32));
	/* lowat is low enough that I will need 2 hups to start saving again */
	common_mem->num_active_bufs -= 4;
	puts("hup caught");
}

void
usr2_catcher()
{
	int j;
	struct meteor_capframe capframe;

	printf("active %3d = %08x ", sig_cnt,common_mem->active);
	printf("# act  %3d = %d\n", sig_cnt, common_mem->num_active_bufs);

	if (sig_cnt < 80) {
		common_mem->active &= ~(1 << (sig_cnt % 32));
		common_mem->num_active_bufs--; 
		sig_cnt2++;
	}

	printf("data %08x\n", *((u_long *) (y + (sig_cnt % 32) *
						common_mem->frame_size)));
	if (++sig_cnt >= 200) {
		capframe.command=METEOR_CAP_STOP_FRAMES;

		if (ioctl(i, METEORCAPFRM, &capframe) < 0) {
			printf("METEORCAPFRM failed %d\n", errno);
			exit(1);
		}
		exit (0);
	}
}

main()
{
	struct meteor_geomet geo;
	int height, width, depth, frames, size;
	struct meteor_capframe capframe;

	if ((i = open("/dev/meteor", O_RDONLY)) < 0) {
		printf("open failed\n");
		exit(1);
	}
	printf("test %d %d\n", errno, i);

        height = geo.rows = 120;
        width= geo.columns = 160;
        frames = geo.frames = 32;
	depth = 2;			/* 2 bytes per pixel */

	printf("ioctl %d %d\n", errno, i);

        geo.oformat = METEOR_GEO_RGB16;

        if (ioctl(i, METEORSETGEO, &geo) < 0) {
		printf("METEORSETGEO failed %d\n", errno);
		exit(1);
	}

	printf("mmap %d %d\n", errno, i);
	size = ((width*height*depth*frames+4095)/4096)*4096;
        y=(uint8 *) mmap((caddr_t)0, size + 4096, PROT_READ |PROT_WRITE,MAP_SHARED, i, (off_t)0);

	if (y == (uint8 *) MAP_FAILED) return (0);

	common_mem = (struct meteor_mem *) (y + size);

	signal(1, hup_catcher);
	signal(31, usr2_catcher);

	capframe.command=METEOR_CAP_N_FRAMES;
	capframe.signal=31;
	capframe.lowat=25;
	capframe.hiwat=30;

	printf("ioctl %d %d\n", errno, i);
        if (ioctl(i, METEORCAPFRM, &capframe) < 0) {
		printf("METEORCAPFRM failed %d\n", errno);
		exit(1);
	}

	printf("signal = %d\n", common_mem->signal);
	printf("frame size = %d\n", common_mem->frame_size);
	printf("buffers = %d\n", common_mem->num_bufs);
	printf("hiwater = %d\n", common_mem->hiwat);
	printf("lowater = %d\n", common_mem->lowat);
	printf("active = %08x\n", common_mem->active);
	printf("# active = %d\n", common_mem->num_active_bufs);
  
	printf("sleep loop\n", errno, i);
	while (1) {
		sleep (60);
	}
}
OpenPOWER on IntegriCloud