diff options
| -rw-r--r-- | src/usr/targeting/common/xmltohb/attribute_types.xml | 60 | ||||
| -rw-r--r-- | src/usr/targeting/common/xmltohb/target_types.xml | 1 |
2 files changed, 61 insertions, 0 deletions
diff --git a/src/usr/targeting/common/xmltohb/attribute_types.xml b/src/usr/targeting/common/xmltohb/attribute_types.xml index 82c61fe3e..eb5221c59 100644 --- a/src/usr/targeting/common/xmltohb/attribute_types.xml +++ b/src/usr/targeting/common/xmltohb/attribute_types.xml @@ -12507,4 +12507,64 @@ firmware notes: Platforms should initialize this attribute to AUTO (0)</descript </hwpfToHbAttrMap> </attribute> +<enumerationType> + <id>CDM_POLICIES</id> + <description>Cec Degraded Mode Policies</description> + <enumerator> + <name>FUNCTIONAL</name> + <value>0x00000001</value> + </enumerator> + <enumerator> + <name>MANUFACTORING</name> + <value>0x00000002</value> + </enumerator> + <enumerator> + <name>PREDICTIVE</name> + <value>0x00000004</value> + </enumerator> + <default>NONE</default> + </enumerationType> + +<attribute> + <id>CDM_POLICIES</id> + <description>Cec Degraded Mode Policies</description> + <complexType> + <description>Three boolean values</description> + <field> + <name>functional</name> + <description> + 0b0: Functional policy is disabled + 0b1: Functional policy is enabled + </description> + <type>uint8_t</type> + <bits>1</bits> + <default>0</default> + </field> + <field> + <name>manufacturing</name> + <description> + 0b0: Manufacturing policy enabled + 0b1: Manufacturing policy disabled + </description> + <type>uint8_t</type> + <bits>1</bits> + <default>0</default> + </field> + <field> + <name>predictive</name> + <description> + 0b0: predictive policy is enabled; + 0b1: predictive policy is disabled + </description> + <type>uint8_t</type> + <bits>1</bits> + <default>0</default> + </field> + </complexType> + <persistency>non-volatile</persistency> + <writeable/> + <readable/> + <hasStringConversion/> +</attribute> + </attributes> diff --git a/src/usr/targeting/common/xmltohb/target_types.xml b/src/usr/targeting/common/xmltohb/target_types.xml index 57f7afce1..e425fbf13 100644 --- a/src/usr/targeting/common/xmltohb/target_types.xml +++ b/src/usr/targeting/common/xmltohb/target_types.xml @@ -184,6 +184,7 @@ <attribute><id>DUMMY_PERSISTENCY</id></attribute> <attribute><id>MEM_MIRROR_PLACEMENT_POLICY</id></attribute> <attribute><id>RISK_LEVEL</id></attribute> + <attribute><id>CDM_POLICIES</id></attribute> </targetType> <targetType> |

