blob: 0ed5396b3e91ba912bca2e2d97d250d4ad40cc4d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
maxims@google.com750875c2017-04-17 12:00:24 -07002/*
3 * Copyright 2017 Google, Inc
Chia-Wei, Wangacc78362020-10-15 10:25:13 +08004 * Copyright 2020 ASPEED Technology Inc.
maxims@google.com750875c2017-04-17 12:00:24 -07005 */
6
maxims@google.com750875c2017-04-17 12:00:24 -07007#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -06008#include <log.h>
maxims@google.com750875c2017-04-17 12:00:24 -07009#include <misc.h>
10#include <reset.h>
11#include <reset-uclass.h>
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080012#include <linux/err.h>
maxims@google.com750875c2017-04-17 12:00:24 -070013#include <asm/io.h>
14#include <asm/arch/scu_ast2500.h>
maxims@google.com750875c2017-04-17 12:00:24 -070015
maxims@google.com750875c2017-04-17 12:00:24 -070016struct ast2500_reset_priv {
maxims@google.com750875c2017-04-17 12:00:24 -070017 struct ast2500_scu *scu;
18};
19
maxims@google.com750875c2017-04-17 12:00:24 -070020static int ast2500_reset_assert(struct reset_ctl *reset_ctl)
21{
22 struct ast2500_reset_priv *priv = dev_get_priv(reset_ctl->dev);
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080023 struct ast2500_scu *scu = priv->scu;
maxims@google.com750875c2017-04-17 12:00:24 -070024
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080025 debug("%s: reset_ctl->id: %lu\n", __func__, reset_ctl->id);
maxims@google.com750875c2017-04-17 12:00:24 -070026
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080027 if (reset_ctl->id < 32)
28 setbits_le32(&scu->sysreset_ctrl1, BIT(reset_ctl->id));
29 else
30 setbits_le32(&scu->sysreset_ctrl2, BIT(reset_ctl->id - 32));
maxims@google.com750875c2017-04-17 12:00:24 -070031
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080032 return 0;
maxims@google.com750875c2017-04-17 12:00:24 -070033}
34
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080035static int ast2500_reset_deassert(struct reset_ctl *reset_ctl)
maxims@google.com750875c2017-04-17 12:00:24 -070036{
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080037 struct ast2500_reset_priv *priv = dev_get_priv(reset_ctl->dev);
38 struct ast2500_scu *scu = priv->scu;
39
40 debug("%s: reset_ctl->id: %lu\n", __func__, reset_ctl->id);
41
42 if (reset_ctl->id < 32)
43 clrbits_le32(&scu->sysreset_ctrl1, BIT(reset_ctl->id));
44 else
45 clrbits_le32(&scu->sysreset_ctrl2, BIT(reset_ctl->id - 32));
maxims@google.com750875c2017-04-17 12:00:24 -070046
47 return 0;
48}
49
Joel Stanley09df10d2022-06-23 14:40:37 +093050static int ast2500_reset_status(struct reset_ctl *reset_ctl)
51{
52 struct ast2500_reset_priv *priv = dev_get_priv(reset_ctl->dev);
53 struct ast2500_scu *scu = priv->scu;
54 int status;
55
56 debug("%s: reset_ctl->id: %lu\n", __func__, reset_ctl->id);
57
58 if (reset_ctl->id < 32)
59 status = BIT(reset_ctl->id) & readl(&scu->sysreset_ctrl1);
60 else
61 status = BIT(reset_ctl->id - 32) & readl(&scu->sysreset_ctrl2);
62
63 return !!status;
64}
65
66
67
maxims@google.com750875c2017-04-17 12:00:24 -070068static int ast2500_reset_probe(struct udevice *dev)
69{
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080070 int rc;
maxims@google.com750875c2017-04-17 12:00:24 -070071 struct ast2500_reset_priv *priv = dev_get_priv(dev);
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080072 struct udevice *scu_dev;
73
74 /* get SCU base from clock device */
75 rc = uclass_get_device_by_driver(UCLASS_CLK,
Simon Glass65130cd2020-12-28 20:34:56 -070076 DM_DRIVER_GET(aspeed_ast2500_scu), &scu_dev);
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080077 if (rc) {
78 debug("%s: clock device not found, rc=%d\n", __func__, rc);
79 return rc;
80 }
maxims@google.com750875c2017-04-17 12:00:24 -070081
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080082 priv->scu = devfdt_get_addr_ptr(scu_dev);
83 if (IS_ERR_OR_NULL(priv->scu)) {
84 debug("%s: invalid SCU base pointer\n", __func__);
85 return PTR_ERR(priv->scu);
86 }
maxims@google.com750875c2017-04-17 12:00:24 -070087
88 return 0;
89}
90
91static const struct udevice_id ast2500_reset_ids[] = {
92 { .compatible = "aspeed,ast2500-reset" },
93 { }
94};
95
96struct reset_ops ast2500_reset_ops = {
Chia-Wei, Wangacc78362020-10-15 10:25:13 +080097 .rst_assert = ast2500_reset_assert,
98 .rst_deassert = ast2500_reset_deassert,
Joel Stanley09df10d2022-06-23 14:40:37 +093099 .rst_status = ast2500_reset_status,
maxims@google.com750875c2017-04-17 12:00:24 -0700100};
101
102U_BOOT_DRIVER(ast2500_reset) = {
Chia-Wei, Wangacc78362020-10-15 10:25:13 +0800103 .name = "ast2500_reset",
104 .id = UCLASS_RESET,
maxims@google.com750875c2017-04-17 12:00:24 -0700105 .of_match = ast2500_reset_ids,
106 .probe = ast2500_reset_probe,
107 .ops = &ast2500_reset_ops,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700108 .priv_auto = sizeof(struct ast2500_reset_priv),
maxims@google.com750875c2017-04-17 12:00:24 -0700109};