2003-06-27 21:31:46 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2003
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Boot support
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2011-12-04 17:45:22 +00:00
|
|
|
#include <linux/compiler.h>
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2006-03-31 16:32:53 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-12-04 17:45:22 +00:00
|
|
|
__maybe_unused
|
|
|
|
static void print_num(const char *name, ulong value)
|
|
|
|
{
|
|
|
|
printf("%-12s= 0x%08lX\n", name, value);
|
|
|
|
}
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-12-06 13:37:17 +00:00
|
|
|
__maybe_unused
|
2011-12-04 17:45:22 +00:00
|
|
|
static void print_eth(int idx)
|
|
|
|
{
|
|
|
|
char name[10], *val;
|
|
|
|
if (idx)
|
|
|
|
sprintf(name, "eth%iaddr", idx);
|
|
|
|
else
|
|
|
|
strcpy(name, "ethaddr");
|
|
|
|
val = getenv(name);
|
|
|
|
if (!val)
|
|
|
|
val = "(not set)";
|
|
|
|
printf("%-12s= %s\n", name, val);
|
|
|
|
}
|
2009-02-11 23:50:10 +00:00
|
|
|
|
2011-12-04 17:45:22 +00:00
|
|
|
__maybe_unused
|
|
|
|
static void print_lnum(const char *name, u64 value)
|
|
|
|
{
|
|
|
|
printf("%-12s= 0x%.8llX\n", name, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
__maybe_unused
|
|
|
|
static void print_mhz(const char *name, unsigned long hz)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
|
|
|
|
printf("%-12s= %6s MHz\n", name, strmhz(buf, hz));
|
|
|
|
}
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2010-06-06 17:01:59 +00:00
|
|
|
#if defined(CONFIG_PPC)
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2003-06-27 21:31:46 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("bd address", (ulong)bd);
|
|
|
|
#endif
|
|
|
|
print_num("memstart", bd->bi_memstart);
|
|
|
|
print_lnum("memsize", bd->bi_memsize);
|
|
|
|
print_num("flashstart", bd->bi_flashstart);
|
|
|
|
print_num("flashsize", bd->bi_flashsize);
|
|
|
|
print_num("flashoffset", bd->bi_flashoffset);
|
|
|
|
print_num("sramstart", bd->bi_sramstart);
|
|
|
|
print_num("sramsize", bd->bi_sramsize);
|
|
|
|
#if defined(CONFIG_5xx) || defined(CONFIG_8xx) || \
|
|
|
|
defined(CONFIG_8260) || defined(CONFIG_E500)
|
|
|
|
print_num("immr_base", bd->bi_immr_base);
|
|
|
|
#endif
|
|
|
|
print_num("bootflags", bd->bi_bootflags);
|
|
|
|
#if defined(CONFIG_405CR) || defined(CONFIG_405EP) || \
|
|
|
|
defined(CONFIG_405GP) || \
|
|
|
|
defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
|
|
|
|
defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
|
|
|
|
defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \
|
|
|
|
defined(CONFIG_XILINX_405)
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("procfreq", bd->bi_procfreq);
|
|
|
|
print_mhz("plb_busfreq", bd->bi_plb_busfreq);
|
2011-04-27 16:28:35 +00:00
|
|
|
#if defined(CONFIG_405EP) || defined(CONFIG_405GP) || \
|
|
|
|
defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \
|
|
|
|
defined(CONFIG_440GR) || defined(CONFIG_440GRX) || \
|
|
|
|
defined(CONFIG_440SPE) || defined(CONFIG_XILINX_405)
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("pci_busfreq", bd->bi_pci_busfreq);
|
2003-06-27 21:31:46 +00:00
|
|
|
#endif
|
2008-06-24 07:54:09 +00:00
|
|
|
#else /* ! CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
|
2005-07-23 15:37:35 +00:00
|
|
|
#if defined(CONFIG_CPM2)
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("vco", bd->bi_vco);
|
|
|
|
print_mhz("sccfreq", bd->bi_sccfreq);
|
|
|
|
print_mhz("brgfreq", bd->bi_brgfreq);
|
2003-06-27 21:31:46 +00:00
|
|
|
#endif
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("intfreq", bd->bi_intfreq);
|
2005-07-23 15:37:35 +00:00
|
|
|
#if defined(CONFIG_CPM2)
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("cpmfreq", bd->bi_cpmfreq);
|
2003-06-27 21:31:46 +00:00
|
|
|
#endif
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("busfreq", bd->bi_busfreq);
|
2008-06-24 07:54:09 +00:00
|
|
|
#endif /* CONFIG_405GP, CONFIG_405CR, CONFIG_405EP, CONFIG_XILINX_405, CONFIG_440EP CONFIG_440GR */
|
2004-10-28 00:09:35 +00:00
|
|
|
#if defined(CONFIG_MPC8220)
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("inpfreq", bd->bi_inpfreq);
|
|
|
|
print_mhz("flbfreq", bd->bi_flbfreq);
|
|
|
|
print_mhz("pcifreq", bd->bi_pcifreq);
|
|
|
|
print_mhz("vcofreq", bd->bi_vcofreq);
|
|
|
|
print_mhz("pevfreq", bd->bi_pevfreq);
|
2004-10-28 00:09:35 +00:00
|
|
|
#endif
|
2004-10-10 21:21:55 +00:00
|
|
|
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
2004-12-31 09:32:47 +00:00
|
|
|
#if defined(CONFIG_HAS_ETH1)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(1);
|
2004-10-10 21:21:55 +00:00
|
|
|
#endif
|
2004-12-31 09:32:47 +00:00
|
|
|
#if defined(CONFIG_HAS_ETH2)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(2);
|
2003-10-15 23:53:47 +00:00
|
|
|
#endif
|
2004-12-31 09:32:47 +00:00
|
|
|
#if defined(CONFIG_HAS_ETH3)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(3);
|
2004-10-10 21:21:55 +00:00
|
|
|
#endif
|
2008-09-29 22:28:23 +00:00
|
|
|
#if defined(CONFIG_HAS_ETH4)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(4);
|
2008-09-29 22:28:23 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_HAS_ETH5)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(5);
|
2008-09-29 22:28:23 +00:00
|
|
|
#endif
|
|
|
|
|
2003-06-27 21:31:46 +00:00
|
|
|
#ifdef CONFIG_HERMES
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("ethspeed", bd->bi_ethspeed);
|
2003-06-27 21:31:46 +00:00
|
|
|
#endif
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("IP addr = %pI4\n", &bd->bi_ip_addr);
|
|
|
|
printf("baudrate = %6ld bps\n", bd->bi_baudrate);
|
|
|
|
print_num("relocaddr", gd->relocaddr);
|
2003-06-27 21:31:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-06 17:01:59 +00:00
|
|
|
#elif defined(CONFIG_NIOS2)
|
2004-10-10 21:27:30 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2004-10-10 21:27:30 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("mem start", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("mem size", (u64)bd->bi_memsize);
|
|
|
|
print_num("flash start", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flash size", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flash offset", (ulong)bd->bi_flashoffset);
|
2004-10-10 21:27:30 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SYS_SRAM_BASE)
|
2004-10-10 21:27:30 +00:00
|
|
|
print_num ("sram start", (ulong)bd->bi_sramstart);
|
|
|
|
print_num ("sram size", (ulong)bd->bi_sramsize);
|
|
|
|
#endif
|
|
|
|
|
2007-07-10 16:02:44 +00:00
|
|
|
#if defined(CONFIG_CMD_NET)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
2004-10-10 21:27:30 +00:00
|
|
|
#endif
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("baudrate = %ld bps\n", bd->bi_baudrate);
|
2004-10-10 21:27:30 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2010-06-06 17:01:59 +00:00
|
|
|
|
|
|
|
#elif defined(CONFIG_MICROBLAZE)
|
2007-03-11 12:48:24 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2007-03-11 12:48:24 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("mem start ", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("mem size ", (u64)bd->bi_memsize);
|
|
|
|
print_num("flash start ", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flash size ", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flash offset ", (ulong)bd->bi_flashoffset);
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SYS_SRAM_BASE)
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("sram start ", (ulong)bd->bi_sramstart);
|
|
|
|
print_num("sram size ", (ulong)bd->bi_sramsize);
|
2007-03-11 12:48:24 +00:00
|
|
|
#endif
|
2007-07-10 16:02:44 +00:00
|
|
|
#if defined(CONFIG_CMD_NET)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
2007-03-11 12:48:24 +00:00
|
|
|
#endif
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("baudrate = %ld bps\n", (ulong)bd->bi_baudrate);
|
2007-03-11 12:48:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2003-10-08 23:26:14 +00:00
|
|
|
|
2010-06-06 17:01:59 +00:00
|
|
|
#elif defined(CONFIG_SPARC)
|
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
|
2008-03-26 21:36:03 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
print_num("bd address ", (ulong) bd);
|
|
|
|
#endif
|
|
|
|
print_num("memstart ", bd->bi_memstart);
|
2008-06-10 01:37:16 +00:00
|
|
|
print_lnum("memsize ", bd->bi_memsize);
|
2008-03-26 21:36:03 +00:00
|
|
|
print_num("flashstart ", bd->bi_flashstart);
|
2008-10-16 13:01:15 +00:00
|
|
|
print_num("CONFIG_SYS_MONITOR_BASE ", CONFIG_SYS_MONITOR_BASE);
|
2008-09-10 20:48:06 +00:00
|
|
|
print_num("CONFIG_ENV_ADDR ", CONFIG_ENV_ADDR);
|
2008-10-16 13:01:15 +00:00
|
|
|
printf("CONFIG_SYS_RELOC_MONITOR_BASE = 0x%lx (%d)\n", CONFIG_SYS_RELOC_MONITOR_BASE,
|
|
|
|
CONFIG_SYS_MONITOR_LEN);
|
|
|
|
printf("CONFIG_SYS_MALLOC_BASE = 0x%lx (%d)\n", CONFIG_SYS_MALLOC_BASE,
|
|
|
|
CONFIG_SYS_MALLOC_LEN);
|
|
|
|
printf("CONFIG_SYS_INIT_SP_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_INIT_SP_OFFSET,
|
|
|
|
CONFIG_SYS_STACK_SIZE);
|
|
|
|
printf("CONFIG_SYS_PROM_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_PROM_OFFSET,
|
|
|
|
CONFIG_SYS_PROM_SIZE);
|
|
|
|
printf("CONFIG_SYS_GBL_DATA_OFFSET = 0x%lx (%d)\n", CONFIG_SYS_GBL_DATA_OFFSET,
|
2010-10-26 12:34:52 +00:00
|
|
|
GENERATED_GBL_DATA_SIZE);
|
2008-03-26 21:36:03 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_NET)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
2009-02-17 05:00:53 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
2008-03-26 21:36:03 +00:00
|
|
|
#endif
|
2009-02-17 05:00:53 +00:00
|
|
|
printf("baudrate = %6ld bps\n", bd->bi_baudrate);
|
2008-03-26 21:36:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-06 17:01:59 +00:00
|
|
|
#elif defined(CONFIG_M68K)
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
2007-08-16 20:05:11 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("memstart", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("memsize", (u64)bd->bi_memsize);
|
|
|
|
print_num("flashstart", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flashsize", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flashoffset", (ulong)bd->bi_flashoffset);
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SYS_INIT_RAM_ADDR)
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("sramstart", (ulong)bd->bi_sramstart);
|
|
|
|
print_num("sramsize", (ulong)bd->bi_sramsize);
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined(CONFIG_SYS_MBAR)
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("mbar", bd->bi_mbar_base);
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
#endif
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("cpufreq", bd->bi_intfreq);
|
|
|
|
print_mhz("busfreq", bd->bi_busfreq);
|
2007-08-16 20:05:11 +00:00
|
|
|
#ifdef CONFIG_PCI
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("pcifreq", bd->bi_pcifreq);
|
2007-08-16 20:05:11 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_EXTRA_CLOCK
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("flbfreq", bd->bi_flbfreq);
|
|
|
|
print_mhz("inpfreq", bd->bi_inpfreq);
|
|
|
|
print_mhz("vcofreq", bd->bi_vcofreq);
|
2007-08-16 20:05:11 +00:00
|
|
|
#endif
|
2007-08-18 12:37:52 +00:00
|
|
|
#if defined(CONFIG_CMD_NET)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
#if defined(CONFIG_HAS_ETH1)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(1);
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_HAS_ETH2)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(2);
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_HAS_ETH3)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(3);
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
#endif
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
2007-08-18 12:37:52 +00:00
|
|
|
#endif
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("baudrate = %ld bps\n", bd->bi_baudrate);
|
Added M5329AFEE and M5329BFEE Platforms
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
2007-06-18 18:50:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-05 00:26:55 +00:00
|
|
|
#elif defined(CONFIG_BLACKFIN)
|
2010-06-06 17:01:59 +00:00
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2008-02-05 00:26:55 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
|
|
|
printf("U-Boot = %s\n", bd->bi_r_version);
|
|
|
|
printf("CPU = %s\n", bd->bi_cpu);
|
|
|
|
printf("Board = %s\n", bd->bi_board_name);
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("VCO", bd->bi_vco);
|
|
|
|
print_mhz("CCLK", bd->bi_cclk);
|
|
|
|
print_mhz("SCLK", bd->bi_sclk);
|
2008-02-05 00:26:55 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("boot_params", (ulong)bd->bi_boot_params);
|
|
|
|
print_num("memstart", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("memsize", (u64)bd->bi_memsize);
|
|
|
|
print_num("flashstart", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flashsize", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flashoffset", (ulong)bd->bi_flashoffset);
|
2008-02-05 00:26:55 +00:00
|
|
|
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
2009-02-17 05:00:53 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
|
|
|
printf("baudrate = %d bps\n", bd->bi_baudrate);
|
2008-02-05 00:26:55 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-06 17:01:59 +00:00
|
|
|
#elif defined(CONFIG_MIPS)
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2003-06-27 21:31:46 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("boot_params", (ulong)bd->bi_boot_params);
|
|
|
|
print_num("memstart", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("memsize", (u64)bd->bi_memsize);
|
|
|
|
print_num("flashstart", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flashsize", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flashoffset", (ulong)bd->bi_flashoffset);
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
|
|
|
printf("baudrate = %d bps\n", bd->bi_baudrate);
|
2003-06-27 21:31:46 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-06 17:01:59 +00:00
|
|
|
#elif defined(CONFIG_AVR32)
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2010-06-06 17:01:59 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("boot_params", (ulong)bd->bi_boot_params);
|
|
|
|
print_num("memstart", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("memsize", (u64)bd->bi_memsize);
|
|
|
|
print_num("flashstart", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flashsize", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flashoffset", (ulong)bd->bi_flashoffset);
|
2010-06-06 17:01:59 +00:00
|
|
|
|
|
|
|
print_eth(0);
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
|
|
|
printf("baudrate = %lu bps\n", bd->bi_baudrate);
|
2010-06-06 17:01:59 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(CONFIG_ARM)
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2003-06-27 21:31:46 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("arch_number", bd->bi_arch_number);
|
|
|
|
print_num("boot_params", (ulong)bd->bi_boot_params);
|
2003-06-27 21:31:46 +00:00
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
|
2003-06-27 21:31:46 +00:00
|
|
|
print_num("DRAM bank", i);
|
|
|
|
print_num("-> start", bd->bi_dram[i].start);
|
|
|
|
print_num("-> size", bd->bi_dram[i].size);
|
|
|
|
}
|
|
|
|
|
2007-12-19 00:03:07 +00:00
|
|
|
#if defined(CONFIG_CMD_NET)
|
2009-02-11 23:50:10 +00:00
|
|
|
print_eth(0);
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
2007-12-19 00:03:07 +00:00
|
|
|
#endif
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("baudrate = %d bps\n", bd->bi_baudrate);
|
2011-06-16 23:30:48 +00:00
|
|
|
#if !(defined(CONFIG_SYS_ICACHE_OFF) && defined(CONFIG_SYS_DCACHE_OFF))
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("TLB addr", gd->tlb_addr);
|
2010-09-17 11:10:39 +00:00
|
|
|
#endif
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("relocaddr", gd->relocaddr);
|
|
|
|
print_num("reloc off", gd->reloc_off);
|
|
|
|
print_num("irq_sp", gd->irq_sp); /* irq stack pointer */
|
|
|
|
print_num("sp start ", gd->start_addr_sp);
|
|
|
|
print_num("FB base ", gd->fb_base);
|
2003-06-27 21:31:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-22 07:05:32 +00:00
|
|
|
#elif defined(CONFIG_SH)
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2010-07-22 07:05:32 +00:00
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("mem start ", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("mem size ", (u64)bd->bi_memsize);
|
|
|
|
print_num("flash start ", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flash size ", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flash offset ", (ulong)bd->bi_flashoffset);
|
2010-07-22 07:05:32 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_NET)
|
|
|
|
print_eth(0);
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
2010-07-22 07:05:32 +00:00
|
|
|
#endif
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("baudrate = %ld bps\n", (ulong)bd->bi_baudrate);
|
2010-07-22 07:05:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-22 06:25:58 +00:00
|
|
|
#elif defined(CONFIG_X86)
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2010-08-22 06:25:58 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
2011-04-27 16:28:35 +00:00
|
|
|
print_num("boot_params", (ulong)bd->bi_boot_params);
|
|
|
|
print_num("bi_memstart", bd->bi_memstart);
|
|
|
|
print_num("bi_memsize", bd->bi_memsize);
|
|
|
|
print_num("bi_flashstart", bd->bi_flashstart);
|
|
|
|
print_num("bi_flashsize", bd->bi_flashsize);
|
|
|
|
print_num("bi_flashoffset", bd->bi_flashoffset);
|
|
|
|
print_num("bi_sramstart", bd->bi_sramstart);
|
|
|
|
print_num("bi_sramsize", bd->bi_sramsize);
|
|
|
|
print_num("bi_bootflags", bd->bi_bootflags);
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("cpufreq", bd->bi_intfreq);
|
|
|
|
print_mhz("busfreq", bd->bi_busfreq);
|
2011-04-27 16:28:35 +00:00
|
|
|
|
|
|
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
|
2010-08-22 06:25:58 +00:00
|
|
|
print_num("DRAM bank", i);
|
|
|
|
print_num("-> start", bd->bi_dram[i].start);
|
|
|
|
print_num("-> size", bd->bi_dram[i].size);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_NET)
|
|
|
|
print_eth(0);
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
2011-10-05 22:08:07 +00:00
|
|
|
print_mhz("ethspeed", bd->bi_ethspeed);
|
2010-08-22 06:25:58 +00:00
|
|
|
#endif
|
2011-04-27 16:28:35 +00:00
|
|
|
printf("baudrate = %d bps\n", bd->bi_baudrate);
|
2010-08-22 06:25:58 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-17 06:48:47 +00:00
|
|
|
#elif defined(CONFIG_SANDBOX)
|
|
|
|
|
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
|
|
|
print_num("boot_params", (ulong)bd->bi_boot_params);
|
|
|
|
|
|
|
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
|
|
|
|
print_num("DRAM bank", i);
|
|
|
|
print_num("-> start", bd->bi_dram[i].start);
|
|
|
|
print_num("-> size", bd->bi_dram[i].size);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_NET)
|
|
|
|
print_eth(0);
|
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
|
|
|
#endif
|
|
|
|
print_num("FB base ", gd->fb_base);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-10-19 20:41:09 +00:00
|
|
|
#elif defined(CONFIG_NDS32)
|
|
|
|
|
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
|
|
|
print_num("arch_number", bd->bi_arch_number);
|
|
|
|
print_num("boot_params", (ulong)bd->bi_boot_params);
|
|
|
|
|
|
|
|
for (i = 0; i < CONFIG_NR_DRAM_BANKS; ++i) {
|
|
|
|
print_num("DRAM bank", i);
|
|
|
|
print_num("-> start", bd->bi_dram[i].start);
|
|
|
|
print_num("-> size", bd->bi_dram[i].size);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_NET)
|
|
|
|
print_eth(0);
|
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
|
|
|
#endif
|
|
|
|
printf("baudrate = %d bps\n", bd->bi_baudrate);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-18 19:21:34 +00:00
|
|
|
#elif defined(CONFIG_OPENRISC)
|
|
|
|
|
|
|
|
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
bd_t *bd = gd->bd;
|
|
|
|
|
|
|
|
print_num("mem start", (ulong)bd->bi_memstart);
|
|
|
|
print_lnum("mem size", (u64)bd->bi_memsize);
|
|
|
|
print_num("flash start", (ulong)bd->bi_flashstart);
|
|
|
|
print_num("flash size", (ulong)bd->bi_flashsize);
|
|
|
|
print_num("flash offset", (ulong)bd->bi_flashoffset);
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_NET)
|
|
|
|
print_eth(0);
|
|
|
|
printf("ip_addr = %pI4\n", &bd->bi_ip_addr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
printf("baudrate = %ld bps\n", bd->bi_baudrate);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-06 17:01:59 +00:00
|
|
|
#else
|
|
|
|
#error "a case for this architecture does not exist!"
|
|
|
|
#endif
|
2003-06-27 21:31:46 +00:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
|
|
|
bdinfo, 1, 1, do_bdinfo,
|
2009-01-28 00:03:12 +00:00
|
|
|
"print Board Info structure",
|
2009-05-24 15:06:54 +00:00
|
|
|
""
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|