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>
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
)
41 if (nvram_size
== 0 || nvram_fetch
== RTAS_UNKNOWN_SERVICE
)
44 if (*index
>= nvram_size
)
48 if (i
+ count
> nvram_size
)
49 count
= nvram_size
- i
;
51 spin_lock_irqsave(&nvram_lock
, flags
);
53 for (; count
!= 0; count
-= len
) {
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
);
64 memcpy(p
, nvram_buf
, len
);
70 spin_unlock_irqrestore(&nvram_lock
, flags
);
76 static ssize_t
pSeries_nvram_write(char *buf
, size_t count
, loff_t
*index
)
84 if (nvram_size
== 0 || nvram_store
== RTAS_UNKNOWN_SERVICE
)
87 if (*index
>= nvram_size
)
91 if (i
+ count
> nvram_size
)
92 count
= nvram_size
- i
;
94 spin_lock_irqsave(&nvram_lock
, flags
);
96 for (; count
!= 0; count
-= len
) {
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
);
112 spin_unlock_irqrestore(&nvram_lock
, flags
);
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 const unsigned int *nbytes_p
;
127 unsigned int proplen
;
129 nvram
= of_find_node_by_type(NULL
, "nvram");
133 nbytes_p
= get_property(nvram
, "#bytes", &proplen
);
134 if (nbytes_p
== NULL
|| proplen
!= sizeof(unsigned int))
137 nvram_size
= *nbytes_p
;
139 nvram_fetch
= rtas_token("nvram-fetch");
140 nvram_store
= rtas_token("nvram-store");
141 printk(KERN_INFO
"PPC64 nvram contains %d bytes\n", nvram_size
);
144 ppc_md
.nvram_read
= pSeries_nvram_read
;
145 ppc_md
.nvram_write
= pSeries_nvram_write
;
146 ppc_md
.nvram_size
= pSeries_nvram_get_size
;