Debug Authentication API#
Debug Authentication module provides debugging for securely provisioned devices.
DAT module general information#
This module contains support for Debug Authentication Tool.
Module for generating debug credentials#
Module with DebugCredential class.
- class spsdk.dat.debug_credential.DebugCredentialCertificate(family, version, uuid, rot_meta, dck_pub, cc_socu, cc_vu, cc_beacon, rot_pub, signature=None, signature_provider=None)#
Bases:
FeatureBaseClassBase class for DebugCredentialCertificate.
Initialize the DebugCredential object.
- Parameters:
version (
ProtocolVersion) – Protocol versionsocc – The SoC Class that this credential applies to
uuid (
bytes) – The bytes of the unique device identifierrot_meta (
RotMeta) – Metadata for Root of Trustdck_pub (
PublicKey) – Internal binary representation of Debug Credential public keycc_socu (
int) – The Credential Constraint value that the vendor has associated with this credential.cc_vu (
int) – The Vendor Usage constraint value that the vendor has associated with this credential.cc_beacon (
int) – The non-zero Credential Beacon value, which is bound to a DCrot_pub (
PublicKey) – Internal binary representation of RoT public keysignature (
Optional[bytes]) – Debug Credential signaturesignature_provider (
Optional[SignatureProvider]) – external signature provider
-
FEATURE:
str= 'dat'#
- ROT_META_CLASS#
alias of
RotMeta
- abstract calculate_hash()#
Calculate the RoT hash.
- Return type:
bytes
- static dat_based_on_ele(family)#
Get information if the DAT is based on EdgeLock Enclave hardware.
- Parameters:
family (
FamilyRevision) – The chip family name- Return type:
bool- Returns:
True if the ELE is target HW, False otherwise
- abstract export_dck_pub()#
Export Debugger public key (DCK) as bytes.
- Return type:
bytes- Returns:
binary representing the DCK key
- abstract export_rot_pub()#
Export RoT public key as bytes.
- Return type:
bytes- Returns:
binary representing the RoT key
- get_config(data_path='./')#
Get configuration.
- Return type:
Config
- classmethod get_validation_schemas(family)#
Get list of validation schemas.
- Parameters:
family (
FamilyRevision) – Family for what will be json schema generated.- Return type:
list[dict[str,Any]]- Returns:
Validation list of schemas.
- classmethod get_validation_schemas_from_cfg(config)#
Get validation schema based on configuration.
If the class doesn’t behave generally, just override this implementation.
- Parameters:
config (
Config) – Valid configuration- Return type:
list[dict[str,Any]]- Returns:
Validation schemas
- classmethod load_cert_block(rot_config_file, family)#
Load certificate block from a file.
- Parameters:
rot_config_file (
str) – Path to Root of Trust configuration file or binary certificate blockfamily (
FamilyRevision) – Family revision for the certificate block
- Return type:
- Returns:
Loaded certificate block object
- Raises:
SPSDKError – When unable to create certificate block from the file
- classmethod load_from_config(config)#
Create a debug credential object out of yaml configuration.
- Parameters:
config (
Config) – Debug credential file configuration.- Return type:
Self- Returns:
DebugCredential object
- classmethod parse(data, family=Unknown, Revision: latest)#
Parse the debug credential.
- Parameters:
data (
bytes) – Raw data as bytesfamily (
FamilyRevision) – Mandatory family name.
- Return type:
Self- Returns:
DebugCredential object
- property rot_hash_length: int#
Root of Trust debug credential hash length.
- sign()#
Sign the DC data using SignatureProvider.
- Return type:
None
- property socc: int#
The SoC Class.
- class spsdk.dat.debug_credential.DebugCredentialCertificateEcc(family, version, uuid, rot_meta, dck_pub, cc_socu, cc_vu, cc_beacon, rot_pub, signature=None, signature_provider=None)#
Bases:
DebugCredentialCertificateClass for ECC specific of DebugCredential.
Initialize the DebugCredential object.
- Parameters:
version (
ProtocolVersion) – Protocol versionsocc – The SoC Class that this credential applies to
uuid (
bytes) – The bytes of the unique device identifierrot_meta (
RotMeta) – Metadata for Root of Trustdck_pub (
PublicKey) – Internal binary representation of Debug Credential public keycc_socu (
int) – The Credential Constraint value that the vendor has associated with this credential.cc_vu (
int) – The Vendor Usage constraint value that the vendor has associated with this credential.cc_beacon (
int) – The non-zero Credential Beacon value, which is bound to a DCrot_pub (
PublicKey) – Internal binary representation of RoT public keysignature (
Optional[bytes]) – Debug Credential signaturesignature_provider (
Optional[SignatureProvider]) – external signature provider
- COORDINATE_SIZE = {0: 32, 1: 48, 2: 66}#
- ROT_META_CLASS#
alias of
RotMetaEcc
- calculate_hash()#
Get Root Of Trust Keys Hash.
- Return type:
bytes- Returns:
RoTKH in bytes
- export()#
Export to binary form (serialization).
- Return type:
bytes
- export_dck_pub()#
Export Debugger public key (DCK) as bytes.
- Return type:
bytes- Returns:
binary representing the DCK key
- export_rot_pub()#
Export RoT public key as bytes.
- Return type:
bytes- Returns:
binary representing the RoT key
- get_data_format(include_signature=True)#
Get the format of exported binary data.
- Return type:
str
- classmethod parse(data, family=Unknown, Revision: latest)#
Parse the debug credential.
- Parameters:
data (
bytes) – Raw data as bytesfamily (
FamilyRevision) – Mandatory family name.
- Return type:
Self- Returns:
DebugCredential object
- property rot_hash_length: int#
Root of Trust debug credential hash length.
- class spsdk.dat.debug_credential.DebugCredentialCertificateRsa(family, version, uuid, rot_meta, dck_pub, cc_socu, cc_vu, cc_beacon, rot_pub, signature=None, signature_provider=None)#
Bases:
DebugCredentialCertificateClass for RSA specific of DebugCredentialCertificate.
Initialize the DebugCredential object.
- Parameters:
version (
ProtocolVersion) – Protocol versionsocc – The SoC Class that this credential applies to
uuid (
bytes) – The bytes of the unique device identifierrot_meta (
RotMeta) – Metadata for Root of Trustdck_pub (
PublicKey) – Internal binary representation of Debug Credential public keycc_socu (
int) – The Credential Constraint value that the vendor has associated with this credential.cc_vu (
int) – The Vendor Usage constraint value that the vendor has associated with this credential.cc_beacon (
int) – The non-zero Credential Beacon value, which is bound to a DCrot_pub (
PublicKey) – Internal binary representation of RoT public keysignature (
Optional[bytes]) – Debug Credential signaturesignature_provider (
Optional[SignatureProvider]) – external signature provider
- ROT_META_CLASS#
alias of
RotMetaRSA
- calculate_hash()#
Get Root Of Trust Keys Hash.
- Return type:
bytes- Returns:
RoTKH in bytes
- export()#
Export to binary form (serialization).
- Return type:
bytes- Returns:
binary representation of the debug credential
- Raises:
SPSDKError – When Debug Credential Signature is not set, call the sign method first
- export_dck_pub()#
Export Debugger public key (DCK) as bytes.
- Return type:
bytes- Returns:
binary representing the DCK key
- export_rot_pub()#
Export RoT public key as bytes.
- Return type:
bytes- Returns:
binary representing the RoT key
- classmethod get_data_format(version, include_signature=True)#
Get the format of exported binary data.
- Return type:
str
- classmethod parse(data, family=Unknown, Revision: latest)#
Parse the debug credential.
- Parameters:
data (
bytes) – Raw data as bytesfamily (
FamilyRevision) – Mandatory family name.
- Return type:
Self- Returns:
DebugCredential object
- class spsdk.dat.debug_credential.DebugCredentialEdgeLockEnclave(family, version, uuid, rot_meta, dck_pub, cc_socu, cc_vu, cc_beacon, rot_pub, signature=None, signature_provider=None)#
Bases:
DebugCredentialCertificateEccEdgeLock Class.
Initialize the DebugCredential object.
- Parameters:
version (
ProtocolVersion) – Protocol versionsocc – The SoC Class that this credential applies to
uuid (
bytes) – The bytes of the unique device identifierrot_meta (
RotMeta) – Metadata for Root of Trustdck_pub (
PublicKey) – Internal binary representation of Debug Credential public keycc_socu (
int) – The Credential Constraint value that the vendor has associated with this credential.cc_vu (
int) – The Vendor Usage constraint value that the vendor has associated with this credential.cc_beacon (
int) – The non-zero Credential Beacon value, which is bound to a DCrot_pub (
PublicKey) – Internal binary representation of RoT public keysignature (
Optional[bytes]) – Debug Credential signaturesignature_provider (
Optional[SignatureProvider]) – external signature provider
- ROT_META_CLASS#
alias of
RotMetaEdgeLockEnclave
- calculate_hash()#
Get Root Of Trust Keys Hash.
- Return type:
bytes- Returns:
RoTKH in bytes
- export()#
Export to binary form (serialization).
- Return type:
bytes
- get_data_format(include_signature=True)#
Get the format of exported binary data.
- Return type:
str
- classmethod parse(data, family=Unknown, Revision: latest)#
Parse the debug credential.
- Parameters:
data (
bytes) – Raw data as bytesfamily (
FamilyRevision) – Mandatory family name.
- Return type:
Self- Returns:
DebugCredential object
- property rot_hash_length: int#
Root of Trust debug credential hash length.
- class spsdk.dat.debug_credential.DebugCredentialEdgeLockEnclaveV2(family, certificate)#
Bases:
DebugCredentialCertificateDebug Credential file for ELE version 2 (with PQC support).
Constructor for EdgeLock Enclave version 2 debug credential class.
- ROT_META_CLASS#
alias of
RotMetaDummy
-
SUB_FEATURE:
Optional[str] = 'ele_pqc'#
- property beacon: int#
DC SOCU field.
- calculate_hash()#
Calculate the RoT hash.
- Return type:
bytes
- export()#
Export to binary form (serialization).
- Return type:
bytes
- export_dck_pub()#
Export Debugger public key (DCK) as bytes.
- Return type:
bytes- Returns:
binary representing the DCK key
- export_rot_pub()#
Export RoT public key as bytes.
- Return type:
bytes- Returns:
binary representing the RoT key
- classmethod get_validation_schemas(family)#
Get list of validation schemas.
- Parameters:
family (
FamilyRevision) – Family for what will be json schema generated.- Return type:
list[dict[str,Any]]- Returns:
Validation list of schemas.
- classmethod load_from_config(config)#
Create a debug credential object out of yaml configuration.
- Parameters:
config (
Config) – Debug credential file configuration.- Return type:
Self- Returns:
DebugCredential object
- classmethod parse(data, family=Unknown, Revision: latest)#
Parse the debug credential.
- Parameters:
data (
bytes) – Raw data as bytesfamily (
FamilyRevision) – Mandatory family name.
- Return type:
Self- Returns:
DebugCredential object
- sign()#
Sign the DC data using SignatureProvider.
- Return type:
None
- property socc: int#
DC SOCC field.
- property socu: int#
DC SOCU field.
- class spsdk.dat.debug_credential.ProtocolVersion(version)#
Bases:
objectDebug Authentication protocol version.
- VERSIONS = ['1.0', '1.1', '2.0', '2.1', '2.2']#
- classmethod from_public_key(public_key)#
Load the version object from public key.
- Return type:
Self
- classmethod from_version(major, minor)#
Load the version object from major and minor version.
- Return type:
Self
- is_rsa()#
Determine whether rsa or ecc is used.
- Return type:
bool- Returns:
True if the protocol is RSA type. False otherwise
- property major: int#
Get major version.
- property minor: int#
Get minor version.
- validate()#
Validate the protocol version value.
- Raises:
SPSDKValueError – In case that protocol version is using unsupported key type.
- Return type:
None
-
version:
str#
Module with Debug Authentication Challenge (DAC) Packet#
Module with Debug Authentication Challenge (DAC) Packet.
- class spsdk.dat.dac_packet.DebugAuthenticationChallenge(version, socc, uuid, rotid_rkh_revocation, rotid_rkth_hash, cc_soc_pinned, cc_soc_default, cc_vu, challenge)#
Bases:
objectBase class for DebugAuthenticationChallenge.
Initialize the DebugAuthenticationChallenge object.
- Parameters:
version (
ProtocolVersion) – The string representing version: for RSA: 1.0, for ECC: 2.0, 2.1, 2.2socc (
int) – The SoC Class that this credential applies touuid (
bytes) – The string representing the unique device identifierrotid_rkh_revocation (
int) – State of certificate revocation fieldrotid_rkth_hash (
bytes) – The hash of roth-meta datacc_soc_pinned (
int) – State of lock bits in the debugger configuration fieldcc_soc_default (
int) – State of the debugger configuration fieldcc_vu (
int) – The Vendor usage that the vendor has associated with this credentialchallenge (
bytes) – Randomly generated bytes from the target
- export()#
Exports the DebugAuthenticationChallenge into bytes.
- Return type:
bytes
- static get_rot_hash_length(family, major_ver, minor_ver)#
Returns length of Root Of Trust hash length.
- Parameters:
family (
FamilyRevision) – The chip family namemajor_ver (
int) – Major versionminor_ver (
int) – Minor version
- Return type:
int- Returns:
Length of Root Of Trust hash in bytes
- classmethod parse(data, family=Unknown, Revision: latest)#
Parse the data into a DebugAuthenticationChallenge.
- Parameters:
data (
bytes) – Raw data as bytesfamily (
FamilyRevision) – The CPU family
- Return type:
Self- Returns:
DebugAuthenticationChallenge object
- validate_against_dc(family, dc)#
Validate against Debug Credential file.
- Parameters:
family (
FamilyRevision) – Chip family namedc (
DebugCredentialCertificate) – Debug Credential class to be validated by DAC
- Return type:
Verifier- Returns:
The final Verifier object
Module with Debug Authentication Response (DAR) Packet#
Module with Debug Authentication Response (DAR) Packet.
- class spsdk.dat.dar_packet.DebugAuthenticateResponse(family, debug_credential, auth_beacon, dac, sign_provider)#
Bases:
FeatureBaseClassClass for DAR packet.
Initialize the DebugAuthenticateResponse object.
- Parameters:
family (
FamilyRevision) – Family name of used chip for DARdebug_credential (
DebugCredentialCertificate) – the path, where the dc is storeauth_beacon (
int) – authentication beacon valuedac (
DebugAuthenticationChallenge) – the path, where the dac is storepath_dck_private – the path, where the dck private key is store
-
FEATURE:
str= 'dat'#
- export()#
Export to binary form (serialization).
- Return type:
bytes- Returns:
the exported bytes from object
- get_config(data_path='./')#
Create configuration of the Feature.
- Return type:
Config
- classmethod get_validation_schemas(family)#
Create the validation schema.
- Parameters:
family (
FamilyRevision) – Family description.- Raises:
SPSDKError – Family or revision is not supported.
- Return type:
list[dict[str,Any]]- Returns:
List of validation schemas.
- classmethod get_validation_schemas_from_cfg(config)#
Get validation schema based on configuration.
If the class doesn’t behave generally, just override this implementation.
- Parameters:
config (
Config) – Valid configuration- Return type:
list[dict[str,Any]]- Returns:
Validation schemas
- classmethod load_from_config(config, dac=None)#
Converts the configuration option into an Debug authentication response object.
- Parameters:
config (
Config) – Debug authentication response configuration dictionaries.dac (
Optional[DebugAuthenticationChallenge]) – Debug Credential Challenge
- Return type:
Self- Returns:
Debug authentication response object.
- classmethod parse(data)#
Parse the DAR.
- Return type:
Self
- class spsdk.dat.dar_packet.DebugAuthenticateResponseECC(family, debug_credential, auth_beacon, dac, sign_provider)#
Bases:
DebugAuthenticateResponseClass for DAR, using Elliptic curve keys.
Initialize the DebugAuthenticateResponse object.
- Parameters:
family (
FamilyRevision) – Family name of used chip for DARdebug_credential (
DebugCredentialCertificate) – the path, where the dc is storeauth_beacon (
int) – authentication beacon valuedac (
DebugAuthenticationChallenge) – the path, where the dac is storepath_dck_private – the path, where the dck private key is store
- CURVE = 'secp256r1'#
- KEY_LENGTH = 0#
- class spsdk.dat.dar_packet.DebugAuthenticateResponseECC_256(family, debug_credential, auth_beacon, dac, sign_provider)#
Bases:
DebugAuthenticateResponseECCClass for DAR, using Elliptic curve, 256 bits sized keys.
Initialize the DebugAuthenticateResponse object.
- Parameters:
family (
FamilyRevision) – Family name of used chip for DARdebug_credential (
DebugCredentialCertificate) – the path, where the dc is storeauth_beacon (
int) – authentication beacon valuedac (
DebugAuthenticationChallenge) – the path, where the dac is storepath_dck_private – the path, where the dck private key is store
- CURVE = 'secp256r1'#
- KEY_LENGTH = 32#
- class spsdk.dat.dar_packet.DebugAuthenticateResponseECC_384(family, debug_credential, auth_beacon, dac, sign_provider)#
Bases:
DebugAuthenticateResponseECCClass for DAR, using Elliptic curve, 384 bits sized keys.
Initialize the DebugAuthenticateResponse object.
- Parameters:
family (
FamilyRevision) – Family name of used chip for DARdebug_credential (
DebugCredentialCertificate) – the path, where the dc is storeauth_beacon (
int) – authentication beacon valuedac (
DebugAuthenticationChallenge) – the path, where the dac is storepath_dck_private – the path, where the dck private key is store
- CURVE = 'secp384r1'#
- KEY_LENGTH = 48#
- class spsdk.dat.dar_packet.DebugAuthenticateResponseECC_521(family, debug_credential, auth_beacon, dac, sign_provider)#
Bases:
DebugAuthenticateResponseECCClass for DAR, using Elliptic curve, 521 bits sized keys.
Initialize the DebugAuthenticateResponse object.
- Parameters:
family (
FamilyRevision) – Family name of used chip for DARdebug_credential (
DebugCredentialCertificate) – the path, where the dc is storeauth_beacon (
int) – authentication beacon valuedac (
DebugAuthenticationChallenge) – the path, where the dac is storepath_dck_private – the path, where the dck private key is store
- CURVE = 'secp521r1'#
- KEY_LENGTH = 66#
- class spsdk.dat.dar_packet.DebugAuthenticateResponseEdgelockEnclaveV2(family, debug_credential, auth_beacon, dac, sign_message)#
Bases:
DebugAuthenticateResponseClass for DAR, using AHAB Signed message version 2.
Constructor of DAR for devices that using EdgeLock Enclave with AHAB v2.
- export()#
Export to binary form (serialization).
- Return type:
bytes- Returns:
the exported bytes from object
- classmethod get_validation_schemas(family)#
Create the validation schema.
- Parameters:
family (
FamilyRevision) – Family description.- Raises:
SPSDKError – Family or revision is not supported.
- Return type:
list[dict[str,Any]]- Returns:
List of validation schemas.
- classmethod load_from_config(config, dac=None)#
Converts the configuration option into an Debug authentication response object.
- Parameters:
config (
Config) – Debug authentication response configuration dictionaries.dac (
Optional[DebugAuthenticationChallenge]) – Debug Credential Challenge
- Return type:
Self- Returns:
Debug authentication response object.
- class spsdk.dat.dar_packet.DebugAuthenticateResponseRSA(family, debug_credential, auth_beacon, dac, sign_provider)#
Bases:
DebugAuthenticateResponseClass for RSA specifics of DAR packet.
Initialize the DebugAuthenticateResponse object.
- Parameters:
family (
FamilyRevision) – Family name of used chip for DARdebug_credential (
DebugCredentialCertificate) – the path, where the dc is storeauth_beacon (
int) – authentication beacon valuedac (
DebugAuthenticationChallenge) – the path, where the dac is storepath_dck_private – the path, where the dck private key is store
Module for NXP SPDK DebugMailbox support#
Module for NXP SPSDK DebugMailbox support.
- class spsdk.dat.debug_mailbox.DebugMailbox(debug_probe, family, reset=True, moredelay=0.0, op_timeout=1000)#
Bases:
objectClass for DebugMailbox.
Initialize DebugMailbox object.
- Parameters:
debug_probe (
DebugProbe) – Debug probe instance.family (
FamilyRevision) – Chip family.reset (
bool) – Do reset of debug mailbox during initialization, defaults to True.moredelay (
float) – Time of extra delay after reset sequence, defaults to 0.0.op_timeout (
int) – Atomic operation timeout, defaults to 1000.
- Raises:
SPSDKIOError – Various kind of vulnerabilities during connection to debug mailbox.
- close()#
Close session.
- Return type:
None
- dbgmlbx_reg_read(addr=0)#
Read debug mailbox access port register.
This is read debug mailbox register function for SPSDK library to support various DEBUG PROBES.
- Parameters:
addr (
int) – the register address- Return type:
int- Returns:
The read value of addressed register (4 bytes)
- Raises:
NotImplementedError – Derived class has to implement this method
- dbgmlbx_reg_write(addr=0, data=0)#
Write debug mailbox access port register.
This is write debug mailbox register function for SPSDK library to support various DEBUG PROBES.
- Parameters:
addr (
int) – the register addressdata (
int) – the data to be written into register
- Raises:
NotImplementedError – Derived class has to implement this method
- Return type:
None
- get_dbgmlbx_ap()#
Decorator function that secure the getting right DEBUG MAILBOX AP ix for first use.
- Parameters:
func – Decorated function.
- read_idr()#
Read IDR of debug mailbox.
- Return type:
int- Returns:
IDR value of debug mailbox AP.
- spin_read(reg)#
Do atomic read operation to debug mailbox.
- Parameters:
reg (
int) – Register address.- Return type:
int- Returns:
Read value.
- Raises:
SPSDKTimeoutError – When read operation exceed defined operation timeout.
- spin_write(reg, value)#
Do atomic write operation to debug mailbox.
- Parameters:
reg (
int) – Register address.value (
int) – Value to write.
- Raises:
SPSDKTimeoutError – When write operation exceed defined operation timeout.
- Return type:
None
- exception spsdk.dat.debug_mailbox.DebugMailboxError#
Bases:
RuntimeErrorClass for DebugMailboxError.
Module with commands for Debug Mailbox#
Commands for Debug Mailbox.
- class spsdk.dat.dm_commands.DebugAuthenticationResponse(dm, paramlen)#
Bases:
DebugMailboxCommandClass for DebugAuthenticationResponse.
Initialize.
- CMD_ID = 17#
- CMD_NAME = 'DBG_AUTH_RESP'#
- class spsdk.dat.dm_commands.DebugAuthenticationStart(dm, resplen=26)#
Bases:
DebugMailboxCommandClass for DebugAuthenticationStart.
Initialize.
- CMD_ID = 16#
- CMD_NAME = 'DBG_AUTH_START'#
- class spsdk.dat.dm_commands.DebugMailboxCommand(dm, paramlen=0, resplen=0, delay=0.03)#
Bases:
objectClass for DebugMailboxCommand.
Initialize.
- CMD_ID = 0#
- CMD_NAME = 'General'#
- DELAY_DEFAULT = 0.03#
- run(params=None)#
Run DebugMailboxCommand.
- Return type:
list[Any]
- run_safe(raise_if_failure=True, **args)#
Run a command and abort on first failure instead of looping forever.
- Return type:
Optional[list[Any]]
- class spsdk.dat.dm_commands.EnterBlankDebugAuthentication(dm)#
Bases:
DebugMailboxCommandClass for EnterBlankDebugAuthentication.
Initialize.
- CMD_ID = 8#
- CMD_NAME = 'ENTER_BLANK_DEBUG_AUTH'#
- class spsdk.dat.dm_commands.EnterISPMode(dm)#
Bases:
DebugMailboxCommandClass for EnterISPMode.
Initialize.
- CMD_ID = 5#
- CMD_NAME = 'ENTER_ISP_MODE'#
- class spsdk.dat.dm_commands.EraseFlash(dm)#
Bases:
DebugMailboxCommandClass for Erase Flash.
Initialize.
- CMD_ID = 3#
- CMD_NAME = 'ERASE_FLASH'#
- class spsdk.dat.dm_commands.EraseOneSector(dm)#
Bases:
DebugMailboxCommandClass for Erase One Sector.
Initialize.
- CMD_ID = 11#
- CMD_NAME = 'ERASE_ONE_SECTOR'#
- class spsdk.dat.dm_commands.ExitDebugMailbox(dm, paramlen=0, resplen=0, delay=0.03)#
Bases:
DebugMailboxCommandClass for ExitDebugMailbox.
Initialize.
- CMD_ID = 4#
- CMD_NAME = 'EXIT_DBG_MB'#
- class spsdk.dat.dm_commands.GetCRPLevel(dm, paramlen=0, resplen=0, delay=0.03)#
Bases:
DebugMailboxCommandClass for Get CRP Level.
Initialize.
- CMD_ID = 2#
- CMD_NAME = 'GET_CRP_LEVEL'#
- class spsdk.dat.dm_commands.NxpDebugAuthenticationResponse(dm, paramlen)#
Bases:
DebugMailboxCommandClass for DebugAuthenticationResponse.
Initialize.
- CMD_ID = 19#
- CMD_NAME = 'NXP_DBG_AUTH_RESP'#
- class spsdk.dat.dm_commands.NxpDebugAuthenticationStart(dm, resplen=26)#
Bases:
DebugMailboxCommandClass for DebugAuthenticationStart.
Initialize.
- CMD_ID = 18#
- CMD_NAME = 'NXP_DBG_AUTH_START'#
- class spsdk.dat.dm_commands.SetFaultAnalysisMode(dm, paramlen=0)#
Bases:
DebugMailboxCommandClass for SetFaultAnalysisMode.
Initialize.
- CMD_ID = 6#
- CMD_NAME = 'SET_FA_MODE'#
- class spsdk.dat.dm_commands.StartDebugMailbox(dm, paramlen=0, resplen=0, delay=0.03)#
Bases:
DebugMailboxCommandClass for StartDebugMailbox.
Initialize.
- CMD_ID = 1#
- CMD_NAME = 'START_DBG_MB'#
- class spsdk.dat.dm_commands.StartDebugSession(dm, paramlen=0, resplen=0, delay=0.03)#
Bases:
DebugMailboxCommandClass for StartDebugSession.
Initialize.
- CMD_ID = 7#
- CMD_NAME = 'START_DBG_SESSION'#
- class spsdk.dat.dm_commands.WriteToFlash(dm)#
Bases:
DebugMailboxCommandClass for Write To Flash.
Initialize.
- CMD_ID = 9#
- CMD_NAME = 'WRITE_TO_FLASH'#