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

tests: drivers: Add test for SDP ASM #19857

Merged

Conversation

nordic-segl
Copy link
Contributor

Add test that confirms operation of Software Defined Peripherals Assembly Management.

@nordic-segl nordic-segl requested review from a team as code owners January 13, 2025 06:58
@github-actions github-actions bot added the changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. label Jan 13, 2025
@NordicBuilder
Copy link
Contributor

NordicBuilder commented Jan 13, 2025

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 5

Inputs:

Sources:

sdk-nrf: PR head: 103f5d1ca8c948ac87bb5841c5a7001ed50939e2

more details

sdk-nrf:

PR head: 103f5d1ca8c948ac87bb5841c5a7001ed50939e2
merge base: 658662845a8e4d4cb677800c8d36acfac9176c90
target head (main): 7f1e6c6122bf650942f8c2201185c583c77a2ce9
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (15)
CODEOWNERS
tests
│  ├── drivers
│  │  ├── sdp_asm
│  │  │  ├── CMakeLists.txt
│  │  │  ├── prj.conf
│  │  │  ├── pytest
│  │  │  │  │ test_sdp_asm.py
│  │  │  ├── src
│  │  │  │  ├── add_1.c
│  │  │  │  ├── add_1.h
│  │  │  │  ├── add_1.s
│  │  │  │  ├── add_10.c
│  │  │  │  ├── add_10.h
│  │  │  │  ├── add_10.s
│  │  │  │  ├── add_100.c
│  │  │  │  ├── add_100.h
│  │  │  │  ├── add_100.s
│  │  │  │  │ main.c
│  │  │  │ testcase.yaml

Outputs:

Toolchain

Version: b77d8c1312
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:b77d8c1312_912848a074

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister
    • sdk-nrf test count: 56
  • ✅ Integration tests
Disabled integration tests
    • desktop52_verification
    • doc-internal
    • test_ble_nrf_config
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-ble_mesh
    • test-fw-nrfconnect-ble_samples
    • test-fw-nrfconnect-boot
    • test-fw-nrfconnect-chip
    • test-fw-nrfconnect-fem
    • test-fw-nrfconnect-nfc
    • test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • test-fw-nrfconnect-nrf-iot_mosh
    • test-fw-nrfconnect-nrf-iot_nrf_provisioning
    • test-fw-nrfconnect-nrf-iot_positioning
    • test-fw-nrfconnect-nrf-iot_samples
    • test-fw-nrfconnect-nrf-iot_serial_lte_modem
    • test-fw-nrfconnect-nrf-iot_thingy91
    • test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • test-fw-nrfconnect-nrf_crypto
    • test-fw-nrfconnect-ps
    • test-fw-nrfconnect-rpc
    • test-fw-nrfconnect-rs
    • test-fw-nrfconnect-tfm
    • test-fw-nrfconnect-thread
    • test-fw-nrfconnect-zigbee
    • test-low-level
    • test-sdk-audio
    • test-sdk-dfu
    • test-sdk-find-my
    • test-sdk-mcuboot
    • test-sdk-pmic-samples
    • test-sdk-sidewalk
    • test-sdk-wifi
    • test-secdom-samples-public

Note: This message is automatically posted and updated by the CI

@nordic-segl nordic-segl force-pushed the NRFX-6516_Add-test-for-SDP_ASM branch from 12d9bac to 9bc56bc Compare January 13, 2025 07:09
@github-actions github-actions bot removed the changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. label Jan 13, 2025
@nordic-segl nordic-segl force-pushed the NRFX-6516_Add-test-for-SDP_ASM branch from 9bc56bc to afa6e04 Compare January 13, 2025 08:57
@nordic-segl nordic-segl force-pushed the NRFX-6516_Add-test-for-SDP_ASM branch from afa6e04 to 42b8feb Compare January 13, 2025 09:20
Add test that confirms operation of Software Defined
Peripherals Assembly Management.

Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
@nordic-segl nordic-segl force-pushed the NRFX-6516_Add-test-for-SDP_ASM branch from 42b8feb to 103f5d1 Compare January 13, 2025 09:34
target_sources(app PRIVATE src/main.c)
target_sources(app PRIVATE src/add_1.s)
target_sources(app PRIVATE src/add_10.s)
target_sources(app PRIVATE src/add_100.s)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build shall link pre-compiled assembler files.

OUTPUT1 = """initial: 0, 0, 0
after add_1: 1, 2, 3
after add_10: 11, 22, 33
after add_100: 111, 222, 333"""
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is expected output when pre-compiled assembler files are linked in the build.

OUTPUT2 = """initial: 0, 0, 0
after add_1: 2, 3, 4
after add_10: 12, 23, 34
after add_100: 212, 323, 434"""
Copy link
Contributor Author

@nordic-segl nordic-segl Jan 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is expected output when add_1(), add_10() and add_100() from C sources are linked in the build. For this to happen, user has to:

  • build sources (this will create add_1-temp.s, add_10-temp.s, add_100-temp.s file + warning that compilation of C sources resulted in a different assembly than existing *.s files)
  • call ninja asm_install (this will substitute *.s files in the src directory with recently built *-temp.s ones)
  • build sources again

extern volatile uint16_t arg_uint16_t;
extern volatile uint32_t arg_uint32_t;

void hrt_add_1(void)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

C implementation of this function increases variables by +2, +3, +4

hrt_add_1:
lui a4,%hi(arg_uint8_t)
lbu a5,%lo(arg_uint8_t)(a4)
addi a5,a5,1
Copy link
Contributor Author

@nordic-segl nordic-segl Jan 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ASM implementation of this function increases variables by +1, +2, +3

extern volatile uint16_t arg_uint16_t;
extern volatile uint32_t arg_uint32_t;

void hrt_add_10(void)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same implementation in ASM and C.

hrt_add_10:
lui a4,%hi(arg_uint8_t)
lbu a5,%lo(arg_uint8_t)(a4)
addi a5,a5,10
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as in C

extern volatile uint16_t arg_uint16_t;
extern volatile uint32_t arg_uint32_t;

void hrt_add_100(void)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

C implementation of this function increases variables by +200, +300, +400

hrt_add_100:
lui a4,%hi(arg_uint8_t)
lbu a5,%lo(arg_uint8_t)(a4)
addi a5,a5,100
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ASM implementation of this function increases variables by +100, +200, +300

int main(void)
{
printf("SDP ASM test on %s\n", CONFIG_BOARD_TARGET);
printf("initial: %u, %u, %u\n", arg_uint8_t, arg_uint16_t, arg_uint32_t);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

initial: 0, 0, 0

printf("SDP ASM test on %s\n", CONFIG_BOARD_TARGET);
printf("initial: %u, %u, %u\n", arg_uint8_t, arg_uint16_t, arg_uint32_t);
hrt_add_1();
printf("after add_1: %u, %u, %u\n", arg_uint8_t, arg_uint16_t, arg_uint32_t);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

after add_1: 1, 2, 3 (if pre-compiled ASM are linked in) or
after add_1: 2, 3, 4 (after ninja asm_install)

@nordic-segl
Copy link
Contributor Author

please review

@masz-nordic masz-nordic merged commit 49dbb06 into nrfconnect:main Jan 17, 2025
12 checks passed
@nordic-segl nordic-segl deleted the NRFX-6516_Add-test-for-SDP_ASM branch January 17, 2025 11:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants