Files
u-boot-tk1-som/doc
Tom Rix 376aee78dd ZOOM2 Add initial support for Zoom2
Zoom2 is a new board from Texas Instruments and LogicPD

The logicpd web site is a good source for general information on this board.
Please start looking here if the below links are broken.
http://www.logicpd.com

This is a pdf of the product
http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
This is the product description web page
http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp

This patch provides a zoom2 base target by copying zoom1 and by making some
obvious changes.

To configure, run
make omap3_zoom2_config

Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2009-06-12 20:39:50 +02:00
..
2008-05-21 00:14:08 +02:00
2008-05-21 00:14:08 +02:00
2009-04-04 20:42:19 +02:00
2008-09-01 13:41:58 +02:00
2008-02-04 19:26:54 -05:00
2008-10-18 21:54:03 +02:00
2008-05-21 00:14:08 +02:00
2002-11-02 23:30:20 +00:00
2003-06-27 21:31:46 +00:00
2003-06-27 21:31:46 +00:00
2008-10-18 21:54:05 +02:00
2003-06-27 21:31:46 +00:00
2008-10-18 21:54:03 +02:00
2008-10-18 21:54:03 +02:00
2008-10-18 21:54:03 +02:00
2009-04-03 23:47:06 +02:00
2008-04-25 00:03:53 +02:00
2005-09-23 11:05:55 +02:00
2003-06-27 21:31:46 +00:00
2003-06-27 21:31:46 +00:00
2002-11-02 23:30:20 +00:00
2005-08-06 01:42:58 +02:00
2007-03-08 22:52:51 +01:00
2008-05-21 00:14:08 +02:00
2007-03-04 01:36:05 +01:00
2008-05-21 00:14:08 +02:00
2008-05-21 00:14:08 +02:00
2008-10-18 21:54:03 +02:00
2008-06-28 23:34:37 +02:00
2008-05-09 20:53:52 +02:00
2008-10-18 21:54:03 +02:00
2005-09-23 11:05:55 +02:00
2003-06-27 21:31:46 +00:00
2008-10-18 21:54:03 +02:00
2003-09-05 23:19:14 +00:00
2003-06-27 21:31:46 +00:00
2008-10-18 21:54:03 +02:00
2003-06-27 21:31:46 +00:00
2008-05-21 00:14:08 +02:00
2004-10-11 23:10:30 +00:00
2008-10-18 21:54:03 +02:00
2008-10-18 21:54:03 +02:00
2008-05-21 00:14:08 +02:00
2003-05-31 18:35:21 +00:00

Storage of the board specific values (ethaddr...)
-------------------------------------------------

The board specific environment variables that should be unique
for each individual board, can be stored in the I2C EEPROM. This
will be done from offset 0x80 with the length of 0x80 bytes. The
following command can be used to store the values here:

=> setdef de:20:6a:ed:e2:72 de:20:6a:ed:e2:73 AB0001

	  ethaddr           eth1addr          serial#

Now those 3 values are stored into the I2C EEPROM. A CRC is added
to make sure that the values get not corrupted.


SW-Reset Pushbutton handling:
-----------------------------

The SW-reset push button is connected to a GPIO input too. This
way U-Boot can "see" how long the SW-reset was pressed, and a
specific action can be taken. Two different actions are supported:

a) Release after more than 5 seconds and less then 10 seconds:
   -> Run POST

   Please note, that the POST test will take a while (approx. 1 min
   on the 128MByte board). This is mainly due to the system memory
   test.

b) Release after more than 10 seconds:
   -> Restore factory default settings

   The factory default values are restored. The default environment
   variables are restored (ipaddr, serverip...) and the board
   specific values (ethaddr, eth1addr and serial#) are restored
   to the environment from the I2C EEPROM. Also a bootline parameter
   is added to the Linux bootline to signal the Linux kernel upon
   the next startup, that the factory defaults should be restored.

The command to check this sw-reset status and act accordingly is

=> chkreset

This command is added to the default "bootcmd", so that it is called
automatically upon startup.

Also, the 2 LED's are used to indicate the current status of this
command (time passed since pushing the button). When the POST test
will be run, the green LED will be switched off, and when the
factory restore will be initiated, the reg LED will be switched off.


Loggin of POST results:
-----------------------

The results of the POST tests are logged in a logbuffer located at the end
of the onboard memory. It can be accessed with the U-Boot command "log":

=> log show
<4>POST memory PASSED
<4>POST cache PASSED
<4>POST cpu PASSED
<4>POST uart PASSED
<4>POST ethernet PASSED

The DENX Linux kernel tree has support for this log buffer included. Exactly
this buffer is used for logging of all kernel messages too. By enabling the
compile time option "CONFIG_LOGBUFFER" this support is enabled. This way you
can access the U-Boot log messages from Linux too.

2007-08-10, Stefan Roese <sr@denx.de>