The ARM Cortex-A8 processor is based on the ARMv7 architecture and has the ability to scale in speed from 600MHz to greater than 1GHz. The Cortex-A8 processor can meet the requirements for power-optimized mobile devices needing operation in less than 300mW; and performance-optimized consumer ...

learn more… | top users | synonyms

1
vote
1answer
43 views

Converting arm code to use NEON intrinsics

I have been trying to modify the code beneath to work with NEON Intrinsics, thereby creating a speedup. Unfortunately nothing seems to work correctly. Does anyone have any idea what is going wrong? I ...
0
votes
0answers
80 views

binary/ELF silently exits on different ARM system

I have an ELF that was compiled on a armv7a Cortex-A9 CPU. It runs fine there with no problems, but when it's moved onto an armv7a Cortex-A8 CPU the file silently exits as follows: ...
0
votes
0answers
156 views

Building and loading modules Beagle board - xM Rev C

I'm using Linux kernel 2.6.38 on Beagle board - xM Rev C and I want to build and load modules. I selected HID gadget as a module in menuconfig ([M] HID Gadget) but I don't know how to load g_hid.ko on ...
0
votes
0answers
258 views

Build Linux and run it (uImage) on the Beagle board - xM

I'm working on some project where I'm using the Beagle board - xM Rev C. Power supply is 5V/2A adapter. My task is porting Linux Angstrom on the board but I have some problems. I have choosen Linux ...
0
votes
1answer
80 views

NEON output generated by the simulator regarding (pipeline information, stalls, execution cycles) not clear

I have some problem understanding the output of NEON simulator. The output generated is cryptic and there is no proper documentation for understanding the simulator output. for example : In the ...
0
votes
0answers
127 views

Arm NEON not able to understand the cycles?

I am working on optimizing the code for FFT algorithm using NEON of ARM. I am running Beagle Board xM as target. I am running my program without any operating system on the board(Running program ...
4
votes
1answer
90 views

How to get address of a register: ARM Cortex A8?

I want to get physical address of a co-processor register of ARM Cortex a8, say c9-User Enable Register (USEREN). How can I get it ? Thank you !!
0
votes
1answer
88 views

Profling on arm Cortex_A8

I want to do profiling for my application on ARM processor. I found the oprofile doesn't work. Someone used the following code to test a few years ago. the cyclic counter does work, the performance ...
0
votes
0answers
81 views

TI starterware slow TCPIP when using LWIP

I have made for beaglebone a socket application, based on enet_echo (which is a part of starterware of TI). I have modified this code such, that in the main loop I do not do anything else, than ...
2
votes
0answers
88 views

ARM Cortex A8 PMNC read gives 0 after enabling also.. Any Idea/Suggestions?

MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("user-mode access to performance registers"); int __init arm_init(void) { unsigned int value; /* enable user-mode access */ printk(KERN_INFO ...
2
votes
0answers
106 views

How to enable performance counter in ARM Cortex-A8 processor?

I am using cortex A8 in user mode and trying to read performance counter. As per a8 trm, register should be enabled from privileged mode. Hence enabled the performance counter using a kernle module: ...
0
votes
0answers
84 views

How can I allocate buffer for DMA operation on arm cortex-a8 linux?

In the newest linux kernel version3.8, arch/arm/mm/Kconfig, there are some menu like this: 872 *config ARM_DMA_MEM_BUFFERABLE* 873 *bool "Use non-cacheable memory for DMA" if (CPU_V6 || ...
2
votes
1answer
190 views

Neon VLD consuming more cycles than what is expected?

I have a simple asm code which loads 12 quad registers of NEON, and have paralleled pairwise add instruction along with the load instruction ( to exploit the dual issue capability). I have verified ...
-2
votes
1answer
111 views

How many functional units does NEON on Cortex-a8 have? [closed]

My question is how many and what all functional units does the NEON unit on ARM cortex-a8 have? If I have read correctly, the TRM doesn't explicitly say anything about the number of functional units ...
2
votes
2answers
202 views

Are there any performance penalties for running SMP enabled Linux kernel on a Uni processor (ARM Cortex A8 based SOC)?

This is a two fold question that raised from my trivial observation that I am running a SMP enabled Linux on our ARM-Cortex 8 based SoC. First part is about performance (memory space/CPU time) ...
2
votes
1answer
336 views

program execution time in ARM Cortex-A9 processor

I'm using ARM Cortex-A9 and trying to read the value from CCNT time counter through the assembly code.  I am following this post How to measure program execution time in ARM Cortex-A8 processor? . In ...
1
vote
1answer
292 views

NDK r8c warning for asm objects regarding “Cortex-A8 erratum” - should I be worried?

Question: What is the meaning of this warning? If there are no real-life consequences, I can live with it for a while... But I am concerned with what will happen if our program gets loaded on one of ...
3
votes
1answer
142 views

Usage of PLD instruction

I have some doubts regarding the usage of PLD instruction in ARM cortex A8. As I am using the instruction inside loop, there is a possibility of out of bound memory access. My doubt is that whether ...
0
votes
1answer
346 views

Is ARM Cortex-A8 pipeline 13 stage or 14 stage?

If you see this popular pipeline diagram of ARM Cortex-A8 given in one of ARM presentations. It is clear that the instruction fetch stage takes 3 cycles, yet the first cycle is sort of discounted. ...
10
votes
3answers
396 views

Does ARM sit idle while NEON is doing its operations?

Might look similar to: ARM and NEON can work in parallel?, but its not, I have some other issue ( may be problem with my understanding): In the protocol stack, while we compute checksum, that is done ...
3
votes
3answers
589 views

Jazelle on Beaglebone

I need to run Java applications on top of Linux on my Beaglebone. I know that ARM cores do have support for Jazelle technology to execute Java bytecode in hardware. Anyway it is not clear to me what I ...
0
votes
1answer
274 views

DirectFB cross-compiled for iMX.53 - crash on startup

Trying to get a working directfb for use in an embedded system based on an i.MX53 processor (which is an ARM Cortex-A8 core) running Linux 2.6.35.3 (as supplied by Freescale). I have installed a ...
3
votes
2answers
388 views

L1 cache ports in ARM Cortex processors

I did some reseach, but could not find much information. I'd like to know how many L1 read and L1 write ports ARM embedded processors have and how wide the ports are. Specifically, I am interested ...
2
votes
2answers
827 views

Which one is better, gcc or armcc for NEON optimizations?

Refering to @auselen's answer here: Using ARM NEON intrinsics to add alpha and permute, looks like armcc compiler is far more better than the gcc compiler for NEON optimizations. Is this really true? ...
4
votes
2answers
206 views

How do ARM-NEON synchronize?

Speaking in terms of ARM Cortex-A8, does the ARM module wait or continue its operations while NEON is executing its instructions? How is this synchronization achieved? How do ARM and NEON cores ...
4
votes
1answer
546 views

ARM and NEON can work in parallel?

This is with reference to question: Checksum code implementation for Neon in Intrinsics Opening the sub-questions listed in the link as separate individual questions. As multi questions aren't to be ...
1
vote
1answer
315 views

Checksum code implementation for Neon in Intrinsics

I'm trying to implement the checksum computation code(2's complement addition) for NEON, using intrinsic. The current checksum computation is being carried out on ARM. My implementation fetches ...
2
votes
2answers
608 views

Using ARM NEON intrinsics to add alpha and permute

I'm developing an iOS app that needs to convert images from RGB -> BGRA fairly quickly. I would like to use NEON intrinsics if possible. Is there a faster way than simply assigning the components? ...
2
votes
2answers
199 views

Efficient algorithm to convert(sum) 128-bit data in q-register to 16-bit data

I have 128-bit data in q-register. I want to sum the individual 16-bit block in this q-register to finally have a 16-bit final sum (any carry beyond 16-bit should be taken and added to the LSB of this ...
3
votes
2answers
202 views

Cortex-A8 Forcing memory caching

It's necessary process a big array of numbers (~1 Mb) in real time with a function e.g. void processData(char* data). There following test was runned on the target platform: int j = 10; while(j--) ...
0
votes
1answer
164 views

Compiling Android applications for Cotex A 8

I have successfully installed Android Gingerbread 2.3.4 on Beagleboard XM, which is having Cortex A-8. How do I select Cortex -A-8 as target in Eclipse for cross compiling? Thanks and regards, ...
5
votes
4answers
827 views

Efficient floating point comparison (Cortex-A8)

There is a big (~100 000) array of floating point variables, and there is a threshold (also floating point). The problem is that I have to compare each one variable from the array with a threshold, ...
7
votes
1answer
1k views

Measure executing time on ARM Cortex-A8 using hardware counter

I'm using a Exynos 3110 processor (1 GHz Single-core ARM Cortex-A8, e.g. used in the Nexus S) and try to measure execution times of particular functions. I have an Android 4.0.3 running on the Nexus ...
1
vote
1answer
263 views

Strange compilation of inline assembly in LLVM GCC 4.2

I'm trying to optimize the following C macro: rotate(v0, v1) a0 = v0, b0 = v1, v0 = a0*c - b0*s, v1 = a0*s + b0*c where all variables are doubles for the Cortex-A8 processor. The inline assembly ...
0
votes
1answer
303 views

Enable NEON on Cortex A8 with fpu set to either SoftVFP or none

I am trying to build an executable for Cortex A8 using RVDS 4.0. My code uses NEON but I want to set fpu option to either none or SoftVFP. The ARM website mentions that NEON is disabled when fpu is ...
0
votes
1answer
530 views

Some doubts in optimizing the neon code

I wrote some neon code in assembly and was aiming for maximum optimization. Though the numbers seem satisfactory, I was interested in understanding the possibilities of optimizing it further. Then I ...
0
votes
1answer
37 views

Making the VROM load an image and jump to an address on Nexus One?

I want to try experimenting with running low level code my Nexus One phone, but I can't find a suitable manual describing how. As far as I know, the VROM does some initial bootstrapping before ...
4
votes
3answers
2k views

Calling C functions from ARM Assembly

I'm writing code targeting ARM Cortex-A on Android devices (using GNU assembler and compiler), and I'm trying to interface between Assembly and C. In particular, I'm interested in calling functions ...
10
votes
4answers
4k views

Integer division on ARM

Kind of a silly question, but how does one do integer division (signed or unsigned, either way) on ARM? I'm working on Cortex-A8 and Cortex-A9 in particular. I know that some architectures don't come ...
2
votes
1answer
412 views

How to get call graph profiling working with gcc compiled code and ARM Cortex A8 target?

I am biting my teeth out on this one... I need to do profiling on an ARM board and need to view call graphs. I tried with OProfile, Kernel perf and Google performance tools. All work fine but do not ...
5
votes
2answers
737 views

ARM Cortex A8 Benchmarks: can someone help me make sense of these numbers?

I'm working on writing several real-time DSP algorithms on Android, so I decided to program the ARM directly in Assembly to optimize everything as much as possible and make the math maximally ...
5
votes
2answers
476 views

Cannot write to ARM register R4: feature or bug?

I've recently encountered a strange behaviour of ARM Cortex-A8 when programming it in Assembly. Whenever I MOV anything into R4, my program crashes (stack dump below) 10-14 09:48:43.117: ...
4
votes
2answers
254 views

Low level cycle counter in iOS devices

Now that it's clear that the Cortex-A8 performance counters aren't available on the iPhone/iPad (they need to be explicitly enabled for usermode, which Apple hasn't done), is there some other way of ...
5
votes
2answers
1k views

cortex a9 boot and memory

I am a newbie starting out in micro-controller programming. The chip of interest here is cortex-a9. At reset or power up there has to be code at 0x0000000 from my readings. My questions though they ...
1
vote
1answer
2k views

Android JNI makefiles: where to set CFLAGS?

I'm stuck figuring out how exactly to tell Android to use VFP on Cortex-A8 for floating-point operations in my native C code. I know the compiler flags I need to set. The question is where do I do it? ...
18
votes
5answers
7k views

Why ARM NEON not faster than plain C++?

Here is a C++ code: #define ARR_SIZE_TEST ( 8 * 1024 * 1024 ) void cpp_tst_add( unsigned* x, unsigned* y ) { for ( register int i = 0; i < ARR_SIZE_TEST; ++i ) { x[ i ] = x[ i ] + ...
4
votes
3answers
3k views

Neon Optimization using intrinsics

Learning about ARM NEON intrinsics, I was timing a function that I wrote to double the elements in an array.The version that used the intrinsics takes more time than a plain C version of the function. ...
2
votes
1answer
647 views

no effect of PLD in cortex A9

I am using the following program to check the effect of PLD on performance. However, I couldn't find the difference in performance with and without PLD the C code I've written. Is there anything I am ...
2
votes
2answers
1k views

usage of PLD in arm cortex a9

I am trying to use PLD instruction. The problem I am facing is as follows: int32_t addr[10]; asm ("PLD [addr,#5]"); I am getting following error: Error: ARM register expected -- `pld [addr,#5]'
2
votes
1answer
511 views

ARM lockdown register write operation crashes the device

I'm doing some experiments with a ARM Cortex A-8 device running Linux kernel. I can access and read the value of the L2 cache lockdown register without any problems: asm volatile ("mrc p15, 1, %0, ...

1 2