2 * Zoran zr36057/zr36067 PCI controller driver, for the
3 * Pinnacle/Miro DC10/DC10+/DC30/DC30+, Iomega Buz, Linux
4 * Media Labs LML33/LML33R10.
6 * This part handles the procFS entries (/proc/ZORAN[%d])
8 * Copyright (C) 2000 Serguei Miridonov <mirsev@cicese.mx>
10 * Currently maintained by:
11 * Ronald Bultje <rbultje@ronald.bitfreak.net>
12 * Laurent Pinchart <laurent.pinchart@skynet.be>
13 * Mailinglist <mjpeg-users@lists.sf.net>
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 #include <linux/types.h>
31 #include <linux/kernel.h>
32 #include <linux/module.h>
33 #include <linux/vmalloc.h>
35 #include <linux/proc_fs.h>
36 #include <linux/pci.h>
37 #include <linux/i2c.h>
38 #include <linux/i2c-algo-bit.h>
39 #include <linux/videodev.h>
40 #include <linux/spinlock.h>
41 #include <linux/sem.h>
42 #include <linux/seq_file.h>
44 #include <linux/ctype.h>
45 #include <linux/poll.h>
48 #include "videocodec.h"
50 #include "zoran_procfs.h"
54 #define dprintk(num, format, args...) \
56 if (*zr_debug >= num) \
57 printk(format, ##args); \
61 struct procfs_params_zr36067
{
68 static const struct procfs_params_zr36067 zr67
[] = {
69 {"HSPol", 0x000, 1, 30},
70 {"HStart", 0x000, 0x3ff, 10},
71 {"HEnd", 0x000, 0x3ff, 0},
73 {"VSPol", 0x004, 1, 30},
74 {"VStart", 0x004, 0x3ff, 10},
75 {"VEnd", 0x004, 0x3ff, 0},
77 {"ExtFl", 0x008, 1, 26},
78 {"TopField", 0x008, 1, 25},
79 {"VCLKPol", 0x008, 1, 24},
80 {"DupFld", 0x008, 1, 20},
81 {"LittleEndian", 0x008, 1, 0},
83 {"HsyncStart", 0x10c, 0xffff, 16},
84 {"LineTot", 0x10c, 0xffff, 0},
86 {"NAX", 0x110, 0xffff, 16},
87 {"PAX", 0x110, 0xffff, 0},
89 {"NAY", 0x114, 0xffff, 16},
90 {"PAY", 0x114, 0xffff, 0},
98 setparam (struct zoran
*zr
,
102 int i
= 0, reg0
, reg
, val
;
104 while (zr67
[i
].name
!= NULL
) {
105 if (!strncmp(name
, zr67
[i
].name
, strlen(zr67
[i
].name
))) {
106 reg
= reg0
= btread(zr67
[i
].reg
);
107 reg
&= ~(zr67
[i
].mask
<< zr67
[i
].bit
);
108 if (!isdigit(sval
[0]))
110 val
= simple_strtoul(sval
, NULL
, 0);
111 if ((val
& ~zr67
[i
].mask
))
113 reg
|= (val
& zr67
[i
].mask
) << zr67
[i
].bit
;
116 "%s: setparam: setting ZR36067 register 0x%03x: 0x%08x=>0x%08x %s=%d\n",
117 ZR_DEVNAME(zr
), zr67
[i
].reg
, reg0
, reg
,
119 btwrite(reg
, zr67
[i
].reg
);
126 static int zoran_show(struct seq_file
*p
, void *v
)
128 struct zoran
*zr
= p
->private;
131 seq_printf(p
, "ZR36067 registers:\n");
132 for (i
= 0; i
< 0x130; i
+= 16)
133 seq_printf(p
, "%03X %08X %08X %08X %08X \n", i
,
134 btread(i
), btread(i
+4), btread(i
+8), btread(i
+12));
138 static int zoran_open(struct inode
*inode
, struct file
*file
)
140 struct zoran
*data
= PDE(inode
)->data
;
141 return single_open(file
, zoran_show
, data
);
144 static ssize_t
zoran_write(struct file
*file
, const char __user
*buffer
,
145 size_t count
, loff_t
*ppos
)
147 struct zoran
*zr
= PDE(file
->f_path
.dentry
->d_inode
)->data
;
149 char *line
, *ldelim
, *varname
, *svar
, *tdelim
;
151 if (count
> 32768) /* Stupidity filter */
154 string
= sp
= vmalloc(count
+ 1);
158 "%s: write_proc: can not allocate memory\n",
162 if (copy_from_user(string
, buffer
, count
)) {
167 dprintk(4, KERN_INFO
"%s: write_proc: name=%s count=%zu zr=%p\n",
168 ZR_DEVNAME(zr
), file
->f_path
.dentry
->d_name
.name
, count
, zr
);
171 line
= strpbrk(sp
, ldelim
);
174 svar
= strpbrk(sp
, tdelim
);
179 setparam(zr
, varname
, svar
);
182 line
= strpbrk(sp
, ldelim
);
189 static const struct file_operations zoran_operations
= {
192 .write
= zoran_write
,
194 .release
= single_release
,
199 zoran_proc_init (struct zoran
*zr
)
201 #ifdef CONFIG_PROC_FS
204 snprintf(name
, 7, "zoran%d", zr
->id
);
205 if ((zr
->zoran_proc
= create_proc_entry(name
, 0, NULL
))) {
206 zr
->zoran_proc
->data
= zr
;
207 zr
->zoran_proc
->owner
= THIS_MODULE
;
208 zr
->zoran_proc
->proc_fops
= &zoran_operations
;
211 "%s: procfs entry /proc/%s allocated. data=%p\n",
212 ZR_DEVNAME(zr
), name
, zr
->zoran_proc
->data
);
214 dprintk(1, KERN_ERR
"%s: Unable to initialise /proc/%s\n",
215 ZR_DEVNAME(zr
), name
);
223 zoran_proc_cleanup (struct zoran
*zr
)
225 #ifdef CONFIG_PROC_FS
228 snprintf(name
, 7, "zoran%d", zr
->id
);
230 remove_proc_entry(name
, NULL
);
231 zr
->zoran_proc
= NULL
;