blob: 21124420431a55225646d6f7672b98f412a17760 [file] [log] [blame]
Lawrence Tang2800cd82022-07-05 16:08:20 +01001#ifndef CPER_SECTION_ARM_H
2#define CPER_SECTION_ARM_H
3
4#include "json.h"
5#include "../edk/Cper.h"
6
7#define ARM_PROCESSOR_ERROR_VALID_BITFIELD_NAMES (const char*[]) \
8 {"mpidrValid", "errorAffinityLevelValid", "runningStateValid", "vendorSpecificInfoValid"}
9
10json_object* cper_section_arm_to_ir(void* section, EFI_ERROR_SECTION_DESCRIPTOR* descriptor);
11
12#endif