提交 738edc0a 编写于 作者: D Dave Airlie
上级 dc2caa30
...@@ -48,8 +48,8 @@ struct ttm_agp_backend { ...@@ -48,8 +48,8 @@ struct ttm_agp_backend {
struct agp_bridge_data *bridge; struct agp_bridge_data *bridge;
}; };
static int ttm_agp_bind(struct ttm_bo_device *bdev, int ttm_agp_bind(struct ttm_bo_device *bdev,
struct ttm_tt *ttm, struct ttm_resource *bo_mem) struct ttm_tt *ttm, struct ttm_resource *bo_mem)
{ {
struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm); struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm);
struct page *dummy_read_page = ttm_bo_glob.dummy_read_page; struct page *dummy_read_page = ttm_bo_glob.dummy_read_page;
...@@ -82,9 +82,10 @@ static int ttm_agp_bind(struct ttm_bo_device *bdev, ...@@ -82,9 +82,10 @@ static int ttm_agp_bind(struct ttm_bo_device *bdev,
return ret; return ret;
} }
EXPORT_SYMBOL(ttm_agp_bind);
static void ttm_agp_unbind(struct ttm_bo_device *bdev, void ttm_agp_unbind(struct ttm_bo_device *bdev,
struct ttm_tt *ttm) struct ttm_tt *ttm)
{ {
struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm); struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm);
...@@ -97,9 +98,10 @@ static void ttm_agp_unbind(struct ttm_bo_device *bdev, ...@@ -97,9 +98,10 @@ static void ttm_agp_unbind(struct ttm_bo_device *bdev,
agp_be->mem = NULL; agp_be->mem = NULL;
} }
} }
EXPORT_SYMBOL(ttm_agp_unbind);
static void ttm_agp_destroy(struct ttm_bo_device *bdev, void ttm_agp_destroy(struct ttm_bo_device *bdev,
struct ttm_tt *ttm) struct ttm_tt *ttm)
{ {
struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm); struct ttm_agp_backend *agp_be = container_of(ttm, struct ttm_agp_backend, ttm);
...@@ -108,6 +110,7 @@ static void ttm_agp_destroy(struct ttm_bo_device *bdev, ...@@ -108,6 +110,7 @@ static void ttm_agp_destroy(struct ttm_bo_device *bdev,
ttm_tt_fini(ttm); ttm_tt_fini(ttm);
kfree(agp_be); kfree(agp_be);
} }
EXPORT_SYMBOL(ttm_agp_destroy);
static struct ttm_backend_func ttm_agp_func = { static struct ttm_backend_func ttm_agp_func = {
.bind = ttm_agp_bind, .bind = ttm_agp_bind,
......
...@@ -266,6 +266,12 @@ struct ttm_tt *ttm_agp_tt_create(struct ttm_buffer_object *bo, ...@@ -266,6 +266,12 @@ struct ttm_tt *ttm_agp_tt_create(struct ttm_buffer_object *bo,
uint32_t page_flags); uint32_t page_flags);
int ttm_agp_tt_populate(struct ttm_bo_device *bdev, struct ttm_tt *ttm, struct ttm_operation_ctx *ctx); int ttm_agp_tt_populate(struct ttm_bo_device *bdev, struct ttm_tt *ttm, struct ttm_operation_ctx *ctx);
void ttm_agp_tt_unpopulate(struct ttm_bo_device *bdev, struct ttm_tt *ttm); void ttm_agp_tt_unpopulate(struct ttm_bo_device *bdev, struct ttm_tt *ttm);
int ttm_agp_bind(struct ttm_bo_device *bdev,
struct ttm_tt *ttm, struct ttm_resource *bo_mem);
void ttm_agp_unbind(struct ttm_bo_device *bdev,
struct ttm_tt *ttm);
void ttm_agp_destroy(struct ttm_bo_device *bdev,
struct ttm_tt *ttm);
#endif #endif
#endif #endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册