From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wolfgang Denk Date: Thu, 13 Mar 2008 13:17:31 +0100 Subject: [U-Boot-Users] [PATCH 5/8] SPARC: Added AMBA PnP Information listing command for LEON3 In-Reply-To: Your message of "Thu, 13 Mar 2008 10:39:25 +0100." <47D8F64D.6030903@gaisler.com> Message-ID: <20080313121731.80797247AF@gemini.denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de In message <47D8F64D.6030903@gaisler.com> you wrote: > This patch adds an U-Boot command, ambapp, which prints a summary > of AMBA Bus Plug & Play information. ... > diff --git a/common/Makefile b/common/Makefile > index a88d1ef..3d369ff 100644 > --- a/common/Makefile > +++ b/common/Makefile > @@ -91,6 +91,7 @@ COBJS-$(CONFIG_CMD_STRINGS) += cmd_strings.o > COBJS-$(CONFIG_CMD_TERMINAL) += cmd_terminal.o > COBJS-$(CONFIG_CMD_UNIVERSE) += cmd_universe.o > COBJS-$(CONFIG_CMD_USB) += cmd_usb.o > +COBJS-y += cmd_ambapp.o Please compile the code only for boards that enable it in the configuration. > diff --git a/common/cmd_ambapp.c b/common/cmd_ambapp.c > new file mode 100644 > index 0000000..5329a3a > --- /dev/null > +++ b/common/cmd_ambapp.c ... ... > +#include > +#include > + > +#if defined(CONFIG_CMD_AMBAPP) This should not be needed any more, then. > +#ifndef CONFIG_LEON3 > +#error Only LEON3 processors support the AMBA Plug&Play bus > +#endif > + > +#include > + > +DECLARE_GLOBAL_DATA_PTR; > + > +/* We put these variables into .data section so that they are > + * zero when entering the AMBA Plug & Play Section the first time. > + * BSS is not garantueed to be zero since BSS hasn't been cleared > + * the first times entering the AMBA functions. > + */ Um.... when would that be? Command code like this cannot be executed before relocation to RAM, and by then the BSS *is* zeroed. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de Good manners are the settled medium of social, as specie is of commercial, life; returns are equally expected for both. - Lord Chesterfield _Letters to his Son_, 25 December 1753