]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/cpu/armv7/u8500/cpu.c
Merge branch 'master' of git://git.denx.de/u-boot-avr32
[people/ms/u-boot.git] / arch / arm / cpu / armv7 / u8500 / cpu.c
1 /*
2 * Copyright (C) 2012 Linaro Limited
3 * Mathieu Poirier <mathieu.poirier@linaro.org>
4 *
5 * Based on original code from Joakim Axelsson at ST-Ericsson
6 * (C) Copyright 2010 ST-Ericsson
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27 #include <common.h>
28 #include <asm/io.h>
29 #include <asm/arch/prcmu.h>
30 #include <asm/arch/clock.h>
31 #include <asm/arch/hardware.h>
32
33 #include <asm/arch/hardware.h>
34
35 #define CPUID_DB8500V1 0x411fc091
36 #define CPUID_DB8500V2 0x412fc091
37 #define ASICID_DB8500V11 0x008500A1
38
39 #define CACHE_CONTR_BASE 0xA0412000
40 /* Cache controller register offsets
41 * as found in ARM's technical reference manual
42 */
43 #define CACHE_INVAL_BY_WAY (CACHE_CONTR_BASE + 0x77C)
44 #define CACHE_LOCKDOWN_BY_D (CACHE_CONTR_BASE + 0X900)
45 #define CACHE_LOCKDOWN_BY_I (CACHE_CONTR_BASE + 0X904)
46
47 static unsigned int read_asicid(void);
48
49 static inline unsigned int read_cpuid(void)
50 {
51 unsigned int val;
52
53 /* Main ID register (MIDR) */
54 asm("mrc p15, 0, %0, c0, c0, 0"
55 : "=r" (val)
56 :
57 : "cc");
58
59 return val;
60 }
61
62 static int cpu_is_u8500v11(void)
63 {
64 return read_asicid() == ASICID_DB8500V11;
65 }
66
67 static int cpu_is_u8500v2(void)
68 {
69 return read_cpuid() == CPUID_DB8500V2;
70 }
71
72 static unsigned int read_asicid(void)
73 {
74 unsigned int *address;
75
76 if (cpu_is_u8500v2())
77 address = (void *) U8500_ASIC_ID_LOC_V2;
78 else
79 address = (void *) U8500_ASIC_ID_LOC_ED_V1;
80
81 return readl(address);
82 }
83
84 void cpu_cache_initialization(void)
85 {
86 unsigned int value;
87 /* invalidate all cache entries */
88 writel(0xFFFF, CACHE_INVAL_BY_WAY);
89
90 /* ways are set to '0' when they are totally
91 * cleaned and invalidated
92 */
93 do {
94 value = readl(CACHE_INVAL_BY_WAY);
95 } while (value & 0xFF);
96
97 /* Invalidate register 9 D and I lockdown */
98 writel(0xFF, CACHE_LOCKDOWN_BY_D);
99 writel(0xFF, CACHE_LOCKDOWN_BY_I);
100 }
101
102 #ifdef CONFIG_ARCH_CPU_INIT
103 /*
104 * SOC specific cpu init
105 */
106 int arch_cpu_init(void)
107 {
108 db8500_prcmu_init();
109 db8500_clocks_init();
110
111 return 0;
112 }
113 #endif /* CONFIG_ARCH_CPU_INIT */
114
115 #ifdef CONFIG_MMC
116
117 int u8500_mmc_power_init(void)
118 {
119 int ret;
120 int enable, voltage;
121 int ab8500_revision;
122
123 if (!cpu_is_u8500v11() && !cpu_is_u8500v2())
124 return 0;
125
126 /* Get AB8500 revision */
127 ret = ab8500_read(AB8500_MISC, AB8500_REV_REG);
128 if (ret < 0)
129 goto out;
130
131 ab8500_revision = ret;
132
133 /*
134 * On v1.1 HREF boards (HREF+), Vaux3 needs to be enabled for the SD
135 * card to work. This is done by enabling the regulators in the AB8500
136 * via PRCMU I2C transactions.
137 *
138 * This code is derived from the handling of AB8500_LDO_VAUX3 in
139 * ab8500_ldo_enable() and ab8500_ldo_disable() in Linux.
140 *
141 * Turn off and delay is required to have it work across soft reboots.
142 */
143
144 /* Turn off (read-modify-write) */
145 ret = ab8500_read(AB8500_REGU_CTRL2,
146 AB8500_REGU_VRF1VAUX3_REGU_REG);
147 if (ret < 0)
148 goto out;
149
150 enable = ret;
151
152 /* Turn off */
153 ret = ab8500_write(AB8500_REGU_CTRL2,
154 AB8500_REGU_VRF1VAUX3_REGU_REG,
155 enable & ~LDO_VAUX3_ENABLE_MASK);
156 if (ret < 0)
157 goto out;
158
159 udelay(10 * 1000);
160
161 /* Set the voltage to 2.91 V or 2.9 V without overriding VRF1 value */
162 ret = ab8500_read(AB8500_REGU_CTRL2,
163 AB8500_REGU_VRF1VAUX3_SEL_REG);
164 if (ret < 0)
165 goto out;
166
167 voltage = ret;
168
169 if (ab8500_revision < 0x20) {
170 voltage &= ~LDO_VAUX3_SEL_MASK;
171 voltage |= LDO_VAUX3_SEL_2V9;
172 } else {
173 voltage &= ~LDO_VAUX3_V2_SEL_MASK;
174 voltage |= LDO_VAUX3_V2_SEL_2V91;
175 }
176
177 ret = ab8500_write(AB8500_REGU_CTRL2,
178 AB8500_REGU_VRF1VAUX3_SEL_REG, voltage);
179 if (ret < 0)
180 goto out;
181
182 /* Turn on the supply */
183 enable &= ~LDO_VAUX3_ENABLE_MASK;
184 enable |= LDO_VAUX3_ENABLE_VAL;
185
186 ret = ab8500_write(AB8500_REGU_CTRL2,
187 AB8500_REGU_VRF1VAUX3_REGU_REG, enable);
188
189 out:
190 return ret;
191 }
192 #endif /* CONFIG_MMC */