1 /*
2  * (C) Copyright 2009 DENX Software Engineering
3  * Author: John Rigby <jrigby@gmail.com>
4  *
5  * Based on mx27/generic.c:
6  *  Copyright (c) 2008 Eric Jarrige <eric.jarrige@armadeus.org>
7  *  Copyright (c) 2009 Ilya Yanok <yanok@emcraft.com>
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License as
11  * published by the Free Software Foundation; either version 2 of
12  * the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22  * MA 02111-1307 USA
23  */
24 
25 #include <common.h>
26 #include <div64.h>
27 #include <netdev.h>
28 #include <asm/io.h>
29 #include <asm/arch/imx-regs.h>
30 #include <asm/arch/imx25-pinmux.h>
31 #include <asm/arch/clock.h>
32 #ifdef CONFIG_MXC_MMC
33 #include <asm/arch/mxcmmc.h>
34 #endif
35 
36 #ifdef CONFIG_FSL_ESDHC
37 DECLARE_GLOBAL_DATA_PTR;
38 #endif
39 
40 /*
41  *  get the system pll clock in Hz
42  *
43  *                  mfi + mfn / (mfd +1)
44  *  f = 2 * f_ref * --------------------
45  *                        pd + 1
46  */
47 static unsigned int imx_decode_pll(unsigned int pll, unsigned int f_ref)
48 {
49 	unsigned int mfi = (pll >> CCM_PLL_MFI_SHIFT)
50 	    & CCM_PLL_MFI_MASK;
51 	unsigned int mfn = (pll >> CCM_PLL_MFN_SHIFT)
52 	    & CCM_PLL_MFN_MASK;
53 	unsigned int mfd = (pll >> CCM_PLL_MFD_SHIFT)
54 	    & CCM_PLL_MFD_MASK;
55 	unsigned int pd = (pll >> CCM_PLL_PD_SHIFT)
56 	    & CCM_PLL_PD_MASK;
57 
58 	mfi = mfi <= 5 ? 5 : mfi;
59 
60 	return lldiv(2 * (u64) f_ref * (mfi * (mfd + 1) + mfn),
61 		      (mfd + 1) * (pd + 1));
62 }
63 
64 static ulong imx_get_mpllclk(void)
65 {
66 	struct ccm_regs *ccm = (struct ccm_regs *)IMX_CCM_BASE;
67 	ulong fref = 24000000;
68 
69 	return imx_decode_pll(readl(&ccm->mpctl), fref);
70 }
71 
72 ulong imx_get_armclk(void)
73 {
74 	struct ccm_regs *ccm = (struct ccm_regs *)IMX_CCM_BASE;
75 	ulong cctl = readl(&ccm->cctl);
76 	ulong fref = imx_get_mpllclk();
77 	ulong div;
78 
79 	if (cctl & CCM_CCTL_ARM_SRC)
80 		fref = lldiv((fref * 3), 4);
81 
82 	div = ((cctl >> CCM_CCTL_ARM_DIV_SHIFT)
83 	       & CCM_CCTL_ARM_DIV_MASK) + 1;
84 
85 	return lldiv(fref, div);
86 }
87 
88 ulong imx_get_ahbclk(void)
89 {
90 	struct ccm_regs *ccm = (struct ccm_regs *)IMX_CCM_BASE;
91 	ulong cctl = readl(&ccm->cctl);
92 	ulong fref = imx_get_armclk();
93 	ulong div;
94 
95 	div = ((cctl >> CCM_CCTL_AHB_DIV_SHIFT)
96 	       & CCM_CCTL_AHB_DIV_MASK) + 1;
97 
98 	return lldiv(fref, div);
99 }
100 
101 ulong imx_get_perclk(int clk)
102 {
103 	struct ccm_regs *ccm = (struct ccm_regs *)IMX_CCM_BASE;
104 	ulong fref = imx_get_ahbclk();
105 	ulong div;
106 
107 	div = readl(&ccm->pcdr[CCM_PERCLK_REG(clk)]);
108 	div = ((div >> CCM_PERCLK_SHIFT(clk)) & CCM_PERCLK_MASK) + 1;
109 
110 	return lldiv(fref, div);
111 }
112 
113 unsigned int mxc_get_clock(enum mxc_clock clk)
114 {
115 	if (clk >= MXC_CLK_NUM)
116 		return -1;
117 	switch (clk) {
118 	case MXC_ARM_CLK:
119 		return imx_get_armclk();
120 	case MXC_FEC_CLK:
121 		return imx_get_ahbclk();
122 	default:
123 		return imx_get_perclk(clk);
124 	}
125 }
126 
127 u32 get_cpu_rev(void)
128 {
129 	u32 srev;
130 	u32 system_rev = 0x25000;
131 
132 	/* read SREV register from IIM module */
133 	struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
134 	srev = readl(&iim->iim_srev);
135 
136 	switch (srev) {
137 	case 0x00:
138 		system_rev |= CHIP_REV_1_0;
139 		break;
140 	case 0x01:
141 		system_rev |= CHIP_REV_1_1;
142 		break;
143 	default:
144 		system_rev |= 0x8000;
145 		break;
146 	}
147 
148 	return system_rev;
149 }
150 
151 #if defined(CONFIG_DISPLAY_CPUINFO)
152 static char *get_reset_cause(void)
153 {
154 	/* read RCSR register from CCM module */
155 	struct ccm_regs *ccm =
156 		(struct ccm_regs *)IMX_CCM_BASE;
157 
158 	u32 cause = readl(&ccm->rcsr) & 0x0f;
159 
160 	if (cause == 0)
161 		return "POR";
162 	else if (cause == 1)
163 		return "RST";
164 	else if ((cause & 2) == 2)
165 		return "WDOG";
166 	else if ((cause & 4) == 4)
167 		return "SW RESET";
168 	else if ((cause & 8) == 8)
169 		return "JTAG";
170 	else
171 		return "unknown reset";
172 
173 }
174 
175 int print_cpuinfo(void)
176 {
177 	char buf[32];
178 	u32 cpurev = get_cpu_rev();
179 
180 	printf("CPU:   Freescale i.MX25 rev%d.%d%s at %s MHz\n",
181 		(cpurev & 0xF0) >> 4, (cpurev & 0x0F),
182 		((cpurev & 0x8000) ? " unknown" : ""),
183 		strmhz(buf, imx_get_armclk()));
184 	printf("Reset cause: %s\n\n", get_reset_cause());
185 	return 0;
186 }
187 #endif
188 
189 int cpu_eth_init(bd_t *bis)
190 {
191 #if defined(CONFIG_FEC_MXC)
192 	struct ccm_regs *ccm = (struct ccm_regs *)IMX_CCM_BASE;
193 	ulong val;
194 
195 	val = readl(&ccm->cgr0);
196 	val |= (1 << 23);
197 	writel(val, &ccm->cgr0);
198 	return fecmxc_initialize(bis);
199 #else
200 	return 0;
201 #endif
202 }
203 
204 int get_clocks(void)
205 {
206 #ifdef CONFIG_FSL_ESDHC
207 	gd->sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK);
208 #endif
209 	return 0;
210 }
211 
212 /*
213  * Initializes on-chip MMC controllers.
214  * to override, implement board_mmc_init()
215  */
216 int cpu_mmc_init(bd_t *bis)
217 {
218 #ifdef CONFIG_MXC_MMC
219 	return mxc_mmc_init(bis);
220 #else
221 	return 0;
222 #endif
223 }
224 
225 #ifdef CONFIG_MXC_UART
226 void mx25_uart1_init_pins(void)
227 {
228 	struct iomuxc_mux_ctl *muxctl;
229 	struct iomuxc_pad_ctl *padctl;
230 	u32 inpadctl;
231 	u32 outpadctl;
232 	u32 muxmode0;
233 
234 	muxctl = (struct iomuxc_mux_ctl *)IMX_IOPADMUX_BASE;
235 	padctl = (struct iomuxc_pad_ctl *)IMX_IOPADCTL_BASE;
236 	muxmode0 = MX25_PIN_MUX_MODE(0);
237 	/*
238 	 * set up input pins with hysteresis and 100K pull-ups
239 	 */
240 	inpadctl = MX25_PIN_PAD_CTL_HYS
241 	    | MX25_PIN_PAD_CTL_PKE
242 	    | MX25_PIN_PAD_CTL_PUE | MX25_PIN_PAD_CTL_100K_PU;
243 
244 	/*
245 	 * set up output pins with 100K pull-downs
246 	 * FIXME: need to revisit this
247 	 *      PUE is ignored if PKE is not set
248 	 *      so the right value here is likely
249 	 *        0x0 for no pull up/down
250 	 *      or
251 	 *        0xc0 for 100k pull down
252 	 */
253 	outpadctl = MX25_PIN_PAD_CTL_PUE | MX25_PIN_PAD_CTL_100K_PD;
254 
255 	/* UART1 */
256 	/* rxd */
257 	writel(muxmode0, &muxctl->pad_uart1_rxd);
258 	writel(inpadctl, &padctl->pad_uart1_rxd);
259 
260 	/* txd */
261 	writel(muxmode0, &muxctl->pad_uart1_txd);
262 	writel(outpadctl, &padctl->pad_uart1_txd);
263 
264 	/* rts */
265 	writel(muxmode0, &muxctl->pad_uart1_rts);
266 	writel(outpadctl, &padctl->pad_uart1_rts);
267 
268 	/* cts */
269 	writel(muxmode0, &muxctl->pad_uart1_cts);
270 	writel(inpadctl, &padctl->pad_uart1_cts);
271 }
272 #endif /* CONFIG_MXC_UART */
273 
274 #ifdef CONFIG_FEC_MXC
275 void mx25_fec_init_pins(void)
276 {
277 	struct iomuxc_mux_ctl *muxctl;
278 	struct iomuxc_pad_ctl *padctl;
279 	u32 inpadctl_100kpd;
280 	u32 inpadctl_22kpu;
281 	u32 outpadctl;
282 	u32 muxmode0;
283 
284 	muxctl = (struct iomuxc_mux_ctl *)IMX_IOPADMUX_BASE;
285 	padctl = (struct iomuxc_pad_ctl *)IMX_IOPADCTL_BASE;
286 	muxmode0 = MX25_PIN_MUX_MODE(0);
287 	inpadctl_100kpd = MX25_PIN_PAD_CTL_HYS
288 	    | MX25_PIN_PAD_CTL_PKE
289 	    | MX25_PIN_PAD_CTL_PUE | MX25_PIN_PAD_CTL_100K_PD;
290 	inpadctl_22kpu = MX25_PIN_PAD_CTL_HYS
291 	    | MX25_PIN_PAD_CTL_PKE
292 	    | MX25_PIN_PAD_CTL_PUE | MX25_PIN_PAD_CTL_22K_PU;
293 	/*
294 	 * set up output pins with 100K pull-downs
295 	 * FIXME: need to revisit this
296 	 *      PUE is ignored if PKE is not set
297 	 *      so the right value here is likely
298 	 *        0x0 for no pull
299 	 *      or
300 	 *        0xc0 for 100k pull down
301 	 */
302 	outpadctl = MX25_PIN_PAD_CTL_PUE | MX25_PIN_PAD_CTL_100K_PD;
303 
304 	/* FEC_TX_CLK */
305 	writel(muxmode0, &muxctl->pad_fec_tx_clk);
306 	writel(inpadctl_100kpd, &padctl->pad_fec_tx_clk);
307 
308 	/* FEC_RX_DV */
309 	writel(muxmode0, &muxctl->pad_fec_rx_dv);
310 	writel(inpadctl_100kpd, &padctl->pad_fec_rx_dv);
311 
312 	/* FEC_RDATA0 */
313 	writel(muxmode0, &muxctl->pad_fec_rdata0);
314 	writel(inpadctl_100kpd, &padctl->pad_fec_rdata0);
315 
316 	/* FEC_TDATA0 */
317 	writel(muxmode0, &muxctl->pad_fec_tdata0);
318 	writel(outpadctl, &padctl->pad_fec_tdata0);
319 
320 	/* FEC_TX_EN */
321 	writel(muxmode0, &muxctl->pad_fec_tx_en);
322 	writel(outpadctl, &padctl->pad_fec_tx_en);
323 
324 	/* FEC_MDC */
325 	writel(muxmode0, &muxctl->pad_fec_mdc);
326 	writel(outpadctl, &padctl->pad_fec_mdc);
327 
328 	/* FEC_MDIO */
329 	writel(muxmode0, &muxctl->pad_fec_mdio);
330 	writel(inpadctl_22kpu, &padctl->pad_fec_mdio);
331 
332 	/* FEC_RDATA1 */
333 	writel(muxmode0, &muxctl->pad_fec_rdata1);
334 	writel(inpadctl_100kpd, &padctl->pad_fec_rdata1);
335 
336 	/* FEC_TDATA1 */
337 	writel(muxmode0, &muxctl->pad_fec_tdata1);
338 	writel(outpadctl, &padctl->pad_fec_tdata1);
339 
340 }
341 
342 void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
343 {
344 	int i;
345 	struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
346 	struct fuse_bank *bank = &iim->bank[0];
347 	struct fuse_bank0_regs *fuse =
348 			(struct fuse_bank0_regs *)bank->fuse_regs;
349 
350 	for (i = 0; i < 6; i++)
351 		mac[i] = readl(&fuse->mac_addr[i]) & 0xff;
352 }
353 #endif /* CONFIG_FEC_MXC */
354