1 /*-
2 * Copyright (C) 2003
3 * Hidetoshi Shimokawa. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 *
16 * This product includes software developed by Hidetoshi Shimokawa.
17 *
18 * 4. Neither the name of the author nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * $Id: dcons_crom.c,v 1.8 2003/10/23 15:47:21 simokawa Exp $
35 * $FreeBSD$
36 */
37
38 #include <sys/param.h>
39 #include <sys/kernel.h>
40 #include <sys/module.h>
41 #include <sys/systm.h>
42 #include <sys/types.h>
43 #include <sys/conf.h>
44 #include <sys/malloc.h>
45
46 #include <sys/bus.h>
47 #include <machine/bus.h>
48
49 #ifdef __DragonFly__
50 #include <bus/firewire/firewire.h>
51 #include <bus/firewire/firewirereg.h>
52 #include <bus/firewire/iec13213.h>
53 #include "dcons.h"
54 #include "dcons_os.h"
55 #else
56 #include <dev/firewire/firewire.h>
57 #include <dev/firewire/firewirereg.h>
58 #include <dev/firewire/iec13213.h>
59 #include <dev/dcons/dcons.h>
60 #include <dev/dcons/dcons_os.h>
61 #endif
62
63 #include <sys/cons.h>
64
65 static bus_addr_t dcons_paddr;
66
67 #if __FreeBSD_version >= 500000
68 static int force_console = 0;
69 TUNABLE_INT("hw.firewire.dcons_crom.force_console", &force_console);
70 #endif
71
72 #ifndef CSRVAL_VENDOR_PRIVATE
73 #define NEED_NEW_DRIVER
74 #endif
75
76 #define ADDR_HI(x) (((x) >> 24) & 0xffffff)
77 #define ADDR_LO(x) ((x) & 0xffffff)
78
79 struct dcons_crom_softc {
80 struct firewire_dev_comm fd;
81 struct crom_chunk unit;
82 struct crom_chunk spec;
83 struct crom_chunk ver;
84 bus_dma_tag_t dma_tag;
85 bus_dmamap_t dma_map;
86 bus_addr_t bus_addr;
87 };
88
89 static void
90 dcons_crom_identify(driver_t *driver, device_t parent)
91 {
92 BUS_ADD_CHILD(parent, 0, "dcons_crom", device_get_unit(parent));
93 }
94
95 static int
96 dcons_crom_probe(device_t dev)
97 {
98 device_t pa;
99
100 pa = device_get_parent(dev);
101 if(device_get_unit(dev) != device_get_unit(pa)){
102 return(ENXIO);
103 }
104
105 device_set_desc(dev, "dcons configuration ROM");
106 return (0);
107 }
108
109 #ifndef NEED_NEW_DRIVER
110 static void
111 dcons_crom_post_busreset(void *arg)
112 {
113 struct dcons_crom_softc *sc;
114 struct crom_src *src;
115 struct crom_chunk *root;
116
117 sc = (struct dcons_crom_softc *) arg;
118 src = sc->fd.fc->crom_src;
119 root = sc->fd.fc->crom_root;
120
121 bzero(&sc->unit, sizeof(struct crom_chunk));
122
123 crom_add_chunk(src, root, &sc->unit, CROM_UDIR);
124 crom_add_entry(&sc->unit, CSRKEY_SPEC, CSRVAL_VENDOR_PRIVATE);
125 crom_add_simple_text(src, &sc->unit, &sc->spec, "FreeBSD");
126 crom_add_entry(&sc->unit, CSRKEY_VER, DCONS_CSR_VAL_VER);
127 crom_add_simple_text(src, &sc->unit, &sc->ver, "dcons");
128 crom_add_entry(&sc->unit, DCONS_CSR_KEY_HI, ADDR_HI(dcons_paddr));
129 crom_add_entry(&sc->unit, DCONS_CSR_KEY_LO, ADDR_LO(dcons_paddr));
130 }
131 #endif
132
133 static void
134 dmamap_cb(void *arg, bus_dma_segment_t *segments, int seg, int error)
135 {
136 struct dcons_crom_softc *sc;
137
138 if (error)
139 printf("dcons_dmamap_cb: error=%d\n", error);
140
141 sc = (struct dcons_crom_softc *)arg;
142 sc->bus_addr = segments[0].ds_addr;
143
144 bus_dmamap_sync(sc->dma_tag, sc->dma_map, BUS_DMASYNC_PREWRITE);
145 device_printf(sc->fd.dev,
146 #if __FreeBSD_version < 500000
147 "bus_addr 0x%x\n", sc->bus_addr);
148 #else
149 "bus_addr 0x%jx\n", (uintmax_t)sc->bus_addr);
150 #endif
151 if (dcons_paddr != 0) {
152 /* XXX */
153 device_printf(sc->fd.dev, "dcons_paddr is already set\n");
154 return;
155 }
156 dcons_conf->dma_tag = sc->dma_tag;
157 dcons_conf->dma_map = sc->dma_map;
158 dcons_paddr = sc->bus_addr;
159
160 #if __FreeBSD_version >= 500000
161 /* Force to be the high-level console */
162 if (force_console)
163 cnselect(dcons_conf->cdev);
164 #endif
165 }
166
167 static int
168 dcons_crom_attach(device_t dev)
169 {
170 #ifdef NEED_NEW_DRIVER
171 printf("dcons_crom: you need newer firewire driver\n");
172 return (-1);
173 #else
174 struct dcons_crom_softc *sc;
175 int error;
176
177 if (dcons_conf->buf == NULL)
178 return (ENXIO);
179 sc = (struct dcons_crom_softc *) device_get_softc(dev);
180 sc->fd.fc = device_get_ivars(dev);
181 sc->fd.dev = dev;
182 sc->fd.post_explore = NULL;
183 sc->fd.post_busreset = (void *) dcons_crom_post_busreset;
184
185 /* map dcons buffer */
186 error = bus_dma_tag_create(
187 /*parent*/ sc->fd.fc->dmat,
188 /*alignment*/ sizeof(u_int32_t),
189 /*boundary*/ 0,
190 /*lowaddr*/ BUS_SPACE_MAXADDR,
191 /*highaddr*/ BUS_SPACE_MAXADDR,
192 /*filter*/NULL, /*filterarg*/NULL,
193 /*maxsize*/ dcons_conf->size,
194 /*nsegments*/ 1,
195 /*maxsegsz*/ BUS_SPACE_MAXSIZE_32BIT,
196 /*flags*/ BUS_DMA_ALLOCNOW,
197 #if __FreeBSD_version >= 501102
198 /*lockfunc*/busdma_lock_mutex,
199 /*lockarg*/&Giant,
200 #endif
201 &sc->dma_tag);
202 if (error != 0)
203 return (error);
204 error = bus_dmamap_create(sc->dma_tag, BUS_DMA_COHERENT, &sc->dma_map);
205 if (error != 0)
206 return (error);
207 error = bus_dmamap_load(sc->dma_tag, sc->dma_map,
208 (void *)dcons_conf->buf, dcons_conf->size,
209 dmamap_cb, sc, 0);
210 if (error != 0)
211 return (error);
212 return (0);
213 #endif
214 }
215
216 static int
217 dcons_crom_detach(device_t dev)
218 {
219 struct dcons_crom_softc *sc;
220
221 sc = (struct dcons_crom_softc *) device_get_softc(dev);
222 sc->fd.post_busreset = NULL;
223
224 /* XXX */
225 if (dcons_conf->dma_tag == sc->dma_tag)
226 dcons_conf->dma_tag = NULL;
227
228 bus_dmamap_unload(sc->dma_tag, sc->dma_map);
229 bus_dmamap_destroy(sc->dma_tag, sc->dma_map);
230 bus_dma_tag_destroy(sc->dma_tag);
231
232 return 0;
233 }
234
235 static devclass_t dcons_crom_devclass;
236
237 static device_method_t dcons_crom_methods[] = {
238 /* device interface */
239 DEVMETHOD(device_identify, dcons_crom_identify),
240 DEVMETHOD(device_probe, dcons_crom_probe),
241 DEVMETHOD(device_attach, dcons_crom_attach),
242 DEVMETHOD(device_detach, dcons_crom_detach),
243 { 0, 0 }
244 };
245
246 static driver_t dcons_crom_driver = {
247 "dcons_crom",
248 dcons_crom_methods,
249 sizeof(struct dcons_crom_softc),
250 };
251
252 DRIVER_MODULE(dcons_crom, firewire, dcons_crom_driver,
253 dcons_crom_devclass, 0, 0);
254 MODULE_VERSION(dcons_crom, 1);
255 MODULE_DEPEND(dcons_crom, dcons,
256 DCONS_VERSION, DCONS_VERSION, DCONS_VERSION);
257 MODULE_DEPEND(dcons_crom, firewire, 1, 1, 1);
Cache object: f98ebbe8106384e7098af37bd4d4b930
|