blob: c7e224cc5445c0d6232a2ad6a6db5187a23b9bd1 [file] [log] [blame]
/**
* @file hei_types.hpp
*
* This file contains simple types/enums used throughout all of the isolator
* code.
*/
#pragma once
#include <stdint.h>
namespace libhei
{
/**
* A value representing the type of chip that is being accessed. A unique value
* will exist for each Chip Data File. During isolation, the user application
* will pass these values to the isolator along with pointers to the user
* application's chip objects. This tells the isolator which Chip Data File to
* reference for each chip.
*
* Values:
* The values are determined by the chip manufacturer. The isolator does not
* need to know the possible values because the user application controls
* both the Chip Data Files and the input into the isolation function.
* Therefore, no values will be listed in this enum except for the default
* invalid type.
*
* Range:
* A 4-byte field should be sufficient.
*/
enum ChipType_t : uint32_t
{
CHIP_TYPE_INVALID = 0, ///< invalid/unsupported type
};
/**
* Different chips will contain different types of registers. Also, a single
* chip may also support multiple types of registers. These enum values are
* used to communicate to the user application which type of register access is
* needed.
*
* Values:
* The supported register types are listed in this enum.
*
* Range:
* Power Systems only have a couple different types that would be accessed by
* the isolator. The minimum 1-byte field should be sufficient.
*/
enum RegisterType_t : uint8_t
{
REG_TYPE_INVALID = 0, ///< invalid/unsupported type
REG_TYPE_SCOM = 1, ///< Power Systems SCOM register.
REG_TYPE_ID_SCOM = 2, ///< Power Systems Indirect SCOM register.
};
/**
* Each register within a chip must have a unique ID. These IDs (combined with
* other information) will be passed back to the user application to identify
* all of the active errors reported by this chip. Note that some registers will
* have multiple instances within a chip. An ID will be used for all instances
* of a register. See enum RegisterInstance_t for details on the register
* instance value.
*
* Values:
* The isolator does not need to know the possible values because the values
* are passed from the Chip Data Files to the user application. Therefore, no
* values will be listed in this enum except for the default invalid type.
*
* Range:
* A 2-byte field should be sufficient to support up to 65535 registers on a
* chip.
*/
enum RegisterId_t : uint16_t
{
REG_ID_INVALID = 0, ///< invalid/unsupported type
};
/**
* A chip could contain more than one instance of a register. For example, a
* register could exist for each instance of a core on a processor chip.
* This field will be used to differeniate multiple instances of a register in
* order to avoid repeating common information for every instance.
*
* Values:
* Not all registers will have multiple instances. So the default instance
* value is 0, which always indicates the first (or only) logical instance.
* Then a value of 1-255 can be used for each subsequent instance.
*
* Range:
* The 1-byte field should be sufficient.
*/
enum RegisterInstance_t : uint8_t
{
REG_INST_DEFAULT = 0, ///< indicates the first (or only) logical instance
};
/**
* The hardware address of a register (right justified).
*
* Values:
* Currently only supporting 1, 2, 4, or 8 byte addresses.
*
* Range:
* The maximum supported address requires an 8-byte field.
*/
enum RegisterAddress_t : uint64_t
{
REG_ADDR_INVALID = 0, ///< invalid/unsupported address
};
/**
* The hardware access level of a register.
*
* Values:
* The supported access levels are listed in this enum.
*
* Range:
* Only the minimum 1-byte field is necessary.
*/
enum RegisterAccessLevel_t : uint8_t
{
REG_ACCESS_NONE = 0x0, ///< No access
REG_ACCESS_RO = 0x1, ///< Read-only access
REG_ACCESS_WO = 0x2, ///< Write-only access
REG_ACCESS_RW = 0x3, ///< Read/Write access
};
} // end namespace libhei