From: Juergen Beisert <jbe@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 3/6] netX: adapt it to the current boot spec
Date: Fri, 20 Apr 2012 15:06:14 +0200 [thread overview]
Message-ID: <1334927177-13912-4-git-send-email-jbe@pengutronix.de> (raw)
In-Reply-To: <1334927177-13912-1-git-send-email-jbe@pengutronix.de>
Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
---
scripts/gen_netx_image.c | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/scripts/gen_netx_image.c b/scripts/gen_netx_image.c
index af279d5..5c2207c 100644
--- a/scripts/gen_netx_image.c
+++ b/scripts/gen_netx_image.c
@@ -9,12 +9,6 @@
#include <libgen.h>
#include <getopt.h>
-#define NETX_IDENTIFICATION 0x5854454E /* Valid signature 'N' 'E' 'T' 'X' */
-
-#define MAGICCOOKIE_8BIT 0xF8BEAF08 /* Cookie used for 8Bit Flashes */
-#define MAGICCOOKIE_16BIT 0xF8BEAF16 /* Cookie used for 16Bit Flashes */
-#define MAGICCOOKIE_32BIT 0xF8BEAF32 /* Cookie used for 32Bit Flashes */
-
struct netx_block_normal {
uint32_t sdram_general_ctrl; /* SDRam General control value */
uint32_t sdram_timing_ctrl; /* SDRam Timing control register value */
@@ -31,6 +25,9 @@ struct netx_block_expbus {
struct netx_bootblock {
uint32_t cookie; /* Cookie identifying bus width and valid bootblock */
+# define MAGICCOOKIE_8BIT 0xF8BEAF08 /* Cookie used for 8Bit Flashes */
+# define MAGICCOOKIE_16BIT 0xF8BEAF16 /* Cookie used for 16Bit Flashes */
+# define MAGICCOOKIE_32BIT 0xF8BEAF32 /* Cookie used for 32Bit Flashes */
union {
uint32_t mem_ctrl; /* Parallel/Serial Flash Mode for setting up timing parameters */
@@ -43,6 +40,7 @@ struct netx_bootblock {
uint32_t appl_size; /* size of application in DWORDs */
uint32_t appl_start_addr; /* Relocation address of application */
uint32_t signature; /* Bootblock signature ('NETX') */
+# define NETX_IDENTIFICATION 0x5854454E /* Valid signature 'N' 'E' 'T' 'X' */
union {
struct netx_block_normal normal;
@@ -50,7 +48,12 @@ struct netx_bootblock {
} config;
uint32_t misc_asic_ctrl; /* ASIC CTRL register value */
- uint32_t reserved[2];
+ uint32_t UserParameter; /* Serial number or user parameter */
+ uint32_t SourceType; /* 1 = parallel falsh at the SRAM bus */
+# define ST_PFLASH 1
+# define ST_SFLASH 2
+# define ST_SEEPROM 3
+
uint32_t boot_checksum; /* Bootblock checksum (complement of DWORD sum over bootblock) */
};
@@ -179,6 +182,7 @@ int main(int argc, char *argv[])
nb->signature = NETX_IDENTIFICATION;
nb->config.normal.sdram_general_ctrl = sdramctrl;
nb->config.normal.sdram_timing_ctrl = sdramtimctrl;
+ nb->SourceType = ST_PFLASH;
ofs = sizeof(struct netx_bootblock);
bytes = barebox_size;
--
1.7.10
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-04-20 13:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-20 13:06 [PATCH] some minor fixes for the netX arch Juergen Beisert
2012-04-20 13:06 ` [PATCH 1/6] netX: just a style fix Juergen Beisert
2012-04-20 13:06 ` [PATCH 2/6] netX: use correct sized pointers Juergen Beisert
2012-04-20 13:06 ` Juergen Beisert [this message]
2012-04-20 13:06 ` [PATCH 4/6] netX: add more common permissions Juergen Beisert
2012-04-20 13:06 ` [PATCH 5/6] netX: make the host interface macros compile Juergen Beisert
2012-04-20 13:06 ` [PATCH 6/6] netX: ignoring temporary netx build tool Juergen Beisert
2012-04-23 5:53 ` [PATCH] some minor fixes for the netX arch Sascha Hauer
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=1334927177-13912-4-git-send-email-jbe@pengutronix.de \
--to=jbe@pengutronix.de \
--cc=barebox@lists.infradead.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox