2017-01-25 05:03:19 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Cadence Design Systems, Inc.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <xtensa/simcall.h>
|
2022-05-06 16:25:46 +08:00
|
|
|
#include <zephyr/device.h>
|
|
|
|
#include <zephyr/init.h>
|
2024-07-23 19:01:03 +08:00
|
|
|
#include <zephyr/sys/printk-hooks.h>
|
2024-07-23 23:29:02 +08:00
|
|
|
#include <zephyr/sys/libc-hooks.h>
|
2017-01-25 05:03:19 +08:00
|
|
|
|
|
|
|
#if defined(CONFIG_PRINTK) || defined(CONFIG_STDOUT_CONSOLE)
|
|
|
|
/**
|
|
|
|
* @brief Output one character to SIMULATOR console
|
|
|
|
* @param c Character to output
|
|
|
|
* @return The character passed as input.
|
|
|
|
*/
|
2023-08-28 00:03:20 +08:00
|
|
|
int arch_printk_char_out(int c)
|
2017-01-25 05:03:19 +08:00
|
|
|
{
|
|
|
|
char buf[16];
|
2017-02-11 04:58:08 +08:00
|
|
|
|
2017-01-25 05:03:19 +08:00
|
|
|
register int a2 __asm__ ("a2") = SYS_write;
|
|
|
|
register int a3 __asm__ ("a3") = 1;
|
|
|
|
register char *a4 __asm__ ("a4") = buf;
|
|
|
|
register int a5 __asm__ ("a5") = 1;
|
|
|
|
register int ret_val __asm__ ("a2");
|
|
|
|
register int ret_err __asm__ ("a3");
|
|
|
|
|
|
|
|
buf[0] = (char)c;
|
2017-02-16 05:55:48 +08:00
|
|
|
__asm__ volatile ("simcall"
|
2017-01-25 05:03:19 +08:00
|
|
|
: "=a" (ret_val), "=a" (ret_err)
|
2017-02-16 05:55:48 +08:00
|
|
|
: "a" (a2), "a" (a3), "a" (a4), "a" (a5)
|
|
|
|
: "memory");
|
2017-01-25 05:03:19 +08:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Install printk/stdout hook for Xtensa Simulator console output
|
|
|
|
*/
|
2020-02-20 20:11:24 +08:00
|
|
|
static void xt_sim_console_hook_install(void)
|
2017-01-25 05:03:19 +08:00
|
|
|
{
|
2024-07-23 19:01:03 +08:00
|
|
|
#if defined(CONFIG_STDOUT_CONSOLE)
|
2023-08-28 00:03:20 +08:00
|
|
|
__stdout_hook_install(arch_printk_char_out);
|
2024-07-23 19:01:03 +08:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_PRINTK)
|
2023-08-28 00:03:20 +08:00
|
|
|
__printk_hook_install(arch_printk_char_out);
|
2024-07-23 19:01:03 +08:00
|
|
|
#endif
|
2017-01-25 05:03:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initialize the console/debug port
|
|
|
|
* @return 0 if successful, otherwise failed.
|
|
|
|
*/
|
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>
2022-10-19 15:33:44 +08:00
|
|
|
static int xt_sim_console_init(void)
|
2017-01-25 05:03:19 +08:00
|
|
|
{
|
|
|
|
xt_sim_console_hook_install();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-02-24 20:00:55 +08:00
|
|
|
/* UART console initializes after the UART device itself */
|
2017-01-25 05:03:19 +08:00
|
|
|
SYS_INIT(xt_sim_console_init,
|
|
|
|
#if defined(CONFIG_EARLY_CONSOLE)
|
2020-02-20 20:11:24 +08:00
|
|
|
PRE_KERNEL_1,
|
2017-01-25 05:03:19 +08:00
|
|
|
#else
|
2020-02-20 20:11:24 +08:00
|
|
|
POST_KERNEL,
|
2017-01-25 05:03:19 +08:00
|
|
|
#endif
|
2021-10-22 02:29:33 +08:00
|
|
|
CONFIG_CONSOLE_INIT_PRIORITY);
|