blob: 5ee9e020fb3b658f5aeb2c7a2f4d1fe9b7a82353 [file] [log] [blame]
Michal Simek0fd9f362022-02-07 10:27:37 +01001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2021, Xilinx. Inc.
4 */
5
6#include <common.h>
7#include <dm.h>
Michal Simekf0a6a322022-03-01 09:10:59 +01008#include <dm/device_compat.h>
Michal Simek0fd9f362022-02-07 10:27:37 +01009#include <log.h>
10#include <malloc.h>
11#include <misc.h>
12#include <power-domain-uclass.h>
13#include <linux/bitops.h>
14
15#include <zynqmp_firmware.h>
16
Michal Simek0fd9f362022-02-07 10:27:37 +010017static int zynqmp_pm_request_node(const u32 node, const u32 capabilities,
18 const u32 qos, const enum zynqmp_pm_request_ack ack)
19{
20 return xilinx_pm_request(PM_REQUEST_NODE, node, capabilities,
21 qos, ack, NULL);
22}
23
24static int zynqmp_power_domain_request(struct power_domain *power_domain)
25{
Stefan Herbrechtsmeier0fd9b972023-05-23 14:42:12 +020026 int ret = 0;
27
Michal Simekf0a6a322022-03-01 09:10:59 +010028 dev_dbg(power_domain->dev, "Request for id: %ld\n", power_domain->id);
Michal Simek0fd9f362022-02-07 10:27:37 +010029
Stefan Herbrechtsmeier0fd9b972023-05-23 14:42:12 +020030 if (IS_ENABLED(CONFIG_ARCH_ZYNQMP)) {
31 ret = zynqmp_pmufw_node(power_domain->id);
32 if (ret == -ENODEV)
33 ret = 0;
34 }
Ashok Reddy Soma0569d5f2022-08-05 11:19:56 +020035
Stefan Herbrechtsmeier0fd9b972023-05-23 14:42:12 +020036 return ret;
Michal Simek0fd9f362022-02-07 10:27:37 +010037}
38
39static int zynqmp_power_domain_free(struct power_domain *power_domain)
40{
41 /* nop now */
42 return 0;
43}
44
45static int zynqmp_power_domain_on(struct power_domain *power_domain)
46{
Michal Simekf0a6a322022-03-01 09:10:59 +010047 dev_dbg(power_domain->dev, "Domain ON for id: %ld\n", power_domain->id);
48
Michal Simek0fd9f362022-02-07 10:27:37 +010049 return zynqmp_pm_request_node(power_domain->id,
50 ZYNQMP_PM_CAPABILITY_ACCESS,
51 ZYNQMP_PM_MAX_QOS,
52 ZYNQMP_PM_REQUEST_ACK_BLOCKING);
53}
54
55static int zynqmp_power_domain_off(struct power_domain *power_domain)
56{
57 /* nop now */
58 return 0;
59}
60
61struct power_domain_ops zynqmp_power_domain_ops = {
62 .request = zynqmp_power_domain_request,
63 .rfree = zynqmp_power_domain_free,
64 .on = zynqmp_power_domain_on,
65 .off = zynqmp_power_domain_off,
66};
67
68static int zynqmp_power_domain_probe(struct udevice *dev)
69{
70 return 0;
71}
72
73U_BOOT_DRIVER(zynqmp_power_domain) = {
74 .name = "zynqmp_power_domain",
75 .id = UCLASS_POWER_DOMAIN,
76 .probe = zynqmp_power_domain_probe,
77 .ops = &zynqmp_power_domain_ops,
78};