From: Juan Antonio Garcia Redondo <juan-antonio.garcia@nabla-designs.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] reading ethaddr from env
Date: Wed, 23 Feb 2005 11:01:42 +0100 [thread overview]
Message-ID: <20050223100142.GA3003@nabla101> (raw)
Hello all,
I'm porting u-boot to a custom board with pxa255. I have a problem that I'm
not be able to solve.
When u-boot starts and try to read the ethaddr, (lib_arm/board.c at 296),
the parameter tmp used in the function getenv_r is pointing to the gd->bd
structure, so the execution of this function corrupts the data stored in
it.
I've found a "dirty" workaround of this problem rising the size of tmp
buffer:
The code in lib_arm/board.c
/* IP Address */
gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
/* MAC Address */
{
int i;
ulong reg;
char *s, *e;
/* uchar tmp[64]; */
uchar tmp[128];
i = getenv_r ("ethaddr", tmp, sizeof (tmp));
printf("ethaddr %s[%d]\n", tmp, i);
s = (i > 0) ? tmp : NULL;
for (reg = 0; reg < 6; ++reg) {
gd->bd->bi_enetaddr[reg] = s ? simple_strtoul (s,
&e, 16) : 0;
if (s)
s = (*e) ? e + 1 : e;
}
}
The output of gdb before execute the getenv_r(with tmp[64]):
(gdb) print *gd
$2 = {bd = 0xa00bffa0, flags = 0, baudrate = 115200, have_console = 1,
reloc_off = 0, env_addr = 2685141004, env_valid = 1,
fb_base = 0, jt = 0x0}
(gdb) n
(gdb) print &tmp[0]
$3 = (uchar *) 0xa00bffa4 ""
(gdb) s
getenv_r (name=0xa0114bb0 "ethaddr", buf=0xa00bffa4 "??\002?", len=64) at
cmd_nvedit.c:512
As you can see the tmp buffer is pointing to the gd->bd plus 4.
My compiler:
arm-linux-gcc -v
Reading specs from
/home/jgarcia/PXA2XX/ELDK/eldk_work/usr/bin/../lib/gcc-lib/arm-linux/3.3.3/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--disable-checking --with-system-zlib --enable-__cxa_atexit --with-newlib
--enable-languages=c,c++ --disable-libgcj --host=i386-redhat-linux
--target=arm-linux
Thread model: posix
gcc version 3.3.3 (DENX ELDK 3.1 3.3.3-8)
Any hints ?
Regards,
Juan Antonio
next reply other threads:[~2005-02-23 10:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-02-23 10:01 Juan Antonio Garcia Redondo [this message]
2005-02-24 22:49 ` [U-Boot-Users] reading ethaddr from env Wolfgang Denk
2005-02-25 10:44 ` Juan Antonio Garcia Redondo
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=20050223100142.GA3003@nabla101 \
--to=juan-antonio.garcia@nabla-designs.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.