blob: 1393ba8a8aa5a5bd7db01eb0df7d1500571efb42 [file] [log] [blame]
Gabe Blackd3163ab2013-05-16 05:53:40 -07001/*
2 * This file is part of the coreboot project.
3 *
David Hendricks1e3e2c52013-06-14 16:08:05 -07004 * Copyright 2013 Google Inc.
Gabe Blackd3163ab2013-05-16 05:53:40 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <types.h>
David Hendricks1e3e2c52013-06-14 16:08:05 -070021#include <stdlib.h>
Gabe Blackd3163ab2013-05-16 05:53:40 -070022
23#include <armv7.h>
24#include <cbfs.h>
Stefan Reinauer80e62932013-07-29 15:52:23 -070025#include <cbmem.h>
Gabe Blackd3163ab2013-05-16 05:53:40 -070026
27#include <arch/cache.h>
Hung-Te Lin22d0ca02013-09-27 12:45:45 +080028#include <soc/samsung/exynos5420/i2c.h>
29#include <soc/samsung/exynos5420/clk.h>
30#include <soc/samsung/exynos5420/cpu.h>
31#include <soc/samsung/exynos5420/dmc.h>
32#include <soc/samsung/exynos5420/gpio.h>
33#include <soc/samsung/exynos5420/setup.h>
34#include <soc/samsung/exynos5420/periph.h>
35#include <soc/samsung/exynos5420/power.h>
36#include <soc/samsung/exynos5420/trustzone.h>
37#include <soc/samsung/exynos5420/wakeup.h>
Gabe Blackd3163ab2013-05-16 05:53:40 -070038#include <console/console.h>
39#include <arch/stages.h>
40
David Hendricks1e3e2c52013-06-14 16:08:05 -070041#include <drivers/maxim/max77802/max77802.h>
Gabe Blackd3163ab2013-05-16 05:53:40 -070042#include <device/i2c.h>
43
David Hendricks77acf422013-08-05 21:04:16 -070044#define PMIC_I2C_BUS 4
45
David Hendricks1e3e2c52013-06-14 16:08:05 -070046struct pmic_write
47{
48 int or_orig; // Whether to or in the original value.
49 uint8_t reg; // Register to write.
50 uint8_t val; // Value to write.
51};
52
53/*
54 * Use read-modify-write for MAX77802 control registers and clobber the
55 * output voltage setting (BUCK?DVS?) registers.
56 */
57struct pmic_write pmic_writes[] =
58{
59 { 1, MAX77802_REG_PMIC_32KHZ, MAX77802_32KHCP_EN },
60 { 0, MAX77802_REG_PMIC_BUCK1DVS1, MAX77802_BUCK1DVS1_1V },
61 { 1, MAX77802_REG_PMIC_BUCK1CTRL, MAX77802_BUCK_TYPE1_ON |
62 MAX77802_BUCK_TYPE1_IGNORE_PWRREQ },
David Hendricks1f9f04e2013-08-01 18:57:52 -070063 { 0, MAX77802_REG_PMIC_BUCK2DVS1, MAX77802_BUCK2DVS1_1_2625V },
David Hendricks1e3e2c52013-06-14 16:08:05 -070064 { 1, MAX77802_REG_PMIC_BUCK2CTRL1, MAX77802_BUCK_TYPE2_ON |
65 MAX77802_BUCK_TYPE2_IGNORE_PWRREQ },
66 { 0, MAX77802_REG_PMIC_BUCK3DVS1, MAX77802_BUCK3DVS1_1V },
67 { 1, MAX77802_REG_PMIC_BUCK3CTRL1, MAX77802_BUCK_TYPE2_ON |
68 MAX77802_BUCK_TYPE2_IGNORE_PWRREQ },
69 { 0, MAX77802_REG_PMIC_BUCK4DVS1, MAX77802_BUCK4DVS1_1V },
70 { 1, MAX77802_REG_PMIC_BUCK4CTRL1, MAX77802_BUCK_TYPE2_ON |
71 MAX77802_BUCK_TYPE2_IGNORE_PWRREQ },
72 { 0, MAX77802_REG_PMIC_BUCK6DVS1, MAX77802_BUCK6DVS1_1V },
73 { 1, MAX77802_REG_PMIC_BUCK6CTRL, MAX77802_BUCK_TYPE1_ON |
Ronald G. Minnich88ac9b52013-06-26 17:28:52 -070074 MAX77802_BUCK_TYPE1_IGNORE_PWRREQ },
David Hendricks1f9f04e2013-08-01 18:57:52 -070075 /* Disable Boost(bypass) OUTPUT */
76 { 0, MAX77802_REG_PMIC_BOOSTCTRL, MAX77802_BOOSTCTRL_OFF},
David Hendricks1e3e2c52013-06-14 16:08:05 -070077};
78
David Hendricks77acf422013-08-05 21:04:16 -070079static int setup_power(int is_resume)
Gabe Blackd3163ab2013-05-16 05:53:40 -070080{
81 int error = 0;
David Hendricks1e3e2c52013-06-14 16:08:05 -070082 int i;
Gabe Blackd3163ab2013-05-16 05:53:40 -070083
84 power_init();
85
Hung-Te Linda7b8e42013-06-28 17:27:17 +080086 if (is_resume) {
David Hendricks77acf422013-08-05 21:04:16 -070087 return 0;
Hung-Te Linda7b8e42013-06-28 17:27:17 +080088 }
89
Gabe Blackd3163ab2013-05-16 05:53:40 -070090 /* Initialize I2C bus to configure PMIC. */
David Hendricks1e3e2c52013-06-14 16:08:05 -070091 exynos_pinmux_i2c4();
David Hendricks77acf422013-08-05 21:04:16 -070092 i2c_init(PMIC_I2C_BUS, 1000000, 0x00); /* 1MHz */
Gabe Blackd3163ab2013-05-16 05:53:40 -070093
David Hendricks1e3e2c52013-06-14 16:08:05 -070094 for (i = 0; i < ARRAY_SIZE(pmic_writes); i++) {
95 uint8_t data = 0;
96 uint8_t reg = pmic_writes[i].reg;
Gabe Blackd3163ab2013-05-16 05:53:40 -070097
David Hendricks1e3e2c52013-06-14 16:08:05 -070098 if (pmic_writes[i].or_orig)
99 error |= i2c_read(4, MAX77802_I2C_ADDR,
100 reg, sizeof(reg),
101 &data, sizeof(data));
102 data |= pmic_writes[i].val;
103 error |= i2c_write(4, MAX77802_I2C_ADDR,
104 reg, sizeof(reg),
105 &data, sizeof(data));
Gabe Blackd3163ab2013-05-16 05:53:40 -0700106 }
David Hendricks1e3e2c52013-06-14 16:08:05 -0700107
David Hendricks77acf422013-08-05 21:04:16 -0700108 return error;
Gabe Blackd3163ab2013-05-16 05:53:40 -0700109}
110
Hung-Te Linc357aed2013-06-24 20:02:01 +0800111static void setup_ec(void)
112{
113 /* SPI2 (EC) is slower and needs to work in half-duplex mode with
114 * single byte bus width. */
Gabe Black98018092013-07-24 06:18:20 -0700115 clock_set_rate(PERIPH_ID_SPI2, 5000000);
Hung-Te Linc357aed2013-06-24 20:02:01 +0800116 exynos_pinmux_spi2();
117}
118
Gabe Blackd3163ab2013-05-16 05:53:40 -0700119static void setup_gpio(void)
120{
Gabe Black63bb6102013-06-19 03:29:45 -0700121 gpio_direction_input(GPIO_X30); // WP_GPIO
122 gpio_set_pull(GPIO_X30, GPIO_PULL_NONE);
Gabe Blackd3163ab2013-05-16 05:53:40 -0700123
Gabe Black63bb6102013-06-19 03:29:45 -0700124 gpio_direction_input(GPIO_X07); // RECMODE_GPIO
125 gpio_set_pull(GPIO_X07, GPIO_PULL_NONE);
Gabe Blackd3163ab2013-05-16 05:53:40 -0700126
Gabe Black63bb6102013-06-19 03:29:45 -0700127 gpio_direction_input(GPIO_X34); // LID_GPIO
128 gpio_set_pull(GPIO_X34, GPIO_PULL_NONE);
Gabe Blackd3163ab2013-05-16 05:53:40 -0700129
Gabe Black63bb6102013-06-19 03:29:45 -0700130 gpio_direction_input(GPIO_X12); // POWER_GPIO
131 gpio_set_pull(GPIO_X12, GPIO_PULL_NONE);
Gabe Blackd3163ab2013-05-16 05:53:40 -0700132}
133
134static void setup_memory(struct mem_timings *mem, int is_resume)
135{
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700136 printk(BIOS_SPEW, "manufacturer: 0x%x type: 0x%x, div: 0x%x, mhz: %d\n",
Gabe Blackd3163ab2013-05-16 05:53:40 -0700137 mem->mem_manuf,
138 mem->mem_type,
139 mem->mpll_mdiv,
140 mem->frequency_mhz);
141
Gabe Blackd3163ab2013-05-16 05:53:40 -0700142 if (ddr3_mem_ctrl_init(mem, DMC_INTERLEAVE_SIZE, !is_resume)) {
143 die("Failed to initialize memory controller.\n");
144 }
145}
146
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700147#define PRIMITIVE_MEM_TEST 0
148#if PRIMITIVE_MEM_TEST
149static unsigned long primitive_mem_test(void)
Gabe Blackd3163ab2013-05-16 05:53:40 -0700150{
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700151 unsigned long *l = (void *)0x40000000;
152 int bad = 0;
153 unsigned long i;
154 for(i = 0; i < 256*1048576; i++){
155 if (! (i%1048576))
156 printk(BIOS_SPEW, "%lu ...", i);
157 l[i] = 0xffffffff - i;
Gabe Blackd3163ab2013-05-16 05:53:40 -0700158 }
Gabe Black5420e092013-05-17 11:29:22 -0700159
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700160 for(i = 0; i < 256*1048576; i++){
161 if (! (i%1048576))
162 printk(BIOS_SPEW, "%lu ...", i);
163 if (l[i] != (0xffffffff - i)){
164 printk(BIOS_SPEW, "%p: want %08lx got %08lx\n", l, l[i], 0xffffffff - i);
165 bad++;
166 }
167 }
Gabe Black5420e092013-05-17 11:29:22 -0700168
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700169 printk(BIOS_SPEW, "%d errors\n", bad);
170
171 return bad;
Gabe Blackd3163ab2013-05-16 05:53:40 -0700172}
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700173#else
174#define primitive_mem_test()
175#endif
176
177#define SIMPLE_SPI_TEST 0
178#if SIMPLE_SPI_TEST
179/* here is a simple SPI debug test, known to fid trouble */
180static void simple_spi_test(void)
181{
182 struct cbfs_media default_media, *media;
183 int i, amt = 4 * MiB, errors = 0;
184 //u32 *data = (void *)0x40000000;
185 u32 data[1024];
186 u32 in;
187
188 amt = sizeof(data);
189 media = &default_media;
190 if (init_default_cbfs_media(media) != 0) {
191 printk(BIOS_SPEW, "Failed to initialize default media.\n");
192 return;
193 }
194
195
196 media->open(media);
197 if (media->read(media, data, (size_t) 0, amt) < amt){
198 printk(BIOS_SPEW, "simple_spi_test fails\n");
199 return;
200 }
201
202
203 for(i = 0; i < amt; i += 4){
204 if (media->read(media, &in, (size_t) i, 4) < 1){
205 printk(BIOS_SPEW, "simple_spi_test fails at %d\n", i);
206 return;
207 }
208 if (data[i/4] != in){
209 errors++;
210 printk(BIOS_SPEW, "BAD at %d(%p):\nRAM %08lx\nSPI %08lx\n",
211 i, &data[i/4], (unsigned long)data[i/4], (unsigned long)in);
212 /* reread it to see which is wrong. */
213 if (media->read(media, &in, (size_t) i, 4) < 1){
214 printk(BIOS_SPEW, "simple_spi_test fails at %d\n", i);
215 return;
216 }
217 printk(BIOS_SPEW, "RTRY at %d(%p):\nRAM %08lx\nSPI %08lx\n",
218 i, &data[i/4], (unsigned long)data[i/4], (unsigned long)in);
219 }
220
221 }
222 printk(BIOS_SPEW, "%d errors\n", errors);
223}
224#else
225#define simple_spi_test()
226#endif
Gabe Blackd3163ab2013-05-16 05:53:40 -0700227
228void main(void)
229{
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700230
231 extern struct mem_timings mem_timings;
Gabe Blackd3163ab2013-05-16 05:53:40 -0700232 void *entry;
233 int is_resume = (get_wakeup_state() != IS_NOT_WAKEUP);
David Hendricks77acf422013-08-05 21:04:16 -0700234 int power_init_failed;
235
Hung-Te Lin0682cfe2013-08-06 20:37:55 +0800236 exynos5420_config_smp();
David Hendricks77acf422013-08-05 21:04:16 -0700237 power_init_failed = setup_power(is_resume);
Gabe Blackd3163ab2013-05-16 05:53:40 -0700238
239 /* Clock must be initialized before console_init, otherwise you may need
240 * to re-initialize serial console drivers again. */
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700241 system_clock_init();
Gabe Blackd3163ab2013-05-16 05:53:40 -0700242
Gabe Black136e7092013-08-09 00:31:09 -0700243 exynos_pinmux_uart3();
Stefan Reinauer998ab0d2013-05-20 12:29:37 -0700244 console_init();
245
David Hendricks77acf422013-08-05 21:04:16 -0700246 if (power_init_failed)
247 die("Failed to intialize power.\n");
248
249 /* re-initialize PMIC I2C channel after (re-)setting system clocks */
250 i2c_init(PMIC_I2C_BUS, 1000000, 0x00); /* 1MHz */
251
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700252 setup_memory(&mem_timings, is_resume);
253
254 primitive_mem_test();
Gabe Blackd3163ab2013-05-16 05:53:40 -0700255
Gabe Black8128a562013-09-18 05:48:37 -0700256 trustzone_init();
257
Gabe Blackd3163ab2013-05-16 05:53:40 -0700258 if (is_resume) {
259 wakeup();
260 }
261
Gabe Blackd3163ab2013-05-16 05:53:40 -0700262 setup_gpio();
Hung-Te Linc357aed2013-06-24 20:02:01 +0800263 setup_ec();
Gabe Blackd3163ab2013-05-16 05:53:40 -0700264
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700265 simple_spi_test();
Gabe Blackd3163ab2013-05-16 05:53:40 -0700266 /* Set SPI (primary CBFS media) clock to 50MHz. */
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700267 /* if this is uncommented SPI will not work correctly. */
Gabe Blackd3163ab2013-05-16 05:53:40 -0700268 clock_set_rate(PERIPH_ID_SPI1, 50000000);
Julius Werner45d2ff32013-08-12 18:04:06 -0700269 exynos_pinmux_spi1();
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700270 simple_spi_test();
Stefan Reinauer80e62932013-07-29 15:52:23 -0700271
272 cbmem_initialize_empty();
273
Furquan Shaikh20f25dd2014-04-22 10:41:05 -0700274 entry = cbfs_load_stage(CBFS_DEFAULT_MEDIA, "fallback/ramstage");
Ronald G. Minniche6af9292013-06-03 13:03:50 -0700275 simple_spi_test();
Gabe Blackd3163ab2013-05-16 05:53:40 -0700276 stage_exit(entry);
277}