1 #include <linux/module.h>
3 #include <linux/init.h>
4 #include <linux/agp_backend.h>
6 #include <linux/slab.h>
8 #include <asm/machvec.h>
9 #include <asm/agp_backend.h>
10 #include "../../../arch/alpha/kernel/pci_impl.h"
14 static struct page
*alpha_core_agp_vm_nopage(struct vm_area_struct
*vma
,
15 unsigned long address
,
18 alpha_agp_info
*agp
= agp_bridge
->dev_private_data
;
23 dma_addr
= address
- vma
->vm_start
+ agp
->aperture
.bus_base
;
24 pa
= agp
->ops
->translate(agp
, dma_addr
);
26 if (pa
== (unsigned long)-EINVAL
)
27 return NULL
; /* no translation */
30 * Get the page, inc the use count, and return it
32 page
= virt_to_page(__va(pa
));
35 *type
= VM_FAULT_MINOR
;
39 static struct aper_size_info_fixed alpha_core_agp_sizes
[] =
41 { 0, 0, 0 }, /* filled in by alpha_core_agp_setup */
44 struct vm_operations_struct alpha_core_agp_vm_ops
= {
45 .nopage
= alpha_core_agp_vm_nopage
,
49 static int alpha_core_agp_fetch_size(void)
51 return alpha_core_agp_sizes
[0].size
;
54 static int alpha_core_agp_configure(void)
56 alpha_agp_info
*agp
= agp_bridge
->dev_private_data
;
57 agp_bridge
->gart_bus_addr
= agp
->aperture
.bus_base
;
61 static void alpha_core_agp_cleanup(void)
63 alpha_agp_info
*agp
= agp_bridge
->dev_private_data
;
65 agp
->ops
->cleanup(agp
);
68 static void alpha_core_agp_tlbflush(struct agp_memory
*mem
)
70 alpha_agp_info
*agp
= agp_bridge
->dev_private_data
;
71 alpha_mv
.mv_pci_tbi(agp
->hose
, 0, -1);
74 static void alpha_core_agp_enable(struct agp_bridge_data
*bridge
, u32 mode
)
76 alpha_agp_info
*agp
= bridge
->dev_private_data
;
78 agp
->mode
.lw
= agp_collect_device_status(bridge
, mode
,
81 agp
->mode
.bits
.enable
= 1;
82 agp
->ops
->configure(agp
);
84 agp_device_command(agp
->mode
.lw
, 0);
87 static int alpha_core_agp_insert_memory(struct agp_memory
*mem
, off_t pg_start
,
90 alpha_agp_info
*agp
= agp_bridge
->dev_private_data
;
91 int num_entries
, status
;
94 if (type
>= AGP_USER_TYPES
|| mem
->type
>= AGP_USER_TYPES
)
97 temp
= agp_bridge
->current_size
;
98 num_entries
= A_SIZE_FIX(temp
)->num_entries
;
99 if ((pg_start
+ mem
->page_count
) > num_entries
)
102 status
= agp
->ops
->bind(agp
, pg_start
, mem
);
104 alpha_core_agp_tlbflush(mem
);
109 static int alpha_core_agp_remove_memory(struct agp_memory
*mem
, off_t pg_start
,
112 alpha_agp_info
*agp
= agp_bridge
->dev_private_data
;
115 status
= agp
->ops
->unbind(agp
, pg_start
, mem
);
116 alpha_core_agp_tlbflush(mem
);
120 static int alpha_core_agp_create_free_gatt_table(struct agp_bridge_data
*a
)
125 struct agp_bridge_driver alpha_core_agp_driver
= {
126 .owner
= THIS_MODULE
,
127 .aperture_sizes
= alpha_core_agp_sizes
,
128 .num_aperture_sizes
= 1,
129 .size_type
= FIXED_APER_SIZE
,
130 .cant_use_aperture
= 1,
133 .fetch_size
= alpha_core_agp_fetch_size
,
134 .configure
= alpha_core_agp_configure
,
135 .agp_enable
= alpha_core_agp_enable
,
136 .cleanup
= alpha_core_agp_cleanup
,
137 .tlb_flush
= alpha_core_agp_tlbflush
,
138 .mask_memory
= agp_generic_mask_memory
,
139 .cache_flush
= global_cache_flush
,
140 .create_gatt_table
= alpha_core_agp_create_free_gatt_table
,
141 .free_gatt_table
= alpha_core_agp_create_free_gatt_table
,
142 .insert_memory
= alpha_core_agp_insert_memory
,
143 .remove_memory
= alpha_core_agp_remove_memory
,
144 .alloc_by_type
= agp_generic_alloc_by_type
,
145 .free_by_type
= agp_generic_free_by_type
,
146 .agp_alloc_page
= agp_generic_alloc_page
,
147 .agp_destroy_page
= agp_generic_destroy_page
,
148 .agp_type_to_mask_type
= agp_generic_type_to_mask_type
,
151 struct agp_bridge_data
*alpha_bridge
;
154 alpha_core_agp_setup(void)
156 alpha_agp_info
*agp
= alpha_mv
.agp_info();
157 struct pci_dev
*pdev
; /* faked */
158 struct aper_size_info_fixed
*aper_size
;
162 if (agp
->ops
->setup(agp
))
166 * Build the aperture size descriptor
168 aper_size
= alpha_core_agp_sizes
;
169 aper_size
->size
= agp
->aperture
.size
/ (1024 * 1024);
170 aper_size
->num_entries
= agp
->aperture
.size
/ PAGE_SIZE
;
171 aper_size
->page_order
= __ffs(aper_size
->num_entries
/ 1024);
174 * Build a fake pci_dev struct
176 pdev
= alloc_pci_dev();
179 pdev
->vendor
= 0xffff;
180 pdev
->device
= 0xffff;
181 pdev
->sysdata
= agp
->hose
;
183 alpha_bridge
= agp_alloc_bridge();
187 alpha_bridge
->driver
= &alpha_core_agp_driver
;
188 alpha_bridge
->vm_ops
= &alpha_core_agp_vm_ops
;
189 alpha_bridge
->current_size
= aper_size
; /* only 1 size */
190 alpha_bridge
->dev_private_data
= agp
;
191 alpha_bridge
->dev
= pdev
;
192 alpha_bridge
->mode
= agp
->capability
.lw
;
194 printk(KERN_INFO PFX
"Detected AGP on hose %d\n", agp
->hose
->index
);
195 return agp_add_bridge(alpha_bridge
);
202 static int __init
agp_alpha_core_init(void)
206 if (alpha_mv
.agp_info
)
207 return alpha_core_agp_setup();
211 static void __exit
agp_alpha_core_cleanup(void)
213 agp_remove_bridge(alpha_bridge
);
214 agp_put_bridge(alpha_bridge
);
217 module_init(agp_alpha_core_init
);
218 module_exit(agp_alpha_core_cleanup
);
220 MODULE_AUTHOR("Jeff Wiedemeier <Jeff.Wiedemeier@hp.com>");
221 MODULE_LICENSE("GPL and additional rights");