j720ssp.c revision 1.29 1 1.29 peter /* $NetBSD: j720ssp.c,v 1.29 2006/03/04 14:09:36 peter Exp $ */
2 1.1 toshii
3 1.1 toshii /*-
4 1.29 peter * Copyright (c) 2001, 2006 The NetBSD Foundation, Inc.
5 1.1 toshii * All rights reserved.
6 1.1 toshii *
7 1.1 toshii * This code is derived from software contributed to The NetBSD Foundation
8 1.29 peter * by IWAMOTO Toshihiro.
9 1.1 toshii *
10 1.1 toshii * Redistribution and use in source and binary forms, with or without
11 1.1 toshii * modification, are permitted provided that the following conditions
12 1.1 toshii * are met:
13 1.1 toshii * 1. Redistributions of source code must retain the above copyright
14 1.1 toshii * notice, this list of conditions and the following disclaimer.
15 1.1 toshii * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 toshii * notice, this list of conditions and the following disclaimer in the
17 1.1 toshii * documentation and/or other materials provided with the distribution.
18 1.1 toshii * 3. All advertising materials mentioning features or use of this software
19 1.1 toshii * must display the following acknowledgement:
20 1.1 toshii * This product includes software developed by the NetBSD
21 1.1 toshii * Foundation, Inc. and its contributors.
22 1.1 toshii * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 toshii * contributors may be used to endorse or promote products derived
24 1.1 toshii * from this software without specific prior written permission.
25 1.1 toshii *
26 1.1 toshii * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 toshii * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 toshii * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 toshii * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 toshii * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 toshii * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 toshii * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 toshii * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 toshii * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 toshii * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 toshii * POSSIBILITY OF SUCH DAMAGE.
37 1.1 toshii */
38 1.1 toshii
39 1.29 peter /* Jornada 720 SSP port. */
40 1.18 lukem
41 1.18 lukem #include <sys/cdefs.h>
42 1.29 peter __KERNEL_RCSID(0, "$NetBSD: j720ssp.c,v 1.29 2006/03/04 14:09:36 peter Exp $");
43 1.10 manu
44 1.1 toshii #include <sys/param.h>
45 1.1 toshii #include <sys/systm.h>
46 1.1 toshii #include <sys/device.h>
47 1.7 ichiro
48 1.7 ichiro #include <arm/sa11x0/sa11x0_var.h>
49 1.7 ichiro #include <arm/sa11x0/sa11x0_gpioreg.h>
50 1.7 ichiro #include <arm/sa11x0/sa11x0_ppcreg.h>
51 1.7 ichiro #include <arm/sa11x0/sa11x0_sspreg.h>
52 1.1 toshii
53 1.29 peter #include <hpcarm/dev/j720sspvar.h>
54 1.10 manu
55 1.29 peter #ifdef DEBUG
56 1.29 peter #define DPRINTF(arg) printf arg
57 1.1 toshii #else
58 1.29 peter #define DPRINTF(arg) /* nothing */
59 1.1 toshii #endif
60 1.1 toshii
61 1.29 peter static int j720ssp_match(struct device *, struct cfdata *, void *);
62 1.29 peter static void j720ssp_attach(struct device *, struct device *, void *);
63 1.29 peter static int j720ssp_search(struct device *, struct cfdata *,
64 1.29 peter const int *, void *);
65 1.29 peter static int j720ssp_print(void *, const char *);
66 1.6 toshii
67 1.29 peter CFATTACH_DECL(j720ssp, sizeof(struct j720ssp_softc),
68 1.29 peter j720ssp_match, j720ssp_attach, NULL, NULL);
69 1.1 toshii
70 1.1 toshii
71 1.29 peter static int
72 1.29 peter j720ssp_match(struct device *parent, struct cfdata *cf, void *aux)
73 1.29 peter {
74 1.1 toshii
75 1.29 peter if (strcmp(cf->cf_name, "j720ssp") != 0)
76 1.29 peter return 0;
77 1.1 toshii
78 1.29 peter return 1;
79 1.1 toshii }
80 1.1 toshii
81 1.29 peter static void
82 1.29 peter j720ssp_attach(struct device *parent, struct device *self, void *aux)
83 1.1 toshii {
84 1.1 toshii struct j720ssp_softc *sc = (void *)self;
85 1.1 toshii struct sa11x0_softc *psc = (void *)parent;
86 1.1 toshii struct sa11x0_attach_args *sa = aux;
87 1.1 toshii
88 1.1 toshii sc->sc_iot = psc->sc_iot;
89 1.1 toshii sc->sc_gpioh = psc->sc_gpioh;
90 1.29 peter sc->sc_parent = psc;
91 1.29 peter
92 1.1 toshii if (bus_space_map(sc->sc_iot, sa->sa_addr, sa->sa_size, 0,
93 1.29 peter &sc->sc_ssph)) {
94 1.29 peter printf(": unable to map SSP registers\n");
95 1.1 toshii return;
96 1.1 toshii }
97 1.1 toshii
98 1.29 peter printf("\n");
99 1.3 toshii
100 1.29 peter config_search_ia(j720ssp_search, self, "j720ssp", NULL);
101 1.1 toshii }
102 1.1 toshii
103 1.29 peter static int
104 1.29 peter j720ssp_search(struct device *parent, struct cfdata *cf,
105 1.29 peter const int *ldesc, void *aux)
106 1.6 toshii {
107 1.6 toshii
108 1.29 peter if (config_match(parent, cf, NULL) > 0)
109 1.29 peter config_attach(parent, cf, NULL, j720ssp_print);
110 1.6 toshii
111 1.9 manu return 0;
112 1.6 toshii }
113 1.6 toshii
114 1.6 toshii static int
115 1.29 peter j720ssp_print(void *aux, const char *pnp)
116 1.10 manu {
117 1.6 toshii
118 1.29 peter return pnp ? QUIET : UNCONF;
119 1.1 toshii }
120 1.1 toshii
121 1.1 toshii int
122 1.29 peter j720ssp_readwrite(struct j720ssp_softc *sc, int drainfifo, int in,
123 1.29 peter int *out, int wait)
124 1.1 toshii {
125 1.29 peter int timeout;
126 1.1 toshii
127 1.29 peter while (!(bus_space_read_4(sc->sc_iot, sc->sc_ssph, SASSP_SR) & SR_TNF))
128 1.29 peter continue;
129 1.1 toshii
130 1.29 peter timeout = 400000;
131 1.29 peter while (bus_space_read_4(sc->sc_iot, sc->sc_gpioh, SAGPIO_PLR) & 0x400)
132 1.29 peter if (--timeout == 0) {
133 1.29 peter DPRINTF(("j720ssp_readwrite: timeout 0\n"));
134 1.1 toshii return -1;
135 1.1 toshii }
136 1.1 toshii if (drainfifo) {
137 1.29 peter while (bus_space_read_4(sc->sc_iot, sc->sc_ssph, SASSP_SR) &
138 1.1 toshii SR_RNE)
139 1.1 toshii bus_space_read_4(sc->sc_iot, sc->sc_ssph, SASSP_DR);
140 1.9 manu delay(wait);
141 1.1 toshii }
142 1.1 toshii
143 1.1 toshii bus_space_write_4(sc->sc_iot, sc->sc_ssph, SASSP_DR, in);
144 1.1 toshii
145 1.9 manu delay(wait);
146 1.29 peter timeout = 100000;
147 1.29 peter while (!(bus_space_read_4(sc->sc_iot, sc->sc_ssph, SASSP_SR) & SR_RNE))
148 1.29 peter if (--timeout == 0) {
149 1.29 peter DPRINTF(("j720ssp_readwrite: timeout 1\n"));
150 1.1 toshii return -1;
151 1.1 toshii }
152 1.1 toshii
153 1.1 toshii *out = bus_space_read_4(sc->sc_iot, sc->sc_ssph, SASSP_DR);
154 1.1 toshii
155 1.1 toshii return 0;
156 1.1 toshii }
157