Understand the Mbed TLS configuration split
developmentMbed TLS uses a split configuration model to separate TLS/X.509 logic from cryptographic logic. This allows the cryptography component to be managed via the tf-psa-crypto repository.
mbedtls_config.h: Configures TLS and X.509 features.tf_psa_crypto_config.h: Configures the cryptography interface (PSA API) and cryptographic mechanisms.
Options relevant to both (such as platform or system settings) are located in tf_psa_crypto_config.h to avoid duplication.