summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFred Reitberger <reitbergerfred@gmail.com>2022-10-31 15:52:39 -0400
committerFred Reitberger <reitbergerfred@gmail.com>2022-11-03 19:48:52 +0000
commitcdac3aeb1168223ff218b7dc6dd0a0075667f429 (patch)
treed916aab3b558c2730771d6637a649017ddf814b4 /src
parenta9b09547d853e58419d5093b9044ea776d024891 (diff)
downloadcoreboot-cdac3aeb1168223ff218b7dc6dd0a0075667f429.tar.gz
coreboot-cdac3aeb1168223ff218b7dc6dd0a0075667f429.tar.bz2
coreboot-cdac3aeb1168223ff218b7dc6dd0a0075667f429.zip
soc/amd/mendocino/data_fabric: Add register bitslice struct
Add structs to define the data_fabric register bitfields. Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com> Change-Id: I01dcea783542ecc0a761191907c1273016f854c2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/69070 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src')
-rw-r--r--src/soc/amd/mendocino/include/soc/data_fabric.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/soc/amd/mendocino/include/soc/data_fabric.h b/src/soc/amd/mendocino/include/soc/data_fabric.h
index a73bc424efaa..a1a1f4e70d4a 100644
--- a/src/soc/amd/mendocino/include/soc/data_fabric.h
+++ b/src/soc/amd/mendocino/include/soc/data_fabric.h
@@ -12,4 +12,32 @@
#define NUM_NB_MMIO_REGS 8
+union df_mmio_control {
+ struct {
+ uint32_t re : 1; /* [ 0.. 0] */
+ uint32_t we : 1; /* [ 1.. 1] */
+ uint32_t : 2; /* [ 3.. 2] */
+ uint32_t fabric_id : 4; /* [ 7.. 4] */
+ uint32_t : 8; /* [15.. 8] */
+ uint32_t np : 1; /* [16..16] */
+ uint32_t : 15; /* [31..17] */
+ };
+ uint32_t raw;
+};
+
+union df_ficaa {
+ struct {
+ uint32_t cfg_inst_acc_en : 1; /* [ 0.. 0] */
+ uint32_t : 1; /* [ 1.. 1] */
+ uint32_t reg_num : 9; /* [10.. 2] */
+ uint32_t func_num : 3; /* [13..11] */
+ uint32_t b64_en : 1; /* [14..14] */
+ uint32_t : 1; /* [15..15] */
+ uint32_t inst_id : 8; /* [23..16] */
+ uint32_t : 8; /* [31..24] */
+ };
+ uint32_t raw;
+};
+
+
#endif /* AMD_MENDOCINO_DATA_FABRIC_H */