embeded/ARM2015. 1. 12. 10:42

플랫폼

Ubuntu 14.04 LTS

ltib 13.2.1 (cvs)


Package                Minimum ver   Installed info

-------                -----------   ---------------

glibc-devel            0             not installed

zlib                   0             not installed

zlib-devel             0             not installed

ncurses-devel          0             not installed

m4                     0             not installed

bison                  0             not installed


$ sudo apt-get install libncurses-dev bison zlibc zlib1g-dev

[링크 : http://ubuntuforums.org/showthread.php?t=1632027]



32비트의 경우 아래의 내용으로

$ vi ltib/bin/Ltibutils.pm

 559 $app_checks = {

 560     binutils         => 'ar --version 2>/dev/null',

 561     'gcc-c++'        => 'g++ --version 2>/dev/null',

 562     glibc            => 'ldd --version 2>/dev/null',

 563     'glibc-devel'    => sub { -f '/usr/lib/i386-linux-gnu/libm.so' || -f '/usr/lib/i386-linux-gnu/libz.so'},

 564     'glibc-headers'  => sub { -f '/usr/include/stdio.h' },

 565     'libstdc++' => sub {

 566             return system_nb(<<TXT) == 0;

 567 echo '#include <iostream>

 568 int main() { std::cout << "test"; }' | g++ -x c++ - -o /dev/null

 569 TXT

 570                        },

 571     lkc              => 'mconf -h 2>/dev/null',

 572     ncurses          => 'tic -V 2>/dev/null',

 573     'ncurses-devel'  => sub { -f '/usr/include/ncurses.h' },

 574     'rpm-build'      => sub { `rpmbuild --version 2>/dev/null` },

 575     sudo             => 'sudo -V 2>/dev/null',

 576     tcl              => "echo 'puts \$tcl_patchLevel' | tclsh",

 577     texinfo          => sub {

 578                        warn  "WARNING: you may also need to install:"

 579                             ." tetex-fonts, dialog and textex\n"

 580                          unless  -f '/usr/share/texmf/tex/texinfo/texinfo.tex';

 581                         `makeinfo --version 2>/dev/null`;

 582                     },

 583     zlib         => sub { my @f = (glob('/usr/lib/libz.so*'),

 584                                    glob('/lib/libz.so*'),

 585                                    glob('/lib/i386-linux-gnu/libz.so*')  ); @f > 1 ? 1 : 0 },

 586     'zlib-devel' => sub { -f '/usr/include/zlib.h' },

 587 }; 


[링크 : http://markdingst.blogspot.kr/2011/06/ltib-1105-miss-zlib-under-ubuntu-1104.html]


64비트는 링크의 내용으로

[링크 : https://community.freescale.com/thread/311978]




으아악 막혔다!!! ㅠㅠ

rpmdb: --force-debian: unknown option
Died at ./ltib line 2340.
traceback:
 main::setup_rpmdb:2340
  main::check_rpm_setup:2403
   main::host_checks:1423
    main:542


Started: Mon Jan 12 00:37:29 2015
Ended:   Mon Jan 12 00:37:30 2015
Elapsed: 1 seconds


Build Failed



$ vi ltib

2341 set -e

2342 $cf->{sudo} $cf->{rpm} --root $cf->{rpmroot} --dbpath $cf->{rpmdb} --initdb ||

2343 $cf->{sudo}       rpm   --root $cf->{rpmroot} --dbpath $cf->{rpmdb} --initdb

2344 TXT

2345     } elsif($do_rebuild) {

2346         system_nb(<<TXT) == 0 or die;

2347 set -e

2348 $cf->{sudo} $cf->{rpm} --root $cf->{rpmroot} --dbpath $cf->{rpmdb} --define '_tmppath $cf->{tmppath}' --rebuilddb

2349 $cf->{sudo}        rpm --root $cf->{rpmroot} --dbpath $cf->{rpmdb} --define '_tmppath $cf->{tmppath}' --rebuilddb

2350 TXT 


[링크 : http://cvs.savannah.gnu.org/viewvc/ltib/ltib?root=ltib&r1=1.76&r2=1.77]

 [링크 : https://community.freescale.com/thread/263568]


Processing: lkc

=================

Build path taken because: directory build, no prebuilt rpm, 


Cowardly refusing to clobber existing directory:

 /opt/freescale/ltib/usr/src/rpm/BUILD/lkc-1.4

Remove this by hand if you really want to rebuild this package from scratch


Died at ./ltib line 1380.

traceback:

 main::build_host_rpms:1380

  main::host_checks:1435

   main:542


[링크 : https://community.freescale.com/message/271839#271839]




----


$ sudo apt-get install libncurses-dev bison perl libwww-perl alien cvs

$ cvs -z3 -d:pserver:anonymous@cvs.savannah.nongnu.org:/sources/ltib co -P ltib

$ cd ltib

$ wget https://community.freescale.com/servlet/JiveServlet/downloadBody/93455-102-3-2835/patch-ltib-ubuntu12.04.sh

$ chmod +x patch-ltib-ubuntu12.04.sh

$ ./patch-ltib-ubuntu12.04.sh


$ sudo visudo

interm ALL = NOPASSWD: /usr/bin/rpm, /opt/ltib/usr/bin/rpm


$ ./ltib 


wget-ssl에서 실패 -_-

[링크 : https://community.freescale.com/thread/324608]

[링크 : https://lists.gnu.org/archive/html/bug-wget/2011-08/msg00041.html]

--without-ssl  삭제


[링크 : http://ltib.org/resources-download#ref_2]

[링크 : https://community.freescale.com/docs/DOC-93455]



우분투 하위버전은 지원하긴 하는데.. 왜케 안되는거야 -_-

x86 Linux

    Redhat: 7.3, 8.0, 9.0, Enterprise release 4

    Fedora Core: 1, 2, 3, 4, 5, 8

    Debian: 3.1r0 (stable), unstable, 4.0

    Suse: 8.2, 9.1, 9.2, 10.0, 10.2, 10.3

    Ubuntu 6.10, 7.04, 7.10, 8.04


[링크 : http://ltib.org/documentation-LtibFaq]


-- 2015.02.10 추가

[링크 : https://importgeek.wordpress.com/2014/05/13/i-mx28-ltib-on-ubuntu-13-04/]


패치

[링크 : https://turbosree.wordpress.com/tag/freescale-ltib-on-ubuntu-12-04/]

    [링크 : https://community.freescale.com/docs/DOC-93455]

    [링크 : https://community.freescale.com/.../93454-102-3-2834/ubuntu-ltib-patch.tgz]

[링크: https://community.freescale.com/thread/308138]

    [링크 : https://community.freescale.com/.../download/271839-220893/438-CreateUbuntu1110ltib110901.docx]


---

2015.04.13

$cf->{rpm} = "rpm" 을 $cf->{rpm} = "rpm --force-debian"$cf->{rpm} = "rpm" 을 $cf->{rpm} = "rpm --force-debian"

[링크 : http://poongbek.blogspot.kr/2011/06/ltib.html]

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

NEON enabled?  (0) 2015.01.28
armel / armhf  (0) 2015.01.26
i.mx283 부팅모드  (0) 2015.01.09
freescale imx283 boot error code  (0) 2015.01.07
Unknown HZ value! (91) Assume 100.  (0) 2015.01.05
Posted by 구차니
embeded/Cortex-M3 STM2015. 1. 10. 22:30

cortex-m3 라고 해서..

ti의 lm3s1968 / 1607 가지고 놀던 시절의

steallaris 이런걸 생각했는데...


역시 Ti가 짱이었나 싶을 정도로 먼가 많이 미흡한 느낌이랄까..

아무튼 Ride7 이라는 녀석도 체험판이고.. 이래저래 에효...

'embeded > Cortex-M3 STM' 카테고리의 다른 글

STM32F103 관련 용어  (0) 2021.02.02
CMSIS for stm32  (0) 2018.02.12
stm32 DMA 관련글들  (0) 2017.12.11
cmsis printf  (0) 2017.01.10
stm32 cortex-m3 api / library  (0) 2015.01.17
Posted by 구차니
embeded/ARM2015. 1. 9. 23:33

USB Recovery mode로 인해

SD나 MMC 부팅 실패시 USB 부팅모드로 넘어가게 된다. (기본값)

설정에 따라서는 USB 복구 모드를 끌수는 있으나 아무튼 기본값 -_-


이런 중요(!)한 내용이 왜.. cpu 관련 내용에는 없고

EVK 관련 내용에 있는걸까 -_-


12.13.4 USB Recovery Mode

USB boot mode is provided as a fail-safe mechanism for writing system firmware to the boot media. The boot mode is not usually entered by the normal methods of setting the boot pins or OTP, the other methods of entering USB boot mode are referred to generally as recovery mode.

An end user can manually start the recovery mode by holding the recovery switch for several seconds while plugging in USB. Holding the recovery switch is defined as reading the i.MX28 PSWITCH input as a 0x3. There are several switch circuits that will produce this input. The loader also automatically starts recovery mode if a nonrecoverableerror is detected from any boot mode other than USBdisabled completely. Attempts to enter USB boot mode through boot pins, OTP, or recovery methods will result in a chip power-down.


[링크 : http://cache.freescale.com/...=pdf&WT_ASSET=Documentation&fileExt=.pdf]


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

armel / armhf  (0) 2015.01.26
ltib on ubuntu  (0) 2015.01.12
freescale imx283 boot error code  (0) 2015.01.07
Unknown HZ value! (91) Assume 100.  (0) 2015.01.05
크로스 컴파일 옵션 configure --host  (0) 2014.10.13
Posted by 구차니
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 구차니
embeded2014. 12. 23. 22:10

회사에서 이런저런 이유로(?) 검색

일단.. 플래시들은 핀수를 줄이기 위해 BYTE 모드와 WORD 모드가 있는데

BYTE 모드는 21비트 어드레싱

WORD 모드는 20비트 어드레싱을 사용한다.

핀수로는

21 + 8

20 + 16 이라서

실제로는 7핀 정도 밖에 안줄어 들어서 무슨 큰 의미가 있겠냐 마는..



DQ15는 16비트 모드에서는 MSB 인데 8비트 모드에서는 주소의 LSB로 쓰인다.

그런데.. 이렇게만 써있으니 이해가 영 어려운게 사실...


A0–A19 20 addresses

DQ0–DQ14 15 data inputs/outputs

DQ15/A-1 DQ15 (data input/output, word mode), A-1 (LSB address input, byte mode)



섹터의 주소를 보면

바이트 모드에서 FFFF 인게 워드모드에서는 7FFF로

0x1111 1111 과 0x0111 1111 로 MSB가 하나 더 추가 된 주소로 출력되며

16번지 이후 섹터에서는 20비트가 아닌 21 비트로 어드레싱을 하여야만 선택이 가능하게 된다.




[링크 : http://www.spansion.com/Support/Datasheets/S29AL016J_00.pdf]

'embeded' 카테고리의 다른 글

9$ computer C.H.I.P?  (0) 2015.05.27
PowerQUICC  (0) 2015.04.02
mmu와 rtos  (0) 2014.12.10
ltib / rc.conf  (0) 2014.11.24
Z80 M6800  (0) 2014.01.27
Posted by 구차니
embeded2014. 12. 10. 20:06
MMU는 Memory Management Unit
RTOS는 Real Time OS 인데 ucLinux 에서 MMU 없이 RTOS에 가깝게 구현하다 보니
헷갈리는게 있는건가 싶기도 한데..

[링크 : http://en.wikipedia.org/wiki/Memory_management_unit]
[링크 : http://en.wikipedia.org/wiki/Real-time_operating_system]

일단 MMU가 없으면 가상주소를 쓸수 없어 물리 주소를 바로 맵핑하기에
context switching에 장점이 있을수 있다고 한다.
암튼, MMU가 없다고 RTOS 인건 아닌데 도대체 어디서 헷갈린걸까 -_-

[링크 : https://kldp.org/node/63733]
[링크 : http://xenostudy.tistory.com/10]
[링크 : http://www.freertos.org

uclinux는 micro-computer linux로
MMU가 없는 마이크로 프로세서에 대한 linux port 라고 한다.
[링크 : http://www.uclinux.org/ ]

'embeded' 카테고리의 다른 글

PowerQUICC  (0) 2015.04.02
S29AL016J 플래시 메모리 BYTE/WORD MODE  (0) 2014.12.23
ltib / rc.conf  (0) 2014.11.24
Z80 M6800  (0) 2014.01.27
기즈모 스피어 / 라즈베리 파이  (0) 2014.01.02
Posted by 구차니
embeded2014. 11. 24. 14:26
litb나 freebsd 계열에만 적용되는건지 모르겠지만
아무튼! 부팅시나 종료시에 수행할 프로그램이나 데몬에 대해서 설정이 가능하고

cfg_service는 부팅시
cfg_service_r은 종료시 구동되는 프로세스들을 나열한다

[링크 : http://www.nxmnpg.com/ko/5/rc.conf]
[링크 : https://www.freebsd.org/cgi/man.cgi?rc.conf(5)]
[링크 : http://www.bitshrine.org/autodocs/LtibFaq.html]

'embeded' 카테고리의 다른 글

S29AL016J 플래시 메모리 BYTE/WORD MODE  (0) 2014.12.23
mmu와 rtos  (0) 2014.12.10
Z80 M6800  (0) 2014.01.27
기즈모 스피어 / 라즈베리 파이  (0) 2014.01.02
USB2LPT for JTAG  (0) 2013.06.21
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 구차니