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 <asm/uninorth.h>
11 #include <asm/pci-bridge.h>
13 #include <asm/pmac_feature.h>
17 * NOTES for uninorth3 (G5 AGP) supports :
19 * There maybe also possibility to have bigger cache line size for
20 * agp (see pmac_pci.c and look for cache line). Need to be investigated
23 * PAGE size are hardcoded but this may change, see asm/page.h.
25 * Jerome Glisse <j.glisse@gmail.com>
27 static int uninorth_rev
;
30 static char __devinitdata
*aperture
= NULL
;
32 static int uninorth_fetch_size(void)
35 struct aper_size_info_32
*values
=
36 A_SIZE_32(agp_bridge
->driver
->aperture_sizes
);
39 char *save
= aperture
;
41 size
= memparse(aperture
, &aperture
) >> 20;
44 for (i
= 0; i
< agp_bridge
->driver
->num_aperture_sizes
; i
++)
45 if (size
== values
[i
].size
)
48 if (i
== agp_bridge
->driver
->num_aperture_sizes
) {
49 printk(KERN_ERR PFX
"Invalid aperture size, using"
57 for (i
= 0; i
< agp_bridge
->driver
->num_aperture_sizes
; i
++)
58 if (values
[i
].size
== 32)
62 agp_bridge
->previous_size
=
63 agp_bridge
->current_size
= (void *)(values
+ i
);
64 agp_bridge
->aperture_size_idx
= i
;
65 return values
[i
].size
;
68 static void uninorth_tlbflush(struct agp_memory
*mem
)
70 u32 ctrl
= UNI_N_CFG_GART_ENABLE
;
73 ctrl
|= U3_N_CFG_GART_PERFRD
;
74 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
75 ctrl
| UNI_N_CFG_GART_INVAL
);
76 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, ctrl
);
78 if (uninorth_rev
<= 0x30) {
79 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
80 ctrl
| UNI_N_CFG_GART_2xRESET
);
81 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
86 static void uninorth_cleanup(void)
90 pci_read_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, &tmp
);
91 if (!(tmp
& UNI_N_CFG_GART_ENABLE
))
93 tmp
|= UNI_N_CFG_GART_INVAL
;
94 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, tmp
);
95 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
, 0);
97 if (uninorth_rev
<= 0x30) {
98 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
99 UNI_N_CFG_GART_2xRESET
);
100 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_GART_CTRL
,
105 static int uninorth_configure(void)
107 struct aper_size_info_32
*current_size
;
109 current_size
= A_SIZE_32(agp_bridge
->current_size
);
111 printk(KERN_INFO PFX
"configuring for size idx: %d\n",
112 current_size
->size_value
);
114 /* aperture size and gatt addr */
115 pci_write_config_dword(agp_bridge
->dev
,
117 (agp_bridge
->gatt_bus_addr
& 0xfffff000)
118 | current_size
->size_value
);
121 * UniNorth seem to be buggy enough not to handle properly when
122 * the AGP aperture isn't mapped at bus physical address 0
124 agp_bridge
->gart_bus_addr
= 0;
126 /* Assume U3 or later on PPC64 systems */
127 /* high 4 bits of GART physical address go in UNI_N_CFG_AGP_BASE */
128 pci_write_config_dword(agp_bridge
->dev
, UNI_N_CFG_AGP_BASE
,
129 (agp_bridge
->gatt_bus_addr
>> 32) & 0xf);
131 pci_write_config_dword(agp_bridge
->dev
,
132 UNI_N_CFG_AGP_BASE
, agp_bridge
->gart_bus_addr
);
136 pci_write_config_dword(agp_bridge
->dev
,
137 UNI_N_CFG_GART_DUMMY_PAGE
,
138 agp_bridge
->scratch_page_real
>> 12);
144 static int uninorth_insert_memory(struct agp_memory
*mem
, off_t pg_start
,
147 int i
, j
, num_entries
;
150 temp
= agp_bridge
->current_size
;
151 num_entries
= A_SIZE_32(temp
)->num_entries
;
153 if (type
!= 0 || mem
->type
!= 0)
154 /* We know nothing of memory types */
156 if ((pg_start
+ mem
->page_count
) > num_entries
)
161 while (j
< (pg_start
+ mem
->page_count
)) {
162 if (agp_bridge
->gatt_table
[j
])
167 for (i
= 0, j
= pg_start
; i
< mem
->page_count
; i
++, j
++) {
168 agp_bridge
->gatt_table
[j
] =
169 cpu_to_le32((mem
->memory
[i
] & 0xFFFFF000UL
) | 0x1UL
);
170 flush_dcache_range((unsigned long)__va(mem
->memory
[i
]),
171 (unsigned long)__va(mem
->memory
[i
])+0x1000);
173 (void)in_le32((volatile u32
*)&agp_bridge
->gatt_table
[pg_start
]);
175 flush_dcache_range((unsigned long)&agp_bridge
->gatt_table
[pg_start
],
176 (unsigned long)&agp_bridge
->gatt_table
[pg_start
+ mem
->page_count
]);
178 uninorth_tlbflush(mem
);
182 static int u3_insert_memory(struct agp_memory
*mem
, off_t pg_start
, int type
)
188 temp
= agp_bridge
->current_size
;
189 num_entries
= A_SIZE_32(temp
)->num_entries
;
191 if (type
!= 0 || mem
->type
!= 0)
192 /* We know nothing of memory types */
194 if ((pg_start
+ mem
->page_count
) > num_entries
)
197 gp
= (u32
*) &agp_bridge
->gatt_table
[pg_start
];
198 for (i
= 0; i
< mem
->page_count
; ++i
) {
200 printk("u3_insert_memory: entry 0x%x occupied (%x)\n",
206 for (i
= 0; i
< mem
->page_count
; i
++) {
207 gp
[i
] = (mem
->memory
[i
] >> PAGE_SHIFT
) | 0x80000000UL
;
208 flush_dcache_range((unsigned long)__va(mem
->memory
[i
]),
209 (unsigned long)__va(mem
->memory
[i
])+0x1000);
212 flush_dcache_range((unsigned long)gp
, (unsigned long) &gp
[i
]);
213 uninorth_tlbflush(mem
);
218 int u3_remove_memory(struct agp_memory
*mem
, off_t pg_start
, int type
)
223 if (type
!= 0 || mem
->type
!= 0)
224 /* We know nothing of memory types */
227 gp
= (u32
*) &agp_bridge
->gatt_table
[pg_start
];
228 for (i
= 0; i
< mem
->page_count
; ++i
)
231 flush_dcache_range((unsigned long)gp
, (unsigned long) &gp
[i
]);
232 uninorth_tlbflush(mem
);
237 static void uninorth_agp_enable(struct agp_bridge_data
*bridge
, u32 mode
)
239 u32 command
, scratch
, status
;
242 pci_read_config_dword(bridge
->dev
,
243 bridge
->capndx
+ PCI_AGP_STATUS
,
246 command
= agp_collect_device_status(bridge
, mode
, status
);
247 command
|= PCI_AGP_COMMAND_AGP
;
249 if (uninorth_rev
== 0x21) {
251 * Darwin disable AGP 4x on this revision, thus we
252 * may assume it's broken. This is an AGP2 controller.
254 command
&= ~AGPSTAT2_4X
;
257 if ((uninorth_rev
>= 0x30) && (uninorth_rev
<= 0x33)) {
259 * We need to to set REQ_DEPTH to 7 for U3 versions 1.0, 2.1,
260 * 2.2 and 2.3, Darwin do so.
262 if ((command
>> AGPSTAT_RQ_DEPTH_SHIFT
) > 7)
263 command
= (command
& ~AGPSTAT_RQ_DEPTH
)
264 | (7 << AGPSTAT_RQ_DEPTH_SHIFT
);
267 uninorth_tlbflush(NULL
);
271 pci_write_config_dword(bridge
->dev
,
272 bridge
->capndx
+ PCI_AGP_COMMAND
,
274 pci_read_config_dword(bridge
->dev
,
275 bridge
->capndx
+ PCI_AGP_COMMAND
,
277 } while ((scratch
& PCI_AGP_COMMAND_AGP
) == 0 && ++timeout
< 1000);
278 if ((scratch
& PCI_AGP_COMMAND_AGP
) == 0)
279 printk(KERN_ERR PFX
"failed to write UniNorth AGP"
280 " command register\n");
282 if (uninorth_rev
>= 0x30) {
283 /* This is an AGP V3 */
284 agp_device_command(command
, (status
& AGPSTAT_MODE_3_0
));
287 agp_device_command(command
, 0);
290 uninorth_tlbflush(NULL
);
295 * These Power Management routines are _not_ called by the normal PCI PM layer,
296 * but directly by the video driver through function pointers in the device
299 static int agp_uninorth_suspend(struct pci_dev
*pdev
)
301 struct agp_bridge_data
*bridge
;
304 struct pci_dev
*device
= NULL
;
306 bridge
= agp_find_bridge(pdev
);
310 /* Only one suspend supported */
311 if (bridge
->dev_private_data
)
314 /* turn off AGP on the video chip, if it was enabled */
315 for_each_pci_dev(device
) {
316 /* Don't touch the bridge yet, device first */
319 /* Only deal with devices on the same bus here, no Mac has a P2P
320 * bridge on the AGP port, and mucking around the entire PCI
321 * tree is source of problems on some machines because of a bug
322 * in some versions of pci_find_capability() when hitting a dead
325 if (device
->bus
!= pdev
->bus
)
327 agp
= pci_find_capability(device
, PCI_CAP_ID_AGP
);
330 pci_read_config_dword(device
, agp
+ PCI_AGP_COMMAND
, &cmd
);
331 if (!(cmd
& PCI_AGP_COMMAND_AGP
))
333 printk("uninorth-agp: disabling AGP on device %s\n",
335 cmd
&= ~PCI_AGP_COMMAND_AGP
;
336 pci_write_config_dword(device
, agp
+ PCI_AGP_COMMAND
, cmd
);
339 /* turn off AGP on the bridge */
340 agp
= pci_find_capability(pdev
, PCI_CAP_ID_AGP
);
341 pci_read_config_dword(pdev
, agp
+ PCI_AGP_COMMAND
, &cmd
);
342 bridge
->dev_private_data
= (void *)(long)cmd
;
343 if (cmd
& PCI_AGP_COMMAND_AGP
) {
344 printk("uninorth-agp: disabling AGP on bridge %s\n",
346 cmd
&= ~PCI_AGP_COMMAND_AGP
;
347 pci_write_config_dword(pdev
, agp
+ PCI_AGP_COMMAND
, cmd
);
349 /* turn off the GART */
355 static int agp_uninorth_resume(struct pci_dev
*pdev
)
357 struct agp_bridge_data
*bridge
;
360 bridge
= agp_find_bridge(pdev
);
364 command
= (long)bridge
->dev_private_data
;
365 bridge
->dev_private_data
= NULL
;
366 if (!(command
& PCI_AGP_COMMAND_AGP
))
369 uninorth_agp_enable(bridge
, command
);
373 #endif /* CONFIG_PM */
375 static int uninorth_create_gatt_table(struct agp_bridge_data
*bridge
)
386 /* We can't handle 2 level gatt's */
387 if (bridge
->driver
->size_type
== LVL2_APER_SIZE
)
391 i
= bridge
->aperture_size_idx
;
392 temp
= bridge
->current_size
;
393 size
= page_order
= num_entries
= 0;
396 size
= A_SIZE_32(temp
)->size
;
397 page_order
= A_SIZE_32(temp
)->page_order
;
398 num_entries
= A_SIZE_32(temp
)->num_entries
;
400 table
= (char *) __get_free_pages(GFP_KERNEL
, page_order
);
404 bridge
->current_size
= A_IDX32(bridge
);
406 bridge
->aperture_size_idx
= i
;
408 } while (!table
&& (i
< bridge
->driver
->num_aperture_sizes
));
413 table_end
= table
+ ((PAGE_SIZE
* (1 << page_order
)) - 1);
415 for (page
= virt_to_page(table
); page
<= virt_to_page(table_end
); page
++)
416 SetPageReserved(page
);
418 bridge
->gatt_table_real
= (u32
*) table
;
419 bridge
->gatt_table
= (u32
*)table
;
420 bridge
->gatt_bus_addr
= virt_to_gart(table
);
422 for (i
= 0; i
< num_entries
; i
++)
423 bridge
->gatt_table
[i
] = 0;
425 flush_dcache_range((unsigned long)table
, (unsigned long)table_end
);
430 static int uninorth_free_gatt_table(struct agp_bridge_data
*bridge
)
433 char *table
, *table_end
;
437 temp
= bridge
->current_size
;
438 page_order
= A_SIZE_32(temp
)->page_order
;
440 /* Do not worry about freeing memory, because if this is
441 * called, then all agp memory is deallocated and removed
445 table
= (char *) bridge
->gatt_table_real
;
446 table_end
= table
+ ((PAGE_SIZE
* (1 << page_order
)) - 1);
448 for (page
= virt_to_page(table
); page
<= virt_to_page(table_end
); page
++)
449 ClearPageReserved(page
);
451 free_pages((unsigned long) bridge
->gatt_table_real
, page_order
);
456 void null_cache_flush(void)
463 static const struct aper_size_info_32 uninorth_sizes
[7] =
465 #if 0 /* Not sure uninorth supports that high aperture sizes */
477 * Not sure that u3 supports that high aperture sizes but it
478 * would strange if it did not :)
480 static const struct aper_size_info_32 u3_sizes
[8] =
482 {512, 131072, 7, 128},
492 const struct agp_bridge_driver uninorth_agp_driver
= {
493 .owner
= THIS_MODULE
,
494 .aperture_sizes
= (void *)uninorth_sizes
,
495 .size_type
= U32_APER_SIZE
,
496 .num_aperture_sizes
= 4,
497 .configure
= uninorth_configure
,
498 .fetch_size
= uninorth_fetch_size
,
499 .cleanup
= uninorth_cleanup
,
500 .tlb_flush
= uninorth_tlbflush
,
501 .mask_memory
= agp_generic_mask_memory
,
503 .cache_flush
= null_cache_flush
,
504 .agp_enable
= uninorth_agp_enable
,
505 .create_gatt_table
= uninorth_create_gatt_table
,
506 .free_gatt_table
= uninorth_free_gatt_table
,
507 .insert_memory
= uninorth_insert_memory
,
508 .remove_memory
= agp_generic_remove_memory
,
509 .alloc_by_type
= agp_generic_alloc_by_type
,
510 .free_by_type
= agp_generic_free_by_type
,
511 .agp_alloc_page
= agp_generic_alloc_page
,
512 .agp_destroy_page
= agp_generic_destroy_page
,
513 .agp_type_to_mask_type
= agp_generic_type_to_mask_type
,
514 .cant_use_aperture
= 1,
517 const struct agp_bridge_driver u3_agp_driver
= {
518 .owner
= THIS_MODULE
,
519 .aperture_sizes
= (void *)u3_sizes
,
520 .size_type
= U32_APER_SIZE
,
521 .num_aperture_sizes
= 8,
522 .configure
= uninorth_configure
,
523 .fetch_size
= uninorth_fetch_size
,
524 .cleanup
= uninorth_cleanup
,
525 .tlb_flush
= uninorth_tlbflush
,
526 .mask_memory
= agp_generic_mask_memory
,
528 .cache_flush
= null_cache_flush
,
529 .agp_enable
= uninorth_agp_enable
,
530 .create_gatt_table
= uninorth_create_gatt_table
,
531 .free_gatt_table
= uninorth_free_gatt_table
,
532 .insert_memory
= u3_insert_memory
,
533 .remove_memory
= u3_remove_memory
,
534 .alloc_by_type
= agp_generic_alloc_by_type
,
535 .free_by_type
= agp_generic_free_by_type
,
536 .agp_alloc_page
= agp_generic_alloc_page
,
537 .agp_destroy_page
= agp_generic_destroy_page
,
538 .agp_type_to_mask_type
= agp_generic_type_to_mask_type
,
539 .cant_use_aperture
= 1,
540 .needs_scratch_page
= 1,
543 static struct agp_device_ids uninorth_agp_device_ids
[] __devinitdata
= {
545 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP
,
546 .chipset_name
= "UniNorth",
549 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP_P
,
550 .chipset_name
= "UniNorth/Pangea",
553 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP15
,
554 .chipset_name
= "UniNorth 1.5",
557 .device_id
= PCI_DEVICE_ID_APPLE_UNI_N_AGP2
,
558 .chipset_name
= "UniNorth 2",
561 .device_id
= PCI_DEVICE_ID_APPLE_U3_AGP
,
562 .chipset_name
= "U3",
565 .device_id
= PCI_DEVICE_ID_APPLE_U3L_AGP
,
566 .chipset_name
= "U3L",
569 .device_id
= PCI_DEVICE_ID_APPLE_U3H_AGP
,
570 .chipset_name
= "U3H",
573 .device_id
= PCI_DEVICE_ID_APPLE_IPID2_AGP
,
574 .chipset_name
= "UniNorth/Intrepid2",
578 static int __devinit
agp_uninorth_probe(struct pci_dev
*pdev
,
579 const struct pci_device_id
*ent
)
581 struct agp_device_ids
*devs
= uninorth_agp_device_ids
;
582 struct agp_bridge_data
*bridge
;
583 struct device_node
*uninorth_node
;
587 cap_ptr
= pci_find_capability(pdev
, PCI_CAP_ID_AGP
);
591 /* probe for known chipsets */
592 for (j
= 0; devs
[j
].chipset_name
!= NULL
; ++j
) {
593 if (pdev
->device
== devs
[j
].device_id
) {
594 printk(KERN_INFO PFX
"Detected Apple %s chipset\n",
595 devs
[j
].chipset_name
);
600 printk(KERN_ERR PFX
"Unsupported Apple chipset (device id: %04x).\n",
605 /* Set revision to 0 if we could not read it. */
608 /* Locate core99 Uni-N */
609 uninorth_node
= of_find_node_by_name(NULL
, "uni-n");
611 if (uninorth_node
== NULL
) {
613 uninorth_node
= of_find_node_by_name(NULL
, "u3");
616 const int *revprop
= of_get_property(uninorth_node
,
619 uninorth_rev
= *revprop
& 0x3f;
620 of_node_put(uninorth_node
);
624 /* Inform platform of our suspend/resume caps */
625 pmac_register_agp_pm(pdev
, agp_uninorth_suspend
, agp_uninorth_resume
);
628 /* Allocate & setup our driver */
629 bridge
= agp_alloc_bridge();
634 bridge
->driver
= &u3_agp_driver
;
636 bridge
->driver
= &uninorth_agp_driver
;
639 bridge
->capndx
= cap_ptr
;
640 bridge
->flags
= AGP_ERRATA_FASTWRITES
;
642 /* Fill in the mode register */
643 pci_read_config_dword(pdev
, cap_ptr
+PCI_AGP_STATUS
, &bridge
->mode
);
645 pci_set_drvdata(pdev
, bridge
);
646 return agp_add_bridge(bridge
);
649 static void __devexit
agp_uninorth_remove(struct pci_dev
*pdev
)
651 struct agp_bridge_data
*bridge
= pci_get_drvdata(pdev
);
654 /* Inform platform of our suspend/resume caps */
655 pmac_register_agp_pm(pdev
, NULL
, NULL
);
658 agp_remove_bridge(bridge
);
659 agp_put_bridge(bridge
);
662 static struct pci_device_id agp_uninorth_pci_table
[] = {
664 .class = (PCI_CLASS_BRIDGE_HOST
<< 8),
666 .vendor
= PCI_VENDOR_ID_APPLE
,
667 .device
= PCI_ANY_ID
,
668 .subvendor
= PCI_ANY_ID
,
669 .subdevice
= PCI_ANY_ID
,
674 MODULE_DEVICE_TABLE(pci
, agp_uninorth_pci_table
);
676 static struct pci_driver agp_uninorth_pci_driver
= {
677 .name
= "agpgart-uninorth",
678 .id_table
= agp_uninorth_pci_table
,
679 .probe
= agp_uninorth_probe
,
680 .remove
= agp_uninorth_remove
,
683 static int __init
agp_uninorth_init(void)
687 return pci_register_driver(&agp_uninorth_pci_driver
);
690 static void __exit
agp_uninorth_cleanup(void)
692 pci_unregister_driver(&agp_uninorth_pci_driver
);
695 module_init(agp_uninorth_init
);
696 module_exit(agp_uninorth_cleanup
);
698 module_param(aperture
, charp
, 0);
699 MODULE_PARM_DESC(aperture
,
700 "Aperture size, must be power of two between 4MB and an\n"
701 "\t\tupper limit specific to the UniNorth revision.\n"
704 MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
705 MODULE_LICENSE("GPL");