summaryrefslogtreecommitdiffstats
path: root/board/freescale/mpc8540ads/mpc8540ads.c
diff options
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2012-08-13 13:48:57 +0000
committerAndy Fleming <afleming@freescale.com>2012-08-23 10:24:18 -0500
commita2af6a7a84c32ee3c1500000d2a0238052a4f5e1 (patch)
tree09b865541631d9c81786dc3f2b0cad53bcd28af9 /board/freescale/mpc8540ads/mpc8540ads.c
parentae6beb24d7589f1b8b7aa3519afb3c7cdf8e66e5 (diff)
downloadblackbird-obmc-uboot-a2af6a7a84c32ee3c1500000d2a0238052a4f5e1.tar.gz
blackbird-obmc-uboot-a2af6a7a84c32ee3c1500000d2a0238052a4f5e1.zip
mpc85xx: use LCRR_DBYP define instead of raw constant
Using the raw value of 0x80000000 directly in the code can lead to "count the zeros" bugs like that fixed in commit 718e9d13b98 ("MPC85xxCDS: Fix missing LCRR_DBYP bits for 66-133MHz LBC") Change all existing raw values to use the symbolic value of LCRR_DBYP instead. Cc: Kumar Gala <galak@kernel.crashing.org> Cc: Scott Wood <scottwood@freescale.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/freescale/mpc8540ads/mpc8540ads.c')
-rw-r--r--board/freescale/mpc8540ads/mpc8540ads.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/freescale/mpc8540ads/mpc8540ads.c b/board/freescale/mpc8540ads/mpc8540ads.c
index c75585e28c..a275d3a074 100644
--- a/board/freescale/mpc8540ads/mpc8540ads.c
+++ b/board/freescale/mpc8540ads/mpc8540ads.c
@@ -87,10 +87,10 @@ local_bus_init(void)
lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
if (lbc_hz < 66) {
- lbc->lcrr = CONFIG_SYS_LBC_LCRR | 0x80000000; /* DLL Bypass */
+ lbc->lcrr = CONFIG_SYS_LBC_LCRR | LCRR_DBYP; /* DLL Bypass */
} else if (lbc_hz >= 133) {
- lbc->lcrr = CONFIG_SYS_LBC_LCRR & (~0x80000000); /* DLL Enabled */
+ lbc->lcrr = CONFIG_SYS_LBC_LCRR & (~LCRR_DBYP); /* DLL Enabled */
} else {
/*
@@ -105,7 +105,7 @@ local_bus_init(void)
lbc->lcrr = 0x10000004;
}
- lbc->lcrr = CONFIG_SYS_LBC_LCRR & (~0x80000000); /* DLL Enabled */
+ lbc->lcrr = CONFIG_SYS_LBC_LCRR & (~LCRR_DBYP); /* DLL Enabled */
udelay(200);
/*
OpenPOWER on IntegriCloud