2 * arch/blackfin/mach-common/clocks-init.c - reprogram clocks / memory
4 * Copyright 2004-2008 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #include <linux/linkage.h>
10 #include <linux/init.h>
11 #include <asm/blackfin.h>
14 #include <asm/clocks.h>
15 #include <asm/mem_init.h>
18 #define SDGCTL_WIDTH (1 << 31) /* SDRAM external data path width */
20 (((CONFIG_VCO_MULT & 63) << 9) | CLKIN_HALF | \
21 (PLL_BYPASS << 8) | (ANOMALY_05000305 ? 0 : 0x8000))
23 __attribute__((l1_text
))
24 static void do_sync(void)
26 __builtin_bfin_ssync();
29 __attribute__((l1_text
))
30 void init_clocks(void)
32 /* Kill any active DMAs as they may trigger external memory accesses
33 * in the middle of reprogramming things, and that'll screw us up.
34 * For example, any automatic DMAs left by U-Boot for splash screens.
37 for (i
= 0; i
< MAX_DMA_CHANNELS
; ++i
) {
38 struct dma_register
*dma
= dma_io_base_addr
[i
];
45 bfin_write_SIC_IWR0(IWR_ENABLE(0));
47 /* BF52x system reset does not properly reset SIC_IWR1 which
48 * will screw up the bootrom as it relies on MDMA0/1 waking it
49 * up from IDLE instructions. See this report for more info:
50 * http://blackfin.uclinux.org/gf/tracker/4323
53 bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11));
55 bfin_write_SIC_IWR1(IWR_DISABLE_ALL
);
58 bfin_write_SIC_IWR2(IWR_DISABLE_ALL
);
61 bfin_write_SIC_IWR(IWR_ENABLE(0));
65 bfin_write_EBIU_SDGCTL(bfin_read_EBIU_SDGCTL() | SRFS
);
70 bfin_write16(VR_CTL
, bfin_read_VR_CTL() | CLKBUFOE
);
72 __asm__
__volatile__("IDLE;");
74 bfin_write_PLL_LOCKCNT(0x300);
76 /* We always write PLL_CTL thus avoiding Anomaly 05000242 */
77 bfin_write16(PLL_CTL
, PLL_CTL_VAL
);
78 __asm__
__volatile__("IDLE;");
79 bfin_write_PLL_DIV(CONFIG_CCLK_ACT_DIV
| CONFIG_SCLK_DIV
);
81 bfin_write_EBIU_SDRRC(mem_SDRRC
);
82 bfin_write_EBIU_SDGCTL((bfin_read_EBIU_SDGCTL() & SDGCTL_WIDTH
) | mem_SDGCTL
);
84 bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() & ~(SRREQ
));
86 bfin_write_EBIU_RSTCTL(bfin_read_EBIU_RSTCTL() | 0x1);
87 bfin_write_EBIU_DDRCTL0(mem_DDRCTL0
);
88 bfin_write_EBIU_DDRCTL1(mem_DDRCTL1
);
89 bfin_write_EBIU_DDRCTL2(mem_DDRCTL2
);
90 #ifdef CONFIG_MEM_EBIU_DDRQUE
91 bfin_write_EBIU_DDRQUE(CONFIG_MEM_EBIU_DDRQUE
);