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 #include <media/v4l2-chip-ident.h>
29 int cx23885_g_chip_ident(struct file
*file
, void *fh
,
30 struct v4l2_dbg_chip_ident
*chip
)
32 struct cx23885_dev
*dev
= ((struct cx23885_fh
*)fh
)->dev
;
36 chip
->ident
= V4L2_IDENT_NONE
;
38 switch (chip
->match
.type
) {
39 case V4L2_CHIP_MATCH_HOST
:
40 switch (chip
->match
.addr
) {
42 rev
= cx_read(RDR_CFG2
) & 0xff;
43 switch (dev
->pci
->device
) {
45 /* rev 0x04 could be '885 or '888. Pick '888. */
47 chip
->ident
= V4L2_IDENT_CX23888
;
49 chip
->ident
= V4L2_IDENT_CX23885
;
52 if (rev
== 0x0e || rev
== 0x0f)
53 chip
->ident
= V4L2_IDENT_CX23887
;
55 chip
->ident
= V4L2_IDENT_CX23888
;
58 chip
->ident
= V4L2_IDENT_UNKNOWN
;
61 chip
->revision
= (dev
->pci
->device
<< 16) | (rev
<< 8) |
62 (dev
->hwrevision
& 0xff);
65 if (dev
->v4l_device
!= NULL
) {
66 chip
->ident
= V4L2_IDENT_CX23417
;
72 * The integrated IR controller on the CX23888 is
73 * host chip 2. It may not be used/initialized or sd_ir
74 * may be pointing at the cx25840 subdevice for the
75 * IR controller on the CX23885. Thus we find it
76 * without using the dev->sd_ir pointer.
78 call_hw(dev
, CX23885_HW_888_IR
, core
, g_chip_ident
,
82 err
= -EINVAL
; /* per V4L2 spec */
86 case V4L2_CHIP_MATCH_I2C_DRIVER
:
87 /* If needed, returns V4L2_IDENT_AMBIGUOUS without extra work */
88 call_all(dev
, core
, g_chip_ident
, chip
);
90 case V4L2_CHIP_MATCH_I2C_ADDR
:
92 * We could return V4L2_IDENT_UNKNOWN, but we don't do the work
93 * to look if a chip is at the address with no driver. That's a
94 * dangerous thing to do with EEPROMs anyway.
96 call_all(dev
, core
, g_chip_ident
, chip
);
105 #ifdef CONFIG_VIDEO_ADV_DEBUG
106 static int cx23885_g_host_register(struct cx23885_dev
*dev
,
107 struct v4l2_dbg_register
*reg
)
109 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= pci_resource_len(dev
->pci
, 0))
113 reg
->val
= cx_read(reg
->reg
);
117 static int cx23417_g_register(struct cx23885_dev
*dev
,
118 struct v4l2_dbg_register
*reg
)
122 if (dev
->v4l_device
== NULL
)
125 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= 0x10000)
128 if (mc417_register_read(dev
, (u16
) reg
->reg
, &value
))
129 return -EINVAL
; /* V4L2 spec, but -EREMOTEIO really */
136 int cx23885_g_register(struct file
*file
, void *fh
,
137 struct v4l2_dbg_register
*reg
)
139 struct cx23885_dev
*dev
= ((struct cx23885_fh
*)fh
)->dev
;
141 if (!capable(CAP_SYS_ADMIN
))
144 if (reg
->match
.type
== V4L2_CHIP_MATCH_HOST
) {
145 switch (reg
->match
.addr
) {
147 return cx23885_g_host_register(dev
, reg
);
149 return cx23417_g_register(dev
, reg
);
155 /* FIXME - any error returns should not be ignored */
156 call_all(dev
, core
, g_register
, reg
);
160 static int cx23885_s_host_register(struct cx23885_dev
*dev
,
161 const struct v4l2_dbg_register
*reg
)
163 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= pci_resource_len(dev
->pci
, 0))
166 cx_write(reg
->reg
, reg
->val
);
170 static int cx23417_s_register(struct cx23885_dev
*dev
,
171 const struct v4l2_dbg_register
*reg
)
173 if (dev
->v4l_device
== NULL
)
176 if ((reg
->reg
& 0x3) != 0 || reg
->reg
>= 0x10000)
179 if (mc417_register_write(dev
, (u16
) reg
->reg
, (u32
) reg
->val
))
180 return -EINVAL
; /* V4L2 spec, but -EREMOTEIO really */
184 int cx23885_s_register(struct file
*file
, void *fh
,
185 const struct v4l2_dbg_register
*reg
)
187 struct cx23885_dev
*dev
= ((struct cx23885_fh
*)fh
)->dev
;
189 if (!capable(CAP_SYS_ADMIN
))
192 if (reg
->match
.type
== V4L2_CHIP_MATCH_HOST
) {
193 switch (reg
->match
.addr
) {
195 return cx23885_s_host_register(dev
, reg
);
197 return cx23417_s_register(dev
, reg
);
203 /* FIXME - any error returns should not be ignored */
204 call_all(dev
, core
, s_register
, reg
);