1 // SPDX-License-Identifier: GPL-2.0-or-later
3 hexium_orion.c - v4l2 driver for the Hexium Orion frame grabber cards
5 Visit http://www.mihu.de/linux/saa7146/ and follow the link
6 to "hexium" for further details about this card.
8 Copyright (C) 2003 Michael Hunold <michael@mihu.de>
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #define DEBUG_VARIABLE debug
16 #include <media/drv-intf/saa7146_vv.h>
17 #include <linux/module.h>
18 #include <linux/kernel.h>
21 module_param(debug
, int, 0);
22 MODULE_PARM_DESC(debug
, "debug verbosity");
24 /* global variables */
25 static int hexium_num
;
27 #define HEXIUM_HV_PCI6_ORION 1
28 #define HEXIUM_ORION_1SVHS_3BNC 2
29 #define HEXIUM_ORION_4BNC 3
31 #define HEXIUM_STD (V4L2_STD_PAL | V4L2_STD_SECAM | V4L2_STD_NTSC)
32 #define HEXIUM_INPUTS 9
33 static struct v4l2_input hexium_inputs
[HEXIUM_INPUTS
] = {
34 { 0, "CVBS 1", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
35 { 1, "CVBS 2", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
36 { 2, "CVBS 3", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
37 { 3, "CVBS 4", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
38 { 4, "CVBS 5", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
39 { 5, "CVBS 6", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
40 { 6, "Y/C 1", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
41 { 7, "Y/C 2", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
42 { 8, "Y/C 3", V4L2_INPUT_TYPE_CAMERA
, 0, 0, HEXIUM_STD
, 0, V4L2_IN_CAP_STD
},
45 #define HEXIUM_AUDIOS 0
56 struct video_device video_dev
;
57 struct i2c_adapter i2c_adapter
;
59 int cur_input
; /* current input */
62 /* Philips SAA7110 decoder default registers */
63 static u8 hexium_saa7110
[53]={
64 /*00*/ 0x4C,0x3C,0x0D,0xEF,0xBD,0xF0,0x00,0x00,
65 /*08*/ 0xF8,0xF8,0x60,0x60,0x40,0x86,0x18,0x90,
66 /*10*/ 0x00,0x2C,0x40,0x46,0x42,0x1A,0xFF,0xDA,
67 /*18*/ 0xF0,0x8B,0x00,0x00,0x00,0x00,0x00,0x00,
68 /*20*/ 0xD9,0x17,0x40,0x41,0x80,0x41,0x80,0x4F,
69 /*28*/ 0xFE,0x01,0x0F,0x0F,0x03,0x01,0x81,0x03,
70 /*30*/ 0x44,0x75,0x01,0x8C,0x03
74 struct hexium_data data
[8];
75 } hexium_input_select
[] = {
80 { 0x21, 0x17 }, // 0x16,
85 { 0x21, 0x16 }, // 0x03,
91 { 0x21, 0x07 }, // 0x03,
102 { 0x21, 0x07 }, // 0x05,
106 { 0x31, 0xB5 }, // ??
107 { 0x21, 0x05 }, // 0x03,
113 { 0x21, 0x17 }, // 0x16,
117 { 0x31, 0x75 }, // ??
118 { 0x21, 0x16 }, // 0x03,
124 { 0x21, 0x07 }, // 0x05,
128 { 0x31, 0xB5 }, // ??
129 { 0x21, 0x05 }, // 0x03,
135 { 0x21, 0x07 }, // 0x03
139 { 0x31, 0xB5 }, // ??
178 static struct saa7146_standard hexium_standards
[] = {
180 .name
= "PAL", .id
= V4L2_STD_PAL
,
181 .v_offset
= 16, .v_field
= 288,
182 .h_offset
= 1, .h_pixels
= 680,
183 .v_max_out
= 576, .h_max_out
= 768,
185 .name
= "NTSC", .id
= V4L2_STD_NTSC
,
186 .v_offset
= 16, .v_field
= 240,
187 .h_offset
= 1, .h_pixels
= 640,
188 .v_max_out
= 480, .h_max_out
= 640,
190 .name
= "SECAM", .id
= V4L2_STD_SECAM
,
191 .v_offset
= 16, .v_field
= 288,
192 .h_offset
= 1, .h_pixels
= 720,
193 .v_max_out
= 576, .h_max_out
= 768,
197 /* this is only called for old HV-PCI6/Orion cards
199 static int hexium_probe(struct saa7146_dev
*dev
)
201 struct hexium
*hexium
= NULL
;
202 union i2c_smbus_data data
;
207 /* there are no hexium orion cards with revision 0 saa7146s */
208 if (0 == dev
->revision
) {
212 hexium
= kzalloc(sizeof(*hexium
), GFP_KERNEL
);
216 /* enable i2c-port pins */
217 saa7146_write(dev
, MC1
, (MASK_08
| MASK_24
| MASK_10
| MASK_26
));
219 saa7146_write(dev
, DD1_INIT
, 0x01000100);
220 saa7146_write(dev
, DD1_STREAM_B
, 0x00000000);
221 saa7146_write(dev
, MC2
, (MASK_09
| MASK_25
| MASK_10
| MASK_26
));
223 strscpy(hexium
->i2c_adapter
.name
, "hexium orion",
224 sizeof(hexium
->i2c_adapter
.name
));
225 saa7146_i2c_adapter_prepare(dev
, &hexium
->i2c_adapter
, SAA7146_I2C_BUS_BIT_RATE_480
);
226 if (i2c_add_adapter(&hexium
->i2c_adapter
) < 0) {
227 DEB_S("cannot register i2c-device. skipping.\n");
232 /* set SAA7110 control GPIO 0 */
233 saa7146_setgpio(dev
, 0, SAA7146_GPIO_OUTHI
);
234 /* set HWControl GPIO number 2 */
235 saa7146_setgpio(dev
, 2, SAA7146_GPIO_OUTHI
);
239 /* detect newer Hexium Orion cards by subsystem ids */
240 if (0x17c8 == dev
->pci
->subsystem_vendor
&& 0x0101 == dev
->pci
->subsystem_device
) {
241 pr_info("device is a Hexium Orion w/ 1 SVHS + 3 BNC inputs\n");
242 /* we store the pointer in our private data field */
243 dev
->ext_priv
= hexium
;
244 hexium
->type
= HEXIUM_ORION_1SVHS_3BNC
;
248 if (0x17c8 == dev
->pci
->subsystem_vendor
&& 0x2101 == dev
->pci
->subsystem_device
) {
249 pr_info("device is a Hexium Orion w/ 4 BNC inputs\n");
250 /* we store the pointer in our private data field */
251 dev
->ext_priv
= hexium
;
252 hexium
->type
= HEXIUM_ORION_4BNC
;
256 /* check if this is an old hexium Orion card by looking at
257 a saa7110 at address 0x4e */
258 err
= i2c_smbus_xfer(&hexium
->i2c_adapter
, 0x4e, 0, I2C_SMBUS_READ
,
259 0x00, I2C_SMBUS_BYTE_DATA
, &data
);
261 pr_info("device is a Hexium HV-PCI6/Orion (old)\n");
262 /* we store the pointer in our private data field */
263 dev
->ext_priv
= hexium
;
264 hexium
->type
= HEXIUM_HV_PCI6_ORION
;
268 i2c_del_adapter(&hexium
->i2c_adapter
);
273 /* bring hardware to a sane state. this has to be done, just in case someone
274 wants to capture from this device before it has been properly initialized.
275 the capture engine would badly fail, because no valid signal arrives on the
276 saa7146, thus leading to timeouts and stuff. */
277 static int hexium_init_done(struct saa7146_dev
*dev
)
279 struct hexium
*hexium
= (struct hexium
*) dev
->ext_priv
;
280 union i2c_smbus_data data
;
283 DEB_D("hexium_init_done called\n");
285 /* initialize the helper ics to useful values */
286 for (i
= 0; i
< sizeof(hexium_saa7110
); i
++) {
287 data
.byte
= hexium_saa7110
[i
];
288 if (0 != i2c_smbus_xfer(&hexium
->i2c_adapter
, 0x4e, 0, I2C_SMBUS_WRITE
, i
, I2C_SMBUS_BYTE_DATA
, &data
)) {
289 pr_err("failed for address 0x%02x\n", i
);
296 static int hexium_set_input(struct hexium
*hexium
, int input
)
298 union i2c_smbus_data data
;
303 for (i
= 0; i
< 8; i
++) {
304 int adr
= hexium_input_select
[input
].data
[i
].adr
;
305 data
.byte
= hexium_input_select
[input
].data
[i
].byte
;
306 if (0 != i2c_smbus_xfer(&hexium
->i2c_adapter
, 0x4e, 0, I2C_SMBUS_WRITE
, adr
, I2C_SMBUS_BYTE_DATA
, &data
)) {
309 pr_debug("%d: 0x%02x => 0x%02x\n", input
, adr
, data
.byte
);
315 static int vidioc_enum_input(struct file
*file
, void *fh
, struct v4l2_input
*i
)
317 DEB_EE("VIDIOC_ENUMINPUT %d\n", i
->index
);
319 if (i
->index
>= HEXIUM_INPUTS
)
322 memcpy(i
, &hexium_inputs
[i
->index
], sizeof(struct v4l2_input
));
324 DEB_D("v4l2_ioctl: VIDIOC_ENUMINPUT %d\n", i
->index
);
328 static int vidioc_g_input(struct file
*file
, void *fh
, unsigned int *input
)
330 struct saa7146_dev
*dev
= video_drvdata(file
);
331 struct hexium
*hexium
= (struct hexium
*) dev
->ext_priv
;
333 *input
= hexium
->cur_input
;
335 DEB_D("VIDIOC_G_INPUT: %d\n", *input
);
339 static int vidioc_s_input(struct file
*file
, void *fh
, unsigned int input
)
341 struct saa7146_dev
*dev
= video_drvdata(file
);
342 struct hexium
*hexium
= (struct hexium
*) dev
->ext_priv
;
344 if (input
>= HEXIUM_INPUTS
)
347 hexium
->cur_input
= input
;
348 hexium_set_input(hexium
, input
);
353 static struct saa7146_ext_vv vv_data
;
355 /* this function only gets called when the probing was successful */
356 static int hexium_attach(struct saa7146_dev
*dev
, struct saa7146_pci_extension_data
*info
)
358 struct hexium
*hexium
= (struct hexium
*) dev
->ext_priv
;
363 ret
= saa7146_vv_init(dev
, &vv_data
);
365 pr_err("Error in saa7146_vv_init()\n");
369 vv_data
.vid_ops
.vidioc_enum_input
= vidioc_enum_input
;
370 vv_data
.vid_ops
.vidioc_g_input
= vidioc_g_input
;
371 vv_data
.vid_ops
.vidioc_s_input
= vidioc_s_input
;
372 if (0 != saa7146_register_device(&hexium
->video_dev
, dev
, "hexium orion", VFL_TYPE_VIDEO
)) {
373 pr_err("cannot register capture v4l2 device. skipping.\n");
377 pr_err("found 'hexium orion' frame grabber-%d\n", hexium_num
);
381 hexium
->cur_input
= 0;
382 hexium_init_done(dev
);
383 hexium_set_input(hexium
, 0);
388 static int hexium_detach(struct saa7146_dev
*dev
)
390 struct hexium
*hexium
= (struct hexium
*) dev
->ext_priv
;
392 DEB_EE("dev:%p\n", dev
);
394 saa7146_unregister_device(&hexium
->video_dev
, dev
);
395 saa7146_vv_release(dev
);
399 i2c_del_adapter(&hexium
->i2c_adapter
);
404 static int std_callback(struct saa7146_dev
*dev
, struct saa7146_standard
*std
)
409 static struct saa7146_extension extension
;
411 static struct saa7146_pci_extension_data hexium_hv_pci6
= {
412 .ext_priv
= "Hexium HV-PCI6 / Orion",
416 static struct saa7146_pci_extension_data hexium_orion_1svhs_3bnc
= {
417 .ext_priv
= "Hexium HV-PCI6 / Orion (1 SVHS/3 BNC)",
421 static struct saa7146_pci_extension_data hexium_orion_4bnc
= {
422 .ext_priv
= "Hexium HV-PCI6 / Orion (4 BNC)",
426 static const struct pci_device_id pci_tbl
[] = {
428 .vendor
= PCI_VENDOR_ID_PHILIPS
,
429 .device
= PCI_DEVICE_ID_PHILIPS_SAA7146
,
432 .driver_data
= (unsigned long) &hexium_hv_pci6
,
435 .vendor
= PCI_VENDOR_ID_PHILIPS
,
436 .device
= PCI_DEVICE_ID_PHILIPS_SAA7146
,
439 .driver_data
= (unsigned long) &hexium_orion_1svhs_3bnc
,
442 .vendor
= PCI_VENDOR_ID_PHILIPS
,
443 .device
= PCI_DEVICE_ID_PHILIPS_SAA7146
,
446 .driver_data
= (unsigned long) &hexium_orion_4bnc
,
453 MODULE_DEVICE_TABLE(pci
, pci_tbl
);
455 static struct saa7146_ext_vv vv_data
= {
456 .inputs
= HEXIUM_INPUTS
,
458 .stds
= &hexium_standards
[0],
459 .num_stds
= ARRAY_SIZE(hexium_standards
),
460 .std_callback
= &std_callback
,
463 static struct saa7146_extension extension
= {
464 .name
= "hexium HV-PCI6 Orion",
465 .flags
= 0, // SAA7146_USE_I2C_IRQ,
467 .pci_tbl
= &pci_tbl
[0],
468 .module
= THIS_MODULE
,
470 .probe
= hexium_probe
,
471 .attach
= hexium_attach
,
472 .detach
= hexium_detach
,
478 static int __init
hexium_init_module(void)
480 if (0 != saa7146_register_extension(&extension
)) {
481 DEB_S("failed to register extension\n");
488 static void __exit
hexium_cleanup_module(void)
490 saa7146_unregister_extension(&extension
);
493 module_init(hexium_init_module
);
494 module_exit(hexium_cleanup_module
);
496 MODULE_DESCRIPTION("video4linux-2 driver for Hexium Orion frame grabber cards");
497 MODULE_AUTHOR("Michael Hunold <michael@mihu.de>");
498 MODULE_LICENSE("GPL");