upstream u-boot with additional patches for our devices/boards: https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ; Gbit ethernet patch for some LIME2 revisions ; with SPI flash support
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
u-boot/board/trab
wdenk a8c7c708a9 * Patch by Gleb Natapov, 19 Sep 2003: 21 years ago
..
Makefile Add auto-update code for TRAB board using USB memory sticks 21 years ago
Pt1000_temp_data.h * Patch by Martin Krause, 11 Sep 2003: 21 years ago
README.kbd Initial revision 22 years ago
auto_update.c Accelerate booting on TRAB board: read and check autoupdate image 21 years ago
cmd_trab.c * Patch by Martin Krause, 09 Oct 2003: 21 years ago
config.mk * Patch by Gleb Natapov, 19 Sep 2003: 21 years ago
flash.c Fix flash driver for TRAB board (must use Unlock Bypass Reset command 21 years ago
memory.c * Patch by Martin Krause, 11 Sep 2003: 21 years ago
memsetup.S Fix flash driver for TRAB board (must use Unlock Bypass Reset command 21 years ago
rs485.c * Patch by Martin Krause, 09 Oct 2003: 21 years ago
rs485.h Move TRAB burn-in tests to TRAB board directory 21 years ago
trab.c Add auto-update code for TRAB board using USB memory sticks 21 years ago
trab_fkt.c * Patches by Xianghua Xiao, 15 Oct 2003: 21 years ago
tsc2000.c * Patches by Xianghua Xiao, 15 Oct 2003: 21 years ago
tsc2000.h * Patches by Xianghua Xiao, 15 Oct 2003: 21 years ago
u-boot.lds * Code cleanup: 21 years ago
vfd.c * Patches by David Müller, 12 Jun 2003: 21 years ago

README.kbd


The TRAB keyboard implementation is similar to that for LWMON and
R360MPI boards. The only difference concerns key naming. There are 4
keys on TRAB: 1, 2, 3, 4.

1) The "kbd" command provides information about the current state of
the keys. For example,

TRAB # kbd
Keys: 1 0 1 0

means that keys 1 and 3 are pressed. The keyboard status is also
stored in the "keybd" environment variable. In this example we get

keybd=1010

2) The "preboot" variable is set according to current environment
settings and keys pressed. This is an example:

TRAB # setenv magic_keys XY
TRAB # setenv key_magicX 12
TRAB # setenv key_cmdX echo ## Keys 1 + 2 pressed ##\;echo
TRAB # setenv key_magicY 13
TRAB # setenv key_cmdY echo ## Keys 1 + 3 pressed ##\;echo

Here "magic_keys=XY" means that the "key_magicX" and "key_magicY"
variables will be checked for a match. Each variable "key_magic*"
defines a set of keys. In the our example, if keys 1 and 3 are
pressed during reset, then "key_magicY" matches, so the "preboot"
variable will be set to the contents of "key_cmdY":

preboot=echo ## Keys 1 + 3 pressed ##;echo

3) The TRAB board has optional modem support. When a certain key
combination is pressed on the keyboard at power-on, the firmware
performs the necessary initialization of the modem and allows for
dial-in. The key combination is specified in the
"include/configs/trab.h" file. For example:

#define CONFIG_MODEM_KEY_MAGIC "23"

means that modem will be initialized if and only if both keys 2, 3
are pressed. Note that the format of this string is similar to the
format of "key_magic*" environment variables described above.