blob: 4f7cb5f946f9ef15845b806205e37344d769e616 [file] [log] [blame]
Tejas Patel354fe572018-12-14 00:55:37 -08001/*
Michal Simek9a8da502023-04-25 14:04:02 +02002 * Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
3 * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
Tejas Patel354fe572018-12-14 00:55:37 -08004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8/* Versal IPI management enums and defines */
9
10#ifndef PLAT_IPI_H
11#define PLAT_IPI_H
12
Tejas Patel354fe572018-12-14 00:55:37 -080013#include <stdint.h>
14
Prasad Kummari536e1102023-06-22 10:50:02 +053015#include <ipi.h>
16
Tejas Patel354fe572018-12-14 00:55:37 -080017/*********************************************************************
18 * IPI agent IDs macros
19 ********************************************************************/
20#define IPI_ID_PMC 1U
21#define IPI_ID_APU 2U
22#define IPI_ID_RPU0 3U
23#define IPI_ID_RPU1 4U
24#define IPI_ID_3 5U
25#define IPI_ID_4 6U
26#define IPI_ID_5 7U
27
28/*********************************************************************
29 * IPI message buffers
30 ********************************************************************/
31#define IPI_BUFFER_BASEADDR 0xFF3F0000U
32
Michal Simek3a63f052023-04-25 14:21:20 +020033#define IPI_LOCAL_ID IPI_ID_APU
34#define IPI_REMOTE_ID IPI_ID_PMC
35
Michal Simekc23473d2023-04-25 14:37:00 +020036#define IPI_BUFFER_LOCAL_BASE (IPI_BUFFER_BASEADDR + (IPI_LOCAL_ID * 0x200U))
37#define IPI_BUFFER_REMOTE_BASE (IPI_BUFFER_BASEADDR + (IPI_REMOTE_ID * 0x200U))
Tejas Patel354fe572018-12-14 00:55:37 -080038
Michal Simekc23473d2023-04-25 14:37:00 +020039#define IPI_BUFFER_TARGET_LOCAL_OFFSET (IPI_LOCAL_ID * 0x40U)
40#define IPI_BUFFER_TARGET_REMOTE_OFFSET (IPI_REMOTE_ID * 0x40U)
Tejas Patel354fe572018-12-14 00:55:37 -080041
42#define IPI_BUFFER_MAX_WORDS 8
43
44#define IPI_BUFFER_REQ_OFFSET 0x0U
45#define IPI_BUFFER_RESP_OFFSET 0x20U
46
47/*********************************************************************
48 * Platform specific IPI API declarations
49 ********************************************************************/
50
51/* Configure IPI table for versal */
52void versal_ipi_config_table_init(void);
53
Michal Simekd62c8dd2023-04-25 12:46:03 +020054/* IPI registers and bitfields */
55#define PMC_REG_BASE U(0xFF320000)
56#define PMC_IPI_TRIG_BIT (1U << 1U)
57#define IPI0_REG_BASE U(0xFF330000)
58#define IPI0_TRIG_BIT (1U << 2U)
59#define IPI1_REG_BASE U(0xFF340000)
60#define IPI1_TRIG_BIT (1U << 3U)
61#define IPI2_REG_BASE U(0xFF350000)
62#define IPI2_TRIG_BIT (1U << 4U)
63#define IPI3_REG_BASE U(0xFF360000)
64#define IPI3_TRIG_BIT (1U << 5U)
65#define IPI4_REG_BASE U(0xFF370000)
66#define IPI4_TRIG_BIT (1U << 5U)
67#define IPI5_REG_BASE U(0xFF380000)
68#define IPI5_TRIG_BIT (1U << 6U)
69
Tejas Patel354fe572018-12-14 00:55:37 -080070#endif /* PLAT_IPI_H */