2 * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.
4 * This source file is released under GPL v2 license (no other versions).
5 * See the COPYING file included in the main directory of this source
6 * distribution for the license terms and conditions.
11 * This file contains the definition of virtual memory management object
21 #define CT_PTP_NUM 1 /* num of device page table pages */
23 #include <linux/mutex.h>
24 #include <linux/list.h>
26 /* The chip can handle the page table of 4k pages
27 * (emu20k1 can handle even 8k pages, but we don't use it right now)
29 #define CT_PAGE_SIZE 4096
30 #define CT_PAGE_SHIFT 12
31 #define CT_PAGE_MASK (~(PAGE_SIZE - 1))
32 #define CT_PAGE_ALIGN(addr) ALIGN(addr, CT_PAGE_SIZE)
35 unsigned int addr; /* starting logical addr of this block */
36 unsigned int size; /* size of this device virtual mem block */
37 struct list_head list;
40 /* Virtual memory management object for card device */
42 void *ptp[CT_PTP_NUM]; /* Device page table pages */
43 unsigned int size; /* Available addr space in bytes */
44 struct list_head unused; /* List of unused blocks */
45 struct list_head used; /* List of used blocks */
48 /* Map host addr (kmalloced/vmalloced) to device logical addr. */
49 struct ct_vm_block *(*map)(struct ct_vm *, void *host_addr, int size);
50 /* Unmap device logical addr area. */
51 void (*unmap)(struct ct_vm *, struct ct_vm_block *block);
52 void *(*get_ptp_virt)(struct ct_vm *vm, int index);
55 int ct_vm_create(struct ct_vm **rvm);
56 void ct_vm_destroy(struct ct_vm *vm);