blob: 193ba1240fb3e04b37e21aacf927c7ffd1900fad [file] [log] [blame]
Jason Liudec11122011-11-25 00:18:02 +00001/*
2 * (C) Copyright 2007
3 * Sascha Hauer, Pengutronix
4 *
5 * (C) Copyright 2009 Freescale Semiconductor, Inc.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <asm/errno.h>
28#include <asm/io.h>
29#include <asm/arch/imx-regs.h>
30#include <asm/arch/clock.h>
31#include <asm/arch/sys_proto.h>
Troy Kisky0ca618c2012-08-15 10:31:20 +000032#include <asm/imx-common/boot_mode.h>
Fabio Estevam48e65b02013-02-07 06:45:23 +000033#include <stdbool.h>
Jason Liudec11122011-11-25 00:18:02 +000034
Troy Kisky58394932012-10-23 10:57:46 +000035struct scu_regs {
36 u32 ctrl;
37 u32 config;
38 u32 status;
39 u32 invalidate;
40 u32 fpga_rev;
41};
42
Jason Liudec11122011-11-25 00:18:02 +000043u32 get_cpu_rev(void)
44{
Fabio Estevam46e97332012-03-20 04:21:45 +000045 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
Troy Kisky58394932012-10-23 10:57:46 +000046 u32 reg = readl(&anatop->digprog_sololite);
47 u32 type = ((reg >> 16) & 0xff);
Fabio Estevam46e97332012-03-20 04:21:45 +000048
Troy Kisky58394932012-10-23 10:57:46 +000049 if (type != MXC_CPU_MX6SL) {
50 reg = readl(&anatop->digprog);
51 type = ((reg >> 16) & 0xff);
52 if (type == MXC_CPU_MX6DL) {
53 struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
54 u32 cfg = readl(&scu->config) & 3;
Jason Liudec11122011-11-25 00:18:02 +000055
Troy Kisky58394932012-10-23 10:57:46 +000056 if (!cfg)
57 type = MXC_CPU_MX6SOLO;
58 }
59 }
60 reg &= 0xff; /* mx6 silicon revision */
61 return (type << 12) | (reg + 0x10);
Jason Liudec11122011-11-25 00:18:02 +000062}
63
Jason Liudec11122011-11-25 00:18:02 +000064void init_aips(void)
65{
Jason Liubb25e072012-01-10 00:52:59 +000066 struct aipstz_regs *aips1, *aips2;
67
68 aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
69 aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
Jason Liudec11122011-11-25 00:18:02 +000070
71 /*
72 * Set all MPROTx to be non-bufferable, trusted for R/W,
73 * not forced to user-mode.
74 */
Jason Liubb25e072012-01-10 00:52:59 +000075 writel(0x77777777, &aips1->mprot0);
76 writel(0x77777777, &aips1->mprot1);
77 writel(0x77777777, &aips2->mprot0);
78 writel(0x77777777, &aips2->mprot1);
Jason Liudec11122011-11-25 00:18:02 +000079
Jason Liubb25e072012-01-10 00:52:59 +000080 /*
81 * Set all OPACRx to be non-bufferable, not require
82 * supervisor privilege level for access,allow for
83 * write access and untrusted master access.
84 */
85 writel(0x00000000, &aips1->opacr0);
86 writel(0x00000000, &aips1->opacr1);
87 writel(0x00000000, &aips1->opacr2);
88 writel(0x00000000, &aips1->opacr3);
89 writel(0x00000000, &aips1->opacr4);
90 writel(0x00000000, &aips2->opacr0);
91 writel(0x00000000, &aips2->opacr1);
92 writel(0x00000000, &aips2->opacr2);
93 writel(0x00000000, &aips2->opacr3);
94 writel(0x00000000, &aips2->opacr4);
Jason Liudec11122011-11-25 00:18:02 +000095}
96
Dirk Behme8c465942012-05-02 02:12:17 +000097/*
98 * Set the VDDSOC
99 *
100 * Mask out the REG_CORE[22:18] bits (REG2_TRIG) and set
101 * them to the specified millivolt level.
102 * Possible values are from 0.725V to 1.450V in steps of
103 * 0.025V (25mV).
104 */
105void set_vddsoc(u32 mv)
106{
107 struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
108 u32 val, reg = readl(&anatop->reg_core);
109
110 if (mv < 725)
111 val = 0x00; /* Power gated off */
112 else if (mv > 1450)
113 val = 0x1F; /* Power FET switched full on. No regulation */
114 else
115 val = (mv - 700) / 25;
116
117 /*
118 * Mask out the REG_CORE[22:18] bits (REG2_TRIG)
119 * and set them to the calculated value (0.7V + val * 0.25V)
120 */
121 reg = (reg & ~(0x1F << 18)) | (val << 18);
122 writel(reg, &anatop->reg_core);
123}
124
Fabio Estevam48e65b02013-02-07 06:45:23 +0000125static void imx_set_wdog_powerdown(bool enable)
126{
127 struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
128 struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
129
130 /* Write to the PDE (Power Down Enable) bit */
131 writew(enable, &wdog1->wmcr);
132 writew(enable, &wdog2->wmcr);
133}
134
Jason Liudec11122011-11-25 00:18:02 +0000135int arch_cpu_init(void)
136{
137 init_aips();
138
Dirk Behme8c465942012-05-02 02:12:17 +0000139 set_vddsoc(1200); /* Set VDDSOC to 1.2V */
140
Fabio Estevam48e65b02013-02-07 06:45:23 +0000141 imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
Jason Liudec11122011-11-25 00:18:02 +0000142 return 0;
143}
Jason Liudec11122011-11-25 00:18:02 +0000144
Eric Nelsonc94ce4a2012-03-04 11:47:38 +0000145#ifndef CONFIG_SYS_DCACHE_OFF
146void enable_caches(void)
147{
148 /* Enable D-cache. I-cache is already enabled in start.S */
149 dcache_enable();
150}
151#endif
152
Jason Liudec11122011-11-25 00:18:02 +0000153#if defined(CONFIG_FEC_MXC)
Fabio Estevam04fc1282011-12-20 05:46:31 +0000154void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
Jason Liudec11122011-11-25 00:18:02 +0000155{
156 struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
157 struct fuse_bank *bank = &iim->bank[4];
158 struct fuse_bank4_regs *fuse =
159 (struct fuse_bank4_regs *)bank->fuse_regs;
160
Jason Liubf651aa2011-12-19 02:38:13 +0000161 u32 value = readl(&fuse->mac_addr_high);
162 mac[0] = (value >> 8);
163 mac[1] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000164
Jason Liubf651aa2011-12-19 02:38:13 +0000165 value = readl(&fuse->mac_addr_low);
166 mac[2] = value >> 24 ;
167 mac[3] = value >> 16 ;
168 mac[4] = value >> 8 ;
169 mac[5] = value ;
Jason Liudec11122011-11-25 00:18:02 +0000170
171}
172#endif
Troy Kisky0ca618c2012-08-15 10:31:20 +0000173
174void boot_mode_apply(unsigned cfg_val)
175{
176 unsigned reg;
Eric Nelson7b8731a2012-09-18 15:26:32 +0000177 struct src *psrc = (struct src *)SRC_BASE_ADDR;
Troy Kisky0ca618c2012-08-15 10:31:20 +0000178 writel(cfg_val, &psrc->gpr9);
179 reg = readl(&psrc->gpr10);
180 if (cfg_val)
181 reg |= 1 << 28;
182 else
183 reg &= ~(1 << 28);
184 writel(reg, &psrc->gpr10);
185}
186/*
187 * cfg_val will be used for
188 * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
189 * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0]
190 * to SBMR1, which will determine the boot device.
191 */
192const struct boot_mode soc_boot_modes[] = {
193 {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
194 /* reserved value should start rom usb */
195 {"usb", MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
196 {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
197 {"escpi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
198 {"escpi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
199 {"escpi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
200 {"escpi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
201 /* 4 bit bus width */
202 {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
203 {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
204 {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
205 {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
206 {NULL, 0},
207};
Stephen Warren57ab23f2013-02-26 12:28:29 +0000208
209void s_init(void)
210{
211}