embeded/ARM2015. 1. 7. 11:15

SD 메모리 미 삽입

#define ERROR_DDI_SD_MMC_DEVICE_NOT_SUPPORTED (ERROR_DDI_GROUP | ERROR_DDI_SD_DRIVER_GROUP | 0x14)

0x8020A014 ?


빈 SD 메모리

#define ERROR_DDI_SD_MBR_NOT_FOUND (ERROR_DDI_GROUP | ERROR_DDI_SD_DRIVER_GROUP | 0x1D)

0x8020A01D ?


부팅 안될경우 일정 시간뒤 출력

#define ERROR_ROM_USB_CONNECT_TIMEOUT (ERROR_ROM_GROUP | ERROR_ROM_USB_DRIVER_GROUP | 0x8)

0x80502008

'embeded > ARM' 카테고리의 다른 글

ltib on ubuntu  (0) 2015.01.12
i.mx283 부팅모드  (0) 2015.01.09
Unknown HZ value! (91) Assume 100.  (0) 2015.01.05
크로스 컴파일 옵션 configure --host  (0) 2014.10.13
iWMMX / iWMMXt - Intel XScale SIMD instructions  (0) 2014.10.08
Posted by 구차니
embeded/ARM2015. 1. 5. 15:10



sysinfo.c

 /***********************************************************************

* Some values in /proc are expressed in units of 1/HZ seconds, where HZ * is the kernel clock tick rate. One of these units is called a jiffy. * The HZ value used in the kernel may vary according to hacker desire. * According to Linus Torvalds, this is not true. He considers the values * in /proc as being in architecture-dependant units that have no relation * to the kernel clock tick rate. Examination of the kernel source code * reveals that opinion as wishful thinking. * * In any case, we need the HZ constant as used in /proc. (the real HZ value * may differ, but we don't care) There are several ways we could get HZ: * * 1. Include the kernel header file. If it changes, recompile this library. * 2. Use the sysconf() function. When HZ changes, recompile the C library! * 3. Ask the kernel. This is obviously correct... * * Linus Torvalds won't let us ask the kernel, because he thinks we should * not know the HZ value. Oh well, we don't have to listen to him. * Someone smuggled out the HZ value. :-) * * This code should work fine, even if Linus fixes the kernel to match his * stated behavior. The code only fails in case of a partial conversion. * * Recent update: on some architectures, the 2.4 kernel provides an * ELF note to indicate HZ. This may be for ARM or user-mode Linux * support. This ought to be investigated. Note that sysconf() is still * unreliable, because it doesn't return an error code when it is * used with a kernel that doesn't support the ELF note. On some other * architectures there may be a system call or sysctl() that will work. */ unsigned long long Hertz; static void old_Hertz_hack(void){ unsigned long long user_j, nice_j, sys_j, other_j; /* jiffies (clock ticks) */ double up_1, up_2, seconds; unsigned long long jiffies; unsigned h; char *restrict savelocale; savelocale = setlocale(LC_NUMERIC, NULL); setlocale(LC_NUMERIC, "C"); do{ FILE_TO_BUF(UPTIME_FILE,uptime_fd); sscanf(buf, "%lf", &up_1); /* uptime(&up_1, NULL); */ FILE_TO_BUF(STAT_FILE,stat_fd); sscanf(buf, "cpu %Lu %Lu %Lu %Lu", &user_j, &nice_j, &sys_j, &other_j); FILE_TO_BUF(UPTIME_FILE,uptime_fd); sscanf(buf, "%lf", &up_2); /* uptime(&up_2, NULL); */ } while((long long)( (up_2-up_1)*1000.0/up_1 )); /* want under 0.1% error */ setlocale(LC_NUMERIC, savelocale); jiffies = user_j + nice_j + sys_j + other_j; seconds = (up_1 + up_2) / 2; h = (unsigned)( (double)jiffies/seconds/smp_num_cpus ); /* actual values used by 2.4 kernels: 32 64 100 128 1000 1024 1200 */ switch(h){ case 9 ... 11 : Hertz = 10; break; /* S/390 (sometimes) */ case 18 ... 22 : Hertz = 20; break; /* user-mode Linux */ case 30 ... 34 : Hertz = 32; break; /* ia64 emulator */ case 48 ... 52 : Hertz = 50; break; case 58 ... 61 : Hertz = 60; break; case 62 ... 65 : Hertz = 64; break; /* StrongARM /Shark */ case 95 ... 105 : Hertz = 100; break; /* normal Linux */ case 124 ... 132 : Hertz = 128; break; /* MIPS, ARM */ case 195 ... 204 : Hertz = 200; break; /* normal << 1 */ case 253 ... 260 : Hertz = 256; break; case 393 ... 408 : Hertz = 400; break; /* normal << 2 */ case 790 ... 808 : Hertz = 800; break; /* normal << 3 */ case 990 ... 1010 : Hertz = 1000; break; /* ARM */ case 1015 ... 1035 : Hertz = 1024; break; /* Alpha, ia64 */ case 1180 ... 1220 : Hertz = 1200; break; /* Alpha */ default: #ifdef HZ Hertz = (unsigned long long)HZ; /* <asm/param.h> */ #else /* If 32-bit or big-endian (not Alpha or ia64), assume HZ is 100. */ Hertz = (sizeof(long)==sizeof(int) || htons(999)==999) ? 100UL : 1024UL; #endif fprintf(stderr, "Unknown HZ value! (%d) Assume %Ld.\n", h, Hertz); } }





[링크 : http://lkml.iu.edu/hypermail/linux/kernel/0401.2/0065.html]

[링크 : http://forum.buffalo.nas-central.org/viewtopic.php?f=18&t=13451]

[링크 : http://procps.sourceforge.net/]

[링크 : https://bugs.launchpad.net/ubuntu/+source/procps/+bug/364656]

[링크 : https://launchpadlibrarian.net/29934773/procps_3.2.7-11ubuntu3.debdiff.gz]

[링크 : https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=460331]

    [링크 : https://lkml.org/lkml/2002/2/18/187]


'embeded > ARM' 카테고리의 다른 글

i.mx283 부팅모드  (0) 2015.01.09
freescale imx283 boot error code  (0) 2015.01.07
크로스 컴파일 옵션 configure --host  (0) 2014.10.13
iWMMX / iWMMXt - Intel XScale SIMD instructions  (0) 2014.10.08
thumb의 장단점?  (0) 2014.09.29
Posted by 구차니
embeded/ARM2014. 10. 13. 12:10
target만 지정하면 되는줄 알았는데 음..
target으로 지정할 경우
libtool에서 인식을 하지 못해 shared object등을 생성하지 못하는 문제가 있기에
host로 지정을 하라고 한다.

--build=BUILD BUILD 상에서의 빌드를 위한 설정 (i686?)
--host=HOST HOST 상에서 실행되는 프로그램을 빌드하기 위한 크로스 컴파일러 (arm-none-linux-gnueabi)
--target=TARGET TARGET을 위한 빌딩 컴파일러를 위한 설정

System types:
  --build=BUILD     configure for building on BUILD [guessed]
  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
  --target=TARGET   configure for building compilers for TARGET [HOST]

[링크 : http://stackoverflow.com/.../libtool-claims-it-does-not-support-shared-libraries-during-cross-compilation

'embeded > ARM' 카테고리의 다른 글

freescale imx283 boot error code  (0) 2015.01.07
Unknown HZ value! (91) Assume 100.  (0) 2015.01.05
iWMMX / iWMMXt - Intel XScale SIMD instructions  (0) 2014.10.08
thumb의 장단점?  (0) 2014.09.29
dsp & simd / neon  (0) 2014.09.22
Posted by 구차니
embeded/ARM2014. 10. 8. 13:52
췟 -_-
우연히 MPlayer 컴파일 하다가 발견했는데
집에 굴러 다니는 녀석은 PXA255.. -_-
해당사항이 없네? ㅠㅠ
 Intel's and Marvell's XScale microprocessor core starting with PXA270 include an SIMD instruction set extension to the ARM core called iwMMXt whose functions are similar to those of the IA-32 MMX extension. iwMMXt stands for "Intel Wireless MMX Technology". It provides arithmetic and logic operations on 64-bit integer numbers (the software may choose to instead perform two 32-bit, four 16-bit or eight 8-bit operations in a single instruction). The extension contains 16 data registers of 64-bits and eight control registers of 32-bits. All registers are accessed through standardARM architecture coprocessor mapping mechanism. iwMMXt occupies coprocessors 0 and 1 space, and some of itsopcodes clash with the opcodes of the earlier floating-point extension, FPA.

Later versions of Marvell's ARM processors supports both WMMX (Wireless MMX) and WMMX2 (Wireless MMX2) support.


[링크 : http://en.wikipedia.org/wiki/MMX_(instruction_set)#MMX_in_embedded_applications
[링크 : https://gcc.gnu.org/onlinedocs/gcc-4.3.4/gcc/ARM-iWMMXt-Built_002din-Functions.html

'embeded > ARM' 카테고리의 다른 글

Unknown HZ value! (91) Assume 100.  (0) 2015.01.05
크로스 컴파일 옵션 configure --host  (0) 2014.10.13
thumb의 장단점?  (0) 2014.09.29
dsp & simd / neon  (0) 2014.09.22
Freescale Multimedia framwork  (0) 2014.09.17
Posted by 구차니
embeded/ARM2014. 9. 29. 17:37
ffmpeg 컴파일 옵션중에
  --enable-thumb           compile for Thumb instruction set

thumb 활성화가 있고 cpu도 지원을 해서
Processor       : ARM926EJ-S rev 5 (v5l)
BogoMIPS        : 226.09
Features        : swp half thumb fastmult edsp java 

 --enable-armv5te 랑 같이 썼더니.... 안되잖아!!!! ㅠㅠ
Assembler messages:
Error: instruction not supported in Thumb16 mode -- `adds r2,r5,r4,lsr#31'
Error: selected processor does not support `itet ne'
Error: Thumb does not support conditional execution

armv5te의 DSP enhancement 명령어들이 16bit(thumb mode) 가 아닌 32bit라 안되는게 아닐까 라고 추측되는데..
아무튼..  thumb의 장점으로는 ARM에서 코드 밀도가 올라간다(코드 사이즈가 65%까지 준다고..) 는 것 외에는
성능 향상적인 측면은 크게 없으니 굳이 무리하게 thumb 옵션을 쓰지 않아도 될 듯.
 
단점들을 나열해 볼게요. 
 
1. 분기 명령어를 제외하고는 조건부 실행이 안됩니다. 
2. 레지스터 사용이 R0~R7으로 제안 됩니다.
3. Immediate 상수 값의 사용 범위가 제한적입니다.
4. Inline barrel shifter의 사용이 제안적입니다.
5. Exception 처리를 할 수 없습니다.
[링크 : http://recipes.egloos.com/viewer/5651064

8.1 Thumb Instruction 특징
(1) 16-bit length instruction set
(2) ARM 명령어보다 코드의 집적도가 높습니다.( about 65% of ARM instruction )
(3) 일반적으로는 32bit ARM명령어 보다는 속도가 느리지만 16bit memory 시스템에서는 그렇지 않을 수도 있습니다.

8.2 Thumb Instruction 제약 사항

- Limited Access to Registers : R0-R7 registers are accessible.
- Narrow Range of Immediate Value
- Not Flexible for Exception Mode
- Exception Handler should be executed in ARM mode. : Exception이 발생하면 항상 ARM 모드로 전환이 됩니다.
- Limited conditional instruction.
- Branch instructions can be executed conditionally.
- Inline Barrel Shifter is not used. 
 
[링크 : http://www.jkelec.co.kr/img/lecture/arm_arch/arm_arch_4.html#8]  

'embeded > ARM' 카테고리의 다른 글

크로스 컴파일 옵션 configure --host  (0) 2014.10.13
iWMMX / iWMMXt - Intel XScale SIMD instructions  (0) 2014.10.08
dsp & simd / neon  (0) 2014.09.22
Freescale Multimedia framwork  (0) 2014.09.17
freescale i.mx283 / i.mx515  (0) 2014.08.19
Posted by 구차니
embeded/ARM2014. 9. 22. 14:38
i.mx283 뒤지다가 영 스펙이 제대로 안나와서 헤매느중..
아무튼 검색을 하다보니 DSP & SIMD로
ARMv5TE 계열에 지원하는 DSP Enchancement 로 몇가지 명령어를 지원하는 것으로 보이지만...
컴파일 옵션에 DSP multiply 정도로 밖에 안나오는것 봐서는
ARMv6 계열의 SIMD에 비하면 정말 미미한 수준의 DSP/멀티미디어 확장일 것으로 보인다.

ARMv5TE 계열인 ARM946의 DSP enhancement instruction
느낌으로는.. 32bit 짜리로 8bit 씩 4개의 데이터에 대한 확장 명령이 존재할 것으로 보여진다.

[링크 : http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dvi0022a/ar01s02s14.html]

QADD, QSUB, QDADD, and QDSUB
Signed Add, Subtract, Double and Add, Double and Subtract, saturating the result to the signed range -2^31 ≤ x ≤ 2^31-1.

Syntax
op{cond} {Rd}, Rm, Rn

where:
op        is one of QADD, QSUB, QDADD, or QDSUB.
cond     is an optional condition code.
Rd         is the destination register.
Rm, Rn  are the registers holding the operands.
[링크 : http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0489e/Cihidceh.html

[링크 : http://www.arm.com/products/processors/technologies/dsp-simd.php]

5TEJ ARMv5 with Thumb, interworking, DSP multiply, double-word instructions, and Jazelle® extensions ARM926EJ-S, ARM1026EJ-S, SC200 
[링크 : http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0491g/CIHGEBDH.html]

DSP enhancement instructions
To improve the ARM architecture for digital signal processing and multimedia applications, DSP instructions were added to the set. These are signified by an "E" in the name of the ARMv5TE and ARMv5TEJ architectures. E-variants also imply T, D, M and I.

The new instructions are common in digital signal processor architectures. They include variations on signed multiply–accumulate, saturated add and subtract, and count leading zeros. 

'embeded > ARM' 카테고리의 다른 글

iWMMX / iWMMXt - Intel XScale SIMD instructions  (0) 2014.10.08
thumb의 장단점?  (0) 2014.09.29
Freescale Multimedia framwork  (0) 2014.09.17
freescale i.mx283 / i.mx515  (0) 2014.08.19
ARM thumb과 Jazelle  (0) 2014.04.19
Posted by 구차니
embeded/ARM2014. 9. 17. 12:23
각종 오디오 코덱 및 AAC+ 용 코덱 링크
mp3나 jpeg gif aac 등에 대한 퍼포먼스 향상 라이브러인데..
freescale 에서 검색을 해도 오리지널 배포링크를 찾지 못해서 현재는 쥐쥐..

AACplus는 ARM11 / Cortex-A8만 지원하는 듯

[링크 : http://repository.timesys.com/buildsources/f/fsl-mm-aacpdec-codeclib/]

'embeded > ARM' 카테고리의 다른 글

thumb의 장단점?  (0) 2014.09.29
dsp & simd / neon  (0) 2014.09.22
freescale i.mx283 / i.mx515  (0) 2014.08.19
ARM thumb과 Jazelle  (0) 2014.04.19
SSI - Synchronous Serial Interface  (0) 2013.12.18
Posted by 구차니
embeded/ARM2014. 8. 19. 14:00
스터디 중

일단.. I.MX283은 ARM9 패밀리로
아키텍쳐는 ARMv5TE 로 상당히 구형이다 -_-a
Java 확장을 지원하고 1.1 DMIPS 정도
[링크 : http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=i.MX283]
[링크 : http://www.arm.com/products/processors/classic/arm9/arm926.php]

I.MX515는 Cortex-A9 패밀리로
ARMv7-A 2.0 DMips로 상당히 파워풀 한 녀석
[링크 : http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=i.MX515&nodeId=018rH3ZrDR633B]
[링크 : http://www.arm.com/products/processors/cortex-a/cortex-a8.php


그런데.. 칩 자체가 좀 많이 다른 구성인데...
283은 LCD 컨트롤러 + 터치와 IF 위주라면
515는 NEON을 이용한 멀티미디어 프로세서 느낌? (셋탑박스나 DVR용도 같은 느낌..)

아무튼.. ARMv5와 ARMv7 아키텍쳐는
SIMD / NEON으로 인해 상당한 퍼포먼스 차이가 예상된다.


2010/05/10 - [embeded/ARM] - Cortex-A8 ?
2014/04/19 - [embeded/ARM] - ARM thumb과 Jazelle 

'embeded > ARM' 카테고리의 다른 글

dsp & simd / neon  (0) 2014.09.22
Freescale Multimedia framwork  (0) 2014.09.17
ARM thumb과 Jazelle  (0) 2014.04.19
SSI - Synchronous Serial Interface  (0) 2013.12.18
ubuntu gcc-arm 패키지 목록  (0) 2013.08.31
Posted by 구차니
embeded/ARM2014. 4. 19. 23:53
thumb
32bit ARM 프로세서에서 16bit 명령어를 지원하는 기능이다.
일단 32bit 명령어는 말그대로.. 명령어 자체가 4byte인거고
RISC 특성상 명령어가 넘쳐나기 때문에 명령어 길이를 줄여 바이너리 크기를 줄이기 위한 방법으로 제공된다.
또한 thumb 사용시 데이터버스를 16bit로 사용하기 때문에
32bit 버스를 구성하지 않아도 되어 데이터버스를 회로 구성에도 잇점이 생긴다.

1994년 릴리즈된 ARM7TDMI 부터 지원되며 CPU 모델상에 T가 들어갈경우 Thumb를 지원한다.

[링크 : http://skyul.tistory.com/54]
[링크 : http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0210c/CACBCAAE.html]
[링크 : http://en.wikipedia.org/wiki/ARM_architecture]


Jazelle는 
Java의 꿈이었던 Java Bytecode CPU라고 해야하나?
CPU에서 Native ByteCode를 95% 정도 지원하고 나머지는VM 으로 처리하는 방식으로
ARMv5TEJ 부터 지원하고 J가 자바지원을 의미한다.

아무튼... 안드로이드가 좀 빨라진 이유중에 하나가
Cortex-A8/A9에서 Jazelle의 후속 기술인 ThumbEE를 지원하면서 JIT 가속(?)을 받아서가 아닐까?
 Jazelle DBX (Direct Bytecode eXecution) allows some ARM processors to execute Java bytecode in hardware as a third execution state alongside the existing ARM and Thumb modes. Jazelle functionality was specified in the ARMv5TEJ architecture and the first processor with Jazelle technology was the ARM926EJ-S. Jazelle is denoted by a 'J' appended to the CPU name, except for post-v5 cores where it is required (albeit only in trivial form) for architecture conformance.
 Jazelle RCT (Runtime Compilation Target) is a different technology and is based on ThumbEE mode and supports ahead-of-time (AOT) and just-in-time (JIT) compilation with Java and other execution environments.

Instead, the Thumb Execution Environment (ThumbEE) is now preferred. Support for this is mandatory in ARMv7-A processors (such as the Cortex-A8 and Cortex-A9), and optional in ARMv7-R processors. ThumbEE targets compiled environments, perhaps using JIT technologies. It is not at all specific to Java, and is fully documented; much broader adoption is anticipated than Jazelle was able to achieve.

[링크 : http://en.wikipedia.org/wiki/Jazelle ] 

[링크 : http://www.arm.com/products/processors/technologies/jazelle.php]

'embeded > ARM' 카테고리의 다른 글

Freescale Multimedia framwork  (0) 2014.09.17
freescale i.mx283 / i.mx515  (0) 2014.08.19
SSI - Synchronous Serial Interface  (0) 2013.12.18
ubuntu gcc-arm 패키지 목록  (0) 2013.08.31
jtag tap - Test Access Port  (0) 2013.07.05
Posted by 구차니
embeded/ARM2013. 12. 18. 01:21
LC1628 내용을 보려다가 뜬금없이 LM3S1968 킷트의
128x96 OLED 내용을 먼저 보고 분석을 하려고 해쓴데
EVB에서 SSI 관련 내용이 보여서 찾아보니.. 대단한건 아니고
2핀으로 장거리 전송을 하고 CLK와 DATA를 sync 시켜 보내는 방법

즉, 데이터를 패러럴이 아닌 시리얼로 보내기에 핀수를 줄일수 있는 장점이 있다.
아무튼.. OLED던 CLCD던 데이터 전송시 SSI 를 이용한다면
하드웨어 적으로 SSI를 제공하는 Stellaris에서 굳이 마다할 필요는 없을듯


SSI is based on RS-422[1] standards
[링크 : http://en.wikipedia.org/wiki/Synchronous_Serial_Interface]

'embeded > ARM' 카테고리의 다른 글

freescale i.mx283 / i.mx515  (0) 2014.08.19
ARM thumb과 Jazelle  (0) 2014.04.19
ubuntu gcc-arm 패키지 목록  (0) 2013.08.31
jtag tap - Test Access Port  (0) 2013.07.05
H-JTAG에서 pxa255 + 28F128J 읽어오기(실패중)  (0) 2013.07.03
Posted by 구차니