4 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 #include "pvrusb2-std.h"
18 #include "pvrusb2-debug.h"
19 #include <asm/string.h>
20 #include <linux/slab.h>
49 (V4L2_STD_ATSC_8_VSB| \
62 #define TSTD_B (V4L2_STD_PAL_B|V4L2_STD_SECAM_B)
63 #define TSTD_B1 (V4L2_STD_PAL_B1)
64 #define TSTD_D (V4L2_STD_PAL_D|V4L2_STD_SECAM_D)
65 #define TSTD_D1 (V4L2_STD_PAL_D1)
66 #define TSTD_G (V4L2_STD_PAL_G|V4L2_STD_SECAM_G)
67 #define TSTD_H (V4L2_STD_PAL_H|V4L2_STD_SECAM_H)
68 #define TSTD_I (V4L2_STD_PAL_I)
69 #define TSTD_K (V4L2_STD_PAL_K|V4L2_STD_SECAM_K)
70 #define TSTD_K1 (V4L2_STD_SECAM_K1)
71 #define TSTD_L (V4L2_STD_SECAM_L)
72 #define TSTD_M (V4L2_STD_PAL_M|V4L2_STD_NTSC_M)
73 #define TSTD_N (V4L2_STD_PAL_N)
74 #define TSTD_Nc (V4L2_STD_PAL_Nc)
75 #define TSTD_60 (V4L2_STD_PAL_60)
77 #define CSTD_ALL (CSTD_PAL|CSTD_NTSC|CSTD_ATSC|CSTD_SECAM)
79 /* Mapping of standard bits to color system */
80 static const struct std_name std_groups
[] = {
87 /* Mapping of standard bits to modulation system */
88 static const struct std_name std_items
[] = {
99 {"LC",V4L2_STD_SECAM_LC
},
101 {"Mj",V4L2_STD_NTSC_M_JP
},
102 {"443",V4L2_STD_NTSC_443
},
103 {"Mk",V4L2_STD_NTSC_M_KR
},
107 {"8VSB",V4L2_STD_ATSC_8_VSB
},
108 {"16VSB",V4L2_STD_ATSC_16_VSB
},
112 // Search an array of std_name structures and return a pointer to the
113 // element with the matching name.
114 static const struct std_name
*find_std_name(const struct std_name
*arrPtr
,
115 unsigned int arrSize
,
117 unsigned int bufSize
)
120 const struct std_name
*p
;
121 for (idx
= 0; idx
< arrSize
; idx
++) {
123 if (strlen(p
->name
) != bufSize
) continue;
124 if (!memcmp(bufPtr
,p
->name
,bufSize
)) return p
;
130 int pvr2_std_str_to_id(v4l2_std_id
*idPtr
,const char *bufPtr
,
131 unsigned int bufSize
)
134 v4l2_std_id cmsk
= 0;
139 const struct std_name
*sp
;
144 while ((cnt
< bufSize
) && (bufPtr
[cnt
] != '-')) cnt
++;
145 if (cnt
>= bufSize
) return 0; // No more characters
146 sp
= find_std_name(std_groups
, ARRAY_SIZE(std_groups
),
148 if (!sp
) return 0; // Illegal color system name
157 while (cnt
< bufSize
) {
163 if (ch
== '/') break;
166 sp
= find_std_name(std_items
, ARRAY_SIZE(std_items
),
168 if (!sp
) return 0; // Illegal modulation system ID
170 if (!t
) return 0; // Specific color + modulation system illegal
172 if (cnt
< bufSize
) cnt
++;
177 if (idPtr
) *idPtr
= id
;
182 unsigned int pvr2_std_id_to_str(char *bufPtr
, unsigned int bufSize
,
185 unsigned int idx1
,idx2
;
186 const struct std_name
*ip
,*gp
;
191 for (idx1
= 0; idx1
< ARRAY_SIZE(std_groups
); idx1
++) {
192 gp
= std_groups
+ idx1
;
194 for (idx2
= 0; idx2
< ARRAY_SIZE(std_items
); idx2
++) {
195 ip
= std_items
+ idx2
;
196 if (!(gp
->id
& ip
->id
& id
)) continue;
199 c2
= scnprintf(bufPtr
,bufSize
,";");
205 c2
= scnprintf(bufPtr
,bufSize
,
209 c2
= scnprintf(bufPtr
,bufSize
,"/");
214 c2
= scnprintf(bufPtr
,bufSize
,
225 // Template data for possible enumerated video standards. Here we group
226 // standards which share common frame rates and resolution.
227 static struct v4l2_standard generic_standards
[] = {
229 .id
= (TSTD_B
|TSTD_B1
|
244 .reserved
= {0,0,0,0}
255 .reserved
= {0,0,0,0}
256 }, { // This is a total wild guess
264 .reserved
= {0,0,0,0}
265 }, { // This is total wild guess
266 .id
= V4L2_STD_NTSC_443
,
273 .reserved
= {0,0,0,0}
277 static struct v4l2_standard
*match_std(v4l2_std_id id
)
280 for (idx
= 0; idx
< ARRAY_SIZE(generic_standards
); idx
++) {
281 if (generic_standards
[idx
].id
& id
) {
282 return generic_standards
+ idx
;
288 static int pvr2_std_fill(struct v4l2_standard
*std
,v4l2_std_id id
)
290 struct v4l2_standard
*template;
293 template = match_std(id
);
294 if (!template) return 0;
296 memcpy(std
,template,sizeof(*template));
299 bcnt
= pvr2_std_id_to_str(std
->name
,sizeof(std
->name
)-1,id
);
301 pvr2_trace(PVR2_TRACE_STD
,"Set up standard idx=%u name=%s",
302 std
->index
,std
->name
);
306 /* These are special cases of combined standards that we should enumerate
307 separately if the component pieces are present. */
308 static v4l2_std_id std_mixes
[] = {
309 V4L2_STD_PAL_B
| V4L2_STD_PAL_G
,
310 V4L2_STD_PAL_D
| V4L2_STD_PAL_K
,
311 V4L2_STD_SECAM_B
| V4L2_STD_SECAM_G
,
312 V4L2_STD_SECAM_D
| V4L2_STD_SECAM_K
,
315 struct v4l2_standard
*pvr2_std_create_enum(unsigned int *countptr
,
318 unsigned int std_cnt
= 0;
319 unsigned int idx
,bcnt
,idx2
;
320 v4l2_std_id idmsk
,cmsk
,fmsk
;
321 struct v4l2_standard
*stddefs
;
323 if (pvrusb2_debug
& PVR2_TRACE_STD
) {
325 bcnt
= pvr2_std_id_to_str(buf
,sizeof(buf
),id
);
327 PVR2_TRACE_STD
,"Mapping standards mask=0x%x (%.*s)",
334 for (idmsk
= 1, cmsk
= id
; cmsk
; idmsk
<<= 1) {
335 if (!(idmsk
& cmsk
)) continue;
337 if (match_std(idmsk
)) {
344 for (idx2
= 0; idx2
< ARRAY_SIZE(std_mixes
); idx2
++) {
345 if ((id
& std_mixes
[idx2
]) == std_mixes
[idx2
]) std_cnt
++;
348 /* Don't complain about ATSC standard values */
353 bcnt
= pvr2_std_id_to_str(buf
,sizeof(buf
),fmsk
);
355 PVR2_TRACE_ERROR_LEGS
,
356 "***WARNING*** Failed to classify the following standard(s): %.*s",
360 pvr2_trace(PVR2_TRACE_STD
,"Setting up %u unique standard(s)",
362 if (!std_cnt
) return NULL
; // paranoia
364 stddefs
= kcalloc(std_cnt
, sizeof(struct v4l2_standard
),
369 for (idx
= 0; idx
< std_cnt
; idx
++)
370 stddefs
[idx
].index
= idx
;
374 /* Enumerate potential special cases */
375 for (idx2
= 0; (idx2
< ARRAY_SIZE(std_mixes
)) && (idx
< std_cnt
);
377 if (!(id
& std_mixes
[idx2
])) continue;
378 if (pvr2_std_fill(stddefs
+idx
,std_mixes
[idx2
])) idx
++;
380 /* Now enumerate individual pieces */
381 for (idmsk
= 1, cmsk
= id
; cmsk
&& (idx
< std_cnt
); idmsk
<<= 1) {
382 if (!(idmsk
& cmsk
)) continue;
384 if (!pvr2_std_fill(stddefs
+idx
,idmsk
)) continue;
392 v4l2_std_id
pvr2_std_get_usable(void)