Home
last modified time | relevance | path

Searched refs:log (Results 1 – 25 of 280) sorted by relevance

12345678910>>...12

/Zephyr-latest/soc/intel/intel_adsp/tools/
Dremote-fw-service.py42 log = logging.getLogger("remote-fw") variable
51 log.info("Receiving...")
61 log.info(f'size:{fsize}, filename:{fname}, MD5:{md5_tx_b}')
70 log.info(f"Done Receiving {len(total)}.")
76 log.error(f"Get exception {e} during FW transfer.")
84 log.error(f'MD5 mismatch: {md5_tx} vs. {md5_rx}')
99 log.error("Cannot find the FW file.")
104 log.info(f"{self.client_address[0]} wrote: {cmd}")
106 log.debug(f'load {action}')
113 log.error("incorrect load communitcation!")
[all …]
Dcavstool.py19 log = logging.getLogger("cavs-fw") variable
56 log.info(f"Mapping registers for hda stream {self.stream_id} at base {self.base:x}")
96 log.info(f"Configuring stream {self.stream_id}")
98 log.info("Allocating huge page and setting up buffers")
101 log.info("Setting buffer list, length, and stream id and traffic priority bit")
109 log.info(f"Configured stream {self.stream_id}")
114log.info(f"Writing data to stream {self.stream_id}, len {bufl}, SPBFCTL {self.hda.SPBFCTL:x}, SPIB…
119log.info(f"Wrote data to stream {self.stream_id}, SPBFCTL {self.hda.SPBFCTL:x}, SPIB {self.hda.SPI…
122 log.info(f"Starting stream {self.stream_id}, CTL {self.regs.CTL:x}")
124 log.info(f"Started stream {self.stream_id}, CTL {self.regs.CTL:x}")
[all …]
Dcavstool_client.py32 log = logging.getLogger("cavs-client") variable
33 log.setLevel(logging.INFO)
49 log.info(f"Sent: {cmd}")
51 log.info(f"Receive: {ack}")
58 log.error(f"Receive incorrect msg:{ack} expect:{cmd}")
71 log.info(f'filename:{fname}, size:{fsize}, md5:{md5_tx}')
76 log.info(f'header size: {header_size}')
79 log.info(f'Sending...')
84 log.info(f"Done Sending ({total}).")
87 log.info(f"RCK ({rck}).")
[all …]
/Zephyr-latest/scripts/build/
Dllext_inject_slids.py32 def __init__(self, elf_path, log): argument
33 self.log = log
48 self.log.debug(f"section {section_name} not found.")
50 self.log.info(f"processing '{section_name}' symbol table...")
51 self.log.debug(f"(symbol table is at file offset 0x{symtab['sh_offset']:X})")
64 self.log.debug(f"found imported symbol '{sym.name}' at index {i}")
74 self.log.error("no symbol table found in file")
79 self.log.info(f"LLEXT has {len(imports)} import(s)")
117 self.log.info(msg)
122 self.log.error(f"unexpected non-zero st_value for symbol {symbol.name}")
[all …]
Dllext_prepare_exptab.py130 def __init__(self, elf_path: str, log: logging.Logger, slid_listing_path: str | None):
134 self.log = log
176 … self.log.error(f"SLID collision: {export_name} and {collision[0]} have the same SLID 0x{slid:X}")
202 self.log.info("SLID -> export name mapping:")
208 self.log.info(msg)
239 self.log.warn(f"_prepare_exptab_for_str_linking: do nothing")
269 self.log.error(e.args[0])
274 self.log.warning("exptab section flagged with LLEXT_PREPARATION_DONE "
285 self.log.error(f"export table size (0x{self.exptab_section.size:X}) "
301 self.log.debug(f"exports table section at file offset 0x{self.exptab_section.offset:X}")
[all …]
Dcheck_init_priorities.py230 def __init__(self, elf_file_path, edt_pickle, log): argument
231 self.log = log
256 self.log.info(f"Ignoring priority: {dev_node._binding.compatible}")
270 self.log.error("Device initialization priority validation failed, "
274 self.log.error(
278 self.log.info(
321 log = logging.getLogger(__file__)
325 log.addHandler(console)
330 log.addHandler(file)
333 log.setLevel(logging.DEBUG)
[all …]
/Zephyr-latest/scripts/west_commands/
Drun_common.py22 from west import log
49 if log.VERBOSE >= log.VERBOSE_NORMAL:
60 log.inf('-- ' + msg, colorize=True)
78 log.die(fmt)
80 log.err(fmt)
82 log.wrn(fmt)
86 log.dbg(fmt)
88 log.dbg(fmt, level=log.VERBOSE_EXTREME)
219 log.wrn("Specifying runner options for multiple domains is experimental.\n"
267log.die("Duplicate flash run once configuration found with equal priorities")
[all …]
Dbuild_helpers.py17 from west import log
103 log.dbg('config dir-fmt: {}'.format(default), level=log.VERBOSE_EXTREME)
110 log.dbg('build dir: {}'.format(build_dir), level=log.VERBOSE_EXTREME)
136 log.dbg(f'{path} is a zephyr build directory',
137 level=log.VERBOSE_EXTREME)
140 log.dbg(f'{path} is NOT a valid zephyr build directory',
141 level=log.VERBOSE_EXTREME)
/Zephyr-latest/tests/subsys/logging/log_blocking/
DREAME.md5 When the core log buffer becomes full, the logging subsystem can be configured to
7 * Drop older log messages with `CONFIG_LOG_MODE_OVERFLOW=y` (**default**)
8 * Drop newer log messages with `CONFIG_LOG_MODE_OVERFLOW=n`, or
9 * Drop no log messages at all with `CONFIG_LOG_BLOCK_IN_THREAD=y`, `CONFIG_LOG_BLOCK_IN_THREAD_TIME…
11 In the last configuration, the log processing thread will block until space
12 becomes available again in the core log buffer.
14 > Warning ⚠️: Blocking the log processing thread is generally not recommended
21 log message flow rates. Typically, one would describe log message flow rates
42 Many log backends, such as UARTs, have a built-in hardware FIFO that
43 inherently provides back-pressure; output log processing is rate-limited
[all …]
DKconfig7 int "Number of log messages per test"
11 int "Maximal input log rate for the test (in msg/s)"
18 int "Maximal output log rate for the test (in msg/s)"
21 Specify the maximum rate at which log messages will be handled by
22 the log backend.
/Zephyr-latest/scripts/
Dset_assignees.py21 def log(s): function
63 log(f"working on https://github.com/{args.org}/{args.repo}/pull/{pr.number} : {pr.title}")
81 log(f"Too many files changed ({len(fn)}), skipping....")
86 log(f"file: {changed_file.filename}")
109 log(f"Area matches: {area_counter}")
110 log(f"labels: {labels}")
118 log(f"collab: {collab}")
122 log(f"Submitted by: {pr.user.login}")
123 log(f"candidate maintainers: {_all_maintainers}")
151 log(f"Picked assignees: {assignees} ({prop:.2f}% ownership)")
[all …]
/Zephyr-latest/scripts/west_commands/zspdx/
Dsbom.py7 from west import log
44 log.err(f'cmake api query directory {cmakeApiDirPath} exists and is not a directory')
55 log.err(f'cmake api query file {queryFilePath} exists and is not a directory')
72 log.wrn(f"config: requested to analyze includes but not to generate SDK SPDX document;")
73 log.wrn(f"config: will proceed but will discard detected includes for SDK header files")
86 log.err("SPDX walker failed; bailing")
106 log.err("SPDX writer failed for SDK document; bailing")
112 log.err("SPDX writer failed for app document; bailing")
118 log.err("SPDX writer failed for zephyr document; bailing")
124 log.err("SPDX writer failed for build document; bailing")
[all …]
Dwalker.py9 from west import log
107 log.inf("parsing CMake Cache file")
112 log.err("CONFIG_BUILD_OUTPUT_META must be enabled to generate spdx files; bailing")
116 log.inf("parsing CMake Codemodel files")
119 log.err("could not parse codemodel from CMake API reply; bailing")
123 log.inf("setting up SPDX documents")
129 log.inf("walking through targets")
133 log.inf("walking through pending sources files")
137 log.inf("walking through pending relationships")
154 log.dbg("getting codemodel from CMake API reply files")
[all …]
Dcmakecache.py5 from west import log
11 log.dbg(f"parsing CMake cache file at {filePath}")
38 log.err(f"Error loading {filePath}: {str(e)}")
/Zephyr-latest/subsys/logging/backends/
DKconfig.fs28 bool "Old log files overwrite"
31 When enabled backend overwrites oldest log files.
35 bool "Append to the newest log file"
38 When enabled and when there is space left in the newest log file,
40 When disabled backend creates a new log file on every startup.
44 default "log."
46 User defined name of log files saved in the file system.
47 The prefix is followed by the number of log file.
53 Directory to which log files will be written.
56 int "User defined log file size"
[all …]
/Zephyr-latest/samples/boards/nordic/coresight_stm/
DREADME.rst10 Also, it prints timing for different log messages.
73 rad: Timing for log message with 0 arguments: 5.10us
74 rad: Timing for log message with 1 argument: 6.10us
75 rad: Timing for log message with 2 arguments: 6.0us
76 rad: Timing for log message with 3 arguments: 6.40us
80 flpr: Timing for log message with 0 arguments: 1.20us
81 flpr: Timing for log message with 1 argument: 1.20us
82 flpr: Timing for log message with 2 arguments: 1.20us
83 flpr: Timing for log message with 3 arguments: 1.30us
87 app: Timing for log message with 0 arguments: 1.80us
[all …]
/Zephyr-latest/subsys/net/
DKconfig.template.log_config.default.net1 # Kconfig template file for setting networking log level for
3 # allows user to specify the default log level.
20 Do not write to log.
25 Only write to log when NET_ERR or LOG_ERR is used.
30 Write to log with NET_WARN or LOG_WRN in addition to previous level.
35 Write to log with NET_INFO or LOG_INF in addition to previous levels.
40 Write to log with NET_DBG or LOG_DBG in addition to previous levels.
DKconfig.template.log_config.net1 # Kconfig template file for setting networking log level for
19 Do not write to log.
24 Only write to log when NET_ERR or LOG_ERR is used.
29 Write to log with NET_WARN or LOG_WRN in addition to previous level.
34 Write to log with NET_INFO or LOG_INF in addition to previous levels.
39 Write to log with NET_DBG or LOG_DBG in addition to previous levels.
44 Use default log level.
/Zephyr-latest/drivers/mspi/
Dmspi_ambiq_ap3.c56 LOG_INSTANCE_PTR_DECLARE(log);
91 LOG_INST_ERR(cfg->log, "%u,Frequency not supported!", __LINE__); in mspi_set_freq()
105 LOG_INST_ERR(cfg->log, "%u, incorrect data rate, only SDR is supported.", __LINE__); in mspi_set_line()
289 LOG_INST_ERR(cfg->log, "%u, invalid device ID.", __LINE__); in mspi_verify_device()
303 LOG_INST_ERR(cfg->log, "%u, the mspi not yet initialized.", __LINE__); in mspi_ambiq_deinit()
308 LOG_INST_ERR(cfg->log, "%u, fail to gain controller access.", __LINE__); in mspi_ambiq_deinit()
314 LOG_INST_ERR(cfg->log, "%u, fail to disable interrupt, code:%d.", in mspi_ambiq_deinit()
322 LOG_INST_ERR(cfg->log, "%u, fail to clear interrupt, code:%d.", in mspi_ambiq_deinit()
330 LOG_INST_ERR(cfg->log, "%u, fail to disable MSPI, code:%d.", in mspi_ambiq_deinit()
338 LOG_INST_ERR(cfg->log, "%u, fail to power off MSPI, code:%d.", in mspi_ambiq_deinit()
[all …]
/Zephyr-latest/samples/subsys/logging/logger/src/
Dsample_instance.h16 LOG_INSTANCE_PTR_DECLARE(log);
23 LOG_INSTANCE_PTR_INIT(log, SAMPLE_INSTANCE_NAME, _name) \
32 LOG_INST_INF(inst->log, "Inline call."); in sample_instance_inline_call()
/Zephyr-latest/drivers/regulator/
Dregulator_axp192.c60 LOG_INSTANCE_PTR_DECLARE(log);
179 LOG_INST_DBG(config->log, "Enabling regulator"); in axp192_enable()
180 LOG_INST_DBG(config->log, "[0x%02x]=0x%02x mask=0x%02x", config->desc->enable_reg, in axp192_enable()
192 LOG_INST_ERR(config->log, "Failed to enable regulator"); in axp192_enable()
203 LOG_INST_DBG(config->log, "Disabling regulator"); in axp192_disable()
204 LOG_INST_DBG(config->log, "[0x%02x]=0 mask=0x%x", config->desc->enable_reg, in axp192_disable()
215 LOG_INST_ERR(config->log, "Failed to disable regulator"); in axp192_disable()
242 LOG_INST_DBG(config->log, "voltage = [min=%d, max=%d]", min_uv, max_uv); in axp192_set_voltage()
248 LOG_INST_ERR(config->log, "No voltage range window could be detected"); in axp192_set_voltage()
254 LOG_INST_DBG(config->log, "[0x%x]=0x%x mask=0x%x", config->desc->vsel_reg, idx, in axp192_set_voltage()
[all …]
/Zephyr-latest/samples/subsys/logging/logger/
DREADME.rst5 Output log messages to the console using the logging subsystem.
17 This project outputs multiple log message to the console. It can be built and
34 [00:00:00.106,051] <inf> sample_module: log in test_module 11
63 [00:00:02.151,602] <inf> main: performance test - log message 0
66 [00:00:03.165,977] <err> ext_log_system: critical level log
67 [00:00:03.165,991] <err> ext_log_system: error level log, 1 arguments: 1
68 [00:00:03.166,006] <wrn> ext_log_system: warning level log, 2 arguments: 12
69 [00:00:03.166,025] <inf> ext_log_system: notice level log, 3 arguments: 105
70 [00:00:03.166,044] <inf> ext_log_system: info level log, 4 arguments : 1 24
/Zephyr-latest/tests/bsim/
Drun_parallel.sh103 $case $@ &> $i.log
106 cat $i.log
108 cat $i.log | eval $CLEAN_XML >> $tmp_res_file
115 rm $i.log
/Zephyr-latest/subsys/logging/
DKconfig.processing22 If enabled, then if there is no space to log a new message, the
38 If new buffer for a log message cannot be allocated in that time, log
44 int "Number of buffered log messages before flushing"
49 up. Log processing thread ID is provided during log initialization.
54 bool "Use internal thread for log processing"
66 int "Set log processing thread startup delay"
73 int "Set internal log processing thread sleep period"
80 int "Stack size for the internal log processing thread"
94 Set the internal stack size for log processing thread.
101 Arbitrary time between log message creation in the remote domain and
[all …]
DKconfig.filtering14 int "Default log level"
18 Sets log level for modules which don't specify it explicitly. When
19 set to 0 it means log will not be activated for those modules.
29 int "Override lowest log level"
33 Forces a minimum log level for all modules. Modules use their
46 int "Maximal log level compiled in the system"
50 Forces a maximal log level for all modules. Modules saturates their

12345678910>>...12