]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/mx6/soc.c
Merge branch 'agust@denx.de' of git://git.denx.de/u-boot-staging
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / mx6 / soc.c
1 /*
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>
32 #include <asm/imx-common/boot_mode.h>
33
34 u32 get_cpu_rev(void)
35 {
36         struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
37         int reg = readl(&anatop->digprog);
38
39         /* Read mx6 variant: quad, dual or solo */
40         int system_rev = (reg >> 4) & 0xFF000;
41         /* Read mx6 silicon revision */
42         system_rev |= (reg & 0xFF) + 0x10;
43
44         return system_rev;
45 }
46
47 void init_aips(void)
48 {
49         struct aipstz_regs *aips1, *aips2;
50
51         aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
52         aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
53
54         /*
55          * Set all MPROTx to be non-bufferable, trusted for R/W,
56          * not forced to user-mode.
57          */
58         writel(0x77777777, &aips1->mprot0);
59         writel(0x77777777, &aips1->mprot1);
60         writel(0x77777777, &aips2->mprot0);
61         writel(0x77777777, &aips2->mprot1);
62
63         /*
64          * Set all OPACRx to be non-bufferable, not require
65          * supervisor privilege level for access,allow for
66          * write access and untrusted master access.
67          */
68         writel(0x00000000, &aips1->opacr0);
69         writel(0x00000000, &aips1->opacr1);
70         writel(0x00000000, &aips1->opacr2);
71         writel(0x00000000, &aips1->opacr3);
72         writel(0x00000000, &aips1->opacr4);
73         writel(0x00000000, &aips2->opacr0);
74         writel(0x00000000, &aips2->opacr1);
75         writel(0x00000000, &aips2->opacr2);
76         writel(0x00000000, &aips2->opacr3);
77         writel(0x00000000, &aips2->opacr4);
78 }
79
80 /*
81  * Set the VDDSOC
82  *
83  * Mask out the REG_CORE[22:18] bits (REG2_TRIG) and set
84  * them to the specified millivolt level.
85  * Possible values are from 0.725V to 1.450V in steps of
86  * 0.025V (25mV).
87  */
88 void set_vddsoc(u32 mv)
89 {
90         struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
91         u32 val, reg = readl(&anatop->reg_core);
92
93         if (mv < 725)
94                 val = 0x00;     /* Power gated off */
95         else if (mv > 1450)
96                 val = 0x1F;     /* Power FET switched full on. No regulation */
97         else
98                 val = (mv - 700) / 25;
99
100         /*
101          * Mask out the REG_CORE[22:18] bits (REG2_TRIG)
102          * and set them to the calculated value (0.7V + val * 0.25V)
103          */
104         reg = (reg & ~(0x1F << 18)) | (val << 18);
105         writel(reg, &anatop->reg_core);
106 }
107
108 int arch_cpu_init(void)
109 {
110         init_aips();
111
112         set_vddsoc(1200);       /* Set VDDSOC to 1.2V */
113
114         return 0;
115 }
116
117 #ifndef CONFIG_SYS_DCACHE_OFF
118 void enable_caches(void)
119 {
120         /* Enable D-cache. I-cache is already enabled in start.S */
121         dcache_enable();
122 }
123 #endif
124
125 #if defined(CONFIG_FEC_MXC)
126 void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
127 {
128         struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
129         struct fuse_bank *bank = &iim->bank[4];
130         struct fuse_bank4_regs *fuse =
131                         (struct fuse_bank4_regs *)bank->fuse_regs;
132
133         u32 value = readl(&fuse->mac_addr_high);
134         mac[0] = (value >> 8);
135         mac[1] = value ;
136
137         value = readl(&fuse->mac_addr_low);
138         mac[2] = value >> 24 ;
139         mac[3] = value >> 16 ;
140         mac[4] = value >> 8 ;
141         mac[5] = value ;
142
143 }
144 #endif
145
146 void boot_mode_apply(unsigned cfg_val)
147 {
148         unsigned reg;
149         struct src_regs *psrc = (struct src_regs *)SRC_BASE_ADDR;
150         writel(cfg_val, &psrc->gpr9);
151         reg = readl(&psrc->gpr10);
152         if (cfg_val)
153                 reg |= 1 << 28;
154         else
155                 reg &= ~(1 << 28);
156         writel(reg, &psrc->gpr10);
157 }
158 /*
159  * cfg_val will be used for
160  * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
161  * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0]
162  * to SBMR1, which will determine the boot device.
163  */
164 const struct boot_mode soc_boot_modes[] = {
165         {"normal",      MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
166         /* reserved value should start rom usb */
167         {"usb",         MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
168         {"sata",        MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
169         {"escpi1:0",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
170         {"escpi1:1",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
171         {"escpi1:2",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
172         {"escpi1:3",    MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
173         /* 4 bit bus width */
174         {"esdhc1",      MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
175         {"esdhc2",      MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
176         {"esdhc3",      MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
177         {"esdhc4",      MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
178         {NULL,          0},
179 };