ti_com.c revision 1.2 1 1.2 jmcneill /* $NetBSD: ti_com.c,v 1.2 2017/10/26 10:56:57 jmcneill Exp $ */
2 1.1 jakllsch
3 1.1 jakllsch /*-
4 1.1 jakllsch * Copyright (c) 2017 Jared McNeill <jmcneill (at) invisible.ca>
5 1.1 jakllsch * All rights reserved.
6 1.1 jakllsch *
7 1.1 jakllsch * Redistribution and use in source and binary forms, with or without
8 1.1 jakllsch * modification, are permitted provided that the following conditions
9 1.1 jakllsch * are met:
10 1.1 jakllsch * 1. Redistributions of source code must retain the above copyright
11 1.1 jakllsch * notice, this list of conditions and the following disclaimer.
12 1.1 jakllsch * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jakllsch * notice, this list of conditions and the following disclaimer in the
14 1.1 jakllsch * documentation and/or other materials provided with the distribution.
15 1.1 jakllsch *
16 1.1 jakllsch * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 jakllsch * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 jakllsch * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 jakllsch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 jakllsch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 jakllsch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 jakllsch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 jakllsch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 jakllsch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 jakllsch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 jakllsch * POSSIBILITY OF SUCH DAMAGE.
27 1.1 jakllsch */
28 1.1 jakllsch
29 1.1 jakllsch #include <sys/cdefs.h>
30 1.1 jakllsch
31 1.2 jmcneill __KERNEL_RCSID(1, "$NetBSD: ti_com.c,v 1.2 2017/10/26 10:56:57 jmcneill Exp $");
32 1.1 jakllsch
33 1.1 jakllsch #include <sys/param.h>
34 1.1 jakllsch #include <sys/bus.h>
35 1.1 jakllsch #include <sys/device.h>
36 1.1 jakllsch #include <sys/intr.h>
37 1.1 jakllsch #include <sys/systm.h>
38 1.1 jakllsch #include <sys/time.h>
39 1.1 jakllsch #include <sys/termios.h>
40 1.1 jakllsch
41 1.1 jakllsch #include <dev/ic/comvar.h>
42 1.1 jakllsch
43 1.1 jakllsch #include <dev/fdt/fdtvar.h>
44 1.1 jakllsch
45 1.1 jakllsch static int ti_com_match(device_t, cfdata_t, void *);
46 1.1 jakllsch static void ti_com_attach(device_t, device_t, void *);
47 1.1 jakllsch
48 1.1 jakllsch static const char * const compatible[] = {
49 1.1 jakllsch "ti,am3352-uart",
50 1.1 jakllsch "ti,omap3-uart",
51 1.1 jakllsch NULL
52 1.1 jakllsch };
53 1.1 jakllsch
54 1.1 jakllsch struct ti_com_softc {
55 1.1 jakllsch struct com_softc ssc_sc;
56 1.1 jakllsch void *ssc_ih;
57 1.1 jakllsch };
58 1.1 jakllsch
59 1.1 jakllsch CFATTACH_DECL_NEW(ti_com, sizeof(struct ti_com_softc),
60 1.1 jakllsch ti_com_match, ti_com_attach, NULL, NULL);
61 1.1 jakllsch
62 1.1 jakllsch static int
63 1.1 jakllsch ti_com_match(device_t parent, cfdata_t cf, void *aux)
64 1.1 jakllsch {
65 1.1 jakllsch struct fdt_attach_args * const faa = aux;
66 1.1 jakllsch
67 1.1 jakllsch return of_match_compatible(faa->faa_phandle, compatible);
68 1.1 jakllsch }
69 1.1 jakllsch
70 1.1 jakllsch static void
71 1.1 jakllsch ti_com_attach(device_t parent, device_t self, void *aux)
72 1.1 jakllsch {
73 1.1 jakllsch struct ti_com_softc * const ssc = device_private(self);
74 1.1 jakllsch struct com_softc * const sc = &ssc->ssc_sc;
75 1.1 jakllsch struct fdt_attach_args * const faa = aux;
76 1.2 jmcneill const int phandle = faa->faa_phandle;
77 1.1 jakllsch bus_space_handle_t bsh;
78 1.1 jakllsch bus_space_tag_t bst;
79 1.1 jakllsch char intrstr[128];
80 1.1 jakllsch bus_addr_t addr;
81 1.1 jakllsch bus_size_t size;
82 1.1 jakllsch int error;
83 1.1 jakllsch
84 1.2 jmcneill if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
85 1.1 jakllsch aprint_error(": couldn't get registers\n");
86 1.1 jakllsch return;
87 1.1 jakllsch }
88 1.1 jakllsch
89 1.1 jakllsch bst = faa->faa_a4x_bst;
90 1.1 jakllsch
91 1.1 jakllsch sc->sc_dev = self;
92 1.1 jakllsch
93 1.2 jmcneill if (of_getprop_uint32(phandle, "clock-frequency", &sc->sc_frequency) != 0) {
94 1.2 jmcneill aprint_error(": missing 'clock-frequency' property\n");
95 1.1 jakllsch return;
96 1.1 jakllsch }
97 1.1 jakllsch
98 1.1 jakllsch sc->sc_type = COM_TYPE_NORMAL;
99 1.1 jakllsch
100 1.1 jakllsch error = bus_space_map(bst, addr, size, 0, &bsh);
101 1.1 jakllsch if (error) {
102 1.1 jakllsch aprint_error(": couldn't map %#llx: %d", (uint64_t)addr, error);
103 1.1 jakllsch return;
104 1.1 jakllsch }
105 1.1 jakllsch
106 1.1 jakllsch COM_INIT_REGS(sc->sc_regs, bst, bsh, addr);
107 1.1 jakllsch
108 1.1 jakllsch com_attach_subr(sc);
109 1.1 jakllsch aprint_naive("\n");
110 1.1 jakllsch
111 1.2 jmcneill if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
112 1.1 jakllsch aprint_error_dev(self, "failed to decode interrupt\n");
113 1.1 jakllsch return;
114 1.1 jakllsch }
115 1.1 jakllsch
116 1.2 jmcneill ssc->ssc_ih = fdtbus_intr_establish(phandle, 0, IPL_SERIAL,
117 1.1 jakllsch FDT_INTR_MPSAFE, comintr, sc);
118 1.1 jakllsch if (ssc->ssc_ih == NULL) {
119 1.1 jakllsch aprint_error_dev(self, "failed to establish interrupt on %s\n",
120 1.1 jakllsch intrstr);
121 1.1 jakllsch }
122 1.1 jakllsch aprint_normal_dev(self, "interrupting on %s\n", intrstr);
123 1.1 jakllsch }
124 1.1 jakllsch
125 1.1 jakllsch /*
126 1.1 jakllsch * Console support
127 1.1 jakllsch */
128 1.1 jakllsch
129 1.1 jakllsch static int
130 1.1 jakllsch ti_com_console_match(int phandle)
131 1.1 jakllsch {
132 1.1 jakllsch return of_match_compatible(phandle, compatible);
133 1.1 jakllsch }
134 1.1 jakllsch
135 1.1 jakllsch static void
136 1.1 jakllsch ti_com_console_consinit(struct fdt_attach_args *faa, u_int uart_freq)
137 1.1 jakllsch {
138 1.1 jakllsch const int phandle = faa->faa_phandle;
139 1.1 jakllsch bus_space_tag_t bst = faa->faa_a4x_bst;
140 1.1 jakllsch bus_addr_t addr;
141 1.1 jakllsch tcflag_t flags;
142 1.1 jakllsch int speed;
143 1.1 jakllsch
144 1.1 jakllsch fdtbus_get_reg(phandle, 0, &addr, NULL);
145 1.1 jakllsch speed = fdtbus_get_stdout_speed();
146 1.1 jakllsch if (speed < 0)
147 1.1 jakllsch speed = 115200; /* default */
148 1.1 jakllsch flags = fdtbus_get_stdout_flags();
149 1.1 jakllsch
150 1.1 jakllsch if (comcnattach(bst, addr, speed, uart_freq, COM_TYPE_NORMAL, flags))
151 1.1 jakllsch panic("Cannot initialize ti com console");
152 1.1 jakllsch }
153 1.1 jakllsch
154 1.1 jakllsch static const struct fdt_console ti_com_console = {
155 1.1 jakllsch .match = ti_com_console_match,
156 1.1 jakllsch .consinit = ti_com_console_consinit,
157 1.1 jakllsch };
158 1.1 jakllsch
159 1.1 jakllsch FDT_CONSOLE(ti_com, &ti_com_console);
160