# This file contains information on who maintains what. It is parsed by # get_maintainer.py. # # File format # ########### # # "Area title" (the quotes are only needed for titles with special characters, # like colons): # status: # One of the following: # # * maintained: # The area has at least one active Maintainer responsible for its # upkeep and development. # # * odd fixes: # The area receives occasional fixes and may have contributors or # collaborators providing minimal maintenance. # # * obsolete: # The area contains deprecated or legacy code that has been # superseded by newer implementations. Use of this code is # discouraged in favor of the recommended replacement(s). # # maintainers: # List of GitHub handles for the people who maintain the area. Usually, # there's only one maintainer but depending on the area, there may be # multiple maintainers sharing the responsibility. # # collaborators (not to be confused with the GitHub collaborator role): # Very involved contributors, who know the area well and contribute # significantly to it. # # labels: # List of GitHub labels to add to pull requests that modify the area. # # files: # List of paths and/or glob patterns giving the files in the area, # relative to the root directory. # # If a path or glob pattern ends in a '/', it matches all files within # the given directory or directories. Otherwise, an exact match is # required. # # Paths to directories should always have a trailing '/'. # # files-regex: # List of regular expressions applied to paths to determine if they # belong to the area. The regular expression may match anywhere within # the path, but can be anchored with ^ and $ as usual. # # Can be combined with a 'files' key. # # Note: Prefer plain 'files' patterns where possible. get_maintainer.py # will check that they match some file, but won't check regexes # (because it might be slow). # # files-exclude: # Like 'files', but any matching files will be excluded from the area. # # files-regex-exclude: # Like 'files-regex', but any matching files will be excluded from the # area. # # file-groups: # A list of groups of files that are treated as a single unit. # This is useful for areas where different collaborators are responsible for # different parts of the area. # # File groups inherit file patterns from their parent area. A file will only # match a file group if it first matches the parent area's patterns, and then # also matches the file group's own patterns. This allows file groups to # further filter and subdivide files that are already covered by the area. # # Each group should have the following structure: # - name: # collaborators: # - # - # files: # - # - # files-regex: # - # - # files-exclude: # - # - # files-regex-exclude: # - # - # defer-to-other-areas: true # # defer-to-other-areas (optional, default false): # When set to true on a file group, signals that the files in # this group are not strictly maintained by this area alone. # If another area also covers the same files without this flag, # that other area's maintainer takes precedence as the PR # assignee, and this area's maintainers are added as reviewers # instead. When no other area covers the files, this area is # used for assignment as normal. # # Typical use case: a subsystem area (e.g. Clock Control) owns # generic driver infrastructure under drivers/clock_control/, # but a platform area (e.g. a Nordic SoC area) also covers the # platform-specific files in that directory. The subsystem # maintainer can add those platform-specific files to a # file-group with defer-to-other-areas: true so that the # platform maintainer becomes the assignee for PRs touching # those files, while the subsystem maintainer is still # notified as a reviewer. # # description: >- # Plain-English description. Describe what the system is about, from an # outsider's perspective. # # tests: # List of test suite names that are relevant to the area. This is used to # help people find tests that are relevant to the area, and also to determine # which tests to run when a pull request modifies the area. The test suite names # are the ones used in test case definitions, and in test suite definitions in # testcase.yaml. # # meta: # Boolean (default false). Set to true for areas that cut across the # whole tree (documentation, samples, tests, benchmarks, the release # process, ...) rather than owning one subsystem, and whose file # patterns therefore match large parts of it. # # Tooling treats such areas differently: # # * scripts/ci/set_assignees.py does not weight them when picking a # pull request assignee, so a meta-area maintainer is only assigned # when the meta-area is the sole area a pull request touches. # # * scripts/ci/sync_maintainer_tests.py does not auto-generate 'tests' # entries for them, as the identifiers derived from their broad file # patterns would be too generic to be useful. # # This is the single place where meta-areas are declared; add the key # to an area to classify it as one. # # # All areas must have a 'files' and/or 'files-regex' key. The other keys are # optional. # # It is very advisable to have a `status` key in all entries. Exceptions to # this would be sub-areas which add extra fields (for ex. more `collaborators` # who work only in that sub-area) to other areas. # # # Workflow # ######## # # Ideally, any file in the tree will be covered by some area. # # When a GitHub pull request is sent, this happens: # # * A user mentioned in 'maintainers' is added as Assignee to # the pull request # # * Users mentioned in 'maintainers' and 'collaborators' are added as # reviewers to the pull request # # * The labels listed in 'labels' are automatically added to the pull # request # # * The bot posts this comment: # # This PR affects the following areas: # : # Status: ... # Maintainers: # Collaborators: # # : # ... # # # Changes to MAINTAINERS.yml need to be approved as follows: # # * Adding a new area requires approval from the TSC or its representatives # responsible for the maintainer file. # # * Changing the 'maintainers' for an area requires approval from the # TSC or its representatives responsible for the maintainer file # as well as approval by the maintainers of that area. # # * Changing the 'collaborators' lines requires approval of the maintainers # of that area. # # Notes: # # Approval from the TSC is delegated to a list of TSC respresentatives # who are listed as the 'maintainers' of the MAINTAINERS file. See MAINTAINER # file section below for details. # Areas are sorted by name # zephyr-keep-sorted-start strip(":) nofold ACPI: status: odd fixes files: - arch/common/acpi/ - tests/arch/common/acpi/ - include/zephyr/acpi/ - dts/bindings/acpi/ - include/zephyr/dt-bindings/acpi/ labels: - "area: ACPI" tests: - acpi ADI Platforms: status: maintained maintainers: - MaureenHelm collaborators: - ozersa - ttmut - yasinustunerg - petejohanson-adi files: - boards/adi/ - boards/common/*adi* - boards/shields/ad_apardpfw_sl/ - boards/shields/adi_lsmspg/ - boards/shields/eval*ardz/ - boards/shields/pmod_acl/ - drivers/*/*max* - drivers/*/*max*/ - drivers/dac/dac_ltc* - drivers/ethernet/eth_adin* - drivers/ethernet/phy/phy_adin* - drivers/ethernet/mdio/mdio_adin* - drivers/misc/tmc6460/ - drivers/sensor/adi/ - drivers/stepper/adi_tmc/ - drivers/usb/udc/*max* - dts/arm/adi/ - dts/bindings/*/adi,* - dts/bindings/*/lltc,* - dts/bindings/*/maxim,* - dts/vendor/adi/ - include/zephyr/drivers/misc/tmc6460/ - samples/drivers/misc/tmc6460/ - soc/adi/ files-regex: - ^drivers/(adc|dac|gpio|mfd|regulator)/.*adp?\d+ labels: - "platform: ADI" ARC arch: status: maintained maintainers: - ruuddw - evgeniy-paltsev collaborators: - abrodkin - tagunil files: - arch/arc/ - include/zephyr/arch/arc/ - drivers/timer/*arcv2* - drivers/interrupt_controller/*arcv2* - tests/arch/arc/ - dts/arc/ - dts/bindings/arc/ - doc/hardware/arch/arc-support-status.rst labels: - "area: ARC" tests: - arch.arc - arch - kernel ARM Platforms: status: maintained maintainers: - wearyzen - ithinuel files: - boards/arm/mps*/ - boards/arm/v2m_*/ - boards/arm/fvp_base*/ - boards/qemu/cortex_a53/ - boards/qemu/kvm_arm64/ - soc/arm/mps*/ - soc/arm/musca/ - soc/arm/beetle/ - soc/arm/designstart/ - soc/arm/fvp_aemv8*/ - soc/arm/qemu_cortex_a53/ - soc/arm/qemu_virt_arm64/ - dts/arm/armv*.dtsi - dts/arm64/fvp/ - dts/arm64/qemu/ - dts/bindings/arm/arm*.yaml - drivers/interrupt_controller/intc_gic* - tests/arch/arm64/arm64_gicv3_its/boards/fvp_*.conf labels: - "platform: ARM" ARM SiP SVC: status: odd fixes files: - subsys/sip_svc/ - tests/subsys/sip_svc/ - include/zephyr/sip_svc/ - include/zephyr/drivers/sip_svc/ - drivers/sip_svc/ - samples/subsys/sip_svc/ - dts/bindings/sip_svc/ labels: - "area: ARM SiP SVC" tests: - sip_svc - sample.sip_svc ARM arch: status: maintained maintainers: - ithinuel collaborators: - MaureenHelm - stephanosio - wearyzen files: - arch/arm/ - arch/arm/core/offsets/ - include/zephyr/arch/arm/ - tests/arch/arm/ - doc/hardware/arch/arm_cortex_m.rst - boards/qemu/cortex_m0/ labels: - "area: ARM" tests: - arch.arm - arch - kernel ARM64 arch: status: maintained maintainers: - wearyzen collaborators: - npitre - JiafeiPan - carlocaione files: - arch/arm64/ - include/zephyr/arch/arm64/ - tests/arch/arm64/ - dts/arm64/armv*.dtsi files-exclude: - tests/arch/arm64/arm64_gicv3_its/boards/ labels: - "area: ARM64" tests: - arch.arm64 - arch - kernel ASPEED Platforms: status: odd fixes files: - soc/aspeed/ - dts/arm/aspeed/ - drivers/*/*_ast10x0.c - drivers/*/Kconfig.aspeed labels: - "platform: ASPEED" Aesc Platform: status: maintained maintainers: - dnltz files: - soc/aesc/ - dts/riscv/aesc/ - boards/aesc/ files-regex: - ^drivers/.*aesc(\.c)?$ labels: - "platform: Aesc Silicon" Alif Semiconductor Platforms: status: maintained maintainers: - silesh-alifsemi - RupeshKumar-AlifSemi collaborators: - sudhir-alifsemi - AnttiKauppila-AlifSemi - VeijoPesonen files: - boards/alif/ - drivers/*/*alif* - dts/arm/alif/ - dts/bindings/*/alif,* - include/zephyr/dt-bindings/*/alif*.h - soc/alif/ labels: - "platform: Alif Semiconductor" description: >- Alif Semiconductor SoCs, device tree files, and related drivers. Allwinner Platforms: status: odd fixes files: - dts/arm/allwinner/ - dts/arm64/allwinner/ - soc/allwinner/ labels: - "platform: Allwinner" Ambiq Platforms: status: maintained maintainers: - AlessandroLuo collaborators: - aaronyegx - RichardSWheatley files: - soc/ambiq/ - boards/ambiq/apollo*/ - dts/arm/ambiq/ - dts/bindings/*/ambiq,* - drivers/*/*ambiq* - drivers/*/*/*ambiq* - drivers/*/*/*apollo* labels: - "platform: Ambiq" AndesTech Platforms: status: maintained maintainers: - jimmyzhe files: - boards/andestech/ - drivers/*/*andes* - dts/bindings/*/*andestech* - dts/riscv/andes/ - soc/andestech/ labels: - "platform: Andes Technology" Antmicro platforms: status: maintained maintainers: - fkokosinski - tgorochowik collaborators: - kgugala files: - boards/antmicro/ - soc/antmicro/ - dts/arm/antmicro/ labels: - "platform: Antmicro" Arduino Platforms: status: maintained maintainers: - pillo79 collaborators: - facchinm - iabdalkader - pennam files: - boards/arduino/ - boards/shields/arduino_*/ - drivers/*/*modulino* - dts/vendor/arduino/ Authentication: status: maintained maintainers: - heronet collaborators: - ceolin files: - include/zephyr/authentication/ - subsys/authentication/ - samples/subsys/authentication/ - doc/services/authentication/ labels: - "area: Authentication" tests: - sample.authentication "Authentication: FIDO2": status: maintained maintainers: - heronet collaborators: - ceolin files: - include/zephyr/authentication/fido2/ - subsys/authentication/fido2/ - samples/subsys/authentication/fido2/ - doc/services/authentication/fido2/ labels: - "area: FIDO2" tests: - sample.authentication.fido2 BLIIoT Platforms: status: maintained maintainers: - tinegachris files: - boards/bliiot/ labels: - "platform: BLIIoT" Base OS: status: maintained maintainers: - nashif collaborators: - andyross - dcpleung - peter-mitsis files: - include/zephyr/sys/ - include/zephyr/zvfs/eventfd.h - lib/os/ - tests/misc/print_format/ - tests/lib/p4workq/ - tests/lib/fdtable/ files-exclude: - include/zephyr/sys/cbprintf* - tests/unit/cbprintf/ - tests/lib/cbprintf_*/ - lib/os/cbprintf* - lib/os/Kconfig.cbprintf - include/zephyr/sys/mem_manage.h - include/zephyr/sys/mpsc_pbuf.h - include/zephyr/sys/mpsc_packet.h - lib/os/mpsc_pbuf.c labels: - "area: Base OS" tests: - printk - libraries.fdtable.fdtable - libraries.p4wq - utilities BeagleBoard Platforms: status: maintained maintainers: - jadonk collaborators: - ayush1325 - con-pax - vaishnavachath - glneo files: - boards/beagle/ labels: - "platform: BeagleBoard" Benchmarks: status: maintained meta: true maintainers: - peter-mitsis collaborators: - nashif - dcpleung files: - tests/benchmarks/ labels: - "area: Benchmarks" tests: - benchmark Binary Descriptors: status: maintained maintainers: - yonsch files: - doc/services/binary_descriptors/ - subsys/bindesc/ - include/zephyr/bindesc.h - samples/subsys/bindesc/ - scripts/west_commands/bindesc.py - tests/subsys/bindesc/ labels: - "area: Binary Descriptors" tests: - bindesc - sample.bindesc Biometrics Drivers: status: maintained maintainers: - heronet files: - drivers/biometrics/ - dts/bindings/biometrics/ - include/zephyr/drivers/biometrics.h - include/zephyr/drivers/biometrics/ - samples/drivers/biometrics/ - tests/drivers/biometrics/ - doc/hardware/peripherals/biometrics.rst labels: - "area: Biometrics" tests: - drivers.biometrics - sample.drivers.biometrics Bluetooth Audio: status: maintained maintainers: - Thalley collaborators: - jhedberg - sjanc - asbjornsabo - fredrikdanebjer - larsgk - niym-ot - jthm-ot - alexsven - koffes files: - subsys/bluetooth/audio/ - include/zephyr/bluetooth/audio/ - tests/bluetooth/audio/ - tests/bsim/bluetooth/audio/ - tests/bsim/bluetooth/audio_samples/ - tests/bsim/bluetooth/tester/src/audio/ - tests/bluetooth/shell/audio.conf - tests/bluetooth/shell/usb_audio.overlay - tests/bluetooth/tester/overlay-le-audio.conf - tests/bluetooth/tester/overlay-bt_ll_sw_split.conf - tests/bluetooth/tester/src/audio/ - doc/services/connectivity/bluetooth/api/audio/ - doc/services/connectivity/bluetooth/shell/audio/ - samples/bluetooth/audio/ labels: - "area: Bluetooth Audio" - "area: Bluetooth" tests: - bluetooth.audio - sample.bluetooth.audio - tests.bsim.bluetooth.audio Bluetooth Classic: status: maintained maintainers: - lylezhu2012 collaborators: - jhedberg - MarkWangChinese - gzh-terry - makeshi - chengkai15 files: - doc/services/connectivity/bluetooth/shell/classic/ - doc/services/connectivity/bluetooth/api/classic/ - subsys/bluetooth/common/ - subsys/bluetooth/host/classic/ - include/zephyr/bluetooth/classic/ - tests/bluetooth/classic/ - samples/bluetooth/classic/ labels: - "area: Bluetooth Classic" - "area: Bluetooth" tests: - bluetooth - bluetooth.classic - sample.bluetooth - sample.bluetooth.classic Bluetooth Controller: status: maintained maintainers: - cvinayak collaborators: - carlescufi - thoh-ot - wopu-ot - erbr-ot - Tronil - Thalley files: - doc/services/connectivity/bluetooth/bluetooth-ctlr-arch.rst - doc/services/connectivity/bluetooth/img/ctlr* - doc/services/connectivity/bluetooth/api/controller.rst - include/zephyr/bluetooth/controller.h - samples/bluetooth/hci_*/ - subsys/bluetooth/common/ - subsys/bluetooth/controller/ - subsys/bluetooth/crypto/ - tests/bluetooth/controller/ - tests/bsim/bluetooth/ll/ labels: - "area: Bluetooth Controller" - "area: Bluetooth" tests: - bluetooth - bluetooth.controller - bluetooth.ll - sample.bluetooth.hci_ipc - sample.bluetooth.hci_pwr_ctrl - sample.bluetooth.hci_spi - sample.bluetooth.hci_uart - sample.bluetooth.hci_uart_3wire - sample.bluetooth.hci_uart_async - sample.bluetooth.hci_usb - sample.bluetooth.hci_vs_scan_req Bluetooth HCI: status: maintained maintainers: - jhedberg collaborators: - alwa-nordic - hermabe - Thalley - sjanc - HoZHel - cvinayak - HaavardRei - MerinMGeorge files: - include/zephyr/drivers/bluetooth/ - include/zephyr/drivers/bluetooth.h - drivers/bluetooth/ - samples/bluetooth/hci_*/ - tests/bsim/bluetooth/hci_uart/ - dts/bindings/bluetooth/ labels: - "area: Bluetooth HCI" - "area: Bluetooth" tests: - bluetooth - sample.bluetooth Bluetooth Host: status: maintained maintainers: - jhedberg collaborators: - alwa-nordic - hermabe - sjanc - Thalley - cvinayak - HaavardRei - alxelax - lylezhu2012 files: - doc/services/connectivity/bluetooth/ - include/zephyr/bluetooth/ - samples/bluetooth/ - subsys/bluetooth/common/ - subsys/bluetooth/crypto/ - subsys/bluetooth/host/ - subsys/bluetooth/lib/ - subsys/bluetooth/services/ - subsys/bluetooth/CMakeLists.txt - subsys/bluetooth/Kconfig* - tests/bluetooth/ - tests/bsim/bluetooth/ files-exclude: - subsys/bluetooth/host/classic/ - include/zephyr/bluetooth/audio/ - include/zephyr/bluetooth/classic/ - include/zephyr/bluetooth/mesh/ - include/zephyr/bluetooth/iso.h - include/zephyr/bluetooth/controller.h - include/zephyr/bluetooth/mesh.h - include/zephyr/bluetooth/sbc.h - doc/services/connectivity/bluetooth/bluetooth-ctlr-arch.rst - doc/services/connectivity/bluetooth/autopts/ - doc/services/connectivity/bluetooth/img/ctlr* - doc/services/connectivity/bluetooth/api/audio/ - doc/services/connectivity/bluetooth/api/classic/ - doc/services/connectivity/bluetooth/api/mesh/ - doc/services/connectivity/bluetooth/api/controller.rst - doc/services/connectivity/bluetooth/shell/classic/ - doc/services/connectivity/bluetooth/shell/host/iso.rst - doc/services/connectivity/bluetooth/shell/audio/ - samples/bluetooth/audio/ - samples/bluetooth/hci_*/ - samples/bluetooth/iso_*/ - samples/bluetooth/mesh*/ - samples/bluetooth/classic/ - subsys/bluetooth/host/iso.c - subsys/bluetooth/host/iso_internal.h - subsys/bluetooth/host/shell/iso.c - subsys/bluetooth/lib/sbc.c - tests/bluetooth/audio/ - tests/bluetooth/classic/ - tests/bluetooth/controller/ - tests/bluetooth/mesh*/ - tests/bluetooth/qualification/ - tests/bluetooth/shell/audio.conf - tests/bluetooth/shell/mesh.conf - tests/bluetooth/shell/usb_audio.overlay - tests/bluetooth/tester/ - tests/bsim/bluetooth/audio/ - tests/bsim/bluetooth/audio_samples/ - tests/bsim/bluetooth/hci_uart/ - tests/bsim/bluetooth/ll/ - tests/bsim/bluetooth/mesh/ - tests/bsim/bluetooth/tester/ labels: - "area: Bluetooth Host" - "area: Bluetooth" tests: - bluetooth - sample.bluetooth Bluetooth ISO: status: maintained maintainers: - Thalley collaborators: - jhedberg - rugeGerritsen - cvinayak files: - include/zephyr/bluetooth/iso.h - doc/services/connectivity/bluetooth/shell/host/iso.rst - samples/bluetooth/iso_*/ - subsys/bluetooth/host/iso.c - subsys/bluetooth/host/iso_internal.h - subsys/bluetooth/host/shell/iso.c labels: - "area: Bluetooth ISO" - "area: Bluetooth" tests: - bluetooth Bluetooth Mesh: status: maintained maintainers: - alxelax collaborators: - jhedberg - PavelVPV - LingaoM - akredalen - HaavardRei - omkar3141 - KyraLengfeld - ludvigsj files: - doc/services/connectivity/bluetooth/api/mesh/ - include/zephyr/bluetooth/mesh/ - include/zephyr/bluetooth/mesh.h - samples/bluetooth/mesh*/ - subsys/bluetooth/mesh/ - tests/bluetooth/mesh*/ - tests/bluetooth/shell/mesh.conf - tests/bsim/bluetooth/mesh/ labels: - "area: Bluetooth Mesh" - "area: Bluetooth" tests: - bluetooth.mesh Bluetooth Qualification: status: maintained maintainers: - sjanc collaborators: - Thalley - jhedberg - alxelax files: - doc/services/connectivity/bluetooth/autopts/ - tests/bluetooth/qualification/ - tests/bluetooth/tester/ - tests/bsim/bluetooth/tester/ labels: - "area: Bluetooth Qualification" - "area: Bluetooth" tests: - bluetooth - bluetooth.general - bluetooth.tester_bsim Board/SoC configuration: status: maintained maintainers: - tejlmand collaborators: - nashif - nordicjm - "57300" files: - soc/Kconfig* - soc/CMakeLists.txt - boards/Kconfig* - boards/CMakeLists.txt labels: - "area: Board/SoC configuration" Boards/SoCs: status: odd fixes collaborators: - kartben - nordicjm - sylvioalves files: - boards/ - soc/ labels: - "area: Boards/SoCs" description: >- Grouping of all board and SoC platforms. For maintainership of individual platforms, see the relevant platform section. This area will have subgrouping of files for each platform with corresponding collaborators. Bootloaders: status: odd fixes files: - tests/boot/ labels: - "area: Bootloader" tests: - bootloader - boot.uefi - boot.with_mcumgr Bouffalolab Platforms: status: maintained maintainers: - VynDragon collaborators: - hasheddan - josuah - will-tm files: - boards/**/*bflb* - boards/**/*bflb*/ - boards/aithinker/ai_*/ - boards/doiting/ - boards/others/bl704l_dvk/ - boards/thirdreality/ - boards/pine64/pinecone/ - boards/sipeed/m0sense/ - boards/sipeed/m1s_dock/ - boards/sipeed/maix_m0s_dock/ - drivers/**/*bflb* - drivers/**/*bflb*/ - dts/riscv/bflb/ - dts/bindings/*/bflb,* - soc/bflb/ - include/zephyr/**/*bflb* - scripts/west_commands/runners/bflb* - samples/**/*bflb*/ labels: - "platform: Bouffalo Lab" Broadcom Platforms: status: maintained maintainers: - walidbadar files: - dts/*/broadcom/ - soc/brcm/ - boards/brcm/ - boards/raspberrypi/rpi_4b/ - boards/raspberrypi/rpi_5/ labels: - "platform: Broadcom" Build Dashboard: status: maintained maintainers: - grahamroff-dev collaborators: - mbolivar - kartben files: - scripts/dashboard/ labels: - "area: Build Dashboard" Build system: status: maintained maintainers: - tejlmand collaborators: - jeremybettis - nashif - nordicjm - "57300" files: - cmake/ - CMakeLists.txt - scripts/zephyr_module.py - share/ - doc/build/ - doc/develop/modules.rst - scripts/build/ - tests/cmake/ - misc/empty_file.c - misc/generated/ - snippets/ - scripts/schemas/snippet-schema.yaml - modules/Kconfig.sysbuild - scripts/list_boards.py - scripts/list_hardware.py - scripts/schemas/*-schema.yml - tests/misc/test_build/ - tests/application_development/ - samples/application_development/ - arch/archs.yml - version.h.in - scripts/schemas/arch-schema.yaml - scripts/schemas/board-schema.yaml - scripts/schemas/module-schema.yaml - scripts/schemas/soc-schema.yaml - scripts/list_shields.py - scripts/snippets.py - scripts/tests/build/test_subfolder_list.py - scripts/tests/build_helpers/test_domains.py files-exclude: - doc/build/dts/ labels: - "area: Build System" tests: - buildsystem - sample.app_dev - application_development C library: status: maintained maintainers: - stephanosio collaborators: - aescolar - nashif - keith-packard - cfriedt files: - lib/libc/ - tests/lib/c_lib/ - tests/lib/newlib/ labels: - "area: C Library" tests: - libraries.libc "C++": status: maintained maintainers: - stephanosio collaborators: - alexanderwachter - cfriedt files: - lib/cpp/ - tests/lib/cpp/ - samples/cpp/ labels: - "area: C++" tests: - cpp - sample.cpp CMSIS API layer: status: odd fixes collaborators: - nashif files: - subsys/portability/cmsis*/ - include/zephyr/portability/cmsis* - samples/subsys/portability/cmsis_rtos_v*/ - tests/subsys/portability/cmsis_rtos_v*/ - doc/services/portability/cmsis* labels: - "area: CMSIS API Layer" - "area: Portability" tests: - portability.cmsis_rtos_v1 - portability.cmsis_rtos_v2 CMSIS-DSP integration: status: maintained maintainers: - stephanosio collaborators: - XenuIsWatching files: - modules/cmsis-dsp/ - tests/benchmarks/cmsis_dsp/ - tests/lib/cmsis_dsp/ - samples/modules/cmsis_dsp/ labels: - "area: CMSIS-DSP" tests: - libraries.cmsis_dsp - benchmark.cmsis_dsp.basicmath - sample.modules.cmsis_dsp CMSIS-NN integration: status: maintained maintainers: - JordanYates collaborators: - stephanosio - XenuIsWatching files: - modules/cmsis-nn/ - tests/lib/cmsis_nn/ labels: - "area: CMSIS-NN" tests: - libraries.cmsis_nn CPU Frequency Scaling: status: maintained maintainers: - peter-mitsis - seankyer collaborators: - ZhaoxiangJin files: - include/zephyr/cpu_freq/ - subsys/cpu_freq/ - dts/bindings/p_state/ - doc/services/cpu_freq/ labels: - "area: CPU Frequency Scaling" CRC: status: maintained maintainers: - thenguyenyf files: - include/zephyr/sys/crc.h - subsys/crc/ - tests/subsys/crc/ - doc/hardware/peripherals/crc.rst - doc/services/crc/index.rst labels: - "area: CRC" tests: - subsys.crc Cache: status: maintained maintainers: - nashif collaborators: - JarmouniA files: - include/zephyr/drivers/cache.h - include/zephyr/cache.h - doc/hardware/cache/index.rst - drivers/cache/ - tests/arch/common/cache/ - doc/hardware/cache/ - dts/bindings/cache/ labels: - "area: Cache" tests: - arch.cache Coding Guidelines: status: maintained maintainers: - keith-zephyr collaborators: - nashif - carlescufi - jfischer-no - simhein files: - doc/contribute/guidelines.rst - doc/contribute/coding_guidelines/ labels: - "area: Coding Guidelines" Common Architecture Interface: status: maintained maintainers: - dcpleung - nashif files: - arch/Kconfig - arch/CMakeLists.txt - include/zephyr/arch/ - arch/common/ - include/zephyr/arch/common/ - tests/arch/common/ - doc/hardware/porting/arch.rst - doc/hardware/arch/ labels: - "area: Architectures" files-exclude: - arch/common/acpi/ - tests/arch/common/acpi/ tests: - arch - kernel Console: status: odd fixes files: - include/zephyr/console/ - subsys/console/ - doc/services/console.rst labels: - "area: Console" tests: - sample.drivers.console Continuous Integration: status: maintained maintainers: - stephanosio - nashif collaborators: - fabiobaltieri - henrikbrixandersen - kartben files: - .github/ - scripts/requirements-* - scripts/ci/ - .checkpatch.conf - scripts/gitlint/ - scripts/ci/set_assignees.py - scripts/footprint/ labels: - "area: Continuous Integration" DAP: status: maintained maintainers: - jfischer-no collaborators: - maxd-nordic files: - include/zephyr/drivers/swdp.h - include/zephyr/dap/ - drivers/dp/ - subsys/dap/ - samples/subsys/dap/ description: >- Debug Access Port controller labels: - "area: dap" tests: - sample.dap.bulk DFU: status: maintained maintainers: - de-nordic - nordicjm files: - include/zephyr/dfu/ - subsys/dfu/ - tests/subsys/dfu/ labels: - "area: DFU" tests: - dfu DSP subsystem: status: maintained maintainers: - stephanosio - yperess files: - subsys/dsp/ - tests/subsys/dsp/ - include/zephyr/dsp/dsp.h - include/zephyr/dsp/types.h - include/zephyr/dsp/ - doc/services/dsp/ labels: - "area: DSP" tests: - zdsp Debug: status: maintained maintainers: - nashif collaborators: - dcpleung - mrkhldn files: - include/zephyr/debug/ - subsys/debug/ - tests/subsys/debug/ - scripts/coredump/ - samples/subsys/debug/ - doc/services/debugging/ - doc/services/profiling/perf.rst - samples/subsys/profiling/perf/ - scripts/profiling/stackcollapse.py - subsys/profiling/ - tests/subsys/logging/log_frontend_stmesp_demux/ labels: - "area: Debugging" tests: - debug - debug.coresight - sample.debug - sample.perf "Debug: Symtab": status: maintained maintainers: - ycsin files: - include/zephyr/debug/symtab.h - subsys/debug/symtab/ - tests/subsys/debug/symtab/ - scripts/build/gen_symtab.py labels: - "area: Symtab" tests: - debug.symtab Demand Paging: status: maintained maintainers: - dcpleung collaborators: - ceolin - peter-mitsis - nashif - npitre files: - subsys/mem_mgmt/demand_paging/ - tests/kernel/mem_protect/demand_paging/ - samples/subsys/demand_paging/ tests: - kernel.demand_paging - sample.demand_paging labels: - "area: Demand Paging" Device Driver Model: status: maintained maintainers: - tbursztyka collaborators: - dcpleung - nashif - edersondisouza files: - include/zephyr/device.h - kernel/device.c - include/zephyr/init.h - tests/kernel/device/ - doc/kernel/drivers/ - tests/misc/check_init_priorities/ labels: - "area: Device Model" tests: - kernel.device - init Devicetree: status: maintained maintainers: - maass-hamburg collaborators: - mbolivar - rruuaanng - kylebonnici files-regex: - ^dts/bindings/.*zephyr.* - ^dts/bindings/[^,]+$ files: - scripts/dts/ - dts/Kconfig - dts/common/ - tests/lib/devicetree/ - doc/build/dts/ - include/zephyr/devicetree/ - scripts/kconfig/kconfigfunctions.py - doc/build/kconfig/preprocessor-functions.rst - include/zephyr/devicetree.h - include/zephyr/dt-bindings/dt-util.h - dts/binding-template.yaml - dts/bindings/base/ labels: - "area: Devicetree" tests: - libraries.devicetree Devicetree Bindings: status: odd fixes collaborators: - JarmouniA files-regex: - ^dts/bindings/.*zephyr.* files: - dts/bindings/ - include/zephyr/dt-bindings/ - scripts/bindings_properties_allowlist.yaml labels: - "area: Devicetree Binding" Disk: status: maintained maintainers: - danieldegrasse collaborators: - jfischer-no files: - include/zephyr/storage/disk_access.h - include/zephyr/drivers/disk.h - include/zephyr/drivers/disk/ - drivers/disk/ - subsys/disk/ - subsys/sd/ - tests/subsys/sd/ - tests/drivers/disk/ - tests/drivers/build_all/disk/ - include/zephyr/sd/ - dts/bindings/sd/ - dts/bindings/disk/ file-groups: - name: eMMC files-regex: - ^(?!.*sdmmc).*mmc labels: - "area: Disk Access" tests: - drivers.disk - sd Display drivers: status: maintained maintainers: - JarmouniA collaborators: - danieldegrasse - VynDragon - KATE-WANG-NXP - avolmat-st - RuoshanShi files: - drivers/display/ - dts/bindings/display/ - include/zephyr/dt-bindings/display/ - include/zephyr/drivers/display.h - include/zephyr/display/ - include/zephyr/drivers/display/ - include/zephyr/drivers/display.h - subsys/fb/ - samples/subsys/display/ - tests/subsys/display/ - doc/hardware/peripherals/display/ - tests/drivers/display/ - tests/drivers/build_all/display/ - samples/drivers/display/ labels: - "area: Display" tests: - display.cfb - drivers.display - sample.display Documentation: status: maintained meta: true maintainers: - kartben collaborators: - nashif - carlescufi files: - CODE_OF_CONDUCT.md - CONTRIBUTING.rst - doc/glossary.rst - doc/contribute/ - doc/develop/ - doc/introduction/ - doc/project/ - doc/releases/ - README.rst - doc/substitutions.txt - doc/images/Zephyr-Kite-in-tree.png - doc/index-tex.rst - doc/index.html - doc/index.rst - doc/kconfig.rst - doc/templates/sample.tmpl - doc/templates/board.tmpl - boards/index.rst files-exclude: - doc/releases/migration-guide-* - doc/releases/release-notes-* - doc/develop/test/ labels: - "area: Documentation" Documentation Infrastructure: status: maintained maintainers: - kartben collaborators: - gmarull - carlescufi - nashif files: - doc/404.rst - doc/CMakeLists.txt - doc/Makefile - doc/_*/ - doc/conf.py - doc/package*.json - doc/requirements.in - doc/requirements.txt - doc/zephyr.doxyfile.in labels: - "area: Documentation Infrastructure" "Drivers: ADC": status: odd fixes collaborators: - anangl - ZhaoxiangJin - jsbatch files: - drivers/adc/ - include/zephyr/drivers/adc.h - tests/drivers/adc/ - samples/drivers/adc/ - include/zephyr/drivers/adc/ - doc/hardware/peripherals/adc.rst - tests/drivers/build_all/adc/ - include/zephyr/dt-bindings/adc/ - dts/bindings/adc/ labels: - "area: ADC" tests: - drivers.adc - sample.drivers.adc "Drivers: Audio": status: odd fixes collaborators: - rriveramcrus - lyakh - lgirdwood - kv2019i - TomasBarakNXP - Peterson-Brett files: - drivers/audio/ - include/zephyr/audio/ - doc/hardware/peripherals/audio/ - samples/drivers/audio/ - tests/drivers/build_all/audio/ - tests/drivers/audio/ labels: - "area: Audio" tests: - drivers.audio - sample.drivers.audio "Drivers: Aux display": status: maintained maintainers: - thedjnK collaborators: - xingrz files: - include/zephyr/drivers/auxdisplay.h - drivers/auxdisplay/* - dts/bindings/auxdisplay/* - doc/hardware/peripherals/auxdisplay.rst - samples/drivers/auxdisplay/ - tests/drivers/build_all/auxdisplay/ - samples/drivers/auxdisplay_*/ labels: - "area: Aux display" tests: - sample.drivers.auxdisplay - drivers.auxdisplay "Drivers: Buzzer": status: maintained maintainers: - carlocaione files: - doc/hardware/peripherals/buzzer.rst - drivers/buzzer/ - dts/bindings/buzzer/ - include/zephyr/drivers/buzzer.h - samples/drivers/buzzer/ labels: - "area: Buzzer" tests: - sample.drivers.buzzer "Drivers: CAN": status: maintained maintainers: - henrikbrixandersen collaborators: - alexanderwachter - martinjaeger - str4t0m - william-tang914 files: - boards/shields/canis_canpico/ - boards/shields/mcp2515/ - boards/shields/mikroe_can_fd_6_click/ - boards/shields/mikroe_mcp251x_click/ - boards/shields/mikroe_mcp251xfd_click/ - boards/shields/tcan4550evm/ - cmake/emu/qemu/can.cmake - doc/services/connectivity/canbus/ - doc/hardware/peripherals/can/ - drivers/can/ - drivers/net/canbus.c - dts/bindings/can/ - dts/bindings/phy/can-transceiver* - include/zephyr/canbus/ - include/zephyr/devicetree/can.h - include/zephyr/drivers/can.h - include/zephyr/drivers/can/ - include/zephyr/net/canbus.h - include/zephyr/net/socketcan*.h - samples/drivers/can/ - samples/net/sockets/can/ - samples/subsys/canbus/ - scripts/west_commands/runners/canopen_program.py - snippets/socketcan-native-sim/ - subsys/canbus/ - subsys/net/l2/canbus/ - tests/drivers/build_all/can/ - tests/drivers/can/ - tests/net/socket/can/ - tests/subsys/canbus/ labels: - "area: CAN" tests: - drivers.can - canbus - net.socket.can.socket_can - sample.drivers.can - sample.net.sockets.can - sample.canbus.isotp "Drivers: CRC": status: maintained maintainers: - thenguyenyf files: - drivers/crc/ - dts/bindings/crc/ - include/zephyr/drivers/crc.h - samples/drivers/crc/ - tests/drivers/crc/ labels: - "area: CRC" tests: - drivers.crc - sample.drivers.crc "Drivers: Charger": status: maintained maintainers: - rriveramcrus collaborators: - RobertZ2011 files: - drivers/charger/ - dts/bindings/charger/ - include/zephyr/drivers/charger.h - tests/drivers/charger/ - doc/hardware/peripherals/charger.rst - tests/drivers/build_all/charger/ - samples/drivers/charger/ labels: - "area: Charger" tests: - drivers.charger - sample.drivers.charger "Drivers: Clock Monitor": status: maintained maintainers: - FelixWang47831 files: - drivers/clock_monitor/ - dts/bindings/clock-monitor/ - include/zephyr/drivers/clock_monitor.h - tests/drivers/clock_monitor/ - doc/hardware/peripherals/clock_monitor.rst - samples/drivers/clock_monitor/ labels: - "area: Clock Monitor" tests: - drivers.clock_monitor - sample.drivers.clock_monitor "Drivers: Clock control": status: maintained maintainers: - nordic-krch files: - drivers/clock_control/ - dts/bindings/clock/ - include/zephyr/dt-bindings/clock/ - include/zephyr/drivers/clock_control.h - include/zephyr/dt-bindings/clock/ - tests/drivers/clock_control/ - include/zephyr/drivers/clock_control/ - doc/hardware/peripherals/clock_control.rst - samples/drivers/clock_control_*/ file-groups: - name: Clock control driver defer-to-other-areas: true files: - drivers/clock_control/clock_control_*.c - drivers/clock_control/Kconfig.* - dts/bindings/clock/ - include/zephyr/dt-bindings/clock/ labels: - "area: Clock control" tests: - drivers.clock "Drivers: Comparator": status: maintained maintainers: - bjarki-andreasen files: - drivers/comparator/ - dts/bindings/comparator/ - include/zephyr/drivers/comparator.h - include/zephyr/drivers/comparator/ - include/zephyr/dt-bindings/comparator/ - tests/drivers/comparator/ - tests/drivers/build_all/comparator/ - doc/hardware/peripherals/comparator.rst labels: - "area: Comparator" tests: - drivers.comparator "Drivers: Console": status: odd fixes files: - drivers/console/ - include/zephyr/drivers/console/ - tests/drivers/console/ - samples/subsys/console/ labels: - "area: Console" tests: - drivers.console - sample.drivers.console "Drivers: Coredump": status: maintained maintainers: - mrkhldn files: - drivers/coredump/ - dts/bindings/coredump/ - include/zephyr/drivers/coredump.h - tests/drivers/coredump/ - doc/hardware/peripherals/coredump.rst labels: - "area: Coredump" tests: - debug.coredump "Drivers: Counter": status: maintained maintainers: - nordic-krch collaborators: - Holt-Sun - FelixWang47831 files: - drivers/counter/ - include/zephyr/drivers/counter.h - tests/drivers/counter/ - doc/hardware/peripherals/counter.rst - samples/drivers/counter/ - tests/drivers/build_all/counter/ labels: - "area: Counter" tests: - drivers.counter - sample.drivers.counter "Drivers: Crypto": status: maintained maintainers: - ceolin collaborators: - valeriosetti files: - drivers/crypto/ - dts/bindings/crypto/ - include/zephyr/crypto/ - samples/drivers/crypto/ - tests/crypto/ - doc/services/crypto/ - tests/drivers/build_all/crypto/ labels: - "area: Crypto / RNG" tests: - crypto - drivers.crypto - sample.drivers.crypto "Drivers: DAC": status: maintained maintainers: - martinjaeger files: - drivers/dac/ - include/zephyr/drivers/dac.h - include/zephyr/drivers/dac/ - dts/bindings/dac/ - include/zephyr/dt-bindings/dac/ - tests/drivers/dac/ - samples/drivers/dac/ - doc/hardware/peripherals/dac.rst - tests/drivers/build_all/dac/ labels: - "area: DAC" tests: - drivers.dac - sample.drivers.dac "Drivers: DAI": status: maintained maintainers: - kv2019i collaborators: - lgirdwood - iuliana-prodan - dbaluta - abonislawski - serhiy-katsyuba-intel files: - drivers/dai/ - doc/hardware/peripherals/audio/dai.rst - include/zephyr/drivers/dai.h - include/zephyr/dt-bindings/dai/ - dts/bindings/dai/ labels: - "area: DAI" "Drivers: DALI": status: maintained maintainers: - svenhaedrich files: - doc/hardware/peripherals/dali.rst - drivers/dali/ - dts/bindings/dali/ - include/zephyr/drivers/dali.h - samples/drivers/dali/ labels: - "area: DALI" tests: - sample.drivers.dali "Drivers: DMA": status: maintained maintainers: - teburd collaborators: - mcuxted files: - drivers/dma/ - tests/drivers/dma/ - include/zephyr/drivers/dma/ - dts/bindings/dma/ - include/zephyr/dt-bindings/dma/ - doc/hardware/peripherals/dma.rst - include/zephyr/drivers/dma.h - include/zephyr/dt-bindings/dma/ labels: - "area: DMA" tests: - drivers.dma "Drivers: Debug": status: maintained maintainers: - asmellby collaborators: - nordic-krch files: - drivers/debug/ - dts/bindings/debug/ labels: - "area: Debugging" "Drivers: Devmux": status: maintained maintainers: - cfriedt files: - drivers/misc/devmux/ - include/zephyr/drivers/misc/devmux/ - tests/drivers/console_switching/ labels: - "area: Devmux" tests: - drivers.devmux "Drivers: EDAC": status: maintained maintainers: - yvesll files: - drivers/edac/ - dts/bindings/edac/ - include/zephyr/drivers/edac.h - samples/subsys/edac/ - tests/subsys/edac/ - doc/hardware/peripherals/edac/ - include/zephyr/drivers/edac/ labels: - "area: EDAC" tests: - edac - sample.drivers.edac "Drivers: EEPROM": status: maintained maintainers: - henrikbrixandersen files: - drivers/eeprom/ - include/zephyr/drivers/eeprom/eeprom_fake.h - include/zephyr/drivers/eeprom/ - dts/bindings/mtd/*eeprom* - include/zephyr/drivers/eeprom.h - samples/drivers/eeprom/ - tests/drivers/eeprom/ - tests/drivers/*/eeprom/ - doc/hardware/peripherals/eeprom/ labels: - "area: EEPROM" tests: - drivers.eeprom - sample.drivers.eeprom "Drivers: ESPI": status: maintained maintainers: - albertofloyd collaborators: - VenkatKotakonda - AdiIntel - scottwcpg - Dino-Li - ChiHuaL - JhanBoChao-Realtek files: - drivers/espi/ - include/zephyr/drivers/espi.h - include/zephyr/dt-bindings/espi/ - samples/drivers/espi/ - dts/bindings/espi/ - doc/hardware/peripherals/espi.rst - include/zephyr/drivers/espi_saf.h - tests/drivers/espi/ labels: - "area: eSPI" tests: - sample.drivers.espi - drivers.espi "Drivers: Entropy": status: maintained maintainers: - ceolin collaborators: - tomi-font files: - drivers/entropy/ - include/zephyr/drivers/entropy.h - tests/drivers/entropy/ - doc/hardware/peripherals/entropy.rst labels: - "area: Crypto / RNG" tests: - drivers.entropy "Drivers: Ethernet": status: maintained maintainers: - maass-hamburg collaborators: - lmajewski - pdgendt - ClaCodes - tpambor files: - drivers/ethernet/ - include/zephyr/dt-bindings/ethernet/ - tests/drivers/build_all/ethernet/ - dts/bindings/ethernet/ - tests/drivers/ethernet/ - include/zephyr/drivers/ethernet/ - include/zephyr/drivers/mdio.h - include/zephyr/net/phy.h - include/zephyr/net/mdio.h - include/zephyr/net/mii.h - include/zephyr/net/ethernet.h - samples/drivers/ethernet/ - doc/hardware/peripherals/mdio.rst labels: - "area: Ethernet" tests: - net.ethernet - sample.drivers.ethernet - net.ethernet.build "Drivers: FPGA": status: maintained maintainers: - cfriedt collaborators: - tgorochowik - fkokosinski - msierszulski files: - drivers/fpga/ - dts/bindings/fpga/ - include/zephyr/drivers/fpga.h - samples/drivers/fpga/ - tests/drivers/build_all/fpga/ labels: - "area: FPGA" tests: - drivers.fpga - sample.drivers.fpga_controller "Drivers: Firmware": status: maintained maintainers: - LaurentiuM1234 collaborators: - yongxu-wang15 files: - drivers/firmware/ - tests/drivers/firmware/ - include/zephyr/drivers/firmware/ - dts/bindings/firmware/ - doc/hardware/firmware/ - samples/drivers/firmware/ labels: - "area: Firmware" tests: - drivers.firmware - sample.drivers.firmware "Drivers: Flash": status: maintained maintainers: - de-nordic collaborators: - rghaddab - Albort12138 files: - drivers/flash/ - dts/bindings/flash_controller/ - include/zephyr/dt-bindings/flash_controller/ - include/zephyr/drivers/flash.h - samples/drivers/flash_shell/ - samples/drivers/soc_flash_nrf/ - tests/drivers/flash/ - doc/hardware/peripherals/flash.rst - include/zephyr/drivers/flash/ - tests/drivers/flash_simulator/ - tests/drivers/build_all/flash/ - tests/drivers/flash_api/ labels: - "area: Flash" tests: - drivers.flash - sample.drivers.flash "Drivers: Fuel Gauge": status: maintained maintainers: - aaronemassey - DBS06 - teburd collaborators: - devbhavej files: - drivers/fuel_gauge/ - dts/bindings/fuel-gauge/ - include/zephyr/drivers/fuel_gauge.h - tests/drivers/fuel_gauge/ - doc/hardware/peripherals/fuel_gauge.rst - samples/drivers/fuel_gauge/ - tests/drivers/build_all/fuel_gauge/ labels: - "area: Fuel Gauge" tests: - drivers.fuel_gauge - sample.sensor.fuel_gauge "Drivers: GNSS": status: maintained maintainers: - bjarki-andreasen collaborators: - fabiobaltieri - ubieda files: - doc/hardware/peripherals/gnss.rst - drivers/gnss/ - include/zephyr/data/navigation.h - include/zephyr/drivers/gnss.h - include/zephyr/drivers/gnss/ - include/zephyr/gnss/ - dts/bindings/gnss/ - tests/drivers/build_all/gnss/ - tests/drivers/gnss/ - tests/subsys/gnss/ - samples/drivers/gnss/ - subsys/gnss/ labels: - "area: GNSS" tests: - drivers.gnss - gnss - sample.drivers.gnss "Drivers: GPIO": status: odd fixes collaborators: - henrikbrixandersen - dnltz files: - doc/hardware/peripherals/gpio.rst - drivers/gpio/ - dts/bindings/gpio/ - include/zephyr/drivers/gpio/ - include/zephyr/drivers/gpio.h - include/zephyr/dt-bindings/gpio/ - tests/drivers/gpio/ - tests/drivers/build_all/gpio/ - samples/drivers/gpio/ labels: - "area: GPIO" tests: - drivers.gpio - sample.drivers.gpio "Drivers: HW Info": status: maintained maintainers: - alexanderwachter files: - drivers/hwinfo/ - dts/bindings/hwinfo/ - include/zephyr/drivers/hwinfo.h - tests/drivers/hwinfo/ - doc/hardware/peripherals/hwinfo.rst labels: - "area: HWINFO" tests: - drivers.hwinfo "Drivers: Haptics": status: maintained maintainers: - rriveramcrus - Liam-Ogletree files: - drivers/haptics/ - dts/bindings/haptics/ - include/zephyr/drivers/haptics.h - include/zephyr/drivers/haptics/ - doc/hardware/peripherals/haptics.rst - tests/drivers/build_all/haptics/ - samples/drivers/haptics/ labels: - "area: Haptics" tests: - drivers.haptics - sample.drivers.haptics "Drivers: Hardware Spinlock": status: odd fixes files: - drivers/hwspinlock/ - dts/bindings/hwspinlock/ - include/zephyr/drivers/hwspinlock.h - doc/hardware/peripherals/hwspinlock.rst - samples/drivers/hwspinlock/ labels: - "area: Hardware Spinlock" tests: - sample.drivers.hwspinlock "Drivers: I2C": status: maintained maintainers: - teburd collaborators: - maass-hamburg files: - drivers/i2c/ - include/zephyr/drivers/i2c/ - dts/bindings/i2c/ - include/zephyr/drivers/i2c.h - tests/drivers/i2c/ - doc/hardware/peripherals/i2c.rst - include/zephyr/dt-bindings/i2c/ - tests/boards/*/i2c/ - tests/drivers/*/i2c/ - samples/drivers/i2c/ file-groups: - name: I2C driver defer-to-other-areas: true files: - drivers/i2c/i2c_*.c - drivers/i2c/Kconfig.* - dts/bindings/i2c/ - include/zephyr/dt-bindings/i2c/ labels: - "area: I2C" tests: - drivers.i2c - sample.drivers.i2c "Drivers: I2S": status: odd fixes collaborators: - TomasBarakNXP - anangl - Peterson-Brett - mariopaja files: - doc/hardware/peripherals/audio/i2s.rst - drivers/i2s/ - dts/bindings/i2s/ - include/zephyr/drivers/i2s.h - tests/drivers/i2s/ - samples/drivers/i2s/ labels: - "area: I2S" tests: - drivers.i2s - sample.drivers.i2s "Drivers: I3C": status: maintained maintainers: - XenuIsWatching - dcpleung files: - drivers/i3c/ - dts/bindings/i3c/ - include/zephyr/drivers/i3c.h - include/zephyr/drivers/i3c/ - doc/hardware/peripherals/i3c.rst - tests/drivers/build_all/i3c/ file-groups: - name: I3C driver defer-to-other-areas: true files: - drivers/i3c/i3c_*.c - drivers/i3c/Kconfig.* - dts/bindings/i3c/ labels: - "area: I3C" tests: - drivers.i3c "Drivers: IEEE 802.15.4": status: odd fixes collaborators: - rlubos - ankuns - cfriedt - jukkar files: - drivers/ieee802154/ - include/zephyr/drivers/ieee802154/ - include/zephyr/net/ieee802154_radio.h - tests/drivers/build_all/ieee802154/ - dts/bindings/ieee802154/ labels: - "area: IEEE 802.15.4" tests: - drivers.ieee802154 - net.ieee802154 - sample.net.openthread "Drivers: IPM": status: odd fixes collaborators: - dcpleung files: - drivers/ipm/ - samples/drivers/ipm/ - dts/bindings/ipm/ - tests/drivers/ipm/ - doc/hardware/peripherals/ipm.rst - include/zephyr/drivers/ipm.h description: >- Inter-processor mailboxes labels: - "area: IPM" tests: - drivers.ipc - sample.drivers.ipm "Drivers: LED": status: maintained maintainers: - simonguinot collaborators: - jeppenodgaard files: - drivers/led/ - include/zephyr/drivers/led/ - include/zephyr/drivers/led.h - samples/drivers/led/ - tests/drivers/led/ - doc/hardware/peripherals/led.rst - tests/drivers/build_all/led/ - dts/bindings/led/ - include/zephyr/dt-bindings/led/ labels: - "area: LED" tests: - drivers.led - sample.drivers.led - sample.drivers.led_strip "Drivers: LED Strip": status: maintained maintainers: - simonguinot collaborators: - soburi - thedjnK - jeppenodgaard files: - drivers/led_strip/ - dts/bindings/led_strip/ - include/zephyr/drivers/led_strip.h - tests/drivers/build_all/led_strip/ - include/zephyr/drivers/led_strip/ - samples/drivers/led/led_strip/ labels: - "area: LED" tests: - drivers.led_strip - sample.drivers.led_strip "Drivers: MEMC": status: odd fixes files: - drivers/memc/ - include/zephyr/drivers/memc/ - samples/drivers/memc/ - tests/drivers/memc/ - include/zephyr/dt-bindings/memory-controller/ - dts/bindings/memory-controllers/ labels: - "area: MEMC" tests: - drivers.memc - sample.drivers.memc "Drivers: MFD": status: odd fixes collaborators: - aasinclair - nordic-auko - seov-nordic files: - drivers/mfd/ - include/zephyr/drivers/mfd/ - include/zephyr/dt-bindings/mfd/ - dts/bindings/mfd/ - tests/drivers/build_all/mfd/ labels: - "area: MFD" tests: - drivers.mfd "Drivers: MIPI DBI": status: maintained maintainers: - danieldegrasse collaborators: - JarmouniA - VynDragon - KATE-WANG-NXP files: - drivers/mipi_dbi/ - include/zephyr/drivers/mipi_dbi.h - dts/bindings/mipi-dbi/ - include/zephyr/dt-bindings/mipi_dbi/ - tests/drivers/mipi_dbi/ labels: - "area: Display Controller" tests: - drivers.mipi_dbi "Drivers: MIPI-DSI": status: odd fixes collaborators: - JarmouniA - KATE-WANG-NXP - RuoshanShi files: - drivers/mipi_dsi/ - include/zephyr/drivers/mipi_dsi.h - include/zephyr/drivers/mipi_dsi/ - tests/drivers/mipi_dsi/ - include/zephyr/dt-bindings/mipi_dsi/ - dts/bindings/mipi-dsi/ labels: - "area: MIPI-DSI" tests: - drivers.mipi_dsi "Drivers: MSPI": status: maintained maintainers: - swift-tk files: - drivers/mspi/ - drivers/memc/*mspi* - drivers/flash/*mspi* - include/zephyr/drivers/mspi.h - include/zephyr/drivers/mspi/ - samples/drivers/mspi/ - tests/drivers/mspi/ - doc/hardware/peripherals/mspi.rst - dts/bindings/mspi/ - dts/bindings/mtd/*mspi* labels: - "area: MSPI" tests: - drivers.mspi - sample.drivers.mspi "Drivers: MUX": status: maintained maintainers: - FelixWang47831 files: - drivers/mux/ - dts/bindings/mux/ - dts/bindings/arm/nxp,mcux-xbar.yaml - include/zephyr/drivers/mux.h - include/zephyr/devicetree/mux.h - tests/drivers/mux/ - doc/hardware/peripherals/mux.rst labels: - "area: MUX" tests: - drivers.mux "Drivers: Mbox": status: odd fixes collaborators: - ithinuel files: - include/zephyr/drivers/mbox.h - drivers/mbox/ - samples/drivers/mbox/ - dts/bindings/mbox/ - doc/hardware/peripherals/mbox.rst - tests/drivers/mbox/ - samples/drivers/mbox_data/ labels: - "area: mbox" tests: - sample.drivers.mbox - drivers.mbox "Drivers: Memory Management": status: maintained maintainers: - dcpleung collaborators: - ceolin - edersondisouza - jxstelter files: - include/zephyr/drivers/mm/ - drivers/mm/ - tests/boards/intel_adsp/mm/ - dts/bindings/mm/ labels: - "area: Memory Management" tests: - boards.intel_adsp "Drivers: Modem": status: maintained maintainers: - rerickson1 collaborators: - SeppoTakalo - zafersn - wkhadgar files: - drivers/modem/ - tests/drivers/build_all/modem/ - dts/bindings/modem/ - include/zephyr/drivers/modem/ - tests/drivers/modem/ - samples/drivers/modem/ labels: - "area: Modem Drivers" tests: - drivers.modem - sample.drivers.modem "Drivers: Opamp": status: maintained maintainers: - ZhaoxiangJin collaborators: - KozhinovAlexander files: - dts/bindings/opamp/ - drivers/opamp/ - include/zephyr/drivers/opamp.h - samples/drivers/opamp/ - tests/drivers/build_all/opamp/ - tests/drivers/opamp/ - doc/hardware/peripherals/opamp.rst labels: - "area: Opamp" tests: - drivers.opamp - sample.drivers.opamp "Drivers: PCI": status: maintained maintainers: - dcpleung files: - drivers/pcie/ - include/zephyr/drivers/pcie/ - doc/hardware/peripherals/pcie.rst - dts/bindings/pcie/ - include/zephyr/dt-bindings/pcie/ labels: - "area: PCI" "Drivers: PECI": status: maintained maintainers: - albertofloyd collaborators: - VenkatKotakonda files: - drivers/peci/ - include/zephyr/drivers/peci.h - samples/drivers/peci/ - doc/hardware/peripherals/peci.rst - dts/bindings/peci/ labels: - "area: PECI" tests: - sample.drivers.peci "Drivers: PM CPU ops": status: odd fixes collaborators: - gdengi files: - drivers/pm_cpu_ops/ - include/zephyr/drivers/pm_cpu_ops/ - include/zephyr/drivers/pm_cpu_ops.h - include/zephyr/arch/arm64/arm-smccc.h - dts/bindings/pm_cpu_ops/ labels: - "area: PM CPU ops" "Drivers: PS2": status: odd fixes files: - drivers/ps2/ - doc/hardware/peripherals/ps2.rst - include/zephyr/drivers/ps2.h - samples/drivers/ps2/ - dts/bindings/ps2/ labels: - "area: PS2" tests: - sample.drivers.espi.ps2 "Drivers: PSI5": status: maintained maintainers: - manuargue - Dat-NguyenDuy files: - drivers/psi5/ - include/zephyr/drivers/psi5/ - dts/bindings/psi5/ - doc/hardware/peripherals/psi5.rst - tests/drivers/psi5/ - samples/drivers/psi5/ labels: - "area: PSI5" tests: - drivers.psi5 - sample.drivers.psi5 "Drivers: PTP Clock": status: maintained maintainers: - yangbolu1991 files: - drivers/ptp_clock/ - include/zephyr/drivers/ptp_clock.h labels: - "area: Clocks" "Drivers: PWM": status: odd fixes collaborators: - anangl - henrikbrixandersen - FelixWang47831 - jsbatch files: - drivers/pwm/ - dts/bindings/pwm/ - include/zephyr/dt-bindings/pwm/ - tests/drivers/pwm/ - include/zephyr/*/pwms.h - doc/hardware/peripherals/pwm.rst - tests/drivers/build_all/pwm/ - include/zephyr/drivers/pwm.h - include/zephyr/drivers/pwm/ - samples/basic/blinky_pwm/ - samples/drivers/pwm/ labels: - "area: PWM" tests: - drivers.pwm - sample.basic.blink_led - sample.drivers.pwm.capture "Drivers: Pin Control": status: odd fixes collaborators: - gmarull - lucien-nxp files: - doc/hardware/pinctrl/ - include/zephyr/drivers/pinctrl/ - include/zephyr/drivers/pinctrl.h - drivers/pinctrl/ - tests/drivers/pinctrl/ - dts/bindings/pinctrl/ - include/zephyr/dt-bindings/pinctrl/ labels: - "area: Pinctrl" tests: - drivers.pinctrl "Drivers: Pulse IO": status: maintained maintainers: - sylvioalves files: - drivers/pulse_io/ - dts/bindings/pulse-io/ - include/zephyr/drivers/pulse_io.h - tests/drivers/pulse_io/ - doc/hardware/peripherals/pulse_io.rst labels: - "area: Pulse IO" tests: - drivers.pulse_io "Drivers: RTC": status: maintained maintainers: - bjarki-andreasen collaborators: - Holt-Sun files: - drivers/rtc/ - include/zephyr/drivers/rtc/ - tests/drivers/rtc/ - doc/hardware/peripherals/rtc.rst - include/zephyr/drivers/rtc.h - tests/drivers/build_all/rtc/ - dts/bindings/rtc/ - samples/drivers/rtc/ labels: - "area: RTC" tests: - drivers.rtc - sample.drivers.rtc "Drivers: Regulators": status: maintained maintainers: - nordic-auko - seov-nordic collaborators: - danieldegrasse - aasinclair files: - drivers/regulator/ - include/zephyr/drivers/regulator/ - include/zephyr/drivers/regulator.h - include/zephyr/dt-bindings/regulator/ - tests/drivers/regulator/ - tests/drivers/build_all/regulator/ - doc/hardware/peripherals/regulators.rst - dts/bindings/regulator/ labels: - "area: Regulators" tests: - drivers.regulator "Drivers: Reset": status: odd fixes files: - drivers/reset/ - include/zephyr/drivers/reset.h - include/zephyr/drivers/reset/ - doc/hardware/peripherals/reset.rst - dts/bindings/reset/ - include/zephyr/dt-bindings/reset/ - tests/drivers/reset/ labels: - "area: Reset" tests: - drivers.reset "Drivers: Retained Memory": status: maintained maintainers: - nordicjm files: - drivers/retained_mem/ - dts/bindings/retained_mem/ - include/zephyr/drivers/retained_mem.h - include/zephyr/drivers/retained_mem/ - tests/drivers/retained_mem/ - doc/hardware/peripherals/retained_mem.rst - dts/bindings/retained_mem/ labels: - "area: Retained Memory" tests: - drivers.retained_mem "Drivers: SDHC": status: maintained maintainers: - danieldegrasse collaborators: - lucien-nxp files: - drivers/sdhc/ - tests/drivers/sdhc/ - include/zephyr/drivers/sdhc.h - dts/bindings/sdhc/ - doc/hardware/peripherals/sdhc.rst labels: - "area: Disk Access" tests: - drivers.sdhc "Drivers: SENT": status: maintained maintainers: - manuargue - Dat-NguyenDuy files: - drivers/sent/ - include/zephyr/drivers/sent/ - dts/bindings/sent/ - doc/hardware/peripherals/sent.rst - tests/drivers/sent/ - samples/drivers/sent/ labels: - "area: SENT" tests: - drivers.sent - sample.drivers.sent "Drivers: SMBus": status: odd fixes files: - drivers/smbus/ - dts/bindings/smbus/ - include/zephyr/drivers/smbus.h - samples/drivers/smbus/ - tests/drivers/smbus/ - doc/hardware/peripherals/smbus.rst labels: - "area: SMBus" tests: - drivers.smbus - sample.drivers.smbus "Drivers: SPI": status: maintained maintainers: - tbursztyka collaborators: - teburd files: - drivers/spi/ - include/zephyr/drivers/spi.h - tests/drivers/spi/ - dts/bindings/spi/ - include/zephyr/dt-bindings/spi/ - doc/hardware/peripherals/spi.rst - tests/drivers/build_all/spi/ - samples/drivers/spi_*/ labels: - "area: SPI" tests: - drivers.spi - sample.drivers.spi "Drivers: Sensors": status: maintained maintainers: - MaureenHelm collaborators: - avisconti - teburd - yperess - tristan-google - ubieda - jeppenodgaard - asemjonovs files: - drivers/sensor/ - include/zephyr/drivers/sensor.h - include/zephyr/drivers/sensor_data_types.h - samples/sensor/ - tests/drivers/sensor/ - dts/bindings/sensor/ - include/zephyr/drivers/sensor/ - include/zephyr/dt-bindings/sensor/ - doc/hardware/peripherals/sensor/ - tests/drivers/build_all/sensor/ - include/zephyr/drivers/sensor_* file-groups: - name: Vendor-owned sensor drivers defer-to-other-areas: true files: - drivers/sensor/adi/ - drivers/sensor/espressif/ - drivers/sensor/infineon/ - drivers/sensor/ite/ - drivers/sensor/microchip/ - drivers/sensor/nordic/ - drivers/sensor/nxp/ - drivers/sensor/silabs/ - drivers/sensor/st/ - drivers/sensor/tdk/ - drivers/sensor/wsen/ labels: - "area: Sensors" tests: - drivers.sensor - sample.sensor "Drivers: Serial/UART": status: maintained maintainers: - dcpleung files: - drivers/serial/ - include/zephyr/drivers/uart.h - include/zephyr/drivers/uart/ - dts/bindings/serial/ - samples/drivers/uart/ - tests/drivers/uart/ - tests/drivers/build_all/uart/ - doc/hardware/peripherals/uart.rst - include/zephyr/drivers/serial/ - include/zephyr/drivers/uart_pipe.h file-groups: - name: Serial/UART driver defer-to-other-areas: true files: - drivers/serial/uart_*.c - drivers/serial/uart_*.h - drivers/serial/Kconfig.* - dts/bindings/serial/ - include/zephyr/dt-bindings/uart/ labels: - "area: UART" tests: - drivers.uart - sample.drivers.uart "Drivers: Stepper": status: maintained maintainers: - jilaypandya collaborators: - bjarki-andreasen - dipakgmx - faxe1008 - jbehrensnx files: - drivers/stepper/ - include/zephyr/drivers/stepper/ - dts/bindings/stepper/ - doc/hardware/peripherals/stepper/ - samples/drivers/stepper/ - tests/drivers/build_all/stepper/ - tests/drivers/stepper/ labels: - "area: Stepper" tests: - drivers.stepper - sample.drivers.stepper "Drivers: Syscon": status: maintained maintainers: - carlocaione collaborators: - pdgendt files: - include/zephyr/drivers/syscon.h - drivers/syscon/ - tests/drivers/syscon/ - dts/bindings/syscon/ tests: - drivers.syscon - drivers.syscon.syscon labels: - "area: Syscon" "Drivers: System timer": status: maintained maintainers: - npitre collaborators: - teburd - andyross files: - drivers/timer/ - include/zephyr/drivers/timer/ - dts/bindings/timer/ - tests/drivers/timer/ - include/zephyr/dt-bindings/timer/ labels: - "area: Timer" tests: - drivers.timer - kernel - arch "Drivers: Time Aware GPIO": status: maintained maintainers: - akanisetti files: - doc/hardware/peripherals/tgpio.rst - drivers/timeaware_gpio/ - include/zephyr/drivers/timeaware_gpio.h - samples/drivers/timeaware_gpio/ labels: - "area: Time Aware GPIO" tests: - sample.drivers.timeaware_gpio "Drivers: VIRTIO": status: maintained maintainers: - fkokosinski - tgorochowik collaborators: - kgugala files: - drivers/virtio/ - dts/bindings/virtio/ - include/zephyr/drivers/virtio.h - include/zephyr/drivers/virtio/ - tests/drivers/build_all/virtio/ labels: - "area: VIRTIO" tests: - drivers.virtio "Drivers: Video": status: maintained maintainers: - josuah - ngphibang collaborators: - loicpoulain - avolmat-st files: - drivers/video/ - include/zephyr/drivers/video.h - include/zephyr/drivers/video/ - include/zephyr/dt-bindings/video/ - doc/hardware/peripherals/video.rst - tests/drivers/*/video/ - dts/bindings/video/ labels: - "area: Video" tests: - drivers.video - sample.drivers.video "Drivers: Virtualization": status: odd fixes files: - drivers/virtualization/ - tests/drivers/virtualization/ - dts/bindings/virtualization/ - include/zephyr/drivers/virtualization/ - doc/services/virtualization/ - include/zephyr/drivers/virtualization/ivshmem.h - samples/drivers/virtualization/ - doc/hardware/virtualization/ labels: - "area: Virtualization" tests: - drivers.virtualization - sample.drivers.virtualization.ivshmem "Drivers: W1": status: maintained maintainers: - str4t0m files: - doc/hardware/peripherals/w1.rst - doc/hardware/peripherals/1-Wire_bus_topology.drawio.svg - drivers/w1/ - dts/bindings/w1/ - include/zephyr/drivers/w1.h - include/zephyr/drivers/sensor/w1_sensor.h - tests/drivers/w1/ - tests/drivers/build_all/w1/ - samples/drivers/w1/ labels: - "area: W1" tests: - drivers.w1 - sample.drivers.w1 "Drivers: Watchdog": status: odd fixes collaborators: - katsuster - martinjaeger - yvesll files: - doc/hardware/peripherals/watchdog.rst - drivers/watchdog/ - dts/bindings/watchdog/ - include/zephyr/drivers/watchdog.h - samples/drivers/watchdog/ - tests/drivers/watchdog/ - tests/drivers/build_all/watchdog/ labels: - "area: Watchdog" tests: - drivers.watchdog - sample.drivers.watchdog "Drivers: Wi-Fi": status: maintained maintainers: - jukkar collaborators: - rlubos - kludentwo - krish2718 - MaochenWang1 - maass-hamburg files: - drivers/wifi/ - dts/bindings/wifi/ - tests/drivers/build_all/wifi/ - include/zephyr/drivers/wifi/ - tests/drivers/wifi/ labels: - "area: Wi-Fi" tests: - drivers.net.wifi - drivers.wifi "Drivers: Wi-Fi as nRF Wi-Fi": status: maintained maintainers: - krish2718 - jukkar collaborators: - sachinthegreen files: - drivers/wifi/nrf_wifi/ - dts/bindings/wifi/nordic,nrf70.yaml - dts/bindings/wifi/nordic,nrf70-qspi.yaml - dts/bindings/wifi/nordic,nrf70-spi.yaml - dts/bindings/wifi/nordic,nrf70-coex.yaml - dts/bindings/wifi/nordic,nrf7002-qspi.yaml - dts/bindings/wifi/nordic,nrf7002-spi.yaml - dts/bindings/wifi/nordic,nrf7000-qspi.yaml - dts/bindings/wifi/nordic,nrf7000-spi.yaml - dts/bindings/wifi/nordic,nrf7001-qspi.yaml - dts/bindings/wifi/nordic,nrf7001-spi.yaml - dts/bindings/wifi/nordic,nrf7120-wifi.yaml - boards/shields/nrf7002e*/ labels: - "area: Wi-Fi" "Drivers: Wi-Fi es-WiFi": status: odd fixes collaborators: - loicpoulain files: - drivers/wifi/eswifi/ description: >- Inventek es-WiFi labels: - "area: Wi-Fi" "Drivers: Wuc": status: maintained maintainers: - Albort12138 files: - drivers/wuc/ - dts/bindings/wuc/ - include/zephyr/dt-bindings/wuc/ - include/zephyr/drivers/wuc.h - include/zephyr/devicetree/wuc.h - tests/drivers/wuc/ - doc/hardware/peripherals/wuc.rst labels: - "area: wuc" tests: - drivers.wuc "Drivers: Wurth Elektronik Sensors": status: maintained maintainers: - mah-eiSmart - wm-eisos files: - drivers/sensor/wsen/ tests: - drivers.sensor description: >- Drivers of Wurth Elektronik sensors. "Drivers: bbram": status: maintained maintainers: - yperess files: - tests/drivers/bbram/ - tests/drivers/build_all/bbram/ - drivers/bbram/ - include/zephyr/drivers/bbram.h - doc/hardware/peripherals/bbram.rst labels: - "area: Battery Backed RAM (bbram)" tests: - drivers.bbram EC Host Commands: status: maintained maintainers: - niedzwiecki-dawid files: - subsys/mgmt/ec_host_cmd/ - include/zephyr/mgmt/ec_host_cmd/ - tests/subsys/mgmt/ec_host_cmd/ labels: - "area: ec_host_cmd" tests: - mgmt.ec_host_cmd Emulation: status: maintained maintainers: - yperess collaborators: - aaronemassey - jeremybettis - alevkoy - asemjonovs - tristan-google files: - subsys/emul/ - include/zephyr/drivers/emul_* - include/zephyr/drivers/emul.h - include/zephyr/drivers/espi_emul.h - include/zephyr/drivers/i2c_emul.h - include/zephyr/drivers/spi_emul.h - tests/subsys/emul/ - doc/hardware/emulator/ labels: - "area: HW Emulation" tests: - emul Enclustra Platforms: status: maintained maintainers: - fkokosinski collaborators: - tgorochowik files: - boards/enclustra/ labels: - "platform: Enclustra" Espressif Platforms: status: maintained maintainers: - sylvioalves collaborators: - LucasTambor - marekmatej - uLipe - raffarost - wmrsouza - tmedicci files: - drivers/*/*esp32*.c - boards/espressif/ - soc/espressif/ - dts/*/espressif/ - dts/bindings/*/*esp32* - samples/boards/espressif/ - tests/boards/espressif/ - drivers/*/*esp32*/ - drivers/wifi/esp_hosted/ - drivers/wifi/esp_hosted_mcu/ - drivers/wifi/esp_at/ - drivers/misc/esp_hosted_mcu/ - drivers/bluetooth/hci/hci_esp_hosted_mcu.c file-groups: - name: Espressif hosted Wi-Fi driver files: - drivers/wifi/esp_hosted - name: Espressif esp-hosted transport core files: - drivers/misc/esp_hosted_mcu - drivers/wifi/esp_hosted_mcu - drivers/bluetooth/hci/hci_esp_hosted_mcu.c - name: Espressif ESP-AT Wi-Fi driver files: - drivers/wifi/esp_at labels: - "platform: ESP32" tests: - boards.esp32 - esp.wifi.sec - sample.boards.esp32 - sample.esp32.deep_sleep - boards.espressif Ezurio platforms: status: maintained maintainers: - rerickson1 collaborators: - greg-leach files: - boards/ezurio/ labels: - "platform: Ezurio" Filesystems: status: maintained maintainers: - de-nordic collaborators: - Laczen - nashif - rghaddab files: - include/zephyr/fs/ - samples/subsys/fs/ - subsys/fs/ - tests/subsys/fs/ - dts/bindings/fs/ labels: - "area: File System" tests: - filesystem - sample.filesystem Formatted Output: status: maintained maintainers: - nordic-krch collaborators: - dcpleung files: - include/zephyr/sys/cbprintf* - tests/unit/cbprintf/ - tests/lib/cbprintf_*/ - lib/os/cbprintf* - lib/os/Kconfig.cbprintf - doc/services/formatted_output.rst labels: - "area: Formatting Output" tests: - utilities.prf - libraries.cbprintf GD32 Platforms: status: maintained maintainers: - soburi collaborators: - cameled files: - boards/gd/ - drivers/*/*gd32* - dts/*/gd/ - dts/bindings/*/*gd32* - scripts/west_commands/*/*gd32* - soc/gd/gd32/ labels: - "platform: GD32" description: >- GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval boards. Gaisler Platforms: status: odd fixes collaborators: - tbr-tt files: - dts/sparc/gaisler/ - soc/gaisler/ - boards/gaisler/ labels: - "area: SPARC" Gardena Platforms: status: maintained maintainers: - rettichschnidi collaborators: - M1cha files: - boards/gardena/ labels: - "platform: Gardena" description: >- Gardena board(s). Google Platforms: status: maintained maintainers: - fabiobaltieri - keith-zephyr collaborators: - duda-patryk files: - boards/google/ - samples/boards/google/ tests: - sample.boards.google_twinkie_v2 Hash Utilities: status: maintained maintainers: - cfriedt files: - include/zephyr/sys/hash_* - lib/hash/ - samples/basic/hash_map/ - tests/lib/hash_*/ description: >- Hash Functions and Hash Maps (Hash Tables) labels: - "area: hash utils" tests: - libraries.hash_function - libraries.hash_map - sample.libraries.hash_map Heap Management: status: maintained maintainers: - npitre collaborators: - andyross files: - tests/lib/shared_multi_heap/ - lib/heap/ - tests/lib/heap/ - tests/lib/heap_align/ - tests/lib/multi_heap/ - include/zephyr/multi_heap/ tests: - libraries.heap - libraries.heap_align - libraries.multi_heap - libraries.shared_multi_heap Heimann Platforms: status: maintained maintainers: - tswaehn files: - boards/heimann/ labels: - "platform: heimann" IPC: status: maintained maintainers: - iuliana-prodan - anangl collaborators: - arnopo files: - include/zephyr/ipc/ - samples/subsys/ipc/ - subsys/ipc/ - tests/subsys/ipc/ - doc/services/ipc/ - dts/bindings/ipc/ - include/zephyr/dt-bindings/ipc_service/ description: >- Inter-Processor Communication labels: - "area: IPC" tests: - ipc - sample.ipc ITE Platforms: status: maintained maintainers: - Dino-Li - GTLin08 - RuibinChang - Chenhongren collaborators: - keith-zephyr - fabiobaltieri files: - boards/ite/ - drivers/sensor/ite/ - drivers/usb/udc/*it82xx2*.c - drivers/usb/device/*it82xx2*.c - drivers/*/*it51xxx*.c - drivers/*/*it8xxx2*.c - drivers/*/*_ite_* - dts/bindings/*/ite* - dts/riscv/ite/ - soc/ite/ labels: - "platform: ITE" Infineon Platforms: status: maintained maintainers: - sreeramIfx - teburd collaborators: - mcatee-infineon - talih0 - billwatersiii - jsbatch - Peterson-Brett - lauracarlesso - MerinMGeorge - ifx-rmcs - parthitce - stites-infineon files: - boards/cypress/ - boards/infineon/ - drivers/*/*infineon* - drivers/*/*xmc* - drivers/sensor/infineon/ - drivers/wifi/infineon/ - dts/arm/infineon/ - dts/bindings/*/*infineon* - soc/infineon/ labels: - "platform: Infineon" description: >- Infineon SOCs, dts files and related drivers. Infineon Proto, Pioneer, Eval and Relax boards. Input: status: maintained maintainers: - fabiobaltieri collaborators: - mcuxted files: - doc/services/input/ - drivers/input/ - dts/bindings/input/ - include/zephyr/dt-bindings/input/ - include/zephyr/input/ - samples/subsys/input/ - subsys/input/ - tests/drivers/build_all/input/ - tests/subsys/input/ - tests/drivers/input/ description: >- Input subsystem and drivers labels: - "area: Input" tests: - drivers.input - input - sample.input Instrumentation Subsystem: status: maintained maintainers: - fkokosinski - tgorochowik files: - doc/services/instrumentation/ - include/zephyr/instrumentation/ - samples/subsys/instrumentation/ - scripts/instrumentation/ - subsys/instrumentation/ labels: - "area: Instrumentation" tests: - sample.instrumentation Intel Platforms (Agilex): status: maintained maintainers: - gdengi files: - boards/intel/socfpga/ - soc/intel/intel_socfpga/ - dts/arm64/intel/ - dts/bindings/*/intel,agilex* - dts/arm/intel_socfpga_std/ labels: - "platform: Intel SoC FPGA Agilex" Intel Platforms (ISH): status: maintained maintainers: - kwd-doodling collaborators: - likongintel - nashif files: - boards/intel/ish/ - soc/intel/intel_ish/ - dts/x86/intel/intel_ish* - dts/bindings/*/intel,sedi* - drivers/*/*sedi* labels: - "platform: Intel ISH" Intel Platforms (X86): status: maintained maintainers: - edersondisouza collaborators: - dcpleung - ceolin files: - boards/intel/adl/ - boards/intel/btl/ - boards/intel/ehl/ - boards/intel/rpl/ - dts/x86/intel/ - soc/intel/atom/ - soc/intel/lakemont/ - soc/intel/*_lake/ - drivers/timer/Kconfig.x86 - drivers/timer/hpet.c - drivers/timer/apic* labels: - "platform: X86" - "platform: Intel" Intel Platforms (Xtensa): status: maintained maintainers: - dcpleung collaborators: - andyross - lyakh - lgirdwood - kv2019i - ceolin - tmleman - softwarecki - jxstelter - marcinszkudlinski - nashif - abonislawski - serhiy-katsyuba-intel files: - boards/intel/adsp/ - soc/intel/intel_adsp/ - dts/xtensa/intel/ - tests/boards/intel_adsp/ - samples/boards/intel/adsp/ - dts/bindings/*/intel,adsp* - scripts/west_commands/runners/intel_adsp.py - drivers/counter/counter_ace_v1x* - drivers/counter/Kconfig.ace labels: - "platform: Intel ADSP" tests: - boards.intel_adsp - sample.intel_adsp "Interrupt Handling": status: odd fixes collaborators: - ycsin - dcpleung - nashif files: - drivers/interrupt_controller/ - dts/bindings/interrupt-controller/ - include/zephyr/drivers/interrupt_controller/ - include/zephyr/dt-bindings/interrupt-controller/ - include/zephyr/irq* - include/zephyr/sw_isr_table.h - include/zephyr/shared_irq.h - tests/drivers/interrupt_controller/ - tests/drivers/build_all/interrupt_controller/ labels: - "area: Interrupt Controller" tests: - drivers.interrupt_controller JSON Web Token: status: maintained maintainers: - d3zd3z files: - subsys/jwt/ - include/zephyr/data/json.h - include/zephyr/data/jwt.h - lib/utils/json.c - tests/subsys/jwt/ - tests/lib/json/ - doc/services/jwt/index.rst labels: - "area: JSON" tests: - libraries.encoding Kconfig: status: maintained maintainers: - tejlmand collaborators: - nashif files: - scripts/kconfig/ - doc/build/kconfig/ - Kconfig.zephyr - tests/kconfig/configdefault/ - tests/misc/kconfigoptions/ labels: - "area: Kconfig" description: >- See https://docs.zephyrproject.org/latest/build/kconfig/index.html tests: - kconfig Kernel: status: maintained maintainers: - peter-mitsis - npitre collaborators: - andyross - nashif - ceolin - dcpleung - cfriedt - TaiJuWu - Mattemagikern files: - doc/kernel/ - include/zephyr/kernel*.h - include/zephyr/spinlock.h - include/zephyr/fatal.h - kernel/ - tests/kernel/ - include/zephyr/sys_clock.h - samples/kernel/ - include/zephyr/kernel/ - include/zephyr/cleanup.h - include/zephyr/cleanup/ - tests/lib/p4workq/ files-exclude: - tests/kernel/mem_protect/ file-groups: - name: Cleanup helpers collaborators: - pdgendt files: - include/zephyr/cleanup.h - include/zephyr/cleanup/ - doc/kernel/cleanup.rst - tests/kernel/cleanup/ labels: - "area: Kernel" tests: - kernel - libraries.p4wq - sample.kernel - linker.linker_generator - utilities Key-Value Storage Systems: status: maintained maintainers: - rghaddab collaborators: - Laczen - nashif - LingaoM files: - include/zephyr/kvss/ - samples/subsys/kvss/ - subsys/kvss/ - tests/subsys/kvss/ labels: - "area: Key-Value Storage Systems" tests: - keyvalstorage - filesystem.nvs.gc_pack.nvs - sample.nvs - sample.zms "Linkable Loadable Extensions": status: maintained maintainers: - teburd collaborators: - lyakh - pillo79 - laurenmurphyx64 - edersondisouza files: - cmake/llext-edk.cmake - samples/subsys/llext/ - include/zephyr/llext/ - tests/misc/llext-edk/ - tests/subsys/llext/ - subsys/llext/ - doc/services/llext/ - include/zephyr/linker/llext-sections.ld - scripts/build/llext_* labels: - "area: llext" tests: - llext - misc.edk.pytest - sample.llext Linker Scripts: status: maintained maintainers: - nashif files: - include/zephyr/linker/ - tests/misc/iterable_sections/ - tests/application_development/code_relocation/ - samples/application_development/code_relocation_nocopy/ labels: - "area: Linker Scripts" tests: - linker - sample.app_dev.code_relocation_nocopy - buildsystem.app_dev Linters and Static Analyzers: status: maintained maintainers: - keith-zephyr collaborators: - nashif - kartben - pdgendt - kylebonnici files: - .codechecker.yml - .codecov.yml - .ruff-excludes.toml - .ruff.toml - REUSE.toml - .yamllint - scripts/ruff/gen_format_exclude.py - scripts/ruff/gen_lint_exclude.py - cmake/sca/ - .checkpatch.conf - .clang-format - .editorconfig - .gitlint - .yamllint - scripts/checkpatch.pl - scripts/checkpatch/ - scripts/ci/check_compliance.py - scripts/ci/guideline_check.py - scripts/ci/pylintrc - scripts/coccicheck - scripts/coccinelle/ - scripts/gitlint/ - scripts/pylint/ - scripts/spelling.txt labels: - "area: Linters" description: >- Linters and Static Analyzers used in Zephyr project. LiteX Platforms: status: maintained maintainers: - tgorochowik - fkokosinski - maass-hamburg collaborators: - kgugala files: - boards/enjoydigital/litex_vexriscv/ - drivers/*/*litex* - drivers/*/Kconfig.litex - dts/bindings/*/litex* - dts/riscv/riscv32-litex-vexriscv.dtsi - include/zephyr/drivers/*/*litex* - samples/boards/enjoydigital/litex/ - samples/drivers/*litex/ - soc/litex/ labels: - "platform: LiteX" tests: - sample.drivers.i2s.litex Little FS: status: odd fixes files: - subsys/fs/Kconfig.littlefs - subsys/fs/littlefs_fs.c - tests/subsys/fs/littlefs/ description: >- Little FS labels: - "area: File System" tests: - filesystem.littlefs LoRa and LoRaWAN: status: maintained maintainers: - JordanYates collaborators: - martinjaeger - mniestroj - carlocaione files: - drivers/lora/ - include/zephyr/drivers/lora.h - samples/drivers/lora/ - include/zephyr/lorawan/ - subsys/lorawan/ - samples/subsys/lorawan/ - include/zephyr/dt-bindings/lora/ - dts/bindings/lora/ - doc/services/connectivity/lora_lorawan/index.rst - tests/subsys/lorawan/ - tests/drivers/build_all/lora/ labels: - "area: LoRa" tests: - lorawan - sample.lorawan - sample.drivers.lora LoRaWAN native backend: status: maintained maintainers: - carlocaione collaborators: - JordanYates - martinjaeger - mniestroj files: - subsys/lorawan/native/ labels: - "area: LoRa" Logging: status: maintained maintainers: - nordic-krch collaborators: - dcpleung - ldab files: - include/zephyr/logging/ - include/zephyr/sys/mpsc_pbuf.h - include/zephyr/sys/mpsc_packet.h - lib/os/mpsc_pbuf.c - doc/kernel/data_structures/mpsc_pbuf.rst - tests/lib/mpsc_pbuf/ - samples/subsys/logging/ - subsys/logging/ - tests/subsys/logging/ - scripts/logging/ - doc/services/logging/ - tests/lib/spsc_pbuf/ files-exclude: - tests/subsys/logging/log_frontend_stmesp_demux/ labels: - "area: Logging" tests: - logging - libraries.mpsc_pbuf - libraries.spsc_pbuf - sample.logging M5Stack Platforms: status: maintained maintainers: - thc1006 files: - boards/m5stack/ - boards/shields/m5stack_*/ labels: - "platform: M5Stack" MAINTAINERS file: status: maintained maintainers: - MaureenHelm - nashif collaborators: - stephanosio files: - MAINTAINERS.yml - scripts/get_maintainer.py - scripts/ci/set_assignees.py - scripts/check_maintainers.py labels: - "area: MAINTAINER File" description: >- Zephyr Maintainers File and related scripts. The maintainers of this area are appointed by the TSC and are responsible for "approving individual sub-projects and designated maintainers" as per the Zephyr charter. In this context "sub-projects" refer to areas in the MAINTAINERS file. MCU Manager: status: maintained maintainers: - nordicjm collaborators: - de-nordic files: - subsys/mgmt/mcumgr/ - include/zephyr/mgmt/mcumgr/ - samples/subsys/mgmt/mcumgr/ - tests/subsys/mgmt/mcumgr/ - doc/services/device_mgmt/ - scripts/utils/migrate_mcumgr_kconfigs.py labels: - "area: mcumgr" tests: - mgmt.mcumgr - sample.mcumgr - os.mgmt.mpstat - settings.mgmt MIPS arch: status: odd fixes files: - arch/mips/ - include/zephyr/arch/mips/ - boards/qemu/malta/ labels: - "area: MIPS" - arch - kernel Memory Management: status: maintained maintainers: - dcpleung files: - subsys/mem_mgmt/ - lib/mem_blocks/ - tests/subsys/mem_mgmt/ - include/zephyr/mem_mgmt/mem_attr_heap.h - tests/lib/mem_alloc/ - tests/lib/mem_blocks/ - doc/services/mem_mgmt/ - include/zephyr/mem_mgmt/mem_attr.h - include/zephyr/dt-bindings/memory-attr/ - tests/lib/mem_blocks_stats/ - tests/drivers/mm/ tests: - mem_mgmt - drivers.mm - libraries.libc - libraries.mem_blocks Microchip MEC Platforms: status: maintained maintainers: - jvasanth1 - scottwcpg collaborators: - VenkatKotakonda - albertofloyd files: - boards/microchip/mec*/ - boards/microchip/ev11l78a/ - dts/arm/microchip/mec/ - soc/microchip/mec/ - drivers/*/*xec* - drivers/sensor/microchip/mchp_tach_xec/ - include/zephyr/*/*/*xec* - tests/boards/mec15xxevb_assy6853/ - tests/boards/mec172xevb_assy6906/ - tests/**/boards/*mec* - dts/bindings/*/microchip,mec* - dts/bindings/*/microchip,xec* - dts/bindings/*/microchip,dmec* - samples/**/boards/mec* labels: - "platform: Microchip MEC" tests: - boards.mec15xxevb_assy6853 - boards.mec172xevb_assy6906 Microchip PIC32 Platforms: status: maintained maintainers: - ArunMCHP - NhMchp collaborators: - fabin-mchp - Farsin-Nasar-Microchip - mchp-asif - sunil-abraham - AzharMCHP - nandojve files: - boards/microchip/pic32*/ - dts/arm/microchip/pic32*/ - dts/bindings/*/microchip/pic32*/ - dts/bindings/*/microchip,sam* - dts/bindings/*/microchip,*-g* - drivers/*/*mchp* - include/zephyr/**/mchp* - samples/**/boards/sam_* - soc/microchip/pic32*/ - tests/**/boards/pic32* - tests/**/boards/sam_* - tests/**/microchip/ labels: - "platform: Microchip PIC32" Microchip RISC-V Platforms: status: maintained maintainers: - fkokosinski collaborators: - kgugala - tgorochowik - con-pax files: - boards/microchip/m2gl025_miv/ - boards/microchip/mpfs_icicle/ - boards/microchip/pic64gx_curiosity_kit/ - dts/riscv/microchip/ - soc/microchip/miv/ - soc/microchip/pic64/ - drivers/*/*mchp*mss* - dts/bindings/*/microchip,mpfs* - dts/bindings/*/microchip,coreuart* - include/zephyr/dt-bindings/reset/mchp_mss* labels: - "platform: Microchip RISC-V" Microchip SAM Platforms: status: maintained maintainers: - nandojve collaborators: - ArunMCHP - fabin-mchp - Farsin-Nasar-Microchip - mchp-asif - sunil-abraham - stephanosio files: - boards/atmel/ - boards/microchip/sam/ - dts/arm/atmel/ - dts/arm/microchip/sam/ - soc/atmel/ - soc/microchip/sam/sama*/ - drivers/*/*sam* - dts/bindings/*/atmel,* - include/zephyr/*/*/*sam* - include/zephyr/*/*/*atmel* labels: - "platform: Microchip SAM" Microchip SmartFusion2 platform: status: maintained maintainers: - akBavMat - con-pax collaborators: - AntonVynohradov files: - boards/microchip/m2s_hello_fpga_kit/ - boards/microchip/m2s010_mkr_kit/ - drivers/clock_control/*smartfusion2* - dts/arm/microchip/smartfusion2*/ - dts/bindings/*/microchip,smartfusion2* - include/zephyr/dt-bindings/*/*smartfusion2* - soc/microchip/smartfusion2*/ labels: - "platform: Microchip SmartFusion2" Microchip Standalone Devices: status: maintained maintainers: - NhMchp files: - drivers/bbram/*microchip* - drivers/ethernet/phy/*microchip* - drivers/sensor/microchip/mcp9600/ - drivers/sensor/microchip/mcp970x/ - drivers/sensor/microchip/mtch9010/ - drivers/sensor/microchip/tcn75a/ - dts/bindings/*/microchip,cap* - dts/bindings/*/microchip,enc* - dts/bindings/*/microchip,mcp* - dts/bindings/*/microchip,tcn* - dts/bindings/**/microchip,ksz* - dts/bindings/**/microchip,lan* - dts/bindings/**/microchip,t1s* - dts/bindings/**/microchip,vsc* labels: - "platform: Microchip" Modbus: status: maintained maintainers: - jfischer-no files: - samples/subsys/modbus/ - include/zephyr/modbus/ - tests/subsys/modbus/ - subsys/modbus/ - doc/services/connectivity/modbus/ labels: - "area: modbus" tests: - modbus - sample.modbus Modem: status: maintained maintainers: - bjarki-andreasen collaborators: - SeppoTakalo - wkhadgar files: - subsys/modem/ - include/zephyr/modem/ - tests/subsys/modem/ - doc/services/connectivity/modem/ - samples/net/cellular_modem/ - include/zephyr/drivers/cellular.h labels: - "area: Modem" tests: - modem - sample.net.cellular_modem NEORV32 platform: status: maintained maintainers: - henrikbrixandersen files: - boards/others/neorv32/ - drivers/*/*neorv32* - dts/bindings/*/*neorv32* - soc/neorv32/ - tests/boards/neorv32/ labels: - "platform: NEORV32" tests: - boards.neorv32 NUCODE Platforms: status: maintained maintainers: - manjae-cho files: - boards/nucode/ labels: - "platform: NUCODE" NVMEM: status: maintained maintainers: - pdgendt collaborators: - henrikbrixandersen files: - doc/services/storage/nvmem/ - dts/bindings/nvmem/ - include/zephyr/devicetree/nvmem.h - include/zephyr/nvmem.h - subsys/nvmem/ - tests/subsys/nvmem/ labels: - "area: NVMEM" tests: - nvmem NXP Platform Drivers: status: maintained maintainers: - zejiang0jason - butok collaborators: - iuliana-prodan - dbaluta - Holt-Sun - mmahadevan108 files-regex: - ^drivers/.*nxp.* - ^drivers/.*mcux.* - drivers\/.*[_\/]+lpc[_\.\d]+.*c files: - drivers/*/*mcux*.c - drivers/*/*.mcux - drivers/*/*.nxp - drivers/*/*nxp* - drivers/*/*/*kinetis* - drivers/misc/*/nxp* - drivers/sensor/nxp/ - include/zephyr/dt-bindings/*/*nxp* - include/zephyr/dt-bindings/*/*mcux* - include/zephyr/dt-bindings/inputmux/ - include/zephyr/drivers/*/*nxp* - include/zephyr/drivers/*/*nxp*/ - include/zephyr/drivers/*/*mcux* - include/zephyr/drivers/misc/flexram/ - arch/arm/core/mpu/nxp_mpu.c - dts/bindings/*/nxp* files-exclude: - drivers/wifi/ - drivers/bluetooth/ files-regex-exclude: - .*s32.* file-groups: - name: NXP USB collaborators: - MarkWangChinese files: - drivers/usb/ labels: - "platform: NXP" description: NXP Drivers NXP Platform Wireless: status: maintained maintainers: - axelnxp files: - boards/nxp/*mcxw*/ - boards/nxp/*rw*/ - drivers/*/*mcxw*.c - drivers/bluetooth/hci/*nxp* - drivers/hdlc_rcp_if/*nxp* - drivers/ieee802154/ieee802154_kw41z.c - drivers/wifi/nxp/ - samples/bluetooth/**/*rw* - samples/net/**/*mcxw* - samples/net/**/*nxp* - samples/net/**/*rw* - soc/nxp/mcx/mcxw/ - soc/nxp/rw/ file-groups: - name: NXP BLE collaborators: - yeaissa files: - drivers/bluetooth/ - samples/bluetooth/ - name: NXP Wifi collaborators: - MaochenWang1 files: - boards/shields/nxp_m2_wifi_bt/ - drivers/wifi/ - samples/net/ - name: NXP IEEE802.15.4 collaborators: - George-Stefan files: - drivers/hdlc_rcp_if/ - drivers/ieee802154/ - soc/ - name: MCXW platform collaborators: - yeaissa files: - boards/nxp/*mcxw*/ - soc/nxp/mcx/mcxw/ - name: RW6xx platform collaborators: - MaochenWang1 - yeaissa files: - soc/nxp/rw/ - boards/nxp/*rw*/ labels: - "platform: NXP" NXP Platforms (MCU): status: maintained maintainers: - iuliana-prodan - butok - zejiang0jason collaborators: - mmahadevan108 files: - boards/nxp/mimxrt*/ - boards/nxp/frdm*/ - boards/nxp/*mcx*/ - boards/nxp/lpcxpress*/ - boards/nxp/twr_*/ - boards/nxp/*rw*/ - boards/nxp/common/ - boards/nxp/* - soc/nxp/common/ - soc/nxp/imxrt/ - soc/nxp/kinetis/ - soc/nxp/lpc/ - soc/nxp/rw/ - soc/nxp/mcx/ - dts/arm/nxp/ - samples/boards/nxp*/ - boards/nxp/vmu*/ - boards/nxp/rddrone_fmuk66/ - tests/boards/vmu_rt1170/ - boards/nxp/mr_navq95b/ files-exclude: - dts/arm/nxp/imx/nxp_imx* - boards/nxp/frdm_imx[0-9]*/ files-regex-exclude: - .*s32.* file-groups: - name: NXP RT collaborators: - lucien-nxp - Raymond0225 files: - boards/nxp/mimxrt*/ - soc/nxp/imxrt/ - dts/arm/nxp/imxrt/ - name: NXP MCX collaborators: - peterwangsz - NeilChen93 - jacob-wienecke-nxp files: - boards/nxp/frdm_mcx*/ - soc/nxp/mcx/ - dts/arm/nxp/mcx/ - boards/nxp/mcx_*/ - name: NXP Kinetis collaborators: - mmahadevan108 files: - boards/nxp/frdm_k*/ - boards/nxp/twr_kv*/ - soc/nxp/kinetis/ - dts/arm/nxp/kinetis/ - name: NXP LPC collaborators: - mmahadevan108 files: - boards/nxp/lpc*/ - soc/nxp/lpc/ - dts/arm/nxp/lpc/ - name: NXP MCU Xtensa collaborators: - iuliana-prodan - TomasBarakNXP - VitekST files: - soc/nxp/imxrt/*/f1/ - soc/nxp/imxrt/*/hifi*/ - soc/nxp/imxrt/imxrt[567]xx/CMakeLists.txt - soc/nxp/imxrt/imxrt[567]xx/Kconfig* - name: NXP MCU UX collaborators: - jacob-wienecke-nxp files-regex: - \.rst$ - .*Kconfig.* - \.conf$ files: - dts/bindings/ - samples/ - name: NXP MCU Robotics collaborators: - bperseghetti - PetervdPerk-NXP - AndreHeinemans-NXP files: - boards/nxp/vmu*/ - boards/nxp/rddrone_fmuk66/ - boards/nxp/mr_navq95b/ - tests/boards/vmu_rt1170/ - name: NXP Camera Shields collaborators: - ngphibang files: - boards/shields/nxp_btb44_ov5640/ - name: NXP Display Shields collaborators: - KATE-WANG-NXP files: - boards/shields/g1120b0mipi/ - boards/shields/lcd_par_s035/ - boards/shields/rk043fn02h_ct/ - boards/shields/rk043fn66hs_ctg/ - boards/shields/rk055hdmipi4m - boards/shields/rk055hdmipi4ma0/ - boards/shields/zc143ac72mipi/ - name: NXP I3C Test Shields collaborators: - hakehuang files: - boards/shields/p3t1755dp_ard_i2c/ - boards/shields/p3t1755dp_ard_i3c/ - name: NXP MCU LPC11U6x collaborators: - simonguinot - mbittan files: - boards/nxp/lpcxpresso11u68/ - soc/nxp/lpc/lpc11u6x/ - dts/arm/nxp/lpc/lpc11u6x/ files-regex: - .*lpc11u6.* - name: NXP MCU KE1xF collaborators: - henrikbrixandersen files: - boards/nxp/twr_ke18f/ - dts/arm/nxp/kinetis/ke1xf/ - soc/nxp/kinetis/ke1xf/ files-regex: - .*ke1*f.* - name: NXP MCU k32l collaborators: - iia files: - boards/nxp/frdm_k32l2b3/ - dts/arm/nxp/kinetis/k32lx/ - soc/nxp/kinetis/k32lx/ labels: - "platform: NXP MCU" - "platform: NXP" description: NXP MCU Platforms supported by MCUXpresso suite tests: - boards.vmu_rt1170 NXP Platforms (MPU): status: maintained maintainers: - JiafeiPan collaborators: - dbaluta - iuliana-prodan - yangbolu1991 - Zhiqiang-Hou - ZhaoQiang-b45475 files: - drivers/*/*imx* - include/zephyr/dt-bindings/rdc/ - dts/arm64/nxp/ - dts/arm/nxp/imx/nxp_imx* - soc/nxp/imx/ - soc/nxp/layerscape/ - boards/nxp/ls1046ardb/ - tests/arch/arm64/arm64_gicv3_its/boards/imx*.conf files-regex: - boards/nxp/.*m?imx[^(rt)].*/ labels: - "platform: NXP MPU" - "platform: NXP" description: NXP MPU platforms NXP Platforms (S32): status: maintained maintainers: - manuargue collaborators: - Dat-NguyenDuy files: - boards/nxp/*s32*/ - boards/common/*nxp_s32* - soc/nxp/s32/ - drivers/*/*nxp_s32* - drivers/misc/*nxp_s32*/ - dts/bindings/*/nxp,s32* - dts/arm/nxp/s32/nxp_s32* - samples/boards/nxp/s32/ - include/zephyr/dt-bindings/*/nxp-s32* - include/zephyr/dt-bindings/*/nxp_s32* - include/zephyr/drivers/*/*nxp_s32* - boards/nxp/mr_canhubk3/ file-groups: - name: NXP S32 Robotics collaborators: - bperseghetti - PetervdPerk-NXP files: - boards/nxp/mr_canhubk3/ - boards/nxp/ucans32k1sic/ labels: - "platform: NXP S32" - "platform: NXP" description: NXP S32 platforms and S32-specific drivers tests: - sample.boards.nxp_s32.netc Native_sim and POSIX arch: status: maintained maintainers: - aescolar collaborators: - tpambor files: - arch/posix/ - boards/native/common/ - boards/native/native_*/ - boards/native/doc/ - boards/native/*.rst - drivers/*/*posix* - drivers/*/*native* - drivers/*/*/*posix* - drivers/*/*/*native* - dts/posix/ - include/zephyr/arch/posix/ - scripts/native_simulator/ - scripts/valgrind.supp - soc/native/ - tests/boards/native_sim/ labels: - "area: native port" description: >- POSIX architecture and SOC, native_sim boards, and related drivers tests: - boards.native_sim - boards.native.rtc.native_realtime Networking: status: maintained maintainers: - rlubos - jukkar collaborators: - pdgendt files: - scripts/net/ - drivers/net/ - include/zephyr/net/ - samples/net/ - subsys/net/ - doc/services/connectivity/networking/ - tests/net/ - tests/unit/net_timeout/ files-exclude: - doc/services/connectivity/networking/api/gptp.rst - doc/services/connectivity/networking/api/ieee802154.rst - doc/services/connectivity/networking/api/mcp.rst - doc/services/connectivity/networking/api/ocpp.rst - doc/services/connectivity/networking/api/ptp.rst - doc/services/connectivity/networking/api/wifi.rst - doc/services/connectivity/networking/api/http*.rst - doc/services/connectivity/networking/api/ethernet*.rst - doc/services/connectivity/networking/api/lldp.rst - doc/services/connectivity/networking/api/vlan.rst - doc/services/connectivity/networking/dsa* - doc/services/connectivity/networking/eth_*.rst - include/zephyr/net/gptp.h - include/zephyr/net/ieee802154*.h - include/zephyr/net/mcp/ - include/zephyr/net/ptp.h - include/zephyr/net/wifi*.h - include/zephyr/net/dhcpv4*.h - include/zephyr/net/http/ - include/zephyr/net/ethernet*.h - include/zephyr/net/dsa*.h - include/zephyr/net/lldp.h - samples/net/ethernet/ - samples/net/sockets/coap_*/ - samples/net/sockets/*http*/ - samples/net/lwm2m_client/ - samples/net/mcp/ - samples/net/ocpp/ - samples/net/wifi/ - samples/net/dhcpv4_client/ - subsys/net/l2/ethernet/ - subsys/net/l2/ieee802154/ - subsys/net/l2/wifi/ - subsys/net/lib/coap/ - subsys/net/lib/config/ieee802154* - subsys/net/lib/http/ - subsys/net/lib/lwm2m/ - subsys/net/lib/mcp/ - subsys/net/lib/ocpp/ - subsys/net/lib/ptp/ - subsys/net/lib/tls_credentials/ - subsys/net/lib/dhcpv4/ - tests/net/dhcpv4/ - tests/net/ieee802154/ - tests/net/lib/mcp/ - tests/net/lib/ocpp/ - tests/net/lib/http*/ - tests/net/wifi/ - tests/net/arp/ - tests/net/bridge/ - tests/net/ethernet_mgmt/ - tests/net/vlan/ labels: - "area: Networking" tests: - net - utilities.net_timeout.net_timeout - sample.net "Networking Buffers": status: maintained maintainers: - jhedberg collaborators: - rlubos - jukkar files: - doc/services/net_buf/ - include/zephyr/net_buf.h - lib/net_buf/ - tests/lib/net_buf/ labels: - "area: Networking Buffers" tests: - libraries.net_buf "Networking: BSD sockets": status: maintained maintainers: - rlubos - jukkar files: - samples/net/sockets/ - subsys/net/lib/sockets/ - tests/net/socket/ labels: - "area: Networking" - "area: Sockets" tests: - net - sample.net "Networking: CoAP": status: maintained maintainers: - rlubos collaborators: - pdgendt files: - subsys/net/lib/coap/ - samples/net/sockets/coap_*/ - tests/net/lib/coap/ labels: - "area: Networking" tests: - net.coap "Networking: Connection Manager": status: maintained maintainers: - rlubos collaborators: - glarsennordic - jukkar files: - include/zephyr/net/conn_mgr*.h - subsys/net/conn_mgr/ - tests/net/conn_mgr_monitor/ - tests/net/conn_mgr_conn/ - doc/services/connectivity/networking/conn_mgr/ labels: - "area: Networking" tests: - net.conn_mgr "Networking: DHCPv4": status: maintained maintainers: - rlubos - jukkar collaborators: - maass-hamburg files: - subsys/net/lib/dhcpv4/ - samples/net/dhcpv4_client/ - tests/net/dhcpv4/ - include/zephyr/net/dhcpv4*.h labels: - "area: Networking" tests: - net.dhcpv4_client - net.dhcpv4_server - sample.net.dhcpv4_client "Networking: DSA": status: maintained maintainers: - yangbolu1991 - JiafeiPan files: - subsys/net/l2/ethernet/dsa/ - drivers/ethernet/dsa/ - dts/bindings/dsa/ - doc/services/connectivity/networking/dsa* - include/zephyr/net/dsa*.h - include/zephyr/dt-bindings/ethernet/dsa*.h - samples/net/ethernet/dsa/ labels: - "area: Networking" - "area: DSA" tests: - sample.net.dsa "Networking: Ethernet": status: maintained maintainers: - rlubos - jukkar collaborators: - maass-hamburg - yangbolu1991 - pdgendt files: - subsys/net/l2/ethernet/ - include/zephyr/net/ethernet*.h - include/zephyr/net/lldp.h - samples/net/ethernet/ - tests/net/arp/ - tests/net/bridge/ - tests/net/ethernet_mgmt/ - tests/net/vlan/ - doc/services/connectivity/networking/api/ethernet*.rst - doc/services/connectivity/networking/api/lldp.rst - doc/services/connectivity/networking/api/vlan.rst - doc/services/connectivity/networking/eth_*.rst files-exclude: - subsys/net/l2/ethernet/dsa/ - subsys/net/l2/ethernet/gptp/ - samples/net/ethernet/dsa/ - samples/net/ethernet/gptp/ labels: - "area: Networking" - "area: Ethernet" tests: - net.arp - net.eth_bridge - net.ethernet_mgmt.net_ethernet_mgmt - net.vlan - sample.net "Networking: HTTP": status: maintained maintainers: - jukkar - rlubos collaborators: - matt-rodgers files: - doc/services/connectivity/networking/api/http*.rst - include/zephyr/net/http/ - subsys/net/lib/http/ - samples/net/sockets/*http*/ - tests/net/lib/http*/ labels: - "area: Networking" - "area: HTTP" tests: - net.http "Networking: LwM2M": status: maintained maintainers: - rlubos collaborators: - SeppoTakalo files: - samples/net/lwm2m_client/ - tests/net/lib/lwm2m/ - subsys/net/lib/lwm2m/ labels: - "area: LwM2M" tests: - net.lwm2m - sample.net.lwm2m_client "Networking: MCP": status: maintained maintainers: - dpiskula-nxp files: - subsys/net/lib/mcp/ - include/zephyr/net/mcp/ - tests/net/lib/mcp/ - samples/net/mcp/ - doc/services/connectivity/networking/api/mcp.rst labels: - "area: Networking" - "area: MCP" tests: - net.mcp - sample.net.mcp "Networking: MQTT": status: maintained maintainers: - rlubos files: - subsys/net/lib/mqtt/ - tests/net/lib/mqtt_*/ - samples/net/cloud/mqtt_azure/ - samples/net/mqtt_publisher/ files-exclude: - tests/net/lib/mqtt_sn*/ labels: - "area: Networking" tests: - net.mqtt - sample.net.cloud.mqtt_azure - sample.net.mqtt_publisher - sample.net "Networking: MQTT-SN": status: maintained maintainers: - rlubos collaborators: - BeckmaR - M1cha files: - subsys/net/lib/mqtt_sn/ - tests/net/lib/mqtt_sn*/ - samples/net/mqtt_sn_publisher/ labels: - "area: Networking" tests: - net.mqtt_sn - sample.net.mqtt_publisher.sn "Networking: Native IEEE 802.15.4": status: odd fixes collaborators: - rlubos - jukkar files: - doc/services/connectivity/networking/api/ieee802154.rst - include/zephyr/net/ieee802154*.h - subsys/net/l2/ieee802154/ - subsys/net/lib/config/ieee802154* - tests/net/ieee802154/ labels: - "area: IEEE 802.15.4" tests: - net.ieee802154 - sample.net.openthread "Networking: OCPP": status: maintained maintainers: - ssekar15 files: - samples/net/ocpp/ - subsys/net/lib/ocpp/ - tests/net/lib/ocpp/ - doc/services/connectivity/networking/api/ocpp.rst labels: - "area: OCPP" tests: - net.ocpp - sample.net.ocpp "Networking: OpenThread": status: maintained maintainers: - rlubos collaborators: - pdgendt - kkasperczyk-no - edmont - Cristib05 files: - subsys/net/l2/openthread/ - samples/net/openthread/ - tests/subsys/openthread/ labels: - "area: Networking" - "area: OpenThread" tests: - openthread - sample.net.openthread "Networking: PTP": status: maintained maintainers: - awojasinski collaborators: - DBS06 files: - doc/services/connectivity/networking/api/ptp.rst - include/zephyr/net/ptp.h - subsys/net/lib/ptp/ - samples/net/ptp/ - tests/net/ptp/ labels: - "area: PTP" tests: - sample.net.ptp - net.ptp "Networking: Wi-Fi": status: maintained maintainers: - jukkar collaborators: - rlubos - krish2718 - MaochenWang1 files: - doc/services/connectivity/networking/api/wifi.rst - include/zephyr/net/wifi*.h - subsys/net/l2/wifi/ - samples/net/wifi/ - tests/net/wifi/ labels: - "area: Networking" - "area: Wi-Fi" tests: - net.wifi - sample.net.wifi - wifi.build.nan "Networking: gPTP": status: maintained maintainers: - jukkar collaborators: - yangbolu1991 files: - doc/services/connectivity/networking/api/gptp.rst - include/zephyr/net/gptp.h - samples/net/ethernet/gptp/ - subsys/net/l2/ethernet/gptp/ labels: - "area: Networking" tests: - sample.net.gptp Nuvoton NPCM Platforms: status: maintained maintainers: - maxdog988 files: - soc/nuvoton/npcm/ - boards/nuvoton/npcm*/ - dts/arm/nuvoton/ - drivers/*/*_npcm* - include/zephyr/dt-bindings/*/npcm_* labels: - "platform: Nuvoton NPCM" Nuvoton NPCX Platforms: status: maintained maintainers: - MulinChao - ChiHuaL collaborators: - TomChang19 - alvsun - keith-zephyr - fabiobaltieri files: - soc/nuvoton/npcx/ - boards/nuvoton/npcx*/ - boards/nuvoton/npck*/ - dts/arm/nuvoton/ - dts/bindings/*/*npcx* - drivers/*/*_npcx*.c labels: - "platform: Nuvoton NPCX" Nuvoton Numicro Numaker Platforms: status: maintained maintainers: - cyliangtw collaborators: - ssekar15 - ccli8 files: - soc/nuvoton/numaker/ - soc/nuvoton/numicro/ - boards/nuvoton/numaker*/ - dts/arm/nuvoton/m* - dts/bindings/*/*numicro* - dts/bindings/*/*numaker* - drivers/*/*_numicro* - drivers/*/*_numaker* labels: - "platform: Nuvoton Numicro Numaker" OSDP: status: maintained maintainers: - sidcha collaborators: - r2r0 files: - subsys/mgmt/osdp/ - include/zephyr/mgmt/osdp.h - samples/subsys/mgmt/osdp/ labels: - "area: OSDP" tests: - sample.mgmt.osdp OTP: status: odd fixes collaborators: - GseoC - pdgendt files: - doc/hardware/peripherals/otp/ - drivers/otp/ - dts/bindings/otp/ - include/zephyr/drivers/otp.h - tests/subsys/nvmem/api/otp.overlay labels: - "area: OTP" tests: - nvmem Octavo Systems Platforms: status: maintained maintainers: - fkokosinski - tgorochowik collaborators: - kgugala files: - boards/oct/ - soc/oct/ labels: - "platform: Octavo Systems" Open AMP: status: maintained maintainers: - iuliana-prodan collaborators: - uLipe - arnopo files: - subsys/ipc/open-amp/ - samples/subsys/ipc/openamp/ - samples/subsys/ipc/openamp_rsc_table/ - samples/subsys/ipc/rpmsg_service/ labels: - "area: Open AMP" tests: - sample.ipc.openamp - sample.ipc.rpmsg_service - sample.ipc.openamp_rs_table - sample.ipc OpenRISC Arch: status: maintained maintainers: - jhol files: - arch/openrisc/ - boards/qemu/or1k/ - drivers/timer/*openrisc* - include/zephyr/arch/openrisc/ - soc/qemu/or1k/ labels: - "area: OpenRISC" OpenTitan Platforms: status: maintained maintainers: - snematbakhsh files: - boards/lowrisc/opentitan_earlgrey/ - drivers/*/*opentitan* - dts/bindings/*/*opentitan* - dts/riscv/lowrisc/*opentitan* - soc/lowrisc/opentitan/ labels: - "platform: OpenTitan" description: >- OpenTitan boards, SOCs, dts files and related drivers. PHYTEC Platforms: status: maintained maintainers: - dnltz collaborators: - jonas-rem - pefech files: - boards/phytec/ labels: - "platform: PHYTEC" PMCI: status: maintained maintainers: - teburd - edersondisouza collaborators: - nashif - kehintel files: - subsys/pmci/ - samples/subsys/pmci/ - include/zephyr/pmci/ labels: - "area: PMCI" tests: - sample.pmci.mctp POSIX API layer: status: maintained maintainers: - cfriedt collaborators: - ycsin files: - include/zephyr/posix/ - subsys/portability/posix/ - tests/subsys/portability/posix/ - samples/subsys/portability/posix/ - tests/lib/fdtable/ - doc/services/portability/posix/ labels: - "area: POSIX" tests: - libraries.fdtable - portability.posix - sample.posix - portability.xsi - posix.threads_base Panasonic Platforms: status: maintained maintainers: - pideu-sj files: - boards/panasonic/ labels: - "platform: Panasonic" Peregrine Platforms: status: maintained maintainers: - nandojve files: - boards/peregrine/ - boards/shields/atmel_rf2xx/ - drivers/ieee802154/*rf2xx* labels: - "platform: Peregrine" Power management: status: maintained maintainers: - ceolin - bjarki-andreasen collaborators: - nashif - teburd - tmleman - JordanYates - ZhaoxiangJin - yongxu-wang15 - Holt-Sun files: - include/zephyr/pm/ - samples/subsys/pm/ - subsys/pm/ - tests/subsys/pm/ - doc/services/pm/ - drivers/power_domain/ - dts/bindings/power/ - include/zephyr/dt-bindings/power/ - tests/drivers/build_all/power_domain/ labels: - "area: Power Management" tests: - pm - drivers.power_domain.build - sample.power QNX Hypervisor Platforms: status: maintained maintainers: - soburi files: - boards/blackberry/qnxhv_vm/ - soc/blackberry/qnxhv_vm/ labels: - "platform: QNX Hypervisor" "Quicklogic Platform": status: odd fixes files: - soc/quicklogic/ - dts/arm/quicklogic/ labels: - "platform: Quicklogic" RISCV Platforms: status: maintained maintainers: - fkokosinski collaborators: - kgugala - tgorochowik - katsuster - mgielda - npitre - VynDragon - ycsin - maass-hamburg - lstnl - meijemac - AFOliveira files: - boards/enjoydigital/litex_vexriscv/ - boards/lowrisc/opentitan_earlgrey/ - boards/qemu/riscv*/ - boards/sifive/ - boards/sparkfun/red_v_things_plus/ - boards/starfive/ - dts/bindings/riscv/ - dts/riscv/ labels: - "platforms: RISCV" RISCV arch: status: maintained maintainers: - fkokosinski collaborators: - kgugala - tgorochowik - dcpleung - katsuster - mgielda - npitre - VynDragon - ycsin - maass-hamburg - lstnl - meijemac - AFOliveira files: - arch/riscv/ - cmake/compiler/*/target_riscv.cmake - doc/hardware/arch/risc-v.rst - drivers/interrupt_controller/Kconfig.riscv_* - drivers/interrupt_controller/intc_plic.c - drivers/interrupt_controller/intc_riscv_* - dts/bindings/interrupt-controller/riscv,* - dts/bindings/riscv/ - include/zephyr/arch/riscv/ - include/zephyr/drivers/interrupt_controller/riscv_* - samples/drivers/interrupt_controller/intc_riscv_aia*/ - tests/arch/riscv/ labels: - "area: RISCV" tests: - arch.riscv - arch.riscv64 - arch - kernel RTIO: status: maintained maintainers: - teburd collaborators: - yperess - ubieda files: - samples/subsys/rtio/ - include/zephyr/rtio/ - tests/subsys/rtio/ - subsys/rtio/ - doc/services/rtio/ labels: - "area: RTIO" tests: - rtio - sample.rtio RX arch: status: maintained maintainers: - duynguyenxa files: - arch/rx/ - include/zephyr/arch/rx/ - dts/rx/ - tests/arch/rx/ - include/zephyr/drivers/misc/renesas_rx_external_interrupt/ labels: - "area: RX" tests: - arch.rx - arch - kernel Random: status: maintained maintainers: - ceolin collaborators: - tomi-font files: - subsys/random/ - include/zephyr/random/ - tests/subsys/random/ labels: - "area: Random" tests: - crypto.rng - drivers.rng.random_psa_crypto.rng_common.rand32 Raspberry Pi Pico Platforms: status: maintained maintainers: - soburi collaborators: - threeeights - ajf58 - dsseng files: - boards/raspberrypi/rpi_pico*/ - boards/adafruit/kb2040/ - boards/adafruit/macropad_rp2040/ - boards/adafruit/qt_py_rp2040/ - boards/pimoroni/pico_plus2/ - boards/seeed/xiao_rp2040/ - boards/seeed/xiao_rp2350/ - boards/sparkfun/pro_micro_rp2040/ - boards/sparkfun/rp2040_mikrobus/ - boards/waveshare/rp2040_zero/ - boards/wiznet/w5500_evb_pico*/ - boards/wiznet/w55rp20_evb_pico*/ - boards/wiznet/w6100_evb_pico*/ - boards/wiznet/w6300_evb_pico*/ - dts/arm/raspberrypi/rpi_pico/ - dts/bindings/*/raspberrypi,pico* - dts/vendor/raspberrypi/ - dts/riscv/raspberrypi/ - drivers/*/*rpi_pico - drivers/*/*rpi_pico*/ - drivers/*/*rpi_pico*.c - soc/raspberrypi/ files-regex: - ^include/.*rpi[-_]pico.* labels: - "platform: Raspberry Pi Pico" Realtek Ameba Platforms: status: maintained maintainers: - zjian-zhang - Derek-RTK collaborators: - minyuan-xue files: - boards/realtek/rtl872*/ - drivers/*/*ameba* - soc/realtek/ameba/ - dts/arm/realtek/ameba*/ - dts/bindings/*/*ameba* labels: - "platform: Realtek Ameba" Realtek Bee Platforms: status: maintained maintainers: - ZhiyuanTang17 - YuzhuoLiuRTK files: - boards/realtek/rtl87x2g*/ - boards/realtek/rtl8752h*/ - drivers/*/*bee* - dts/arm/realtek/bee/ - dts/bindings/*/*bee* - soc/realtek/bee/ - tests/boards/realtek/ - modules/hal_realtek/bee/ labels: - "platform: Realtek Bee" tests: - boards.realtek.bee_osif Realtek EC Platforms: status: maintained maintainers: - JasonLin-RealTek collaborators: - elmo9999 - benson0715 - JhanBoChao-Realtek - Titan-Realtek files: - boards/realtek/rts5912*/ - drivers/*/*rts5912* - dts/bindings/*/*rts5912* - dts/arm/realtek/ec/ - soc/realtek/ec/ labels: - "platform: Realtek EC" Realtek Fingerprint Platforms: status: maintained maintainers: - RtkFP files: - boards/realtek/rts5817_maa_evb/ - drivers/*/*rts5817* - dts/bindings/*/*rts5817* - dts/arm/realtek/fingerprint/ - soc/realtek/fingerprint/ labels: - "platform: Realtek Fingerprint" Release: status: maintained meta: true maintainers: - henrikbrixandersen - teburd collaborators: - kartben - nashif files: - VERSION - SDK_VERSION - LICENSE - LICENSES/ - scripts/release/ - doc/releases/migration-guide-* - doc/releases/release-notes-* labels: - "Release" Renesas R-Car Platforms: status: maintained maintainers: - lorc collaborators: - xakep-amatop files: - boards/renesas/rcar_*/ - drivers/*/*rcar* - drivers/clock_control/*cpg_mssr* - drivers/pinctrl/renesas/rcar/ - dts/arm/renesas/rcar/ - dts/arm64/renesas/ - dts/bindings/*/*rcar* - soc/renesas/rcar/ labels: - "platform: Renesas R-Car" description: >- Renesas R-Car SOCs, dts files (Cortex-R and Cortex-A sides). Renesas boards based on R-Car SOCs (Cortex-R and Cortex-A sides). Renesas R-Car related drivers. Renesas RA Platforms: status: maintained maintainers: - soburi - KhiemNguyenT collaborators: - duynguyenxa - thaoluonguw - thenguyenyf - khoa-nguyen-18 files: - boards/arduino/uno_r4/ - boards/renesas/*ra*/ - drivers/**/*renesas_ra* - drivers/pinctrl/renesas/ra/ - dts/arm/renesas/ra/ - dts/bindings/*/*renesas,ra* - soc/renesas/ra/ - samples/boards/renesas/ - tests/boards/renesas/ - include/zephyr/drivers/misc/renesas_ra_external_interrupt/ - include/zephyr/drivers/misc/interconn/renesas_elc/ labels: - "platform: Renesas RA" description: >- Renesas RA SOCs, dts files, and related drivers. Boards based on Renesas RA SoCs. tests: - boards.renesas.elc.renesas_elc_api - sample.boards.renesas Renesas RX Platform: status: maintained maintainers: - duynguyenxa collaborators: - quytranpzz files: - boards/renesas/*rx*/ - drivers/*/*renesas_rx* - drivers/pinctrl/renesas/rx/ - dts/rx/renesas/ - dts/bindings/*/*renesas,rx* - soc/renesas/rx/ labels: - "platform: Renesas RX" description: >- Renesas RX SOCs, dts files, and related drivers. Renesas boards based on RX SoCs. Renesas RZ Platforms: status: maintained maintainers: - tgorochowik - binhnguyen2434 collaborators: - nhutnguyenkc - tiennguyenzg files: - boards/renesas/rz*/ - drivers/*/*rzt2m* - drivers/*/*renesas_rz* - drivers/pinctrl/renesas/rz/ - dts/arm/renesas/rz/ - dts/bindings/*/*rzt2m* - dts/bindings/*/*renesas,rz* - soc/renesas/rz/ labels: - "platforms: Renesas RZ" description: >- Renesas RZ SOCs, dts files, and related drivers. Renesas boards based on RZ SoCs. Renesas SmartBond Platforms: status: maintained maintainers: - ioannis-karachalios - ydamigos collaborators: - blauret files: - boards/renesas/da14*/ - drivers/*/*smartbond* - drivers/pinctrl/renesas/smartbond/ - dts/arm/renesas/smartbond/ - dts/bindings/*/renesas,smartbond* - soc/renesas/smartbond/ labels: - "platform: Renesas SmartBond" description: >- Renesas SmartBond SOCs, dts files, and related drivers. Renesas boards based on SmartBond SoCs. Retention: status: maintained maintainers: - nordicjm files: - dts/bindings/retention/ - include/zephyr/retention/ - subsys/retention/ - doc/services/storage/retention/ labels: - "area: Retention" Rockchip Platforms: status: odd fixes files: - dts/arm/rockchip/ - dts/arm64/rockchip/ - soc/rockchip/ labels: - "platform: Rockchip" SPARC arch: status: odd fixes collaborators: - tbr-tt files: - arch/sparc/ - include/zephyr/arch/sparc/ - dts/sparc/ - boards/qemu/leon3/ labels: - "area: SPARC" tests: - arch - kernel SPDX Tooling: status: maintained maintainers: - kartben collaborators: - pdgendt files: - scripts/pylib/zspdx/ - scripts/west_commands/spdx.py - tests/application_development/software_bill_of_materials/ labels: - "area: SPDX Tooling" tests: - buildsystem.sbom.spdx ST Sensors: status: maintained maintainers: - avisconti files: - drivers/sensor/st/ tests: - drivers.sensor STM32 Platforms: status: maintained maintainers: - erwango collaborators: - FRASTM - gautierg-st - GeorgeCGV - mathieuchopstm - djiatsaf-st - etienne-lms - juickar files: - boards/st/ - drivers/*/*stm32*.c - drivers/*/*stm32*.h - drivers/*/*/*stm32* - drivers/*/*stm32* - dts/arm/st/ - dts/bindings/*/*stm32* - soc/st/stm32/ - samples/boards/st/ files-exclude: - boards/st/*wb*/ - boards/st/stm32mp*/ - drivers/bluetooth/hci/*stm32*.c - drivers/clock_control/clock_stm32_ll_mp*.c - drivers/ieee802154/*stm32*.c - soc/st/stm32/stm32mp*/ - soc/st/stm32/stm32wb*/ labels: - "platform: STM32" description: >- STM32 SOCs, dts files and related drivers. ST MCU development boards. tests: - sample.boards.stm32 STM32 Platforms (MPU): status: maintained maintainers: - erwango - arnopo collaborators: - avolmat-st - etienne-lms - juickar files: - boards/st/stm32mp*/ - dts/arm/st/mp*/ - drivers/clock_control/clock_stm32_ll_mp*.c - include/zephyr/dt-bindings/clock/stm32mp*_clock.h - include/zephyr/dt-bindings/reset/stm32mp*_reset.h - soc/st/stm32/stm32mp*/ labels: - "platform: STM32" description: >- STM32MP1, STM32MP13 and STM32MP2 SOCs, dts files and development boards. STM32 Platforms (Wireless): status: maintained maintainers: - erwango collaborators: - asm5878 - HoZHel - mathieuchopstm - vtardy-st files: - boards/shields/x_nucleo_bnrg2a1/ - boards/shields/x_nucleo_idb05a1/ - boards/shields/x_nucleo_wb*/ - boards/st/*wb*/ - drivers/bluetooth/hci/*stm32*.c - drivers/bluetooth/hci/hci_spi_st.c - drivers/ieee802154/*stm32*.c - soc/st/stm32/stm32wb*/ labels: - "platform: STM32" description: >- STM32WB and STM32WBA SOCs, dts files and related drivers. STM32WB and STM32WBA development boards and ST bluetooth shields. Safety: status: maintained maintainers: - tobiaskaestner - parphane collaborators: - jkey-eng - anobli files: - doc/safety/ labels: - "area: Safety" Samples: status: maintained meta: true maintainers: - kartben collaborators: - nashif - JarmouniA files: - samples/sample_definition_and_criteria.rst - samples/ labels: - "area: Samples" Secure storage: status: maintained maintainers: - tomi-font files: - subsys/secure_storage/ - include/zephyr/psa/ - samples/psa/ - doc/services/storage/secure_storage/index.rst - tests/subsys/secure_storage/ labels: - "area: Secure storage" tests: - sample.psa - secure_storage.psa Security: status: maintained maintainers: - ceolin - d3zd3z collaborators: - tomi-font - valeriosetti files: - doc/security/ labels: - "area: Security" Seeed Studio Platforms: status: odd fixes files: - boards/seeed/ - boards/shields/seeed_*/ labels: - "platform: Seeed Studio" Sensor Subsystem: status: maintained maintainers: - lixuzha - yperess files: - dts/bindings/sensor/zephyr,sensing.yaml - dts/bindings/sensor/zephyr,sensing*.yaml - include/zephyr/sensing/ - doc/services/sensing/ - subsys/sensing/ - samples/subsys/sensing/ - tests/subsys/sensing/ labels: - "area: Sensor Subsystem" tests: - sample.sensing - sensing.api Sensry Platforms: status: maintained maintainers: - tswaehn files: - boards/sensry/ files-regex: - .*sy1xx.* labels: - "platform: sensry" Settings: status: odd fixes files: - include/zephyr/settings/ - subsys/settings/ - tests/subsys/settings/ - samples/subsys/settings/ - doc/services/storage/settings/ - tests/subsys/settings_commit_prio/ file-groups: - name: TF-M PSA backend collaborators: - dsseng - seankyer - tomi-font files: - subsys/settings/src/settings_tfm_psa* - tests/subsys/settings/functional/tfm_psa/ - tests/subsys/settings/tfm_psa/ - name: ZMS backend collaborators: - rghaddab files: - subsys/settings/src/settings_zms.c - subsys/settings/include/settings/settings_zms.h - tests/subsys/settings/zms/ - tests/subsys/settings/functional/zms/ - name: NVS backend collaborators: - Laczen - LingaoM files: - subsys/settings/src/settings_nvs.c - subsys/settings/include/settings/settings_nvs.h - tests/subsys/settings/nvs/ - tests/subsys/settings/functional/nvs/ labels: - "area: Settings" tests: - settings - sample.settings Shell: status: maintained maintainers: - jakub-uC collaborators: - carlescufi files: - include/zephyr/shell/ - samples/subsys/shell/ - subsys/shell/ - tests/subsys/shell/ - doc/services/shell/ labels: - "area: Shell" tests: - shell - sample.shell Shields: status: maintained maintainers: - kartben collaborators: - avisconti - jfischer-no - erwango files: - boards/shields/ - doc/hardware/porting/shields.rst - samples/shields/ labels: - "area: Shields" tests: - sample.shields SiFli SF32LB Platforms: status: maintained maintainers: - gmarull - HalfSweet collaborators: - cameled - ck-telecom files: - boards/sifli/ - drivers/*/*sf32lb* - dts/arm/sifli/ - dts/bindings/*/*sf32lb* - scripts/west_commands/runners/sftool.py - soc/sifli/ labels: - "platform: SF32LB" description: >- SiFli SF32LB SoCs, dts files, related drivers and boards. Silabs Platforms: status: maintained maintainers: - jhedberg - asmellby collaborators: - jerome-pouiller - Martinhoff-maker files: - soc/silabs/ - boards/silabs/ - dts/arm/silabs/ - dts/bindings/*/silabs* - drivers/*/*gecko* - drivers/*/*silabs* - drivers/*/*siwx91x* - drivers/*/*/*silabs* - drivers/*/*/*siwx91x* - tests/boards/silabs/ - snippets/*silabs*/ file-groups: - name: Silabs IEEE 802.15.4 collaborators: - db00lean files: - drivers/ieee802154/ labels: - "platform: Silabs" tests: - boards.silabs Silabs SiM3U Platforms: status: maintained maintainers: - rettichschnidi collaborators: - M1cha - asmellby - jerome-pouiller - jhedberg files: - boards/silabs/dev_kits/sim3u1xx_dk/ - drivers/*/*_si32* - drivers/*/Kconfig.si32 - dts/arm/silabs/sim3u* - dts/bindings/*/*silabs,si32* - include/zephyr/dt-bindings/pinctrl/*si32* - soc/silabs/silabs_sim3/ labels: - "platform: Silabs SiM3U" description: >- SiM3U SoCs, dts files, and related drivers. Boards based on SiM3U SoCs. Space Cubics Platforms: status: maintained maintainers: - yashi files: - boards/sc/ labels: - "platform: Space Cubics" description: >- Space Cubics on-board computers (OBCs). State machine framework: status: maintained maintainers: - vlad-kulikov collaborators: - sambhurst - keith-zephyr - glenn-andrews files: - doc/services/smf/ - include/zephyr/smf.h - lib/smf/ - tests/lib/smf/ - samples/subsys/smf/ labels: - "area: State Machine Framework" tests: - libraries.smf - sample.smf Stats: status: odd fixes files: - subsys/stats/ - include/zephyr/stats/stats.h - include/zephyr/stats/ labels: - "area: Stats" Storage: status: odd fixes files: - subsys/storage/ - include/zephyr/storage/ - tests/subsys/storage/ - doc/services/storage/ labels: - "area: Storage" tests: - storage Storage ZMS: status: maintained maintainers: - rghaddab files: - subsys/kvss/zms/ - include/zephyr/kvss/zms.h - samples/subsys/kvss/zms/ - tests/subsys/kvss/zms/ - doc/services/storage/zms/zms.rst tests: - keyvalstorage.zms - sample.zms Synopsys Platforms: status: maintained maintainers: - ruuddw - evgeniy-paltsev collaborators: - abrodkin files: - soc/snps/ - boards/snps/ - boards/qemu/arc/ - samples/boards/arc_secure_services/ - scripts/west_commands/runners/mdb.py - scripts/west_commands/tests/test_mdb.py - scripts/west_commands/runners/nsim.py - cmake/emu/nsim.cmake - drivers/serial/uart_hostlink.c - drivers/serial/Kconfig.hostlink labels: - "platform: Synopsys" tests: - sample.boards.arc_secure_services Sysbuild: status: maintained maintainers: - tejlmand collaborators: - nordicjm - "57300" files: - share/sysbuild/ - samples/sysbuild/ - doc/build/sysbuild/ labels: - "area: Sysbuild" tests: - sample.sysbuild TDK Sensors: status: maintained maintainers: - afontaine-invn - rbuisson-invn collaborators: - teburd - MaureenHelm - sriccardi-invn - gjabouley-invn files: - drivers/sensor/tdk/ tests: - drivers.sensor TI AM13 Platforms: status: maintained maintainers: - glneo collaborators: - s-m33r files: - boards/ti/*am13*/ - dts/arm/ti/am13*/ - soc/ti/am13*/ labels: - "platform: TI AM13" TI K3 Platforms: status: maintained maintainers: - glneo collaborators: - gramsay0 - dnltz - vaishnavachath - natto1784 - Kronosblaster - soumya-TI files: - boards/ti/*am2*/ - boards/ti/*am6*/ - drivers/*/*davinci* - drivers/*/*omap* - drivers/*/*ti_k3* - drivers/*/*tisci* - drivers/*/*secproxy* - dts/arm/ti/am6* - dts/arm/ti/j7* - dts/bindings/*/ti,k3* - dts/vendor/ti/ - dts/arm64/ti/ - soc/ti/k3/ labels: - "platform: TI K3" TI MSPM Platforms: status: maintained maintainers: - ssekar15 - glneo collaborators: - d-philpot - Aman-Lachhiramka-ti - Alex9360 - SanjayyyV - karthi012 - Girinandha-M - santhosh-c-c - soumya-TI files: - soc/ti/mspm/ - boards/ti/*mspm*/ - dts/arm/ti/mspm*/ - dts/bindings/*/*mspm0* - drivers/*/*_mspm0* - modules/Kconfig.mspm0 labels: - "platform: TI MSPM" TI SimpleLink Platforms: status: maintained maintainers: - vaishnavachath collaborators: - bogdanovs - jpanisbl - glneo files: - boards/ti/cc*/ - boards/ti/msp*/ - drivers/*/*cc13* - drivers/*/*cc23* - drivers/*/*cc25* - drivers/*/*cc26* - drivers/*/*cc32* - dts/arm/ti/cc* - dts/bindings/*/ti,cc* - soc/ti/simplelink/ - modules/Kconfig.simplelink labels: - "platform: TI SimpleLink" TI Stellaris Platforms: status: odd fixes files: - soc/ti/lm3s6965/ - dts/arm/ti/lm3s6965.dtsi labels: - "platform: TI Stellaris" TI Tiva C Platforms: status: maintained maintainers: - srisurya1 files: - soc/ti/tiva_c/ - boards/ti/tm4c123gxl/ - dts/arm/ti/tm4c* - dts/bindings/*/*tiva-c* - drivers/*/*tiva_c* - include/zephyr/dt-bindings/pinctrl/tiva-c* - modules/Kconfig.tiva_c labels: - "platform: TI Tiva C" Task Watchdog: status: maintained maintainers: - martinjaeger files: - include/zephyr/task_wdt/ - samples/subsys/task_wdt/ - subsys/task_wdt/ - doc/services/task_wdt/index.rst labels: - "area: Task Watchdog" tests: - sample.task_wdt Test Framework (Ztest): status: maintained maintainers: - nashif collaborators: - aaronemassey - jeremybettis - yperess - asemjonovs - Mattemagikern files: - subsys/testsuite/ - tests/ztest/ - tests/unit/util/ - tests/subsys/testsuite/ - samples/subsys/testsuite/ - doc/develop/test/ labels: - "area: Testsuite" tests: - testing - utilities.dec - multidut.basic - multidut.fixed_platform - multidut.other_application - sample.harness.shell - sample.pytest - sample.testing.ztest - sample.twister.pytest Testing: status: maintained maintainers: - PerMac - hakehuang collaborators: - nashif - nordic-piks files: [] description: >- This area is for testing activities on hardware and in emulators. It is not meant to be a catch-all for tests, but rather a place to identify collaboratorts and files related to testing activities that don't fit in other areas. Anyone involved with testing and filing/triaging issues who are not active in other areas are encouraged to be listed here as collaborators. Testing with Renode: # This area is to be converted to a subarea status: odd fixes collaborators: - PiotrZierhoffer - fkokosinski files: - cmake/emu/renode.cmake - soc/renode/ - boards/renode/ - boards/*/*/support/*.repl - boards/*/*/support/*.resc labels: - "area: Renode" Tests: status: maintained meta: true maintainers: - nashif files: - tests/ labels: - "area: Tests" "Toolchain ARC MWDT": status: maintained maintainers: - evgeniy-paltsev - abrodkin files: - cmake/*/arcmwdt/ - include/zephyr/toolchain/mwdt.h - include/zephyr/linker/linker-tool-mwdt.h - lib/libc/arcmwdt/* labels: - "area: Toolchains" "Toolchain IAR": status: maintained maintainers: - RobinKastberg collaborators: - bjorniuppsala - LoveKarlsson files: - cmake/*/iar/ - include/zephyr/toolchain/iar.h - include/zephyr/toolchain/iar/* - lib/libc/iar/* labels: - "area: Toolchains" "Toolchain Integration": status: maintained maintainers: - tejlmand collaborators: - stephanosio files: - cmake/bintools/ - cmake/compiler/ - cmake/linker/ - cmake/toolchain/ - include/zephyr/toolchain/ - include/zephyr/toolchain.h labels: - "area: Toolchains" "Toolchain arm compiler 6": status: maintained maintainers: - tejlmand files: - cmake/*/armclang/ - cmake/linker/armlink/ - include/zephyr/toolchain/armclang.h - lib/libc/armstdc/* labels: - "area: Toolchains" "Toolchain oneApi": status: maintained maintainers: - nashif files: - cmake/*/oneApi/ - cmake/compiler/icx/ labels: - "area: Toolchains" Tracing: status: maintained maintainers: - nashif collaborators: - teburd files: - subsys/tracing/ - scripts/tracing/ - include/zephyr/tracing/ - subsys/timing/ - samples/subsys/tracing/ - doc/services/tracing/ - tests/subsys/tracing/ labels: - "area: tracing" tests: - tracing - sample.tracing Trenz Electronic Platforms: status: maintained maintainers: - yashi files: - boards/trenz/ labels: - "platform: Trenz Electronic" description: >- Trenz Electronic development boards. Twister: status: maintained maintainers: - nashif collaborators: - PerMac - hakehuang - gchwier - KamilxPaszkiet - fundakol files: - scripts/twister - scripts/schemas/twister/ - scripts/pylib/twister/ - scripts/tests/twister/ - scripts/tests/twister_blackbox/ - scripts/pylib/pytest-twister-harness/ - doc/develop/twister/ - tests/test_config.yaml - scripts/utils/twister_to_list.py - tests/robot/common.robot - scripts/pylib/*-twister-harness/ labels: - "area: Twister" tests: - kernel.common - sample.pytest - sample.harness - sample.twister USB: status: maintained maintainers: - jfischer-no - tmon-nordic collaborators: - josuah - MarkWangChinese - roma-jam files: - drivers/usb/ - dts/bindings/usb/ - include/zephyr/dt-bindings/usb/ - include/zephyr/*/usb/ - include/zephyr/usb/ - samples/subsys/usb/ - subsys/usb/ - tests/subsys/usb/ - tests/drivers/build_all/usb/ - tests/drivers/usb/ - tests/drivers/udc/ - doc/services/connectivity/usb/ labels: - "area: USB" tests: - usb - drivers.usb - sample.usb - sample.usbd - sample.usbh.shell USB-C: status: maintained maintainers: - sambhurst - keith-zephyr collaborators: - ncadieux files: - drivers/usb_c/ - dts/bindings/usb-c/ - include/zephyr/dt-bindings/usb-c/ - include/zephyr/*/usb_c/ - include/zephyr/usb_c/ - samples/subsys/usb_c/ - subsys/usb/usb_c/ - doc/services/connectivity/usb/pd/ - doc/hardware/peripherals/usbc_vbus.rst - scripts/generate_usb_vif/ labels: - "area: USB-C" tests: - sample.usbc UUID: status: maintained maintainers: - sorru94 files: - lib/uuid/ - include/zephyr/sys/uuid.h - tests/lib/uuid/ - samples/subsys/uuid/ labels: - "area: UUID" tests: - libraries.uuid - sample.uuid Userspace: status: maintained maintainers: - dcpleung collaborators: - ceolin files: - include/zephyr/internal/syscall_handler.h - include/zephyr/arch/x86/*/syscall.h - include/zephyr/arch/syscall.h - include/zephyr/arch/*/syscall.h - include/zephyr/syscall.h - doc/kernel/usermode/kernelobjects.rst - include/zephyr/app_memory/ - include/zephyr/linker/app_smem*.ld - tests/kernel/mem_protect/ - samples/userspace/ - include/zephyr/syscall.h - kernel/userspace/ - scripts/build/gen_app_partitions.py - scripts/build/gen_kobject_list.py - scripts/build/gen_syscalls.py - scripts/build/process_gperf.py - scripts/build/gen_relocate_app.py - include/zephyr/sys/kobject.h - include/zephyr/sys/mem_manage.h - include/zephyr/kernel/mm.h - include/zephyr/kernel/internal/mm.h - include/zephyr/kernel/mm/demand_paging.h labels: - "area: Userspace" tests: - kernel.memory_protection - kernel - sample.helloworld - sample.kernel.memory_protection.shared_mem - sample.syscall_performances - sample.userspace.prod_consumer Utilities: status: maintained maintainers: - nashif collaborators: - andyross - dcpleung - peter-mitsis files: - include/zephyr/data/cobs.h - lib/utils/ - tests/unit/timeutil/ - tests/unit/time_units/ - tests/unit/rbtree/ - tests/unit/math_extras/ - tests/unit/crc/ - tests/unit/base64/ - tests/unit/math_extras/ - tests/unit/list/ - tests/unit/intmath/ - tests/unit/pot/ - tests/unit/hex/ - tests/unit/winstream/ - tests/lib/onoff/ - tests/lib/sys_util/ - tests/lib/sprintf/ - tests/lib/ringbuffer/ - tests/lib/notify/ - tests/lib/linear_range/ - tests/lib/cobs/ file-groups: - name: COBS collaborators: - pdgendt files: - include/zephyr/data/cobs.h - lib/utils/cobs.c - tests/lib/cobs/ labels: - "area: Utilities" tests: - utilities - libraries VFS: status: maintained maintainers: - de-nordic files: - subsys/fs/fat_fs.c - tests/subsys/fs/fat_fs_api/ description: >- VFS implementation labels: - "area: File System" tests: - filesystem Video Subsystem: status: maintained maintainers: - josuah - ngphibang collaborators: - loicpoulain - avolmat-st files: - include/zephyr/video/ - samples/subsys/video/ - subsys/video/ - tests/subsys/video/ labels: - "area: Video" tests: - video WCH Platforms: status: maintained maintainers: - BOJIT collaborators: - nzmichaelh - kholia - VynDragon files: - boards/wch/ - dts/riscv/wch/ - soc/wch/ - drivers/*/*wch* - dts/bindings/*/wch,* labels: - "platform: WinChipHead" West: status: maintained maintainers: - pdgendt collaborators: - mbolivar - carlescufi - marc-hb - sylvioalves files: - scripts/west-commands.yml - scripts/west_commands/ - doc/develop/west/ - scripts/pylib/build_helpers/domains.py labels: - "area: West" "West project: acpica": status: odd fixes files: - modules/acpica/ labels: - "area: ACPI" "West project: babblesim_base": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_channel_NtNcable": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_channel_multiatt": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_device_WLAN_actmod": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_device_burst_interferer": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_device_playback": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_libPhyComv1": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_modem_BLE_simple": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_modem_magic": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_2G4_phy_v1": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: babblesim_ext_libCryptov1": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: bsim": status: maintained maintainers: - aescolar files: [] labels: - "platform: nRF BSIM" "West project: chre": status: maintained maintainers: - yperess files: - samples/modules/chre/ - modules/Kconfig.chre labels: - "area: CHRE" tests: - sample.modules.chre "West project: cmsis": status: maintained maintainers: - stephanosio files: - modules/cmsis/ labels: - "area: CMSIS-Core" "West project: cmsis-dsp": status: maintained maintainers: - XenuIsWatching collaborators: - stephanosio files: - modules/cmsis-dsp/ labels: - "area: CMSIS-DSP" "West project: cmsis-nn": status: maintained maintainers: - XenuIsWatching collaborators: - stephanosio files: - modules/cmsis-nn/ labels: - "area: CMSIS-NN" "West project: cmsis_6": status: maintained maintainers: - wearyzen - ithinuel collaborators: - tomi-font files: - modules/cmsis_6/ labels: - "area: CMSIS_6" "West project: dhara": status: maintained maintainers: - tpambor files: - drivers/disk/ftl_dhara.c - modules/dhara/ labels: - "area: Disk Access" "West project: edtt": status: maintained maintainers: - aescolar collaborators: - wopu-ot - thoh-ot files: [] labels: - "area: Tests" "West project: fatfs": status: maintained maintainers: - de-nordic files: - modules/fatfs/ labels: - "area: Storage" "West project: hal_adi": status: maintained maintainers: - MaureenHelm collaborators: - ozersa - ttmut - yasinustunerg - petejohanson-adi files: [] labels: - "platform: ADI" "West project: hal_afbr": status: maintained maintainers: - ubieda - bperseghetti collaborators: - PetervdPerk-NXP files: - modules/hal_afbr/ labels: - "platform: Broadcom" "West project: hal_ambiq": status: maintained maintainers: - AlessandroLuo collaborators: - aaronyegx - RichardSWheatley files: - modules/hal_ambiq/ labels: - "platform: Ambiq" "West project: hal_atmel": status: maintained maintainers: - nandojve files: - modules/Kconfig.atmel labels: - "platform: Microchip SAM" "West project: hal_bouffalolab": status: maintained maintainers: - VynDragon collaborators: - josuah - will-tm files: - modules/hal_bouffalolab/ labels: - "platform: Bouffalo Lab" "West project: hal_cypress": status: maintained maintainers: - sreeramIfx collaborators: - nashif - mcatee-infineon files: - modules/Kconfig.cypress labels: - "platform: Infineon" "West project: hal_espressif": status: maintained maintainers: - sylvioalves collaborators: - LucasTambor - marekmatej - raffarost - tmedicci - wmrsouza files: - modules/Kconfig.esp32 labels: - "platform: ESP32" "West project: hal_ethos_u": status: maintained maintainers: - kristofer-jonsson-arm - wearyzen - ithinuel collaborators: - ccli8 - johan-alfven-arm files: - drivers/misc/ethos_u/ - modules/hal_ethos_u/ labels: - "platform: ARM" "West project: hal_gigadevice": status: maintained maintainers: - soburi files: - modules/hal_gigadevice/ labels: - "platform: GD32" "West project: hal_infineon": status: maintained maintainers: - sreeramIfx - teburd collaborators: - parthitce - talih0 - mcatee-infineon - billwatersiii - jsbatch - Peterson-Brett - lauracarlesso - MerinMGeorge - ifx-rmcs - stites-infineon files: - modules/Kconfig.infineon - modules/hal_infineon/ labels: - "platform: Infineon" "West project: hal_intel": status: maintained maintainers: - kwd-doodling collaborators: - likongintel files: - modules/Kconfig.intel labels: - "platform: Intel ISH" "West project: hal_microchip": status: maintained maintainers: - jvasanth1 - AzharMCHP - scottwcpg - nandojve - NhMchp collaborators: - VenkatKotakonda - albertofloyd files: - modules/Kconfig.microchip labels: - "platform: Microchip SAM" - "platform: Microchip MEC" "West project: hal_nordic": status: maintained maintainers: - anangl - nika-nordic - nordic-krch - carlescufi - hakonfam collaborators: - kl-cruz - magp-nordic - jaz1-nordic - mif1-nordic - adamkondraciuk - lstnl - meijemac - rlubos - "57300" - jonathannilsen - karstenkoenig - SebastianBoe - kyberdin - mstasiaknordic files: - modules/hal_nordic/ labels: - "platform: nRF" "West project: hal_nuvoton": status: maintained maintainers: - cyliangtw - ccli8 collaborators: - ssekar15 files: - modules/Kconfig.nuvoton labels: - "platform: Nuvoton" "West project: hal_nxp": status: maintained maintainers: - mmahadevan108 - zejiang0jason - axelnxp collaborators: - manuargue - PetervdPerk-NXP - bperseghetti - JiafeiPan - MaochenWang1 - Holt-Sun - lucien-nxp files: - modules/hal_nxp/ labels: - "platform: NXP" "West project: hal_openisa": status: odd fixes collaborators: - zejiang0jason files: - modules/Kconfig.vega labels: - "platform: openisa/RV32M1" "West project: hal_quicklogic": status: odd fixes collaborators: - fkokosinski files: [] labels: - "platform: Quicklogic" "West project: hal_realtek": status: maintained maintainers: - zjian-zhang - ZhiyuanTang17 collaborators: - Derek-RTK - YuzhuoLiuRTK - minyuan-xue files: [] labels: - "platform: Realtek" "West project: hal_renesas": status: maintained maintainers: - KhiemNguyenT - ioannis-karachalios collaborators: - blauret - andrzej-kaczmarek - ydamigos - soburi - duynguyenxa - thaoluonguw - binhnguyen2434 - nhutnguyenkc files: - modules/Kconfig.renesas labels: - "platform: Renesas" "West project: hal_rpi_pico": status: maintained maintainers: - soburi collaborators: - threeeights - ajf58 - dsseng files: - modules/hal_rpi_pico/ labels: - "platform: Raspberry Pi Pico" "West project: hal_sifli": status: maintained maintainers: - gmarull - HalfSweet collaborators: - cameled - ck-telecom files: - modules/hal_sifli/ labels: - "platform: SF32LB" "West project: hal_silabs": status: maintained maintainers: - jhedberg - asmellby collaborators: - jerome-pouiller - yonsch - rettichschnidi - Martinhoff-maker files: - modules/hal_silabs/ labels: - "platform: Silabs" "West project: hal_st": status: maintained maintainers: - avisconti collaborators: - erwango files: - modules/hal_st/Kconfig "West project: hal_stm32": status: maintained maintainers: - erwango collaborators: - FRASTM - gautierg-st - etienne-lms - mathieuchopstm - juickar - djiatsaf-st - asm5878 - HoZHel - vtardy-st files: - modules/Kconfig.stm32 labels: - "platform: STM32" "West project: hal_tdk": status: maintained maintainers: - afontaine-invn - rbuisson-invn - gjabouley-invn collaborators: - sriccardi-invn files: - modules/hal_tdk/Kconfig "West project: hal_telink": status: maintained maintainers: - andy-liu-telink files: - modules/Kconfig.telink labels: - "platform: Telink" "West project: hal_ti": status: maintained maintainers: - vaishnavachath - ssekar15 - d-philpot collaborators: - Aman-Lachhiramka-ti files: [] labels: - "platform: TI" "West project: hal_wch": status: maintained maintainers: - nzmichaelh - kholia - BOJIT collaborators: - VynDragon files: - modules/hal_wch/ "West project: hal_wurthelektronik": status: maintained maintainers: - mah-eiSmart - wm-eisos files: - modules/Kconfig.wurthelektronik "West project: hal_xtensa": status: maintained maintainers: - dcpleung collaborators: - andyross - nashif files: - modules/Kconfig.xtensa labels: - "area: Xtensa" "West project: hostap": status: maintained maintainers: - krish2718 - jukkar collaborators: - MaochenWang1 files: - modules/hostap/ labels: - "area: Wi-Fi" tests: - net.wifi "West project: liblc3": status: maintained maintainers: - MariuszSkamra collaborators: - thalley - asbjornsabo files: - modules/liblc3/ labels: - "area: Audio" "West project: libmctp": status: maintained maintainers: - teburd - edersondisouza collaborators: - nashif - dkalowsk files: [] labels: - "area: MCTP" "West project: libmetal": status: maintained maintainers: - arnopo - iuliana-prodan files: - modules/Kconfig.libmetal labels: - "area: AMP" "West project: libsbc": status: maintained maintainers: - MarkWangChinese files: - modules/libsbc/ - include/zephyr/bluetooth/sbc.h - subsys/bluetooth/lib/sbc.c labels: - "area: Audio" "West project: littlefs": status: odd fixes files: - modules/littlefs/ labels: - "area: Storage" "West project: lora-basics-modem": status: maintained maintainers: - JordanYates files: - modules/lora-basics-modem/ labels: - "area: LoRa" "West project: loramac-node": status: odd fixes files: - modules/loramac-node/ labels: - "area: LoRa" "West project: lvgl": status: maintained maintainers: - faxe1008 collaborators: - pdgendt - uLipe files: - modules/lvgl/ - tests/lib/gui/lvgl/ - include/zephyr/dt-bindings/lvgl/ - samples/modules/lvgl/ labels: - "area: LVGL" tests: - libraries.gui.lvgl - sample.modules.lvgl "West project: mbedtls": status: maintained maintainers: - d3zd3z - ceolin - valeriosetti - tomi-font collaborators: - ithinuel files: - modules/mbedtls/ - tests/crypto/psa/ - tests/crypto/secp256r1/ - tests/benchmarks/psa_crypto/ labels: - "area: Mbed TLS" tests: - benchmark.crypto.psa - secure_storage.psa - crypto.mbedtls_psa - crypto.secp256r1 - crypto.psa "West project: mcuboot": status: maintained maintainers: - d3zd3z - nordicjm collaborators: - de-nordic files: - modules/Kconfig.mcuboot - tests/boot/ files-exclude: - tests/boot/uefi/ labels: - "area: MCUBoot" tests: - boot.with_mcumgr - bootloader.mcuboot "West project: mipi-sys-t": status: odd fixes collaborators: - dcpleung files: - modules/Kconfig.syst labels: - "area: Tracing" "West project: mldsa-native": status: maintained maintainers: - ceolin - valeriosetti - tomi-font files: [] labels: - "area: TF-PSA-Crypto" "West project: nanopb": status: maintained maintainers: - pdgendt files: - doc/services/serialization/nanopb.rst - modules/nanopb/ - samples/modules/nanopb/ - tests/modules/nanopb/ labels: - "area: Serialization" tests: - libraries.nanopb.nanopb_tests - sample.modules.nanopb "West project: net-tools": status: maintained maintainers: - jukkar collaborators: - rlubos files: [] labels: - "area: Networking" "West project: nrf_hw_models": status: maintained maintainers: - aescolar collaborators: - rugeGerritsen files: [] labels: - "area: native port" "West project: nrf_wifi": status: maintained maintainers: - krish2718 - sachinthegreen collaborators: - udaynordic - rajb9 - srkanordic files: - modules/nrf_wifi/ labels: - "area: Wi-Fi" "West project: open-amp": status: maintained maintainers: - arnopo - iuliana-prodan collaborators: - uLipe files: - modules/Kconfig.open-amp labels: - "area: AMP" "West project: openthread": status: maintained maintainers: - rlubos collaborators: - pdgendt - kkasperczyk-no - edmont - Cristib05 files: - modules/openthread/ labels: - "area: OpenThread" "West project: percepio": status: maintained maintainers: - eriktamlin files: - modules/percepio/ labels: - "area: Tracing" "West project: picolibc": status: maintained maintainers: - keith-packard collaborators: - stephanosio files: - modules/Kconfig.picolibc labels: - "area: C Library" - "area: picolibc" "West project: psa-arch-tests": status: maintained maintainers: - d3zd3z - tomi-font collaborators: - Vge0rge - ithinuel - valeriosetti - JordanYates - tpambor files: [] labels: - "area: TF-M" "West project: reqmgmt": status: maintained maintainers: - tobiaskaestner - parphane collaborators: - nashif - kartben files: [] labels: - "area: ReqMgmt" "West project: segger": status: odd fixes collaborators: - nordic-krch files: - modules/segger/ labels: - "area: Debugging" "West project: tf-m-tests": status: maintained maintainers: - d3zd3z - tomi-font collaborators: - Vge0rge - ithinuel - valeriosetti - JordanYates - tpambor files: [] labels: - "area: TF-M" "West project: tf-psa-crypto": status: maintained maintainers: - ceolin - valeriosetti - tomi-font files: [] labels: - "area: TF-PSA-Crypto" "West project: tflite-micro": status: maintained maintainers: - XenuIsWatching collaborators: - laurenmurphyx64 files: - modules/tflite-micro/ - samples/modules/tflite-micro/ labels: - "area: Neural Networks" tests: - sample.drivers.tflm_ethosu - sample.drivers.tflm_ethosu_dedicated_sram - sample.drivers.tflm_ethosu_mps4_u85_pmu - sample.drivers.tflm_ethosu_sram_only - sample.tensorflow "West project: trusted-firmware-a": status: odd fixes collaborators: - wearyzen - ithinuel - ceolin files: - modules/trusted-firmware-a/ labels: - "area: TF-A" "West project: trusted-firmware-m": status: maintained maintainers: - d3zd3z - tomi-font collaborators: - Vge0rge - ithinuel - valeriosetti - JordanYates - tpambor files: - modules/trusted-firmware-m/ - samples/tfm_integration/ - doc/services/tfm/ - tests/modules/tf-m/ labels: - "area: TF-M" tests: - tfm - secure_storage.psa - sample.config_build - sample.psa_crypto - sample.tfm "West project: uoscore-uedhoc": status: maintained maintainers: - rlubos - StefanHri files: - modules/uoscore-uedhoc/ - tests/modules/uoscore/ labels: - "area: Networking" - "area: Crypto / RNG" tests: - libraries.uoscore.oscore_tests "West project: zcbor": status: maintained maintainers: - de-nordic files: - modules/zcbor/ labels: - "area: CBOR" "West project: zephyr-lang-rust": status: maintained maintainers: - d3zd3z files: [] labels: - "area: Rust" "West project: zephyr-xenlib": status: maintained maintainers: - firscity collaborators: - lorc - luca-fancellu - soburi files: [] labels: - "area: Xen Platform" Wiki: status: maintained maintainers: - kartben collaborators: - SusanRemm files: [] Wurth Elektronik Platforms: status: maintained maintainers: - mah-eiSmart - wm-eisos files: - boards/we/ - dts/arm/we/ labels: - "platform: WE" description: >- Wurth Elektronik radio modules, development boards, and SoCs. Xen Platform: status: maintained maintainers: - firscity collaborators: - lorc - luca-fancellu - soburi files: - include/zephyr/xen/ - drivers/xen/ - arch/arm64/core/xen/ - soc/xen/ - boards/xen/ - dts/bindings/xen/ - snippets/xen-dom0/ labels: - "area: Xen Platform" Xilinx Platforms: status: maintained maintainers: - michalsimek - kedareswararao collaborators: - henrikbrixandersen - ibirnbaum - neeliajay - venodela files: - boards/amd/ - drivers/*/*xilinx* - drivers/*/*xlnx* - drivers/*/*zynq* - dts/*/xilinx/ - dts/bindings/*/*xlnx* - include/zephyr/*/*/*xlnx* - soc/xlnx/ labels: - "platform: Xilinx" Xtensa arch: status: maintained maintainers: - dcpleung collaborators: - andyross - nashif - ceolin files: - arch/xtensa/ - include/zephyr/arch/xtensa/ - dts/xtensa/ - boards/qemu/xtensa/ - boards/cdns/xt-sim/ - soc/cdns/dc233c/ - soc/cdns/xtensa_sample_controller/ - tests/arch/xtensa/ - doc/hardware/arch/xtensa.rst labels: - "area: Xtensa" tests: - arch.xtensa - arch - kernel hawkBit: status: maintained maintainers: - maass-hamburg files: - subsys/mgmt/hawkbit/ - include/zephyr/mgmt/hawkbit/ - samples/subsys/mgmt/hawkbit/ labels: - "area: hawkBit" tests: - sample.net.hawkbit "mgmt: updatehub": status: maintained maintainers: - nandojve files: - subsys/mgmt/updatehub/ - include/zephyr/mgmt/updatehub.h - samples/subsys/mgmt/updatehub/ labels: - "area: updatehub" description: >- UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent tests: - sample.net.updatehub nRF BSIM: status: maintained maintainers: - aescolar files: - boards/native/nrf_bsim/ - tests/boards/nrf52_bsim/ - tests/bsim/ - doc/develop/test/bsim.rst - .github/workflows/bsim-tests* files-regex-exclude: - tests\/bsim\/.*\/.*\.([ch]|conf) - tests\/bsim\/.*\/(CMakeLists|Kconfig).* labels: - "platform: nRF BSIM" tests: - boards.nrf52_bsim - bluetooth.host - bluetooth.ll - bluetooth.tester_bsim nRF IronSide SE Platforms: status: maintained maintainers: - hakonfam collaborators: - "57300" - jonathannilsen - karstenkoenig - SebastianBoe - kyberdin files: - modules/hal_nordic/ironside/ - soc/nordic/common/uicr/ labels: - "platform: nRF IronSide SE" nRF Platforms: status: maintained maintainers: - anangl - nordic-krch - bjarki-andreasen collaborators: - jaz1-nordic - kl-cruz - magp-nordic - nika-nordic - lstnl - mstasiaknordic files: - boards/nordic/ - drivers/*/*nrf*.c - drivers/*/*nrf*/ - drivers/*/*nordic*/ - soc/nordic/ - samples/boards/nordic/ - dts/*/nordic/ - dts/bindings/*/nordic,* - include/zephyr/drivers/*/*nrf*.h - include/zephyr/drivers/*/*nrf*/ - include/zephyr/dt-bindings/*/nordic*.h - include/zephyr/dt-bindings/*/nrf*.h - tests/drivers/*/*nrf*/ - snippets/nordic*/ - tests/boards/nrf/ files-exclude: - drivers/wifi/nrf_wifi/ - dts/bindings/wifi/ file-groups: - name: nRF boards collaborators: - nordicjm files: - boards/nordic/ - dts/*/nordic/ labels: - "platform: nRF" tests: - boards.nrf - sample.drivers.spis.wakeup u-blox Platforms: status: maintained maintainers: - 3rang files: - boards/u-blox/ labels: - "platform: u-blox" x86 arch: status: maintained maintainers: - edersondisouza collaborators: - andyross - dcpleung - ceolin - laurenmurphyx64 - nashif files: - arch/x86/ - include/zephyr/arch/x86/ - tests/arch/x86/ - drivers/interrupt_controller/*intel* - drivers/interrupt_controller/*ioapic* - drivers/interrupt_controller/*loapic* - doc/hardware/arch/x86.rst labels: - "area: X86" tests: - arch.interrupt - arch.x86 - arch - kernel zbus: status: maintained maintainers: - rodrigopex files: - samples/subsys/zbus/ - include/zephyr/zbus/ - tests/subsys/zbus/ - subsys/zbus/ - doc/services/zbus/ labels: - "area: zbus" tests: - message_bus.zbus - sample.zbus # zephyr-keep-sorted-stop