Home | History | Annotate | Download | only in drm

Lines Matching defs:bridge

77 	 * XXX How do we find the agp bridge attached to this
87 struct agp_bridge_data *const bridge = agp_find_bridge(pdev);
89 if (bridge == NULL)
93 if (agp_acquire(&bridge->abd_sc) != 0)
96 return bridge;
100 agp_backend_release(struct agp_bridge_data *bridge)
104 (void)agp_release(&bridge->abd_sc);
115 agp_enable(struct agp_bridge_data *bridge)
122 agp_allocate_memory(struct agp_bridge_data *bridge, size_t npages,
125 return agp_alloc_memory(&bridge->abd_sc, (npages << AGP_PAGE_SHIFT),
135 agp_free_memory(struct agp_bridge_data *bridge, struct agp_memory *mem)
154 agp_copy_info(struct agp_bridge_data *bridge, struct agp_kern_info *info)
156 agp_get_info(bridge, &info->aki_info);
160 drm_bind_agp(struct agp_bridge_data *bridge, struct agp_memory *mem,
163 return agp_bind_memory(&bridge->abd_sc, mem,
168 drm_unbind_agp(struct agp_bridge_data *bridge, struct agp_memory *mem)
170 return agp_unbind_memory(&bridge->abd_sc, mem);
174 drm_free_agp(struct agp_bridge_data *bridge, struct agp_memory *mem,
177 agp_free_memory(&bridge->abd_sc, mem);