├── .gitignore ├── LICENSE.md ├── Makefile ├── Makefile.inc ├── README.md ├── baremetal_app ├── Makefile └── app.c ├── docs ├── ARM_SCMI_Validation_Methodology.pdf ├── guide_sgm_testing.md ├── scmi_testlist.md └── user_guide.md ├── linux_app ├── Makefile └── app.c ├── mocker_app ├── Makefile └── app.c ├── platform ├── baremetal │ ├── Makefile │ ├── include │ │ ├── pal_base_expected.h │ │ ├── pal_clock_expected.h │ │ ├── pal_performance_expected.h │ │ ├── pal_platform.h │ │ ├── pal_power_domain_expected.h │ │ ├── pal_reset_expected.h │ │ ├── pal_sensor_expected.h │ │ └── pal_system_power_expected.h │ ├── pal_base.c │ ├── pal_clock.c │ ├── pal_performance.c │ ├── pal_platform.c │ ├── pal_power_domain.c │ ├── pal_reset.c │ ├── pal_sensor.c │ └── pal_system_power.c ├── build_platform.mk ├── mocker │ ├── Makefile │ ├── include │ │ ├── pal_base_expected.h │ │ ├── pal_clock_expected.h │ │ ├── pal_performance_expected.h │ │ ├── pal_platform.h │ │ ├── pal_power_domain_expected.h │ │ ├── pal_reset_expected.h │ │ └── pal_sensor_expected.h │ ├── mocker │ │ ├── Makefile │ │ ├── include │ │ │ ├── base_common.h │ │ │ ├── base_protocol.h │ │ │ ├── clock_common.h │ │ │ ├── clock_protocol.h │ │ │ ├── performance_common.h │ │ │ ├── performance_protocol.h │ │ │ ├── power_domain_common.h │ │ │ ├── power_domain_protocol.h │ │ │ ├── protocol_common.h │ │ │ ├── reset_common.h │ │ │ ├── reset_protocol.h │ │ │ ├── sensor_common.h │ │ │ ├── sensor_protocol.h │ │ │ ├── system_power_common.h │ │ │ └── system_power_protocol.h │ │ ├── transport_base.c │ │ ├── transport_clock.c │ │ ├── transport_performance.c │ │ ├── transport_power_domain.c │ │ ├── transport_reset.c │ │ ├── transport_sensor.c │ │ └── transport_system_power.c │ ├── pal_base.c │ ├── pal_clock.c │ ├── pal_performance.c │ ├── pal_platform.c │ ├── pal_power_domain.c │ ├── pal_reset.c │ └── pal_sensor.c └── sgm776 │ ├── Makefile │ ├── include │ ├── pal_base_expected.h │ ├── pal_clock_expected.h │ ├── pal_performance_expected.h │ ├── pal_platform.h │ ├── pal_power_domain_expected.h │ ├── pal_reset_expected.h │ └── pal_sensor_expected.h │ ├── pal_base.c │ ├── pal_clock.c │ ├── pal_performance.c │ ├── pal_platform.c │ ├── pal_power_domain.c │ ├── pal_reset.c │ ├── pal_sensor.c │ └── transport_mailbox.c ├── test_pool ├── base │ ├── Makefile │ ├── test_b001.c │ ├── test_b002.c │ ├── test_b003.c │ ├── test_b004.c │ ├── test_b005.c │ ├── test_b006.c │ ├── test_b007.c │ ├── test_b008.c │ ├── test_b009.c │ ├── test_b009_v1.c │ ├── test_b010.c │ ├── test_b011.c │ ├── test_b012.c │ ├── test_b013.c │ ├── test_b014.c │ ├── test_b015.c │ ├── test_b016.c │ └── test_b017.c ├── build_protocol.mk ├── clock │ ├── Makefile │ ├── test_c001.c │ ├── test_c002.c │ ├── test_c003.c │ ├── test_c004.c │ ├── test_c005.c │ ├── test_c006.c │ ├── test_c007.c │ ├── test_c008.c │ ├── test_c009.c │ ├── test_c010.c │ ├── test_c011.c │ ├── test_c012.c │ ├── test_c013.c │ ├── test_c014.c │ ├── test_c015.c │ ├── test_c016.c │ └── test_c017.c ├── performance │ ├── Makefile │ ├── test_d001.c │ ├── test_d002.c │ ├── test_d003.c │ ├── test_d003_v1.c │ ├── test_d004.c │ ├── test_d005.c │ ├── test_d005_v1.c │ ├── test_d006.c │ ├── test_d007.c │ ├── test_d008.c │ ├── test_d009.c │ ├── test_d010.c │ ├── test_d011.c │ ├── test_d012.c │ ├── test_d013.c │ ├── test_d014.c │ ├── test_d015.c │ ├── test_d016.c │ ├── test_d017.c │ ├── test_d018.c │ ├── test_d019.c │ ├── test_d020.c │ ├── test_d021.c │ ├── test_d022.c │ ├── test_d023.c │ ├── test_d024.c │ ├── test_d025.c │ ├── test_d026.c │ ├── test_d027.c │ ├── test_d028.c │ └── test_d029.c ├── power_domain │ ├── Makefile │ ├── test_p001.c │ ├── test_p002.c │ ├── test_p003.c │ ├── test_p004.c │ ├── test_p005.c │ ├── test_p006.c │ ├── test_p007.c │ ├── test_p008.c │ ├── test_p009.c │ ├── test_p010.c │ ├── test_p011.c │ ├── test_p012.c │ ├── test_p013.c │ ├── test_p014.c │ ├── test_p015.c │ └── test_p016.c ├── reset │ ├── Makefile │ ├── test_r001.c │ ├── test_r002.c │ ├── test_r003.c │ ├── test_r004.c │ ├── test_r005.c │ ├── test_r006.c │ ├── test_r007.c │ ├── test_r008.c │ ├── test_r009.c │ ├── test_r010.c │ └── test_r011.c ├── sensor │ ├── Makefile │ ├── test_m001.c │ ├── test_m002.c │ ├── test_m003.c │ ├── test_m004.c │ ├── test_m005.c │ ├── test_m006.c │ ├── test_m007.c │ ├── test_m008.c │ ├── test_m009.c │ ├── test_m010.c │ ├── test_m011.c │ ├── test_m012.c │ ├── test_m013.c │ ├── test_m014.c │ └── test_m015.c └── system_power │ ├── Makefile │ ├── test_s001.c │ ├── test_s002.c │ ├── test_s003.c │ ├── test_s004.c │ ├── test_s005.c │ ├── test_s006.c │ └── test_s007.c └── val ├── Makefile ├── include ├── pal_interface.h ├── val_base.h ├── val_clock.h ├── val_interface.h ├── val_performance.h ├── val_power_domain.h ├── val_reset.h ├── val_sensor.h └── val_system_power.h ├── val_base.c ├── val_clock.c ├── val_interface.c ├── val_performance.c ├── val_power_domain.c ├── val_reset.c ├── val_sensor.c └── val_system_power.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/Makefile.inc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/README.md -------------------------------------------------------------------------------- /baremetal_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/baremetal_app/Makefile -------------------------------------------------------------------------------- /baremetal_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/baremetal_app/app.c -------------------------------------------------------------------------------- /docs/ARM_SCMI_Validation_Methodology.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/docs/ARM_SCMI_Validation_Methodology.pdf -------------------------------------------------------------------------------- /docs/guide_sgm_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/docs/guide_sgm_testing.md -------------------------------------------------------------------------------- /docs/scmi_testlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/docs/scmi_testlist.md -------------------------------------------------------------------------------- /docs/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/docs/user_guide.md -------------------------------------------------------------------------------- /linux_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/linux_app/Makefile -------------------------------------------------------------------------------- /linux_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/linux_app/app.c -------------------------------------------------------------------------------- /mocker_app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/mocker_app/Makefile -------------------------------------------------------------------------------- /mocker_app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/mocker_app/app.c -------------------------------------------------------------------------------- /platform/baremetal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/Makefile -------------------------------------------------------------------------------- /platform/baremetal/include/pal_base_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_base_expected.h -------------------------------------------------------------------------------- /platform/baremetal/include/pal_clock_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_clock_expected.h -------------------------------------------------------------------------------- /platform/baremetal/include/pal_performance_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_performance_expected.h -------------------------------------------------------------------------------- /platform/baremetal/include/pal_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_platform.h -------------------------------------------------------------------------------- /platform/baremetal/include/pal_power_domain_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_power_domain_expected.h -------------------------------------------------------------------------------- /platform/baremetal/include/pal_reset_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_reset_expected.h -------------------------------------------------------------------------------- /platform/baremetal/include/pal_sensor_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_sensor_expected.h -------------------------------------------------------------------------------- /platform/baremetal/include/pal_system_power_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/include/pal_system_power_expected.h -------------------------------------------------------------------------------- /platform/baremetal/pal_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_base.c -------------------------------------------------------------------------------- /platform/baremetal/pal_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_clock.c -------------------------------------------------------------------------------- /platform/baremetal/pal_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_performance.c -------------------------------------------------------------------------------- /platform/baremetal/pal_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_platform.c -------------------------------------------------------------------------------- /platform/baremetal/pal_power_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_power_domain.c -------------------------------------------------------------------------------- /platform/baremetal/pal_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_reset.c -------------------------------------------------------------------------------- /platform/baremetal/pal_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_sensor.c -------------------------------------------------------------------------------- /platform/baremetal/pal_system_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/baremetal/pal_system_power.c -------------------------------------------------------------------------------- /platform/build_platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/build_platform.mk -------------------------------------------------------------------------------- /platform/mocker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/Makefile -------------------------------------------------------------------------------- /platform/mocker/include/pal_base_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/include/pal_base_expected.h -------------------------------------------------------------------------------- /platform/mocker/include/pal_clock_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/include/pal_clock_expected.h -------------------------------------------------------------------------------- /platform/mocker/include/pal_performance_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/include/pal_performance_expected.h -------------------------------------------------------------------------------- /platform/mocker/include/pal_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/include/pal_platform.h -------------------------------------------------------------------------------- /platform/mocker/include/pal_power_domain_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/include/pal_power_domain_expected.h -------------------------------------------------------------------------------- /platform/mocker/include/pal_reset_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/include/pal_reset_expected.h -------------------------------------------------------------------------------- /platform/mocker/include/pal_sensor_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/include/pal_sensor_expected.h -------------------------------------------------------------------------------- /platform/mocker/mocker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/Makefile -------------------------------------------------------------------------------- /platform/mocker/mocker/include/base_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/base_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/base_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/base_protocol.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/clock_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/clock_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/clock_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/clock_protocol.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/performance_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/performance_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/performance_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/performance_protocol.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/power_domain_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/power_domain_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/power_domain_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/power_domain_protocol.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/protocol_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/protocol_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/reset_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/reset_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/reset_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/reset_protocol.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/sensor_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/sensor_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/sensor_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/sensor_protocol.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/system_power_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/system_power_common.h -------------------------------------------------------------------------------- /platform/mocker/mocker/include/system_power_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/include/system_power_protocol.h -------------------------------------------------------------------------------- /platform/mocker/mocker/transport_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/transport_base.c -------------------------------------------------------------------------------- /platform/mocker/mocker/transport_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/transport_clock.c -------------------------------------------------------------------------------- /platform/mocker/mocker/transport_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/transport_performance.c -------------------------------------------------------------------------------- /platform/mocker/mocker/transport_power_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/transport_power_domain.c -------------------------------------------------------------------------------- /platform/mocker/mocker/transport_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/transport_reset.c -------------------------------------------------------------------------------- /platform/mocker/mocker/transport_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/transport_sensor.c -------------------------------------------------------------------------------- /platform/mocker/mocker/transport_system_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/mocker/transport_system_power.c -------------------------------------------------------------------------------- /platform/mocker/pal_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/pal_base.c -------------------------------------------------------------------------------- /platform/mocker/pal_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/pal_clock.c -------------------------------------------------------------------------------- /platform/mocker/pal_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/pal_performance.c -------------------------------------------------------------------------------- /platform/mocker/pal_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/pal_platform.c -------------------------------------------------------------------------------- /platform/mocker/pal_power_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/pal_power_domain.c -------------------------------------------------------------------------------- /platform/mocker/pal_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/pal_reset.c -------------------------------------------------------------------------------- /platform/mocker/pal_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/mocker/pal_sensor.c -------------------------------------------------------------------------------- /platform/sgm776/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/Makefile -------------------------------------------------------------------------------- /platform/sgm776/include/pal_base_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/include/pal_base_expected.h -------------------------------------------------------------------------------- /platform/sgm776/include/pal_clock_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/include/pal_clock_expected.h -------------------------------------------------------------------------------- /platform/sgm776/include/pal_performance_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/include/pal_performance_expected.h -------------------------------------------------------------------------------- /platform/sgm776/include/pal_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/include/pal_platform.h -------------------------------------------------------------------------------- /platform/sgm776/include/pal_power_domain_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/include/pal_power_domain_expected.h -------------------------------------------------------------------------------- /platform/sgm776/include/pal_reset_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/include/pal_reset_expected.h -------------------------------------------------------------------------------- /platform/sgm776/include/pal_sensor_expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/include/pal_sensor_expected.h -------------------------------------------------------------------------------- /platform/sgm776/pal_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/pal_base.c -------------------------------------------------------------------------------- /platform/sgm776/pal_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/pal_clock.c -------------------------------------------------------------------------------- /platform/sgm776/pal_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/pal_performance.c -------------------------------------------------------------------------------- /platform/sgm776/pal_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/pal_platform.c -------------------------------------------------------------------------------- /platform/sgm776/pal_power_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/pal_power_domain.c -------------------------------------------------------------------------------- /platform/sgm776/pal_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/pal_reset.c -------------------------------------------------------------------------------- /platform/sgm776/pal_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/pal_sensor.c -------------------------------------------------------------------------------- /platform/sgm776/transport_mailbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/platform/sgm776/transport_mailbox.c -------------------------------------------------------------------------------- /test_pool/base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/Makefile -------------------------------------------------------------------------------- /test_pool/base/test_b001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b001.c -------------------------------------------------------------------------------- /test_pool/base/test_b002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b002.c -------------------------------------------------------------------------------- /test_pool/base/test_b003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b003.c -------------------------------------------------------------------------------- /test_pool/base/test_b004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b004.c -------------------------------------------------------------------------------- /test_pool/base/test_b005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b005.c -------------------------------------------------------------------------------- /test_pool/base/test_b006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b006.c -------------------------------------------------------------------------------- /test_pool/base/test_b007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b007.c -------------------------------------------------------------------------------- /test_pool/base/test_b008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b008.c -------------------------------------------------------------------------------- /test_pool/base/test_b009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b009.c -------------------------------------------------------------------------------- /test_pool/base/test_b009_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b009_v1.c -------------------------------------------------------------------------------- /test_pool/base/test_b010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b010.c -------------------------------------------------------------------------------- /test_pool/base/test_b011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b011.c -------------------------------------------------------------------------------- /test_pool/base/test_b012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b012.c -------------------------------------------------------------------------------- /test_pool/base/test_b013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b013.c -------------------------------------------------------------------------------- /test_pool/base/test_b014.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b014.c -------------------------------------------------------------------------------- /test_pool/base/test_b015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b015.c -------------------------------------------------------------------------------- /test_pool/base/test_b016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b016.c -------------------------------------------------------------------------------- /test_pool/base/test_b017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/base/test_b017.c -------------------------------------------------------------------------------- /test_pool/build_protocol.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/build_protocol.mk -------------------------------------------------------------------------------- /test_pool/clock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/Makefile -------------------------------------------------------------------------------- /test_pool/clock/test_c001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c001.c -------------------------------------------------------------------------------- /test_pool/clock/test_c002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c002.c -------------------------------------------------------------------------------- /test_pool/clock/test_c003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c003.c -------------------------------------------------------------------------------- /test_pool/clock/test_c004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c004.c -------------------------------------------------------------------------------- /test_pool/clock/test_c005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c005.c -------------------------------------------------------------------------------- /test_pool/clock/test_c006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c006.c -------------------------------------------------------------------------------- /test_pool/clock/test_c007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c007.c -------------------------------------------------------------------------------- /test_pool/clock/test_c008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c008.c -------------------------------------------------------------------------------- /test_pool/clock/test_c009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c009.c -------------------------------------------------------------------------------- /test_pool/clock/test_c010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c010.c -------------------------------------------------------------------------------- /test_pool/clock/test_c011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c011.c -------------------------------------------------------------------------------- /test_pool/clock/test_c012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c012.c -------------------------------------------------------------------------------- /test_pool/clock/test_c013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c013.c -------------------------------------------------------------------------------- /test_pool/clock/test_c014.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c014.c -------------------------------------------------------------------------------- /test_pool/clock/test_c015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c015.c -------------------------------------------------------------------------------- /test_pool/clock/test_c016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c016.c -------------------------------------------------------------------------------- /test_pool/clock/test_c017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/clock/test_c017.c -------------------------------------------------------------------------------- /test_pool/performance/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/Makefile -------------------------------------------------------------------------------- /test_pool/performance/test_d001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d001.c -------------------------------------------------------------------------------- /test_pool/performance/test_d002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d002.c -------------------------------------------------------------------------------- /test_pool/performance/test_d003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d003.c -------------------------------------------------------------------------------- /test_pool/performance/test_d003_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d003_v1.c -------------------------------------------------------------------------------- /test_pool/performance/test_d004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d004.c -------------------------------------------------------------------------------- /test_pool/performance/test_d005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d005.c -------------------------------------------------------------------------------- /test_pool/performance/test_d005_v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d005_v1.c -------------------------------------------------------------------------------- /test_pool/performance/test_d006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d006.c -------------------------------------------------------------------------------- /test_pool/performance/test_d007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d007.c -------------------------------------------------------------------------------- /test_pool/performance/test_d008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d008.c -------------------------------------------------------------------------------- /test_pool/performance/test_d009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d009.c -------------------------------------------------------------------------------- /test_pool/performance/test_d010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d010.c -------------------------------------------------------------------------------- /test_pool/performance/test_d011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d011.c -------------------------------------------------------------------------------- /test_pool/performance/test_d012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d012.c -------------------------------------------------------------------------------- /test_pool/performance/test_d013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d013.c -------------------------------------------------------------------------------- /test_pool/performance/test_d014.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d014.c -------------------------------------------------------------------------------- /test_pool/performance/test_d015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d015.c -------------------------------------------------------------------------------- /test_pool/performance/test_d016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d016.c -------------------------------------------------------------------------------- /test_pool/performance/test_d017.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d017.c -------------------------------------------------------------------------------- /test_pool/performance/test_d018.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d018.c -------------------------------------------------------------------------------- /test_pool/performance/test_d019.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d019.c -------------------------------------------------------------------------------- /test_pool/performance/test_d020.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d020.c -------------------------------------------------------------------------------- /test_pool/performance/test_d021.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d021.c -------------------------------------------------------------------------------- /test_pool/performance/test_d022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d022.c -------------------------------------------------------------------------------- /test_pool/performance/test_d023.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d023.c -------------------------------------------------------------------------------- /test_pool/performance/test_d024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d024.c -------------------------------------------------------------------------------- /test_pool/performance/test_d025.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d025.c -------------------------------------------------------------------------------- /test_pool/performance/test_d026.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d026.c -------------------------------------------------------------------------------- /test_pool/performance/test_d027.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d027.c -------------------------------------------------------------------------------- /test_pool/performance/test_d028.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d028.c -------------------------------------------------------------------------------- /test_pool/performance/test_d029.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/performance/test_d029.c -------------------------------------------------------------------------------- /test_pool/power_domain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/Makefile -------------------------------------------------------------------------------- /test_pool/power_domain/test_p001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p001.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p002.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p003.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p004.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p005.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p006.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p007.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p008.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p009.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p010.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p011.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p012.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p013.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p014.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p014.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p015.c -------------------------------------------------------------------------------- /test_pool/power_domain/test_p016.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/power_domain/test_p016.c -------------------------------------------------------------------------------- /test_pool/reset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/Makefile -------------------------------------------------------------------------------- /test_pool/reset/test_r001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r001.c -------------------------------------------------------------------------------- /test_pool/reset/test_r002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r002.c -------------------------------------------------------------------------------- /test_pool/reset/test_r003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r003.c -------------------------------------------------------------------------------- /test_pool/reset/test_r004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r004.c -------------------------------------------------------------------------------- /test_pool/reset/test_r005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r005.c -------------------------------------------------------------------------------- /test_pool/reset/test_r006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r006.c -------------------------------------------------------------------------------- /test_pool/reset/test_r007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r007.c -------------------------------------------------------------------------------- /test_pool/reset/test_r008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r008.c -------------------------------------------------------------------------------- /test_pool/reset/test_r009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r009.c -------------------------------------------------------------------------------- /test_pool/reset/test_r010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r010.c -------------------------------------------------------------------------------- /test_pool/reset/test_r011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/reset/test_r011.c -------------------------------------------------------------------------------- /test_pool/sensor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/Makefile -------------------------------------------------------------------------------- /test_pool/sensor/test_m001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m001.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m002.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m003.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m004.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m005.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m006.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m007.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m008.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m008.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m009.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m009.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m010.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m011.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m012.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m013.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m014.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m014.c -------------------------------------------------------------------------------- /test_pool/sensor/test_m015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/sensor/test_m015.c -------------------------------------------------------------------------------- /test_pool/system_power/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/Makefile -------------------------------------------------------------------------------- /test_pool/system_power/test_s001.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/test_s001.c -------------------------------------------------------------------------------- /test_pool/system_power/test_s002.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/test_s002.c -------------------------------------------------------------------------------- /test_pool/system_power/test_s003.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/test_s003.c -------------------------------------------------------------------------------- /test_pool/system_power/test_s004.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/test_s004.c -------------------------------------------------------------------------------- /test_pool/system_power/test_s005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/test_s005.c -------------------------------------------------------------------------------- /test_pool/system_power/test_s006.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/test_s006.c -------------------------------------------------------------------------------- /test_pool/system_power/test_s007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/test_pool/system_power/test_s007.c -------------------------------------------------------------------------------- /val/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/Makefile -------------------------------------------------------------------------------- /val/include/pal_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/pal_interface.h -------------------------------------------------------------------------------- /val/include/val_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_base.h -------------------------------------------------------------------------------- /val/include/val_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_clock.h -------------------------------------------------------------------------------- /val/include/val_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_interface.h -------------------------------------------------------------------------------- /val/include/val_performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_performance.h -------------------------------------------------------------------------------- /val/include/val_power_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_power_domain.h -------------------------------------------------------------------------------- /val/include/val_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_reset.h -------------------------------------------------------------------------------- /val/include/val_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_sensor.h -------------------------------------------------------------------------------- /val/include/val_system_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/include/val_system_power.h -------------------------------------------------------------------------------- /val/val_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_base.c -------------------------------------------------------------------------------- /val/val_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_clock.c -------------------------------------------------------------------------------- /val/val_interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_interface.c -------------------------------------------------------------------------------- /val/val_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_performance.c -------------------------------------------------------------------------------- /val/val_power_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_power_domain.c -------------------------------------------------------------------------------- /val/val_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_reset.c -------------------------------------------------------------------------------- /val/val_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_sensor.c -------------------------------------------------------------------------------- /val/val_system_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARM-software/scmi-tests/HEAD/val/val_system_power.c --------------------------------------------------------------------------------