blob: 520e19bc649ffcfacea2b10703d9a08e9ae9e7e4 [file] [log] [blame]
Wai Yew CHAY8cc72362009-05-14 08:05:58 +02001/**
2 * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.
3 *
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.
7 *
8 * @File ctvmem.c
9 *
10 * @Brief
11 * This file contains the implementation of virtual memory management object
12 * for card device.
13 *
14 * @Author Liu Chun
15 * @Date Apr 1 2008
16 */
17
18#include "ctvmem.h"
Sudip Mukherjee0cae90a2014-09-29 14:33:26 +053019#include "ctatc.h"
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020020#include <linux/slab.h>
21#include <linux/mm.h>
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020022#include <linux/io.h>
Takashi Iwaic76157d2009-06-02 15:26:19 +020023#include <sound/pcm.h>
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020024
Takashi Iwaicd391e22009-06-02 15:04:29 +020025#define CT_PTES_PER_PAGE (CT_PAGE_SIZE / sizeof(void *))
26#define CT_ADDRS_PER_PAGE (CT_PTES_PER_PAGE * CT_PAGE_SIZE)
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020027
28/* *
29 * Find or create vm block based on requested @size.
30 * @size must be page aligned.
31 * */
32static struct ct_vm_block *
Sudip Mukherjee0cae90a2014-09-29 14:33:26 +053033get_vm_block(struct ct_vm *vm, unsigned int size, struct ct_atc *atc)
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020034{
Takashi Iwai514eef92009-06-08 14:57:57 +020035 struct ct_vm_block *block = NULL, *entry;
36 struct list_head *pos;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020037
Takashi Iwaic76157d2009-06-02 15:26:19 +020038 size = CT_PAGE_ALIGN(size);
39 if (size > vm->size) {
Sudip Mukherjee0cae90a2014-09-29 14:33:26 +053040 dev_err(atc->card->dev,
41 "Fail! No sufficient device virtual memory space available!\n");
Takashi Iwaic76157d2009-06-02 15:26:19 +020042 return NULL;
43 }
44
Takashi Iwai8a4259b2009-06-02 08:40:51 +020045 mutex_lock(&vm->lock);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020046 list_for_each(pos, &vm->unused) {
47 entry = list_entry(pos, struct ct_vm_block, list);
48 if (entry->size >= size)
49 break; /* found a block that is big enough */
50 }
51 if (pos == &vm->unused)
Takashi Iwai8a4259b2009-06-02 08:40:51 +020052 goto out;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020053
54 if (entry->size == size) {
55 /* Move the vm node from unused list to used list directly */
Kirill A. Shutemov9d4ed9e2011-03-16 00:53:24 +020056 list_move(&entry->list, &vm->used);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020057 vm->size -= size;
Takashi Iwai8a4259b2009-06-02 08:40:51 +020058 block = entry;
59 goto out;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020060 }
61
62 block = kzalloc(sizeof(*block), GFP_KERNEL);
Takashi Iwai35ebf6e2009-07-22 17:12:34 +020063 if (!block)
Takashi Iwai8a4259b2009-06-02 08:40:51 +020064 goto out;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020065
66 block->addr = entry->addr;
67 block->size = size;
68 list_add(&block->list, &vm->used);
69 entry->addr += size;
70 entry->size -= size;
71 vm->size -= size;
72
Takashi Iwai8a4259b2009-06-02 08:40:51 +020073 out:
74 mutex_unlock(&vm->lock);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020075 return block;
76}
77
78static void put_vm_block(struct ct_vm *vm, struct ct_vm_block *block)
79{
Takashi Iwai514eef92009-06-08 14:57:57 +020080 struct ct_vm_block *entry, *pre_ent;
81 struct list_head *pos, *pre;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020082
Takashi Iwaic76157d2009-06-02 15:26:19 +020083 block->size = CT_PAGE_ALIGN(block->size);
84
Takashi Iwai8a4259b2009-06-02 08:40:51 +020085 mutex_lock(&vm->lock);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +020086 list_del(&block->list);
87 vm->size += block->size;
88
89 list_for_each(pos, &vm->unused) {
90 entry = list_entry(pos, struct ct_vm_block, list);
91 if (entry->addr >= (block->addr + block->size))
92 break; /* found a position */
93 }
94 if (pos == &vm->unused) {
95 list_add_tail(&block->list, &vm->unused);
96 entry = block;
97 } else {
98 if ((block->addr + block->size) == entry->addr) {
99 entry->addr = block->addr;
100 entry->size += block->size;
101 kfree(block);
102 } else {
103 __list_add(&block->list, pos->prev, pos);
104 entry = block;
105 }
106 }
107
108 pos = &entry->list;
109 pre = pos->prev;
110 while (pre != &vm->unused) {
111 entry = list_entry(pos, struct ct_vm_block, list);
112 pre_ent = list_entry(pre, struct ct_vm_block, list);
113 if ((pre_ent->addr + pre_ent->size) > entry->addr)
114 break;
115
116 pre_ent->size += entry->size;
117 list_del(pos);
118 kfree(entry);
119 pos = pre;
120 pre = pos->prev;
121 }
Takashi Iwai8a4259b2009-06-02 08:40:51 +0200122 mutex_unlock(&vm->lock);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200123}
124
125/* Map host addr (kmalloced/vmalloced) to device logical addr. */
126static struct ct_vm_block *
Takashi Iwaic76157d2009-06-02 15:26:19 +0200127ct_vm_map(struct ct_vm *vm, struct snd_pcm_substream *substream, int size)
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200128{
Takashi Iwaic76157d2009-06-02 15:26:19 +0200129 struct ct_vm_block *block;
130 unsigned int pte_start;
131 unsigned i, pages;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200132 unsigned long *ptp;
Sudip Mukherjee0cae90a2014-09-29 14:33:26 +0530133 struct ct_atc *atc = snd_pcm_substream_chip(substream);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200134
Sudip Mukherjee0cae90a2014-09-29 14:33:26 +0530135 block = get_vm_block(vm, size, atc);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200136 if (block == NULL) {
Sudip Mukherjee0cae90a2014-09-29 14:33:26 +0530137 dev_err(atc->card->dev,
138 "No virtual memory block that is big enough to allocate!\n");
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200139 return NULL;
140 }
141
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100142 ptp = (unsigned long *)vm->ptp[0].area;
Takashi Iwaicd391e22009-06-02 15:04:29 +0200143 pte_start = (block->addr >> CT_PAGE_SHIFT);
Takashi Iwaic76157d2009-06-02 15:26:19 +0200144 pages = block->size >> CT_PAGE_SHIFT;
145 for (i = 0; i < pages; i++) {
146 unsigned long addr;
147 addr = snd_pcm_sgbuf_get_addr(substream, i << CT_PAGE_SHIFT);
148 ptp[pte_start + i] = addr;
149 }
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200150
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200151 block->size = size;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200152 return block;
153}
154
155static void ct_vm_unmap(struct ct_vm *vm, struct ct_vm_block *block)
156{
157 /* do unmapping */
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200158 put_vm_block(vm, block);
159}
160
161/* *
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100162 * return the host physical addr of the @index-th device
163 * page table page on success, or ~0UL on failure.
164 * The first returned ~0UL indicates the termination.
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200165 * */
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100166static dma_addr_t
167ct_get_ptp_phys(struct ct_vm *vm, int index)
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200168{
Masahiro Yamada44cc4a02016-09-06 20:41:19 +0900169 return (index >= CT_PTP_NUM) ? ~0UL : vm->ptp[index].addr;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200170}
171
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100172int ct_vm_create(struct ct_vm **rvm, struct pci_dev *pci)
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200173{
174 struct ct_vm *vm;
175 struct ct_vm_block *block;
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100176 int i, err = 0;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200177
178 *rvm = NULL;
179
180 vm = kzalloc(sizeof(*vm), GFP_KERNEL);
Takashi Iwai35ebf6e2009-07-22 17:12:34 +0200181 if (!vm)
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200182 return -ENOMEM;
183
Takashi Iwai8a4259b2009-06-02 08:40:51 +0200184 mutex_init(&vm->lock);
185
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200186 /* Allocate page table pages */
187 for (i = 0; i < CT_PTP_NUM; i++) {
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100188 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
189 snd_dma_pci_data(pci),
190 PAGE_SIZE, &vm->ptp[i]);
191 if (err < 0)
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200192 break;
193 }
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100194 if (err < 0) {
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200195 /* no page table pages are allocated */
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100196 ct_vm_destroy(vm);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200197 return -ENOMEM;
198 }
199 vm->size = CT_ADDRS_PER_PAGE * i;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200200 vm->map = ct_vm_map;
201 vm->unmap = ct_vm_unmap;
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100202 vm->get_ptp_phys = ct_get_ptp_phys;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200203 INIT_LIST_HEAD(&vm->unused);
204 INIT_LIST_HEAD(&vm->used);
205 block = kzalloc(sizeof(*block), GFP_KERNEL);
206 if (NULL != block) {
207 block->addr = 0;
208 block->size = vm->size;
209 list_add(&block->list, &vm->unused);
210 }
211
212 *rvm = vm;
213 return 0;
214}
215
216/* The caller must ensure no mapping pages are being used
217 * by hardware before calling this function */
218void ct_vm_destroy(struct ct_vm *vm)
219{
220 int i;
Takashi Iwai514eef92009-06-08 14:57:57 +0200221 struct list_head *pos;
222 struct ct_vm_block *entry;
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200223
224 /* free used and unused list nodes */
225 while (!list_empty(&vm->used)) {
226 pos = vm->used.next;
227 list_del(pos);
228 entry = list_entry(pos, struct ct_vm_block, list);
229 kfree(entry);
230 }
231 while (!list_empty(&vm->unused)) {
232 pos = vm->unused.next;
233 list_del(pos);
234 entry = list_entry(pos, struct ct_vm_block, list);
235 kfree(entry);
236 }
237
238 /* free allocated page table pages */
239 for (i = 0; i < CT_PTP_NUM; i++)
Jaroslav Kysela21956b62010-02-02 19:58:25 +0100240 snd_dma_free_pages(&vm->ptp[i]);
Wai Yew CHAY8cc72362009-05-14 08:05:58 +0200241
242 vm->size = 0;
243
244 kfree(vm);
245}