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/config.h>
31 #include <linux/types.h>
32 #include <linux/kernel.h>
33 #include <linux/module.h>
34 #include <linux/vmalloc.h>
36 #include <linux/proc_fs.h>
37 #include <linux/pci.h>
38 #include <linux/i2c.h>
39 #include <linux/i2c-algo-bit.h>
40 #include <linux/videodev.h>
41 #include <linux/spinlock.h>
42 #include <linux/sem.h>
43 #include <linux/seq_file.h>
45 #include <linux/ctype.h>
46 #include <linux/poll.h>
49 #include "videocodec.h"
51 #include "zoran_procfs.h"
55 #define dprintk(num, format, args...) \
57 if (*zr_debug >= num) \
58 printk(format, ##args); \
62 struct procfs_params_zr36067 {
69 static const struct procfs_params_zr36067 zr67[] = {
70 {"HSPol", 0x000, 1, 30},
71 {"HStart", 0x000, 0x3ff, 10},
72 {"HEnd", 0x000, 0x3ff, 0},
74 {"VSPol", 0x004, 1, 30},
75 {"VStart", 0x004, 0x3ff, 10},
76 {"VEnd", 0x004, 0x3ff, 0},
78 {"ExtFl", 0x008, 1, 26},
79 {"TopField", 0x008, 1, 25},
80 {"VCLKPol", 0x008, 1, 24},
81 {"DupFld", 0x008, 1, 20},
82 {"LittleEndian", 0x008, 1, 0},
84 {"HsyncStart", 0x10c, 0xffff, 16},
85 {"LineTot", 0x10c, 0xffff, 0},
87 {"NAX", 0x110, 0xffff, 16},
88 {"PAX", 0x110, 0xffff, 0},
90 {"NAY", 0x114, 0xffff, 16},
91 {"PAY", 0x114, 0xffff, 0},
99 setparam (struct zoran *zr,
103 int i = 0, reg0, reg, val;
105 while (zr67[i].name != NULL) {
106 if (!strncmp(name, zr67[i].name, strlen(zr67[i].name))) {
107 reg = reg0 = btread(zr67[i].reg);
108 reg &= ~(zr67[i].mask << zr67[i].bit);
109 if (!isdigit(sval[0]))
111 val = simple_strtoul(sval, NULL, 0);
112 if ((val & ~zr67[i].mask))
114 reg |= (val & zr67[i].mask) << zr67[i].bit;
117 "%s: setparam: setting ZR36067 register 0x%03x: 0x%08x=>0x%08x %s=%d\n",
118 ZR_DEVNAME(zr), zr67[i].reg, reg0, reg,
120 btwrite(reg, zr67[i].reg);
127 static int zoran_show(struct seq_file *p, void *v)
129 struct zoran *zr = p->private;
132 seq_printf(p, "ZR36067 registers:\n");
133 for (i = 0; i < 0x130; i += 16)
134 seq_printf(p, "%03X %08X %08X %08X %08X \n", i,
135 btread(i), btread(i+4), btread(i+8), btread(i+12));
139 static int zoran_open(struct inode *inode, struct file *file)
141 struct zoran *data = PDE(inode)->data;
142 return single_open(file, zoran_show, data);
145 static ssize_t zoran_write(struct file *file, const char __user *buffer,
146 size_t count, loff_t *ppos)
148 struct zoran *zr = PDE(file->f_dentry->d_inode)->data;
150 char *line, *ldelim, *varname, *svar, *tdelim;
152 if (count > 32768) /* Stupidity filter */
155 string = sp = vmalloc(count + 1);
159 "%s: write_proc: can not allocate memory\n",
163 if (copy_from_user(string, buffer, count)) {
168 dprintk(4, KERN_INFO "%s: write_proc: name=%s count=%zu zr=%p\n",
169 ZR_DEVNAME(zr), file->f_dentry->d_name.name, count, zr);
172 line = strpbrk(sp, ldelim);
175 svar = strpbrk(sp, tdelim);
180 setparam(zr, varname, svar);
183 line = strpbrk(sp, ldelim);
190 static struct file_operations zoran_operations = {
193 .write = zoran_write,
195 .release = single_release,
200 zoran_proc_init (struct zoran *zr)
202 #ifdef CONFIG_PROC_FS
205 snprintf(name, 7, "zoran%d", zr->id);
206 if ((zr->zoran_proc = create_proc_entry(name, 0, NULL))) {
207 zr->zoran_proc->data = zr;
208 zr->zoran_proc->owner = THIS_MODULE;
209 zr->zoran_proc->proc_fops = &zoran_operations;
212 "%s: procfs entry /proc/%s allocated. data=%p\n",
213 ZR_DEVNAME(zr), name, zr->zoran_proc->data);
215 dprintk(1, KERN_ERR "%s: Unable to initialise /proc/%s\n",
216 ZR_DEVNAME(zr), name);
224 zoran_proc_cleanup (struct zoran *zr)
226 #ifdef CONFIG_PROC_FS
229 snprintf(name, 7, "zoran%d", zr->id);
231 remove_proc_entry(name, NULL);
232 zr->zoran_proc = NULL;