2 * Driver for the Conexant CX23885/7/8 PCIe bridge
4 * Various common ioctl() support functions
6 * Copyright (c) 2009 Andy Walls <awalls@md.metrocast.net>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include "cx23885-ioctl.h"
27 #ifdef CONFIG_VIDEO_ADV_DEBUG
28 int cx23885_g_chip_info(struct file
*file
, void *fh
,
29 struct v4l2_dbg_chip_info
*chip
)
31 struct cx23885_dev
*dev
= ((struct cx23885_fh
*)fh
)->dev
;
33 if (chip
->match
.addr
> 1)
35 if (chip
->match
.addr
== 1) {
36 if (dev
->v4l_device
== NULL
)
38 strlcpy(chip
->name
, "cx23417", sizeof(chip
->name
));
40 strlcpy(chip
->name
, dev
->v4l2_dev
.name
, sizeof(chip
->name
));
45 static int cx23417_g_register(struct cx23885_dev
*dev
,
46 struct v4l2_dbg_register
*reg
)
50 if (dev
->v4l_device
== NULL
)
53 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= 0x10000)
56 if (mc417_register_read(dev
, (u16
) reg
->reg
, &value
))
57 return -EINVAL
; /* V4L2 spec, but -EREMOTEIO really */
64 int cx23885_g_register(struct file
*file
, void *fh
,
65 struct v4l2_dbg_register
*reg
)
67 struct cx23885_dev
*dev
= ((struct cx23885_fh
*)fh
)->dev
;
69 if (reg
->match
.addr
> 1)
72 return cx23417_g_register(dev
, reg
);
74 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= pci_resource_len(dev
->pci
, 0))
78 reg
->val
= cx_read(reg
->reg
);
82 static int cx23417_s_register(struct cx23885_dev
*dev
,
83 const struct v4l2_dbg_register
*reg
)
85 if (dev
->v4l_device
== NULL
)
88 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= 0x10000)
91 if (mc417_register_write(dev
, (u16
) reg
->reg
, (u32
) reg
->val
))
92 return -EINVAL
; /* V4L2 spec, but -EREMOTEIO really */
96 int cx23885_s_register(struct file
*file
, void *fh
,
97 const struct v4l2_dbg_register
*reg
)
99 struct cx23885_dev
*dev
= ((struct cx23885_fh
*)fh
)->dev
;
101 if (reg
->match
.addr
> 1)
104 return cx23417_s_register(dev
, reg
);
106 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= pci_resource_len(dev
->pci
, 0))
109 cx_write(reg
->reg
, reg
->val
);