vga_jazzio.c revision 1.5 1 1.5 soda /* $NetBSD: vga_jazzio.c,v 1.5 2001/06/13 15:12:28 soda Exp $ */
2 1.1 soda /* NetBSD: vga_isa.c,v 1.3 1998/06/12 18:45:48 drochner Exp */
3 1.1 soda
4 1.1 soda /*
5 1.1 soda * Copyright (c) 1995, 1996 Carnegie-Mellon University.
6 1.1 soda * All rights reserved.
7 1.1 soda *
8 1.1 soda * Author: Chris G. Demetriou
9 1.1 soda *
10 1.1 soda * Permission to use, copy, modify and distribute this software and
11 1.1 soda * its documentation is hereby granted, provided that both the copyright
12 1.1 soda * notice and this permission notice appear in all copies of the
13 1.1 soda * software, derivative works or modified versions, and any portions
14 1.1 soda * thereof, and that both notices appear in supporting documentation.
15 1.1 soda *
16 1.1 soda * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
17 1.1 soda * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
18 1.1 soda * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
19 1.1 soda *
20 1.1 soda * Carnegie Mellon requests users of this software to return to
21 1.1 soda *
22 1.1 soda * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
23 1.1 soda * School of Computer Science
24 1.1 soda * Carnegie Mellon University
25 1.1 soda * Pittsburgh PA 15213-3890
26 1.1 soda *
27 1.1 soda * any improvements or extensions that they make and grant Carnegie the
28 1.1 soda * rights to redistribute these changes.
29 1.1 soda */
30 1.1 soda
31 1.1 soda #include <sys/param.h>
32 1.1 soda #include <sys/systm.h>
33 1.1 soda #include <sys/kernel.h>
34 1.1 soda #include <sys/device.h>
35 1.1 soda #include <sys/malloc.h>
36 1.5 soda #include <uvm/uvm_extern.h>
37 1.1 soda
38 1.1 soda #include <machine/autoconf.h>
39 1.1 soda #include <machine/bus.h>
40 1.1 soda
41 1.5 soda #include <mips/pte.h>
42 1.5 soda
43 1.1 soda #include <dev/ic/mc6845reg.h>
44 1.1 soda #include <dev/ic/pcdisplayvar.h>
45 1.1 soda #include <dev/ic/vgareg.h>
46 1.1 soda #include <dev/ic/vgavar.h>
47 1.5 soda
48 1.5 soda #include <arc/arc/wired_map.h>
49 1.4 ur #include <arc/jazz/jazziovar.h>
50 1.4 ur #include <arc/jazz/pica.h>
51 1.1 soda #include <arc/jazz/vga_jazziovar.h>
52 1.1 soda
53 1.1 soda #include <dev/wscons/wsconsio.h>
54 1.1 soda #include <dev/wscons/wsdisplayvar.h>
55 1.1 soda
56 1.1 soda #define WSDISPLAY_TYPE_JAZZVGA WSDISPLAY_TYPE_PCIVGA /* XXX not really */
57 1.1 soda
58 1.1 soda struct vga_jazzio_softc {
59 1.1 soda struct device sc_dev;
60 1.1 soda #if 0
61 1.1 soda struct vga_config *sc_vc; /* VGA configuration */
62 1.1 soda #endif
63 1.1 soda };
64 1.1 soda
65 1.5 soda int vga_jazzio_init_tag __P((char*, bus_space_tag_t *, bus_space_tag_t *));
66 1.2 simonb paddr_t vga_jazzio_mmap __P((void *, off_t, int));
67 1.1 soda int vga_jazzio_match __P((struct device *, struct cfdata *, void *));
68 1.1 soda void vga_jazzio_attach __P((struct device *, struct device *, void *));
69 1.1 soda
70 1.1 soda struct cfattach vga_jazzio_ca = {
71 1.1 soda sizeof(struct vga_jazzio_softc), vga_jazzio_match, vga_jazzio_attach,
72 1.1 soda };
73 1.1 soda
74 1.5 soda int
75 1.5 soda vga_jazzio_init_tag(name, iotp, memtp)
76 1.5 soda char *name;
77 1.1 soda bus_space_tag_t *iotp, *memtp;
78 1.1 soda {
79 1.1 soda static int initialized = 0;
80 1.1 soda static struct arc_bus_space vga_io, vga_mem;
81 1.1 soda
82 1.5 soda if (strcmp(name, "ALI_S3") != 0)
83 1.5 soda return(ENXIO);
84 1.5 soda
85 1.1 soda if (!initialized) {
86 1.1 soda initialized = 1;
87 1.5 soda
88 1.1 soda arc_bus_space_init(&vga_io, "vga_jazzio_io",
89 1.1 soda PICA_P_LOCAL_VIDEO_CTRL, PICA_V_LOCAL_VIDEO_CTRL,
90 1.1 soda 0, PICA_S_LOCAL_VIDEO_CTRL);
91 1.1 soda arc_bus_space_init(&vga_mem, "vga_jazzio_mem",
92 1.1 soda PICA_P_LOCAL_VIDEO, PICA_V_LOCAL_VIDEO,
93 1.1 soda 0, PICA_S_LOCAL_VIDEO);
94 1.5 soda
95 1.5 soda arc_enter_wired(PICA_V_LOCAL_VIDEO_CTRL,
96 1.5 soda PICA_P_LOCAL_VIDEO_CTRL,
97 1.5 soda PICA_P_LOCAL_VIDEO_CTRL + PICA_S_LOCAL_VIDEO_CTRL/2,
98 1.5 soda MIPS3_PG_SIZE_1M);
99 1.5 soda arc_enter_wired(PICA_V_LOCAL_VIDEO,
100 1.5 soda PICA_P_LOCAL_VIDEO,
101 1.5 soda PICA_P_LOCAL_VIDEO + PICA_S_LOCAL_VIDEO/2,
102 1.5 soda MIPS3_PG_SIZE_4M);
103 1.5 soda #if 0
104 1.5 soda arc_enter_wired(PICA_V_EXTND_VIDEO_CTRL,
105 1.5 soda PICA_P_EXTND_VIDEO_CTRL,
106 1.5 soda PICA_P_EXTND_VIDEO_CTRL + PICA_S_EXTND_VIDEO_CTRL/2,
107 1.5 soda MIPS3_PG_SIZE_1M);
108 1.5 soda #endif
109 1.1 soda }
110 1.1 soda *iotp = &vga_io;
111 1.1 soda *memtp = &vga_mem;
112 1.5 soda return (0);
113 1.1 soda }
114 1.1 soda
115 1.2 simonb paddr_t
116 1.1 soda vga_jazzio_mmap(v, offset, prot)
117 1.1 soda void *v;
118 1.1 soda off_t offset;
119 1.1 soda int prot;
120 1.1 soda {
121 1.1 soda if (offset >= 0xa0000 && offset < 0xc0000)
122 1.1 soda return mips_btop(PICA_P_LOCAL_VIDEO + offset);
123 1.1 soda if (offset >= 0x0000 && offset < 0x10000)
124 1.1 soda return mips_btop(PICA_P_LOCAL_VIDEO_CTRL + offset);
125 1.1 soda if (offset >= 0x40000000 && offset < 0x40800000)
126 1.1 soda return mips_btop(PICA_P_LOCAL_VIDEO + offset - 0x40000000);
127 1.1 soda return -1;
128 1.1 soda }
129 1.1 soda
130 1.1 soda int
131 1.1 soda vga_jazzio_match(parent, match, aux)
132 1.1 soda struct device *parent;
133 1.1 soda struct cfdata *match;
134 1.1 soda void *aux;
135 1.1 soda {
136 1.4 ur struct jazzio_attach_args *ja = aux;
137 1.1 soda bus_space_tag_t iot, memt;
138 1.1 soda
139 1.5 soda if (vga_jazzio_init_tag(ja->ja_name, &iot, &memt))
140 1.5 soda return (0);
141 1.1 soda
142 1.1 soda if (!vga_is_console(iot, WSDISPLAY_TYPE_JAZZVGA) &&
143 1.1 soda !vga_common_probe(iot, memt))
144 1.1 soda return (0);
145 1.1 soda
146 1.1 soda return (1);
147 1.1 soda }
148 1.1 soda
149 1.1 soda void
150 1.1 soda vga_jazzio_attach(parent, self, aux)
151 1.1 soda struct device *parent, *self;
152 1.1 soda void *aux;
153 1.1 soda {
154 1.1 soda #if 0
155 1.1 soda struct vga_jazzio_softc *sc = (struct vga_jazzio_softc *)self;
156 1.1 soda #endif
157 1.5 soda struct jazzio_attach_args *ja = aux;
158 1.1 soda bus_space_tag_t iot, memt;
159 1.1 soda
160 1.1 soda printf("\n");
161 1.1 soda
162 1.5 soda vga_jazzio_init_tag(ja->ja_name, &iot, &memt);
163 1.3 thorpej vga_common_attach(self, iot, memt, WSDISPLAY_TYPE_JAZZVGA,
164 1.1 soda vga_jazzio_mmap);
165 1.1 soda }
166 1.1 soda
167 1.1 soda int
168 1.5 soda vga_jazzio_cnattach(name)
169 1.5 soda char *name;
170 1.1 soda {
171 1.1 soda bus_space_tag_t iot, memt;
172 1.1 soda
173 1.5 soda if (vga_jazzio_init_tag(name, &iot, &memt))
174 1.5 soda return (ENXIO);
175 1.1 soda return (vga_cnattach(iot, memt, WSDISPLAY_TYPE_JAZZVGA, 1));
176 1.1 soda }
177