diff options
author | Joey Gouly <joey.gouly@arm.com> | 2021-04-15 13:17:18 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-04-19 13:28:26 +0000 |
commit | c8cf71ec9c2518a0e35983c03bb1f8e594593a49 (patch) | |
tree | 7a20b6cada0fa9ef9e9b890711ee5a574c19324d /DynamicTablesPkg/Include | |
parent | 10bf6c40f6eb98a99c04346702cfb3ada8bd2dc5 (diff) | |
download | edk2-c8cf71ec9c2518a0e35983c03bb1f8e594593a49.tar.gz edk2-c8cf71ec9c2518a0e35983c03bb1f8e594593a49.tar.bz2 edk2-c8cf71ec9c2518a0e35983c03bb1f8e594593a49.zip |
DynamicTablesPkg: Add access size to CM_ARM_SERIAL_PORT_INFO
Add access size to CM_ARM_SERIAL_PORT_INFO so that this can be
passed down to the Generic Address Structure.
Signed-off-by: Joey Gouly <joey.gouly@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'DynamicTablesPkg/Include')
-rw-r--r-- | DynamicTablesPkg/Include/ArmNameSpaceObjects.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/DynamicTablesPkg/Include/ArmNameSpaceObjects.h b/DynamicTablesPkg/Include/ArmNameSpaceObjects.h index afcfe3704c..19dcae13b2 100644 --- a/DynamicTablesPkg/Include/ArmNameSpaceObjects.h +++ b/DynamicTablesPkg/Include/ArmNameSpaceObjects.h @@ -293,6 +293,9 @@ typedef struct CmArmSerialPortInfo { /// The Base address length
UINT64 BaseAddressLength;
+
+ /// The access size
+ UINT8 AccessSize;
} CM_ARM_SERIAL_PORT_INFO;
/** A structure that describes the
|