1 /* $NetBSD: aupsc.c,v 1.4 2006/03/06 23:06:17 shige Exp $ */
4 * Copyright (c) 2006 Shigeyuki Fukushima.
7 * Written by Shigeyuki Fukushima.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials provided
17 * with the distribution.
18 * 3. The name of the author may not be used to endorse or promote
19 * products derived from this software without specific prior
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
23 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
26 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
28 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <sys/cdefs.h>
36 __KERNEL_RCSID(0, "$NetBSD: aupsc.c,v 1.4 2006/03/06 23:06:17 shige Exp $");
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/device.h>
43 #include <sys/errno.h>
45 #include <machine/bus.h>
46 #include <machine/cpu.h>
48 #include <mips/alchemy/include/aubusvar.h>
49 #include <mips/alchemy/include/aureg.h>
50 #include <mips/alchemy/dev/aupscreg.h>
51 #include <mips/alchemy/dev/aupscvar.h>
52 #include <mips/alchemy/dev/ausmbus_pscreg.h>
56 bus_space_tag_t sc_bust
;
57 bus_space_handle_t sc_bush
;
61 const struct aupsc_proto
{
65 { "ausmbus", AUPSC_SEL_SMBUS
},
66 { "auspi", AUPSC_SEL_SPI
},
71 { NULL
, AUPSC_SEL_DISABLE
}
74 static int aupsc_match(struct device
*, struct cfdata
*, void *);
75 static void aupsc_attach(struct device
*, struct device
*, void *);
76 static int aupsc_submatch(struct device
*, struct cfdata
*, const int *,
78 static int aupsc_print(void *, const char *);
80 static void aupsc_enable(void *, int);
81 static void aupsc_disable(void *);
82 static void aupsc_suspend(void *);
85 CFATTACH_DECL(aupsc
, sizeof(struct aupsc_softc
),
86 aupsc_match
, aupsc_attach
, NULL
, NULL
);
89 aupsc_match(struct device
*parent
, struct cfdata
*cf
, void *aux
)
91 struct aubus_attach_args
*aa
= (struct aubus_attach_args
*)aux
;
93 if (strcmp(aa
->aa_name
, cf
->cf_name
) != 0)
100 aupsc_attach(struct device
*parent
, struct device
*self
, void *aux
)
104 struct aupsc_softc
*sc
= (struct aupsc_softc
*)self
;
105 struct aubus_attach_args
*aa
= (struct aubus_attach_args
*)aux
;
106 struct aupsc_attach_args pa
;
107 struct aupsc_controller ctrl
;
109 sc
->sc_bust
= aa
->aa_st
;
110 if (bus_space_map(sc
->sc_bust
, aa
->aa_addr
,
111 AUPSC_SIZE
, 0, &sc
->sc_bush
) != 0) {
112 aprint_normal(": unable to map device registers\n");
116 /* Initialize PSC_SEL register */
117 sc
->sc_pscsel
= AUPSC_SEL_DISABLE
;
118 rv
= bus_space_read_4(sc
->sc_bust
, sc
->sc_bush
, AUPSC_SEL
);
119 bus_space_write_4(sc
->sc_bust
, sc
->sc_bush
,
120 AUPSC_SEL
, (rv
& AUPSC_SEL_PS(AUPSC_SEL_DISABLE
)));
121 bus_space_write_4(sc
->sc_bust
, sc
->sc_bush
,
122 AUPSC_CTRL
, AUPSC_CTRL_ENA(AUPSC_CTRL_DISABLE
));
124 aprint_normal(": Alchemy PSC\n");
126 ctrl
.psc_bust
= sc
->sc_bust
;
127 ctrl
.psc_bush
= sc
->sc_bush
;
128 ctrl
.psc_sel
= &(sc
->sc_pscsel
);
129 ctrl
.psc_enable
= aupsc_enable
;
130 ctrl
.psc_disable
= aupsc_disable
;
131 ctrl
.psc_suspend
= aupsc_suspend
;
132 pa
.aupsc_ctrl
= ctrl
;
133 pa
.aupsc_addr
= aa
->aa_addr
;
134 pa
.aupsc_irq
= aa
->aa_irq
[0];
136 for (i
= 0 ; aupsc_protos
[i
].name
!= NULL
; i
++) {
137 struct aupsc_protocol_device p
;
140 pa
.aupsc_name
= aupsc_protos
[i
].name
;
142 p
.sc_dev
= sc
->sc_dev
;
145 aupsc_enable(&p
, aupsc_protos
[i
].protocol
);
146 s
= bus_space_read_4(sc
->sc_bust
, sc
->sc_bush
, AUPSC_STAT
);
149 if (s
& AUPSC_STAT_SR
) {
150 (void) config_found_sm_loc(self
, "aupsc", NULL
,
151 &pa
, aupsc_print
, aupsc_submatch
);
157 aupsc_submatch(struct device
*parent
, struct cfdata
*cf
,
158 const int *ldesc
, void *aux
)
161 return config_match(parent
, cf
, aux
);
165 aupsc_print(void *aux
, const char *pnp
)
168 * By default we don't want to print anything, because
169 * otherwise we see complaints about protocols that aren't
170 * configured on every port. (E.g. each PSC can support 4
171 * protocols, but on a typical design, only one protocol can
172 * be configured per board.)
174 * Basically, this whole thing should be replaced with an
175 * indirect configuration mechanism. Direct configuration
176 * doesn't make sense when we absolutely require kernel
177 * configuration to operate.
179 * Alternatively, a board-specific configuration mechanism
180 * could determine this, and provide direct configuration as
188 aupsc_enable(void *arg
, int proto
)
190 struct aupsc_protocol_device
*sc
= arg
;
193 /* XXX: (TODO) setting clock AUPSC_SEL_CLK */
198 case AUPSC_SEL_SMBUS
:
200 case AUPSC_SEL_DISABLE
:
204 printf("%s: aupsc_enable: unsupported protocol.\n",
205 sc
->sc_dev
.dv_xname
);
209 if (*(sc
->sc_ctrl
.psc_sel
) != AUPSC_SEL_DISABLE
) {
210 printf("%s: aupsc_enable: please disable first.\n",
211 sc
->sc_dev
.dv_xname
);
215 bus_space_write_4(sc
->sc_ctrl
.psc_bust
, sc
->sc_ctrl
.psc_bush
,
216 AUPSC_SEL
, AUPSC_SEL_PS(proto
));
217 bus_space_write_4(sc
->sc_ctrl
.psc_bust
, sc
->sc_ctrl
.psc_bush
,
218 AUPSC_CTRL
, AUPSC_CTRL_ENA(AUPSC_CTRL_ENABLE
));
220 /* wait up to a whole second, but test every 10us */
221 for (i
= 1000000; i
; i
-= 10) {
222 if (bus_space_read_4(sc
->sc_ctrl
.psc_bust
,
223 sc
->sc_ctrl
.psc_bush
, AUPSC_STAT
) & AUPSC_STAT_SR
)
230 aupsc_disable(void *arg
)
232 struct aupsc_protocol_device
*sc
= arg
;
234 bus_space_write_4(sc
->sc_ctrl
.psc_bust
, sc
->sc_ctrl
.psc_bush
,
235 AUPSC_SEL
, AUPSC_SEL_PS(AUPSC_SEL_DISABLE
));
236 bus_space_write_4(sc
->sc_ctrl
.psc_bust
, sc
->sc_ctrl
.psc_bush
,
237 AUPSC_CTRL
, AUPSC_CTRL_ENA(AUPSC_CTRL_DISABLE
));
242 aupsc_suspend(void *arg
)
244 struct aupsc_protocol_device
*sc
= arg
;
246 bus_space_write_4(sc
->sc_ctrl
.psc_bust
, sc
->sc_ctrl
.psc_bush
,
247 AUPSC_CTRL
, AUPSC_CTRL_ENA(AUPSC_CTRL_SUSPEND
));