* [U-Boot-Users] [PATCH] tsec: Allow Ten Bit Interface address to be configurable
@ 2007-08-09 14:08 Joe Hamman
2007-08-09 20:14 ` Wolfgang Denk
0 siblings, 1 reply; 2+ messages in thread
From: Joe Hamman @ 2007-08-09 14:08 UTC (permalink / raw)
To: u-boot
Allow the address of the Ten Bit Interface (TBI) to be changed in the
event of a conflict with another device.
Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
diff -uprN -X ../dontdiff a/drivers/tsec.c b/drivers/tsec.c
--- a/drivers/tsec.c 2007-08-09 08:35:02.000000000 -0500
+++ b/drivers/tsec.c 2007-08-09 08:31:34.000000000 -0500
@@ -296,9 +296,9 @@ static int init_phy(struct eth_device *d
volatile tsec_t *regs = (volatile tsec_t *)(TSEC_BASE_ADDR);
/* Assign a Physical address to the TBI */
- regs->tbipa = TBIPA_VALUE;
+ regs->tbipa = CFG_TBIPA_VALUE;
regs = (volatile tsec_t *)(TSEC_BASE_ADDR + TSEC_SIZE);
- regs->tbipa = TBIPA_VALUE;
+ regs->tbipa = CFG_TBIPA_VALUE;
asm("sync");
/* Reset MII (due to new addresses) */
diff -uprN -X ../dontdiff a/drivers/tsec.h b/drivers/tsec.h
--- a/drivers/tsec.h 2007-08-09 08:35:02.000000000 -0500
+++ b/drivers/tsec.h 2007-08-09 08:31:04.000000000 -0500
@@ -70,7 +70,9 @@
#define miim_end -2
#define miim_read -1
-#define TBIPA_VALUE 0x1f
+#ifndef CFG_TBIPA_VALUE
+ #define CFG_TBIPA_VALUE 0x1f
+#endif
#define MIIMCFG_INIT_VALUE 0x00000003
#define MIIMCFG_RESET 0x80000000
^ permalink raw reply [flat|nested] 2+ messages in thread* [U-Boot-Users] [PATCH] tsec: Allow Ten Bit Interface address to be configurable
2007-08-09 14:08 [U-Boot-Users] [PATCH] tsec: Allow Ten Bit Interface address to be configurable Joe Hamman
@ 2007-08-09 20:14 ` Wolfgang Denk
0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Denk @ 2007-08-09 20:14 UTC (permalink / raw)
To: u-boot
In message <1186668498.6862.4.camel@server> you wrote:
> Allow the address of the Ten Bit Interface (TBI) to be changed in the
> event of a conflict with another device.
>
> Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
Added, thanks.
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
All these theories, diverse as they are, have two things in common:
they explain the observed facts, and they are completeley and utterly
wrong. - Terry Pratchett, _The Light Fantastic_
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-08-09 20:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-09 14:08 [U-Boot-Users] [PATCH] tsec: Allow Ten Bit Interface address to be configurable Joe Hamman
2007-08-09 20:14 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox