zephyr/samples/subsys
Gerard Marull-Paretas a5fd0d184a init: remove the need for a dummy device pointer in SYS_INIT functions
The init infrastructure, found in `init.h`, is currently used by:

- `SYS_INIT`: to call functions before `main`
- `DEVICE_*`: to initialize devices

They are all sorted according to an initialization level + a priority.
`SYS_INIT` calls are really orthogonal to devices, however, the required
function signature requires a `const struct device *dev` as a first
argument. The only reason for that is because the same init machinery is
used by devices, so we have something like:

```c
struct init_entry {
	int (*init)(const struct device *dev);
	/* only set by DEVICE_*, otherwise NULL */
	const struct device *dev;
}
```

As a result, we end up with such weird/ugly pattern:

```c
static int my_init(const struct device *dev)
{
	/* always NULL! add ARG_UNUSED to avoid compiler warning */
	ARG_UNUSED(dev);
	...
}
```

This is really a result of poor internals isolation. This patch proposes
a to make init entries more flexible so that they can accept sytem
initialization calls like this:

```c
static int my_init(void)
{
	...
}
```

This is achieved using a union:

```c
union init_function {
	/* for SYS_INIT, used when init_entry.dev == NULL */
	int (*sys)(void);
	/* for DEVICE*, used when init_entry.dev != NULL */
	int (*dev)(const struct device *dev);
};

struct init_entry {
	/* stores init function (either for SYS_INIT or DEVICE*)
	union init_function init_fn;
	/* stores device pointer for DEVICE*, NULL for SYS_INIT. Allows
	 * to know which union entry to call.
	 */
	const struct device *dev;
}
```

This solution **does not increase ROM usage**, and allows to offer clean
public APIs for both SYS_INIT and DEVICE*. Note that however, init
machinery keeps a coupling with devices.

**NOTE**: This is a breaking change! All `SYS_INIT` functions will need
to be converted to the new signature. See the script offered in the
following commit.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>

init: convert SYS_INIT functions to the new signature

Conversion scripted using scripts/utils/migrate_sys_init.py.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>

manifest: update projects for SYS_INIT changes

Update modules with updated SYS_INIT calls:

- hal_ti
- lvgl
- sof
- TraceRecorderSource

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>

tests: devicetree: devices: adjust test

Adjust test according to the recently introduced SYS_INIT
infrastructure.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>

tests: kernel: threads: adjust SYS_INIT call

Adjust to the new signature: int (*init_fn)(void);

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2023-04-12 14:28:07 +00:00
..
canbus samples: canbus: isotp: add option for running in loopback mode 2023-02-06 10:03:31 +01:00
console includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h> 2022-09-05 16:31:47 +02:00
debug samples: add debug monitor sample 2022-12-28 12:00:46 +01:00
display samples: lvgl: enable the input pointer for native_posix 2023-04-11 09:34:23 +02:00
edac tests/samples: use integration_plaforms in more tests/samples 2022-11-29 16:03:23 +01:00
fs samples/fs/fat_fs: Enable nrf52840dk_nrf52840 for twister 2023-04-07 13:26:18 +02:00
input samples: input_dump: handle events with no device set 2023-03-21 09:57:56 +01:00
ipc init: remove the need for a dummy device pointer in SYS_INIT functions 2023-04-12 14:28:07 +00:00
logging logging: Added BLE Backend Service 2023-04-03 15:17:57 +02:00
lorawan lora: compile drivers based on devicetree 2023-03-31 09:20:22 +02:00
mgmt samples: mgmt: updatehub: Select required Kconfigs 2023-03-03 10:49:32 +01:00
modbus samples: Explicitly disable boot USB device support init at boot 2023-01-10 12:21:10 +01:00
nvs yamllint: fix all yamllint line-length errors 2023-01-04 01:16:45 +09:00
pm tests/samples: use integration_plaforms in more tests/samples 2022-11-29 16:03:23 +01:00
portability samples: cmsis_rtos_v1: philosophers: increas CMSIS_THREAD_MAX_STACK_SIZE 2023-04-04 16:23:37 +00:00
rtio/sensor_batch_processing rtio: Update sensor_batch_processing sample 2023-04-10 18:34:43 -04:00
settings yamllint: fix all yamllint line-length errors 2023-01-04 01:16:45 +09:00
shell shell: fix armclang compiler warnings with is*() functions 2023-04-04 13:47:14 +02:00
task_wdt samples: subsys: task_wdt: skip for s32z270dc2 2023-02-09 11:14:24 +01:00
testsuite pytest: Fix typo in comment in pytest suite 2023-02-19 20:41:34 -05:00
tracing samples: Updated README for tracing application sample 2023-03-22 11:41:56 +01:00
usb init: remove the need for a dummy device pointer in SYS_INIT functions 2023-04-12 14:28:07 +00:00
usb_c usbc: fix assignment of value for PDOs count in get_snk_cap callback 2023-03-21 09:36:08 +01:00
video tests/samples: use integration_plaforms in more tests/samples 2022-11-29 16:03:23 +01:00
zbus samples: zbus: remote_mock: Replace prj_<board> files with overlays 2023-03-20 10:18:32 +01:00
subsys.rst