blob: a1047f3fd2a27aeec75db14134f2dadfb7ee7830 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Minkyu Kang194cbce2010-05-31 22:02:42 +09002/*
3 * Copyright (C) 2008-2009 Samsung Electronics
4 * Minkyu Kang <mk7.kang@samsung.com>
5 * Kyungmin Park <kyungmin.park@samsung.com>
Minkyu Kang194cbce2010-05-31 22:02:42 +09006 */
7
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060010#include <asm/global_data.h>
Simon Glass37f11622014-10-20 19:48:37 -060011#include <asm/gpio.h>
Minkyu Kang2111b2d2010-07-06 20:58:41 +090012#include <asm/arch/mmc.h>
Jaehoon Chunge892d602017-01-03 09:43:28 +090013#include <dm.h>
Simon Glassdbd79542020-05-10 11:40:11 -060014#include <linux/delay.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060015#include <linux/printk.h>
Łukasz Majewski1c6dba12012-11-13 03:21:55 +000016#include <power/pmic.h>
Marek Vasutf1be9cb2015-12-04 02:51:20 +010017#include <usb/dwc2_udc.h>
Lukasz Majewski35be8502011-10-27 10:36:47 +020018#include <asm/arch/cpu.h>
Łukasz Majewski1c6dba12012-11-13 03:21:55 +000019#include <power/max8998_pmic.h>
Piotr Wilczekc88b89e2014-01-22 15:54:33 +010020#include <samsung/misc.h>
Mateusz Zalega381709a2014-04-28 21:13:30 +020021#include <usb.h>
22#include <usb_mass_storage.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060023#include <asm/mach-types.h>
Piotr Wilczekc88b89e2014-01-22 15:54:33 +010024
Minkyu Kang194cbce2010-05-31 22:02:42 +090025DECLARE_GLOBAL_DATA_PTR;
26
27int board_init(void)
28{
Minkyu Kang2111b2d2010-07-06 20:58:41 +090029 /* Set Initial global variables */
Minkyu Kang194cbce2010-05-31 22:02:42 +090030 gd->bd->bi_arch_number = MACH_TYPE_GONI;
31 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
32
Łukasz Majewski0fcc9a52012-11-13 03:22:16 +000033 return 0;
34}
35
Minkyu Kang194cbce2010-05-31 22:02:42 +090036int dram_init(void)
37{
Minkyu Kang00ab1762010-11-22 20:27:44 +090038 gd->ram_size = PHYS_SDRAM_1_SIZE + PHYS_SDRAM_2_SIZE +
39 PHYS_SDRAM_3_SIZE;
40
41 return 0;
42}
43
Simon Glass2f949c32017-03-31 08:40:32 -060044int dram_init_banksize(void)
Minkyu Kang00ab1762010-11-22 20:27:44 +090045{
Minkyu Kang194cbce2010-05-31 22:02:42 +090046 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
47 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
48 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
49 gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
50 gd->bd->bi_dram[2].start = PHYS_SDRAM_3;
51 gd->bd->bi_dram[2].size = PHYS_SDRAM_3_SIZE;
Simon Glass2f949c32017-03-31 08:40:32 -060052
53 return 0;
Minkyu Kang194cbce2010-05-31 22:02:42 +090054}
55
56#ifdef CONFIG_DISPLAY_BOARDINFO
57int checkboard(void)
58{
59 puts("Board:\tGoni\n");
60 return 0;
61}
62#endif
Minkyu Kang2111b2d2010-07-06 20:58:41 +090063
Masahiro Yamada0a780172017-05-09 20:31:39 +090064#ifdef CONFIG_MMC
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090065int board_mmc_init(struct bd_info *bis)
Minkyu Kang2111b2d2010-07-06 20:58:41 +090066{
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +020067 int i, ret, ret_sd = 0;
Minkyu Kang2111b2d2010-07-06 20:58:41 +090068
69 /* MASSMEMORY_EN: XMSMDATA7: GPJ2[7] output high */
Simon Glass4f83d3d2014-10-20 19:48:39 -060070 gpio_request(S5PC110_GPIO_J27, "massmemory_en");
Akshay Saraswat1376cdd2014-05-13 10:30:14 +053071 gpio_direction_output(S5PC110_GPIO_J27, 1);
Minkyu Kang2111b2d2010-07-06 20:58:41 +090072
73 /*
74 * MMC0 GPIO
75 * GPG0[0] SD_0_CLK
76 * GPG0[1] SD_0_CMD
77 * GPG0[2] SD_0_CDn -> Not used
78 * GPG0[3:6] SD_0_DATA[0:3]
79 */
Akshay Saraswat1376cdd2014-05-13 10:30:14 +053080 for (i = S5PC110_GPIO_G00; i < S5PC110_GPIO_G07; i++) {
81 if (i == S5PC110_GPIO_G02)
Minkyu Kang2111b2d2010-07-06 20:58:41 +090082 continue;
83 /* GPG0[0:6] special function 2 */
Akshay Saraswat1376cdd2014-05-13 10:30:14 +053084 gpio_cfg_pin(i, 0x2);
Minkyu Kang2111b2d2010-07-06 20:58:41 +090085 /* GPG0[0:6] pull disable */
Akshay Saraswat1376cdd2014-05-13 10:30:14 +053086 gpio_set_pull(i, S5P_GPIO_PULL_NONE);
Minkyu Kang2111b2d2010-07-06 20:58:41 +090087 /* GPG0[0:6] drv 4x */
Akshay Saraswat1376cdd2014-05-13 10:30:14 +053088 gpio_set_drv(i, S5P_GPIO_DRV_4X);
Minkyu Kang2111b2d2010-07-06 20:58:41 +090089 }
90
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +020091 ret = s5p_mmc_init(0, 4);
92 if (ret)
Masahiro Yamada81e10422017-09-16 14:10:41 +090093 pr_err("MMC: Failed to init MMC:0.\n");
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +020094
95 /*
96 * SD card (T_FLASH) detect and init
97 * T_FLASH_DETECT: EINT28: GPH3[4] input mode
98 */
Simon Glass4f83d3d2014-10-20 19:48:39 -060099 gpio_request(S5PC110_GPIO_H34, "t_flash_detect");
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530100 gpio_cfg_pin(S5PC110_GPIO_H34, S5P_GPIO_INPUT);
101 gpio_set_pull(S5PC110_GPIO_H34, S5P_GPIO_PULL_UP);
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +0200102
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530103 if (!gpio_get_value(S5PC110_GPIO_H34)) {
104 for (i = S5PC110_GPIO_G20; i < S5PC110_GPIO_G27; i++) {
105 if (i == S5PC110_GPIO_G22)
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +0200106 continue;
107
108 /* GPG2[0:6] special function 2 */
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530109 gpio_cfg_pin(i, 0x2);
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +0200110 /* GPG2[0:6] pull disable */
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530111 gpio_set_pull(i, S5P_GPIO_PULL_NONE);
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +0200112 /* GPG2[0:6] drv 4x */
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530113 gpio_set_drv(i, S5P_GPIO_DRV_4X);
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +0200114 }
115
116 ret_sd = s5p_mmc_init(2, 4);
117 if (ret_sd)
Masahiro Yamada81e10422017-09-16 14:10:41 +0900118 pr_err("MMC: Failed to init SD card (MMC:2).\n");
Przemyslaw Marczak151d23f2013-09-10 11:34:49 +0200119 }
120
121 return ret & ret_sd;
Minkyu Kang2111b2d2010-07-06 20:58:41 +0900122}
123#endif
Lukasz Majewski35be8502011-10-27 10:36:47 +0200124
125#ifdef CONFIG_USB_GADGET
126static int s5pc1xx_phy_control(int on)
127{
Jaehoon Chunge892d602017-01-03 09:43:28 +0900128 struct udevice *dev;
Lukasz Majewski35be8502011-10-27 10:36:47 +0200129 static int status;
Jaehoon Chunge892d602017-01-03 09:43:28 +0900130 int reg, ret;
Lukasz Majewski35be8502011-10-27 10:36:47 +0200131
Jaehoon Chung5026af62017-01-05 16:55:14 +0900132 ret = pmic_get("max8998-pmic", &dev);
Jaehoon Chunge892d602017-01-03 09:43:28 +0900133 if (ret)
134 return ret;
Lukasz Majewski35be8502011-10-27 10:36:47 +0200135
136 if (on && !status) {
Jaehoon Chunge892d602017-01-03 09:43:28 +0900137 reg = pmic_reg_read(dev, MAX8998_REG_ONOFF1);
138 reg |= MAX8998_LDO3;
139 ret = pmic_reg_write(dev, MAX8998_REG_ONOFF1, reg);
Lukasz Majewski35be8502011-10-27 10:36:47 +0200140 if (ret) {
141 puts("MAX8998 LDO setting error!\n");
Jaehoon Chunge892d602017-01-03 09:43:28 +0900142 return -EINVAL;
143 }
144
145 reg = pmic_reg_read(dev, MAX8998_REG_ONOFF2);
146 reg |= MAX8998_LDO8;
147 ret = pmic_reg_write(dev, MAX8998_REG_ONOFF2, reg);
148 if (ret) {
149 puts("MAX8998 LDO setting error!\n");
150 return -EINVAL;
Lukasz Majewski35be8502011-10-27 10:36:47 +0200151 }
152 status = 1;
153 } else if (!on && status) {
Jaehoon Chunge892d602017-01-03 09:43:28 +0900154 reg = pmic_reg_read(dev, MAX8998_REG_ONOFF1);
155 reg &= ~MAX8998_LDO3;
156 ret = pmic_reg_write(dev, MAX8998_REG_ONOFF1, reg);
157 if (ret) {
158 puts("MAX8998 LDO setting error!\n");
159 return -EINVAL;
160 }
161
162 reg = pmic_reg_read(dev, MAX8998_REG_ONOFF2);
163 reg &= ~MAX8998_LDO8;
164 ret = pmic_reg_write(dev, MAX8998_REG_ONOFF2, reg);
Lukasz Majewski35be8502011-10-27 10:36:47 +0200165 if (ret) {
166 puts("MAX8998 LDO setting error!\n");
Jaehoon Chunge892d602017-01-03 09:43:28 +0900167 return -EINVAL;
Lukasz Majewski35be8502011-10-27 10:36:47 +0200168 }
169 status = 0;
170 }
171 udelay(10000);
Lukasz Majewski35be8502011-10-27 10:36:47 +0200172 return 0;
173}
174
Marek Vasut6939aca2015-12-04 02:23:29 +0100175struct dwc2_plat_otg_data s5pc110_otg_data = {
Lukasz Majewski35be8502011-10-27 10:36:47 +0200176 .phy_control = s5pc1xx_phy_control,
177 .regs_phy = S5PC110_PHY_BASE,
178 .regs_otg = S5PC110_OTG_BASE,
179 .usb_phy_ctrl = S5PC110_USB_PHY_CONTROL,
180};
Mateusz Zalega381709a2014-04-28 21:13:30 +0200181
182int board_usb_init(int index, enum usb_init_type init)
183{
184 debug("USB_udc_probe\n");
Marek Vasut01b61fa2015-12-04 02:26:33 +0100185 return dwc2_udc_probe(&s5pc110_otg_data);
Mateusz Zalega381709a2014-04-28 21:13:30 +0200186}
Lukasz Majewski35be8502011-10-27 10:36:47 +0200187#endif
Piotr Wilczekc88b89e2014-01-22 15:54:33 +0100188
189#ifdef CONFIG_MISC_INIT_R
190int misc_init_r(void)
191{
192#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
193 set_board_info();
194#endif
195 return 0;
196}
197#endif
Lukasz Majewski3de25702015-03-03 17:32:04 +0100198
199int board_usb_cleanup(int index, enum usb_init_type init)
200{
201 return 0;
202}