nvram.c revision 1.4 1 1.4 matt /* $NetBSD: nvram.c,v 1.4 2001/06/08 00:32:02 matt Exp $ */
2 1.1 tsubai
3 1.1 tsubai /*-
4 1.1 tsubai * Copyright (C) 1998 Internet Research Institute, Inc.
5 1.1 tsubai * All rights reserved.
6 1.1 tsubai *
7 1.1 tsubai * Redistribution and use in source and binary forms, with or without
8 1.1 tsubai * modification, are permitted provided that the following conditions
9 1.1 tsubai * are met:
10 1.1 tsubai * 1. Redistributions of source code must retain the above copyright
11 1.1 tsubai * notice, this list of conditions and the following disclaimer.
12 1.1 tsubai * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 tsubai * notice, this list of conditions and the following disclaimer in the
14 1.1 tsubai * documentation and/or other materials provided with the distribution.
15 1.1 tsubai * 3. All advertising materials mentioning features or use of this software
16 1.1 tsubai * must display the following acknowledgement:
17 1.1 tsubai * This product includes software developed by
18 1.1 tsubai * Internet Research Institute, Inc.
19 1.1 tsubai * 4. The name of the author may not be used to endorse or promote products
20 1.1 tsubai * derived from this software without specific prior written permission.
21 1.1 tsubai *
22 1.1 tsubai * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 tsubai * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 tsubai * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 tsubai * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 tsubai * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 tsubai * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 tsubai * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 tsubai * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 tsubai * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 1.1 tsubai * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 tsubai */
33 1.1 tsubai
34 1.1 tsubai #include <sys/types.h>
35 1.1 tsubai #include <sys/param.h>
36 1.1 tsubai #include <sys/systm.h>
37 1.4 matt #include <sys/conf.h>
38 1.1 tsubai #include <sys/kernel.h>
39 1.1 tsubai #include <sys/device.h>
40 1.1 tsubai #include <sys/malloc.h>
41 1.1 tsubai
42 1.1 tsubai #include <machine/autoconf.h>
43 1.1 tsubai #include <machine/pio.h>
44 1.1 tsubai
45 1.1 tsubai #define NVRAM_NONE 0
46 1.1 tsubai #define NVRAM_IOMEM 1
47 1.1 tsubai #define NVRAM_PORT 2
48 1.1 tsubai
49 1.1 tsubai #define NVRAM_SIZE 0x2000
50 1.1 tsubai
51 1.4 matt cdev_decl(nvram);
52 1.4 matt
53 1.1 tsubai static void nvram_attach __P((struct device *, struct device *, void *));
54 1.1 tsubai static int nvram_match __P((struct device *, struct cfdata *, void *));
55 1.1 tsubai
56 1.1 tsubai struct nvram_softc {
57 1.1 tsubai struct device sc_dev;
58 1.1 tsubai int nv_type;
59 1.1 tsubai char *nv_port;
60 1.1 tsubai char *nv_data;
61 1.1 tsubai };
62 1.1 tsubai
63 1.1 tsubai struct cfattach nvram_ca = {
64 1.1 tsubai sizeof(struct nvram_softc), nvram_match, nvram_attach
65 1.1 tsubai };
66 1.1 tsubai
67 1.1 tsubai extern struct cfdriver nvram_cd;
68 1.1 tsubai
69 1.1 tsubai int
70 1.1 tsubai nvram_match(parent, cf, aux)
71 1.1 tsubai struct device *parent;
72 1.1 tsubai struct cfdata *cf;
73 1.1 tsubai void *aux;
74 1.1 tsubai {
75 1.1 tsubai struct confargs *ca = aux;
76 1.1 tsubai
77 1.1 tsubai if (strcmp(ca->ca_name, "nvram") != 0)
78 1.1 tsubai return 0;
79 1.1 tsubai
80 1.1 tsubai if (ca->ca_nreg == 0)
81 1.1 tsubai return 0;
82 1.1 tsubai
83 1.1 tsubai return 1;
84 1.1 tsubai }
85 1.1 tsubai
86 1.1 tsubai void
87 1.1 tsubai nvram_attach(parent, self, aux)
88 1.1 tsubai struct device *parent, *self;
89 1.1 tsubai void *aux;
90 1.1 tsubai {
91 1.1 tsubai struct nvram_softc *sc = (struct nvram_softc *)self;
92 1.1 tsubai struct confargs *ca = aux;
93 1.1 tsubai int *reg = ca->ca_reg;
94 1.1 tsubai
95 1.1 tsubai printf("\n");
96 1.1 tsubai
97 1.1 tsubai switch (ca->ca_nreg) {
98 1.1 tsubai
99 1.1 tsubai case 8: /* untested */
100 1.1 tsubai sc->nv_type = NVRAM_IOMEM;
101 1.1 tsubai sc->nv_data = mapiodev(ca->ca_baseaddr + reg[0], reg[1]);
102 1.1 tsubai break;
103 1.1 tsubai
104 1.1 tsubai case 16:
105 1.1 tsubai sc->nv_type = NVRAM_PORT;
106 1.1 tsubai sc->nv_port = mapiodev(ca->ca_baseaddr + reg[0], reg[1]);
107 1.1 tsubai sc->nv_data = mapiodev(ca->ca_baseaddr + reg[2], reg[3]);
108 1.1 tsubai break;
109 1.1 tsubai
110 1.1 tsubai case 0:
111 1.1 tsubai default:
112 1.1 tsubai sc->nv_type = NVRAM_NONE;
113 1.1 tsubai return;
114 1.1 tsubai }
115 1.1 tsubai }
116 1.1 tsubai
117 1.1 tsubai int
118 1.1 tsubai nvramopen(dev, flag, mode, p)
119 1.1 tsubai dev_t dev;
120 1.1 tsubai int flag, mode;
121 1.1 tsubai struct proc *p;
122 1.1 tsubai {
123 1.1 tsubai return 0;
124 1.1 tsubai }
125 1.1 tsubai
126 1.1 tsubai int
127 1.1 tsubai nvramclose(dev, flag, mode, p)
128 1.1 tsubai dev_t dev;
129 1.1 tsubai int flag, mode;
130 1.1 tsubai struct proc *p;
131 1.1 tsubai {
132 1.1 tsubai return 0;
133 1.1 tsubai }
134 1.1 tsubai
135 1.1 tsubai int
136 1.1 tsubai nvramread(dev, uio, flag)
137 1.1 tsubai dev_t dev;
138 1.1 tsubai struct uio *uio;
139 1.1 tsubai int flag;
140 1.1 tsubai {
141 1.1 tsubai struct nvram_softc *sc;
142 1.1 tsubai u_int off, cnt;
143 1.1 tsubai int i;
144 1.1 tsubai int error = 0;
145 1.1 tsubai char *buf;
146 1.1 tsubai
147 1.1 tsubai sc = nvram_cd.cd_devs[0];
148 1.1 tsubai
149 1.1 tsubai off = uio->uio_offset;
150 1.1 tsubai cnt = uio->uio_resid;
151 1.1 tsubai
152 1.1 tsubai if (off > NVRAM_SIZE || cnt > NVRAM_SIZE)
153 1.1 tsubai return EFAULT;
154 1.1 tsubai
155 1.1 tsubai if (off + cnt > NVRAM_SIZE)
156 1.1 tsubai cnt = NVRAM_SIZE - off;
157 1.1 tsubai
158 1.1 tsubai buf = malloc(NVRAM_SIZE, M_DEVBUF, M_WAITOK);
159 1.1 tsubai if (buf == NULL) {
160 1.1 tsubai error = EAGAIN;
161 1.1 tsubai goto out;
162 1.1 tsubai }
163 1.1 tsubai
164 1.1 tsubai switch (sc->nv_type) {
165 1.1 tsubai
166 1.1 tsubai case NVRAM_IOMEM:
167 1.1 tsubai for (i = 0; i < NVRAM_SIZE; i++)
168 1.1 tsubai buf[i] = sc->nv_data[i * 16];
169 1.1 tsubai
170 1.1 tsubai break;
171 1.1 tsubai
172 1.1 tsubai case NVRAM_PORT:
173 1.1 tsubai for (i = 0; i < NVRAM_SIZE; i += 32) {
174 1.1 tsubai int j;
175 1.1 tsubai
176 1.1 tsubai out8(sc->nv_port, i / 32);
177 1.1 tsubai for (j = 0; j < 32; j++) {
178 1.1 tsubai buf[i + j] = sc->nv_data[j * 16];
179 1.1 tsubai }
180 1.1 tsubai }
181 1.1 tsubai break;
182 1.1 tsubai
183 1.1 tsubai default:
184 1.1 tsubai goto out;
185 1.1 tsubai }
186 1.1 tsubai
187 1.1 tsubai error = uiomove(buf + off, cnt, uio);
188 1.1 tsubai
189 1.1 tsubai out:
190 1.1 tsubai if (buf)
191 1.1 tsubai free(buf, M_DEVBUF);
192 1.1 tsubai
193 1.1 tsubai return error;
194 1.1 tsubai }
195 1.1 tsubai
196 1.1 tsubai int
197 1.1 tsubai nvramwrite(dev, uio, flag)
198 1.1 tsubai dev_t dev;
199 1.1 tsubai struct uio *uio;
200 1.1 tsubai int flag;
201 1.1 tsubai {
202 1.1 tsubai return ENXIO;
203 1.1 tsubai }
204 1.1 tsubai
205 1.1 tsubai int
206 1.1 tsubai nvramioctl(dev, cmd, data, flag, p)
207 1.1 tsubai dev_t dev;
208 1.1 tsubai u_long cmd;
209 1.1 tsubai caddr_t data;
210 1.1 tsubai int flag;
211 1.1 tsubai struct proc *p;
212 1.1 tsubai {
213 1.1 tsubai return ENOTTY;
214 1.1 tsubai }
215 1.1 tsubai
216 1.3 simonb paddr_t
217 1.1 tsubai nvrammmap(dev, off, prot)
218 1.1 tsubai dev_t dev;
219 1.3 simonb off_t off;
220 1.3 simonb int prot;
221 1.1 tsubai {
222 1.2 mrg return -1;
223 1.1 tsubai }
224