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 #define PROMLIB_INTERNAL
34 #include <linux/config.h>
35 #include <linux/module.h>
36 #include <linux/kernel.h>
37 #include <linux/sched.h>
38 #include <linux/errno.h>
39 #include <linux/slab.h>
40 #include <linux/string.h>
41 #include <linux/miscdevice.h>
42 #include <linux/init.h>
44 #include <asm/oplib.h>
45 #include <asm/system.h>
46 #include <asm/uaccess.h>
47 #include <asm/openpromio.h>
49 #include <linux/pci.h>
53 /* Private data kept by the driver for each descriptor. */
54 typedef struct openprom_private_data
56 int current_node
; /* Current node for SunOS ioctls. */
57 int lastnode
; /* Last valid node used by BSD ioctls. */
60 /* ID of the PROM node containing all of the EEPROM options. */
61 static int options_node
= 0;
64 * Copy an openpromio structure into kernel space from user space.
65 * This routine does error checking to make sure that all memory
66 * accesses are within bounds. A pointer to the allocated openpromio
67 * structure will be placed in "*opp_p". Return value is the length
68 * of the user supplied buffer.
70 static int copyin(struct openpromio __user
*info
, struct openpromio
**opp_p
)
77 if (get_user(bufsize
, &info
->oprom_size
))
83 /* If the bufsize is too large, just limit it.
84 * Fix from Jason Rappleye.
86 if (bufsize
> OPROMMAXPARAM
)
87 bufsize
= OPROMMAXPARAM
;
89 if (!(*opp_p
= kmalloc(sizeof(int) + bufsize
+ 1, GFP_KERNEL
)))
91 memset(*opp_p
, 0, sizeof(int) + bufsize
+ 1);
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
= kmalloc(sizeof(int) + OPROMMAXPARAM
+ 1, GFP_KERNEL
)))
112 memset(*opp_p
, 0, sizeof(int) + OPROMMAXPARAM
+ 1);
113 (*opp_p
)->oprom_size
= 0;
116 while ((n
< 2) && (bufsize
< OPROMMAXPARAM
)) {
117 if (get_user(c
, &info
->oprom_array
[bufsize
])) {
123 (*opp_p
)->oprom_array
[bufsize
++] = c
;
133 * Copy an openpromio structure in kernel space back to user space.
135 static int copyout(void __user
*info
, struct openpromio
*opp
, int len
)
137 if (copy_to_user(info
, opp
, len
))
143 * SunOS and Solaris /dev/openprom ioctl calls.
145 static int openprom_sunos_ioctl(struct inode
* inode
, struct file
* file
,
146 unsigned int cmd
, unsigned long arg
, int node
)
148 DATA
*data
= (DATA
*) file
->private_data
;
149 char buffer
[OPROMMAXPARAM
+1], *buf
;
150 struct openpromio
*opp
;
151 int bufsize
, len
, error
= 0;
153 void __user
*argp
= (void __user
*)arg
;
155 if (cmd
== OPROMSETOPT
)
156 bufsize
= getstrings(argp
, &opp
);
158 bufsize
= copyin(argp
, &opp
);
166 len
= prom_getproplen(node
, opp
->oprom_array
);
168 if (len
<= 0 || len
> bufsize
) {
169 error
= copyout(argp
, opp
, sizeof(int));
173 len
= prom_getproperty(node
, opp
->oprom_array
, buffer
, bufsize
);
175 memcpy(opp
->oprom_array
, buffer
, len
);
176 opp
->oprom_array
[len
] = '\0';
177 opp
->oprom_size
= len
;
179 error
= copyout(argp
, opp
, sizeof(int) + bufsize
);
184 buf
= prom_nextprop(node
, opp
->oprom_array
, buffer
);
187 if (len
== 0 || len
+ 1 > bufsize
) {
188 error
= copyout(argp
, opp
, sizeof(int));
192 memcpy(opp
->oprom_array
, buf
, len
);
193 opp
->oprom_array
[len
] = '\0';
194 opp
->oprom_size
= ++len
;
196 error
= copyout(argp
, opp
, sizeof(int) + bufsize
);
201 buf
= opp
->oprom_array
+ strlen(opp
->oprom_array
) + 1;
202 len
= opp
->oprom_array
+ bufsize
- buf
;
204 error
= prom_setprop(options_node
, opp
->oprom_array
,
214 if (bufsize
< sizeof(int)) {
219 node
= *((int *) opp
->oprom_array
);
222 case OPROMNEXT
: node
= __prom_getsibling(node
); break;
223 case OPROMCHILD
: node
= __prom_getchild(node
); break;
224 case OPROMSETCUR
: break;
227 data
->current_node
= node
;
228 *((int *)opp
->oprom_array
) = node
;
229 opp
->oprom_size
= sizeof(int);
231 error
= copyout(argp
, opp
, bufsize
+ sizeof(int));
237 if (bufsize
>= 2*sizeof(int)) {
239 struct pci_dev
*pdev
;
240 struct pcidev_cookie
*pcp
;
241 pdev
= pci_find_slot (((int *) opp
->oprom_array
)[0],
242 ((int *) opp
->oprom_array
)[1]);
245 if (pcp
!= NULL
&& pcp
->prom_node
!= -1 && pcp
->prom_node
) {
246 node
= pcp
->prom_node
;
247 data
->current_node
= node
;
248 *((int *)opp
->oprom_array
) = node
;
249 opp
->oprom_size
= sizeof(int);
250 error
= copyout(argp
, opp
, bufsize
+ sizeof(int));
257 node
= prom_finddevice(opp
->oprom_array
);
258 data
->current_node
= node
;
259 *((int *)opp
->oprom_array
) = node
;
260 opp
->oprom_size
= sizeof(int);
262 error
= copyout(argp
, opp
, bufsize
+ sizeof(int));
265 case OPROMGETBOOTARGS
:
266 buf
= saved_command_line
;
275 strcpy(opp
->oprom_array
, buf
);
276 opp
->oprom_size
= len
;
278 error
= copyout(argp
, opp
, bufsize
+ sizeof(int));
285 printk(KERN_INFO
"openprom_sunos_ioctl: unimplemented ioctl\n");
290 printk(KERN_INFO
"openprom_sunos_ioctl: cmd 0x%X, arg 0x%lX\n", cmd
, arg
);
300 /* Return nonzero if a specific node is in the PROM device tree. */
301 static int intree(int root
, int node
)
303 for (; root
!= 0; root
= prom_getsibling(root
))
304 if (root
== node
|| intree(prom_getchild(root
),node
))
309 /* Return nonzero if a specific node is "valid". */
310 static int goodnode(int n
, DATA
*data
)
312 if (n
== data
->lastnode
|| n
== prom_root_node
|| n
== options_node
)
314 if (n
== 0 || n
== -1 || !intree(prom_root_node
,n
))
320 /* Copy in a whole string from userspace into kernelspace. */
321 static int copyin_string(char __user
*user
, size_t len
, char **ptr
)
325 if ((ssize_t
)len
< 0 || (ssize_t
)(len
+ 1) < 0)
328 tmp
= kmalloc(len
+ 1, GFP_KERNEL
);
332 if(copy_from_user(tmp
, user
, len
)) {
345 * NetBSD /dev/openprom ioctl calls.
347 static int openprom_bsd_ioctl(struct inode
* inode
, struct file
* file
,
348 unsigned int cmd
, unsigned long arg
)
350 DATA
*data
= (DATA
*) file
->private_data
;
351 void __user
*argp
= (void __user
*)arg
;
353 int error
, node
, len
;
360 if (copy_from_user(&op
, argp
, sizeof(op
)))
363 if (!goodnode(op
.op_nodeid
,data
))
366 error
= copyin_string(op
.op_name
, op
.op_namelen
, &str
);
370 len
= prom_getproplen(op
.op_nodeid
,str
);
372 if (len
> op
.op_buflen
) {
381 /* Verified by the above copy_from_user */
382 if (__copy_to_user(argp
, &op
,
388 tmp
= kmalloc(len
+ 1, GFP_KERNEL
);
394 prom_getproperty(op
.op_nodeid
, str
, tmp
, len
);
398 if (__copy_to_user(argp
, &op
, sizeof(op
)) != 0
399 || copy_to_user(op
.op_buf
, tmp
, len
) != 0)
408 if (copy_from_user(&op
, argp
, sizeof(op
)))
411 if (!goodnode(op
.op_nodeid
,data
))
414 error
= copyin_string(op
.op_name
, op
.op_namelen
, &str
);
418 tmp
= prom_nextprop(op
.op_nodeid
,str
,buffer
);
422 if (len
> op
.op_buflen
)
427 len
= op
.op_buflen
= 0;
430 if (!access_ok(VERIFY_WRITE
, argp
, sizeof(op
))) {
435 if (!access_ok(VERIFY_WRITE
, op
.op_buf
, len
)) {
440 error
= __copy_to_user(argp
, &op
, sizeof(op
));
441 if (!error
) error
= __copy_to_user(op
.op_buf
, tmp
, len
);
448 if (copy_from_user(&op
, argp
, sizeof(op
)))
451 if (!goodnode(op
.op_nodeid
,data
))
454 error
= copyin_string(op
.op_name
, op
.op_namelen
, &str
);
458 error
= copyin_string(op
.op_buf
, op
.op_buflen
, &tmp
);
464 len
= prom_setprop(op
.op_nodeid
,str
,tmp
,op
.op_buflen
+1);
466 if (len
!= op
.op_buflen
)
474 case OPIOCGETOPTNODE
:
475 if (copy_to_user(argp
, &options_node
, sizeof(int)))
481 if (copy_from_user(&node
, argp
, sizeof(int)))
484 if (cmd
== OPIOCGETNEXT
)
485 node
= __prom_getsibling(node
);
487 node
= __prom_getchild(node
);
489 if (__copy_to_user(argp
, &node
, sizeof(int)))
496 printk(KERN_INFO
"openprom_bsd_ioctl: cmd 0x%X\n", cmd
);
504 * Handoff control to the correct ioctl handler.
506 static int openprom_ioctl(struct inode
* inode
, struct file
* file
,
507 unsigned int cmd
, unsigned long arg
)
509 DATA
*data
= (DATA
*) file
->private_data
;
515 if ((file
->f_mode
& FMODE_READ
) == 0)
517 return openprom_sunos_ioctl(inode
, file
, cmd
, arg
,
522 if ((file
->f_mode
& FMODE_WRITE
) == 0)
524 return openprom_sunos_ioctl(inode
, file
, cmd
, arg
,
531 if ((file
->f_mode
& FMODE_READ
) == 0)
533 return openprom_sunos_ioctl(inode
, file
, cmd
, arg
,
539 case OPROMGETBOOTARGS
:
543 if ((file
->f_mode
& FMODE_READ
) == 0)
545 return openprom_sunos_ioctl(inode
, file
, cmd
, arg
, 0);
549 case OPIOCGETOPTNODE
:
552 if ((file
->f_mode
& FMODE_READ
) == 0)
554 return openprom_bsd_ioctl(inode
,file
,cmd
,arg
);
557 if ((file
->f_mode
& FMODE_WRITE
) == 0)
559 return openprom_bsd_ioctl(inode
,file
,cmd
,arg
);
563 printk("openprom_ioctl: cmd 0x%X, arg 0x%lX\n", cmd
, arg
);
568 static int openprom_open(struct inode
* inode
, struct file
* file
)
572 data
= (DATA
*) kmalloc(sizeof(DATA
), GFP_KERNEL
);
576 data
->current_node
= prom_root_node
;
577 data
->lastnode
= prom_root_node
;
578 file
->private_data
= (void *)data
;
583 static int openprom_release(struct inode
* inode
, struct file
* file
)
585 kfree(file
->private_data
);
589 static struct file_operations openprom_fops
= {
590 .owner
= THIS_MODULE
,
592 .ioctl
= openprom_ioctl
,
593 .open
= openprom_open
,
594 .release
= openprom_release
,
597 static struct miscdevice openprom_dev
= {
598 SUN_OPENPROM_MINOR
, "openprom", &openprom_fops
601 static int __init
openprom_init(void)
605 error
= misc_register(&openprom_dev
);
607 printk(KERN_ERR
"openprom: unable to get misc minor\n");
611 options_node
= prom_getchild(prom_root_node
);
612 options_node
= prom_searchsiblings(options_node
,"options");
614 if (options_node
== 0 || options_node
== -1) {
615 printk(KERN_ERR
"openprom: unable to find options node\n");
616 misc_deregister(&openprom_dev
);
623 static void __exit
openprom_cleanup(void)
625 misc_deregister(&openprom_dev
);
628 module_init(openprom_init
);
629 module_exit(openprom_cleanup
);
630 MODULE_LICENSE("GPL");