RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / powerpc / sysdev / mmio_nvram.c
blob207324209065341df70115612c98b3b902bd4c3a
1 /*
2 * memory mapped NVRAM
4 * (C) Copyright IBM Corp. 2005
6 * Authors : Utz Bacher <utz.bacher@de.ibm.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/fs.h>
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/spinlock.h>
27 #include <linux/types.h>
29 #include <asm/machdep.h>
30 #include <asm/nvram.h>
31 #include <asm/prom.h>
33 static void __iomem *mmio_nvram_start;
34 static long mmio_nvram_len;
35 static DEFINE_SPINLOCK(mmio_nvram_lock);
37 static ssize_t mmio_nvram_read(char *buf, size_t count, loff_t *index)
39 unsigned long flags;
41 if (*index >= mmio_nvram_len)
42 return 0;
43 if (*index + count > mmio_nvram_len)
44 count = mmio_nvram_len - *index;
46 spin_lock_irqsave(&mmio_nvram_lock, flags);
48 memcpy_fromio(buf, mmio_nvram_start + *index, count);
50 spin_unlock_irqrestore(&mmio_nvram_lock, flags);
52 *index += count;
53 return count;
56 static unsigned char mmio_nvram_read_val(int addr)
58 unsigned long flags;
59 unsigned char val;
61 if (addr >= mmio_nvram_len)
62 return 0xff;
64 spin_lock_irqsave(&mmio_nvram_lock, flags);
66 val = ioread8(mmio_nvram_start + addr);
68 spin_unlock_irqrestore(&mmio_nvram_lock, flags);
70 return val;
73 static ssize_t mmio_nvram_write(char *buf, size_t count, loff_t *index)
75 unsigned long flags;
77 if (*index >= mmio_nvram_len)
78 return 0;
79 if (*index + count > mmio_nvram_len)
80 count = mmio_nvram_len - *index;
82 spin_lock_irqsave(&mmio_nvram_lock, flags);
84 memcpy_toio(mmio_nvram_start + *index, buf, count);
86 spin_unlock_irqrestore(&mmio_nvram_lock, flags);
88 *index += count;
89 return count;
92 void mmio_nvram_write_val(int addr, unsigned char val)
94 unsigned long flags;
96 if (addr < mmio_nvram_len) {
97 spin_lock_irqsave(&mmio_nvram_lock, flags);
99 iowrite8(val, mmio_nvram_start + addr);
101 spin_unlock_irqrestore(&mmio_nvram_lock, flags);
105 static ssize_t mmio_nvram_get_size(void)
107 return mmio_nvram_len;
110 int __init mmio_nvram_init(void)
112 struct device_node *nvram_node;
113 unsigned long nvram_addr;
114 struct resource r;
115 int ret;
117 nvram_node = of_find_node_by_type(NULL, "nvram");
118 if (!nvram_node) {
119 printk(KERN_WARNING "nvram: no node found in device-tree\n");
120 return -ENODEV;
123 ret = of_address_to_resource(nvram_node, 0, &r);
124 if (ret) {
125 printk(KERN_WARNING "nvram: failed to get address (err %d)\n",
126 ret);
127 goto out;
129 nvram_addr = r.start;
130 mmio_nvram_len = r.end - r.start + 1;
131 if ( (!mmio_nvram_len) || (!nvram_addr) ) {
132 printk(KERN_WARNING "nvram: address or length is 0\n");
133 ret = -EIO;
134 goto out;
137 mmio_nvram_start = ioremap(nvram_addr, mmio_nvram_len);
138 if (!mmio_nvram_start) {
139 printk(KERN_WARNING "nvram: failed to ioremap\n");
140 ret = -ENOMEM;
141 goto out;
144 printk(KERN_INFO "mmio NVRAM, %luk at 0x%lx mapped to %p\n",
145 mmio_nvram_len >> 10, nvram_addr, mmio_nvram_start);
147 ppc_md.nvram_read_val = mmio_nvram_read_val;
148 ppc_md.nvram_write_val = mmio_nvram_write_val;
149 ppc_md.nvram_read = mmio_nvram_read;
150 ppc_md.nvram_write = mmio_nvram_write;
151 ppc_md.nvram_size = mmio_nvram_get_size;
153 out:
154 of_node_put(nvram_node);
155 return ret;