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
|
/* $OpenBSD: wdc_obio.c,v 1.1 2009/08/24 17:48:14 kettenis Exp $ */
/*
* Copyright (c) 2009 Mark Kettenis
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Driver for Compact Flash interface on the local bus of a PowerQUICC
* MPC8343E processor as found on the RouterBOARD 600.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <machine/autoconf.h>
#include <dev/ata/atavar.h>
#include <dev/ic/wdcvar.h>
struct wdc_obio_softc {
struct wdc_softc sc_wdcdev;
struct channel_softc *sc_chanptr;
struct channel_softc sc_channel;
void *sc_ih;
};
int wdc_obio_match(struct device *, void *, void *);
void wdc_obio_attach(struct device *, struct device *, void *);
struct cfattach wdc_obio_ca = {
sizeof(struct wdc_softc), wdc_obio_match, wdc_obio_attach
};
/*
* The CF slots on the RouterBOARD 600 are wired up in a completely
* retarded way. Instead of using the obvious address lines it uses
* LAD[11:15], which means we need to waste more than 0.5 MB of
* address space to map 10 8-bit registers.
*/
#define WDC_OBIO_REG_NPORTS WDC_NREG
#define WDC_OBIO_REG_SIZE (WDC_OBIO_REG_NPORTS << 16)
#define WDC_OBIO_REG_OFFSET (8 << 17)
#define WDC_OBIO_AUXREG_NPORTS 2
#define WDC_OBIO_AUXREG_SIZE (WDC_OBIO_AUXREG_NPORTS << 16)
#define WDC_OBIO_AUXREG_OFFSET (6 << 16)
u_int8_t wdc_obio_read_reg(struct channel_softc *chp, enum wdc_regs reg);
void wdc_obio_write_reg(struct channel_softc *chp, enum wdc_regs reg,
u_int8_t val);
struct channel_softc_vtbl wdc_obio_vtbl = {
wdc_obio_read_reg,
wdc_obio_write_reg,
wdc_default_lba48_write_reg,
wdc_default_read_raw_multi_2,
wdc_default_write_raw_multi_2,
wdc_default_read_raw_multi_4,
wdc_default_write_raw_multi_4
};
int
wdc_obio_match(struct device *parent, void *cfdata, void *aux)
{
return (1);
}
void
wdc_obio_attach(struct device *parent, struct device *self, void *aux)
{
struct wdc_obio_softc *sc = (void *)self;
struct obio_attach_args *oa = aux;
struct channel_softc *chp = &sc->sc_channel;
chp->cmd_iot = chp->ctl_iot = oa->oa_iot;
chp->_vtbl = &wdc_obio_vtbl;
if (bus_space_map(chp->cmd_iot, oa->oa_offset + WDC_OBIO_REG_OFFSET,
WDC_OBIO_REG_SIZE, 0, &chp->cmd_ioh)) {
printf(": can't map registers\n");
return;
}
if (bus_space_map(chp->ctl_iot, oa->oa_offset + WDC_OBIO_AUXREG_OFFSET,
WDC_OBIO_AUXREG_SIZE, 0, &chp->ctl_ioh)) {
printf(": can't map registers\n");
return;
}
sc->sc_ih = intr_establish(oa->oa_ivec, IST_LEVEL, IPL_BIO, wdcintr,
chp, self->dv_xname);
sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_PREATA;
sc->sc_wdcdev.PIO_cap = 0;
sc->sc_chanptr = chp;
sc->sc_wdcdev.channels = &sc->sc_chanptr;
sc->sc_wdcdev.nchannels = 1;
chp->channel = 0;
chp->wdc = &sc->sc_wdcdev;
chp->ch_queue = malloc(sizeof(struct channel_queue), M_DEVBUF,
M_NOWAIT);
if (chp->ch_queue == NULL) {
printf("%s: can't allocate memory for command queue\n",
self->dv_xname);
/* XXX disestablish interrupt */
return;
}
printf("\n");
wdcattach(chp);
wdc_print_current_modes(chp);
}
u_int8_t
wdc_obio_read_reg(struct channel_softc *chp, enum wdc_regs reg)
{
uint8_t val;
if (reg & _WDC_AUX) {
val = bus_space_read_1(chp->ctl_iot, chp->ctl_ioh,
(reg & _WDC_REGMASK) << 16);
if (val == 0xf9 && reg == wdr_altsts)
val = 0x7f;
} else {
val = bus_space_read_1(chp->cmd_iot, chp->cmd_ioh,
(reg & _WDC_REGMASK) << 16);
if (val == 0xf9 && reg == wdr_status)
val = 0x7f;
}
return val;
}
void
wdc_obio_write_reg(struct channel_softc *chp, enum wdc_regs reg, u_int8_t val)
{
if (reg & _WDC_AUX)
bus_space_write_1(chp->ctl_iot, chp->ctl_ioh,
(reg & _WDC_REGMASK) << 16, val);
else
bus_space_write_1(chp->cmd_iot, chp->cmd_ioh,
(reg & _WDC_REGMASK) << 16, val);
}
|