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 14 commits into
base: main
Choose a base branch
from

Commits on Nov 28, 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    f6d4689 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    9747704 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    f6b6591 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    e142ef9 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    72a9c61 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.
    
    Also add this offset to the cpuapp_rx_partitions since the
    cpuapp_rx_partitions and the cpurad_rx_partitions cannot
    overlap.
    
    Signed-off-by: Tomi Fontanilles <[email protected]>
    Signed-off-by: Georgios Vasilakis <[email protected]>
    tomi-font authored and Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    da01a73 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    d2f0ba7 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    ed31062 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 <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    cfbf522 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.
    
    ssf_client needs to be initialized before the
    CONFIG_NRF_802154_SER_RADIO_INIT_PRIO since it is
    used by the "nRF IEEE 802.15.4" protocol.
    
    It also needs to be initialied after the IPC
    IPC_SERVICE_REG_BACKEND_PRIORITY since the
    IPC expects the protocol to be initialized.
    Failing to do that will also trigger an assertion
    in Zephyr.
    
    Signed-off-by: Georgios Vasilakis <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    8d2e8db View commit details
    Browse the repository at this point in the history
  11. sdfw_services: Use nrf_rpc_init_group in ssf_client init

    Use nrf_rpc_init_group when ssf_client is being initalized
    since it will happen before other nrf_rpc groups are initialized.
    
    Signed-off-by: Georgios Vasilakis <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    1e46ff8 View commit details
    Browse the repository at this point in the history
  12. test: benchmarks: Disable cpusec nodes for multicore test

    Disable the cpusec related nodes in the multicore benchmark
    since it increases power consumption and IPC communication
    with secure domain is not needed for this test.
    
    Signed-off-by: Georgios Vasilakis <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    df9738a View commit details
    Browse the repository at this point in the history
  13. Aligned ram0x overlays in Multicore Tests and Matter samples

    The cpuapp_ram0x_region has been changed in the global dtsi file in
    Zephyr and we need to align all dts overlay entries to that change.
    
    Signed-off-by: Arkadiusz Balys <[email protected]>
    ArekBalysNordic authored and Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    1088ad5 View commit details
    Browse the repository at this point in the history
  14. manifest: Update nrfxlib

    Updates the nrf_rpc library to allow initialization
    of single nrf_rpc groups.
    
    Signed-off-by: Georgios Vasilakis <[email protected]>
    Vge0rge committed Nov 28, 2024
    Configuration menu
    Copy the full SHA
    4adad40 View commit details
    Browse the repository at this point in the history