-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
tests: drivers: Add test for SDP ASM #19857
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 103f5d1ca8c948ac87bb5841c5a7001ed50939e2 more detailssdk-nrf:
Github labels
List of changed files detected by CI (15)
Outputs:ToolchainVersion: b77d8c1312 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
12d9bac
to
9bc56bc
Compare
9bc56bc
to
afa6e04
Compare
afa6e04
to
42b8feb
Compare
Add test that confirms operation of Software Defined Peripherals Assembly Management. Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
42b8feb
to
103f5d1
Compare
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) |
There was a problem hiding this comment.
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""" |
There was a problem hiding this comment.
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""" |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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); |
There was a problem hiding this comment.
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); |
There was a problem hiding this comment.
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)
please review |
Add test that confirms operation of Software Defined Peripherals Assembly Management.