RAS: SGI: Add platform handler for RAS interrupts
authorSughosh Ganu <sughosh.ganu@arm.com>
Wed, 16 May 2018 11:52:35 +0000 (17:22 +0530)
committerSughosh Ganu <sughosh.ganu@arm.com>
Thu, 26 Jul 2018 16:33:32 +0000 (22:03 +0530)
Add a platform specific handler for RAS interrupts and configure the
platform RAS interrupts for EL3 handling. The interrupt handler passes
control to StandaloneMM code executing in S-EL0, which populates the
CPER buffer with relevant error information. The handler subsequently
invokes the SDEI client which processes the information in the error
information in the CPER buffer. The helper functions
plat_sgi_get_ras_ev_map and plat_sgi_get_ras_ev_map_size would be
defined for sgi platforms in the subsequent patch, which adds sgi575
specific RAS changes.

Change-Id: I490f16c15d9917ac40bdc0441659b92380108d63
Signed-off-by: Sughosh Ganu <sughosh.ganu@arm.com>
plat/arm/css/sgi/include/sgi_ras.h [new file with mode: 0644]
plat/arm/css/sgi/sgi-common.mk
plat/arm/css/sgi/sgi_bl31_setup.c
plat/arm/css/sgi/sgi_ras.c [new file with mode: 0644]

diff --git a/plat/arm/css/sgi/include/sgi_ras.h b/plat/arm/css/sgi/include/sgi_ras.h
new file mode 100644 (file)
index 0000000..b307b9c
--- /dev/null
@@ -0,0 +1,22 @@
+/*
+ * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#ifndef __SGI_RAS__
+#define __SGI_RAS__
+
+/*
+ * Mapping the RAS interrupt with SDEI event number and the event
+ * id used with Standalone MM code
+ */
+struct sgi_ras_ev_map {
+       int ras_ev_num;         /* RAS Event number */
+       int sdei_ev_num;        /* SDEI Event number */
+       int intr;               /* Physical intr number */
+};
+
+int sgi_ras_intr_handler_setup(void);
+
+#endif /* __SGI_RAS__ */
index f4092f3894befd79268c306c1d9becf18738ede4..92e1012a300b0d96d2fc28708a8d37f8e3fee10c 100644 (file)
@@ -40,6 +40,10 @@ BL31_SOURCES         +=      ${ENT_CPU_SOURCES}                      \
                                ${CSS_ENT_BASE}/sgi_topology.c  \
                                ${CSS_ENT_BASE}/sgi_plat_config.c
 
+ifeq (${RAS_EXTENSION},1)
+BL31_SOURCES           +=      ${CSS_ENT_BASE}/sgi_ras.c
+endif
+
 # Add the FDT_SOURCES and options for Dynamic Config
 FDT_SOURCES            +=      ${CSS_ENT_BASE}/fdts/${PLAT}_tb_fw_config.dts
 TB_FW_CONFIG           :=      ${BUILD_PLAT}/fdts/${PLAT}_tb_fw_config.dtb
index 20908463f4429531733024e5bcbb7864bef77232..09f493eddf850c05e2778e8ddc7ec7c1888bf120 100644 (file)
@@ -8,6 +8,7 @@
 #include <debug.h>
 #include <plat_arm.h>
 #include <sgi_plat_config.h>
+#include <sgi_ras.h>
 
 void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
                                u_register_t arg2, u_register_t arg3)
@@ -17,3 +18,12 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
 
        arm_bl31_early_platform_setup((void *)arg0, arg1, arg2, (void *)arg3);
 }
+
+void bl31_platform_setup(void)
+{
+       arm_bl31_platform_setup();
+
+#if RAS_EXTENSION
+       sgi_ras_intr_handler_setup();
+#endif
+}
diff --git a/plat/arm/css/sgi/sgi_ras.c b/plat/arm/css/sgi/sgi_ras.c
new file mode 100644 (file)
index 0000000..60c402f
--- /dev/null
@@ -0,0 +1,132 @@
+/*
+ * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include <arm_spm_def.h>
+#include <assert.h>
+#include <context_mgmt.h>
+#include <interrupt_mgmt.h>
+#include <mm_svc.h>
+#include <ras.h>
+#include <sgi_ras.h>
+#include <platform.h>
+#include <spm_svc.h>
+#include <sdei.h>
+#include <string.h>
+
+static int sgi_ras_intr_handler(const struct err_record_info *err_rec,
+                               int probe_data,
+                               const struct err_handler_data *const data);
+struct efi_guid {
+       uint32_t        data1;
+       uint16_t        data2;
+       uint16_t        data3;
+       uint8_t         data4[8];
+};
+
+typedef struct mm_communicate_header {
+       struct efi_guid header_guid;
+       size_t          message_len;
+       uint8_t         data[8];
+} mm_communicate_header_t;
+
+/*
+ * Find event mapping for a given interrupt number: On success, returns pointer
+ * to the event mapping. On error, returns NULL.
+ */
+static struct sgi_ras_ev_map *find_ras_event_map_by_intr(uint32_t intr_num)
+{
+       struct sgi_ras_ev_map *map = plat_sgi_get_ras_ev_map();
+       int i;
+       int size = plat_sgi_get_ras_ev_map_size();
+
+       for (i = 0; i < size; i++) {
+               if (map->intr == intr_num)
+                       return map;
+
+               map++;
+       }
+
+       return NULL;
+}
+
+static void sgi_ras_intr_configure(int intr)
+{
+       plat_ic_set_interrupt_type(intr, INTR_TYPE_EL3);
+       plat_ic_set_interrupt_priority(intr, PLAT_RAS_PRI);
+       plat_ic_clear_interrupt_pending(intr);
+       plat_ic_set_spi_routing(intr, INTR_ROUTING_MODE_ANY,
+                               (u_register_t)read_mpidr_el1());
+       plat_ic_enable_interrupt(intr);
+}
+
+static int sgi_ras_intr_handler(const struct err_record_info *err_rec,
+                               int probe_data,
+                               const struct err_handler_data *const data)
+{
+       struct sgi_ras_ev_map *ras_map;
+       mm_communicate_header_t *header;
+       uint32_t intr;
+
+       cm_el1_sysregs_context_save(NON_SECURE);
+       intr = data->interrupt;
+
+       /*
+        * Find if this is a RAS interrupt. There must be an event against
+        * this interrupt
+        */
+       ras_map = find_ras_event_map_by_intr(intr);
+       assert(ras_map);
+
+       /*
+        * Populate the MM_COMMUNICATE payload to share the
+        * event info with StandaloneMM code. This allows us to use
+        * MM_COMMUNICATE as a common entry mechanism into S-EL0. The
+        * header data will be parsed in StandaloneMM to process the
+        * corresponding event.
+        *
+        * TBD - Currently, the buffer allocated by SPM for communication
+        * between EL3 and S-EL0 is being used(PLAT_SPM_BUF_BASE). But this
+        * should happen via a dynamic mem allocation, which should be
+        * managed by SPM -- the individual platforms then call the mem
+        * alloc api to get memory for the payload.
+        */
+       header = (void *) PLAT_SPM_BUF_BASE;
+       memset(header, 0, sizeof(*header));
+       memcpy(&header->data, &ras_map->ras_ev_num,
+              sizeof(ras_map->ras_ev_num));
+       header->message_len = 4;
+
+       spm_sp_call(MM_COMMUNICATE_AARCH64, (uint64_t)header, 0,
+                   plat_my_core_pos());
+
+       /*
+        * Do an EOI of the RAS interuupt. This allows the
+        * sdei event to be dispatched at the SDEI event's
+        * priority.
+        */
+       plat_ic_end_of_interrupt(intr);
+
+       /* Dispatch the event to the SDEI client */
+       sdei_dispatch_event(ras_map->sdei_ev_num);
+
+       return 0;
+}
+
+int sgi_ras_intr_handler_setup(void)
+{
+       int i;
+       struct sgi_ras_ev_map *map = plat_sgi_get_ras_ev_map();
+       int size = plat_sgi_get_ras_ev_map_size();
+
+       for (i = 0; i < size; i++) {
+               sgi_ras_intr_configure(map->intr);
+               map++;
+       }
+
+       INFO("SGI: RAS Interrupt Handler successfully registered\n");
+
+       return 0;
+}