From: Daniel Hellstrom <daniel@gaisler.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [PATCH 5/8] SPARC: Added AMBA PnP Information listing command for LEON3
Date: Thu, 13 Mar 2008 13:53:42 +0100 [thread overview]
Message-ID: <47D923D6.10605@gaisler.com> (raw)
In-Reply-To: <20080313121731.80797247AF@gemini.denx.de>
Wolfgang Denk wrote:
>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.
>
>
Ok.
>
>
>>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 <common.h>
>>+#include <command.h>
>>+
>>+#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 <ambapp.h>
>>+
>>+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.
>
>
>
One part of this patch was part of the LEON2&3 patch, I missed that.
cpu/leon3/ambapp.c:31,73,220
The thing is that the ambapp_apb_print variable is used when executing
in rom before BSS has been cleared (cpu/leon3/ambapp.c:74 called from
cpu/leon3/cpu_init.c:92 used to find the IRQ contoller). This is the
case only because the ambapp command extends the standard leon3 scanning
functions with a callback that is responsible to print what is found
during scanning. The ambapp_apb_print controls if the callback function
is called or not. I choose to implement it like this for smaller size,
else I would have two scanning routines doing almost the exact same thing.
Best Regards,
Daniel Hellstrom
>Best regards,
>
>Wolfgang Denk
>
>
>
next prev parent reply other threads:[~2008-03-13 12:53 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-13 9:39 [U-Boot-Users] [PATCH 5/8] SPARC: Added AMBA PnP Information listing command for LEON3 Daniel Hellstrom
2008-03-13 12:17 ` Wolfgang Denk
2008-03-13 12:53 ` Daniel Hellstrom [this message]
2008-03-13 12:29 ` Jean-Christophe PLAGNIOL-VILLARD
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=47D923D6.10605@gaisler.com \
--to=daniel@gaisler.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.