Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / ppc64 / kernel / pSeries_nvram.c
blob18abfb1f4e24852383671ddf6e82fd62ae784be4
1 /*
2 * c 2001 PPC 64 Team, IBM Corp
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * /dev/nvram driver for PPC64
11 * This perhaps should live in drivers/char
15 #include <linux/types.h>
16 #include <linux/errno.h>
17 #include <linux/init.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
20 #include <asm/uaccess.h>
21 #include <asm/nvram.h>
22 #include <asm/rtas.h>
23 #include <asm/prom.h>
24 #include <asm/machdep.h>
26 static unsigned int nvram_size;
27 static int nvram_fetch, nvram_store;
28 static char nvram_buf[NVRW_CNT]; /* assume this is in the first 4GB */
29 static DEFINE_SPINLOCK(nvram_lock);
32 static ssize_t pSeries_nvram_read(char *buf, size_t count, loff_t *index)
34 unsigned int i;
35 unsigned long len;
36 int done;
37 unsigned long flags;
38 char *p = buf;
41 if (nvram_size == 0 || nvram_fetch == RTAS_UNKNOWN_SERVICE)
42 return -ENODEV;
44 if (*index >= nvram_size)
45 return 0;
47 i = *index;
48 if (i + count > nvram_size)
49 count = nvram_size - i;
51 spin_lock_irqsave(&nvram_lock, flags);
53 for (; count != 0; count -= len) {
54 len = count;
55 if (len > NVRW_CNT)
56 len = NVRW_CNT;
58 if ((rtas_call(nvram_fetch, 3, 2, &done, i, __pa(nvram_buf),
59 len) != 0) || len != done) {
60 spin_unlock_irqrestore(&nvram_lock, flags);
61 return -EIO;
64 memcpy(p, nvram_buf, len);
66 p += len;
67 i += len;
70 spin_unlock_irqrestore(&nvram_lock, flags);
72 *index = i;
73 return p - buf;
76 static ssize_t pSeries_nvram_write(char *buf, size_t count, loff_t *index)
78 unsigned int i;
79 unsigned long len;
80 int done;
81 unsigned long flags;
82 const char *p = buf;
84 if (nvram_size == 0 || nvram_store == RTAS_UNKNOWN_SERVICE)
85 return -ENODEV;
87 if (*index >= nvram_size)
88 return 0;
90 i = *index;
91 if (i + count > nvram_size)
92 count = nvram_size - i;
94 spin_lock_irqsave(&nvram_lock, flags);
96 for (; count != 0; count -= len) {
97 len = count;
98 if (len > NVRW_CNT)
99 len = NVRW_CNT;
101 memcpy(nvram_buf, p, len);
103 if ((rtas_call(nvram_store, 3, 2, &done, i, __pa(nvram_buf),
104 len) != 0) || len != done) {
105 spin_unlock_irqrestore(&nvram_lock, flags);
106 return -EIO;
109 p += len;
110 i += len;
112 spin_unlock_irqrestore(&nvram_lock, flags);
114 *index = i;
115 return p - buf;
118 static ssize_t pSeries_nvram_get_size(void)
120 return nvram_size ? nvram_size : -ENODEV;
123 int __init pSeries_nvram_init(void)
125 struct device_node *nvram;
126 unsigned int *nbytes_p, proplen;
128 nvram = of_find_node_by_type(NULL, "nvram");
129 if (nvram == NULL)
130 return -ENODEV;
132 nbytes_p = (unsigned int *)get_property(nvram, "#bytes", &proplen);
133 if (nbytes_p == NULL || proplen != sizeof(unsigned int))
134 return -EIO;
136 nvram_size = *nbytes_p;
138 nvram_fetch = rtas_token("nvram-fetch");
139 nvram_store = rtas_token("nvram-store");
140 printk(KERN_INFO "PPC64 nvram contains %d bytes\n", nvram_size);
141 of_node_put(nvram);
143 ppc_md.nvram_read = pSeries_nvram_read;
144 ppc_md.nvram_write = pSeries_nvram_write;
145 ppc_md.nvram_size = pSeries_nvram_get_size;
147 return 0;