This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I want to work with the GLCD display on TMS570 MDK, and have tried to port "MCBTMS570 ConfTest" from Keil to CCS.
The aim is to rewrite MPU functions, listed in file "R4_MPU_Config.c":
__asm void Set_MPU_Region (unsigned int region,unsigned int base_addr, unsigned int access, unsigned int size) {
MCR p15, #0, r0, c6, c2, #0
MCR p15, #0, r1, c6, c1, #0
MCR p15, #0, r2, c6, c1, #4
MCR p15, #0, r3, c6, c1, #2
BX lr
}
__asm void Enable_MPU(void) {
MRC p15, #0, r1, c1, c0, #0
ORR r1, r1, #0x1
DMB
MCR p15, #0, r1, c1, c0, #0
ISB
BX lr
}
I have no experience with Keil.. but as I think, "__asm" prefix determines that function must be in asm code, so as I have decided the ported CCS functions can look like these:
void Set_MPU_Region(unsigned int region,unsigned int base_addr, unsigned int access, unsigned int size)
{
asm("MCR p15, #0, r0, c6, c2, #0");
asm("MCR p15, #0, r1, c6, c1, #0");
asm("MCR p15, #0, r2, c6, c1, #4");
asm("MCR p15, #0, r3, c6, c1, #2");
asm("BX lr");
}
void Enable_MPU(void)
{
asm("MRC p15, #0, r1, c1, c0, #0");
asm("ORR r1, r1, #0x1");
asm("DMB");
asm("MCR p15, #0, r1, c1, c0, #0");
asm("ISB");
asm("BX lr");
}
As a result of compilation I see some error message: [E0002] Illegal mnemonic specified.
Is it nessesary to write all asm functions for CCS in ".asm" files, or can the problem be something else?
You need to add a space between the " and the mnemonic. For example (with the space highlighted):
asm(" MRC p15, #0, r1, c1, c0, #0");
The MDK Board Confidence Test & Demo Application source code for CCSv4.x is also available on the TMS570 WIKI:
http://processors.wiki.ti.com/index.php/TMS570_MDK_Kit#Example_Programs
Thanks, Sunil. This works.
Some another question. The compiler gives me a warning message:
>>> warning: creating ".sysmem" section with default size of 0x800; use the -heap
option to change the default size
Where I should define the right heap size and what size must it be?
May be there still some more changes, that I have to make before start working with GLCD?
Evgeny,
The C language uses two uninitialized sections called .sysmem and .stack for the memory pool used by the malloc( ) functions and the run-time stacks, respectively. The sizes for these sections can be defined in the linker command file via the -stack and -heap directives.
The default stack size is 2K bytes and the default heap size is 2K bytes.
Please refer to the ARM assembly language tools guide, http://focus.ti.com/lit/ug/spnu118h/spnu118h.pdf for more information.
Regards, Sunil
Thanks Sunil.
One more question. I must work with GLCD in Supervisor or USER mode or using another one?