INFO : Cirrus has realeased a linux port for EDB7312 and EDB89712, based on my sources. Get it HERE.
This section provides everything necessary to boot linux on the CDB89712, in 5 minutes.
THIS package contains :
A zImage, made with the"boot_patch".
A jffs2 root filesystem image.
All the binaries (for i386-linux) to program the flash (hermit & shoehorn).
And a script that does the job for you.Download the archive, untar it, cd into the created directory, run the script named 'test', then follow the instructions.
Note : The programming of the flash may fail, it's due to a problem with hermit that doesn't erase the flash correctly (i think). If it happens, erase the flash, then run the script again.
You will see the kernel speaking on UART0 at 115200 8N1, and a shell prompt on UART1 at 38400 8N1
You can also download the images, with the tool of your choice :
- Put the kernel at 0x0.
- Put the jffs2 image at 0x400000.
Don't try to build your own cross-toolchain at first ... unless you really need to, You can download precompiled toolchains at several places :
ftp://ftp.arm.linux.org.uk/pub/linux/arm/toolchain/
You 'll find here several toolchains, using glibc (the BIG Gnu C library)
Download a toolchain using gcc-2.95, (gcc-3.0.4 is not stable and doesn't
compile the kernel correctly).
http://uclibc.org/downloads/toolchain/
These toolchains use uclibc, a nice small C library. The gcc-3.0.4 one
support the C++, it can not be used for kernel compilation, but it seems to work
fine for arm-linux applications.
I haven't tried the 2.95 one, if it works, this is the one you must get (and let me know).
These toolchains, must be compiled, but there's a powerfull Makefile which does the job
for you.Note :
Take care of where dynamic executable will search for libraries, it might not be "/lib" but "/<cross-toolchain-path>/lib" !!
These toolchain must be installed in the right directory to work, README is your friend.
You cannot compile linux with gcc-3.0.4.
To compile the kernel, include the path of 'arm-linux-gcc' in your PATH.
The linux kernel is executed directly in flash, it decompress itself in RAM, then it mounts a fs stored into a MTD partition.
These patches apply to the kernel-2.4.18-rmk5, so download the kernel-2.4.18 (HERE), then apply the rmk5 (HERE) patch.
kernel-2.4.18-rmk5-patch :
This patch must be applied after the arm-linux 2.4.18.rmk5 patch, it permits linux to work on the cdb89712, it is based upon Roland Seuhs & Ray Lehtiniemi patches.
What you've got now :A kernel that runs on cdb89712 ( of course )
With 5 MTD partitions in flash:
mtd0: 00020000 00004000 "cdb89712 flash boot partition" ( starting at 0x0, put the bootloader here)
mtd1: 000a0000 00020000 "cdb89712 flash linux kernel partition" ( starting at 0x20000, put the kernel here)
mtd2: 00100000 00020000 "cdb89712 flash root partition" ( starting at 0xC0000 )
mtd3: 00240000 00020000 "cdb89712 flash data partition" ( starting at 0x1C0000 )
mtd4: 00400000 00020000 "cdb89712 flash free partition" ( starting at 0x400000)
A bootloader is needed to boot this kernel, it must give the MTD partition where rootfs is located, and launch the kernel directly in flash. See Bootloader section to get hermit bootloader working with this kernel.
The kernel must be put at 0x20000.boot_patch :
This patch MUST be applied AFTER previous one, and you MUST copy tags.h into your "linux/arch/arm/boot/compressed" directory.
It makes the zImage bootable, i have included a bootloader into the kernel (hermit). It 's very simple apply this patch, compile the kernel, put the zImage at 0x0 in the flash, and let's go ... it works :)
What you've got now :A kernel that runs on cdb89712 ( of course again)
With 4 MTD partitions in flash:
mtd0: 000a0000 00020000 "cdb89712 flash linux kernel partition" ( starting at 0x0, put the zImage here)
mtd1: 00200000 00020000 "cdb89712 flash root partition" ( starting at 0xA0000 )
mtd2: 00160000 00020000 "cdb89712 flash data partition" ( starting at 0x2A0000 )
mtd3: 00400000 00020000 "cdb89712 flash free partition" ( starting at 0x400000, put your rootfs image here)
This kernel must be put at 0x0 in flash, no need for a boot-loader.
The default location for rootfs image is mtd3, put your image at the mtd3 start address (or modify the 'MTD_MINOR' variable in tags.h).noeeprom_patch :
It permits to work without the Ethernet EEPROM. You must put the JP26, give the MAC address to ifconfig, and don't forget to use the "--remote-mac" to hermit when programming the flash..config :
This is the .config i use to configure linux (rename it to .config and put it into the linux dir).Note : There is an example script to apply the patches HERE (everything must be in the script directory).
Install a cross-toolchain.
Put the 'arm-linux-gcc' directory into your PATH.
Download the linux-2.4.18 kernel, apply the arm-linux-2.4.18.rmk5 patch.
Apply my patches.
Cd into the linux dir, type 'make oldconfig dep zImage'
The zImage to flash is in 'arch/arm/boot'.
If you have a cross-toolchain, the root filesystem is easy to make, the only thing you need to know is "What to put in it" :).
I provide a working filesystem (using gcc-2.95.3, binutils-2.11.2, uClibc-0.9.9 ) and two binaries (for i386-linux) to make the JFFS2 or CRAMFS images, HERE.
Now you have to choose between :
CRAMFS : read-only, compressed, and fast access
JFFS2 : writeable, compressed, slower.To make a cramfs or jffs2 image :
mkcramfs <source_dir> <cramfs_image>
mkfs.jffs2 -r <source_dir> -o <jffs2_image>Note : You can find some working rootfs at other places, see the links section. Sources for cramfs are into 'linux/scripts/cramfs', you can find the source for mkfs.jffs2 into the MTD cvs (see links sectio for MTD website).
The way i propose is the following, use my boot_patch, put linux at 0x0, then start the board. You don't need a bootloader.
If you want to use the common way of booting linux (having a bootloader at 0x0), see below.
Shoehorn :
it is a tool to download to flash by the serial port, it works when the cs89712 is in ROM boot mode ( put JP31 )You can download Shoehorn HERE.
Then apply the roland cdb89712 seuhs's patch HERE.
See Roland Seuhs's page for insructions (link section).
Hermit :
It is basically a bootloader, but it is usefull for quickly programming the flash (by ethernet). It is composed of two parts, a server side and a target side. The server side is used to send commands to the target side. The target side has the ability to boot a linux kernel.You can download Hermit HERE.
Then apply the roland cdb89712 seuhs's patch HERE.
Now you can apply my patch HERE.
With the last patch, hermit will boot the kernel directly in flash (kernel must be at 0x20000), and pass the mtd 4 partition as containing the rootfs (your JFFS2 or CRAMFS image must be at the beginning of the mtd4 partition, 0x400000 with my kernel patch).
Note : To change the MTD boot partition edit "hermit-1.3/src/target/cs89712/linux.c" and change the MTD_MINOR' variable.
Note : I provide binary (i386) versions of Shoehorn and Hermit, in the "Quick Start" section, they can only be used to program the flash (not to boot linux). See Roland Seuhs's page for insructions about using these tools.
JTAG devices, are usefull and perhaps necessary to debug the kernel/drivers, and usefull but not necessary to program the flash. A good JTAG device must work well with GDB. I've got the BDI2000 from abatron, it 's a powerfull tool, really standard, i'm really happy with it. The JEENI from EPI, seems to be good to.
This is my cdb89712 config file for the BDI2000 : cs89712.cfg
http://www.kernel.org/
You can find the latest linux-kernel here.
http://www.arm.linux.org.uk/
This site is your best friend, you can find here the "rmk" patches, that permits to run linux on the supported arm targets. The arm-linux mailling list provide a great support, you *MUST* register to that list. This site contains precompiled arm-linux cross-toolchains.
http://roland.seuhs.com/en/index.php/Development/LiMa/CDB89712
This is roland seuhs 's homepage on "Running Linux on CDB89712" . It describes how to run linux-2.4.6, and how to install everything ( fs, loader, toolchain ... ). I started from here. Many of the patches available on my page come from this site. Thank you Roland. You must see this page.
http://lmmasson.online.fr
This the actualised web page of Roland seuhs, by Laurent Masson.
http://www.lart.tudelft.nl/
The site of the LART project, you can find here some usefull tools & informatios. This site contains also some prebuilded cross-toolchains & root filesystems.
http://www.uclibc.org/
The uclibc C lib, is a replacement to the BIG Gnu C library (glibc). The site contains prebuilded toolchains, but be warned, gcc-3.0.4 doesn't compile the kernel and is not stable.
http://busybox.net/
The embedded linux "swiss knife", a very usefull & small package that contains every linux command you want ( ls, grep, ifconfig ... ).
http://tinylogin.busybox.net/
As for busybox, usefull and small, it contains things like login, getty, passwd, adduser ...
http://www.bluemug.com/~miket/arm/arm.html
You can find here hermit & shoehorn, the 2 bootloaders i use. Some patches are necessary to make them working with cdb89712 (see roland seuhs's homepage).
http://www.linux-mtd.infradead.org/
This is the site of the MTD project (Memory Technology Device). MTD drivers permits to see the flash as if it was a hard disk. JFFS2, CRAMFS ... are based upon the MTD drivers.