blob: 6f48931ac1cec7d9a82aa4ab1d80509876678eb2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * UniNorth AGPGART routines.
3 */
4#include <linux/module.h>
5#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/init.h>
8#include <linux/pagemap.h>
9#include <linux/agp_backend.h>
10#include <linux/delay.h>
Michel Dänzere8a5f902009-08-04 11:51:04 +000011#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/uninorth.h>
13#include <asm/pci-bridge.h>
14#include <asm/prom.h>
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -070015#include <asm/pmac_feature.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "agp.h"
17
18/*
19 * NOTES for uninorth3 (G5 AGP) supports :
20 *
21 * There maybe also possibility to have bigger cache line size for
22 * agp (see pmac_pci.c and look for cache line). Need to be investigated
23 * by someone.
24 *
25 * PAGE size are hardcoded but this may change, see asm/page.h.
26 *
27 * Jerome Glisse <j.glisse@gmail.com>
28 */
29static int uninorth_rev;
30static int is_u3;
31
Michel Dänzer52f072c2009-08-04 11:51:03 +000032#define DEFAULT_APERTURE_SIZE 256
33#define DEFAULT_APERTURE_STRING "256"
Al Virob0385142008-11-22 17:36:34 +000034static char *aperture = NULL;
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static int uninorth_fetch_size(void)
37{
Michel Dänzer18088742006-10-04 14:56:44 +020038 int i, size = 0;
39 struct aper_size_info_32 *values =
40 A_SIZE_32(agp_bridge->driver->aperture_sizes);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Michel Dänzer18088742006-10-04 14:56:44 +020042 if (aperture) {
43 char *save = aperture;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Michel Dänzer18088742006-10-04 14:56:44 +020045 size = memparse(aperture, &aperture) >> 20;
46 aperture = save;
47
48 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++)
49 if (size == values[i].size)
50 break;
51
52 if (i == agp_bridge->driver->num_aperture_sizes) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -070053 dev_err(&agp_bridge->dev->dev, "invalid aperture size, "
54 "using default\n");
Michel Dänzer18088742006-10-04 14:56:44 +020055 size = 0;
56 aperture = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58 }
59
Michel Dänzer18088742006-10-04 14:56:44 +020060 if (!size) {
61 for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++)
Michel Dänzer52f072c2009-08-04 11:51:03 +000062 if (values[i].size == DEFAULT_APERTURE_SIZE)
Michel Dänzer18088742006-10-04 14:56:44 +020063 break;
64 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Michel Dänzer18088742006-10-04 14:56:44 +020066 agp_bridge->previous_size =
67 agp_bridge->current_size = (void *)(values + i);
68 agp_bridge->aperture_size_idx = i;
69 return values[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
72static void uninorth_tlbflush(struct agp_memory *mem)
73{
74 u32 ctrl = UNI_N_CFG_GART_ENABLE;
75
76 if (is_u3)
77 ctrl |= U3_N_CFG_GART_PERFRD;
78 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL,
79 ctrl | UNI_N_CFG_GART_INVAL);
80 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL, ctrl);
81
82 if (uninorth_rev <= 0x30) {
83 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL,
84 ctrl | UNI_N_CFG_GART_2xRESET);
85 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL,
86 ctrl);
87 }
88}
89
90static void uninorth_cleanup(void)
91{
92 u32 tmp;
93
94 pci_read_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL, &tmp);
95 if (!(tmp & UNI_N_CFG_GART_ENABLE))
96 return;
97 tmp |= UNI_N_CFG_GART_INVAL;
98 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL, tmp);
99 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL, 0);
100
101 if (uninorth_rev <= 0x30) {
102 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL,
103 UNI_N_CFG_GART_2xRESET);
104 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_GART_CTRL,
105 0);
106 }
107}
108
109static int uninorth_configure(void)
110{
111 struct aper_size_info_32 *current_size;
Dave Jones6a92a4e2006-02-28 00:54:25 -0500112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 current_size = A_SIZE_32(agp_bridge->current_size);
114
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700115 dev_info(&agp_bridge->dev->dev, "configuring for size idx: %d\n",
116 current_size->size_value);
Dave Jones6a92a4e2006-02-28 00:54:25 -0500117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /* aperture size and gatt addr */
119 pci_write_config_dword(agp_bridge->dev,
120 UNI_N_CFG_GART_BASE,
121 (agp_bridge->gatt_bus_addr & 0xfffff000)
122 | current_size->size_value);
123
124 /* HACK ALERT
125 * UniNorth seem to be buggy enough not to handle properly when
126 * the AGP aperture isn't mapped at bus physical address 0
127 */
128 agp_bridge->gart_bus_addr = 0;
129#ifdef CONFIG_PPC64
130 /* Assume U3 or later on PPC64 systems */
131 /* high 4 bits of GART physical address go in UNI_N_CFG_AGP_BASE */
132 pci_write_config_dword(agp_bridge->dev, UNI_N_CFG_AGP_BASE,
133 (agp_bridge->gatt_bus_addr >> 32) & 0xf);
134#else
135 pci_write_config_dword(agp_bridge->dev,
136 UNI_N_CFG_AGP_BASE, agp_bridge->gart_bus_addr);
137#endif
138
139 if (is_u3) {
140 pci_write_config_dword(agp_bridge->dev,
141 UNI_N_CFG_GART_DUMMY_PAGE,
David Woodhouse5e8d6b82009-08-06 20:20:43 +1000142 page_to_phys(agp_bridge->scratch_page_page) >> 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
Dave Jones6a92a4e2006-02-28 00:54:25 -0500144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return 0;
146}
147
Michel Dänzer37580f32009-12-06 02:15:56 +0000148static int uninorth_insert_memory(struct agp_memory *mem, off_t pg_start, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 int i, num_entries;
151 void *temp;
152 u32 *gp;
Michel Dänzer62369022009-06-15 16:56:15 +0200153 int mask_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Michel Dänzer62369022009-06-15 16:56:15 +0200155 if (type != mem->type)
156 return -EINVAL;
157
158 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
159 if (mask_type != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* We know nothing of memory types */
161 return -EINVAL;
Michel Dänzer62369022009-06-15 16:56:15 +0200162 }
163
Michel Dänzer3fc3a6b2009-12-06 02:15:55 +0000164 if (mem->page_count == 0)
165 return 0;
166
167 temp = agp_bridge->current_size;
168 num_entries = A_SIZE_32(temp)->num_entries;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if ((pg_start + mem->page_count) > num_entries)
171 return -EINVAL;
172
173 gp = (u32 *) &agp_bridge->gatt_table[pg_start];
174 for (i = 0; i < mem->page_count; ++i) {
175 if (gp[i]) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700176 dev_info(&agp_bridge->dev->dev,
Michel Dänzer37580f32009-12-06 02:15:56 +0000177 "uninorth_insert_memory: entry 0x%x occupied (%x)\n",
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700178 i, gp[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return -EBUSY;
180 }
181 }
182
183 for (i = 0; i < mem->page_count; i++) {
Michel Dänzer37580f32009-12-06 02:15:56 +0000184 if (is_u3)
185 gp[i] = (page_to_phys(mem->pages[i]) >> PAGE_SHIFT) | 0x80000000UL;
186 else
187 gp[i] = cpu_to_le32((page_to_phys(mem->pages[i]) & 0xFFFFF000UL) |
188 0x1UL);
Dave Airlie07613ba2009-06-12 14:11:41 +1000189 flush_dcache_range((unsigned long)__va(page_to_phys(mem->pages[i])),
190 (unsigned long)__va(page_to_phys(mem->pages[i]))+0x1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 uninorth_tlbflush(mem);
194
195 return 0;
196}
197
Michel Dänzer37580f32009-12-06 02:15:56 +0000198int uninorth_remove_memory(struct agp_memory *mem, off_t pg_start, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 size_t i;
201 u32 *gp;
Michel Dänzer3fc3a6b2009-12-06 02:15:55 +0000202 int mask_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Michel Dänzer3fc3a6b2009-12-06 02:15:55 +0000204 if (type != mem->type)
205 return -EINVAL;
206
207 mask_type = agp_bridge->driver->agp_type_to_mask_type(agp_bridge, type);
208 if (mask_type != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* We know nothing of memory types */
210 return -EINVAL;
Michel Dänzer3fc3a6b2009-12-06 02:15:55 +0000211 }
212
213 if (mem->page_count == 0)
214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 gp = (u32 *) &agp_bridge->gatt_table[pg_start];
217 for (i = 0; i < mem->page_count; ++i)
218 gp[i] = 0;
219 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 uninorth_tlbflush(mem);
221
222 return 0;
223}
224
225static void uninorth_agp_enable(struct agp_bridge_data *bridge, u32 mode)
226{
227 u32 command, scratch, status;
228 int timeout;
229
230 pci_read_config_dword(bridge->dev,
231 bridge->capndx + PCI_AGP_STATUS,
232 &status);
233
234 command = agp_collect_device_status(bridge, mode, status);
235 command |= PCI_AGP_COMMAND_AGP;
Dave Jones6a92a4e2006-02-28 00:54:25 -0500236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (uninorth_rev == 0x21) {
238 /*
239 * Darwin disable AGP 4x on this revision, thus we
240 * may assume it's broken. This is an AGP2 controller.
241 */
242 command &= ~AGPSTAT2_4X;
243 }
244
245 if ((uninorth_rev >= 0x30) && (uninorth_rev <= 0x33)) {
246 /*
Anand Gadiyarfd589a82009-07-16 17:13:03 +0200247 * We need to set REQ_DEPTH to 7 for U3 versions 1.0, 2.1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * 2.2 and 2.3, Darwin do so.
249 */
250 if ((command >> AGPSTAT_RQ_DEPTH_SHIFT) > 7)
251 command = (command & ~AGPSTAT_RQ_DEPTH)
252 | (7 << AGPSTAT_RQ_DEPTH_SHIFT);
253 }
254
255 uninorth_tlbflush(NULL);
256
257 timeout = 0;
258 do {
259 pci_write_config_dword(bridge->dev,
260 bridge->capndx + PCI_AGP_COMMAND,
261 command);
262 pci_read_config_dword(bridge->dev,
263 bridge->capndx + PCI_AGP_COMMAND,
264 &scratch);
265 } while ((scratch & PCI_AGP_COMMAND_AGP) == 0 && ++timeout < 1000);
266 if ((scratch & PCI_AGP_COMMAND_AGP) == 0)
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700267 dev_err(&bridge->dev->dev, "can't write UniNorth AGP "
268 "command register\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (uninorth_rev >= 0x30) {
271 /* This is an AGP V3 */
Joe Perchesc7258012008-03-26 14:10:02 -0700272 agp_device_command(command, (status & AGPSTAT_MODE_3_0) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 } else {
274 /* AGP V2 */
Joe Perchesc7258012008-03-26 14:10:02 -0700275 agp_device_command(command, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277
278 uninorth_tlbflush(NULL);
279}
280
281#ifdef CONFIG_PM
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700282/*
283 * These Power Management routines are _not_ called by the normal PCI PM layer,
284 * but directly by the video driver through function pointers in the device
285 * tree.
286 */
287static int agp_uninorth_suspend(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700289 struct agp_bridge_data *bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 u32 cmd;
291 u8 agp;
292 struct pci_dev *device = NULL;
293
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700294 bridge = agp_find_bridge(pdev);
295 if (bridge == NULL)
296 return -ENODEV;
297
298 /* Only one suspend supported */
299 if (bridge->dev_private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 return 0;
301
302 /* turn off AGP on the video chip, if it was enabled */
303 for_each_pci_dev(device) {
304 /* Don't touch the bridge yet, device first */
305 if (device == pdev)
306 continue;
307 /* Only deal with devices on the same bus here, no Mac has a P2P
308 * bridge on the AGP port, and mucking around the entire PCI
309 * tree is source of problems on some machines because of a bug
310 * in some versions of pci_find_capability() when hitting a dead
311 * device
312 */
313 if (device->bus != pdev->bus)
314 continue;
315 agp = pci_find_capability(device, PCI_CAP_ID_AGP);
316 if (!agp)
317 continue;
318 pci_read_config_dword(device, agp + PCI_AGP_COMMAND, &cmd);
319 if (!(cmd & PCI_AGP_COMMAND_AGP))
320 continue;
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700321 dev_info(&pdev->dev, "disabling AGP on device %s\n",
322 pci_name(device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 cmd &= ~PCI_AGP_COMMAND_AGP;
324 pci_write_config_dword(device, agp + PCI_AGP_COMMAND, cmd);
325 }
326
327 /* turn off AGP on the bridge */
328 agp = pci_find_capability(pdev, PCI_CAP_ID_AGP);
329 pci_read_config_dword(pdev, agp + PCI_AGP_COMMAND, &cmd);
Andrew Mortonb07cd512006-06-01 20:19:35 -0700330 bridge->dev_private_data = (void *)(long)cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (cmd & PCI_AGP_COMMAND_AGP) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700332 dev_info(&pdev->dev, "disabling AGP on bridge\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 cmd &= ~PCI_AGP_COMMAND_AGP;
334 pci_write_config_dword(pdev, agp + PCI_AGP_COMMAND, cmd);
335 }
336 /* turn off the GART */
337 uninorth_cleanup();
338
339 return 0;
340}
341
342static int agp_uninorth_resume(struct pci_dev *pdev)
343{
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700344 struct agp_bridge_data *bridge;
345 u32 command;
346
347 bridge = agp_find_bridge(pdev);
348 if (bridge == NULL)
349 return -ENODEV;
350
Andrew Mortonb07cd512006-06-01 20:19:35 -0700351 command = (long)bridge->dev_private_data;
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700352 bridge->dev_private_data = NULL;
353 if (!(command & PCI_AGP_COMMAND_AGP))
354 return 0;
355
356 uninorth_agp_enable(bridge, command);
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 0;
359}
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700360#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362static int uninorth_create_gatt_table(struct agp_bridge_data *bridge)
363{
364 char *table;
365 char *table_end;
366 int size;
367 int page_order;
368 int num_entries;
369 int i;
370 void *temp;
371 struct page *page;
Michel Dänzere8a5f902009-08-04 11:51:04 +0000372 struct page **pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* We can't handle 2 level gatt's */
375 if (bridge->driver->size_type == LVL2_APER_SIZE)
376 return -EINVAL;
377
378 table = NULL;
379 i = bridge->aperture_size_idx;
380 temp = bridge->current_size;
381 size = page_order = num_entries = 0;
382
383 do {
384 size = A_SIZE_32(temp)->size;
385 page_order = A_SIZE_32(temp)->page_order;
386 num_entries = A_SIZE_32(temp)->num_entries;
387
388 table = (char *) __get_free_pages(GFP_KERNEL, page_order);
389
390 if (table == NULL) {
391 i++;
392 bridge->current_size = A_IDX32(bridge);
393 } else {
394 bridge->aperture_size_idx = i;
395 }
396 } while (!table && (i < bridge->driver->num_aperture_sizes));
397
398 if (table == NULL)
399 return -ENOMEM;
400
Michel Dänzere8a5f902009-08-04 11:51:04 +0000401 pages = kmalloc((1 << page_order) * sizeof(struct page*), GFP_KERNEL);
402 if (pages == NULL)
403 goto enomem;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1);
406
Michel Dänzere8a5f902009-08-04 11:51:04 +0000407 for (page = virt_to_page(table), i = 0; page <= virt_to_page(table_end);
408 page++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 SetPageReserved(page);
Michel Dänzere8a5f902009-08-04 11:51:04 +0000410 pages[i] = page;
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 bridge->gatt_table_real = (u32 *) table;
Michel Dänzere8a5f902009-08-04 11:51:04 +0000414 /* Need to clear out any dirty data still sitting in caches */
415 flush_dcache_range((unsigned long)table,
416 (unsigned long)(table_end + PAGE_SIZE));
417 bridge->gatt_table = vmap(pages, (1 << page_order), 0, PAGE_KERNEL_NCG);
418
419 if (bridge->gatt_table == NULL)
420 goto enomem;
421
David Woodhouse6a122352009-07-29 10:25:58 +0100422 bridge->gatt_bus_addr = virt_to_phys(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 for (i = 0; i < num_entries; i++)
425 bridge->gatt_table[i] = 0;
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
Michel Dänzere8a5f902009-08-04 11:51:04 +0000428
429enomem:
430 kfree(pages);
431 if (table)
432 free_pages((unsigned long)table, page_order);
433 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
436static int uninorth_free_gatt_table(struct agp_bridge_data *bridge)
437{
438 int page_order;
439 char *table, *table_end;
440 void *temp;
441 struct page *page;
442
443 temp = bridge->current_size;
444 page_order = A_SIZE_32(temp)->page_order;
445
446 /* Do not worry about freeing memory, because if this is
447 * called, then all agp memory is deallocated and removed
448 * from the table.
449 */
450
Michel Dänzere8a5f902009-08-04 11:51:04 +0000451 vunmap(bridge->gatt_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 table = (char *) bridge->gatt_table_real;
453 table_end = table + ((PAGE_SIZE * (1 << page_order)) - 1);
454
455 for (page = virt_to_page(table); page <= virt_to_page(table_end); page++)
456 ClearPageReserved(page);
457
458 free_pages((unsigned long) bridge->gatt_table_real, page_order);
459
460 return 0;
461}
462
463void null_cache_flush(void)
464{
465 mb();
466}
467
468/* Setup function */
469
Michel Dänzer52f072c2009-08-04 11:51:03 +0000470static const struct aper_size_info_32 uninorth_sizes[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 {256, 65536, 6, 64},
473 {128, 32768, 5, 32},
474 {64, 16384, 4, 16},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 {32, 8192, 3, 8},
476 {16, 4096, 2, 4},
477 {8, 2048, 1, 2},
478 {4, 1024, 0, 1}
479};
480
481/*
482 * Not sure that u3 supports that high aperture sizes but it
483 * would strange if it did not :)
484 */
Michel Dänzer52f072c2009-08-04 11:51:03 +0000485static const struct aper_size_info_32 u3_sizes[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 {512, 131072, 7, 128},
488 {256, 65536, 6, 64},
489 {128, 32768, 5, 32},
490 {64, 16384, 4, 16},
491 {32, 8192, 3, 8},
492 {16, 4096, 2, 4},
493 {8, 2048, 1, 2},
494 {4, 1024, 0, 1}
495};
496
Ryusuke Konishie047d1c2007-02-27 14:13:02 +0900497const struct agp_bridge_driver uninorth_agp_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 .owner = THIS_MODULE,
499 .aperture_sizes = (void *)uninorth_sizes,
500 .size_type = U32_APER_SIZE,
Michel Dänzer52f072c2009-08-04 11:51:03 +0000501 .num_aperture_sizes = ARRAY_SIZE(uninorth_sizes),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .configure = uninorth_configure,
503 .fetch_size = uninorth_fetch_size,
504 .cleanup = uninorth_cleanup,
505 .tlb_flush = uninorth_tlbflush,
506 .mask_memory = agp_generic_mask_memory,
507 .masks = NULL,
508 .cache_flush = null_cache_flush,
509 .agp_enable = uninorth_agp_enable,
510 .create_gatt_table = uninorth_create_gatt_table,
511 .free_gatt_table = uninorth_free_gatt_table,
512 .insert_memory = uninorth_insert_memory,
Michel Dänzer37580f32009-12-06 02:15:56 +0000513 .remove_memory = uninorth_remove_memory,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 .alloc_by_type = agp_generic_alloc_by_type,
515 .free_by_type = agp_generic_free_by_type,
516 .agp_alloc_page = agp_generic_alloc_page,
Rene Herman5f310b62008-08-21 19:15:46 +0200517 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 .agp_destroy_page = agp_generic_destroy_page,
Rene Herman5f310b62008-08-21 19:15:46 +0200519 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100520 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Joe Perchesc7258012008-03-26 14:10:02 -0700521 .cant_use_aperture = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522};
523
Ryusuke Konishie047d1c2007-02-27 14:13:02 +0900524const struct agp_bridge_driver u3_agp_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 .owner = THIS_MODULE,
526 .aperture_sizes = (void *)u3_sizes,
527 .size_type = U32_APER_SIZE,
Michel Dänzer52f072c2009-08-04 11:51:03 +0000528 .num_aperture_sizes = ARRAY_SIZE(u3_sizes),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 .configure = uninorth_configure,
530 .fetch_size = uninorth_fetch_size,
531 .cleanup = uninorth_cleanup,
532 .tlb_flush = uninorth_tlbflush,
533 .mask_memory = agp_generic_mask_memory,
534 .masks = NULL,
535 .cache_flush = null_cache_flush,
536 .agp_enable = uninorth_agp_enable,
537 .create_gatt_table = uninorth_create_gatt_table,
538 .free_gatt_table = uninorth_free_gatt_table,
Michel Dänzer37580f32009-12-06 02:15:56 +0000539 .insert_memory = uninorth_insert_memory,
540 .remove_memory = uninorth_remove_memory,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 .alloc_by_type = agp_generic_alloc_by_type,
542 .free_by_type = agp_generic_free_by_type,
543 .agp_alloc_page = agp_generic_alloc_page,
Rene Herman5f310b62008-08-21 19:15:46 +0200544 .agp_alloc_pages = agp_generic_alloc_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .agp_destroy_page = agp_generic_destroy_page,
Stephen Rothwellc09ff7e2008-08-25 20:22:21 +1000546 .agp_destroy_pages = agp_generic_destroy_pages,
Thomas Hellstroma030ce42007-01-23 10:33:43 +0100547 .agp_type_to_mask_type = agp_generic_type_to_mask_type,
Joe Perchesc7258012008-03-26 14:10:02 -0700548 .cant_use_aperture = true,
549 .needs_scratch_page = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550};
551
552static struct agp_device_ids uninorth_agp_device_ids[] __devinitdata = {
553 {
554 .device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP,
555 .chipset_name = "UniNorth",
556 },
557 {
558 .device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP_P,
559 .chipset_name = "UniNorth/Pangea",
560 },
561 {
562 .device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP15,
563 .chipset_name = "UniNorth 1.5",
564 },
565 {
566 .device_id = PCI_DEVICE_ID_APPLE_UNI_N_AGP2,
567 .chipset_name = "UniNorth 2",
568 },
569 {
570 .device_id = PCI_DEVICE_ID_APPLE_U3_AGP,
571 .chipset_name = "U3",
572 },
573 {
574 .device_id = PCI_DEVICE_ID_APPLE_U3L_AGP,
575 .chipset_name = "U3L",
576 },
577 {
578 .device_id = PCI_DEVICE_ID_APPLE_U3H_AGP,
579 .chipset_name = "U3H",
580 },
Olof Johansson7fce2602005-11-13 16:06:48 -0800581 {
582 .device_id = PCI_DEVICE_ID_APPLE_IPID2_AGP,
583 .chipset_name = "UniNorth/Intrepid2",
584 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585};
586
587static int __devinit agp_uninorth_probe(struct pci_dev *pdev,
588 const struct pci_device_id *ent)
589{
590 struct agp_device_ids *devs = uninorth_agp_device_ids;
591 struct agp_bridge_data *bridge;
592 struct device_node *uninorth_node;
593 u8 cap_ptr;
594 int j;
595
596 cap_ptr = pci_find_capability(pdev, PCI_CAP_ID_AGP);
597 if (cap_ptr == 0)
598 return -ENODEV;
599
600 /* probe for known chipsets */
601 for (j = 0; devs[j].chipset_name != NULL; ++j) {
602 if (pdev->device == devs[j].device_id) {
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700603 dev_info(&pdev->dev, "Apple %s chipset\n",
604 devs[j].chipset_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 goto found;
606 }
607 }
608
Bjorn Helgaase3cf6952008-07-30 12:26:51 -0700609 dev_err(&pdev->dev, "unsupported Apple chipset [%04x/%04x]\n",
610 pdev->vendor, pdev->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return -ENODEV;
612
613 found:
614 /* Set revision to 0 if we could not read it. */
615 uninorth_rev = 0;
616 is_u3 = 0;
617 /* Locate core99 Uni-N */
618 uninorth_node = of_find_node_by_name(NULL, "uni-n");
619 /* Locate G5 u3 */
620 if (uninorth_node == NULL) {
621 is_u3 = 1;
622 uninorth_node = of_find_node_by_name(NULL, "u3");
623 }
624 if (uninorth_node) {
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000625 const int *revprop = of_get_property(uninorth_node,
Jeremy Kerrb04e3dd2006-07-12 15:40:40 +1000626 "device-rev", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (revprop != NULL)
628 uninorth_rev = *revprop & 0x3f;
629 of_node_put(uninorth_node);
630 }
631
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700632#ifdef CONFIG_PM
633 /* Inform platform of our suspend/resume caps */
634 pmac_register_agp_pm(pdev, agp_uninorth_suspend, agp_uninorth_resume);
635#endif
636
637 /* Allocate & setup our driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 bridge = agp_alloc_bridge();
639 if (!bridge)
640 return -ENOMEM;
641
642 if (is_u3)
643 bridge->driver = &u3_agp_driver;
644 else
645 bridge->driver = &uninorth_agp_driver;
646
647 bridge->dev = pdev;
648 bridge->capndx = cap_ptr;
649 bridge->flags = AGP_ERRATA_FASTWRITES;
650
651 /* Fill in the mode register */
652 pci_read_config_dword(pdev, cap_ptr+PCI_AGP_STATUS, &bridge->mode);
653
654 pci_set_drvdata(pdev, bridge);
655 return agp_add_bridge(bridge);
656}
657
658static void __devexit agp_uninorth_remove(struct pci_dev *pdev)
659{
660 struct agp_bridge_data *bridge = pci_get_drvdata(pdev);
661
Benjamin Herrenschmidt0c541b42005-04-16 15:24:19 -0700662#ifdef CONFIG_PM
663 /* Inform platform of our suspend/resume caps */
664 pmac_register_agp_pm(pdev, NULL, NULL);
665#endif
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 agp_remove_bridge(bridge);
668 agp_put_bridge(bridge);
669}
670
671static struct pci_device_id agp_uninorth_pci_table[] = {
672 {
673 .class = (PCI_CLASS_BRIDGE_HOST << 8),
674 .class_mask = ~0,
675 .vendor = PCI_VENDOR_ID_APPLE,
676 .device = PCI_ANY_ID,
677 .subvendor = PCI_ANY_ID,
678 .subdevice = PCI_ANY_ID,
679 },
680 { }
681};
682
683MODULE_DEVICE_TABLE(pci, agp_uninorth_pci_table);
684
685static struct pci_driver agp_uninorth_pci_driver = {
686 .name = "agpgart-uninorth",
687 .id_table = agp_uninorth_pci_table,
688 .probe = agp_uninorth_probe,
689 .remove = agp_uninorth_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690};
691
692static int __init agp_uninorth_init(void)
693{
694 if (agp_off)
695 return -EINVAL;
696 return pci_register_driver(&agp_uninorth_pci_driver);
697}
698
699static void __exit agp_uninorth_cleanup(void)
700{
701 pci_unregister_driver(&agp_uninorth_pci_driver);
702}
703
704module_init(agp_uninorth_init);
705module_exit(agp_uninorth_cleanup);
706
Michel Dänzer18088742006-10-04 14:56:44 +0200707module_param(aperture, charp, 0);
708MODULE_PARM_DESC(aperture,
709 "Aperture size, must be power of two between 4MB and an\n"
710 "\t\tupper limit specific to the UniNorth revision.\n"
Michel Dänzer52f072c2009-08-04 11:51:03 +0000711 "\t\tDefault: " DEFAULT_APERTURE_STRING "M");
Michel Dänzer18088742006-10-04 14:56:44 +0200712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
714MODULE_LICENSE("GPL");