[U-Boot-Users] [PATCH 3/4] mpc83xx: Add config of eTSEC emergency priority in SPCR

The TSEC emergency priority definition of 831x/837x is different than the definition of 834x in SPCR register.
Add the other config of TSEC emergency priority into cpu_init.c
Signed-off-by: Dave Liu daveliu@freescale.com --- cpu/mpc83xx/cpu_init.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/cpu/mpc83xx/cpu_init.c b/cpu/mpc83xx/cpu_init.c index 2b92be0..18d5a76 100644 --- a/cpu/mpc83xx/cpu_init.c +++ b/cpu/mpc83xx/cpu_init.c @@ -73,6 +73,11 @@ void cpu_init_f (volatile immap_t * im) (CFG_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT); #endif
+#ifdef CFG_SPCR_TSECEP + /* eTSEC Emergency priority */ + im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSECEP) | (CFG_SPCR_TSECEP << SPCR_TSECEP_SHIFT); +#endif + #ifdef CFG_SPCR_TSEC1EP /* TSEC1 Emergency priority */ im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSEC1EP) | (CFG_SPCR_TSEC1EP << SPCR_TSEC1EP_SHIFT);

On Fri, 11 Jan 2008 18:46:50 +0800 Dave Liu r63238@freescale.com wrote:
The TSEC emergency priority definition of 831x/837x is different than the definition of 834x in SPCR register.
Add the other config of TSEC emergency priority into cpu_init.c
Signed-off-by: Dave Liu daveliu@freescale.com
applied.
Thanks,
Kim
participants (2)
-
Dave Liu
-
Kim Phillips