ti_com.c revision 1.1 1 1.1 jakllsch /* $NetBSD: ti_com.c,v 1.1 2017/10/26 01:16:32 jakllsch 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.1 jakllsch __KERNEL_RCSID(1, "$NetBSD: ti_com.c,v 1.1 2017/10/26 01:16:32 jakllsch 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 struct clk *ssc_clk;
59 1.1 jakllsch struct fdtbus_reset *ssc_rst;
60 1.1 jakllsch };
61 1.1 jakllsch
62 1.1 jakllsch CFATTACH_DECL_NEW(ti_com, sizeof(struct ti_com_softc),
63 1.1 jakllsch ti_com_match, ti_com_attach, NULL, NULL);
64 1.1 jakllsch
65 1.1 jakllsch static int
66 1.1 jakllsch ti_com_match(device_t parent, cfdata_t cf, void *aux)
67 1.1 jakllsch {
68 1.1 jakllsch struct fdt_attach_args * const faa = aux;
69 1.1 jakllsch
70 1.1 jakllsch return of_match_compatible(faa->faa_phandle, compatible);
71 1.1 jakllsch }
72 1.1 jakllsch
73 1.1 jakllsch static void
74 1.1 jakllsch ti_com_attach(device_t parent, device_t self, void *aux)
75 1.1 jakllsch {
76 1.1 jakllsch struct ti_com_softc * const ssc = device_private(self);
77 1.1 jakllsch struct com_softc * const sc = &ssc->ssc_sc;
78 1.1 jakllsch struct fdt_attach_args * const faa = aux;
79 1.1 jakllsch bus_space_handle_t bsh;
80 1.1 jakllsch bus_space_tag_t bst;
81 1.1 jakllsch char intrstr[128];
82 1.1 jakllsch bus_addr_t addr;
83 1.1 jakllsch bus_size_t size;
84 1.1 jakllsch int error;
85 1.1 jakllsch
86 1.1 jakllsch if (fdtbus_get_reg(faa->faa_phandle, 0, &addr, &size) != 0) {
87 1.1 jakllsch aprint_error(": couldn't get registers\n");
88 1.1 jakllsch return;
89 1.1 jakllsch }
90 1.1 jakllsch
91 1.1 jakllsch bst = faa->faa_a4x_bst;
92 1.1 jakllsch
93 1.1 jakllsch sc->sc_dev = self;
94 1.1 jakllsch
95 1.1 jakllsch ssc->ssc_clk = fdtbus_clock_get_index(faa->faa_phandle, 0);
96 1.1 jakllsch ssc->ssc_rst = fdtbus_reset_get_index(faa->faa_phandle, 0);
97 1.1 jakllsch
98 1.1 jakllsch #if 0
99 1.1 jakllsch if (ssc->ssc_clk == NULL) {
100 1.1 jakllsch aprint_error(": couldn't get frequency\n");
101 1.1 jakllsch return;
102 1.1 jakllsch }
103 1.1 jakllsch
104 1.1 jakllsch sc->sc_frequency = clk_get_rate(ssc->ssc_clk);
105 1.1 jakllsch #else
106 1.1 jakllsch sc->sc_frequency = 48000000;
107 1.1 jakllsch #endif
108 1.1 jakllsch sc->sc_type = COM_TYPE_NORMAL;
109 1.1 jakllsch
110 1.1 jakllsch error = bus_space_map(bst, addr, size, 0, &bsh);
111 1.1 jakllsch if (error) {
112 1.1 jakllsch aprint_error(": couldn't map %#llx: %d", (uint64_t)addr, error);
113 1.1 jakllsch return;
114 1.1 jakllsch }
115 1.1 jakllsch
116 1.1 jakllsch COM_INIT_REGS(sc->sc_regs, bst, bsh, addr);
117 1.1 jakllsch
118 1.1 jakllsch com_attach_subr(sc);
119 1.1 jakllsch aprint_naive("\n");
120 1.1 jakllsch
121 1.1 jakllsch if (!fdtbus_intr_str(faa->faa_phandle, 0, intrstr, sizeof(intrstr))) {
122 1.1 jakllsch aprint_error_dev(self, "failed to decode interrupt\n");
123 1.1 jakllsch return;
124 1.1 jakllsch }
125 1.1 jakllsch
126 1.1 jakllsch ssc->ssc_ih = fdtbus_intr_establish(faa->faa_phandle, 0, IPL_SERIAL,
127 1.1 jakllsch FDT_INTR_MPSAFE, comintr, sc);
128 1.1 jakllsch if (ssc->ssc_ih == NULL) {
129 1.1 jakllsch aprint_error_dev(self, "failed to establish interrupt on %s\n",
130 1.1 jakllsch intrstr);
131 1.1 jakllsch }
132 1.1 jakllsch aprint_normal_dev(self, "interrupting on %s\n", intrstr);
133 1.1 jakllsch }
134 1.1 jakllsch
135 1.1 jakllsch /*
136 1.1 jakllsch * Console support
137 1.1 jakllsch */
138 1.1 jakllsch
139 1.1 jakllsch static int
140 1.1 jakllsch ti_com_console_match(int phandle)
141 1.1 jakllsch {
142 1.1 jakllsch return of_match_compatible(phandle, compatible);
143 1.1 jakllsch }
144 1.1 jakllsch
145 1.1 jakllsch static void
146 1.1 jakllsch ti_com_console_consinit(struct fdt_attach_args *faa, u_int uart_freq)
147 1.1 jakllsch {
148 1.1 jakllsch const int phandle = faa->faa_phandle;
149 1.1 jakllsch bus_space_tag_t bst = faa->faa_a4x_bst;
150 1.1 jakllsch bus_addr_t addr;
151 1.1 jakllsch tcflag_t flags;
152 1.1 jakllsch int speed;
153 1.1 jakllsch
154 1.1 jakllsch fdtbus_get_reg(phandle, 0, &addr, NULL);
155 1.1 jakllsch speed = fdtbus_get_stdout_speed();
156 1.1 jakllsch if (speed < 0)
157 1.1 jakllsch speed = 115200; /* default */
158 1.1 jakllsch flags = fdtbus_get_stdout_flags();
159 1.1 jakllsch
160 1.1 jakllsch if (comcnattach(bst, addr, speed, uart_freq, COM_TYPE_NORMAL, flags))
161 1.1 jakllsch panic("Cannot initialize ti com console");
162 1.1 jakllsch }
163 1.1 jakllsch
164 1.1 jakllsch static const struct fdt_console ti_com_console = {
165 1.1 jakllsch .match = ti_com_console_match,
166 1.1 jakllsch .consinit = ti_com_console_consinit,
167 1.1 jakllsch };
168 1.1 jakllsch
169 1.1 jakllsch FDT_CONSOLE(ti_com, &ti_com_console);
170