1 /* 2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 #include <common.h> 7 #include <dm.h> 8 #include <dm/pinctrl.h> 9 #include <asm/arch/periph.h> 10 #include <power/regulator.h> 11 12 DECLARE_GLOBAL_DATA_PTR; 13 14 int board_init(void) 15 { 16 struct udevice *pinctrl, *regulator; 17 int ret; 18 19 /* 20 * The PWM do not have decicated interrupt number in dts and can 21 * not get periph_id by pinctrl framework, so let's init them here. 22 * The PWM2 and PWM3 are for pwm regulater. 23 */ 24 ret = uclass_get_device(UCLASS_PINCTRL, 0, &pinctrl); 25 if (ret) { 26 debug("%s: Cannot find pinctrl device\n", __func__); 27 goto out; 28 } 29 30 ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_PWM2); 31 if (ret) { 32 debug("%s PWM2 pinctrl init fail!\n", __func__); 33 goto out; 34 } 35 36 ret = pinctrl_request_noflags(pinctrl, PERIPH_ID_PWM3); 37 if (ret) { 38 debug("%s PWM3 pinctrl init fail!\n", __func__); 39 goto out; 40 } 41 42 ret = regulator_get_by_platname("vcc5v0_host", ®ulator); 43 if (ret) { 44 debug("%s vcc5v0_host init fail! ret %d\n", __func__, ret); 45 goto out; 46 } 47 48 ret = regulator_set_enable(regulator, true); 49 if (ret) { 50 debug("%s vcc5v0-host-en set fail!\n", __func__); 51 goto out; 52 } 53 54 out: 55 return 0; 56 } 57 58 int dram_init(void) 59 { 60 gd->ram_size = 0x80000000; 61 return 0; 62 } 63 64 void dram_init_banksize(void) 65 { 66 /* Reserve 0x200000 for ATF bl31 */ 67 gd->bd->bi_dram[0].start = 0x200000; 68 gd->bd->bi_dram[0].size = 0x80000000; 69 } 70