Sughosh Ganu 6b873dcabd Changes to move hawkboard to the new spl infrastructure
This patch moves hawkboard to the new spl infrastructure from the
older nand_spl one.

Removed the hawkboard_nand_config build option -- The spl code now
gets compiled with hawkboard_config, after building the main u-boot
image, using the CONFIG_SPL_TEXT_BASE. Modified the README.hawkboard
to reflect the same.

Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
Signed-off-by: Heiko Schocher <hs@denx.de>
Cc: Heiko Schocher <hs@denx.de>
Cc: Christian Riesch <christian.riesch@omicron.at>
Cc: Sudhakar Rajashekhara <sudhakar.raj@ti.com>
Cc: Tom Rini <trini@ti.com>
Acked-by: Christian Riesch <christian.riesch@omicron.at>
2012-02-12 10:11:33 +01:00
..
2011-09-11 21:24:09 +02:00
2010-04-21 23:42:38 +02:00
2009-07-27 00:24:55 +02:00
2008-10-18 21:54:03 +02:00
2011-09-04 11:36:11 +02:00
2008-10-18 21:54:03 +02:00
2010-05-21 22:05:05 +02:00
2011-10-05 22:22:16 +02:00
2011-10-05 22:22:16 +02:00
2011-10-05 22:22:16 +02:00
2011-10-05 22:22:16 +02:00
2008-10-18 21:54:03 +02:00
2009-04-03 23:47:06 +02:00
2010-04-21 23:42:38 +02:00
2010-03-12 00:15:55 +01:00
2009-06-14 21:30:39 +02:00
2008-10-18 21:54:03 +02:00
2011-05-19 22:22:44 +02:00
2011-12-19 12:03:40 +01:00
2010-04-21 23:42:38 +02:00
2010-08-08 05:17:05 +05:30
2011-12-19 12:03:40 +01:00
2010-04-21 23:42:38 +02:00
2010-04-03 15:24:26 -05:00
2011-12-19 12:03:40 +01:00
2008-10-18 21:54:03 +02:00
2008-10-18 21:54:03 +02:00
2012-02-12 10:11:32 +01:00
2010-04-21 23:42:38 +02:00
2010-10-19 23:53:45 +02:00
2011-09-11 21:24:09 +02: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>