2 * Linux/SPARC PROM Configuration Driver
3 * Copyright (C) 1996 Thomas K. Dyas (tdyas@noc.rutgers.edu)
4 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
6 * This character device driver allows user programs to access the
7 * PROM device tree. It is compatible with the SunOS /dev/openprom
8 * driver and the NetBSD /dev/openprom driver. The SunOS eeprom
9 * utility works without any modifications.
11 * The driver uses a minor number under the misc device major. The
12 * file read/write mode determines the type of access to the PROM.
13 * Interrupts are disabled whenever the driver calls into the PROM for
17 /* This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of the
20 * License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/errno.h>
35 #include <linux/slab.h>
36 #include <linux/string.h>
37 #include <linux/miscdevice.h>
38 #include <linux/init.h>
40 #include <asm/oplib.h>
42 #include <asm/system.h>
43 #include <asm/uaccess.h>
44 #include <asm/openpromio.h>
46 #include <linux/pci.h>
49 MODULE_AUTHOR("Thomas K. Dyas (tdyas@noc.rutgers.edu) and Eddie C. Dost (ecd@skynet.be)");
50 MODULE_DESCRIPTION("OPENPROM Configuration Driver");
51 MODULE_LICENSE("GPL");
52 MODULE_VERSION("1.0");
54 /* Private data kept by the driver for each descriptor. */
55 typedef struct openprom_private_data
57 struct device_node *current_node; /* Current node for SunOS ioctls. */
58 struct device_node *lastnode; /* Last valid node used by BSD ioctls. */
61 /* ID of the PROM node containing all of the EEPROM options. */
62 static struct device_node *options_node;
65 * Copy an openpromio structure into kernel space from user space.
66 * This routine does error checking to make sure that all memory
67 * accesses are within bounds. A pointer to the allocated openpromio
68 * structure will be placed in "*opp_p". Return value is the length
69 * of the user supplied buffer.
71 static int copyin(struct openpromio __user *info, struct openpromio **opp_p)
78 if (get_user(bufsize, &info->oprom_size))
84 /* If the bufsize is too large, just limit it.
85 * Fix from Jason Rappleye.
87 if (bufsize > OPROMMAXPARAM)
88 bufsize = OPROMMAXPARAM;
90 if (!(*opp_p = kzalloc(sizeof(int) + bufsize + 1, GFP_KERNEL)))
93 if (copy_from_user(&(*opp_p)->oprom_array,
94 &info->oprom_array, bufsize)) {
101 static int getstrings(struct openpromio __user *info, struct openpromio **opp_p)
109 if (!(*opp_p = kzalloc(sizeof(int) + OPROMMAXPARAM + 1, GFP_KERNEL)))
112 (*opp_p)->oprom_size = 0;
115 while ((n < 2) && (bufsize < OPROMMAXPARAM)) {
116 if (get_user(c, &info->oprom_array[bufsize])) {
122 (*opp_p)->oprom_array[bufsize++] = c;
132 * Copy an openpromio structure in kernel space back to user space.
134 static int copyout(void __user *info, struct openpromio *opp, int len)
136 if (copy_to_user(info, opp, len))
141 static int opromgetprop(void __user *argp, struct device_node *dp, struct openpromio *op, int bufsize)
147 !(pval = of_get_property(dp, op->oprom_array, &len)) ||
148 len <= 0 || len > bufsize)
149 return copyout(argp, op, sizeof(int));
151 memcpy(op->oprom_array, pval, len);
152 op->oprom_array[len] = '\0';
153 op->oprom_size = len;
155 return copyout(argp, op, sizeof(int) + bufsize);
158 static int opromnxtprop(void __user *argp, struct device_node *dp, struct openpromio *op, int bufsize)
160 struct property *prop;
164 return copyout(argp, op, sizeof(int));
165 if (op->oprom_array[0] == '\0') {
166 prop = dp->properties;
168 return copyout(argp, op, sizeof(int));
169 len = strlen(prop->name);
171 prop = of_find_property(dp, op->oprom_array, NULL);
175 (len = strlen(prop->next->name)) + 1 > bufsize)
176 return copyout(argp, op, sizeof(int));
181 memcpy(op->oprom_array, prop->name, len);
182 op->oprom_array[len] = '\0';
183 op->oprom_size = ++len;
185 return copyout(argp, op, sizeof(int) + bufsize);
188 static int opromsetopt(struct device_node *dp, struct openpromio *op, int bufsize)
190 char *buf = op->oprom_array + strlen(op->oprom_array) + 1;
191 int len = op->oprom_array + bufsize - buf;
193 return of_set_property(options_node, op->oprom_array, buf, len);
196 static int opromnext(void __user *argp, unsigned int cmd, struct device_node *dp, struct openpromio *op, int bufsize, DATA *data)
200 BUILD_BUG_ON(sizeof(phandle) != sizeof(int));
202 if (bufsize < sizeof(phandle))
205 ph = *((int *) op->oprom_array);
207 dp = of_find_node_by_phandle(ph);
225 /* Sibling of node zero is the root node. */
226 if (cmd != OPROMNEXT)
229 dp = of_find_node_by_path("/");
236 data->current_node = dp;
237 *((int *) op->oprom_array) = ph;
238 op->oprom_size = sizeof(phandle);
240 return copyout(argp, op, bufsize + sizeof(int));
243 static int oprompci2node(void __user *argp, struct device_node *dp, struct openpromio *op, int bufsize, DATA *data)
247 if (bufsize >= 2*sizeof(int)) {
249 struct pci_dev *pdev;
250 struct device_node *dp;
252 pdev = pci_get_bus_and_slot (((int *) op->oprom_array)[0],
253 ((int *) op->oprom_array)[1]);
255 dp = pci_device_to_OF_node(pdev);
256 data->current_node = dp;
257 *((int *)op->oprom_array) = dp->node;
258 op->oprom_size = sizeof(int);
259 err = copyout(argp, op, bufsize + sizeof(int));
268 static int oprompath2node(void __user *argp, struct device_node *dp, struct openpromio *op, int bufsize, DATA *data)
272 dp = of_find_node_by_path(op->oprom_array);
275 data->current_node = dp;
276 *((int *)op->oprom_array) = ph;
277 op->oprom_size = sizeof(int);
279 return copyout(argp, op, bufsize + sizeof(int));
282 static int opromgetbootargs(void __user *argp, struct openpromio *op, int bufsize)
284 char *buf = saved_command_line;
285 int len = strlen(buf);
290 strcpy(op->oprom_array, buf);
291 op->oprom_size = len;
293 return copyout(argp, op, bufsize + sizeof(int));
297 * SunOS and Solaris /dev/openprom ioctl calls.
299 static int openprom_sunos_ioctl(struct inode * inode, struct file * file,
300 unsigned int cmd, unsigned long arg,
301 struct device_node *dp)
303 DATA *data = file->private_data;
304 struct openpromio *opp;
305 int bufsize, error = 0;
307 void __user *argp = (void __user *)arg;
309 if (cmd == OPROMSETOPT)
310 bufsize = getstrings(argp, &opp);
312 bufsize = copyin(argp, &opp);
320 error = opromgetprop(argp, dp, opp, bufsize);
325 error = opromnxtprop(argp, dp, opp, bufsize);
330 error = opromsetopt(dp, opp, bufsize);
336 error = opromnext(argp, cmd, dp, opp, bufsize, data);
340 error = oprompci2node(argp, dp, opp, bufsize, data);
344 error = oprompath2node(argp, dp, opp, bufsize, data);
347 case OPROMGETBOOTARGS:
348 error = opromgetbootargs(argp, opp, bufsize);
355 printk(KERN_INFO "openprom_sunos_ioctl: unimplemented ioctl\n");
360 printk(KERN_INFO "openprom_sunos_ioctl: cmd 0x%X, arg 0x%lX\n", cmd, arg);
369 static struct device_node *get_node(phandle n, DATA *data)
371 struct device_node *dp = of_find_node_by_phandle(n);
379 /* Copy in a whole string from userspace into kernelspace. */
380 static int copyin_string(char __user *user, size_t len, char **ptr)
384 if ((ssize_t)len < 0 || (ssize_t)(len + 1) < 0)
387 tmp = kmalloc(len + 1, GFP_KERNEL);
391 if (copy_from_user(tmp, user, len)) {
404 * NetBSD /dev/openprom ioctl calls.
406 static int opiocget(void __user *argp, DATA *data)
409 struct device_node *dp;
414 if (copy_from_user(&op, argp, sizeof(op)))
417 dp = get_node(op.op_nodeid, data);
419 err = copyin_string(op.op_name, op.op_namelen, &str);
423 pval = of_get_property(dp, str, &len);
425 if (!pval || len > op.op_buflen) {
429 if (copy_to_user(argp, &op, sizeof(op)) ||
430 copy_to_user(op.op_buf, pval, len))
438 static int opiocnextprop(void __user *argp, DATA *data)
441 struct device_node *dp;
442 struct property *prop;
446 if (copy_from_user(&op, argp, sizeof(op)))
449 dp = get_node(op.op_nodeid, data);
453 err = copyin_string(op.op_name, op.op_namelen, &str);
457 if (str[0] == '\0') {
458 prop = dp->properties;
460 prop = of_find_property(dp, str, NULL);
471 if (len > op.op_buflen)
474 if (copy_to_user(argp, &op, sizeof(op)))
478 copy_to_user(op.op_buf, prop->value, len))
484 static int opiocset(void __user *argp, DATA *data)
487 struct device_node *dp;
491 if (copy_from_user(&op, argp, sizeof(op)))
494 dp = get_node(op.op_nodeid, data);
498 err = copyin_string(op.op_name, op.op_namelen, &str);
502 err = copyin_string(op.op_buf, op.op_buflen, &tmp);
508 err = of_set_property(dp, str, tmp, op.op_buflen);
516 static int opiocgetnext(unsigned int cmd, void __user *argp)
518 struct device_node *dp;
521 BUILD_BUG_ON(sizeof(phandle) != sizeof(int));
523 if (copy_from_user(&nd, argp, sizeof(phandle)))
527 if (cmd != OPIOCGETNEXT)
529 dp = of_find_node_by_path("/");
531 dp = of_find_node_by_phandle(nd);
534 if (cmd == OPIOCGETNEXT)
542 if (copy_to_user(argp, &nd, sizeof(phandle)))
548 static int openprom_bsd_ioctl(struct inode * inode, struct file * file,
549 unsigned int cmd, unsigned long arg)
551 DATA *data = (DATA *) file->private_data;
552 void __user *argp = (void __user *)arg;
557 err = opiocget(argp, data);
561 err = opiocnextprop(argp, data);
565 err = opiocset(argp, data);
568 case OPIOCGETOPTNODE:
569 BUILD_BUG_ON(sizeof(phandle) != sizeof(int));
571 if (copy_to_user(argp, &options_node->node, sizeof(phandle)))
578 err = opiocgetnext(cmd, argp);
591 * Handoff control to the correct ioctl handler.
593 static int openprom_ioctl(struct inode * inode, struct file * file,
594 unsigned int cmd, unsigned long arg)
596 DATA *data = (DATA *) file->private_data;
601 if ((file->f_mode & FMODE_READ) == 0)
603 return openprom_sunos_ioctl(inode, file, cmd, arg,
608 if ((file->f_mode & FMODE_WRITE) == 0)
610 return openprom_sunos_ioctl(inode, file, cmd, arg,
617 if ((file->f_mode & FMODE_READ) == 0)
619 return openprom_sunos_ioctl(inode, file, cmd, arg,
625 case OPROMGETBOOTARGS:
629 if ((file->f_mode & FMODE_READ) == 0)
631 return openprom_sunos_ioctl(inode, file, cmd, arg, NULL);
635 case OPIOCGETOPTNODE:
638 if ((file->f_mode & FMODE_READ) == 0)
640 return openprom_bsd_ioctl(inode,file,cmd,arg);
643 if ((file->f_mode & FMODE_WRITE) == 0)
645 return openprom_bsd_ioctl(inode,file,cmd,arg);
652 static long openprom_compat_ioctl(struct file *file, unsigned int cmd,
658 * SunOS/Solaris only, the NetBSD one's have embedded pointers in
659 * the arg which we'd need to clean up...
673 case OPROMGETBOOTARGS:
677 rval = openprom_ioctl(file->f_path.dentry->d_inode, file, cmd, arg);
684 static int openprom_open(struct inode * inode, struct file * file)
688 data = kmalloc(sizeof(DATA), GFP_KERNEL);
692 data->current_node = of_find_node_by_path("/");
693 data->lastnode = data->current_node;
694 file->private_data = (void *) data;
699 static int openprom_release(struct inode * inode, struct file * file)
701 kfree(file->private_data);
705 static const struct file_operations openprom_fops = {
706 .owner = THIS_MODULE,
708 .ioctl = openprom_ioctl,
709 .compat_ioctl = openprom_compat_ioctl,
710 .open = openprom_open,
711 .release = openprom_release,
714 static struct miscdevice openprom_dev = {
715 .minor = SUN_OPENPROM_MINOR,
717 .fops = &openprom_fops,
720 static int __init openprom_init(void)
722 struct device_node *dp;
725 err = misc_register(&openprom_dev);
729 dp = of_find_node_by_path("/");
732 if (!strcmp(dp->name, "options"))
739 misc_deregister(&openprom_dev);
746 static void __exit openprom_cleanup(void)
748 misc_deregister(&openprom_dev);
751 module_init(openprom_init);
752 module_exit(openprom_cleanup);