Skip to content

Commit ae7f4c5

Browse files
committed
Add Turin 1.0.0.7 tokens.
Fixes <#171>.
1 parent d8244b0 commit ae7f4c5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

src/ondisk.rs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9494,6 +9494,24 @@ fn test_volate() {
94949494
assert!(MemMbistDataEyeType::_1dVolate == MemMbistDataEyeType::_1dVoltage);
94959495
}
94969496

9497+
#[derive(Debug, PartialEq, FromPrimitive, ToPrimitive, Copy, Clone)]
9498+
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
9499+
#[cfg_attr(feature = "serde", serde(deny_unknown_fields))]
9500+
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
9501+
pub enum DfEnhancedPartialWriteToSameAddress {
9502+
Disabled = 0,
9503+
Enabled = 1,
9504+
}
9505+
9506+
#[derive(Debug, PartialEq, FromPrimitive, ToPrimitive, Copy, Clone)]
9507+
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
9508+
#[cfg_attr(feature = "serde", serde(deny_unknown_fields))]
9509+
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
9510+
pub enum DfEnhancedPartialWrite {
9511+
Disabled = 0,
9512+
Enabled = 1,
9513+
}
9514+
94979515
#[derive(Debug, PartialEq, FromPrimitive, ToPrimitive, Copy, Clone)]
94989516
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
94999517
#[cfg_attr(feature = "serde", serde(deny_unknown_fields))]
@@ -11078,6 +11096,10 @@ make_token_accessors! {
1107811096
DfUmcCxlMixedInterleavedMode(default 0, id 0x8e49_3e5f) | pub get DfUmcCxlMixedInterleavedMode : pub set DfUmcCxlMixedInterleavedMode,
1107911097
DfTgtReqGo(default 0xff, id 0xa2c7_7a9d) | pub get DfTgtReqGo : pub set DfTgtReqGo,
1108011098
DfGmiSubTxRxMode(default 0, id 0x6904_3ee0) | pub get DfGmiSubTxRxMode : pub set DfGmiSubTxRxMode,
11099+
/// See DF::IOMConfig3[DisNon64EnhWrToSameAddr].
11100+
DfEnhancedPartialWriteToSameAddress(default 0, id 0x5ddd_7698) | pub get DfEnhancedPartialWriteToSameAddress : pub set DfEnhancedPartialWriteToSameAddress, // Turin 1.0.0.7
11101+
/// See DF::IOMConfig2[DisNon64WrDynCnRply].
11102+
DfEnhancedPartialWrite(default 0, id 0x6ca6_918b) | pub get DfEnhancedPartialWrite : pub set DfEnhancedPartialWrite, // Turin 1.0.0.7
1108111103

1108211104
// Nbio
1108311105

0 commit comments

Comments
 (0)