1 // SPDX-License-Identifier: GPL-2.0
3 * Xilinx Zynq MPSoC Firmware layer
5 * Copyright (C) 2014-2022 Xilinx, Inc.
13 #include <linux/arm-smccc.h>
14 #include <linux/compiler.h>
15 #include <linux/device.h>
16 #include <linux/init.h>
17 #include <linux/mfd/core.h>
18 #include <linux/module.h>
20 #include <linux/of_platform.h>
21 #include <linux/slab.h>
22 #include <linux/uaccess.h>
23 #include <linux/hashtable.h>
25 #include <linux/firmware/xlnx-zynqmp.h>
26 #include <linux/firmware/xlnx-event-manager.h>
27 #include "zynqmp-debug.h"
29 /* Max HashMap Order for PM API feature check (1<<7 = 128) */
30 #define PM_API_FEATURE_CHECK_MAX_ORDER 7
32 /* CRL registers and bitfields */
33 #define CRL_APB_BASE 0xFF5E0000U
34 /* BOOT_PIN_CTRL- Used to control the mode pins after boot */
35 #define CRL_APB_BOOT_PIN_CTRL (CRL_APB_BASE + (0x250U))
36 /* BOOT_PIN_CTRL_MASK- out_val[11:8], out_en[3:0] */
37 #define CRL_APB_BOOTPIN_CTRL_MASK 0xF0FU
39 /* IOCTL/QUERY feature payload size */
40 #define FEATURE_PAYLOAD_SIZE 2
42 /* Firmware feature check version mask */
43 #define FIRMWARE_VERSION_MASK GENMASK(15, 0)
45 static bool feature_check_enabled;
46 static DEFINE_HASHTABLE(pm_api_features_map, PM_API_FEATURE_CHECK_MAX_ORDER);
47 static u32 ioctl_features[FEATURE_PAYLOAD_SIZE];
48 static u32 query_features[FEATURE_PAYLOAD_SIZE];
50 static struct platform_device *em_dev;
53 * struct zynqmp_devinfo - Structure for Zynqmp device instance
54 * @dev: Device Pointer
55 * @feature_conf_id: Feature conf id
57 struct zynqmp_devinfo {
63 * struct pm_api_feature_data - PM API Feature data
64 * @pm_api_id: PM API Id, used as key to index into hashmap
65 * @feature_status: status of PM API feature: valid, invalid
66 * @hentry: hlist_node that hooks this entry into hashtable
68 struct pm_api_feature_data {
71 struct hlist_node hentry;
74 static const struct mfd_cell firmware_devs[] = {
76 .name = "zynqmp_power_controller",
81 * zynqmp_pm_ret_code() - Convert PMU-FW error codes to Linux error codes
82 * @ret_status: PMUFW return code
84 * Return: corresponding Linux error code
86 static int zynqmp_pm_ret_code(u32 ret_status)
90 case XST_PM_DOUBLE_REQ:
92 case XST_PM_NO_FEATURE:
94 case XST_PM_NO_ACCESS:
96 case XST_PM_ABORT_SUSPEND:
98 case XST_PM_MULT_USER:
100 case XST_PM_INTERNAL:
101 case XST_PM_CONFLICT:
102 case XST_PM_INVALID_NODE:
108 static noinline int do_fw_call_fail(u64 arg0, u64 arg1, u64 arg2,
115 * PM function call wrapper
116 * Invoke do_fw_call_smc or do_fw_call_hvc, depending on the configuration
118 static int (*do_fw_call)(u64, u64, u64, u32 *ret_payload) = do_fw_call_fail;
121 * do_fw_call_smc() - Call system-level platform management layer (SMC)
122 * @arg0: Argument 0 to SMC call
123 * @arg1: Argument 1 to SMC call
124 * @arg2: Argument 2 to SMC call
125 * @ret_payload: Returned value array
127 * Invoke platform management function via SMC call (no hypervisor present).
129 * Return: Returns status, either success or error+reason
131 static noinline int do_fw_call_smc(u64 arg0, u64 arg1, u64 arg2,
134 struct arm_smccc_res res;
136 arm_smccc_smc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res);
139 ret_payload[0] = lower_32_bits(res.a0);
140 ret_payload[1] = upper_32_bits(res.a0);
141 ret_payload[2] = lower_32_bits(res.a1);
142 ret_payload[3] = upper_32_bits(res.a1);
145 return zynqmp_pm_ret_code((enum pm_ret_status)res.a0);
149 * do_fw_call_hvc() - Call system-level platform management layer (HVC)
150 * @arg0: Argument 0 to HVC call
151 * @arg1: Argument 1 to HVC call
152 * @arg2: Argument 2 to HVC call
153 * @ret_payload: Returned value array
155 * Invoke platform management function via HVC
156 * HVC-based for communication through hypervisor
157 * (no direct communication with ATF).
159 * Return: Returns status, either success or error+reason
161 static noinline int do_fw_call_hvc(u64 arg0, u64 arg1, u64 arg2,
164 struct arm_smccc_res res;
166 arm_smccc_hvc(arg0, arg1, arg2, 0, 0, 0, 0, 0, &res);
169 ret_payload[0] = lower_32_bits(res.a0);
170 ret_payload[1] = upper_32_bits(res.a0);
171 ret_payload[2] = lower_32_bits(res.a1);
172 ret_payload[3] = upper_32_bits(res.a1);
175 return zynqmp_pm_ret_code((enum pm_ret_status)res.a0);
178 static int __do_feature_check_call(const u32 api_id, u32 *ret_payload)
183 smc_arg[0] = PM_SIP_SVC | PM_FEATURE_CHECK;
186 ret = do_fw_call(smc_arg[0], smc_arg[1], 0, ret_payload);
190 ret = ret_payload[1];
195 static int do_feature_check_call(const u32 api_id)
198 u32 ret_payload[PAYLOAD_ARG_CNT];
199 struct pm_api_feature_data *feature_data;
201 /* Check for existing entry in hash table for given api */
202 hash_for_each_possible(pm_api_features_map, feature_data, hentry,
204 if (feature_data->pm_api_id == api_id)
205 return feature_data->feature_status;
208 /* Add new entry if not present */
209 feature_data = kmalloc(sizeof(*feature_data), GFP_ATOMIC);
213 feature_data->pm_api_id = api_id;
214 ret = __do_feature_check_call(api_id, ret_payload);
216 feature_data->feature_status = ret;
217 hash_add(pm_api_features_map, &feature_data->hentry, api_id);
219 if (api_id == PM_IOCTL)
220 /* Store supported IOCTL IDs mask */
221 memcpy(ioctl_features, &ret_payload[2], FEATURE_PAYLOAD_SIZE * 4);
222 else if (api_id == PM_QUERY_DATA)
223 /* Store supported QUERY IDs mask */
224 memcpy(query_features, &ret_payload[2], FEATURE_PAYLOAD_SIZE * 4);
228 EXPORT_SYMBOL_GPL(zynqmp_pm_feature);
231 * zynqmp_pm_feature() - Check whether given feature is supported or not and
232 * store supported IOCTL/QUERY ID mask
233 * @api_id: API ID to check
235 * Return: Returns status, either success or error+reason
237 int zynqmp_pm_feature(const u32 api_id)
241 if (!feature_check_enabled)
244 ret = do_feature_check_call(api_id);
250 * zynqmp_pm_is_function_supported() - Check whether given IOCTL/QUERY function
251 * is supported or not
252 * @api_id: PM_IOCTL or PM_QUERY_DATA
253 * @id: IOCTL or QUERY function IDs
255 * Return: Returns status, either success or error+reason
257 int zynqmp_pm_is_function_supported(const u32 api_id, const u32 id)
262 /* Input arguments validation */
263 if (id >= 64 || (api_id != PM_IOCTL && api_id != PM_QUERY_DATA))
266 /* Check feature check API version */
267 ret = do_feature_check_call(PM_FEATURE_CHECK);
271 /* Check if feature check version 2 is supported or not */
272 if ((ret & FIRMWARE_VERSION_MASK) == PM_API_VERSION_2) {
274 * Call feature check for IOCTL/QUERY API to get IOCTL ID or
275 * QUERY ID feature status.
277 ret = do_feature_check_call(api_id);
281 bit_mask = (api_id == PM_IOCTL) ? ioctl_features : query_features;
283 if ((bit_mask[(id / 32)] & BIT((id % 32))) == 0U)
291 EXPORT_SYMBOL_GPL(zynqmp_pm_is_function_supported);
294 * zynqmp_pm_invoke_fn() - Invoke the system-level platform management layer
295 * caller function depending on the configuration
296 * @pm_api_id: Requested PM-API call
297 * @arg0: Argument 0 to requested PM-API call
298 * @arg1: Argument 1 to requested PM-API call
299 * @arg2: Argument 2 to requested PM-API call
300 * @arg3: Argument 3 to requested PM-API call
301 * @ret_payload: Returned value array
303 * Invoke platform management function for SMC or HVC call, depending on
305 * Following SMC Calling Convention (SMCCC) for SMC64:
306 * Pm Function Identifier,
307 * PM_SIP_SVC + PM_API_ID =
308 * ((SMC_TYPE_FAST << FUNCID_TYPE_SHIFT)
309 * ((SMC_64) << FUNCID_CC_SHIFT)
310 * ((SIP_START) << FUNCID_OEN_SHIFT)
311 * ((PM_API_ID) & FUNCID_NUM_MASK))
313 * PM_SIP_SVC - Registered ZynqMP SIP Service Call.
314 * PM_API_ID - Platform Management API ID.
316 * Return: Returns status, either success or error+reason
318 int zynqmp_pm_invoke_fn(u32 pm_api_id, u32 arg0, u32 arg1,
319 u32 arg2, u32 arg3, u32 *ret_payload)
322 * Added SIP service call Function Identifier
323 * Make sure to stay in x0 register
328 /* Check if feature is supported or not */
329 ret = zynqmp_pm_feature(pm_api_id);
333 smc_arg[0] = PM_SIP_SVC | pm_api_id;
334 smc_arg[1] = ((u64)arg1 << 32) | arg0;
335 smc_arg[2] = ((u64)arg3 << 32) | arg2;
337 return do_fw_call(smc_arg[0], smc_arg[1], smc_arg[2], ret_payload);
340 static u32 pm_api_version;
341 static u32 pm_tz_version;
343 int zynqmp_pm_register_sgi(u32 sgi_num, u32 reset)
347 ret = zynqmp_pm_invoke_fn(TF_A_PM_REGISTER_SGI, sgi_num, reset, 0, 0,
352 /* try old implementation as fallback strategy if above fails */
353 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_REGISTER_SGI, sgi_num,
358 * zynqmp_pm_get_api_version() - Get version number of PMU PM firmware
359 * @version: Returned version value
361 * Return: Returns status, either success or error+reason
363 int zynqmp_pm_get_api_version(u32 *version)
365 u32 ret_payload[PAYLOAD_ARG_CNT];
371 /* Check is PM API version already verified */
372 if (pm_api_version > 0) {
373 *version = pm_api_version;
376 ret = zynqmp_pm_invoke_fn(PM_GET_API_VERSION, 0, 0, 0, 0, ret_payload);
377 *version = ret_payload[1];
381 EXPORT_SYMBOL_GPL(zynqmp_pm_get_api_version);
384 * zynqmp_pm_get_chipid - Get silicon ID registers
385 * @idcode: IDCODE register
386 * @version: version register
388 * Return: Returns the status of the operation and the idcode and version
389 * registers in @idcode and @version.
391 int zynqmp_pm_get_chipid(u32 *idcode, u32 *version)
393 u32 ret_payload[PAYLOAD_ARG_CNT];
396 if (!idcode || !version)
399 ret = zynqmp_pm_invoke_fn(PM_GET_CHIPID, 0, 0, 0, 0, ret_payload);
400 *idcode = ret_payload[1];
401 *version = ret_payload[2];
405 EXPORT_SYMBOL_GPL(zynqmp_pm_get_chipid);
408 * zynqmp_pm_get_trustzone_version() - Get secure trustzone firmware version
409 * @version: Returned version value
411 * Return: Returns status, either success or error+reason
413 static int zynqmp_pm_get_trustzone_version(u32 *version)
415 u32 ret_payload[PAYLOAD_ARG_CNT];
421 /* Check is PM trustzone version already verified */
422 if (pm_tz_version > 0) {
423 *version = pm_tz_version;
426 ret = zynqmp_pm_invoke_fn(PM_GET_TRUSTZONE_VERSION, 0, 0,
428 *version = ret_payload[1];
434 * get_set_conduit_method() - Choose SMC or HVC based communication
435 * @np: Pointer to the device_node structure
437 * Use SMC or HVC-based functions to communicate with EL2/EL3.
439 * Return: Returns 0 on success or error code
441 static int get_set_conduit_method(struct device_node *np)
445 if (of_property_read_string(np, "method", &method)) {
446 pr_warn("%s missing \"method\" property\n", __func__);
450 if (!strcmp("hvc", method)) {
451 do_fw_call = do_fw_call_hvc;
452 } else if (!strcmp("smc", method)) {
453 do_fw_call = do_fw_call_smc;
455 pr_warn("%s Invalid \"method\" property: %s\n",
464 * zynqmp_pm_query_data() - Get query data from firmware
465 * @qdata: Variable to the zynqmp_pm_query_data structure
466 * @out: Returned output value
468 * Return: Returns status, either success or error+reason
470 int zynqmp_pm_query_data(struct zynqmp_pm_query_data qdata, u32 *out)
474 ret = zynqmp_pm_invoke_fn(PM_QUERY_DATA, qdata.qid, qdata.arg1,
475 qdata.arg2, qdata.arg3, out);
478 * For clock name query, all bytes in SMC response are clock name
479 * characters and return code is always success. For invalid clocks,
480 * clock name bytes would be zeros.
482 return qdata.qid == PM_QID_CLOCK_GET_NAME ? 0 : ret;
484 EXPORT_SYMBOL_GPL(zynqmp_pm_query_data);
487 * zynqmp_pm_clock_enable() - Enable the clock for given id
488 * @clock_id: ID of the clock to be enabled
490 * This function is used by master to enable the clock
491 * including peripherals and PLL clocks.
493 * Return: Returns status, either success or error+reason
495 int zynqmp_pm_clock_enable(u32 clock_id)
497 return zynqmp_pm_invoke_fn(PM_CLOCK_ENABLE, clock_id, 0, 0, 0, NULL);
499 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_enable);
502 * zynqmp_pm_clock_disable() - Disable the clock for given id
503 * @clock_id: ID of the clock to be disable
505 * This function is used by master to disable the clock
506 * including peripherals and PLL clocks.
508 * Return: Returns status, either success or error+reason
510 int zynqmp_pm_clock_disable(u32 clock_id)
512 return zynqmp_pm_invoke_fn(PM_CLOCK_DISABLE, clock_id, 0, 0, 0, NULL);
514 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_disable);
517 * zynqmp_pm_clock_getstate() - Get the clock state for given id
518 * @clock_id: ID of the clock to be queried
519 * @state: 1/0 (Enabled/Disabled)
521 * This function is used by master to get the state of clock
522 * including peripherals and PLL clocks.
524 * Return: Returns status, either success or error+reason
526 int zynqmp_pm_clock_getstate(u32 clock_id, u32 *state)
528 u32 ret_payload[PAYLOAD_ARG_CNT];
531 ret = zynqmp_pm_invoke_fn(PM_CLOCK_GETSTATE, clock_id, 0,
533 *state = ret_payload[1];
537 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_getstate);
540 * zynqmp_pm_clock_setdivider() - Set the clock divider for given id
541 * @clock_id: ID of the clock
542 * @divider: divider value
544 * This function is used by master to set divider for any clock
545 * to achieve desired rate.
547 * Return: Returns status, either success or error+reason
549 int zynqmp_pm_clock_setdivider(u32 clock_id, u32 divider)
551 return zynqmp_pm_invoke_fn(PM_CLOCK_SETDIVIDER, clock_id, divider,
554 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_setdivider);
557 * zynqmp_pm_clock_getdivider() - Get the clock divider for given id
558 * @clock_id: ID of the clock
559 * @divider: divider value
561 * This function is used by master to get divider values
564 * Return: Returns status, either success or error+reason
566 int zynqmp_pm_clock_getdivider(u32 clock_id, u32 *divider)
568 u32 ret_payload[PAYLOAD_ARG_CNT];
571 ret = zynqmp_pm_invoke_fn(PM_CLOCK_GETDIVIDER, clock_id, 0,
573 *divider = ret_payload[1];
577 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_getdivider);
580 * zynqmp_pm_clock_setrate() - Set the clock rate for given id
581 * @clock_id: ID of the clock
582 * @rate: rate value in hz
584 * This function is used by master to set rate for any clock.
586 * Return: Returns status, either success or error+reason
588 int zynqmp_pm_clock_setrate(u32 clock_id, u64 rate)
590 return zynqmp_pm_invoke_fn(PM_CLOCK_SETRATE, clock_id,
595 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_setrate);
598 * zynqmp_pm_clock_getrate() - Get the clock rate for given id
599 * @clock_id: ID of the clock
600 * @rate: rate value in hz
602 * This function is used by master to get rate
605 * Return: Returns status, either success or error+reason
607 int zynqmp_pm_clock_getrate(u32 clock_id, u64 *rate)
609 u32 ret_payload[PAYLOAD_ARG_CNT];
612 ret = zynqmp_pm_invoke_fn(PM_CLOCK_GETRATE, clock_id, 0,
614 *rate = ((u64)ret_payload[2] << 32) | ret_payload[1];
618 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_getrate);
621 * zynqmp_pm_clock_setparent() - Set the clock parent for given id
622 * @clock_id: ID of the clock
623 * @parent_id: parent id
625 * This function is used by master to set parent for any clock.
627 * Return: Returns status, either success or error+reason
629 int zynqmp_pm_clock_setparent(u32 clock_id, u32 parent_id)
631 return zynqmp_pm_invoke_fn(PM_CLOCK_SETPARENT, clock_id,
632 parent_id, 0, 0, NULL);
634 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_setparent);
637 * zynqmp_pm_clock_getparent() - Get the clock parent for given id
638 * @clock_id: ID of the clock
639 * @parent_id: parent id
641 * This function is used by master to get parent index
644 * Return: Returns status, either success or error+reason
646 int zynqmp_pm_clock_getparent(u32 clock_id, u32 *parent_id)
648 u32 ret_payload[PAYLOAD_ARG_CNT];
651 ret = zynqmp_pm_invoke_fn(PM_CLOCK_GETPARENT, clock_id, 0,
653 *parent_id = ret_payload[1];
657 EXPORT_SYMBOL_GPL(zynqmp_pm_clock_getparent);
660 * zynqmp_pm_set_pll_frac_mode() - PM API for set PLL mode
662 * @clk_id: PLL clock ID
663 * @mode: PLL mode (PLL_MODE_FRAC/PLL_MODE_INT)
665 * This function sets PLL mode
667 * Return: Returns status, either success or error+reason
669 int zynqmp_pm_set_pll_frac_mode(u32 clk_id, u32 mode)
671 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_SET_PLL_FRAC_MODE,
674 EXPORT_SYMBOL_GPL(zynqmp_pm_set_pll_frac_mode);
677 * zynqmp_pm_get_pll_frac_mode() - PM API for get PLL mode
679 * @clk_id: PLL clock ID
682 * This function return current PLL mode
684 * Return: Returns status, either success or error+reason
686 int zynqmp_pm_get_pll_frac_mode(u32 clk_id, u32 *mode)
688 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_GET_PLL_FRAC_MODE,
691 EXPORT_SYMBOL_GPL(zynqmp_pm_get_pll_frac_mode);
694 * zynqmp_pm_set_pll_frac_data() - PM API for setting pll fraction data
696 * @clk_id: PLL clock ID
697 * @data: fraction data
699 * This function sets fraction data.
700 * It is valid for fraction mode only.
702 * Return: Returns status, either success or error+reason
704 int zynqmp_pm_set_pll_frac_data(u32 clk_id, u32 data)
706 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_SET_PLL_FRAC_DATA,
709 EXPORT_SYMBOL_GPL(zynqmp_pm_set_pll_frac_data);
712 * zynqmp_pm_get_pll_frac_data() - PM API for getting pll fraction data
714 * @clk_id: PLL clock ID
715 * @data: fraction data
717 * This function returns fraction data value.
719 * Return: Returns status, either success or error+reason
721 int zynqmp_pm_get_pll_frac_data(u32 clk_id, u32 *data)
723 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_GET_PLL_FRAC_DATA,
726 EXPORT_SYMBOL_GPL(zynqmp_pm_get_pll_frac_data);
729 * zynqmp_pm_set_sd_tapdelay() - Set tap delay for the SD device
731 * @node_id: Node ID of the device
732 * @type: Type of tap delay to set (input/output)
733 * @value: Value to set fot the tap delay
735 * This function sets input/output tap delay for the SD device.
737 * Return: Returns status, either success or error+reason
739 int zynqmp_pm_set_sd_tapdelay(u32 node_id, u32 type, u32 value)
741 u32 reg = (type == PM_TAPDELAY_INPUT) ? SD_ITAPDLY : SD_OTAPDLYSEL;
742 u32 mask = (node_id == NODE_SD_0) ? GENMASK(15, 0) : GENMASK(31, 16);
745 return zynqmp_pm_invoke_fn(PM_IOCTL, node_id,
746 IOCTL_SET_SD_TAPDELAY,
751 * Work around completely misdesigned firmware API on Xilinx ZynqMP.
752 * The IOCTL_SET_SD_TAPDELAY firmware call allows the caller to only
753 * ever set IOU_SLCR SD_ITAPDLY Register SD0_ITAPDLYENA/SD1_ITAPDLYENA
754 * bits, but there is no matching call to clear those bits. If those
755 * bits are not cleared, SDMMC tuning may fail.
757 * Luckily, there are PM_MMIO_READ/PM_MMIO_WRITE calls which seem to
758 * allow complete unrestricted access to all address space, including
759 * IOU_SLCR SD_ITAPDLY Register and all the other registers, access
760 * to which was supposed to be protected by the current firmware API.
762 * Use PM_MMIO_READ/PM_MMIO_WRITE to re-implement the missing counter
763 * part of IOCTL_SET_SD_TAPDELAY which clears SDx_ITAPDLYENA bits.
765 return zynqmp_pm_invoke_fn(PM_MMIO_WRITE, reg, mask, 0, 0, NULL);
767 EXPORT_SYMBOL_GPL(zynqmp_pm_set_sd_tapdelay);
770 * zynqmp_pm_sd_dll_reset() - Reset DLL logic
772 * @node_id: Node ID of the device
775 * This function resets DLL logic for the SD device.
777 * Return: Returns status, either success or error+reason
779 int zynqmp_pm_sd_dll_reset(u32 node_id, u32 type)
781 return zynqmp_pm_invoke_fn(PM_IOCTL, node_id, IOCTL_SD_DLL_RESET,
784 EXPORT_SYMBOL_GPL(zynqmp_pm_sd_dll_reset);
787 * zynqmp_pm_ospi_mux_select() - OSPI Mux selection
789 * @dev_id: Device Id of the OSPI device.
790 * @select: OSPI Mux select value.
792 * This function select the OSPI Mux.
794 * Return: Returns status, either success or error+reason
796 int zynqmp_pm_ospi_mux_select(u32 dev_id, u32 select)
798 return zynqmp_pm_invoke_fn(PM_IOCTL, dev_id, IOCTL_OSPI_MUX_SELECT,
801 EXPORT_SYMBOL_GPL(zynqmp_pm_ospi_mux_select);
804 * zynqmp_pm_write_ggs() - PM API for writing global general storage (ggs)
805 * @index: GGS register index
806 * @value: Register value to be written
808 * This function writes value to GGS register.
810 * Return: Returns status, either success or error+reason
812 int zynqmp_pm_write_ggs(u32 index, u32 value)
814 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_WRITE_GGS,
817 EXPORT_SYMBOL_GPL(zynqmp_pm_write_ggs);
820 * zynqmp_pm_read_ggs() - PM API for reading global general storage (ggs)
821 * @index: GGS register index
822 * @value: Register value to be written
824 * This function returns GGS register value.
826 * Return: Returns status, either success or error+reason
828 int zynqmp_pm_read_ggs(u32 index, u32 *value)
830 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_READ_GGS,
833 EXPORT_SYMBOL_GPL(zynqmp_pm_read_ggs);
836 * zynqmp_pm_write_pggs() - PM API for writing persistent global general
838 * @index: PGGS register index
839 * @value: Register value to be written
841 * This function writes value to PGGS register.
843 * Return: Returns status, either success or error+reason
845 int zynqmp_pm_write_pggs(u32 index, u32 value)
847 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_WRITE_PGGS, index, value,
850 EXPORT_SYMBOL_GPL(zynqmp_pm_write_pggs);
853 * zynqmp_pm_read_pggs() - PM API for reading persistent global general
855 * @index: PGGS register index
856 * @value: Register value to be written
858 * This function returns PGGS register value.
860 * Return: Returns status, either success or error+reason
862 int zynqmp_pm_read_pggs(u32 index, u32 *value)
864 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_READ_PGGS, index, 0,
867 EXPORT_SYMBOL_GPL(zynqmp_pm_read_pggs);
869 int zynqmp_pm_set_tapdelay_bypass(u32 index, u32 value)
871 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_SET_TAPDELAY_BYPASS,
874 EXPORT_SYMBOL_GPL(zynqmp_pm_set_tapdelay_bypass);
877 * zynqmp_pm_set_boot_health_status() - PM API for setting healthy boot status
878 * @value: Status value to be written
880 * This function sets healthy bit value to indicate boot health status
883 * Return: Returns status, either success or error+reason
885 int zynqmp_pm_set_boot_health_status(u32 value)
887 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_SET_BOOT_HEALTH_STATUS,
892 * zynqmp_pm_reset_assert - Request setting of reset (1 - assert, 0 - release)
893 * @reset: Reset to be configured
894 * @assert_flag: Flag stating should reset be asserted (1) or
897 * Return: Returns status, either success or error+reason
899 int zynqmp_pm_reset_assert(const enum zynqmp_pm_reset reset,
900 const enum zynqmp_pm_reset_action assert_flag)
902 return zynqmp_pm_invoke_fn(PM_RESET_ASSERT, reset, assert_flag,
905 EXPORT_SYMBOL_GPL(zynqmp_pm_reset_assert);
908 * zynqmp_pm_reset_get_status - Get status of the reset
909 * @reset: Reset whose status should be returned
910 * @status: Returned status
912 * Return: Returns status, either success or error+reason
914 int zynqmp_pm_reset_get_status(const enum zynqmp_pm_reset reset, u32 *status)
916 u32 ret_payload[PAYLOAD_ARG_CNT];
922 ret = zynqmp_pm_invoke_fn(PM_RESET_GET_STATUS, reset, 0,
924 *status = ret_payload[1];
928 EXPORT_SYMBOL_GPL(zynqmp_pm_reset_get_status);
931 * zynqmp_pm_fpga_load - Perform the fpga load
932 * @address: Address to write to
933 * @size: pl bitstream size
934 * @flags: Bitstream type
935 * -XILINX_ZYNQMP_PM_FPGA_FULL: FPGA full reconfiguration
936 * -XILINX_ZYNQMP_PM_FPGA_PARTIAL: FPGA partial reconfiguration
938 * This function provides access to pmufw. To transfer
939 * the required bitstream into PL.
941 * Return: Returns status, either success or error+reason
943 int zynqmp_pm_fpga_load(const u64 address, const u32 size, const u32 flags)
945 u32 ret_payload[PAYLOAD_ARG_CNT];
948 ret = zynqmp_pm_invoke_fn(PM_FPGA_LOAD, lower_32_bits(address),
949 upper_32_bits(address), size, flags,
952 return -ret_payload[0];
956 EXPORT_SYMBOL_GPL(zynqmp_pm_fpga_load);
959 * zynqmp_pm_fpga_get_status - Read value from PCAP status register
960 * @value: Value to read
962 * This function provides access to the pmufw to get the PCAP
965 * Return: Returns status, either success or error+reason
967 int zynqmp_pm_fpga_get_status(u32 *value)
969 u32 ret_payload[PAYLOAD_ARG_CNT];
975 ret = zynqmp_pm_invoke_fn(PM_FPGA_GET_STATUS, 0, 0, 0, 0, ret_payload);
976 *value = ret_payload[1];
980 EXPORT_SYMBOL_GPL(zynqmp_pm_fpga_get_status);
983 * zynqmp_pm_fpga_get_config_status - Get the FPGA configuration status.
984 * @value: Buffer to store FPGA configuration status.
986 * This function provides access to the pmufw to get the FPGA configuration
989 * Return: 0 on success, a negative value on error
991 int zynqmp_pm_fpga_get_config_status(u32 *value)
993 u32 ret_payload[PAYLOAD_ARG_CNT];
994 u32 buf, lower_addr, upper_addr;
1000 lower_addr = lower_32_bits((u64)&buf);
1001 upper_addr = upper_32_bits((u64)&buf);
1003 ret = zynqmp_pm_invoke_fn(PM_FPGA_READ,
1004 XILINX_ZYNQMP_PM_FPGA_CONFIG_STAT_OFFSET,
1005 lower_addr, upper_addr,
1006 XILINX_ZYNQMP_PM_FPGA_READ_CONFIG_REG,
1009 *value = ret_payload[1];
1013 EXPORT_SYMBOL_GPL(zynqmp_pm_fpga_get_config_status);
1016 * zynqmp_pm_pinctrl_request - Request Pin from firmware
1017 * @pin: Pin number to request
1019 * This function requests pin from firmware.
1021 * Return: Returns status, either success or error+reason.
1023 int zynqmp_pm_pinctrl_request(const u32 pin)
1025 return zynqmp_pm_invoke_fn(PM_PINCTRL_REQUEST, pin, 0, 0, 0, NULL);
1027 EXPORT_SYMBOL_GPL(zynqmp_pm_pinctrl_request);
1030 * zynqmp_pm_pinctrl_release - Inform firmware that Pin control is released
1031 * @pin: Pin number to release
1033 * This function release pin from firmware.
1035 * Return: Returns status, either success or error+reason.
1037 int zynqmp_pm_pinctrl_release(const u32 pin)
1039 return zynqmp_pm_invoke_fn(PM_PINCTRL_RELEASE, pin, 0, 0, 0, NULL);
1041 EXPORT_SYMBOL_GPL(zynqmp_pm_pinctrl_release);
1044 * zynqmp_pm_pinctrl_get_function - Read function id set for the given pin
1046 * @id: Buffer to store function ID
1048 * This function provides the function currently set for the given pin.
1050 * Return: Returns status, either success or error+reason
1052 int zynqmp_pm_pinctrl_get_function(const u32 pin, u32 *id)
1054 u32 ret_payload[PAYLOAD_ARG_CNT];
1060 ret = zynqmp_pm_invoke_fn(PM_PINCTRL_GET_FUNCTION, pin, 0,
1062 *id = ret_payload[1];
1066 EXPORT_SYMBOL_GPL(zynqmp_pm_pinctrl_get_function);
1069 * zynqmp_pm_pinctrl_set_function - Set requested function for the pin
1071 * @id: Function ID to set
1073 * This function sets requested function for the given pin.
1075 * Return: Returns status, either success or error+reason.
1077 int zynqmp_pm_pinctrl_set_function(const u32 pin, const u32 id)
1079 return zynqmp_pm_invoke_fn(PM_PINCTRL_SET_FUNCTION, pin, id,
1082 EXPORT_SYMBOL_GPL(zynqmp_pm_pinctrl_set_function);
1085 * zynqmp_pm_pinctrl_get_config - Get configuration parameter for the pin
1087 * @param: Parameter to get
1088 * @value: Buffer to store parameter value
1090 * This function gets requested configuration parameter for the given pin.
1092 * Return: Returns status, either success or error+reason.
1094 int zynqmp_pm_pinctrl_get_config(const u32 pin, const u32 param,
1097 u32 ret_payload[PAYLOAD_ARG_CNT];
1103 ret = zynqmp_pm_invoke_fn(PM_PINCTRL_CONFIG_PARAM_GET, pin, param,
1105 *value = ret_payload[1];
1109 EXPORT_SYMBOL_GPL(zynqmp_pm_pinctrl_get_config);
1112 * zynqmp_pm_pinctrl_set_config - Set configuration parameter for the pin
1114 * @param: Parameter to set
1115 * @value: Parameter value to set
1117 * This function sets requested configuration parameter for the given pin.
1119 * Return: Returns status, either success or error+reason.
1121 int zynqmp_pm_pinctrl_set_config(const u32 pin, const u32 param,
1124 return zynqmp_pm_invoke_fn(PM_PINCTRL_CONFIG_PARAM_SET, pin,
1125 param, value, 0, NULL);
1127 EXPORT_SYMBOL_GPL(zynqmp_pm_pinctrl_set_config);
1130 * zynqmp_pm_bootmode_read() - PM Config API for read bootpin status
1131 * @ps_mode: Returned output value of ps_mode
1133 * This API function is to be used for notify the power management controller
1134 * to read bootpin status.
1136 * Return: status, either success or error+reason
1138 unsigned int zynqmp_pm_bootmode_read(u32 *ps_mode)
1141 u32 ret_payload[PAYLOAD_ARG_CNT];
1143 ret = zynqmp_pm_invoke_fn(PM_MMIO_READ, CRL_APB_BOOT_PIN_CTRL, 0,
1146 *ps_mode = ret_payload[1];
1150 EXPORT_SYMBOL_GPL(zynqmp_pm_bootmode_read);
1153 * zynqmp_pm_bootmode_write() - PM Config API for Configure bootpin
1154 * @ps_mode: Value to be written to the bootpin ctrl register
1156 * This API function is to be used for notify the power management controller
1157 * to configure bootpin.
1159 * Return: Returns status, either success or error+reason
1161 int zynqmp_pm_bootmode_write(u32 ps_mode)
1163 return zynqmp_pm_invoke_fn(PM_MMIO_WRITE, CRL_APB_BOOT_PIN_CTRL,
1164 CRL_APB_BOOTPIN_CTRL_MASK, ps_mode, 0, NULL);
1166 EXPORT_SYMBOL_GPL(zynqmp_pm_bootmode_write);
1169 * zynqmp_pm_init_finalize() - PM call to inform firmware that the caller
1170 * master has initialized its own power management
1172 * Return: Returns status, either success or error+reason
1174 * This API function is to be used for notify the power management controller
1175 * about the completed power management initialization.
1177 int zynqmp_pm_init_finalize(void)
1179 return zynqmp_pm_invoke_fn(PM_PM_INIT_FINALIZE, 0, 0, 0, 0, NULL);
1181 EXPORT_SYMBOL_GPL(zynqmp_pm_init_finalize);
1184 * zynqmp_pm_set_suspend_mode() - Set system suspend mode
1185 * @mode: Mode to set for system suspend
1187 * This API function is used to set mode of system suspend.
1189 * Return: Returns status, either success or error+reason
1191 int zynqmp_pm_set_suspend_mode(u32 mode)
1193 return zynqmp_pm_invoke_fn(PM_SET_SUSPEND_MODE, mode, 0, 0, 0, NULL);
1195 EXPORT_SYMBOL_GPL(zynqmp_pm_set_suspend_mode);
1198 * zynqmp_pm_request_node() - Request a node with specific capabilities
1199 * @node: Node ID of the slave
1200 * @capabilities: Requested capabilities of the slave
1201 * @qos: Quality of service (not supported)
1202 * @ack: Flag to specify whether acknowledge is requested
1204 * This function is used by master to request particular node from firmware.
1205 * Every master must request node before using it.
1207 * Return: Returns status, either success or error+reason
1209 int zynqmp_pm_request_node(const u32 node, const u32 capabilities,
1210 const u32 qos, const enum zynqmp_pm_request_ack ack)
1212 return zynqmp_pm_invoke_fn(PM_REQUEST_NODE, node, capabilities,
1215 EXPORT_SYMBOL_GPL(zynqmp_pm_request_node);
1218 * zynqmp_pm_release_node() - Release a node
1219 * @node: Node ID of the slave
1221 * This function is used by master to inform firmware that master
1222 * has released node. Once released, master must not use that node
1223 * without re-request.
1225 * Return: Returns status, either success or error+reason
1227 int zynqmp_pm_release_node(const u32 node)
1229 return zynqmp_pm_invoke_fn(PM_RELEASE_NODE, node, 0, 0, 0, NULL);
1231 EXPORT_SYMBOL_GPL(zynqmp_pm_release_node);
1234 * zynqmp_pm_get_rpu_mode() - Get RPU mode
1235 * @node_id: Node ID of the device
1236 * @rpu_mode: return by reference value
1237 * either split or lockstep
1239 * Return: return 0 on success or error+reason.
1240 * if success, then rpu_mode will be set
1241 * to current rpu mode.
1243 int zynqmp_pm_get_rpu_mode(u32 node_id, enum rpu_oper_mode *rpu_mode)
1245 u32 ret_payload[PAYLOAD_ARG_CNT];
1248 ret = zynqmp_pm_invoke_fn(PM_IOCTL, node_id,
1249 IOCTL_GET_RPU_OPER_MODE, 0, 0, ret_payload);
1251 /* only set rpu_mode if no error */
1252 if (ret == XST_PM_SUCCESS)
1253 *rpu_mode = ret_payload[0];
1257 EXPORT_SYMBOL_GPL(zynqmp_pm_get_rpu_mode);
1260 * zynqmp_pm_set_rpu_mode() - Set RPU mode
1261 * @node_id: Node ID of the device
1262 * @rpu_mode: Argument 1 to requested IOCTL call. either split or lockstep
1264 * This function is used to set RPU mode to split or
1267 * Return: Returns status, either success or error+reason
1269 int zynqmp_pm_set_rpu_mode(u32 node_id, enum rpu_oper_mode rpu_mode)
1271 return zynqmp_pm_invoke_fn(PM_IOCTL, node_id,
1272 IOCTL_SET_RPU_OPER_MODE, (u32)rpu_mode,
1275 EXPORT_SYMBOL_GPL(zynqmp_pm_set_rpu_mode);
1278 * zynqmp_pm_set_tcm_config - configure TCM
1279 * @node_id: Firmware specific TCM subsystem ID
1280 * @tcm_mode: Argument 1 to requested IOCTL call
1281 * either PM_RPU_TCM_COMB or PM_RPU_TCM_SPLIT
1283 * This function is used to set RPU mode to split or combined
1285 * Return: status: 0 for success, else failure
1287 int zynqmp_pm_set_tcm_config(u32 node_id, enum rpu_tcm_comb tcm_mode)
1289 return zynqmp_pm_invoke_fn(PM_IOCTL, node_id,
1290 IOCTL_TCM_COMB_CONFIG, (u32)tcm_mode, 0,
1293 EXPORT_SYMBOL_GPL(zynqmp_pm_set_tcm_config);
1296 * zynqmp_pm_force_pwrdwn - PM call to request for another PU or subsystem to
1297 * be powered down forcefully
1298 * @node: Node ID of the targeted PU or subsystem
1299 * @ack: Flag to specify whether acknowledge is requested
1301 * Return: status, either success or error+reason
1303 int zynqmp_pm_force_pwrdwn(const u32 node,
1304 const enum zynqmp_pm_request_ack ack)
1306 return zynqmp_pm_invoke_fn(PM_FORCE_POWERDOWN, node, ack, 0, 0, NULL);
1308 EXPORT_SYMBOL_GPL(zynqmp_pm_force_pwrdwn);
1311 * zynqmp_pm_request_wake - PM call to wake up selected master or subsystem
1312 * @node: Node ID of the master or subsystem
1313 * @set_addr: Specifies whether the address argument is relevant
1314 * @address: Address from which to resume when woken up
1315 * @ack: Flag to specify whether acknowledge requested
1317 * Return: status, either success or error+reason
1319 int zynqmp_pm_request_wake(const u32 node,
1320 const bool set_addr,
1322 const enum zynqmp_pm_request_ack ack)
1324 /* set_addr flag is encoded into 1st bit of address */
1325 return zynqmp_pm_invoke_fn(PM_REQUEST_WAKEUP, node, address | set_addr,
1326 address >> 32, ack, NULL);
1328 EXPORT_SYMBOL_GPL(zynqmp_pm_request_wake);
1331 * zynqmp_pm_set_requirement() - PM call to set requirement for PM slaves
1332 * @node: Node ID of the slave
1333 * @capabilities: Requested capabilities of the slave
1334 * @qos: Quality of service (not supported)
1335 * @ack: Flag to specify whether acknowledge is requested
1337 * This API function is to be used for slaves a PU already has requested
1338 * to change its capabilities.
1340 * Return: Returns status, either success or error+reason
1342 int zynqmp_pm_set_requirement(const u32 node, const u32 capabilities,
1344 const enum zynqmp_pm_request_ack ack)
1346 return zynqmp_pm_invoke_fn(PM_SET_REQUIREMENT, node, capabilities,
1349 EXPORT_SYMBOL_GPL(zynqmp_pm_set_requirement);
1352 * zynqmp_pm_load_pdi - Load and process PDI
1353 * @src: Source device where PDI is located
1354 * @address: PDI src address
1356 * This function provides support to load PDI from linux
1358 * Return: Returns status, either success or error+reason
1360 int zynqmp_pm_load_pdi(const u32 src, const u64 address)
1362 return zynqmp_pm_invoke_fn(PM_LOAD_PDI, src,
1363 lower_32_bits(address),
1364 upper_32_bits(address), 0, NULL);
1366 EXPORT_SYMBOL_GPL(zynqmp_pm_load_pdi);
1369 * zynqmp_pm_aes_engine - Access AES hardware to encrypt/decrypt the data using
1371 * @address: Address of the AesParams structure.
1372 * @out: Returned output value
1374 * Return: Returns status, either success or error code.
1376 int zynqmp_pm_aes_engine(const u64 address, u32 *out)
1378 u32 ret_payload[PAYLOAD_ARG_CNT];
1384 ret = zynqmp_pm_invoke_fn(PM_SECURE_AES, upper_32_bits(address),
1385 lower_32_bits(address),
1387 *out = ret_payload[1];
1391 EXPORT_SYMBOL_GPL(zynqmp_pm_aes_engine);
1394 * zynqmp_pm_sha_hash - Access the SHA engine to calculate the hash
1395 * @address: Address of the data/ Address of output buffer where
1396 * hash should be stored.
1397 * @size: Size of the data.
1399 * BIT(0) - for initializing csudma driver and SHA3(Here address
1400 * and size inputs can be NULL).
1401 * BIT(1) - to call Sha3_Update API which can be called multiple
1402 * times when data is not contiguous.
1403 * BIT(2) - to get final hash of the whole updated data.
1404 * Hash will be overwritten at provided address with
1407 * Return: Returns status, either success or error code.
1409 int zynqmp_pm_sha_hash(const u64 address, const u32 size, const u32 flags)
1411 u32 lower_addr = lower_32_bits(address);
1412 u32 upper_addr = upper_32_bits(address);
1414 return zynqmp_pm_invoke_fn(PM_SECURE_SHA, upper_addr, lower_addr,
1417 EXPORT_SYMBOL_GPL(zynqmp_pm_sha_hash);
1420 * zynqmp_pm_register_notifier() - PM API for register a subsystem
1421 * to be notified about specific
1423 * @node: Node ID to which the event is related.
1424 * @event: Event Mask of Error events for which wants to get notified.
1425 * @wake: Wake subsystem upon capturing the event if value 1
1426 * @enable: Enable the registration for value 1, disable for value 0
1428 * This function is used to register/un-register for particular node-event
1429 * combination in firmware.
1431 * Return: Returns status, either success or error+reason
1434 int zynqmp_pm_register_notifier(const u32 node, const u32 event,
1435 const u32 wake, const u32 enable)
1437 return zynqmp_pm_invoke_fn(PM_REGISTER_NOTIFIER, node, event,
1438 wake, enable, NULL);
1440 EXPORT_SYMBOL_GPL(zynqmp_pm_register_notifier);
1443 * zynqmp_pm_system_shutdown - PM call to request a system shutdown or restart
1444 * @type: Shutdown or restart? 0 for shutdown, 1 for restart
1445 * @subtype: Specifies which system should be restarted or shut down
1447 * Return: Returns status, either success or error+reason
1449 int zynqmp_pm_system_shutdown(const u32 type, const u32 subtype)
1451 return zynqmp_pm_invoke_fn(PM_SYSTEM_SHUTDOWN, type, subtype,
1456 * zynqmp_pm_set_feature_config - PM call to request IOCTL for feature config
1457 * @id: The config ID of the feature to be configured
1458 * @value: The config value of the feature to be configured
1460 * Return: Returns 0 on success or error value on failure.
1462 int zynqmp_pm_set_feature_config(enum pm_feature_config_id id, u32 value)
1464 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_SET_FEATURE_CONFIG,
1469 * zynqmp_pm_get_feature_config - PM call to get value of configured feature
1470 * @id: The config id of the feature to be queried
1471 * @payload: Returned value array
1473 * Return: Returns 0 on success or error value on failure.
1475 int zynqmp_pm_get_feature_config(enum pm_feature_config_id id,
1478 return zynqmp_pm_invoke_fn(PM_IOCTL, 0, IOCTL_GET_FEATURE_CONFIG,
1483 * zynqmp_pm_set_sd_config - PM call to set value of SD config registers
1485 * @config: The config type of SD registers
1486 * @value: Value to be set
1488 * Return: Returns 0 on success or error value on failure.
1490 int zynqmp_pm_set_sd_config(u32 node, enum pm_sd_config_type config, u32 value)
1492 return zynqmp_pm_invoke_fn(PM_IOCTL, node, IOCTL_SET_SD_CONFIG,
1493 config, value, NULL);
1495 EXPORT_SYMBOL_GPL(zynqmp_pm_set_sd_config);
1498 * zynqmp_pm_set_gem_config - PM call to set value of GEM config registers
1499 * @node: GEM node ID
1500 * @config: The config type of GEM registers
1501 * @value: Value to be set
1503 * Return: Returns 0 on success or error value on failure.
1505 int zynqmp_pm_set_gem_config(u32 node, enum pm_gem_config_type config,
1508 return zynqmp_pm_invoke_fn(PM_IOCTL, node, IOCTL_SET_GEM_CONFIG,
1509 config, value, NULL);
1511 EXPORT_SYMBOL_GPL(zynqmp_pm_set_gem_config);
1514 * struct zynqmp_pm_shutdown_scope - Struct for shutdown scope
1515 * @subtype: Shutdown subtype
1516 * @name: Matching string for scope argument
1518 * This struct encapsulates mapping between shutdown scope ID and string.
1520 struct zynqmp_pm_shutdown_scope {
1521 const enum zynqmp_pm_shutdown_subtype subtype;
1525 static struct zynqmp_pm_shutdown_scope shutdown_scopes[] = {
1526 [ZYNQMP_PM_SHUTDOWN_SUBTYPE_SUBSYSTEM] = {
1527 .subtype = ZYNQMP_PM_SHUTDOWN_SUBTYPE_SUBSYSTEM,
1528 .name = "subsystem",
1530 [ZYNQMP_PM_SHUTDOWN_SUBTYPE_PS_ONLY] = {
1531 .subtype = ZYNQMP_PM_SHUTDOWN_SUBTYPE_PS_ONLY,
1534 [ZYNQMP_PM_SHUTDOWN_SUBTYPE_SYSTEM] = {
1535 .subtype = ZYNQMP_PM_SHUTDOWN_SUBTYPE_SYSTEM,
1540 static struct zynqmp_pm_shutdown_scope *selected_scope =
1541 &shutdown_scopes[ZYNQMP_PM_SHUTDOWN_SUBTYPE_SYSTEM];
1544 * zynqmp_pm_is_shutdown_scope_valid - Check if shutdown scope string is valid
1545 * @scope_string: Shutdown scope string
1547 * Return: Return pointer to matching shutdown scope struct from
1548 * array of available options in system if string is valid,
1549 * otherwise returns NULL.
1551 static struct zynqmp_pm_shutdown_scope*
1552 zynqmp_pm_is_shutdown_scope_valid(const char *scope_string)
1556 for (count = 0; count < ARRAY_SIZE(shutdown_scopes); count++)
1557 if (sysfs_streq(scope_string, shutdown_scopes[count].name))
1558 return &shutdown_scopes[count];
1563 static ssize_t shutdown_scope_show(struct device *device,
1564 struct device_attribute *attr,
1569 for (i = 0; i < ARRAY_SIZE(shutdown_scopes); i++) {
1570 if (&shutdown_scopes[i] == selected_scope) {
1572 strcat(buf, shutdown_scopes[i].name);
1575 strcat(buf, shutdown_scopes[i].name);
1584 static ssize_t shutdown_scope_store(struct device *device,
1585 struct device_attribute *attr,
1586 const char *buf, size_t count)
1589 struct zynqmp_pm_shutdown_scope *scope;
1591 scope = zynqmp_pm_is_shutdown_scope_valid(buf);
1595 ret = zynqmp_pm_system_shutdown(ZYNQMP_PM_SHUTDOWN_TYPE_SETSCOPE_ONLY,
1598 pr_err("unable to set shutdown scope %s\n", buf);
1602 selected_scope = scope;
1607 static DEVICE_ATTR_RW(shutdown_scope);
1609 static ssize_t health_status_store(struct device *device,
1610 struct device_attribute *attr,
1611 const char *buf, size_t count)
1616 ret = kstrtouint(buf, 10, &value);
1620 ret = zynqmp_pm_set_boot_health_status(value);
1622 dev_err(device, "unable to set healthy bit value to %u\n",
1630 static DEVICE_ATTR_WO(health_status);
1632 static ssize_t ggs_show(struct device *device,
1633 struct device_attribute *attr,
1638 u32 ret_payload[PAYLOAD_ARG_CNT];
1640 ret = zynqmp_pm_read_ggs(reg, ret_payload);
1644 return sprintf(buf, "0x%x\n", ret_payload[1]);
1647 static ssize_t ggs_store(struct device *device,
1648 struct device_attribute *attr,
1649 const char *buf, size_t count,
1655 if (reg >= GSS_NUM_REGS)
1658 ret = kstrtol(buf, 16, &value);
1664 ret = zynqmp_pm_write_ggs(reg, value);
1671 /* GGS register show functions */
1672 #define GGS0_SHOW(N) \
1673 ssize_t ggs##N##_show(struct device *device, \
1674 struct device_attribute *attr, \
1677 return ggs_show(device, attr, buf, N); \
1680 static GGS0_SHOW(0);
1681 static GGS0_SHOW(1);
1682 static GGS0_SHOW(2);
1683 static GGS0_SHOW(3);
1685 /* GGS register store function */
1686 #define GGS0_STORE(N) \
1687 ssize_t ggs##N##_store(struct device *device, \
1688 struct device_attribute *attr, \
1692 return ggs_store(device, attr, buf, count, N); \
1695 static GGS0_STORE(0);
1696 static GGS0_STORE(1);
1697 static GGS0_STORE(2);
1698 static GGS0_STORE(3);
1700 static ssize_t pggs_show(struct device *device,
1701 struct device_attribute *attr,
1706 u32 ret_payload[PAYLOAD_ARG_CNT];
1708 ret = zynqmp_pm_read_pggs(reg, ret_payload);
1712 return sprintf(buf, "0x%x\n", ret_payload[1]);
1715 static ssize_t pggs_store(struct device *device,
1716 struct device_attribute *attr,
1717 const char *buf, size_t count,
1723 if (reg >= GSS_NUM_REGS)
1726 ret = kstrtol(buf, 16, &value);
1732 ret = zynqmp_pm_write_pggs(reg, value);
1740 #define PGGS0_SHOW(N) \
1741 ssize_t pggs##N##_show(struct device *device, \
1742 struct device_attribute *attr, \
1745 return pggs_show(device, attr, buf, N); \
1748 #define PGGS0_STORE(N) \
1749 ssize_t pggs##N##_store(struct device *device, \
1750 struct device_attribute *attr, \
1754 return pggs_store(device, attr, buf, count, N); \
1757 /* PGGS register show functions */
1758 static PGGS0_SHOW(0);
1759 static PGGS0_SHOW(1);
1760 static PGGS0_SHOW(2);
1761 static PGGS0_SHOW(3);
1763 /* PGGS register store functions */
1764 static PGGS0_STORE(0);
1765 static PGGS0_STORE(1);
1766 static PGGS0_STORE(2);
1767 static PGGS0_STORE(3);
1769 /* GGS register attributes */
1770 static DEVICE_ATTR_RW(ggs0);
1771 static DEVICE_ATTR_RW(ggs1);
1772 static DEVICE_ATTR_RW(ggs2);
1773 static DEVICE_ATTR_RW(ggs3);
1775 /* PGGS register attributes */
1776 static DEVICE_ATTR_RW(pggs0);
1777 static DEVICE_ATTR_RW(pggs1);
1778 static DEVICE_ATTR_RW(pggs2);
1779 static DEVICE_ATTR_RW(pggs3);
1781 static ssize_t feature_config_id_show(struct device *device,
1782 struct device_attribute *attr,
1785 struct zynqmp_devinfo *devinfo = dev_get_drvdata(device);
1787 return sysfs_emit(buf, "%d\n", devinfo->feature_conf_id);
1790 static ssize_t feature_config_id_store(struct device *device,
1791 struct device_attribute *attr,
1792 const char *buf, size_t count)
1796 struct zynqmp_devinfo *devinfo = dev_get_drvdata(device);
1801 ret = kstrtou32(buf, 10, &config_id);
1805 devinfo->feature_conf_id = config_id;
1810 static DEVICE_ATTR_RW(feature_config_id);
1812 static ssize_t feature_config_value_show(struct device *device,
1813 struct device_attribute *attr,
1817 u32 ret_payload[PAYLOAD_ARG_CNT];
1818 struct zynqmp_devinfo *devinfo = dev_get_drvdata(device);
1820 ret = zynqmp_pm_get_feature_config(devinfo->feature_conf_id,
1825 return sysfs_emit(buf, "%d\n", ret_payload[1]);
1828 static ssize_t feature_config_value_store(struct device *device,
1829 struct device_attribute *attr,
1830 const char *buf, size_t count)
1834 struct zynqmp_devinfo *devinfo = dev_get_drvdata(device);
1839 ret = kstrtou32(buf, 10, &value);
1843 ret = zynqmp_pm_set_feature_config(devinfo->feature_conf_id,
1851 static DEVICE_ATTR_RW(feature_config_value);
1853 static struct attribute *zynqmp_firmware_attrs[] = {
1854 &dev_attr_ggs0.attr,
1855 &dev_attr_ggs1.attr,
1856 &dev_attr_ggs2.attr,
1857 &dev_attr_ggs3.attr,
1858 &dev_attr_pggs0.attr,
1859 &dev_attr_pggs1.attr,
1860 &dev_attr_pggs2.attr,
1861 &dev_attr_pggs3.attr,
1862 &dev_attr_shutdown_scope.attr,
1863 &dev_attr_health_status.attr,
1864 &dev_attr_feature_config_id.attr,
1865 &dev_attr_feature_config_value.attr,
1869 ATTRIBUTE_GROUPS(zynqmp_firmware);
1871 static int zynqmp_firmware_probe(struct platform_device *pdev)
1873 struct device *dev = &pdev->dev;
1874 struct device_node *np;
1875 struct zynqmp_devinfo *devinfo;
1878 ret = get_set_conduit_method(dev->of_node);
1882 np = of_find_compatible_node(NULL, NULL, "xlnx,zynqmp");
1884 np = of_find_compatible_node(NULL, NULL, "xlnx,versal");
1888 feature_check_enabled = true;
1891 if (!feature_check_enabled) {
1892 ret = do_feature_check_call(PM_FEATURE_CHECK);
1894 feature_check_enabled = true;
1899 devinfo = devm_kzalloc(dev, sizeof(*devinfo), GFP_KERNEL);
1905 platform_set_drvdata(pdev, devinfo);
1907 /* Check PM API version number */
1908 ret = zynqmp_pm_get_api_version(&pm_api_version);
1912 if (pm_api_version < ZYNQMP_PM_VERSION) {
1913 panic("%s Platform Management API version error. Expected: v%d.%d - Found: v%d.%d\n",
1915 ZYNQMP_PM_VERSION_MAJOR, ZYNQMP_PM_VERSION_MINOR,
1916 pm_api_version >> 16, pm_api_version & 0xFFFF);
1919 pr_info("%s Platform Management API v%d.%d\n", __func__,
1920 pm_api_version >> 16, pm_api_version & 0xFFFF);
1922 /* Check trustzone version number */
1923 ret = zynqmp_pm_get_trustzone_version(&pm_tz_version);
1925 panic("Legacy trustzone found without version support\n");
1927 if (pm_tz_version < ZYNQMP_TZ_VERSION)
1928 panic("%s Trustzone version error. Expected: v%d.%d - Found: v%d.%d\n",
1930 ZYNQMP_TZ_VERSION_MAJOR, ZYNQMP_TZ_VERSION_MINOR,
1931 pm_tz_version >> 16, pm_tz_version & 0xFFFF);
1933 pr_info("%s Trustzone version v%d.%d\n", __func__,
1934 pm_tz_version >> 16, pm_tz_version & 0xFFFF);
1936 ret = mfd_add_devices(&pdev->dev, PLATFORM_DEVID_NONE, firmware_devs,
1937 ARRAY_SIZE(firmware_devs), NULL, 0, NULL);
1939 dev_err(&pdev->dev, "failed to add MFD devices %d\n", ret);
1943 zynqmp_pm_api_debugfs_init();
1945 np = of_find_compatible_node(NULL, NULL, "xlnx,versal");
1947 em_dev = platform_device_register_data(&pdev->dev, "xlnx_event_manager",
1950 dev_err_probe(&pdev->dev, PTR_ERR(em_dev), "EM register fail with error\n");
1954 return of_platform_populate(dev->of_node, NULL, NULL, dev);
1957 static int zynqmp_firmware_remove(struct platform_device *pdev)
1959 struct pm_api_feature_data *feature_data;
1960 struct hlist_node *tmp;
1963 mfd_remove_devices(&pdev->dev);
1964 zynqmp_pm_api_debugfs_exit();
1966 hash_for_each_safe(pm_api_features_map, i, tmp, feature_data, hentry) {
1967 hash_del(&feature_data->hentry);
1968 kfree(feature_data);
1971 platform_device_unregister(em_dev);
1976 static const struct of_device_id zynqmp_firmware_of_match[] = {
1977 {.compatible = "xlnx,zynqmp-firmware"},
1978 {.compatible = "xlnx,versal-firmware"},
1981 MODULE_DEVICE_TABLE(of, zynqmp_firmware_of_match);
1983 static struct platform_driver zynqmp_firmware_driver = {
1985 .name = "zynqmp_firmware",
1986 .of_match_table = zynqmp_firmware_of_match,
1987 .dev_groups = zynqmp_firmware_groups,
1989 .probe = zynqmp_firmware_probe,
1990 .remove = zynqmp_firmware_remove,
1992 module_platform_driver(zynqmp_firmware_driver);