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
|
/* $NetBSD: drbbc.c,v 1.20 2012/10/27 17:17:28 chs Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Ignatios Souvatzis.
*
* 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 NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``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 FOUNDATION OR CONTRIBUTORS
* 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/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: drbbc.c,v 1.20 2012/10/27 17:17:28 chs Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <sys/systm.h>
#if 0
#include <machine/psl.h>
#endif
#include <machine/cpu.h>
#include <amiga/amiga/device.h>
#include <amiga/amiga/custom.h>
#include <amiga/amiga/cia.h>
#include <amiga/amiga/drcustom.h>
#include <amiga/dev/rtc.h>
#include <dev/clock_subr.h>
#include <dev/ic/ds.h>
int draco_ds_read_bit(void *);
void draco_ds_write_bit(void *, int);
void draco_ds_reset(void *);
void drbbc_attach(device_t, device_t, void *);
int drbbc_match(device_t, cfdata_t, void *);
int dracougettod(todr_chip_handle_t, struct timeval *);
int dracousettod(todr_chip_handle_t, struct timeval *);
static struct todr_chip_handle dracotodr;
struct drbbc_softc {
struct ds_handle sc_dsh;
};
CFATTACH_DECL_NEW(drbbc, sizeof(struct drbbc_softc),
drbbc_match, drbbc_attach, NULL, NULL);
struct drbbc_softc *drbbc_sc;
int
drbbc_match(device_t parent, cfdata_t cf, void *aux)
{
static int drbbc_matched = 0;
/* Allow only one instance. */
if (!is_draco() || !matchname(aux, "drbbc") || drbbc_matched)
return (0);
drbbc_matched = 1;
return (1);
}
void
drbbc_attach(device_t parent, device_t self, void *aux)
{
int i;
struct drbbc_softc *sc;
u_int8_t rombuf[8];
sc = device_private(self);
sc->sc_dsh.ds_read_bit = draco_ds_read_bit;
sc->sc_dsh.ds_write_bit = draco_ds_write_bit;
sc->sc_dsh.ds_reset = draco_ds_reset;
sc->sc_dsh.ds_hw_handle = (void *)(DRCCADDR + DRIOCTLPG*PAGE_SIZE);
sc->sc_dsh.ds_reset(sc->sc_dsh.ds_hw_handle);
ds_write_byte(&sc->sc_dsh, DS_ROM_READ);
for (i=0; i<8; ++i)
rombuf[i] = ds_read_byte(&sc->sc_dsh);
hostid = (rombuf[3] << 24) + (rombuf[2] << 16) +
(rombuf[1] << 8) + rombuf[7];
printf(": ROM %02x %02x%02x%02x%02x%02x%02x %02x (DraCo sernum %ld)\n",
rombuf[7], rombuf[6], rombuf[5], rombuf[4],
rombuf[3], rombuf[2], rombuf[1], rombuf[0],
hostid);
drbbc_sc = sc;
dracotodr.cookie = sc;
dracotodr.todr_gettime = dracougettod;
dracotodr.todr_settime = dracousettod;
todr_attach(&dracotodr);
}
int
draco_ds_read_bit(void *p)
{
struct drioct *draco_ioctl;
draco_ioctl = p;
while (draco_ioctl->io_status & DRSTAT_CLKBUSY);
draco_ioctl->io_clockw1 = 0;
while (draco_ioctl->io_status & DRSTAT_CLKBUSY);
return (draco_ioctl->io_status & DRSTAT_CLKDAT);
}
void
draco_ds_write_bit(void *p, int b)
{
struct drioct *draco_ioctl;
draco_ioctl = p;
while (draco_ioctl->io_status & DRSTAT_CLKBUSY);
if (b)
draco_ioctl->io_clockw1 = 0;
else
draco_ioctl->io_clockw0 = 0;
}
void
draco_ds_reset(void *p)
{
struct drioct *draco_ioctl;
draco_ioctl = p;
draco_ioctl->io_clockrst = 0;
}
int
dracougettod(todr_chip_handle_t h, struct timeval *tvp)
{
u_int32_t clkbuf;
u_int32_t usecs;
drbbc_sc->sc_dsh.ds_reset(drbbc_sc->sc_dsh.ds_hw_handle);
ds_write_byte(&drbbc_sc->sc_dsh, DS_ROM_SKIP);
ds_write_byte(&drbbc_sc->sc_dsh, DS_MEM_READ_MEMORY);
/* address of seconds/256: */
ds_write_byte(&drbbc_sc->sc_dsh, 0x02);
ds_write_byte(&drbbc_sc->sc_dsh, 0x02);
usecs = (ds_read_byte(&drbbc_sc->sc_dsh) * 1000000) / 256;
clkbuf = ds_read_byte(&drbbc_sc->sc_dsh)
+ (ds_read_byte(&drbbc_sc->sc_dsh)<<8)
+ (ds_read_byte(&drbbc_sc->sc_dsh)<<16)
+ (ds_read_byte(&drbbc_sc->sc_dsh)<<24);
/* BSD time is wrt. 1.1.1970; AmigaOS time wrt. 1.1.1978 */
clkbuf += (8*365 + 2) * 86400;
tvp->tv_sec = clkbuf;
tvp->tv_usec = usecs;
return (0);
}
int
dracousettod(todr_chip_handle_t h, struct timeval *tvp)
{
return (ENXIO);
}
|