| # Copyright lowRISC contributors. |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| load("//rules:opentitan.bzl", "OPENTITAN_CPU") |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| cc_library( |
| name = "isr_testutils", |
| srcs = ["autogen/isr_testutils.c"], |
| hdrs = ["autogen/isr_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/dif:adc_ctrl", |
| "//sw/device/lib/dif:alert_handler", |
| "//sw/device/lib/dif:aon_timer", |
| "//sw/device/lib/dif:csrng", |
| "//sw/device/lib/dif:edn", |
| "//sw/device/lib/dif:entropy_src", |
| "//sw/device/lib/dif:flash_ctrl", |
| "//sw/device/lib/dif:gpio", |
| "//sw/device/lib/dif:hmac", |
| "//sw/device/lib/dif:i2c", |
| "//sw/device/lib/dif:keymgr", |
| "//sw/device/lib/dif:kmac", |
| "//sw/device/lib/dif:otbn", |
| "//sw/device/lib/dif:otp_ctrl", |
| "//sw/device/lib/dif:pattgen", |
| "//sw/device/lib/dif:pwrmgr", |
| "//sw/device/lib/dif:rv_plic", |
| "//sw/device/lib/dif:rv_timer", |
| "//sw/device/lib/dif:sensor_ctrl", |
| "//sw/device/lib/dif:spi_device", |
| "//sw/device/lib/dif:spi_host", |
| "//sw/device/lib/dif:sysrst_ctrl", |
| "//sw/device/lib/dif:uart", |
| "//sw/device/lib/dif:usbdev", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "aes_testutils", |
| srcs = ["aes_testutils.c"], |
| hdrs = ["aes_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/dif:aes", |
| "//sw/device/lib/dif:csrng_shared", |
| "//sw/device/lib/dif:edn", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/testing:csrng_testutils", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "alert_handler_testutils", |
| srcs = ["alert_handler_testutils.c"], |
| hdrs = ["alert_handler_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:alert_handler", |
| "//sw/device/lib/dif:base", |
| "//sw/device/lib/dif:rstmgr", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "aon_timer_testutils", |
| srcs = ["aon_timer_testutils.c"], |
| hdrs = ["aon_timer_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/arch:device", |
| "//sw/device/lib/base:math", |
| "//sw/device/lib/dif:aon_timer", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "clkmgr_testutils", |
| srcs = ["clkmgr_testutils.c"], |
| hdrs = ["clkmgr_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:clkmgr", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "csrng_testutils", |
| srcs = ["csrng_testutils.c"], |
| hdrs = ["csrng_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:csrng", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "entropy_testutils", |
| srcs = ["entropy_testutils.c"], |
| hdrs = ["entropy_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/ip/edn/data:edn_regs", |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/base:mmio", |
| "//sw/device/lib/dif:csrng", |
| "//sw/device/lib/dif:csrng_shared", |
| "//sw/device/lib/dif:edn", |
| "//sw/device/lib/dif:entropy_src", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "flash_ctrl_testutils", |
| srcs = ["flash_ctrl_testutils.c"], |
| hdrs = ["flash_ctrl_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/top_earlgrey/ip/flash_ctrl/data/autogen:flash_ctrl_regs", |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/base:abs_mmio", |
| "//sw/device/lib/base:mmio", |
| "//sw/device/lib/dif:flash_ctrl", |
| "//sw/device/lib/runtime:hart", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "hmac_testutils", |
| srcs = ["hmac_testutils.c"], |
| hdrs = ["hmac_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/ip/hmac/data:hmac_regs", |
| "//sw/device/lib/base:mmio", |
| "//sw/device/lib/dif:hmac", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "i2c_testutils", |
| srcs = ["i2c_testutils.c"], |
| hdrs = ["i2c_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/ip/i2c/data:i2c_regs", |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/dif:i2c", |
| "//sw/device/lib/dif:pinmux", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "keymgr_testutils", |
| srcs = ["keymgr_testutils.c"], |
| hdrs = ["keymgr_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/ip/keymgr/data:keymgr_regs", |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/base:mmio", |
| "//sw/device/lib/dif:flash_ctrl", |
| "//sw/device/lib/dif:keymgr", |
| "//sw/device/lib/dif:otp_ctrl", |
| "//sw/device/lib/dif:rstmgr", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/testing:flash_ctrl_testutils", |
| "//sw/device/lib/testing:kmac_testutils", |
| "//sw/device/lib/testing:otp_ctrl_testutils", |
| "//sw/device/lib/testing:rstmgr_testutils", |
| "//sw/device/lib/testing/test_framework:check", |
| "//sw/device/silicon_creator/lib/base:chip", |
| "//sw/device/silicon_creator/lib/drivers:retention_sram", |
| ], |
| ) |
| |
| cc_library( |
| name = "kmac_testutils", |
| srcs = ["kmac_testutils.c"], |
| hdrs = ["kmac_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:kmac", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "lc_ctrl_testutils", |
| srcs = ["lc_ctrl_testutils.c"], |
| hdrs = ["lc_ctrl_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:lc_ctrl", |
| "//sw/device/lib/runtime:log", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "otbn_testutils", |
| srcs = ["otbn_testutils.c"], |
| hdrs = ["otbn_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:otbn", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/runtime:log", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "otp_ctrl_testutils", |
| srcs = ["otp_ctrl_testutils.c"], |
| hdrs = ["otp_ctrl_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:otp_ctrl", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/runtime:log", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "pinmux_testutils", |
| srcs = ["pinmux_testutils.c"], |
| hdrs = ["pinmux_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/arch:device", |
| "//sw/device/lib/dif:base", |
| "//sw/device/lib/dif:gpio", |
| "//sw/device/lib/dif:pinmux", |
| "//sw/device/lib/runtime:hart", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "pwrmgr_testutils", |
| srcs = ["pwrmgr_testutils.c"], |
| hdrs = ["pwrmgr_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:pwrmgr", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "rand_testutils", |
| srcs = ["rand_testutils.c"], |
| hdrs = ["rand_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| ":rv_core_ibex_testutils", |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/arch:device", |
| "//sw/device/lib/base:memory", |
| "//sw/device/lib/dif:rv_core_ibex", |
| "//sw/device/lib/runtime:log", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "rstmgr_testutils", |
| srcs = ["rstmgr_testutils.c"], |
| hdrs = ["rstmgr_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:rstmgr", |
| "//sw/device/lib/testing/test_framework:check", |
| "//sw/device/silicon_creator/lib/drivers:retention_sram", |
| ], |
| ) |
| |
| cc_library( |
| name = "rv_core_ibex_testutils", |
| srcs = ["rv_core_ibex_testutils.c"], |
| hdrs = ["rv_core_ibex_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:rv_core_ibex", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "rv_plic_testutils", |
| srcs = ["rv_plic_testutils.c"], |
| hdrs = ["rv_plic_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| ":rand_testutils", |
| "//sw/device/lib/dif:base", |
| "//sw/device/lib/dif:rv_plic", |
| "//sw/device/lib/runtime:log", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "sensor_ctrl_testutils", |
| srcs = ["sensor_ctrl_testutils.c"], |
| hdrs = ["sensor_ctrl_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:base", |
| "//sw/device/lib/dif:sensor_ctrl", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "sram_ctrl_testutils", |
| srcs = ["sram_ctrl_testutils.c"], |
| hdrs = ["sram_ctrl_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/base:mmio", |
| "//sw/device/lib/dif:sram_ctrl", |
| "//sw/device/lib/runtime:ibex", |
| "//sw/device/lib/runtime:log", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "spi_device_testutils", |
| srcs = ["spi_device_testutils.c"], |
| hdrs = ["spi_device_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//sw/device/lib/dif:spi_device", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "spi_flash_testutils", |
| srcs = ["spi_flash_testutils.c"], |
| hdrs = ["spi_flash_testutils.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| ":spi_device_testutils", |
| "//sw/device/lib/base:macros", |
| "//sw/device/lib/dif:spi_host", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "usb_testutils", |
| srcs = [ |
| "usb_testutils.c", |
| "usb_testutils_controlep.c", |
| ], |
| hdrs = [ |
| "usb_testutils.h", |
| "usb_testutils_controlep.h", |
| "usb_testutils_diags.h", |
| ], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| "//hw/top_earlgrey/sw/autogen:top_earlgrey", |
| "//sw/device/lib/dif:usbdev", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |
| |
| cc_library( |
| name = "usb_testutils_simpleserial", |
| srcs = ["usb_testutils_simpleserial.c"], |
| hdrs = ["usb_testutils_simpleserial.h"], |
| target_compatible_with = [OPENTITAN_CPU], |
| deps = [ |
| ":usb_testutils", |
| "//sw/device/lib/testing/test_framework:check", |
| ], |
| ) |