1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
/* $OpenBSD: sram.c,v 1.20 2010/12/26 15:40:59 miod Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/param.h>
#include <sys/ioctl.h>
#include <sys/buf.h>
#include <sys/systm.h>
#include <sys/uio.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <machine/autoconf.h>
#include <machine/conf.h>
#include <machine/cpu.h>
#include <machine/mioctl.h>
#include <mvme68k/dev/memdevs.h>
#include "mc.h"
#if NMC > 0
#include <mvme68k/dev/mcreg.h>
#endif
#include <uvm/uvm_extern.h>
struct sramsoftc {
struct device sc_dev;
paddr_t sc_paddr;
vaddr_t sc_vaddr;
int sc_len;
};
void sramattach(struct device *, struct device *, void *);
int srammatch(struct device *, void *, void *);
struct cfattach sram_ca = {
sizeof(struct sramsoftc), srammatch, sramattach
};
struct cfdriver sram_cd = {
NULL, "sram", DV_DULL
};
int
srammatch(parent, vcf, args)
struct device *parent;
void *vcf, *args;
{
struct confargs *ca = args;
if (cputyp == CPU_147)
return (0);
return (!badpaddr(ca->ca_paddr, 1));
}
void
sramattach(parent, self, args)
struct device *parent, *self;
void *args;
{
struct confargs *ca = args;
struct sramsoftc *sc = (struct sramsoftc *)self;
#if defined(MVME162) || defined(MVME172)
struct mcreg *mc;
#endif
switch (cputyp) {
#if defined(MVME162) || defined(MVME172)
case CPU_162:
case CPU_172:
/* XXX this code will almost never be used. just in case. */
mc = sys_mc;
if (!mc)
mc = (struct mcreg *)(IIOV(0xfff00000) + MC_MCCHIP_OFF);
switch (mc->mc_memoptions & MC_MEMOPTIONS_SRAMMASK) {
case MC_MEMOPTIONS_SRAM128K:
sc->sc_len = 128*1024;
break;
case MC_MEMOPTIONS_SRAM512K:
sc->sc_len = 512*1024;
break;
case MC_MEMOPTIONS_SRAM1M:
sc->sc_len = 1024*1024;
break;
case MC_MEMOPTIONS_SRAM2M:
sc->sc_len = 2048*1024;
break;
}
break;
#endif
#ifdef MVME167
case CPU_166:
case CPU_167:
sc->sc_len = 128*1024; /* always 128K */
break;
#endif
#ifdef MVME177
case CPU_176:
case CPU_177:
sc->sc_len = 128*1024; /* always 128K */
break;
#endif
default:
sc->sc_len = 0;
break;
}
printf(": len %d", sc->sc_len);
sc->sc_paddr = ca->ca_paddr;
sc->sc_vaddr = mapiodev(sc->sc_paddr, sc->sc_len);
if (sc->sc_vaddr == 0) {
sc->sc_len = 0;
printf(" -- failed to map");
}
printf("\n");
}
/*ARGSUSED*/
int
sramopen(dev, flag, mode, p)
dev_t dev;
int flag, mode;
struct proc *p;
{
if (minor(dev) >= sram_cd.cd_ndevs ||
sram_cd.cd_devs[minor(dev)] == NULL)
return (ENODEV);
return (0);
}
/*ARGSUSED*/
int
sramclose(dev, flag, mode, p)
dev_t dev;
int flag, mode;
struct proc *p;
{
return (0);
}
/*ARGSUSED*/
int
sramioctl(dev, cmd, data, flag, p)
dev_t dev;
u_long cmd;
caddr_t data;
int flag;
struct proc *p;
{
int unit = minor(dev);
struct sramsoftc *sc = (struct sramsoftc *) sram_cd.cd_devs[unit];
int error = 0;
switch (cmd) {
case MIOCGSIZ:
*(int *)data = sc->sc_len;
break;
default:
error = ENOTTY;
break;
}
return (error);
}
/*ARGSUSED*/
int
sramrw(dev, uio, flags)
dev_t dev;
struct uio *uio;
int flags;
{
int unit = minor(dev);
struct sramsoftc *sc = (struct sramsoftc *) sram_cd.cd_devs[unit];
return (memdevrw(sc->sc_vaddr, sc->sc_len, uio, flags));
}
paddr_t
srammmap(dev, off, prot)
dev_t dev;
off_t off;
int prot;
{
int unit = minor(dev);
struct sramsoftc *sc = (struct sramsoftc *) sram_cd.cd_devs[unit];
if (minor(dev) != 0)
return (-1);
/* allow access only in RAM */
if (off < 0 || off >= round_page(sc->sc_len))
return (-1);
return (sc->sc_paddr + off);
}
|