Home
last modified time | relevance | path

Searched +full:- +full:- +full:global (Results 1 – 25 of 808) sorted by relevance

12345678910>>...33

/Zephyr-latest/cmake/linker/
Dlinker_script_common.cmake2 # Create functions - start
8 set_property(GLOBAL PROPERTY SYSTEM_${OBJECT_NAME} TRUE)
9 set_property(GLOBAL PROPERTY SYSTEM_${OBJECT_NAME}_OBJ_TYPE SYSTEM)
10 set_property(GLOBAL PROPERTY SYSTEM_${OBJECT_NAME}_NAME ${OBJECT_NAME})
11 set_property(GLOBAL PROPERTY SYSTEM_${OBJECT_NAME}_FORMAT ${OBJECT_FORMAT})
12 set_property(GLOBAL PROPERTY SYSTEM_${OBJECT_NAME}_ENTRY ${OBJECT_ENTRY})
21 if(${OBJECT_SIZE} MATCHES "^([0-9]*)[kK]$")
23 elseif(${OBJECT_SIZE} MATCHES "^([0-9]*)[mM]$")
25 elseif(NOT (${OBJECT_SIZE} MATCHES "^([0-9]*)$" OR ${OBJECT_SIZE} MATCHES "^0x([0-9a-fA-F]*)$"))
30 set_property(GLOBAL PROPERTY REGION_${OBJECT_NAME} TRUE)
[all …]
/Zephyr-latest/cmake/linker/armlink/
Dscatter_script.cmake8 # - Symbol translation using a steering file is configured.
14 get_property(empty GLOBAL PROPERTY ${REGION_OBJECT}_EMPTY)
16 # For scatter files we move any system symbols into first non-empty load section.
18 get_property(symbols GLOBAL PROPERTY ${parent}_SYMBOLS)
19 set_property(GLOBAL APPEND PROPERTY ${REGION_OBJECT}_SYMBOLS ${symbols})
20 set_property(GLOBAL PROPERTY ${parent}_SYMBOLS)
23 get_property(sections GLOBAL PROPERTY ${REGION_OBJECT}_SECTION_LIST_ORDERED)
26 get_property(name_clean GLOBAL PROPERTY ${section}_NAME_CLEAN)
27 get_property(noinput GLOBAL PROPERTY ${section}_NOINPUT)
28 get_property(type GLOBAL PROPERTY ${section}_TYPE)
[all …]
/Zephyr-latest/cmake/linker/iar/
Dconfig_file_script.cmake3 # SPDX-License-Identifier: Apache-2.0
9 set_property(GLOBAL PROPERTY ILINK_REGION_SYMBOL_ICF)
14 # - Symbol translation using a steering file is configured.
20 get_property(empty GLOBAL PROPERTY ${REGION_OBJECT}_EMPTY)
22 # For scatter files we move any system symbols into first non-empty load section.
24 get_property(symbols GLOBAL PROPERTY ${parent}_SYMBOLS)
25 set_property(GLOBAL APPEND PROPERTY ${REGION_OBJECT}_SYMBOLS ${symbols})
26 set_property(GLOBAL PROPERTY ${parent}_SYMBOLS)
29 get_property(sections GLOBAL PROPERTY ${REGION_OBJECT}_SECTION_LIST_ORDERED)
32 get_property(name GLOBAL PROPERTY ${section}_NAME)
[all …]
/Zephyr-latest/dts/bindings/ipc/
Dnordic,nrf-ipct-global.yaml2 # SPDX-License-Identifier: Apache-2.0
4 description: Nordic Global IPCT (Interprocessor Communication Transceiver)
6 compatible: "nordic,nrf-ipct-global"
8 include: ["nordic,nrf-ipct-common.yaml", "nordic,split-channels.yaml"]
11 global-domain-id:
15 Global IPCT instances reside on specific buses within the Global Domain,
17 standard Global Domain ID presented in their address.
/Zephyr-latest/boards/qemu/arc/
Dboard.cmake7 set(QEMU_FLAGS_${ARCH} -cpu arcem)
10 set(QEMU_FLAGS_${ARCH} -cpu archs)
14 set(QEMU_FLAGS_${ARCH} -cpu hs5x)
18 set(QEMU_FLAGS_${ARCH} -cpu hs6x)
27 # After that we can specify board explicitly with '-M virt' option.
29 -m 8M
30 -nographic
31 -no-reboot
32 -monitor none
33 -global cpu.firq=false
[all …]
/Zephyr-latest/cmake/linker/ld/
Dld_script.cmake2 # - Ensure LMA / VMA sections are correctly grouped similar to scatter file creation.
10 get_property(name GLOBAL PROPERTY ${STRING_OBJECT}_NAME)
11 get_property(regions GLOBAL PROPERTY ${STRING_OBJECT}_REGIONS)
12 get_property(format GLOBAL PROPERTY ${STRING_OBJECT}_FORMAT)
13 get_property(entry GLOBAL PROPERTY ${STRING_OBJECT}_ENTRY)
14 get_property(symbols GLOBAL PROPERTY ${STRING_OBJECT}_SYMBOLS)
20 get_property(name GLOBAL PROPERTY ${region}_NAME)
21 get_property(address GLOBAL PROPERTY ${region}_ADDRESS)
22 get_property(flags GLOBAL PROPERTY ${region}_FLAGS)
23 get_property(size GLOBAL PROPERTY ${region}_SIZE)
[all …]
/Zephyr-latest/samples/boards/nordic/nrf_sys_event/src/
Dmain.c4 * SPDX-License-Identifier: Apache-2.0
12 printf("request global constant latency mode\n"); in main()
14 printf("failed to request global constant latency mode\n"); in main()
19 printf("request global constant latency mode again\n"); in main()
21 printf("failed to request global constant latency mode\n"); in main()
25 printf("release global constant latency mode\n"); in main()
28 printf("failed to release global constant latency mode\n"); in main()
32 printf("release global constant latency mode again\n"); in main()
35 printf("failed to release global constant latency mode\n"); in main()
/Zephyr-latest/arch/nios2/
DKconfig2 # SPDX-License-Identifier: Apache-2.0
51 nios2-download tool since it refuses to load data anywhere other than
58 human-readable form, at the expense of code size. For example,
63 prompt "Global Pointer options"
67 bool "No global pointer"
69 Do not use global pointer relative offsets at all
72 bool "Local data global pointer references"
74 Use global pointer relative offsets for small globals declared in the
78 bool "Global data global pointer references"
80 Use global pointer relative offsets for small globals declared
[all …]
/Zephyr-latest/cmake/modules/
Droot.cmake1 # SPDX-License-Identifier: Apache-2.0
3 # Copyright (c) 2021-2023, Nordic Semiconductor ASA
11 # - ARCH_ROOT: CMake list of arch roots containing arch implementations
12 # - SOC_ROOT: CMake list of SoC roots containing SoC implementations
13 # - BOARD_ROOT: CMake list of board roots containing board and shield implementations
14 # - MODULE_EXT_ROOT: CMake list of module external roots containing module glue code
15 # - SCA_ROOT: CMake list of SCA roots containing static code analysis integration code
21 include_guard(GLOBAL)
26 zephyr_get(MODULE_EXT_ROOT MERGE SYSBUILD GLOBAL)
27 zephyr_get(BOARD_ROOT MERGE SYSBUILD GLOBAL)
[all …]
Dccache.cmake1 # SPDX-License-Identifier: Apache-2.0
6 include_guard(GLOBAL)
12 set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
13 set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
Dkernel.cmake1 # SPDX-License-Identifier: Apache-2.0
10 # This CMake module creates 'project(Zephyr-Kernel)'
16 # - Zephyr build system.
17 # - Zephyr project
20 # - app: This is the main application library where the application can add
23 include_guard(GLOBAL)
31 define_property(GLOBAL PROPERTY ZEPHYR_LIBS
32 BRIEF_DOCS "Global list of all Zephyr CMake libs that should be linked in"
33 FULL_DOCS "Global list of all Zephyr CMake libs that should be linked in.
35 set_property(GLOBAL PROPERTY ZEPHYR_LIBS "")
[all …]
/Zephyr-latest/scripts/west_commands/
Dgtags.py2 # SPDX-License-Identifier: Apache-2.0
6 A west extension for creating tags files (GTAGS) for GNU Global.
7 For more information on Global, see: https://www.gnu.org/software/global
22 "create a GNU Global tags file for the current workspace",
24 Indexes source code files in the west workspace using GNU Global's
25 "gtags" tool. For more information on Global and gtags, see:
27 https://www.gnu.org/software/global/
68 # Due to what looks like a limitation in GNU Global,
71 # doesn't seem to have a way to accept a NUL-delimited
76 # Note that "gtags -f -" and passing files via stdin
[all …]
/Zephyr-latest/lib/cpp/abi/
Dcpp_dtors.c4 * SPDX-License-Identifier: Apache-2.0
21 * hooks, and prevent possible test code global destructors from being registered.
25 * @brief Register destructor for a global object
27 * @param destructor the global object destructor function
28 * @param objptr global object pointer
31 * Function does nothing at the moment, assuming the global objects
/Zephyr-latest/dts/bindings/comparator/
Drenesas,ra-acmphs-global.yaml2 # SPDX-License-Identifier: Apache-2.0
5 Renesas RA ACMPHS (High-Speed Analog COMParator) Global
10 compatible = "renesas,ra-acmphs-global";
19 If the pin-output-enable is selected in the comparator controller node,
20 this global node needs to define the VCOUT pin to enable output on that pin.
22 Note: The VCOUT pinctrl for the comparator global node is already defined
34 pinctrl-0 = <&acmphs_vcout>;
35 pinctrl-names = "default";
45 comparator controllers that have pin-output-enable enabled.
47 compatible: "renesas,ra-acmphs-global"
[all …]
/Zephyr-latest/dts/bindings/clock/
Dlitex,clk.yaml2 # SPDX-License-Identifier: Apache-2.0
4 include: [clock-controller.yaml, base.yaml]
14 clock-cells:
15 - id
22 "#clock-cells":
26 clock-output-names:
28 type: string-array
33 litex,lock-timeout:
38 litex,drdy-timeout:
43 litex,divclk-divide-min:
[all …]
Dnordic,nrf-hsfll-global.yaml2 # SPDX-License-Identifier: Apache-2.0
5 Nordic Global HSFLL clock.
13 compatible = "nordic,nrf-hsfll-global";
15 #clock-cells = <0>;
16 clock-frequency = <320000000>;
17 supported-clock-frequencies = <64000000
23 compatible: "nordic,nrf-hsfll-global"
26 - "base.yaml"
27 - "clock-controller.yaml"
33 "#clock-cells":
[all …]
/Zephyr-latest/arch/x86/
Dintel64.cmake2 # SPDX-License-Identifier: Apache-2.0
4 zephyr_cc_option(-m64)
5 zephyr_cc_option(-mno-red-zone)
7 set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_ARCH "i386:x86-64")
8 set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT "elf64-x86-64")
9 get_property(OUTPUT_ARCH GLOBAL PROPERTY PROPERTY_OUTPUT_ARCH)
10 get_property(OUTPUT_FORMAT GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT)
13 # x86-64 by default has SSE and SSE2
17 zephyr_cc_option(-msse3)
19 zephyr_cc_option(-mno-sse3)
[all …]
/Zephyr-latest/dts/bindings/misc/
Dnordic,nrf-dppic-global.yaml2 # SPDX-License-Identifier: Apache-2.0
5 Nordic Global DPPIC
8 Updated DPPIC binding set for Nordic products that have global DPPIC instances
9 with inter-bridge functionality. These instances also have split-ownership
12 compatible: "nordic,nrf-dppic-global"
15 - "nordic,nrf-dppic.yaml"
16 - "nordic,nrf-dppic-links.yaml"
17 - "nordic,split-channels.yaml"
18 - "nordic,split-channel-groups.yaml"
/Zephyr-latest/tests/kernel/mem_protect/mem_protect/src/
Dmem_partition.c4 * SPDX-License-Identifier: Apache-2.0
12 /* Add volatile to disable pre-calculation in compile stage in some
20 * @brief Test assigning global data and BSS variables to memory partitions
22 * @details Test that system supports application assigning global data and BSS
29 /* The global variable var will be inside the bounds of
34 /* The global variable zeroed_var will be inside the bounds of
40 /* The global variable var will be inside the bounds of
55 * - MEM_REGION_ALLOC is pre-sized to naturally fit in the target hardware's
57 * - Show that the base address of the partition is properly set, it should
/Zephyr-latest/include/zephyr/drivers/led_strip/
Dtlc5971.h4 * SPDX-License-Identifier: Apache-2.0
11 * @brief Maximum value for global brightness control, i.e 100% brightness
16 * @brief Set the global brightness control levels for the tlc5971 strip.
21 * @param pixel global brightness values for RGB channels
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/
Dsysbuild.cmake4 # SPDX-License-Identifier: Apache-2.0
18 set_property(GLOBAL APPEND PROPERTY PM_DOMAINS CPUNET)
19 set_property(GLOBAL APPEND PROPERTY PM_CPUNET_IMAGES remote)
20 set_property(GLOBAL PROPERTY DOMAIN_APP_CPUNET remote)
/Zephyr-latest/arch/arm/core/
D__aeabi_atexit.c4 * SPDX-License-Identifier: Apache-2.0
17 * @brief Register destructor for a global object
19 * @param objptr global object pointer
20 * @param destructor the global object destructor function
/Zephyr-latest/doc/develop/west/
Dzephyr-cmds.rst1 .. _west-zephyr-ext-cmds:
6 This page documents miscellaneous :ref:`west-zephyr-extensions`.
8 .. _west-boards:
21 specify the display format yourself you can use the ``--format`` (or ``-f``)
24 west boards -f "{arch}:{name}"
28 west boards -h
30 .. _west-completion:
40 - bash
41 - zsh
42 - fish
[all …]
/Zephyr-latest/arch/arm/
DCMakeLists.txt1 # SPDX-License-Identifier: Apache-2.0
4 set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-bigarm)
6 set_property(GLOBAL PROPERTY PROPERTY_OUTPUT_FORMAT elf32-littlearm)
/Zephyr-latest/cmake/
Dmcuboot.cmake1 # Copyright (c) 2020-2025 Nordic Semiconductor ASA
2 # SPDX-License-Identifier: Apache-2.0
7 # It builds signed binaries using imgtool as a post-processing step
11 # function to avoid polluting the top-level scope.
67 dt_prop(write_block_size PATH "${flash_node}" PROPERTY "write-block-size")
85 --version ${CONFIG_MCUBOOT_IMGTOOL_SIGN_VERSION} --header-size ${CONFIG_ROM_START_OFFSET}
86 --slot-size ${slot_size})
101 set(imgtool_args --key "${keyfile}" ${imgtool_args})
105 # Use overwrite-only instead of swap upgrades.
106 set(imgtool_args --overwrite-only --align 1 ${imgtool_args})
[all …]

12345678910>>...33