Zephyr Project API 3.7.0
A Scalable Open Source RTOS
|
Test cases to verify device objects. More...
Data Structures | |
struct | init_record |
Functions | |
ZTEST (device, test_dummy_device) | |
Test device object binding. | |
ZTEST_USER (device, test_dynamic_name) | |
Test device binding for existing device. | |
ZTEST_USER (device, test_bogus_dynamic_name) | |
Test device binding for non-existing device. | |
ZTEST_USER (device, test_null_dynamic_name) | |
Test device binding for passing null name. | |
static __pinned_func int | add_init_record (bool pre_kernel) |
static __pinned_func int | pre1_fn (void) |
static __pinned_func int | pre2_fn (void) |
static int | post_fn (void) |
static int | app_fn (void) |
SYS_INIT (pre1_fn, PRE_KERNEL_1, 0) | |
SYS_INIT (pre2_fn, PRE_KERNEL_2, 0) | |
SYS_INIT (post_fn, POST_KERNEL, 0) | |
SYS_INIT (app_fn, APPLICATION, 0) | |
static int | null_driver_init (void) |
SYS_INIT (null_driver_init, POST_KERNEL, 0) | |
ZTEST (device, test_pre_kernel_detection) | |
Test detection of initialization before kernel services available. | |
ZTEST (device, test_device_list) | |
Test system device list query API. | |
static int | init_fn (void) |
SYS_INIT (init_fn, APPLICATION, 0) | |
SYS_INIT_NAMED (init1, init_fn, APPLICATION, 1) | |
SYS_INIT_NAMED (init2, init_fn, APPLICATION, 2) | |
SYS_INIT_NAMED (init3, init_fn, APPLICATION, 2) | |
ZTEST (device, test_sys_init_multiple) | |
ZTEST (device, test_device_init_level) | |
Test initialization level for device driver instances. | |
ZTEST (device, test_device_init_priority) | |
Test initialization priorities for device driver instances. | |
ZTEST (device, test_device_init_sub_priority) | |
Test initialization sub-priorities for device driver instances. | |
ZTEST (device, test_abstraction_driver_common) | |
Test abstraction of device drivers with common functionalities. | |
ZTEST (device, test_deferred_init) | |
ZTEST_USER (device, test_deferred_init_user) | |
void * | user_setup (void) |
ZTEST (device, test_mmio_single) | |
Test DEVICE_MMIO_* macros. | |
ZTEST (device, test_mmio_multiple) | |
Test DEVICE_MMIO_NAMED_* macros. | |
ZTEST (device, test_mmio_toplevel) | |
Test DEVICE_MMIO_TOPLEVEL_* macros. | |
ZTEST (device, test_mmio_multireg) | |
Test DEVICE_MMIO_NAMED_* macros. | |
Variables | |
static __pinned_bss struct init_record | init_records [4] |
static __pinned_data struct init_record * | rp = init_records |
static int | sys_init_counter |
int | init_level_sequence [4] |
int | init_priority_sequence [4] |
int | init_sub_priority_sequence [3] |
unsigned int | seq_level_cnt |
unsigned int | seq_priority_cnt |
Test cases to verify device objects.
Verify zephyr device driver apis with different device types
|
static |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
SYS_INIT | ( | app_fn | , |
APPLICATION | , | ||
0 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT | ( | init_fn | , |
APPLICATION | , | ||
0 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT | ( | null_driver_init | , |
POST_KERNEL | , | ||
0 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT | ( | post_fn | , |
POST_KERNEL | , | ||
0 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT | ( | pre1_fn | , |
PRE_KERNEL_1 | , | ||
0 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT | ( | pre2_fn | , |
PRE_KERNEL_2 | , | ||
0 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT_NAMED | ( | init1 | , |
init_fn | , | ||
APPLICATION | , | ||
1 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT_NAMED | ( | init2 | , |
init_fn | , | ||
APPLICATION | , | ||
2 | |||
) |
#include <tests/kernel/device/src/main.c>
SYS_INIT_NAMED | ( | init3 | , |
init_fn | , | ||
APPLICATION | , | ||
2 | |||
) |
#include <tests/kernel/device/src/main.c>
void * user_setup | ( | void | ) |
#include <tests/kernel/device/src/main.c>
ZTEST | ( | device | , |
test_abstraction_driver_common | |||
) |
#include <tests/kernel/device/src/main.c>
Test abstraction of device drivers with common functionalities.
Abstraction of device drivers with common functionalities shall be provided as an intermediate interface between applications and device drivers, where such interface is implemented by individual device drivers. We verify this by following step:
ZTEST | ( | device | , |
test_deferred_init | |||
) |
#include <tests/kernel/device/src/main.c>
ZTEST | ( | device | , |
test_device_init_level | |||
) |
#include <tests/kernel/device/src/main.c>
Test initialization level for device driver instances.
After the defined device instances have initialized, we check the sequence number that each driver stored during initialization. If the sequence of initial level stored is corresponding with our expectation, it means assigning the level for driver instance works.
ZTEST | ( | device | , |
test_device_init_priority | |||
) |
#include <tests/kernel/device/src/main.c>
Test initialization priorities for device driver instances.
After the defined device instances have initialized, we check the sequence number that each driver stored during initialization. If the sequence of initial priority stored is corresponding with our expectation, it means assigning the priority for driver instance works.
ZTEST | ( | device | , |
test_device_init_sub_priority | |||
) |
#include <tests/kernel/device/src/main.c>
Test initialization sub-priorities for device driver instances.
After the defined device instances have initialized, we check the sequence number that each driver stored during initialization. If the sequence of initial priority stored is corresponding with our expectation, it means using the devicetree for sub-priority sorting works.
ZTEST | ( | device | , |
test_device_list | |||
) |
#include <tests/kernel/device/src/main.c>
Test system device list query API.
It queries the list of devices in the system, used to suspend or resume the devices in PM applications.
ZTEST | ( | device | , |
test_dummy_device | |||
) |
#include <tests/kernel/device/src/main.c>
Test device object binding.
Validates device binding for an existing and a non-existing device object. It creates a dummy_driver device object with basic init and configuration information and validates its binding.
Validates three kinds situations of driver object:
ZTEST | ( | device | , |
test_mmio_multiple | |||
) |
#include <tests/kernel/device/src/mmio.c>
Test DEVICE_MMIO_NAMED_* macros.
We show that we can make mapping calls and that the address returned by DEVICE_MMIO_NAMED_GET() is not NULL, indicating that the kernel mapped stuff somewhere.
We show that this works for a device instance that has two named regions, 'corge' and 'grault' that respectively come from DTS instances 1 and 2.
We also perform some checks depending on configuration:
ZTEST | ( | device | , |
test_mmio_multireg | |||
) |
#include <tests/kernel/device/src/mmio_multireg.c>
Test DEVICE_MMIO_NAMED_* macros.
This is the same as the test_mmio_multiple test but in this test the memory regions are created by the named DT property 'reg'.
ZTEST | ( | device | , |
test_mmio_single | |||
) |
#include <tests/kernel/device/src/mmio.c>
Test DEVICE_MMIO_* macros.
We show that we can make mapping calls and that the address returned by DEVICE_MMIO_GET() is not NULL, indicating that the kernel mapped stuff somewhere.
We also perform some checks depending on configuration:
ZTEST | ( | device | , |
test_mmio_toplevel | |||
) |
#include <tests/kernel/device/src/mmio.c>
Test DEVICE_MMIO_TOPLEVEL_* macros.
We show that we can make mapping calls and that the address returned by DEVICE_MMIO_TOPLEVEL_GET() is not NULL, indicating that the kernel mapped stuff somewhere.
We do this for two different MMIO toplevel instances; one declared statically and one not.
We also perform some checks depending on configuration:
ZTEST | ( | device | , |
test_pre_kernel_detection | |||
) |
#include <tests/kernel/device/src/main.c>
Test detection of initialization before kernel services available.
Confirms check is correct.
ZTEST | ( | device | , |
test_sys_init_multiple | |||
) |
#include <tests/kernel/device/src/main.c>
ZTEST_USER | ( | device | , |
test_bogus_dynamic_name | |||
) |
#include <tests/kernel/device/src/main.c>
Test device binding for non-existing device.
Validates binding of a random device driver(non-defined driver) named "ANOTHER_BOGUS_NAME".
ZTEST_USER | ( | device | , |
test_deferred_init_user | |||
) |
#include <tests/kernel/device/src/main.c>
ZTEST_USER | ( | device | , |
test_dynamic_name | |||
) |
#include <tests/kernel/device/src/main.c>
Test device binding for existing device.
Validates device binding for an existing device object.
ZTEST_USER | ( | device | , |
test_null_dynamic_name | |||
) |
#include <tests/kernel/device/src/main.c>
Test device binding for passing null name.
Validates device binding for device object when given dynamic name is null.
|
extern |
#include <tests/kernel/device/src/main.c>
|
extern |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
|
extern |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>
|
extern |
#include <tests/kernel/device/src/main.c>
|
extern |
#include <tests/kernel/device/src/main.c>
|
static |
#include <tests/kernel/device/src/main.c>