Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

entropy: Add PSA rng as the entropy provider for the nrf54h20 #17200

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Commits on Nov 12, 2024

  1. nrf_security: Make PSA drivers depend on PSA core

    Make all PSA drivers depend on the OBERON_PSA_CORE
    since we cannot use the drivers without it.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    b34e548 View commit details
    Browse the repository at this point in the history
  2. manifest: Bring Zephyr with PSA RNG for NRF54H20

    Brings Zephyr changes which automatically enable
    the PSA crypto as the entropy generator for Zephyr.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    1044a83 View commit details
    Browse the repository at this point in the history
  3. nrf_security: Make PSA SSF client independent

    Add configuration to allow enabling the SSF PSA client
    when nrf_security is not enabled.
    This is particularly useful for the applications that only
    want to use the PSA rng and no other crypto. Enabling
    nrf_security in these applications will result to an
    increased application footprint and configuration complexity
    without any reason.
    
    This configuration provides the PSA implementation
    from the secure domain through the SSF client and
    it has no configurability yet. So there is no need
    to enforce NRF_SECURITY with this configuration.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    46122d7 View commit details
    Browse the repository at this point in the history
  4. application: matter_bridge: Add overlay for 54h20

    Add overlay to reduce the footprint of the matter_bridge
    application.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    34099e2 View commit details
    Browse the repository at this point in the history
  5. samples: suit: flash_compantion: Remove prng

    Remove prng dts node since this is removed from the
    nrf54h20 board file.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    6c8b70d View commit details
    Browse the repository at this point in the history
  6. samples: suit: smp_transfer: recovery: fix compilation

    The changes to enable PSA RNG on 54H20 made
    sample.suit.smp_transfer.recovery overflow ROM on recovery_hci_ipc.
    Slightly increase the size of the cpurad_recovery_partition so that
    everything fits.
    
    Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
    tomi-font authored and Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    f0dda58 View commit details
    Browse the repository at this point in the history
  7. sdfw_services: Remove call to psa_crypto_init from ssf

    Remove the call to the ssf_psa_crypto_init since the
    psa_crypto is initialiazed in SDFW and it doesn't need
    to get initialized from the application.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    3312fc7 View commit details
    Browse the repository at this point in the history
  8. tests: suit: Disable cpusec IPC and bellboard

    Disable the IPC and bellboard nodes since these
    tests don't use communication between domains.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    f4fe615 View commit details
    Browse the repository at this point in the history
  9. manifest: Fix capitalization

    In a comment, tHe -> The
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    8fb6b14 View commit details
    Browse the repository at this point in the history
  10. sdfw_services: Init ssf_client earlier

    Initialize the ssf_client earlier during the boot
    process during post kernel.
    
    This is needed for the "nRF IEEE 802.15.4" protocol.
    (CONFIG_NRF_802154_SER_RADIO)
    
    This protocol requires entropy to be present and ssf_client
    is required to get entropy.
    
    Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
    Vge0rge committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    1df584d View commit details
    Browse the repository at this point in the history