blob: 0f9267b68e4153c47939f7929eb388cfdd4bfbf8 [file] [log] [blame]
Kever Yang0d3d7832016-07-19 21:16:59 +08001/*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
Philipp Tomsich3df66262017-09-29 19:27:54 +02006
Kever Yang0d3d7832016-07-19 21:16:59 +08007#include <common.h>
Kever Yang6d26c062016-08-16 17:58:13 +08008#include <dm.h>
9#include <dm/pinctrl.h>
Kever Yang11c21c52016-09-23 15:57:20 +080010#include <dm/uclass-internal.h>
Kever Yang6d26c062016-08-16 17:58:13 +080011#include <asm/arch/periph.h>
Kever Yangb1395292016-08-24 12:02:22 +080012#include <power/regulator.h>
Philipp Tomsich3df66262017-09-29 19:27:54 +020013#include <spl.h>
Kever Yang0d3d7832016-07-19 21:16:59 +080014
Kever Yang0d3d7832016-07-19 21:16:59 +080015int board_init(void)
16{
Kever Yangb1395292016-08-24 12:02:22 +080017 struct udevice *pinctrl, *regulator;
Kever Yang6d26c062016-08-16 17:58:13 +080018 int ret;
19
20 /*
21 * The PWM do not have decicated interrupt number in dts and can
22 * not get periph_id by pinctrl framework, so let's init them here.
23 * The PWM2 and PWM3 are for pwm regulater.
24 */
25 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
26 if (ret) {
27 debug("%s: Cannot find pinctrl device\n", __func__);
28 goto out;
29 }
30
Eric Gao75058e22017-05-02 18:23:55 +080031 /* Enable pwm0 for panel backlight */
32 ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_PWM0);
33 if (ret) {
34 debug("%s PWM0 pinctrl init fail! (ret=%d)\n", __func__, ret);
35 goto out;
36 }
37
Kever Yang6d26c062016-08-16 17:58:13 +080038 ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_PWM2);
39 if (ret) {
40 debug("%s PWM2 pinctrl init fail!\n", __func__);
41 goto out;
42 }
43
44 ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_PWM3);
45 if (ret) {
46 debug("%s PWM3 pinctrl init fail!\n", __func__);
47 goto out;
48 }
49
Kever Yang9988df72017-04-12 12:00:06 +080050 ret = regulators_enable_boot_on(false);
Kever Yang11c21c52016-09-23 15:57:20 +080051 if (ret)
Kever Yang9988df72017-04-12 12:00:06 +080052 debug("%s: Cannot enable boot on regulator\n", __func__);
Kever Yang11c21c52016-09-23 15:57:20 +080053
Kever Yangb1395292016-08-24 12:02:22 +080054 ret = regulator_get_by_platname("vcc5v0_host", &regulator);
55 if (ret) {
56 debug("%s vcc5v0_host init fail! ret %d\n", __func__, ret);
57 goto out;
58 }
59
60 ret = regulator_set_enable(regulator, true);
61 if (ret) {
62 debug("%s vcc5v0-host-en set fail!\n", __func__);
63 goto out;
64 }
65
Kever Yang6d26c062016-08-16 17:58:13 +080066out:
Kever Yang0d3d7832016-07-19 21:16:59 +080067 return 0;
68}
Philipp Tomsich3df66262017-09-29 19:27:54 +020069
70void spl_board_init(void)
71{
72 struct udevice *pinctrl;
73 int ret;
74
75 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl);
76 if (ret) {
77 debug("%s: Cannot find pinctrl device\n", __func__);
78 goto err;
79 }
80
81 /* Enable debug UART */
82 ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_UART_DBG);
83 if (ret) {
84 debug("%s: Failed to set up console UART\n", __func__);
85 goto err;
86 }
87
88 preloader_console_init();
89 return;
90err:
91 printf("%s: Error %d\n", __func__, ret);
92
93 /* No way to report error here */
94 hang();
95}