summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/agp_sis.c
blob: 06ae10e32447f17b964264d9676ebf8e0d34f82a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*	$OpenBSD: agp_sis.c,v 1.18 2014/05/27 12:40:00 kettenis Exp $	*/
/*	$NetBSD: agp_sis.c,v 1.2 2001/09/15 00:25:00 thorpej Exp $	*/

/*-
 * Copyright (c) 2000 Doug Rabson
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 *	$FreeBSD: src/sys/pci/agp_sis.c,v 1.3 2001/07/05 21:28:47 jhb Exp $
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <sys/rwlock.h>

#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/vga_pcivar.h>
#include <dev/pci/agpvar.h>
#include <dev/pci/agpreg.h>

#include <machine/bus.h>

struct agp_sis_softc {
	struct device		 dev;
	struct agp_softc	*agpdev;
	struct agp_gatt		*gatt;
	pci_chipset_tag_t	 ssc_pc;
	pcitag_t		 ssc_tag;
	bus_addr_t		 ssc_apaddr;
	bus_size_t		 ssc_apsize;
	pcireg_t		 ssc_winctrl; /* saved over suspend/resume */
};

void	agp_sis_attach(struct device *, struct device *, void *);
int	agp_sis_activate(struct device *, int);
void	agp_sis_save(struct agp_sis_softc *);
void	agp_sis_restore(struct agp_sis_softc *);
int	agp_sis_probe(struct device *, void *, void *);
bus_size_t agp_sis_get_aperture(void *);
int	agp_sis_set_aperture(void *, bus_size_t);
void	agp_sis_bind_page(void *, bus_addr_t, paddr_t, int);
void	agp_sis_unbind_page(void *, bus_addr_t);
void	agp_sis_flush_tlb(void *);

struct cfattach sisagp_ca = {
	sizeof(struct agp_sis_softc), agp_sis_probe, agp_sis_attach,
	NULL, agp_sis_activate
};

struct cfdriver sisagp_cd = {
	NULL, "sisagp", DV_DULL
};

const struct agp_methods agp_sis_methods = {
	agp_sis_bind_page,
	agp_sis_unbind_page,
	agp_sis_flush_tlb,
};

int
agp_sis_probe(struct device *parent, void *match, void *aux)
{
	struct agp_attach_args	*aa = aux;
	struct pci_attach_args	*pa = aa->aa_pa;

	/* Must be a pchb, don't attach to iommu-style agp devs */
	if (agpbus_probe(aa) == 1 && PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SIS &&
	   PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_SIS_755 &&
	   PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_SIS_760)
		return (1);
	return (0);
}


void
agp_sis_attach(struct device *parent, struct device *self, void *aux)
{
	struct agp_sis_softc	*ssc = (struct agp_sis_softc *)self;
	struct agp_attach_args	*aa = aux;
	struct pci_attach_args	*pa = aa->aa_pa;
	struct agp_gatt		*gatt;
	pcireg_t		 reg;

	if (pci_mapreg_info(pa->pa_pc, pa->pa_tag, AGP_APBASE,
	    PCI_MAPREG_TYPE_MEM, &ssc->ssc_apaddr, NULL, NULL) != 0) {
		printf(": can't get aperture info\n");
		return;
	}

	ssc->ssc_pc = pa->pa_pc;
	ssc->ssc_tag = pa->pa_tag;
	ssc->ssc_apsize = agp_sis_get_aperture(ssc);

	for (;;) {
		gatt = agp_alloc_gatt(pa->pa_dmat, ssc->ssc_apsize);
		if (gatt != NULL)
			break;

		/*
		 * Probably failed to alloc congigious memory. Try reducing the
		 * aperture so that the gatt size reduces.
		 */
		ssc->ssc_apsize /= 2;
		if (agp_sis_set_aperture(ssc, ssc->ssc_apsize)) {
			printf("can't set aperture size\n");
			return;
		}
	}
	ssc->gatt = gatt;

	/* Install the gatt. */
	pci_conf_write(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_ATTBASE,
	    gatt->ag_physical);
	
	/* Enable the aperture and auto-tlb-inval */
	reg = pci_conf_read(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_WINCTRL);
	reg |= (0x05 << 24) | 3;
	pci_conf_write(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_WINCTRL, reg);

	ssc->agpdev = (struct agp_softc *)agp_attach_bus(pa, &agp_sis_methods,
	    ssc->ssc_apaddr, ssc->ssc_apsize, &ssc->dev);
	return;
}

int
agp_sis_activate(struct device *arg, int act)
{
	struct agp_sis_softc *ssc = (struct agp_sis_softc *)arg;

	switch (act) {
	case DVACT_SUSPEND:
		agp_sis_save(ssc);
		break;
	case DVACT_RESUME:
		agp_sis_restore(ssc);
		break;
	}

	return (0);
}

void
agp_sis_save(struct agp_sis_softc *ssc)
{
	ssc->ssc_winctrl = pci_conf_read(ssc->ssc_pc, ssc->ssc_tag,
	    AGP_SIS_WINCTRL);
}

void
agp_sis_restore(struct agp_sis_softc *ssc)
{
	/* Install the gatt. */
	pci_conf_write(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_ATTBASE,
	    ssc->gatt->ag_physical);
	
	/*
	 * Enable the aperture, reset the aperture size and enable and
	 * auto-tlb-inval.
	 */
	pci_conf_write(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_WINCTRL,
	    ssc->ssc_winctrl);
}

bus_size_t
agp_sis_get_aperture(void *sc)
{
	struct agp_sis_softc	*ssc = sc;
	int			 gws;

	/*
	 * The aperture size is equal to 4M<<gws.
	 */
	gws = (pci_conf_read(ssc->ssc_pc, ssc->ssc_tag,
	    AGP_SIS_WINCTRL)&0x70) >> 4;
	return ((4 * 1024 * 1024) << gws);
}

int
agp_sis_set_aperture(void *sc, bus_size_t aperture)
{
	struct agp_sis_softc	*ssc = sc;
	int gws;
	pcireg_t reg;

	/*
	 * Check for a power of two and make sure its within the
	 * programmable range.
	 */
	if (aperture & (aperture - 1)
	    || aperture < 4*1024*1024
	    || aperture > 256*1024*1024)
		return (EINVAL);

	gws = ffs(aperture / 4*1024*1024) - 1;

	reg = pci_conf_read(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_WINCTRL);	
	reg &= ~0x00000070;
	reg |= gws << 4;
	pci_conf_write(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_WINCTRL, reg);

	return (0);
}

void
agp_sis_bind_page(void *sc, bus_addr_t offset, paddr_t physical, int flags)
{
	struct agp_sis_softc	*ssc = sc;

	ssc->gatt->ag_virtual[(offset - ssc->ssc_apaddr) >> AGP_PAGE_SHIFT] =
	    physical;
}

void
agp_sis_unbind_page(void *sc, bus_addr_t offset)
{
	struct agp_sis_softc	*ssc = sc;

	ssc->gatt->ag_virtual[(offset - ssc->ssc_apaddr) >> AGP_PAGE_SHIFT] = 0;
}

void
agp_sis_flush_tlb(void *sc)
{
	struct agp_sis_softc	*ssc = sc;
	pcireg_t		 reg;

	reg = pci_conf_read(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_TLBFLUSH);
	reg &= 0xffffff00;
	reg |= 0x02;
	pci_conf_write(ssc->ssc_pc, ssc->ssc_tag, AGP_SIS_TLBFLUSH, reg);
}