diff options
| author | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 | 
| commit | 8bde7f776c77b343aca29b8c7b58464d915ac245 (patch) | |
| tree | 20f1fd99975215e7c658454a15cdb4ed4694e2d4 /board/r360mpi/r360mpi.c | |
| parent | 993cad9364c6b87ae429d1ed1130d8153f6f027e (diff) | |
| download | olio-uboot-2014.01-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.xz olio-uboot-2014.01-8bde7f776c77b343aca29b8c7b58464d915ac245.zip | |
* Code cleanup:LABEL_2003_06_27_2340
  - remove trailing white space, trailing empty lines, C++ comments, etc.
  - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003:
  - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)
Diffstat (limited to 'board/r360mpi/r360mpi.c')
| -rw-r--r-- | board/r360mpi/r360mpi.c | 55 | 
1 files changed, 30 insertions, 25 deletions
| diff --git a/board/r360mpi/r360mpi.c b/board/r360mpi/r360mpi.c index 91e3234e2..ca556be2a 100644 --- a/board/r360mpi/r360mpi.c +++ b/board/r360mpi/r360mpi.c @@ -28,7 +28,6 @@  #include <commproc.h>  #include <command.h> -#include <cmd_bsp.h>  #include <malloc.h>  #include <linux/types.h> @@ -54,37 +53,37 @@  const uint sdram_table[]=  { -        /* single read. (offset 0 in upm RAM) */ -        0x1f07fc04, 0xeeaefc04, 0x11adfc04, 0xefbbbc00, -        0x1ff77c47, +	/* single read. (offset 0 in upm RAM) */ +	0x1f07fc04, 0xeeaefc04, 0x11adfc04, 0xefbbbc00, +	0x1ff77c47, -        /* MRS initialization (offset 5) */ +	/* MRS initialization (offset 5) */ -        0x1ff77c34, 0xefeabc34, 0x1fb57c35, +	0x1ff77c34, 0xefeabc34, 0x1fb57c35, -        /* burst read. (offset 8 in upm RAM) */ -        0x1f07fc04, 0xeeaefc04, 0x10adfc04, 0xf0affc00, -        0xf0affc00, 0xf1affc00, 0xefbbbc00, 0x1ff77c47, -        _not_used_, _not_used_, _not_used_, _not_used_, -        _not_used_, _not_used_, _not_used_, _not_used_, +	/* burst read. (offset 8 in upm RAM) */ +	0x1f07fc04, 0xeeaefc04, 0x10adfc04, 0xf0affc00, +	0xf0affc00, 0xf1affc00, 0xefbbbc00, 0x1ff77c47, +	_not_used_, _not_used_, _not_used_, _not_used_, +	_not_used_, _not_used_, _not_used_, _not_used_, -        /* single write. (offset 18 in upm RAM) */ -        0x1f27fc04, 0xeeaebc00, 0x01b93c04, 0x1ff77c47, -        _not_used_, _not_used_, _not_used_, _not_used_, +	/* single write. (offset 18 in upm RAM) */ +	0x1f27fc04, 0xeeaebc00, 0x01b93c04, 0x1ff77c47, +	_not_used_, _not_used_, _not_used_, _not_used_, -        /* burst write. (offset 20 in upm RAM) */ -        0x1f07fc04, 0xeeaebc00, 0x10ad7c00, 0xf0affc00, -        0xf0affc00, 0xe1bbbc04, 0x1ff77c47, _not_used_, -        _not_used_, _not_used_, _not_used_, _not_used_, -        _not_used_, _not_used_, _not_used_, _not_used_, +	/* burst write. (offset 20 in upm RAM) */ +	0x1f07fc04, 0xeeaebc00, 0x10ad7c00, 0xf0affc00, +	0xf0affc00, 0xe1bbbc04, 0x1ff77c47, _not_used_, +	_not_used_, _not_used_, _not_used_, _not_used_, +	_not_used_, _not_used_, _not_used_, _not_used_, -        /* refresh. (offset 30 in upm RAM) */ -        0x1ff5fc84, 0xfffffc04, 0xfffffc04, 0xfffffc04, -        0xfffffc84, 0xfffffc07, _not_used_, _not_used_, -        _not_used_, _not_used_, _not_used_, _not_used_, +	/* refresh. (offset 30 in upm RAM) */ +	0x1ff5fc84, 0xfffffc04, 0xfffffc04, 0xfffffc04, +	0xfffffc84, 0xfffffc07, _not_used_, _not_used_, +	_not_used_, _not_used_, _not_used_, _not_used_, -        /* exception. (offset 3c in upm RAM) */ -        0x7ffffc07, _not_used_, _not_used_, _not_used_ }; +	/* exception. (offset 3c in upm RAM) */ +	0x7ffffc07, _not_used_, _not_used_, _not_used_ };  /* ------------------------------------------------------------------------- */ @@ -443,3 +442,9 @@ int do_kbd (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  	setenv ("keybd", keybd_env);  	return 0;  } + +cmd_tbl_t U_BOOT_CMD(kbd) = MK_CMD_ENTRY( +	"kbd",	1,	1,	do_kbd, +	"kbd     - read keyboard status\n", +	NULL +); |