2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2003-2005 Silicon Graphics, Inc. All Rights Reserved.
10 * SGI TIOCA AGPGART routines.
14 #include <linux/acpi.h>
15 #include <linux/module.h>
16 #include <linux/pci.h>
17 #include <linux/slab.h>
18 #include <linux/init.h>
19 #include <linux/agp_backend.h>
20 #include <asm/sn/addrs.h>
21 #include <asm/sn/io.h>
22 #include <asm/sn/pcidev.h>
23 #include <asm/sn/pcibus_provider_defs.h>
24 #include <asm/sn/tioca_provider.h>
27 extern int agp_memory_reserved
;
28 extern uint32_t tioca_gart_found
;
29 extern struct list_head tioca_list
;
30 static struct agp_bridge_data
**sgi_tioca_agp_bridges
;
33 * The aperature size and related information is set up at TIOCA init time.
34 * Values for this table will be extracted and filled in at
35 * sgi_tioca_fetch_size() time.
38 static struct aper_size_info_fixed sgi_tioca_sizes
[] = {
42 static struct page
*sgi_tioca_alloc_page(struct agp_bridge_data
*bridge
)
46 struct tioca_kernel
*info
=
47 (struct tioca_kernel
*)bridge
->dev_private_data
;
49 nid
= info
->ca_closest_node
;
50 page
= alloc_pages_node(nid
, GFP_KERNEL
, 0);
55 atomic_inc(&agp_bridge
->current_memory_agp
);
60 * Flush GART tlb's. Cannot selectively flush based on memory so the mem
64 static void sgi_tioca_tlbflush(struct agp_memory
*mem
)
66 tioca_tlbflush(mem
->bridge
->dev_private_data
);
70 * Given an address of a host physical page, turn it into a valid gart
74 sgi_tioca_mask_memory(struct agp_bridge_data
*bridge
, dma_addr_t addr
,
77 return tioca_physpage_to_gart(addr
);
80 static void sgi_tioca_agp_enable(struct agp_bridge_data
*bridge
, u32 mode
)
82 tioca_fastwrite_enable(bridge
->dev_private_data
);
86 * sgi_tioca_configure() doesn't have anything to do since the base CA driver
87 * has alreay set up the GART.
90 static int sgi_tioca_configure(void)
96 * Determine gfx aperature size. This has already been determined by the
97 * CA driver init, so just need to set agp_bridge values accordingly.
100 static int sgi_tioca_fetch_size(void)
102 struct tioca_kernel
*info
=
103 (struct tioca_kernel
*)agp_bridge
->dev_private_data
;
105 sgi_tioca_sizes
[0].size
= info
->ca_gfxap_size
/ MB(1);
106 sgi_tioca_sizes
[0].num_entries
= info
->ca_gfxgart_entries
;
108 return sgi_tioca_sizes
[0].size
;
111 static int sgi_tioca_create_gatt_table(struct agp_bridge_data
*bridge
)
113 struct tioca_kernel
*info
=
114 (struct tioca_kernel
*)bridge
->dev_private_data
;
116 bridge
->gatt_table_real
= (u32
*) info
->ca_gfxgart
;
117 bridge
->gatt_table
= bridge
->gatt_table_real
;
118 bridge
->gatt_bus_addr
= info
->ca_gfxgart_base
;
123 static int sgi_tioca_free_gatt_table(struct agp_bridge_data
*bridge
)
128 static int sgi_tioca_insert_memory(struct agp_memory
*mem
, off_t pg_start
,
135 struct agp_bridge_data
*bridge
;
138 bridge
= mem
->bridge
;
142 table
= (u64
*)bridge
->gatt_table
;
144 temp
= bridge
->current_size
;
146 switch (bridge
->driver
->size_type
) {
148 num_entries
= A_SIZE_8(temp
)->num_entries
;
151 num_entries
= A_SIZE_16(temp
)->num_entries
;
154 num_entries
= A_SIZE_32(temp
)->num_entries
;
156 case FIXED_APER_SIZE
:
157 num_entries
= A_SIZE_FIX(temp
)->num_entries
;
166 num_entries
-= agp_memory_reserved
/ PAGE_SIZE
;
170 if (type
!= 0 || mem
->type
!= 0) {
174 if ((pg_start
+ mem
->page_count
) > num_entries
)
179 while (j
< (pg_start
+ mem
->page_count
)) {
185 if (!mem
->is_flushed
) {
186 bridge
->driver
->cache_flush();
187 mem
->is_flushed
= true;
190 for (i
= 0, j
= pg_start
; i
< mem
->page_count
; i
++, j
++) {
192 bridge
->driver
->mask_memory(bridge
,
193 page_to_phys(mem
->pages
[i
]),
197 bridge
->driver
->tlb_flush(mem
);
201 static int sgi_tioca_remove_memory(struct agp_memory
*mem
, off_t pg_start
,
205 struct agp_bridge_data
*bridge
;
208 bridge
= mem
->bridge
;
212 if (type
!= 0 || mem
->type
!= 0) {
216 table
= (u64
*)bridge
->gatt_table
;
218 for (i
= pg_start
; i
< (mem
->page_count
+ pg_start
); i
++) {
222 bridge
->driver
->tlb_flush(mem
);
226 static void sgi_tioca_cache_flush(void)
231 * Cleanup. Nothing to do as the CA driver owns the GART.
234 static void sgi_tioca_cleanup(void)
238 static struct agp_bridge_data
*sgi_tioca_find_bridge(struct pci_dev
*pdev
)
240 struct agp_bridge_data
*bridge
;
242 list_for_each_entry(bridge
, &agp_bridges
, list
) {
243 if (bridge
->dev
->bus
== pdev
->bus
)
249 const struct agp_bridge_driver sgi_tioca_driver
= {
250 .owner
= THIS_MODULE
,
251 .size_type
= U16_APER_SIZE
,
252 .configure
= sgi_tioca_configure
,
253 .fetch_size
= sgi_tioca_fetch_size
,
254 .cleanup
= sgi_tioca_cleanup
,
255 .tlb_flush
= sgi_tioca_tlbflush
,
256 .mask_memory
= sgi_tioca_mask_memory
,
257 .agp_enable
= sgi_tioca_agp_enable
,
258 .cache_flush
= sgi_tioca_cache_flush
,
259 .create_gatt_table
= sgi_tioca_create_gatt_table
,
260 .free_gatt_table
= sgi_tioca_free_gatt_table
,
261 .insert_memory
= sgi_tioca_insert_memory
,
262 .remove_memory
= sgi_tioca_remove_memory
,
263 .alloc_by_type
= agp_generic_alloc_by_type
,
264 .free_by_type
= agp_generic_free_by_type
,
265 .agp_alloc_page
= sgi_tioca_alloc_page
,
266 .agp_destroy_page
= agp_generic_destroy_page
,
267 .agp_type_to_mask_type
= agp_generic_type_to_mask_type
,
268 .cant_use_aperture
= true,
269 .needs_scratch_page
= false,
270 .num_aperture_sizes
= 1,
273 static int agp_sgi_init(void)
276 struct tioca_kernel
*info
;
277 struct pci_dev
*pdev
= NULL
;
279 if (tioca_gart_found
)
280 printk(KERN_INFO PFX
"SGI TIO CA GART driver initialized.\n");
284 sgi_tioca_agp_bridges
= kmalloc(tioca_gart_found
*
285 sizeof(struct agp_bridge_data
*),
287 if (!sgi_tioca_agp_bridges
)
291 list_for_each_entry(info
, &tioca_list
, ca_list
) {
292 if (list_empty(info
->ca_devices
))
294 list_for_each_entry(pdev
, info
->ca_devices
, bus_list
) {
297 if (pdev
->class != (PCI_CLASS_DISPLAY_VGA
<< 8))
299 cap_ptr
= pci_find_capability(pdev
, PCI_CAP_ID_AGP
);
303 sgi_tioca_agp_bridges
[j
] = agp_alloc_bridge();
304 printk(KERN_INFO PFX
"bridge %d = 0x%p\n", j
,
305 sgi_tioca_agp_bridges
[j
]);
306 if (sgi_tioca_agp_bridges
[j
]) {
307 sgi_tioca_agp_bridges
[j
]->dev
= pdev
;
308 sgi_tioca_agp_bridges
[j
]->dev_private_data
= info
;
309 sgi_tioca_agp_bridges
[j
]->driver
= &sgi_tioca_driver
;
310 sgi_tioca_agp_bridges
[j
]->gart_bus_addr
=
312 sgi_tioca_agp_bridges
[j
]->mode
= (0x7D << 24) | /* 126 requests */
313 (0x1 << 9) | /* SBA supported */
314 (0x1 << 5) | /* 64-bit addresses supported */
315 (0x1 << 4) | /* FW supported */
316 (0x1 << 3) | /* AGP 3.0 mode */
317 0x2; /* 8x transfer only */
318 sgi_tioca_agp_bridges
[j
]->current_size
=
319 sgi_tioca_agp_bridges
[j
]->previous_size
=
320 (void *)&sgi_tioca_sizes
[0];
321 agp_add_bridge(sgi_tioca_agp_bridges
[j
]);
326 agp_find_bridge
= &sgi_tioca_find_bridge
;
330 static void agp_sgi_cleanup(void)
332 kfree(sgi_tioca_agp_bridges
);
333 sgi_tioca_agp_bridges
= NULL
;
336 module_init(agp_sgi_init
);
337 module_exit(agp_sgi_cleanup
);
339 MODULE_LICENSE("GPL and additional rights");