Editing Linuxstamp II 9260

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 17: Line 17:
 
* Serial debug port 5-pin header
 
* Serial debug port 5-pin header
 
* JTAG port
 
* JTAG port
 
== Motherboards ==
 
It is very easy to make a motherboard for the Linuxstamp II such as the [http://opencircuits.com/Linuxstamp_II_8-channel_RC_Control_board 8-channel RC Control board].
 
  
 
== Emdebian ==
 
== Emdebian ==
The current Linux distribution is [http://www.emdebian.org/ Emdebian]. It is located in the NAND flash and uses UBI & UBIFS. The Emdebian folks have done a stellar job on Emdebian, and the best part is if the package you're after hasn't been "gripped" yet you can get the normal debian version.
+
The current Linux distribution is [http://www.emdebian.org/ Emdebian]. It is located in the NAND flash and uses UBI & UBIFS. The Emdebian folks have done a stellar job on Emdebian, and the best part is if the package your after hasn't been "gripped" yet you can get the normal debian version.
  
 
The following instructions show how to build an emdebian system. The host system is debian squeeze on a x86_64, multistrap version 2.1.7. Here's the configuration file:
 
The following instructions show how to build an emdebian system. The host system is debian squeeze on a x86_64, multistrap version 2.1.7. Here's the configuration file:
Line 113: Line 110:
 
== Cross Compiler ==
 
== Cross Compiler ==
 
you can use [http://ymorin.is-a-geek.org/projects/crosstool crosstool-ng] to generate a cross compiler. The documentation on the website is very good.
 
you can use [http://ymorin.is-a-geek.org/projects/crosstool crosstool-ng] to generate a cross compiler. The documentation on the website is very good.
 
Emdebian also has pre-built cross-compilers that you can [http://www.emdebian.org/tools/crosstools.html install], as well as the [http://www.emdebian.org/tools/crossdev.html tools] to build your own.
 
  
 
== U-boot ==
 
== U-boot ==
 
First we need [ftp://ftp.denx.de/pub/u-boot/u-boot-2010.03.tar.bz2 u-boot]. If you have not yet built a cross compilier now would be a good time to do so (See the cross compilier section above). Now you can do a test for the Atmel at91sam9g20 EL board using NAND.
 
First we need [ftp://ftp.denx.de/pub/u-boot/u-boot-2010.03.tar.bz2 u-boot]. If you have not yet built a cross compilier now would be a good time to do so (See the cross compilier section above). Now you can do a test for the Atmel at91sam9g20 EL board using NAND.
$make at91sam9g20ek_nandflash_config
+
* $ '''make at91sam9g20ek_nandflash_config'''
$make CROSS_COMPILE=your_cross_compiler
+
* $ '''make CROSS_COMPILE=your_cross_compiler'''
 
This should give you a "u-boot.bin" file. We will have to write a board specific configuration file for the Linuxstamp. We should be able to base it off the the Atmel DK board. If you look at "/u-boot-1.1.6/include/configs/at91rm9200dk.h" you can see the configuration for the DK board.
 
This should give you a "u-boot.bin" file. We will have to write a board specific configuration file for the Linuxstamp. We should be able to base it off the the Atmel DK board. If you look at "/u-boot-1.1.6/include/configs/at91rm9200dk.h" you can see the configuration for the DK board.
 
<br>
 
<br>
 
Other u-boot commands:
 
Other u-boot commands:
> '''printenv''', prints the enviroment variables
+
* > '''printenv''', prints the enviroment variables
> '''saveenv''', saves the enviroment variables
+
* > '''saveenv''', saves the enviroment variables
> '''setenv bootcmd 'tftpboot 20800000 uImage; bootm 20800000'''' Sets the boot command to load a image over tftp and boot it
+
* > '''setenv bootcmd 'tftpboot 20800000 uImage; bootm 20800000'''' Sets the boot command to load a image over tftp and boot it
> '''setenv bootargs mem=32M nfsroot=192.168.0.3:/nfs_root ip=192.168.0.51 console=ttyS0,115200n8 rootdelay=1'''
+
* > '''setenv bootargs mem=32M nfsroot=192.168.0.3:/nfs_root ip=192.168.0.51 console=ttyS0,115200n8 rootdelay=1'''
 
This sets the command line to be passed to the kernel. As you can see it sets the nfsrot, ip address and console
 
This sets the command line to be passed to the kernel. As you can see it sets the nfsrot, ip address and console
 
Warning!!! you can brick a board with the wrong u-boot NAND commands.
 
You can read and write the NAND flash with u-boot. To get started the u-boot NAND help is useful:
 
> '''nand help'''
 
So if to update the kernel, you must first be able to load the uImage into ram. This is normally done from tftpboot, with something like:
 
> '''tftpboot 0x20800000 uImage.9g20r5'''
 
Where 0x20800000 is the ram address, and uImage.9g20r5 is the file name on the tftp server. Now you need to erase the kernel block. This is necessary because a NAND write by itself can only switch bits to 0's:
 
> '''nand erase 0xa0000 0x200000'''
 
Where 0xa0000 is the offset and 0x200000 is the length. Now the new kernel can be written:
 
> '''nand write 0x20800000 0xa0000 0x200000'''
 
Where 0xa0000 is the offset and 0x200000 is the length
 
  
 
== License ==
 
== License ==
Line 161: Line 145:
  
 
== nfs & tftp ==
 
== nfs & tftp ==
Nfs (network file system) and tftp (trivial file transfer protocol) are two servers you will want running on your host machine. Nfs is useful for hosting the root file system of the Linuxstamp. Tftp is useful for u-boot to retrieve the kernel from. There are many other websites on nfs and tftp, but I will try and go over a simple setup. I would suggest being behind a firewall before trying either of these setups as neither is secure. I wrote this using a Fedora 7 system. You may have to modify the iptables on the server to allow a client to connect to the server.
+
Nfs (network file system) and tftp (trivial file transfer protocol) are two servers you will want running on your host machine. Nfs is useful for hosting the root file system of the Linuxstamp. Tftp is useful for u-boot to retrieve the kernel from. There are many other websites on nfs and tftp, but I will try and go over a simple setup. I would suggest being behind a firewall before trying either of these setups as neither is secure. I wrote this using a Fedora 7 system. First make sure you have nfs installed.
 
 
 
 
''<path_to_nfs_root>'' = This is the path to the root file system on the NFS machine.
 
 
 
''<server_name>'' = This is either the server host name, or an ip address to the NFS server.
 
 
 
''<path_to_test_mount>'' = This is the directory on the host that will be mounted to.
 
 
 
 
 
 
 
First make sure you have nfs installed.
 
  
 
  $ '''yum install nfs-utils nfs-utils-lib portmap system-config-nfs'''
 
  $ '''yum install nfs-utils nfs-utils-lib portmap system-config-nfs'''
Line 182: Line 155:
 
Now to make sure the service is enabled run (this won't work on Ubuntu):
 
Now to make sure the service is enabled run (this won't work on Ubuntu):
 
  $ '''serviceconf''' and make sure '''nfs''' and '''nfs lock''' are checked
 
  $ '''serviceconf''' and make sure '''nfs''' and '''nfs lock''' are checked
Now edit '''/etc/exports''' you should add a line like this '''/''<path_to_nfs_root>''/ *(rw,no_root_squash,insecure)'''. Now restart nfs.
+
Now edit '''/etc/exports''' you should add a line like this '''/path_to_nfs_root/ *(rw,no_root_squash,insecure)'''. Now restart nfs.
 
  $ '''sudo /etc/init.d/nfs restart'''
 
  $ '''sudo /etc/init.d/nfs restart'''
 
You can test that it is set up correctly by typing the following on the local system (i.e. right on the NFS server)
 
You can test that it is set up correctly by typing the following on the local system (i.e. right on the NFS server)
Line 188: Line 161:
  
 
You can test this from a remote system with
 
You can test this from a remote system with
  $ '''mount -t nfs ''<server_name>'':/''<path_to_nfs_root>'' /''<path_to_test_mount>'''''
+
  $ '''mount -t nfs server_name:/path_to_nfs_root /path_to_test_mount'''
 
Now on to tftp. Make sure it is installed.
 
Now on to tftp. Make sure it is installed.
 
  $ '''yum install tftp-server'''
 
  $ '''yum install tftp-server'''
Line 201: Line 174:
 
And boot them
 
And boot them
 
  > '''bootm 20800000'''
 
  > '''bootm 20800000'''
 
== Update Root FS on NAND ==
 
To update the root file system on the nand, you will need to have a running NFS server as described in the above section.
 
 
You can get the latest root_fs from here [http://linuxstamp.budgetdedicated.com/index.php?dir=lnst2_9g20/rootfs/&file=grip_squeeze_20110512.tar.bz2 grip_squeeze_20110512.tar.bz2] and un-tar it on your NFS server.
 
 
If you would like to create your own UBIFS, go to this [http://www.linux-mtd.infradead.org/doc/ubifs.html link].
 
 
Now we need to have u-boot boot up to connect to your NFS server for the root file system. Just as the board is booting up, you will see ''Hit any key to stop autoboot:'' You will have three seconds to hit any key. When you hit any key, you will be placed into the u-boot command.
 
 
To see the current environmental variables type:
 
> printenv
 
We will now be changing the variable ''bootargs'':
 
> setenv bootargs ip=dhcp nfsroot=<server_name>:<path_to_nfs_root>
 
Now save the new environment variables.
 
> saveenv
 
You can now reboot your board and see if it connects to your NFS root file system.
 
 
Note: On your NFS server, make sure you edit '''/etc/network/interfaces''' and comment out all the lines so that the kernal will not reset your network while booting up as the U-Boot has already setup the network for you.
 
 
 
 
Now lets install the new root file system. Take your new .bz2 file that you either created or download and put it in the root of the NFS root path.
 
 
The first command you will be doing, is going to format the root file system partition on the NAND drive. Note: We will be using mtd5 as this is the partition where the root file system resides and this will not erase the boot partition that contains U-Boot.
 
$ ubiformat /dev/mtd5 && ubiattach /dev/ubi_ctrl -m 5
 
Now we will be creating a new volume.
 
$ ubimkvol /dev/ubi0 -N rootfs -s 230MiB
 
Now lets mount the new partition.
 
$ mount -t ubifs ubi0_0 /mnt/tmp/
 
Now let un-tar the new root file system into the new partition.
 
$ tar -jxf /grip_squeeze_20110512.tar.bz2 -C /mnt/tmp/
 
Now we will move the un-tared root file system into the root of the partition.
 
$ mv /mnt/tmp/grip_squeeze/* /mnt/tmp/
 
Lets do some clean-up to gain some room as flash memory is limited.
 
$ rmdir /mnt/tmp/grip_squeeze/
 
Now unmount the partition.
 
$ umount /mnt/tmp/
 
 
Reboot the board and use the above commands to restore bootargs in U-Boot to boot from the new root file system on the board.
 
> setenv bootargs mem=32M console=ttyS0,115200 rootdelay=0 ip=192.168.0.51 ubi.mtd=5 root=ubi0_0 rootfstype=ubifs
 
Remember to save your environments before rebooting again.
 
> saveenv
 
You are now ready to use your fresh installed root file system.
 
  
 
== NAND Flash ==
 
== NAND Flash ==
One good solution for the NAND flash is to use the new [http://www.linux-mtd.infradead.org/faq/ubi.html ubi] and [http://www.linux-mtd.infradead.org/faq/ubifs.html ubifs] components. These both need to be enabled in the kernel, and then they can be used from the emdebian system. You can always check what mtd devices are avaliable in /proc/mtd. First we can format the mtd device (Note: This mtd1 will remove everything including u-boot):
+
One good solution for the NAND flash is to use the new [http://www.linux-mtd.infradead.org/faq/ubi.html ubi] and [http://www.linux-mtd.infradead.org/faq/ubifs.html ubifs] components. These both need to be enabled in the kernel, and then they can be used from the emdebian system. You can always check what mtd devices are avaliable in /proc/mtd. First we can format the mtd device:
 
  $ ubiformat /dev/mtd1
 
  $ ubiformat /dev/mtd1
 
Now we can "attach" it. This is telling the kernel to use the ubi subsystem for that partition. The -m 1 says use /dev/mtd1.
 
Now we can "attach" it. This is telling the kernel to use the ubi subsystem for that partition. The -m 1 says use /dev/mtd1.
Line 256: Line 185:
 
  $ mount -t ubifs ubi0_0 /mnt/tmp/
 
  $ mount -t ubifs ubi0_0 /mnt/tmp/
  
== Flashing with Atmel SAM-BA ==
 
Ateml SAM-BA can be used to to flash the linuxstampII board. Some special considerations must be taken to properly communicate with the board.
 
 
1) SAM-BA must be running in a windows environment to flash over the debug port. If running on a Windows 7 machine, you must install in XP compatibility mode. This will allow you to run SAM-BA and not SAM-BA_cdc
 
 
2) There cannot be any executable code in flash. It must be erased or you can very carefully pull the CS pin (pin 9) high to temporarily disable the NAND flash upon powering up the board.
 
 
3) You must change one line in the 
 
 
4) change sam9g20ek configuration file in:
 
Program Files/ATMEL Corporation/SAM-BA v2.10/tcl_lib/at91sam9g20-ek/at91sam9g20.tcl
 
 
#set bus width (16 or 32)
 
bus width = 16
 
 
5) should connect now when choosing sam9g20ek connection
 
 
6) In scripts, select "Enable Nand" and execute
 
 
7) In scripts, select "Erase All and execute
 
 
8) You can now write fresh versions of the at91bootstrap and u-boot!
 
  
 
== Links ==
 
== Links ==
Line 283: Line 190:
 
*[http://cadsoft.de/ Cadsoft.de]: Free (as in beer) tools for schematic and PCB design
 
*[http://cadsoft.de/ Cadsoft.de]: Free (as in beer) tools for schematic and PCB design
 
*[http://openhardware.wordpress.com/ openhardware.wordpress.com]: Here is my openhardware blog
 
*[http://openhardware.wordpress.com/ openhardware.wordpress.com]: Here is my openhardware blog
*[[Linuxstamp]] for the original AT91RM9200 Linuxstamp
+
*[[Linuxstamp Mboard 1| Mborad 1]] for the Linuxstamp
 
*[http://wiki.emqbit.com/free-ecb-at91 ECB AT91] This is another open source project similar to the Linuxstamp. They have some [http://wiki.emqbit.com/wiki very good documentation].
 
*[http://wiki.emqbit.com/free-ecb-at91 ECB AT91] This is another open source project similar to the Linuxstamp. They have some [http://wiki.emqbit.com/wiki very good documentation].
 
*[http://www.budgetdedicated.com/ Budgetdedicated] Graciously hosts our ftp [http://linuxstamp.budgetdedicated.com/index.php?dir=lnst2/ site]
 
*[http://www.budgetdedicated.com/ Budgetdedicated] Graciously hosts our ftp [http://linuxstamp.budgetdedicated.com/index.php?dir=lnst2/ site]

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)