mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
firmware: xilinx: add macros of node ids for error event
Add macros for the Node-Id of Error events. Move supported api callback ids from zynqmp-power to zynqmp-firmware. Acked-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Rajan Vaja <rajan.vaja@xilinx.com> Signed-off-by: Abhyuday Godhasara <abhyuday.godhasara@xilinx.com> Link: https://lore.kernel.org/r/20211026042525.26612-3-abhyuday.godhasara@xilinx.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1881eadb20
commit
fbce9f1405
@ -46,12 +46,6 @@ static const char *const suspend_modes[] = {
|
||||
|
||||
static enum pm_suspend_mode suspend_mode = PM_SUSPEND_MODE_STD;
|
||||
|
||||
enum pm_api_cb_id {
|
||||
PM_INIT_SUSPEND_CB = 30,
|
||||
PM_ACKNOWLEDGE_CB,
|
||||
PM_NOTIFY_CB,
|
||||
};
|
||||
|
||||
static void zynqmp_pm_get_callback_data(u32 *buf)
|
||||
{
|
||||
zynqmp_pm_invoke_fn(GET_CALLBACK_DATA, 0, 0, 0, 0, buf);
|
||||
|
@ -64,6 +64,20 @@
|
||||
#define XILINX_ZYNQMP_PM_FPGA_FULL 0x0U
|
||||
#define XILINX_ZYNQMP_PM_FPGA_PARTIAL BIT(0)
|
||||
|
||||
/*
|
||||
* Node IDs for the Error Events.
|
||||
*/
|
||||
#define EVENT_ERROR_PMC_ERR1 (0x28100000U)
|
||||
#define EVENT_ERROR_PMC_ERR2 (0x28104000U)
|
||||
#define EVENT_ERROR_PSM_ERR1 (0x28108000U)
|
||||
#define EVENT_ERROR_PSM_ERR2 (0x2810C000U)
|
||||
|
||||
enum pm_api_cb_id {
|
||||
PM_INIT_SUSPEND_CB = 30,
|
||||
PM_ACKNOWLEDGE_CB = 31,
|
||||
PM_NOTIFY_CB = 32,
|
||||
};
|
||||
|
||||
enum pm_api_id {
|
||||
PM_GET_API_VERSION = 1,
|
||||
PM_REGISTER_NOTIFIER = 5,
|
||||
|
Loading…
Reference in New Issue
Block a user