blob: 0fc6b683f2beb4c01fcb983b55076c6eed866b4b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Kever Yang6ba54052017-11-03 15:16:12 +08002/*
3 * (C) Copyright 2017 Rockchip Electronics Co., Ltd
Kever Yang6ba54052017-11-03 15:16:12 +08004 */
5
6#include <common.h>
7#include <dm.h>
8#include <errno.h>
9#include <sysreset.h>
10#include <asm/io.h>
Kever Yang15f09a12019-03-28 11:01:23 +080011#include <asm/arch-rockchip/clock.h>
12#include <asm/arch-rockchip/cru_rk3328.h>
13#include <asm/arch-rockchip/hardware.h>
Kever Yang6ba54052017-11-03 15:16:12 +080014#include <linux/err.h>
15
16int rockchip_sysreset_request(struct udevice *dev, enum sysreset_t type)
17{
18 struct sysreset_reg *offset = dev_get_priv(dev);
19 unsigned long cru_base = (unsigned long)rockchip_get_cru();
20
21 if (IS_ERR_VALUE(cru_base))
22 return (int)cru_base;
23
24 switch (type) {
25 case SYSRESET_WARM:
26 writel(0xeca8, cru_base + offset->glb_srst_snd_value);
27 break;
28 case SYSRESET_COLD:
29 writel(0xfdb9, cru_base + offset->glb_srst_fst_value);
30 break;
31 default:
32 return -EPROTONOSUPPORT;
33 }
34
35 return -EINPROGRESS;
36}
37
38static struct sysreset_ops rockchip_sysreset = {
39 .request = rockchip_sysreset_request,
40};
41
42U_BOOT_DRIVER(sysreset_rockchip) = {
43 .name = "rockchip_sysreset",
44 .id = UCLASS_SYSRESET,
45 .ops = &rockchip_sysreset,
46};