summaryrefslogtreecommitdiff
path: root/drivers/sysreset/sysreset_raa215300.c
blob: 32dfcb0aec8455e27f8f4a9322fcae434768c3df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (C) 2023 Renesas Electronics Corporation
 */

#include <dm.h>
#include <power/pmic.h>
#include <sysreset.h>

#define RAA215300_REG_SWRESET	0x6D
#define RAA215300_COLD_RESET	BIT(0)
#define RAA215300_WARM_RESET	BIT(1)

static int raa215300_sysreset_request(struct udevice *dev, enum sysreset_t type)
{
	struct udevice *pmic = dev_get_parent(dev);
	int ret;
	u8 val;

	/*
	 * The RAA215300 documentation names the available reset types
	 * differently to u-boot:
	 *
	 *   - A "warm" reset via the RAA215300 PMIC will fully reset the SoC
	 *     (CPU & GPIOs), so this corresponds to SYSRESET_COLD.
	 *
	 *   - A "cold" reset via the RAA215300 PMIC will cycle all power supply
	 *     rails, so this corresponds to SYSRESET_POWER.
	 */
	switch (type) {
	case SYSRESET_COLD:
		val = RAA215300_WARM_RESET;
		break;

	case SYSRESET_POWER:
		val = RAA215300_COLD_RESET;
		break;

	default:
		return -EPROTONOSUPPORT;
	}

	ret = pmic_reg_write(pmic, RAA215300_REG_SWRESET, val);
	if (ret)
		return ret;

	return -EINPROGRESS;
}

static struct sysreset_ops raa215300_sysreset_ops = {
	.request = raa215300_sysreset_request,
};

U_BOOT_DRIVER(raa215300_sysreset) = {
	.name = "raa215300_sysreset",
	.id = UCLASS_SYSRESET,
	.ops = &raa215300_sysreset_ops,
};