blob: e65ff288ea1b40995d9f78c62e2423cb0b45f0d9 [file] [log] [blame]
Tom Rini4549e782018-05-06 18:27:01 -04001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
Patrick Delaunayf8598d92018-03-12 10:46:18 +01002/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
Patrick Delaunayf8598d92018-03-12 10:46:18 +01004 */
5
6#include <config.h>
7#include <common.h>
8#include <spl.h>
9#include <dm.h>
10#include <ram.h>
11#include <asm/io.h>
Patrick Delaunayf8598d92018-03-12 10:46:18 +010012#include <power/pmic.h>
Patrick Delaunayd46c22b2019-02-04 11:26:16 +010013#include <power/stpmic1.h>
Patrick Delaunayf8598d92018-03-12 10:46:18 +010014#include <asm/arch/ddr.h>
15
16void spl_board_init(void)
17{
18 /* Keep vdd on during the reset cycle */
Patrick Delaunay42f01aa2019-02-04 11:26:17 +010019#if defined(CONFIG_PMIC_STPMIC1) && defined(CONFIG_SPL_POWER_SUPPORT)
Patrick Delaunayf8598d92018-03-12 10:46:18 +010020 struct udevice *dev;
21 int ret;
22
23 ret = uclass_get_device_by_driver(UCLASS_PMIC,
Patrick Delaunay42f01aa2019-02-04 11:26:17 +010024 DM_GET_DRIVER(pmic_stpmic1), &dev);
Patrick Delaunayf8598d92018-03-12 10:46:18 +010025 if (!ret)
26 pmic_clrsetbits(dev,
Patrick Delaunaydb4ff0d2019-02-04 11:26:18 +010027 STPMIC1_BUCKS_MRST_CR,
28 STPMIC1_MRST_BUCK(STPMIC1_BUCK3),
29 STPMIC1_MRST_BUCK(STPMIC1_BUCK3));
Patrick Delaunay178a4152019-07-30 19:16:20 +020030
31 /* Check if debug is enabled to program PMIC according to the bit */
32 if ((readl(TAMP_BOOT_CONTEXT) & TAMP_BOOT_DEBUG_ON) && !ret) {
33 printf("Keep debug unit ON\n");
34
35 pmic_clrsetbits(dev, STPMIC1_BUCKS_MRST_CR,
36 STPMIC1_MRST_BUCK_DEBUG,
37 STPMIC1_MRST_BUCK_DEBUG);
38
39 if (STPMIC1_MRST_LDO_DEBUG)
40 pmic_clrsetbits(dev, STPMIC1_LDOS_MRST_CR,
41 STPMIC1_MRST_LDO_DEBUG,
42 STPMIC1_MRST_LDO_DEBUG);
43 }
Patrick Delaunayf8598d92018-03-12 10:46:18 +010044#endif
45}