|
@@ -228,7 +228,10 @@ void __init cpm_reset(void)
|
|
* Bit 25, FAM can also be set to use FEC aggressive mode (860T).
|
|
* Bit 25, FAM can also be set to use FEC aggressive mode (860T).
|
|
*/
|
|
*/
|
|
siu_conf = immr_map(im_siu_conf);
|
|
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);
|
|
immr_unmap(siu_conf);
|
|
|
|
|
|
cpm_muram_init();
|
|
cpm_muram_init();
|