1 /* $NetBSD: plcom_ifpga.c,v 1.9 2005/12/11 12:17:09 christos Exp $ */
4 * Copyright (c) 2001 ARM Ltd
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the company may not be used to endorse or promote
16 * products derived from this software without specific prior written
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
20 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 /* Interface to plcom (PL010) serial driver. */
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: plcom_ifpga.c,v 1.9 2005/12/11 12:17:09 christos Exp $");
37 #include <sys/types.h>
38 #include <sys/device.h>
39 #include <sys/systm.h>
40 #include <sys/param.h>
41 #include <sys/malloc.h>
43 #include <sys/termios.h>
45 #include <machine/intr.h>
46 #include <machine/bus.h>
48 #include <evbarm/dev/plcomreg.h>
49 #include <evbarm/dev/plcomvar.h>
51 #include <evbarm/ifpga/plcom_ifpgavar.h>
53 #include <evbarm/ifpga/ifpgareg.h>
54 #include <evbarm/ifpga/ifpgavar.h>
56 static int plcom_ifpga_match(struct device
*, struct cfdata
*, void *);
57 static void plcom_ifpga_attach(struct device
*, struct device
*, void *);
58 static void plcom_ifpga_set_mcr(void *, int, u_int
);
60 CFATTACH_DECL(plcom_ifpga
, sizeof(struct plcom_softc
),
61 plcom_ifpga_match
, plcom_ifpga_attach
, NULL
, NULL
);
64 plcom_ifpga_match(struct device
*parent
, struct cfdata
*cf
, void *aux
)
70 plcom_ifpga_attach(struct device
*parent
, struct device
*self
, void *aux
)
72 struct plcom_ifpga_softc
*isc
= (struct plcom_ifpga_softc
*)self
;
73 struct plcom_softc
*sc
= &isc
->sc_plcom
;
74 struct ifpga_attach_args
*ifa
= aux
;
76 isc
->sc_iot
= ifa
->ifa_iot
;
77 isc
->sc_ioh
= ifa
->ifa_sc_ioh
;
78 sc
->sc_iounit
= device_unit(&sc
->sc_dev
);
79 sc
->sc_frequency
= IFPGA_UART_CLK
;
80 sc
->sc_iot
= ifa
->ifa_iot
;
83 sc
->sc_set_mcr
= plcom_ifpga_set_mcr
;
84 sc
->sc_set_mcr_arg
= (void *)isc
;
86 if (bus_space_map(ifa
->ifa_iot
, ifa
->ifa_addr
, PLCOM_UART_SIZE
, 0,
88 printf("%s: unable to map device\n", sc
->sc_dev
.dv_xname
);
92 plcom_attach_subr(sc
);
93 isc
->sc_ih
= ifpga_intr_establish(ifa
->ifa_irq
, IPL_SERIAL
, plcomintr
,
95 if (isc
->sc_ih
== NULL
)
96 panic("%s: cannot install interrupt handler",
100 static void plcom_ifpga_set_mcr(void *aux
, int unit
, u_int mcr
)
102 struct plcom_ifpga_softc
*isc
= (struct plcom_ifpga_softc
*)aux
;
110 set
|= IFPGA_SC_CTRL_UART0RTS
;
112 clr
|= IFPGA_SC_CTRL_UART0RTS
;
114 set
|= IFPGA_SC_CTRL_UART0DTR
;
116 clr
|= IFPGA_SC_CTRL_UART0DTR
;
119 set
|= IFPGA_SC_CTRL_UART1RTS
;
121 clr
|= IFPGA_SC_CTRL_UART1RTS
;
123 set
|= IFPGA_SC_CTRL_UART1DTR
;
125 clr
|= IFPGA_SC_CTRL_UART1DTR
;
131 bus_space_write_1(isc
->sc_iot
, isc
->sc_ioh
, IFPGA_SC_CTRLS
,
134 bus_space_write_1(isc
->sc_iot
, isc
->sc_ioh
, IFPGA_SC_CTRLC
,