epcom_ts.c revision 1.3 1 1.3 dsl /* $NetBSD: epcom_ts.c,v 1.3 2009/03/14 15:36:05 dsl Exp $ */
2 1.1 joff /*
3 1.1 joff * Copyright (c) 2002
4 1.1 joff * Ichiro FUKUHARA <ichiro (at) ichiro.org>.
5 1.1 joff * All rights reserved.
6 1.1 joff *
7 1.1 joff * Redistribution and use in source and binary forms, with or without
8 1.1 joff * modification, are permitted provided that the following conditions
9 1.1 joff * are met:
10 1.1 joff * 1. Redistributions of source code must retain the above copyright
11 1.1 joff * notice, this list of conditions and the following disclaimer.
12 1.1 joff * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 joff * notice, this list of conditions and the following disclaimer in the
14 1.1 joff * documentation and/or other materials provided with the distribution.
15 1.1 joff * 3. All advertising materials mentioning features or use of this software
16 1.1 joff * must display the following acknowledgement:
17 1.1 joff * This product includes software developed by Ichiro FUKUHARA.
18 1.1 joff * 4. The name of the company nor the name of the author may be used to
19 1.1 joff * endorse or promote products derived from this software without specific
20 1.1 joff * prior written permission.
21 1.1 joff *
22 1.1 joff * THIS SOFTWARE IS PROVIDED BY ICHIRO FUKUHARA ``AS IS'' AND ANY EXPRESS OR
23 1.1 joff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 joff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 joff * IN NO EVENT SHALL ICHIRO FUKUHARA OR THE VOICES IN HIS HEAD BE LIABLE FOR
26 1.1 joff * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 joff * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 joff * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 joff * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 joff * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 joff * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 joff * SUCH DAMAGE.
33 1.1 joff */
34 1.1 joff
35 1.1 joff #include <sys/cdefs.h>
36 1.3 dsl __KERNEL_RCSID(0, "$NetBSD: epcom_ts.c,v 1.3 2009/03/14 15:36:05 dsl Exp $");
37 1.1 joff
38 1.1 joff /* Front-end of epcom */
39 1.1 joff
40 1.1 joff #include <sys/types.h>
41 1.1 joff #include <sys/device.h>
42 1.1 joff #include <sys/systm.h>
43 1.1 joff #include <sys/param.h>
44 1.1 joff #include <sys/malloc.h>
45 1.1 joff
46 1.1 joff #include <sys/termios.h>
47 1.1 joff
48 1.1 joff #include <machine/intr.h>
49 1.1 joff #include <machine/bus.h>
50 1.1 joff
51 1.1 joff #include <arm/ep93xx/epcomreg.h>
52 1.1 joff #include <arm/ep93xx/epcomvar.h>
53 1.1 joff #include <arm/ep93xx/ep93xxreg.h>
54 1.1 joff #include <arm/ep93xx/ep93xxvar.h>
55 1.1 joff #include <arm/ep93xx/epsocvar.h>
56 1.1 joff
57 1.1 joff #include <evbarm/tsarm/epcom_tsvar.h>
58 1.1 joff
59 1.1 joff static int epcom_ts_match(struct device *, struct cfdata *, void *);
60 1.1 joff static void epcom_ts_attach(struct device *, struct device *, void *);
61 1.1 joff
62 1.1 joff CFATTACH_DECL(epcom_ts, sizeof(struct epcom_ts_softc),
63 1.1 joff epcom_ts_match, epcom_ts_attach, NULL, NULL);
64 1.1 joff
65 1.1 joff static int
66 1.3 dsl epcom_ts_match(struct device *parent, struct cfdata *match, void *aux)
67 1.1 joff {
68 1.1 joff if (strcmp(match->cf_name, "epcom") == 0)
69 1.1 joff return 1;
70 1.1 joff return 0;
71 1.1 joff }
72 1.1 joff
73 1.1 joff static void
74 1.1 joff epcom_ts_attach(parent, self, aux)
75 1.1 joff struct device *parent;
76 1.1 joff struct device *self;
77 1.1 joff void *aux;
78 1.1 joff {
79 1.1 joff struct epcom_ts_softc *esc = (struct epcom_ts_softc *)self;
80 1.1 joff struct epcom_softc *sc = &esc->sc_epcom;
81 1.1 joff struct epsoc_attach_args *sa = aux;
82 1.1 joff u_int32_t pwrcnt;
83 1.1 joff bus_space_handle_t ioh;
84 1.1 joff
85 1.1 joff esc->sc_iot = sa->sa_iot;
86 1.1 joff sc->sc_iot = sa->sa_iot;
87 1.1 joff sc->sc_hwbase = sa->sa_addr;
88 1.1 joff
89 1.1 joff printf("\n");
90 1.1 joff
91 1.1 joff bus_space_map(sa->sa_iot, sa->sa_addr, sa->sa_size, 0, &sc->sc_ioh);
92 1.1 joff
93 1.1 joff bus_space_map(sa->sa_iot, EP93XX_APB_HWBASE + EP93XX_APB_SYSCON,
94 1.1 joff EP93XX_APB_SYSCON_SIZE, 0, &ioh);
95 1.1 joff pwrcnt = bus_space_read_4(sa->sa_iot, ioh, EP93XX_SYSCON_PwrCnt);
96 1.1 joff pwrcnt &= ~(PwrCnt_UARTBAUD);
97 1.1 joff bus_space_write_4(sa->sa_iot, ioh, EP93XX_SYSCON_PwrCnt, pwrcnt);
98 1.1 joff bus_space_unmap(sa->sa_iot, ioh, EP93XX_APB_SYSCON_SIZE);
99 1.1 joff
100 1.1 joff epcom_attach_subr(sc);
101 1.1 joff ep93xx_intr_establish(sa->sa_intr, IPL_SERIAL, epcomintr, sc);
102 1.1 joff }
103