bcm2835_genfb.c revision 1.11 1 1.11 rin /* $NetBSD: bcm2835_genfb.c,v 1.11 2020/12/01 04:17:10 rin Exp $ */
2 1.1 jmcneill
3 1.1 jmcneill /*-
4 1.1 jmcneill * Copyright (c) 2013 Jared D. McNeill <jmcneill (at) invisible.ca>
5 1.1 jmcneill * All rights reserved.
6 1.1 jmcneill *
7 1.1 jmcneill * Redistribution and use in source and binary forms, with or without
8 1.1 jmcneill * modification, are permitted provided that the following conditions
9 1.1 jmcneill * are met:
10 1.1 jmcneill * 1. Redistributions of source code must retain the above copyright
11 1.1 jmcneill * notice, this list of conditions and the following disclaimer.
12 1.1 jmcneill * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jmcneill * notice, this list of conditions and the following disclaimer in the
14 1.1 jmcneill * documentation and/or other materials provided with the distribution.
15 1.1 jmcneill *
16 1.1 jmcneill * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 jmcneill * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 jmcneill * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 jmcneill * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 jmcneill * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 jmcneill * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 jmcneill * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 jmcneill * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 jmcneill * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 jmcneill * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 jmcneill * POSSIBILITY OF SUCH DAMAGE.
27 1.1 jmcneill */
28 1.1 jmcneill
29 1.1 jmcneill /*
30 1.1 jmcneill * Generic framebuffer console driver
31 1.1 jmcneill */
32 1.1 jmcneill
33 1.1 jmcneill #include <sys/cdefs.h>
34 1.11 rin __KERNEL_RCSID(0, "$NetBSD: bcm2835_genfb.c,v 1.11 2020/12/01 04:17:10 rin Exp $");
35 1.1 jmcneill
36 1.1 jmcneill #include <sys/param.h>
37 1.1 jmcneill #include <sys/types.h>
38 1.10 rin #include <sys/bus.h>
39 1.10 rin #include <sys/conf.h>
40 1.1 jmcneill #include <sys/device.h>
41 1.11 rin #include <sys/endian.h>
42 1.1 jmcneill #include <sys/kmem.h>
43 1.10 rin #include <sys/systm.h>
44 1.1 jmcneill
45 1.8 skrll #include <dev/fdt/fdtvar.h>
46 1.1 jmcneill
47 1.1 jmcneill #include <dev/wsfb/genfbvar.h>
48 1.1 jmcneill
49 1.1 jmcneill struct bcmgenfb_softc {
50 1.1 jmcneill struct genfb_softc sc_gen;
51 1.1 jmcneill bus_space_tag_t sc_iot;
52 1.1 jmcneill bus_space_handle_t sc_ioh;
53 1.2 jmcneill
54 1.2 jmcneill uint32_t sc_wstype;
55 1.1 jmcneill };
56 1.1 jmcneill
57 1.1 jmcneill static int bcmgenfb_match(device_t, cfdata_t, void *);
58 1.1 jmcneill static void bcmgenfb_attach(device_t, device_t, void *);
59 1.1 jmcneill
60 1.1 jmcneill static int bcmgenfb_ioctl(void *, void *, u_long, void *, int, lwp_t *);
61 1.1 jmcneill static paddr_t bcmgenfb_mmap(void *, void *, off_t, int);
62 1.5 skrll static bool bcmgenfb_shutdown(device_t, int);
63 1.5 skrll
64 1.5 skrll void bcmgenfb_set_console_dev(device_t);
65 1.7 macallan void bcmgenfb_set_ioctl(int(*)(void *, void *, u_long, void *, int, struct lwp *));
66 1.5 skrll void bcmgenfb_ddb_trap_callback(int);
67 1.5 skrll
68 1.5 skrll static device_t bcmgenfb_console_dev = NULL;
69 1.7 macallan int (*bcmgenfb_ioctl_handler)(void *, void *, u_long, void *, int, struct lwp *) = NULL;
70 1.1 jmcneill
71 1.1 jmcneill CFATTACH_DECL_NEW(bcmgenfb, sizeof(struct bcmgenfb_softc),
72 1.1 jmcneill bcmgenfb_match, bcmgenfb_attach, NULL, NULL);
73 1.1 jmcneill
74 1.1 jmcneill static int
75 1.1 jmcneill bcmgenfb_match(device_t parent, cfdata_t match, void *aux)
76 1.1 jmcneill {
77 1.8 skrll const char * const compatible[] = { "brcm,bcm2835-fb", NULL };
78 1.8 skrll struct fdt_attach_args * const faa = aux;
79 1.1 jmcneill
80 1.8 skrll return of_match_compatible(faa->faa_phandle, compatible);
81 1.1 jmcneill }
82 1.1 jmcneill
83 1.1 jmcneill static void
84 1.1 jmcneill bcmgenfb_attach(device_t parent, device_t self, void *aux)
85 1.1 jmcneill {
86 1.1 jmcneill struct bcmgenfb_softc *sc = device_private(self);
87 1.8 skrll struct fdt_attach_args * const faa = aux;
88 1.2 jmcneill prop_dictionary_t dict = device_properties(self);
89 1.6 riastrad static const struct genfb_ops zero_ops;
90 1.6 riastrad struct genfb_ops ops = zero_ops;
91 1.3 jmcneill bool is_console = false;
92 1.1 jmcneill int error;
93 1.1 jmcneill
94 1.1 jmcneill sc->sc_gen.sc_dev = self;
95 1.8 skrll sc->sc_iot = faa->faa_bst;
96 1.1 jmcneill
97 1.2 jmcneill sc->sc_wstype = WSDISPLAY_TYPE_VC4;
98 1.2 jmcneill prop_dictionary_get_uint32(dict, "wsdisplay_type", &sc->sc_wstype);
99 1.3 jmcneill prop_dictionary_get_bool(dict, "is_console", &is_console);
100 1.11 rin #if BYTE_ORDER == BIG_ENDIAN
101 1.11 rin prop_dictionary_set_bool(dict, "is_swapped", true);
102 1.11 rin #endif
103 1.2 jmcneill
104 1.1 jmcneill genfb_init(&sc->sc_gen);
105 1.1 jmcneill
106 1.1 jmcneill if (sc->sc_gen.sc_width == 0 ||
107 1.1 jmcneill sc->sc_gen.sc_fbsize == 0) {
108 1.1 jmcneill aprint_normal(": disabled\n");
109 1.1 jmcneill return;
110 1.1 jmcneill }
111 1.1 jmcneill
112 1.5 skrll pmf_device_register1(self, NULL, NULL, bcmgenfb_shutdown);
113 1.5 skrll
114 1.1 jmcneill error = bus_space_map(sc->sc_iot, sc->sc_gen.sc_fboffset,
115 1.1 jmcneill sc->sc_gen.sc_fbsize,
116 1.1 jmcneill BUS_SPACE_MAP_LINEAR|BUS_SPACE_MAP_PREFETCHABLE, &sc->sc_ioh);
117 1.1 jmcneill if (error) {
118 1.1 jmcneill aprint_error_dev(self, "couldn't map framebuffer (%d)\n",
119 1.1 jmcneill error);
120 1.1 jmcneill return;
121 1.1 jmcneill }
122 1.1 jmcneill sc->sc_gen.sc_fbaddr = bus_space_vaddr(sc->sc_iot, sc->sc_ioh);
123 1.1 jmcneill
124 1.1 jmcneill ops.genfb_ioctl = bcmgenfb_ioctl;
125 1.1 jmcneill ops.genfb_mmap = bcmgenfb_mmap;
126 1.1 jmcneill
127 1.1 jmcneill aprint_naive("\n");
128 1.3 jmcneill
129 1.3 jmcneill if (is_console)
130 1.3 jmcneill aprint_normal(": switching to framebuffer console\n");
131 1.3 jmcneill else
132 1.3 jmcneill aprint_normal("\n");
133 1.1 jmcneill
134 1.1 jmcneill genfb_attach(&sc->sc_gen, &ops);
135 1.1 jmcneill }
136 1.1 jmcneill
137 1.1 jmcneill static int
138 1.1 jmcneill bcmgenfb_ioctl(void *v, void *vs, u_long cmd, void *data, int flag, lwp_t *l)
139 1.1 jmcneill {
140 1.2 jmcneill struct bcmgenfb_softc *sc = v;
141 1.1 jmcneill struct wsdisplayio_bus_id *busid;
142 1.1 jmcneill
143 1.1 jmcneill switch (cmd) {
144 1.1 jmcneill case WSDISPLAYIO_GTYPE:
145 1.2 jmcneill *(u_int *)data = sc->sc_wstype;
146 1.1 jmcneill return 0;
147 1.1 jmcneill case WSDISPLAYIO_GET_BUSID:
148 1.1 jmcneill busid = data;
149 1.1 jmcneill busid->bus_type = WSDISPLAYIO_BUS_SOC;
150 1.1 jmcneill return 0;
151 1.4 macallan case WSDISPLAYIO_GET_FBINFO:
152 1.4 macallan {
153 1.4 macallan struct wsdisplayio_fbinfo *fbi = data;
154 1.4 macallan struct rasops_info *ri = &sc->sc_gen.vd.active->scr_ri;
155 1.4 macallan int ret;
156 1.4 macallan
157 1.4 macallan ret = wsdisplayio_get_fbinfo(ri, fbi);
158 1.4 macallan fbi->fbi_flags |= WSFB_VRAM_IS_RAM;
159 1.4 macallan return ret;
160 1.4 macallan }
161 1.1 jmcneill default:
162 1.7 macallan if (bcmgenfb_ioctl_handler != NULL)
163 1.7 macallan return bcmgenfb_ioctl_handler(v, vs, cmd, data, flag, l);
164 1.1 jmcneill return EPASSTHROUGH;
165 1.1 jmcneill }
166 1.1 jmcneill }
167 1.1 jmcneill
168 1.1 jmcneill static paddr_t
169 1.1 jmcneill bcmgenfb_mmap(void *v, void *vs, off_t offset, int prot)
170 1.1 jmcneill {
171 1.1 jmcneill struct bcmgenfb_softc *sc = v;
172 1.1 jmcneill
173 1.1 jmcneill if (offset < 0 || offset >= sc->sc_gen.sc_fbsize)
174 1.1 jmcneill return -1;
175 1.1 jmcneill
176 1.1 jmcneill return bus_space_mmap(sc->sc_iot, sc->sc_gen.sc_fboffset, offset,
177 1.1 jmcneill prot, BUS_SPACE_MAP_LINEAR|BUS_SPACE_MAP_PREFETCHABLE);
178 1.1 jmcneill }
179 1.5 skrll
180 1.5 skrll static bool
181 1.5 skrll bcmgenfb_shutdown(device_t self, int flags)
182 1.5 skrll {
183 1.5 skrll genfb_enable_polling(self);
184 1.5 skrll return true;
185 1.5 skrll }
186 1.5 skrll void
187 1.5 skrll bcmgenfb_set_console_dev(device_t dev)
188 1.5 skrll {
189 1.9 ryo /* skip if already set. called from each genfb0,genfb1,... */
190 1.9 ryo if (bcmgenfb_console_dev != NULL)
191 1.9 ryo return;
192 1.9 ryo
193 1.5 skrll bcmgenfb_console_dev = dev;
194 1.5 skrll }
195 1.5 skrll
196 1.5 skrll void
197 1.7 macallan bcmgenfb_set_ioctl(int(*boo)(void *, void *, u_long, void *, int, struct lwp *))
198 1.7 macallan {
199 1.7 macallan bcmgenfb_ioctl_handler = boo;
200 1.7 macallan }
201 1.7 macallan
202 1.7 macallan void
203 1.5 skrll bcmgenfb_ddb_trap_callback(int where)
204 1.5 skrll {
205 1.5 skrll if (bcmgenfb_console_dev == NULL)
206 1.5 skrll return;
207 1.5 skrll
208 1.5 skrll if (where) {
209 1.5 skrll genfb_enable_polling(bcmgenfb_console_dev);
210 1.5 skrll } else {
211 1.5 skrll genfb_disable_polling(bcmgenfb_console_dev);
212 1.5 skrll }
213 1.5 skrll }
214