blob: a03dc8738579f066ca622d9ac02e04c215bdfe9f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +02002/*
3 * Copyright (c) 2013 Samsung Electronics Co., Ltd. All rights reserved.
4 * Sanghee Kim <sh0130.kim@samsung.com>
5 * Piotr Wilczek <p.wilczek@samsung.com>
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +02006 */
7
8#include <common.h>
9#include <lcd.h>
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Simon Glass37f11622014-10-20 19:48:37 -060011#include <asm/gpio.h>
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020012#include <asm/arch/pinmux.h>
13#include <asm/arch/power.h>
Piotr Wilczek87d2e782014-03-07 14:59:49 +010014#include <asm/arch/mipi_dsim.h>
Simon Glassdbd79542020-05-10 11:40:11 -060015#include <linux/delay.h>
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020016#include <power/pmic.h>
17#include <power/max77686_pmic.h>
18#include <power/battery.h>
19#include <power/max77693_pmic.h>
20#include <power/max77693_muic.h>
21#include <power/max77693_fg.h>
22#include <libtizen.h>
23#include <errno.h>
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +010024#include <usb.h>
Marek Vasutf1be9cb2015-12-04 02:51:20 +010025#include <usb/dwc2_udc.h>
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +010026#include <usb_mass_storage.h>
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020027
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020028static unsigned int board_rev = -1;
29
30static inline u32 get_model_rev(void);
31
32static void check_hw_revision(void)
33{
34 int modelrev = 0;
Simon Glass4f83d3d2014-10-20 19:48:39 -060035 char str[12];
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020036 int i;
37
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020038 /*
39 * GPM1[1:0]: MODEL_REV[1:0]
40 * Don't set as pull-none for these N/C pin.
41 * TRM say that it may cause unexcepted state and leakage current.
42 * and pull-none is only for output function.
43 */
Simon Glass4f83d3d2014-10-20 19:48:39 -060044 for (i = 0; i < 2; i++) {
45 int pin = i + EXYNOS4X12_GPIO_M10;
46
47 sprintf(str, "model_rev%d", i);
48 gpio_request(pin, str);
49 gpio_cfg_pin(pin, S5P_GPIO_INPUT);
50 }
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020051
52 /* GPM1[5:2]: HW_REV[3:0] */
Simon Glass4f83d3d2014-10-20 19:48:39 -060053 for (i = 0; i < 4; i++) {
54 int pin = i + EXYNOS4X12_GPIO_M12;
55
56 sprintf(str, "hw_rev%d", i);
57 gpio_request(pin, str);
58 gpio_cfg_pin(pin, S5P_GPIO_INPUT);
59 gpio_set_pull(pin, S5P_GPIO_PULL_NONE);
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020060 }
61
62 /* GPM1[1:0]: MODEL_REV[1:0] */
63 for (i = 0; i < 2; i++)
Akshay Saraswat1376cdd2014-05-13 10:30:14 +053064 modelrev |= (gpio_get_value(EXYNOS4X12_GPIO_M10 + i) << i);
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020065
66 /* board_rev[15:8] = model */
67 board_rev = modelrev << 8;
68}
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020069
Tom Rini4cc38852021-08-30 09:16:30 -040070#ifdef CONFIG_REVISION_TAG
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020071u32 get_board_rev(void)
72{
73 return board_rev;
74}
Tom Rini4cc38852021-08-30 09:16:30 -040075#endif
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020076
77static inline u32 get_model_rev(void)
78{
79 return (board_rev >> 8) & 0xff;
80}
81
82static void board_external_gpio_init(void)
83{
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +020084 /*
85 * some pins which in alive block are connected with external pull-up
86 * but it's default setting is pull-down.
87 * if that pin set as input then that floated
88 */
89
Akshay Saraswat1376cdd2014-05-13 10:30:14 +053090 gpio_set_pull(EXYNOS4X12_GPIO_X02, S5P_GPIO_PULL_NONE); /* PS_ALS_INT */
91 gpio_set_pull(EXYNOS4X12_GPIO_X04, S5P_GPIO_PULL_NONE); /* TSP_nINT */
92 gpio_set_pull(EXYNOS4X12_GPIO_X07, S5P_GPIO_PULL_NONE); /* AP_PMIC_IRQ*/
93 gpio_set_pull(EXYNOS4X12_GPIO_X15, S5P_GPIO_PULL_NONE); /* IF_PMIC_IRQ*/
94 gpio_set_pull(EXYNOS4X12_GPIO_X20, S5P_GPIO_PULL_NONE); /* VOL_UP */
95 gpio_set_pull(EXYNOS4X12_GPIO_X21, S5P_GPIO_PULL_NONE); /* VOL_DOWN */
96 gpio_set_pull(EXYNOS4X12_GPIO_X23, S5P_GPIO_PULL_NONE); /* FUEL_ALERT */
97 gpio_set_pull(EXYNOS4X12_GPIO_X24, S5P_GPIO_PULL_NONE); /* ADC_INT */
98 gpio_set_pull(EXYNOS4X12_GPIO_X27, S5P_GPIO_PULL_NONE); /* nPOWER */
99 gpio_set_pull(EXYNOS4X12_GPIO_X30, S5P_GPIO_PULL_NONE); /* WPC_INT */
100 gpio_set_pull(EXYNOS4X12_GPIO_X35, S5P_GPIO_PULL_NONE); /* OK_KEY */
101 gpio_set_pull(EXYNOS4X12_GPIO_X37, S5P_GPIO_PULL_NONE); /* HDMI_HPD */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200102}
103
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100104int exynos_early_init_f(void)
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200105{
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200106 board_external_gpio_init();
107
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200108 return 0;
109}
110
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100111int exynos_init(void)
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200112{
Łukasz Majewski27937c02014-04-09 15:09:44 +0200113 struct exynos4_power *pwr =
114 (struct exynos4_power *)samsung_get_base_power();
115
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100116 check_hw_revision();
117 printf("HW Revision:\t0x%04x\n", board_rev);
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200118
Łukasz Majewski27937c02014-04-09 15:09:44 +0200119 /*
120 * First bootloader on the TRATS2 platform uses
121 * INFORM4 and INFORM5 registers for recovery
122 *
123 * To indicate correct boot chain - those two
124 * registers must be cleared out
125 */
126 writel(0, &pwr->inform4);
127 writel(0, &pwr->inform5);
128
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200129 return 0;
130}
131
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100132int exynos_power_init(void)
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200133{
Igor Opaniukf7c91762021-02-09 13:52:45 +0200134#if !CONFIG_IS_ENABLED(DM_I2C) /* TODO(maintainer): Convert to driver model */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200135 int chrg;
136 struct power_battery *pb;
137 struct pmic *p_chrg, *p_muic, *p_fg, *p_bat;
138
Piotr Wilczek97ae1832013-12-18 15:43:37 +0100139 pmic_init_max77693(I2C_10); /* I2C adapter 10 - bus name soft1 */
140 power_muic_init(I2C_10); /* I2C adapter 10 - bus name soft1 */
141 power_fg_init(I2C_9); /* I2C adapter 9 - bus name soft0 */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200142 power_bat_init(0);
143
144 p_chrg = pmic_get("MAX77693_PMIC");
145 if (!p_chrg) {
146 puts("MAX77693_PMIC: Not found\n");
147 return -ENODEV;
148 }
149
150 p_muic = pmic_get("MAX77693_MUIC");
151 if (!p_muic) {
152 puts("MAX77693_MUIC: Not found\n");
153 return -ENODEV;
154 }
155
156 p_fg = pmic_get("MAX77693_FG");
157 if (!p_fg) {
158 puts("MAX17042_FG: Not found\n");
159 return -ENODEV;
160 }
161
162 if (p_chrg->chrg->chrg_bat_present(p_chrg) == 0)
163 puts("No battery detected\n");
164
165 p_bat = pmic_get("BAT_TRATS2");
166 if (!p_bat) {
167 puts("BAT_TRATS2: Not found\n");
168 return -ENODEV;
169 }
170
171 p_fg->parent = p_bat;
172 p_chrg->parent = p_bat;
173 p_muic->parent = p_bat;
174
175 p_bat->pbat->battery_init(p_bat, p_fg, p_chrg, p_muic);
176
177 pb = p_bat->pbat;
178 chrg = p_muic->chrg->chrg_type(p_muic);
179 debug("CHARGER TYPE: %d\n", chrg);
180
181 if (!p_chrg->chrg->chrg_bat_present(p_chrg)) {
182 puts("No battery detected\n");
Przemyslaw Marczakdd0c48e2014-06-10 16:55:08 +0200183 return 0;
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200184 }
185
186 p_fg->fg->fg_battery_check(p_fg, p_bat);
187
188 if (pb->bat->state == CHARGE && chrg == CHARGER_USB)
189 puts("CHARGE Battery !\n");
Simon Glass7bbb7d92016-11-23 06:34:40 -0700190#endif
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200191 return 0;
192}
193
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100194#ifdef CONFIG_USB_GADGET
195static int s5pc210_phy_control(int on)
196{
Igor Opaniukf7c91762021-02-09 13:52:45 +0200197#if !CONFIG_IS_ENABLED(DM_I2C) /* TODO(maintainer): Convert to driver model */
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100198 int ret = 0;
199 unsigned int val;
200 struct pmic *p, *p_pmic, *p_muic;
201
202 p_pmic = pmic_get("MAX77686_PMIC");
203 if (!p_pmic)
204 return -ENODEV;
205
206 if (pmic_probe(p_pmic))
207 return -1;
208
209 p_muic = pmic_get("MAX77693_MUIC");
210 if (!p_muic)
211 return -ENODEV;
212
213 if (pmic_probe(p_muic))
214 return -1;
215
216 if (on) {
217 ret = max77686_set_ldo_mode(p_pmic, 12, OPMODE_ON);
218 if (ret)
219 return -1;
220
221 p = pmic_get("MAX77693_PMIC");
222 if (!p)
223 return -ENODEV;
224
225 if (pmic_probe(p))
226 return -1;
227
228 /* SAFEOUT */
229 ret = pmic_reg_read(p, MAX77693_SAFEOUT, &val);
230 if (ret)
231 return -1;
232
233 val |= MAX77693_ENSAFEOUT1;
234 ret = pmic_reg_write(p, MAX77693_SAFEOUT, val);
235 if (ret)
236 return -1;
237
238 /* PATH: USB */
239 ret = pmic_reg_write(p_muic, MAX77693_MUIC_CONTROL1,
240 MAX77693_MUIC_CTRL1_DN1DP2);
241
242 } else {
243 ret = max77686_set_ldo_mode(p_pmic, 12, OPMODE_LPM);
244 if (ret)
245 return -1;
246
247 /* PATH: UART */
248 ret = pmic_reg_write(p_muic, MAX77693_MUIC_CONTROL1,
249 MAX77693_MUIC_CTRL1_UT1UR2);
250 }
251
252 if (ret)
253 return -1;
Simon Glass7bbb7d92016-11-23 06:34:40 -0700254#endif
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100255 return 0;
256}
257
Marek Vasut6939aca2015-12-04 02:23:29 +0100258struct dwc2_plat_otg_data s5pc210_otg_data = {
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100259 .phy_control = s5pc210_phy_control,
260 .regs_phy = EXYNOS4X12_USBPHY_BASE,
261 .regs_otg = EXYNOS4X12_USBOTG_BASE,
262 .usb_phy_ctrl = EXYNOS4X12_USBPHY_CONTROL,
263 .usb_flags = PHY0_SLEEP,
264};
265
266int board_usb_init(int index, enum usb_init_type init)
267{
268 debug("USB_udc_probe\n");
Marek Vasut01b61fa2015-12-04 02:26:33 +0100269 return dwc2_udc_probe(&s5pc210_otg_data);
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100270}
271
Mateusz Zalega21fe3f72014-04-30 13:07:48 +0200272int g_dnl_board_usb_cable_connected(void)
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100273{
Igor Opaniukf7c91762021-02-09 13:52:45 +0200274#if !CONFIG_IS_ENABLED(DM_I2C) /* TODO(maintainer): Convert to driver model */
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100275 struct pmic *muic = pmic_get("MAX77693_MUIC");
276 if (!muic)
277 return 0;
278
279 return !!muic->chrg->chrg_type(muic);
Simon Glass7bbb7d92016-11-23 06:34:40 -0700280#else
281 return false;
282#endif
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100283}
284#endif
Piotr Wilczek0c2ba4c2013-11-21 15:46:45 +0100285
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200286/*
287 * LCD
288 */
289
290#ifdef CONFIG_LCD
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100291int mipi_power(void)
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200292{
Igor Opaniukf7c91762021-02-09 13:52:45 +0200293#if !CONFIG_IS_ENABLED(DM_I2C) /* TODO(maintainer): Convert to driver model */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200294 struct pmic *p = pmic_get("MAX77686_PMIC");
295
296 /* LDO8 VMIPI_1.0V_AP */
297 max77686_set_ldo_mode(p, 8, OPMODE_ON);
298 /* LDO10 VMIPI_1.8V_AP */
299 max77686_set_ldo_mode(p, 10, OPMODE_ON);
Simon Glass7bbb7d92016-11-23 06:34:40 -0700300#endif
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200301
302 return 0;
303}
304
305void exynos_lcd_power_on(void)
306{
Igor Opaniukf7c91762021-02-09 13:52:45 +0200307#if !CONFIG_IS_ENABLED(DM_I2C) /* TODO(maintainer): Convert to driver model */
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200308 struct pmic *p = pmic_get("MAX77686_PMIC");
309
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200310 /* LCD_2.2V_EN: GPC0[1] */
Simon Glass4f83d3d2014-10-20 19:48:39 -0600311 gpio_request(EXYNOS4X12_GPIO_C01, "lcd_2v2_en");
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530312 gpio_set_pull(EXYNOS4X12_GPIO_C01, S5P_GPIO_PULL_UP);
313 gpio_direction_output(EXYNOS4X12_GPIO_C01, 1);
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200314
315 /* LDO25 VCC_3.1V_LCD */
316 pmic_probe(p);
317 max77686_set_ldo_voltage(p, 25, 3100000);
318 max77686_set_ldo_mode(p, 25, OPMODE_LPM);
Simon Glass7bbb7d92016-11-23 06:34:40 -0700319#endif
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200320}
321
322void exynos_reset_lcd(void)
323{
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200324 /* reset lcd */
Simon Glass4f83d3d2014-10-20 19:48:39 -0600325 gpio_request(EXYNOS4X12_GPIO_F21, "lcd_reset");
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530326 gpio_direction_output(EXYNOS4X12_GPIO_F21, 0);
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200327 udelay(10);
Akshay Saraswat1376cdd2014-05-13 10:30:14 +0530328 gpio_set_value(EXYNOS4X12_GPIO_F21, 1);
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200329}
330
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100331void exynos_lcd_misc_init(vidinfo_t *vid)
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200332{
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200333#ifdef CONFIG_TIZEN
334 get_tizen_logo_info(vid);
335#endif
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100336#ifdef CONFIG_S6E8AX0
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200337 s6e8ax0_init();
Przemyslaw Marczakd87efc92014-01-22 11:24:19 +0100338#endif
Piotr Wilczek2b3c92a2013-09-20 15:01:27 +0200339}
Piotr Wilczek87d2e782014-03-07 14:59:49 +0100340#endif /* LCD */