diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2016-02-04 11:07:48 +0100 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2016-03-09 10:44:16 -0600 |
commit | 501ea76687ef16a88a96cc9848e5d760f1c68e4e (patch) | |
tree | f4fa260e3230d7325c679cd9661556aaec5f41a4 /arch/powerpc | |
parent | b278268b63258c86e1df155c461df1259c9c6f05 (diff) | |
download | linux-stable-501ea76687ef16a88a96cc9848e5d760f1c68e4e.tar.gz linux-stable-501ea76687ef16a88a96cc9848e5d760f1c68e4e.tar.bz2 linux-stable-501ea76687ef16a88a96cc9848e5d760f1c68e4e.zip |
powerpc/885: set SDCR to 0x40
The MPC885 reference manual says that SDCR shall have value 0x40, but
most exemples set SDCR to 0x1
With 0x1 in SDCR, we observe TX underruns on SCC when using it in
QMC mode.
According the NXP technical support, this is a copy/paste error from
MPC860 reference manual, 0x40 being the only value supported
by the MPC885 HW.
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Scott Wood <oss@buserror.net>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/sysdev/cpm1.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/cpm1.c b/arch/powerpc/sysdev/cpm1.c index 5e6ff38ea69f..8ed65365be50 100644 --- a/arch/powerpc/sysdev/cpm1.c +++ b/arch/powerpc/sysdev/cpm1.c @@ -228,7 +228,10 @@ void __init cpm_reset(void) * Bit 25, FAM can also be set to use FEC aggressive mode (860T). */ siu_conf = immr_map(im_siu_conf); - out_be32(&siu_conf->sc_sdcr, 1); + if ((mfspr(SPRN_IMMR) & 0xffff) == 0x0900) /* MPC885 */ + out_be32(&siu_conf->sc_sdcr, 0x40); + else + out_be32(&siu_conf->sc_sdcr, 1); immr_unmap(siu_conf); cpm_muram_init(); |