2 * UniNorth AGPGART routines.
4 #include <linux/module.h>
6 #include <linux/init.h>
7 #include <linux/pagemap.h>
8 #include <linux/agp_backend.h>
9 #include <linux/delay.h>
10 #include <linux/vmalloc.h>
11 #include <asm/uninorth.h>
12 #include <asm/pci-bridge.h>
14 #include <asm/pmac_feature.h>
18 * NOTES for uninorth3 (G5 AGP) supports :
20 * There maybe also possibility to have bigger cache line size for
21 * agp (see pmac_pci.c and look for cache line). Need to be investigated
24 * PAGE size are hardcoded but this may change, see asm/page.h.
26 * Jerome Glisse <j.glisse@gmail.com>
28 static int uninorth_rev
;
31 #define DEFAULT_APERTURE_SIZE 256
32 #define DEFAULT_APERTURE_STRING "256"
33 static char *aperture
= NULL
;
35 static int uninorth_fetch_size(void)
38 struct aper_size_info_32
*values
=
39 A_SIZE_32(agp_bridge
->driver
->aperture_sizes
);
42 char *save
= aperture
;
44 size
= memparse(aperture
, &aperture
) >> 20;
47 for (i
= 0; i
< agp_bridge
->driver
->num_aperture_sizes
; i
++)
48 if (size
== values
[i
].size
)
51 if (i
== agp_bridge
->driver
->num_aperture_sizes
) {
52 dev_err(&agp_bridge
->dev
->dev
, "invalid aperture size, "
60 for (i
= 0; i
< agp_bridge
->driver
->num_aperture_sizes
; i
++)
61 if (values
[i
].size
== DEFAULT_APERTURE_SIZE
)
65 agp_bridge
->previous_size
=
66 agp_bridge
->current_size
= (void *)(values
+ i
);
67 agp_bridge
->aperture_size_idx
= i
;
68 return values
[i
].size
;
71 static void uninorth_tlbflush(struct agp_memory
*mem
)
73 u32 ctrl
= UNI_N_CFG_GART_ENABLE
;
76 ctrl
|= U3_N_CFG_GART_PERFRD
;
77 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
78 ctrl
| UNI_N_CFG_GART_INVAL
);
79 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, ctrl
);
81 if (uninorth_rev
<= 0x30) {
82 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
83 ctrl
| UNI_N_CFG_GART_2xRESET
);
84 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
89 static void uninorth_cleanup(void)
93 pci_read_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, &tmp
);
94 if (!(tmp
& UNI_N_CFG_GART_ENABLE
))
96 tmp
|= UNI_N_CFG_GART_INVAL
;
97 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, tmp
);
98 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, 0);
100 if (uninorth_rev
<= 0x30) {
101 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
102 UNI_N_CFG_GART_2xRESET
);
103 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
108 static int uninorth_configure(void)
110 struct aper_size_info_32
*current_size
;
112 current_size
= A_SIZE_32(agp_bridge
->current_size
);
114 dev_info(&agp_bridge
->dev
->dev
, "configuring for size idx: %d\n",
115 current_size
->size_value
);
117 /* aperture size and gatt addr */
118 pci_write_config_dword(agp_bridge
->dev
,
120 (agp_bridge
->gatt_bus_addr
& 0xfffff000)
121 | current_size
->size_value
);
124 * UniNorth seem to be buggy enough not to handle properly when
125 * the AGP aperture isn't mapped at bus physical address 0
127 agp_bridge
->gart_bus_addr
= 0;
129 /* Assume U3 or later on PPC64 systems */
130 /* high 4 bits of GART physical address go in UNI_N_CFG_AGP_BASE */
131 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_AGP_BASE
,
132 (agp_bridge
->gatt_bus_addr
>> 32) & 0xf);
134 pci_write_config_dword(agp_bridge
->dev
,
135 UNI_N_CFG_AGP_BASE
, agp_bridge
->gart_bus_addr
);
139 pci_write_config_dword(agp_bridge
->dev
,
140 UNI_N_CFG_GART_DUMMY_PAGE
,
141 page_to_phys(agp_bridge
->scratch_page_page
) >> 12);
147 static int uninorth_insert_memory(struct agp_memory
*mem
, off_t pg_start
, int type
)
154 if (type
!= mem
->type
)
157 mask_type
= agp_bridge
->driver
->agp_type_to_mask_type(agp_bridge
, type
);
158 if (mask_type
!= 0) {
159 /* We know nothing of memory types */
163 if (mem
->page_count
== 0)
166 temp
= agp_bridge
->current_size
;
167 num_entries
= A_SIZE_32(temp
)->num_entries
;
169 if ((pg_start
+ mem
->page_count
) > num_entries
)
172 gp
= (u32
*) &agp_bridge
->gatt_table
[pg_start
];
173 for (i
= 0; i
< mem
->page_count
; ++i
) {
175 dev_info(&agp_bridge
->dev
->dev
,
176 "uninorth_insert_memory: entry 0x%x occupied (%x)\n",
182 for (i
= 0; i
< mem
->page_count
; i
++) {
184 gp
[i
] = (page_to_phys(mem
->pages
[i
]) >> PAGE_SHIFT
) | 0x80000000UL
;
186 gp
[i
] = cpu_to_le32((page_to_phys(mem
->pages
[i
]) & 0xFFFFF000UL
) |
188 flush_dcache_range((unsigned long)__va(page_to_phys(mem
->pages
[i
])),
189 (unsigned long)__va(page_to_phys(mem
->pages
[i
]))+0x1000);
192 uninorth_tlbflush(mem
);
197 int uninorth_remove_memory(struct agp_memory
*mem
, off_t pg_start
, int type
)
203 if (type
!= mem
->type
)
206 mask_type
= agp_bridge
->driver
->agp_type_to_mask_type(agp_bridge
, type
);
207 if (mask_type
!= 0) {
208 /* We know nothing of memory types */
212 if (mem
->page_count
== 0)
215 gp
= (u32
*) &agp_bridge
->gatt_table
[pg_start
];
216 for (i
= 0; i
< mem
->page_count
; ++i
)
219 uninorth_tlbflush(mem
);
224 static void uninorth_agp_enable(struct agp_bridge_data
*bridge
, u32 mode
)
226 u32 command
, scratch
, status
;
229 pci_read_config_dword(bridge
->dev
,
230 bridge
->capndx
+ PCI_AGP_STATUS
,
233 command
= agp_collect_device_status(bridge
, mode
, status
);
234 command
|= PCI_AGP_COMMAND_AGP
;
236 if (uninorth_rev
== 0x21) {
238 * Darwin disable AGP 4x on this revision, thus we
239 * may assume it's broken. This is an AGP2 controller.
241 command
&= ~AGPSTAT2_4X
;
244 if ((uninorth_rev
>= 0x30) && (uninorth_rev
<= 0x33)) {
246 * We need to set REQ_DEPTH to 7 for U3 versions 1.0, 2.1,
247 * 2.2 and 2.3, Darwin do so.
249 if ((command
>> AGPSTAT_RQ_DEPTH_SHIFT
) > 7)
250 command
= (command
& ~AGPSTAT_RQ_DEPTH
)
251 | (7 << AGPSTAT_RQ_DEPTH_SHIFT
);
254 uninorth_tlbflush(NULL
);
258 pci_write_config_dword(bridge
->dev
,
259 bridge
->capndx
+ PCI_AGP_COMMAND
,
261 pci_read_config_dword(bridge
->dev
,
262 bridge
->capndx
+ PCI_AGP_COMMAND
,
264 } while ((scratch
& PCI_AGP_COMMAND_AGP
) == 0 && ++timeout
< 1000);
265 if ((scratch
& PCI_AGP_COMMAND_AGP
) == 0)
266 dev_err(&bridge
->dev
->dev
, "can't write UniNorth AGP "
267 "command register\n");
269 if (uninorth_rev
>= 0x30) {
270 /* This is an AGP V3 */
271 agp_device_command(command
, (status
& AGPSTAT_MODE_3_0
) != 0);
274 agp_device_command(command
, false);
277 uninorth_tlbflush(NULL
);
282 * These Power Management routines are _not_ called by the normal PCI PM layer,
283 * but directly by the video driver through function pointers in the device
286 static int agp_uninorth_suspend(struct pci_dev
*pdev
)
288 struct agp_bridge_data
*bridge
;
291 struct pci_dev
*device
= NULL
;
293 bridge
= agp_find_bridge(pdev
);
297 /* Only one suspend supported */
298 if (bridge
->dev_private_data
)
301 /* turn off AGP on the video chip, if it was enabled */
302 for_each_pci_dev(device
) {
303 /* Don't touch the bridge yet, device first */
306 /* Only deal with devices on the same bus here, no Mac has a P2P
307 * bridge on the AGP port, and mucking around the entire PCI
308 * tree is source of problems on some machines because of a bug
309 * in some versions of pci_find_capability() when hitting a dead
312 if (device
->bus
!= pdev
->bus
)
314 agp
= pci_find_capability(device
, PCI_CAP_ID_AGP
);
317 pci_read_config_dword(device
, agp
+ PCI_AGP_COMMAND
, &cmd
);
318 if (!(cmd
& PCI_AGP_COMMAND_AGP
))
320 dev_info(&pdev
->dev
, "disabling AGP on device %s\n",
322 cmd
&= ~PCI_AGP_COMMAND_AGP
;
323 pci_write_config_dword(device
, agp
+ PCI_AGP_COMMAND
, cmd
);
326 /* turn off AGP on the bridge */
327 agp
= pci_find_capability(pdev
, PCI_CAP_ID_AGP
);
328 pci_read_config_dword(pdev
, agp
+ PCI_AGP_COMMAND
, &cmd
);
329 bridge
->dev_private_data
= (void *)(long)cmd
;
330 if (cmd
& PCI_AGP_COMMAND_AGP
) {
331 dev_info(&pdev
->dev
, "disabling AGP on bridge\n");
332 cmd
&= ~PCI_AGP_COMMAND_AGP
;
333 pci_write_config_dword(pdev
, agp
+ PCI_AGP_COMMAND
, cmd
);
335 /* turn off the GART */
341 static int agp_uninorth_resume(struct pci_dev
*pdev
)
343 struct agp_bridge_data
*bridge
;
346 bridge
= agp_find_bridge(pdev
);
350 command
= (long)bridge
->dev_private_data
;
351 bridge
->dev_private_data
= NULL
;
352 if (!(command
& PCI_AGP_COMMAND_AGP
))
355 uninorth_agp_enable(bridge
, command
);
359 #endif /* CONFIG_PM */
361 static int uninorth_create_gatt_table(struct agp_bridge_data
*bridge
)
373 /* We can't handle 2 level gatt's */
374 if (bridge
->driver
->size_type
== LVL2_APER_SIZE
)
378 i
= bridge
->aperture_size_idx
;
379 temp
= bridge
->current_size
;
380 size
= page_order
= num_entries
= 0;
383 size
= A_SIZE_32(temp
)->size
;
384 page_order
= A_SIZE_32(temp
)->page_order
;
385 num_entries
= A_SIZE_32(temp
)->num_entries
;
387 table
= (char *) __get_free_pages(GFP_KERNEL
, page_order
);
391 bridge
->current_size
= A_IDX32(bridge
);
393 bridge
->aperture_size_idx
= i
;
395 } while (!table
&& (i
< bridge
->driver
->num_aperture_sizes
));
400 pages
= kmalloc((1 << page_order
) * sizeof(struct page
*), GFP_KERNEL
);
404 table_end
= table
+ ((PAGE_SIZE
* (1 << page_order
)) - 1);
406 for (page
= virt_to_page(table
), i
= 0; page
<= virt_to_page(table_end
);
408 SetPageReserved(page
);
412 bridge
->gatt_table_real
= (u32
*) table
;
413 /* Need to clear out any dirty data still sitting in caches */
414 flush_dcache_range((unsigned long)table
,
415 (unsigned long)(table_end
+ PAGE_SIZE
));
416 bridge
->gatt_table
= vmap(pages
, (1 << page_order
), 0, PAGE_KERNEL_NCG
);
418 if (bridge
->gatt_table
== NULL
)
421 bridge
->gatt_bus_addr
= virt_to_phys(table
);
423 for (i
= 0; i
< num_entries
; i
++)
424 bridge
->gatt_table
[i
] = 0;
431 free_pages((unsigned long)table
, page_order
);
435 static int uninorth_free_gatt_table(struct agp_bridge_data
*bridge
)
438 char *table
, *table_end
;
442 temp
= bridge
->current_size
;
443 page_order
= A_SIZE_32(temp
)->page_order
;
445 /* Do not worry about freeing memory, because if this is
446 * called, then all agp memory is deallocated and removed
450 vunmap(bridge
->gatt_table
);
451 table
= (char *) bridge
->gatt_table_real
;
452 table_end
= table
+ ((PAGE_SIZE
* (1 << page_order
)) - 1);
454 for (page
= virt_to_page(table
); page
<= virt_to_page(table_end
); page
++)
455 ClearPageReserved(page
);
457 free_pages((unsigned long) bridge
->gatt_table_real
, page_order
);
462 void null_cache_flush(void)
469 static const struct aper_size_info_32 uninorth_sizes
[] =
481 * Not sure that u3 supports that high aperture sizes but it
482 * would strange if it did not :)
484 static const struct aper_size_info_32 u3_sizes
[] =
486 {512, 131072, 7, 128},
496 const struct agp_bridge_driver uninorth_agp_driver
= {
497 .owner
= THIS_MODULE
,
498 .aperture_sizes
= (void *)uninorth_sizes
,
499 .size_type
= U32_APER_SIZE
,
500 .num_aperture_sizes
= ARRAY_SIZE(uninorth_sizes
),
501 .configure
= uninorth_configure
,
502 .fetch_size
= uninorth_fetch_size
,
503 .cleanup
= uninorth_cleanup
,
504 .tlb_flush
= uninorth_tlbflush
,
505 .mask_memory
= agp_generic_mask_memory
,
507 .cache_flush
= null_cache_flush
,
508 .agp_enable
= uninorth_agp_enable
,
509 .create_gatt_table
= uninorth_create_gatt_table
,
510 .free_gatt_table
= uninorth_free_gatt_table
,
511 .insert_memory
= uninorth_insert_memory
,
512 .remove_memory
= uninorth_remove_memory
,
513 .alloc_by_type
= agp_generic_alloc_by_type
,
514 .free_by_type
= agp_generic_free_by_type
,
515 .agp_alloc_page
= agp_generic_alloc_page
,
516 .agp_alloc_pages
= agp_generic_alloc_pages
,
517 .agp_destroy_page
= agp_generic_destroy_page
,
518 .agp_destroy_pages
= agp_generic_destroy_pages
,
519 .agp_type_to_mask_type
= agp_generic_type_to_mask_type
,
520 .cant_use_aperture
= true,
523 const struct agp_bridge_driver u3_agp_driver
= {
524 .owner
= THIS_MODULE
,
525 .aperture_sizes
= (void *)u3_sizes
,
526 .size_type
= U32_APER_SIZE
,
527 .num_aperture_sizes
= ARRAY_SIZE(u3_sizes
),
528 .configure
= uninorth_configure
,
529 .fetch_size
= uninorth_fetch_size
,
530 .cleanup
= uninorth_cleanup
,
531 .tlb_flush
= uninorth_tlbflush
,
532 .mask_memory
= agp_generic_mask_memory
,
534 .cache_flush
= null_cache_flush
,
535 .agp_enable
= uninorth_agp_enable
,
536 .create_gatt_table
= uninorth_create_gatt_table
,
537 .free_gatt_table
= uninorth_free_gatt_table
,
538 .insert_memory
= uninorth_insert_memory
,
539 .remove_memory
= uninorth_remove_memory
,
540 .alloc_by_type
= agp_generic_alloc_by_type
,
541 .free_by_type
= agp_generic_free_by_type
,
542 .agp_alloc_page
= agp_generic_alloc_page
,
543 .agp_alloc_pages
= agp_generic_alloc_pages
,
544 .agp_destroy_page
= agp_generic_destroy_page
,
545 .agp_destroy_pages
= agp_generic_destroy_pages
,
546 .agp_type_to_mask_type
= agp_generic_type_to_mask_type
,
547 .cant_use_aperture
= true,
548 .needs_scratch_page
= true,
551 static struct agp_device_ids uninorth_agp_device_ids
[] __devinitdata
= {
553 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP
,
554 .chipset_name
= "UniNorth",
557 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP_P
,
558 .chipset_name
= "UniNorth/Pangea",
561 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP15
,
562 .chipset_name
= "UniNorth 1.5",
565 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP2
,
566 .chipset_name
= "UniNorth 2",
569 .device_id
= PCI_DEVICE_ID_APPLE_U3_AGP
,
570 .chipset_name
= "U3",
573 .device_id
= PCI_DEVICE_ID_APPLE_U3L_AGP
,
574 .chipset_name
= "U3L",
577 .device_id
= PCI_DEVICE_ID_APPLE_U3H_AGP
,
578 .chipset_name
= "U3H",
581 .device_id
= PCI_DEVICE_ID_APPLE_IPID2_AGP
,
582 .chipset_name
= "UniNorth/Intrepid2",
586 static int __devinit
agp_uninorth_probe(struct pci_dev
*pdev
,
587 const struct pci_device_id
*ent
)
589 struct agp_device_ids
*devs
= uninorth_agp_device_ids
;
590 struct agp_bridge_data
*bridge
;
591 struct device_node
*uninorth_node
;
595 cap_ptr
= pci_find_capability(pdev
, PCI_CAP_ID_AGP
);
599 /* probe for known chipsets */
600 for (j
= 0; devs
[j
].chipset_name
!= NULL
; ++j
) {
601 if (pdev
->device
== devs
[j
].device_id
) {
602 dev_info(&pdev
->dev
, "Apple %s chipset\n",
603 devs
[j
].chipset_name
);
608 dev_err(&pdev
->dev
, "unsupported Apple chipset [%04x/%04x]\n",
609 pdev
->vendor
, pdev
->device
);
613 /* Set revision to 0 if we could not read it. */
616 /* Locate core99 Uni-N */
617 uninorth_node
= of_find_node_by_name(NULL
, "uni-n");
619 if (uninorth_node
== NULL
) {
621 uninorth_node
= of_find_node_by_name(NULL
, "u3");
624 const int *revprop
= of_get_property(uninorth_node
,
627 uninorth_rev
= *revprop
& 0x3f;
628 of_node_put(uninorth_node
);
632 /* Inform platform of our suspend/resume caps */
633 pmac_register_agp_pm(pdev
, agp_uninorth_suspend
, agp_uninorth_resume
);
636 /* Allocate & setup our driver */
637 bridge
= agp_alloc_bridge();
642 bridge
->driver
= &u3_agp_driver
;
644 bridge
->driver
= &uninorth_agp_driver
;
647 bridge
->capndx
= cap_ptr
;
648 bridge
->flags
= AGP_ERRATA_FASTWRITES
;
650 /* Fill in the mode register */
651 pci_read_config_dword(pdev
, cap_ptr
+PCI_AGP_STATUS
, &bridge
->mode
);
653 pci_set_drvdata(pdev
, bridge
);
654 return agp_add_bridge(bridge
);
657 static void __devexit
agp_uninorth_remove(struct pci_dev
*pdev
)
659 struct agp_bridge_data
*bridge
= pci_get_drvdata(pdev
);
662 /* Inform platform of our suspend/resume caps */
663 pmac_register_agp_pm(pdev
, NULL
, NULL
);
666 agp_remove_bridge(bridge
);
667 agp_put_bridge(bridge
);
670 static struct pci_device_id agp_uninorth_pci_table
[] = {
672 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
674 .vendor
= PCI_VENDOR_ID_APPLE
,
675 .device
= PCI_ANY_ID
,
676 .subvendor
= PCI_ANY_ID
,
677 .subdevice
= PCI_ANY_ID
,
682 MODULE_DEVICE_TABLE(pci
, agp_uninorth_pci_table
);
684 static struct pci_driver agp_uninorth_pci_driver
= {
685 .name
= "agpgart-uninorth",
686 .id_table
= agp_uninorth_pci_table
,
687 .probe
= agp_uninorth_probe
,
688 .remove
= agp_uninorth_remove
,
691 static int __init
agp_uninorth_init(void)
695 return pci_register_driver(&agp_uninorth_pci_driver
);
698 static void __exit
agp_uninorth_cleanup(void)
700 pci_unregister_driver(&agp_uninorth_pci_driver
);
703 module_init(agp_uninorth_init
);
704 module_exit(agp_uninorth_cleanup
);
706 module_param(aperture
, charp
, 0);
707 MODULE_PARM_DESC(aperture
,
708 "Aperture size, must be power of two between 4MB and an\n"
709 "\t\tupper limit specific to the UniNorth revision.\n"
710 "\t\tDefault: " DEFAULT_APERTURE_STRING
"M");
712 MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
713 MODULE_LICENSE("GPL");