Linux Audio

Check our new training course

Loading...
v3.1
  1/*
  2 * Copyright (C) 2008-2009 ST-Ericsson AB
  3 * License terms: GNU General Public License (GPL) version 2
  4 * TCM memory handling for ARM systems
  5 *
  6 * Author: Linus Walleij <linus.walleij@stericsson.com>
  7 * Author: Rickard Andersson <rickard.andersson@stericsson.com>
  8 */
  9#include <linux/init.h>
 10#include <linux/kernel.h>
 11#include <linux/module.h>
 12#include <linux/stddef.h>
 13#include <linux/ioport.h>
 14#include <linux/genalloc.h>
 15#include <linux/string.h> /* memcpy */
 16#include <asm/cputype.h>
 17#include <asm/mach/map.h>
 18#include <asm/memory.h>
 
 19#include "tcm.h"
 20
 21static struct gen_pool *tcm_pool;
 22static bool dtcm_present;
 23static bool itcm_present;
 24
 25/* TCM section definitions from the linker */
 26extern char __itcm_start, __sitcm_text, __eitcm_text;
 27extern char __dtcm_start, __sdtcm_data, __edtcm_data;
 28
 29/* These will be increased as we run */
 30u32 dtcm_end = DTCM_OFFSET;
 31u32 itcm_end = ITCM_OFFSET;
 32
 33/*
 34 * TCM memory resources
 35 */
 36static struct resource dtcm_res = {
 37	.name = "DTCM RAM",
 38	.start = DTCM_OFFSET,
 39	.end = DTCM_OFFSET,
 40	.flags = IORESOURCE_MEM
 41};
 42
 43static struct resource itcm_res = {
 44	.name = "ITCM RAM",
 45	.start = ITCM_OFFSET,
 46	.end = ITCM_OFFSET,
 47	.flags = IORESOURCE_MEM
 48};
 49
 50static struct map_desc dtcm_iomap[] __initdata = {
 51	{
 52		.virtual	= DTCM_OFFSET,
 53		.pfn		= __phys_to_pfn(DTCM_OFFSET),
 54		.length		= 0,
 55		.type		= MT_MEMORY_DTCM
 56	}
 57};
 58
 59static struct map_desc itcm_iomap[] __initdata = {
 60	{
 61		.virtual	= ITCM_OFFSET,
 62		.pfn		= __phys_to_pfn(ITCM_OFFSET),
 63		.length		= 0,
 64		.type		= MT_MEMORY_ITCM
 65	}
 66};
 67
 68/*
 69 * Allocate a chunk of TCM memory
 70 */
 71void *tcm_alloc(size_t len)
 72{
 73	unsigned long vaddr;
 74
 75	if (!tcm_pool)
 76		return NULL;
 77
 78	vaddr = gen_pool_alloc(tcm_pool, len);
 79	if (!vaddr)
 80		return NULL;
 81
 82	return (void *) vaddr;
 83}
 84EXPORT_SYMBOL(tcm_alloc);
 85
 86/*
 87 * Free a chunk of TCM memory
 88 */
 89void tcm_free(void *addr, size_t len)
 90{
 91	gen_pool_free(tcm_pool, (unsigned long) addr, len);
 92}
 93EXPORT_SYMBOL(tcm_free);
 94
 95bool tcm_dtcm_present(void)
 96{
 97	return dtcm_present;
 98}
 99EXPORT_SYMBOL(tcm_dtcm_present);
100
101bool tcm_itcm_present(void)
102{
103	return itcm_present;
104}
105EXPORT_SYMBOL(tcm_itcm_present);
106
107static int __init setup_tcm_bank(u8 type, u8 bank, u8 banks,
108				  u32 *offset)
109{
110	const int tcm_sizes[16] = { 0, -1, -1, 4, 8, 16, 32, 64, 128,
111				    256, 512, 1024, -1, -1, -1, -1 };
112	u32 tcm_region;
113	int tcm_size;
114
115	/*
116	 * If there are more than one TCM bank of this type,
117	 * select the TCM bank to operate on in the TCM selection
118	 * register.
119	 */
120	if (banks > 1)
121		asm("mcr	p15, 0, %0, c9, c2, 0"
122		    : /* No output operands */
123		    : "r" (bank));
124
125	/* Read the special TCM region register c9, 0 */
126	if (!type)
127		asm("mrc	p15, 0, %0, c9, c1, 0"
128		    : "=r" (tcm_region));
129	else
130		asm("mrc	p15, 0, %0, c9, c1, 1"
131		    : "=r" (tcm_region));
132
133	tcm_size = tcm_sizes[(tcm_region >> 2) & 0x0f];
134	if (tcm_size < 0) {
135		pr_err("CPU: %sTCM%d of unknown size\n",
136		       type ? "I" : "D", bank);
137		return -EINVAL;
138	} else if (tcm_size > 32) {
139		pr_err("CPU: %sTCM%d larger than 32k found\n",
140		       type ? "I" : "D", bank);
141		return -EINVAL;
142	} else {
143		pr_info("CPU: found %sTCM%d %dk @ %08x, %senabled\n",
144			type ? "I" : "D",
145			bank,
146			tcm_size,
147			(tcm_region & 0xfffff000U),
148			(tcm_region & 1) ? "" : "not ");
149	}
150
151	/* Not much fun you can do with a size 0 bank */
152	if (tcm_size == 0)
153		return 0;
154
155	/* Force move the TCM bank to where we want it, enable */
156	tcm_region = *offset | (tcm_region & 0x00000ffeU) | 1;
157
158	if (!type)
159		asm("mcr	p15, 0, %0, c9, c1, 0"
160		    : /* No output operands */
161		    : "r" (tcm_region));
162	else
163		asm("mcr	p15, 0, %0, c9, c1, 1"
164		    : /* No output operands */
165		    : "r" (tcm_region));
166
167	/* Increase offset */
168	*offset += (tcm_size << 10);
169
170	pr_info("CPU: moved %sTCM%d %dk to %08x, enabled\n",
171		type ? "I" : "D",
172		bank,
173		tcm_size,
174		(tcm_region & 0xfffff000U));
175	return 0;
176}
177
178/*
179 * This initializes the TCM memory
180 */
181void __init tcm_init(void)
182{
183	u32 tcm_status = read_cpuid_tcmstatus();
184	u8 dtcm_banks = (tcm_status >> 16) & 0x03;
185	u8 itcm_banks = (tcm_status & 0x03);
186	size_t dtcm_code_sz = &__edtcm_data - &__sdtcm_data;
187	size_t itcm_code_sz = &__eitcm_text - &__sitcm_text;
188	char *start;
189	char *end;
190	char *ram;
191	int ret;
192	int i;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
194	/* Values greater than 2 for D/ITCM banks are "reserved" */
195	if (dtcm_banks > 2)
196		dtcm_banks = 0;
197	if (itcm_banks > 2)
198		itcm_banks = 0;
199
200	/* Setup DTCM if present */
201	if (dtcm_banks > 0) {
202		for (i = 0; i < dtcm_banks; i++) {
203			ret = setup_tcm_bank(0, i, dtcm_banks, &dtcm_end);
204			if (ret)
205				return;
206		}
207		/* This means you compiled more code than fits into DTCM */
208		if (dtcm_code_sz > (dtcm_end - DTCM_OFFSET)) {
209			pr_info("CPU DTCM: %u bytes of code compiled to "
210				"DTCM but only %lu bytes of DTCM present\n",
211				dtcm_code_sz, (dtcm_end - DTCM_OFFSET));
212			goto no_dtcm;
213		}
214		dtcm_res.end = dtcm_end - 1;
215		request_resource(&iomem_resource, &dtcm_res);
216		dtcm_iomap[0].length = dtcm_end - DTCM_OFFSET;
217		iotable_init(dtcm_iomap, 1);
218		/* Copy data from RAM to DTCM */
219		start = &__sdtcm_data;
220		end   = &__edtcm_data;
221		ram   = &__dtcm_start;
222		memcpy(start, ram, dtcm_code_sz);
223		pr_debug("CPU DTCM: copied data from %p - %p\n",
224			 start, end);
225		dtcm_present = true;
226	} else if (dtcm_code_sz) {
227		pr_info("CPU DTCM: %u bytes of code compiled to DTCM but no "
228			"DTCM banks present in CPU\n", dtcm_code_sz);
229	}
230
231no_dtcm:
232	/* Setup ITCM if present */
233	if (itcm_banks > 0) {
234		for (i = 0; i < itcm_banks; i++) {
235			ret = setup_tcm_bank(1, i, itcm_banks, &itcm_end);
236			if (ret)
237				return;
238		}
239		/* This means you compiled more code than fits into ITCM */
240		if (itcm_code_sz > (itcm_end - ITCM_OFFSET)) {
241			pr_info("CPU ITCM: %u bytes of code compiled to "
242				"ITCM but only %lu bytes of ITCM present\n",
243				itcm_code_sz, (itcm_end - ITCM_OFFSET));
244			return;
245		}
246		itcm_res.end = itcm_end - 1;
247		request_resource(&iomem_resource, &itcm_res);
248		itcm_iomap[0].length = itcm_end - ITCM_OFFSET;
249		iotable_init(itcm_iomap, 1);
250		/* Copy code from RAM to ITCM */
251		start = &__sitcm_text;
252		end   = &__eitcm_text;
253		ram   = &__itcm_start;
254		memcpy(start, ram, itcm_code_sz);
255		pr_debug("CPU ITCM: copied code from %p - %p\n",
256			 start, end);
257		itcm_present = true;
258	} else if (itcm_code_sz) {
259		pr_info("CPU ITCM: %u bytes of code compiled to ITCM but no "
260			"ITCM banks present in CPU\n", itcm_code_sz);
261	}
262}
263
264/*
265 * This creates the TCM memory pool and has to be done later,
266 * during the core_initicalls, since the allocator is not yet
267 * up and running when the first initialization runs.
268 */
269static int __init setup_tcm_pool(void)
270{
271	u32 dtcm_pool_start = (u32) &__edtcm_data;
272	u32 itcm_pool_start = (u32) &__eitcm_text;
273	int ret;
274
275	/*
276	 * Set up malloc pool, 2^2 = 4 bytes granularity since
277	 * the TCM is sometimes just 4 KiB. NB: pages and cache
278	 * line alignments does not matter in TCM!
279	 */
280	tcm_pool = gen_pool_create(2, -1);
281
282	pr_debug("Setting up TCM memory pool\n");
283
284	/* Add the rest of DTCM to the TCM pool */
285	if (dtcm_present) {
286		if (dtcm_pool_start < dtcm_end) {
287			ret = gen_pool_add(tcm_pool, dtcm_pool_start,
288					   dtcm_end - dtcm_pool_start, -1);
289			if (ret) {
290				pr_err("CPU DTCM: could not add DTCM " \
291				       "remainder to pool!\n");
292				return ret;
293			}
294			pr_debug("CPU DTCM: Added %08x bytes @ %08x to " \
295				 "the TCM memory pool\n",
296				 dtcm_end - dtcm_pool_start,
297				 dtcm_pool_start);
298		}
299	}
300
301	/* Add the rest of ITCM to the TCM pool */
302	if (itcm_present) {
303		if (itcm_pool_start < itcm_end) {
304			ret = gen_pool_add(tcm_pool, itcm_pool_start,
305					   itcm_end - itcm_pool_start, -1);
306			if (ret) {
307				pr_err("CPU ITCM: could not add ITCM " \
308				       "remainder to pool!\n");
309				return ret;
310			}
311			pr_debug("CPU ITCM: Added %08x bytes @ %08x to " \
312				 "the TCM memory pool\n",
313				 itcm_end - itcm_pool_start,
314				 itcm_pool_start);
315		}
316	}
317	return 0;
318}
319
320core_initcall(setup_tcm_pool);
v3.5.6
  1/*
  2 * Copyright (C) 2008-2009 ST-Ericsson AB
  3 * License terms: GNU General Public License (GPL) version 2
  4 * TCM memory handling for ARM systems
  5 *
  6 * Author: Linus Walleij <linus.walleij@stericsson.com>
  7 * Author: Rickard Andersson <rickard.andersson@stericsson.com>
  8 */
  9#include <linux/init.h>
 10#include <linux/kernel.h>
 11#include <linux/module.h>
 12#include <linux/stddef.h>
 13#include <linux/ioport.h>
 14#include <linux/genalloc.h>
 15#include <linux/string.h> /* memcpy */
 16#include <asm/cputype.h>
 17#include <asm/mach/map.h>
 18#include <asm/memory.h>
 19#include <asm/system_info.h>
 20#include "tcm.h"
 21
 22static struct gen_pool *tcm_pool;
 23static bool dtcm_present;
 24static bool itcm_present;
 25
 26/* TCM section definitions from the linker */
 27extern char __itcm_start, __sitcm_text, __eitcm_text;
 28extern char __dtcm_start, __sdtcm_data, __edtcm_data;
 29
 30/* These will be increased as we run */
 31u32 dtcm_end = DTCM_OFFSET;
 32u32 itcm_end = ITCM_OFFSET;
 33
 34/*
 35 * TCM memory resources
 36 */
 37static struct resource dtcm_res = {
 38	.name = "DTCM RAM",
 39	.start = DTCM_OFFSET,
 40	.end = DTCM_OFFSET,
 41	.flags = IORESOURCE_MEM
 42};
 43
 44static struct resource itcm_res = {
 45	.name = "ITCM RAM",
 46	.start = ITCM_OFFSET,
 47	.end = ITCM_OFFSET,
 48	.flags = IORESOURCE_MEM
 49};
 50
 51static struct map_desc dtcm_iomap[] __initdata = {
 52	{
 53		.virtual	= DTCM_OFFSET,
 54		.pfn		= __phys_to_pfn(DTCM_OFFSET),
 55		.length		= 0,
 56		.type		= MT_MEMORY_DTCM
 57	}
 58};
 59
 60static struct map_desc itcm_iomap[] __initdata = {
 61	{
 62		.virtual	= ITCM_OFFSET,
 63		.pfn		= __phys_to_pfn(ITCM_OFFSET),
 64		.length		= 0,
 65		.type		= MT_MEMORY_ITCM
 66	}
 67};
 68
 69/*
 70 * Allocate a chunk of TCM memory
 71 */
 72void *tcm_alloc(size_t len)
 73{
 74	unsigned long vaddr;
 75
 76	if (!tcm_pool)
 77		return NULL;
 78
 79	vaddr = gen_pool_alloc(tcm_pool, len);
 80	if (!vaddr)
 81		return NULL;
 82
 83	return (void *) vaddr;
 84}
 85EXPORT_SYMBOL(tcm_alloc);
 86
 87/*
 88 * Free a chunk of TCM memory
 89 */
 90void tcm_free(void *addr, size_t len)
 91{
 92	gen_pool_free(tcm_pool, (unsigned long) addr, len);
 93}
 94EXPORT_SYMBOL(tcm_free);
 95
 96bool tcm_dtcm_present(void)
 97{
 98	return dtcm_present;
 99}
100EXPORT_SYMBOL(tcm_dtcm_present);
101
102bool tcm_itcm_present(void)
103{
104	return itcm_present;
105}
106EXPORT_SYMBOL(tcm_itcm_present);
107
108static int __init setup_tcm_bank(u8 type, u8 bank, u8 banks,
109				  u32 *offset)
110{
111	const int tcm_sizes[16] = { 0, -1, -1, 4, 8, 16, 32, 64, 128,
112				    256, 512, 1024, -1, -1, -1, -1 };
113	u32 tcm_region;
114	int tcm_size;
115
116	/*
117	 * If there are more than one TCM bank of this type,
118	 * select the TCM bank to operate on in the TCM selection
119	 * register.
120	 */
121	if (banks > 1)
122		asm("mcr	p15, 0, %0, c9, c2, 0"
123		    : /* No output operands */
124		    : "r" (bank));
125
126	/* Read the special TCM region register c9, 0 */
127	if (!type)
128		asm("mrc	p15, 0, %0, c9, c1, 0"
129		    : "=r" (tcm_region));
130	else
131		asm("mrc	p15, 0, %0, c9, c1, 1"
132		    : "=r" (tcm_region));
133
134	tcm_size = tcm_sizes[(tcm_region >> 2) & 0x0f];
135	if (tcm_size < 0) {
136		pr_err("CPU: %sTCM%d of unknown size\n",
137		       type ? "I" : "D", bank);
138		return -EINVAL;
139	} else if (tcm_size > 32) {
140		pr_err("CPU: %sTCM%d larger than 32k found\n",
141		       type ? "I" : "D", bank);
142		return -EINVAL;
143	} else {
144		pr_info("CPU: found %sTCM%d %dk @ %08x, %senabled\n",
145			type ? "I" : "D",
146			bank,
147			tcm_size,
148			(tcm_region & 0xfffff000U),
149			(tcm_region & 1) ? "" : "not ");
150	}
151
152	/* Not much fun you can do with a size 0 bank */
153	if (tcm_size == 0)
154		return 0;
155
156	/* Force move the TCM bank to where we want it, enable */
157	tcm_region = *offset | (tcm_region & 0x00000ffeU) | 1;
158
159	if (!type)
160		asm("mcr	p15, 0, %0, c9, c1, 0"
161		    : /* No output operands */
162		    : "r" (tcm_region));
163	else
164		asm("mcr	p15, 0, %0, c9, c1, 1"
165		    : /* No output operands */
166		    : "r" (tcm_region));
167
168	/* Increase offset */
169	*offset += (tcm_size << 10);
170
171	pr_info("CPU: moved %sTCM%d %dk to %08x, enabled\n",
172		type ? "I" : "D",
173		bank,
174		tcm_size,
175		(tcm_region & 0xfffff000U));
176	return 0;
177}
178
179/*
180 * This initializes the TCM memory
181 */
182void __init tcm_init(void)
183{
184	u32 tcm_status;
185	u8 dtcm_banks;
186	u8 itcm_banks;
187	size_t dtcm_code_sz = &__edtcm_data - &__sdtcm_data;
188	size_t itcm_code_sz = &__eitcm_text - &__sitcm_text;
189	char *start;
190	char *end;
191	char *ram;
192	int ret;
193	int i;
194
195	/*
196	 * Prior to ARMv5 there is no TCM, and trying to read the status
197	 * register will hang the processor.
198	 */
199	if (cpu_architecture() < CPU_ARCH_ARMv5) {
200		if (dtcm_code_sz || itcm_code_sz)
201			pr_info("CPU TCM: %u bytes of DTCM and %u bytes of "
202				"ITCM code compiled in, but no TCM present "
203				"in pre-v5 CPU\n", dtcm_code_sz, itcm_code_sz);
204		return;
205	}
206
207	tcm_status = read_cpuid_tcmstatus();
208	dtcm_banks = (tcm_status >> 16) & 0x03;
209	itcm_banks = (tcm_status & 0x03);
210
211	/* Values greater than 2 for D/ITCM banks are "reserved" */
212	if (dtcm_banks > 2)
213		dtcm_banks = 0;
214	if (itcm_banks > 2)
215		itcm_banks = 0;
216
217	/* Setup DTCM if present */
218	if (dtcm_banks > 0) {
219		for (i = 0; i < dtcm_banks; i++) {
220			ret = setup_tcm_bank(0, i, dtcm_banks, &dtcm_end);
221			if (ret)
222				return;
223		}
224		/* This means you compiled more code than fits into DTCM */
225		if (dtcm_code_sz > (dtcm_end - DTCM_OFFSET)) {
226			pr_info("CPU DTCM: %u bytes of code compiled to "
227				"DTCM but only %lu bytes of DTCM present\n",
228				dtcm_code_sz, (dtcm_end - DTCM_OFFSET));
229			goto no_dtcm;
230		}
231		dtcm_res.end = dtcm_end - 1;
232		request_resource(&iomem_resource, &dtcm_res);
233		dtcm_iomap[0].length = dtcm_end - DTCM_OFFSET;
234		iotable_init(dtcm_iomap, 1);
235		/* Copy data from RAM to DTCM */
236		start = &__sdtcm_data;
237		end   = &__edtcm_data;
238		ram   = &__dtcm_start;
239		memcpy(start, ram, dtcm_code_sz);
240		pr_debug("CPU DTCM: copied data from %p - %p\n",
241			 start, end);
242		dtcm_present = true;
243	} else if (dtcm_code_sz) {
244		pr_info("CPU DTCM: %u bytes of code compiled to DTCM but no "
245			"DTCM banks present in CPU\n", dtcm_code_sz);
246	}
247
248no_dtcm:
249	/* Setup ITCM if present */
250	if (itcm_banks > 0) {
251		for (i = 0; i < itcm_banks; i++) {
252			ret = setup_tcm_bank(1, i, itcm_banks, &itcm_end);
253			if (ret)
254				return;
255		}
256		/* This means you compiled more code than fits into ITCM */
257		if (itcm_code_sz > (itcm_end - ITCM_OFFSET)) {
258			pr_info("CPU ITCM: %u bytes of code compiled to "
259				"ITCM but only %lu bytes of ITCM present\n",
260				itcm_code_sz, (itcm_end - ITCM_OFFSET));
261			return;
262		}
263		itcm_res.end = itcm_end - 1;
264		request_resource(&iomem_resource, &itcm_res);
265		itcm_iomap[0].length = itcm_end - ITCM_OFFSET;
266		iotable_init(itcm_iomap, 1);
267		/* Copy code from RAM to ITCM */
268		start = &__sitcm_text;
269		end   = &__eitcm_text;
270		ram   = &__itcm_start;
271		memcpy(start, ram, itcm_code_sz);
272		pr_debug("CPU ITCM: copied code from %p - %p\n",
273			 start, end);
274		itcm_present = true;
275	} else if (itcm_code_sz) {
276		pr_info("CPU ITCM: %u bytes of code compiled to ITCM but no "
277			"ITCM banks present in CPU\n", itcm_code_sz);
278	}
279}
280
281/*
282 * This creates the TCM memory pool and has to be done later,
283 * during the core_initicalls, since the allocator is not yet
284 * up and running when the first initialization runs.
285 */
286static int __init setup_tcm_pool(void)
287{
288	u32 dtcm_pool_start = (u32) &__edtcm_data;
289	u32 itcm_pool_start = (u32) &__eitcm_text;
290	int ret;
291
292	/*
293	 * Set up malloc pool, 2^2 = 4 bytes granularity since
294	 * the TCM is sometimes just 4 KiB. NB: pages and cache
295	 * line alignments does not matter in TCM!
296	 */
297	tcm_pool = gen_pool_create(2, -1);
298
299	pr_debug("Setting up TCM memory pool\n");
300
301	/* Add the rest of DTCM to the TCM pool */
302	if (dtcm_present) {
303		if (dtcm_pool_start < dtcm_end) {
304			ret = gen_pool_add(tcm_pool, dtcm_pool_start,
305					   dtcm_end - dtcm_pool_start, -1);
306			if (ret) {
307				pr_err("CPU DTCM: could not add DTCM " \
308				       "remainder to pool!\n");
309				return ret;
310			}
311			pr_debug("CPU DTCM: Added %08x bytes @ %08x to " \
312				 "the TCM memory pool\n",
313				 dtcm_end - dtcm_pool_start,
314				 dtcm_pool_start);
315		}
316	}
317
318	/* Add the rest of ITCM to the TCM pool */
319	if (itcm_present) {
320		if (itcm_pool_start < itcm_end) {
321			ret = gen_pool_add(tcm_pool, itcm_pool_start,
322					   itcm_end - itcm_pool_start, -1);
323			if (ret) {
324				pr_err("CPU ITCM: could not add ITCM " \
325				       "remainder to pool!\n");
326				return ret;
327			}
328			pr_debug("CPU ITCM: Added %08x bytes @ %08x to " \
329				 "the TCM memory pool\n",
330				 itcm_end - itcm_pool_start,
331				 itcm_pool_start);
332		}
333	}
334	return 0;
335}
336
337core_initcall(setup_tcm_pool);