1# This file contains information on who maintains what. It is parsed by 2# get_maintainer.py. 3# 4# File format 5# ########### 6# 7# "Area title" (the quotes are only needed for titles with special characters, 8# like colons): 9# status: 10# One of the following: 11# 12# * maintained: 13# The area has a Maintainer (approved by the TSC) who 14# looks after the area. 15# 16# * odd fixes: 17# The area gets odd fixes and may have collaborators. 18# 19# * obsolete: 20# Old code. Something being marked obsolete generally means it has 21# been replaced by something better that you should be using 22# instead. 23# 24# maintainers: 25# List of GitHub handles for the people who maintain the area. Usually, 26# there's only one maintainer. 27# 28# collaborators (not to be confused with the GitHub collaborator role): 29# Very involved contributors, who know the area well and contribute 30# significantly to it. 31# 32# labels: 33# List of GitHub labels to add to pull requests that modify the area. 34# 35# files: 36# List of paths and/or glob patterns giving the files in the area, 37# relative to the root directory. 38# 39# If a path or glob pattern ends in a '/', it matches all files within 40# the given directory or directories. Otherwise, an exact match is 41# required. 42# 43# Paths to directories should always have a trailing '/'. 44# 45# files-regex: 46# List of regular expressions applied to paths to determine if they 47# belong to the area. The regular expression may match anywhere within 48# the path, but can be anchored with ^ and $ as usual. 49# 50# Can be combined with a 'files' key. 51# 52# Note: Prefer plain 'files' patterns where possible. get_maintainer.py 53# will check that they match some file, but won't check regexes 54# (because it might be slow). 55# 56# files-exclude: 57# Like 'files', but any matching files will be excluded from the area. 58# 59# files-regex-exclude: 60# Like 'files-regex', but any matching files will be excluded from the 61# area. 62# 63# description: >- 64# Plain-English description. Describe what the system is about, from an 65# outsider's perspective. 66# 67# 68# All areas must have a 'files' and/or 'files-regex' key. The other keys are 69# optional. 70# 71# It is very advisable to have a `status` key in all entries. Exceptions to 72# this would be sub-areas which add extra fields (for ex. more `collaborators` 73# who work only in that sub-area) to other areas. 74# 75# 76# Workflow 77# ######## 78# 79# Ideally, any file in the tree will be covered by some area. 80# 81# When a GitHub pull request is sent, this happens: 82# 83# * A user mentioned in 'maintainers' is added as Assignee to 84# the pull request 85# 86# * Users mentioned in 'maintainers' and 'collaborators' are added as 87# reviewers to the pull request 88# 89# * The labels listed in 'labels' are automatically added to the pull 90# request 91# 92# * The bot posts this comment: 93# 94# This PR affects the following areas: 95# <area name>: 96# Status: ... 97# Maintainers: <list of maintainers> 98# Collaborators: <list of sub-maintainers> 99# 100# <area name>: 101# ... 102# 103# 104# Changes to MAINTAINERS.yml need to be approved as follows: 105# 106# * Changing the 'maintainers' for an area needs approval from the 107# Technical Steering Committee 108# 109# * Changing the 'collaborators' lines requires the maintainer and 110# collaborators of that area to agree (or vote on it) 111 112# Areas are sorted by name 113 114ACPI: 115 status: maintained 116 maintainers: 117 - najumon1980 118 files: 119 - lib/acpi/ 120 - include/zephyr/acpi/ 121 - tests/lib/acpi/ 122 - dts/bindings/acpi/ 123 - include/zephyr/dt-bindings/acpi/ 124 labels: 125 - "area: ACPI" 126 tests: 127 - acpi 128 129ARC arch: 130 status: maintained 131 maintainers: 132 - ruuddw 133 - evgeniy-paltsev 134 collaborators: 135 - abrodkin 136 - tagunil 137 files: 138 - arch/arc/ 139 - include/zephyr/arch/arc/ 140 - drivers/timer/*arcv2* 141 - drivers/interrupt_controller/*arcv2* 142 - tests/arch/arc/ 143 - dts/arc/ 144 - dts/bindings/arc/ 145 - doc/hardware/arch/arc-support-status.rst 146 labels: 147 - "area: ARC" 148 tests: 149 - arch.arc 150 151ARM arch: 152 status: maintained 153 maintainers: 154 - ithinuel 155 collaborators: 156 - microbuilder 157 - carlocaione 158 - galak 159 - MaureenHelm 160 - stephanosio 161 - bbolen 162 - wearyzen 163 files: 164 - arch/arm/ 165 - arch/arm/core/offsets/ 166 - include/zephyr/arch/arm/ 167 - tests/arch/arm/ 168 - doc/hardware/arch/arm_cortex_m.rst 169 - boards/qemu/cortex_m0/ 170 labels: 171 - "area: ARM" 172 tests: 173 - arch.arm 174 175ARM64 arch: 176 status: maintained 177 maintainers: 178 - carlocaione 179 collaborators: 180 - npitre 181 - povergoing 182 - sgrrzhf 183 files: 184 - arch/arm64/ 185 - include/zephyr/arch/arm64/ 186 - tests/arch/arm64/ 187 - dts/arm64/ 188 - boards/qemu/kvm_arm64/ 189 - boards/qemu/cortex_a53/ 190 labels: 191 - "area: ARM64" 192 tests: 193 - arch.arm64 194 195ARM Platforms: 196 status: maintained 197 maintainers: 198 - ithinuel 199 collaborators: 200 - wearyzen 201 files: 202 - boards/arm/mps*/ 203 - boards/arm/v2m_*/ 204 - boards/arm/fvp_base*/ 205 - soc/arm/mps*/ 206 - soc/arm/musca/ 207 - soc/arm/beetle/ 208 - soc/arm/designstart/ 209 - soc/arm/fvp_aemv8*/ 210 - dts/arm/armv*.dtsi 211 - dts/bindings/arm/arm*.yaml 212 - drivers/interrupt_controller/intc_gic* 213 labels: 214 - "platform: ARM" 215 216ASPEED Platforms: 217 status: odd fixes 218 files: 219 - soc/aspeed/ 220 - dts/arm/aspeed/ 221 - drivers/*/*_ast10x0.c 222 - drivers/*/Kconfig.aspeed 223 labels: 224 - "platform: ASPEED" 225 226ARM SiP SVC: 227 status: odd fixes 228 files: 229 - subsys/sip_svc/ 230 - tests/subsys/sip_svc/ 231 - include/zephyr/sip_svc/ 232 - include/zephyr/drivers/sip_svc/ 233 - drivers/sip_svc/ 234 labels: 235 - "area: ARM SiP SVC" 236 tests: 237 - sip_svc 238 239MIPS arch: 240 status: odd fixes 241 files: 242 - arch/mips/ 243 - include/zephyr/arch/mips/ 244 - boards/qemu/malta/ 245 labels: 246 - "area: MIPS" 247 tests: 248 - arch.mips 249 250Ambiq Platforms: 251 status: maintained 252 maintainers: 253 - AlessandroLuo 254 collaborators: 255 - aaronyegx 256 - RichardSWheatley 257 files: 258 - soc/ambiq/ 259 - boards/ambiq/apollo*/ 260 - dts/arm/ambiq/ 261 - dts/bindings/*/ambiq,* 262 - drivers/*/*ambiq* 263 - drivers/*/*/*ambiq* 264 - drivers/*/*/*apollo* 265 labels: 266 - "platform: Ambiq" 267 268BeagleBoard Platforms: 269 status: maintained 270 maintainers: 271 - jadonk 272 collaborators: 273 - ayush1325 274 - con-pax 275 - vaishnavachath 276 files: 277 - boards/beagle/ 278 labels: 279 - "platform: BeagleBoard" 280 281Benchmarks: 282 status: maintained 283 maintainers: 284 - peter-mitsis 285 collaborators: 286 - nashif 287 - dcpleung 288 files: 289 - tests/benchmarks/ 290 labels: 291 - "area: Benchmarks" 292 293Binary Descriptors: 294 status: maintained 295 maintainers: 296 - yonsch 297 files: 298 - subsys/bindesc/ 299 - include/zephyr/bindesc.h 300 - samples/subsys/bindesc/ 301 - scripts/west_commands/bindesc.py 302 - tests/subsys/bindesc/ 303 labels: 304 - "area: Binary Descriptors" 305 tests: 306 - bindesc 307 308Bluetooth HCI: 309 status: maintained 310 maintainers: 311 - jhedberg 312 - alwa-nordic 313 collaborators: 314 - hermabe 315 - Thalley 316 - sjanc 317 - theob-pro 318 - HoZHel 319 - cvinayak 320 files: 321 - include/zephyr/drivers/bluetooth/ 322 - include/zephyr/drivers/bluetooth.h 323 - drivers/bluetooth/ 324 - samples/bluetooth/hci_*/ 325 - tests/bsim/bluetooth/hci_uart/ 326 - dts/bindings/bluetooth/ 327 labels: 328 - "area: Bluetooth HCI" 329 - "area: Bluetooth" 330 tests: 331 - bluetooth 332 333Bluetooth Controller: 334 status: maintained 335 maintainers: 336 - cvinayak 337 collaborators: 338 - carlescufi 339 - thoh-ot 340 - kruithofa 341 - ppryga 342 - mtpr-ot 343 - wopu-ot 344 - erbr-ot 345 files: 346 - doc/connectivity/bluetooth/bluetooth-ctlr-arch.rst 347 - doc/connectivity/bluetooth/img/ctlr* 348 - doc/connectivity/bluetooth/api/controller.rst 349 - include/zephyr/bluetooth/controller.h 350 - subsys/bluetooth/common/ 351 - subsys/bluetooth/controller/ 352 - subsys/bluetooth/crypto/ 353 - tests/bluetooth/controller/ 354 - tests/bsim/bluetooth/ll/ 355 labels: 356 - "area: Bluetooth Controller" 357 - "area: Bluetooth" 358 tests: 359 - bluetooth.controller 360 361Bluetooth Host: 362 status: maintained 363 maintainers: 364 - jhedberg 365 - alwa-nordic 366 collaborators: 367 - hermabe 368 - rugeGerritsen 369 - sjanc 370 - Thalley 371 - theob-pro 372 - cvinayak 373 files: 374 - doc/connectivity/bluetooth/ 375 - include/zephyr/bluetooth/ 376 - samples/bluetooth/ 377 - subsys/bluetooth/common/ 378 - subsys/bluetooth/crypto/ 379 - subsys/bluetooth/host/ 380 - subsys/bluetooth/lib/ 381 - subsys/bluetooth/services/ 382 - subsys/bluetooth/CMakeLists.txt 383 - subsys/bluetooth/Kconfig* 384 - tests/bluetooth/ 385 - tests/bsim/bluetooth/ 386 files-exclude: 387 - subsys/bluetooth/host/classic/ 388 - include/zephyr/bluetooth/audio/ 389 - include/zephyr/bluetooth/classic/ 390 - include/zephyr/bluetooth/mesh/ 391 - include/zephyr/bluetooth/iso.h 392 - include/zephyr/bluetooth/controller.h 393 - include/zephyr/bluetooth/mesh.h 394 - doc/connectivity/bluetooth/bluetooth-ctlr-arch.rst 395 - doc/connectivity/bluetooth/autopts/ 396 - doc/connectivity/bluetooth/img/ctlr* 397 - doc/connectivity/bluetooth/api/audio/ 398 - doc/connectivity/bluetooth/api/mesh/ 399 - doc/connectivity/bluetooth/api/controller.rst 400 - doc/connectivity/bluetooth/shell/classic/a2dp.rst 401 - doc/connectivity/bluetooth/shell/host/iso.rst 402 - doc/connectivity/bluetooth/shell/audio/ 403 - samples/bluetooth/bap*/ 404 - samples/bluetooth/cap*/ 405 - samples/bluetooth/hap*/ 406 - samples/bluetooth/hci_*/ 407 - samples/bluetooth/pbp*/ 408 - samples/bluetooth/tmap*/ 409 - samples/bluetooth/iso_*/ 410 - samples/bluetooth/mesh*/ 411 - subsys/bluetooth/Kconfig.iso 412 - subsys/bluetooth/host/iso.c 413 - subsys/bluetooth/host/iso_internal.h 414 - subsys/bluetooth/host/shell/iso.c 415 - tests/bluetooth/audio/ 416 - tests/bluetooth/controller/ 417 - tests/bluetooth/mesh*/ 418 - tests/bluetooth/qualification/ 419 - tests/bluetooth/shell/audio.conf 420 - tests/bluetooth/shell/mesh.conf 421 - tests/bluetooth/tester/ 422 - tests/bsim/bluetooth/audio/ 423 - tests/bsim/bluetooth/audio_samples/ 424 - tests/bsim/bluetooth/hci_uart/ 425 - tests/bsim/bluetooth/ll/ 426 - tests/bsim/bluetooth/mesh/ 427 labels: 428 - "area: Bluetooth Host" 429 - "area: Bluetooth" 430 431Bluetooth Mesh: 432 status: maintained 433 maintainers: 434 - PavelVPV 435 collaborators: 436 - jhedberg 437 - LingaoM 438 - alxelax 439 - Andrewpini 440 - akredalen 441 - HaavardRei 442 - omkar3141 443 - KyraLengfeld 444 files: 445 - doc/connectivity/bluetooth/api/mesh/ 446 - include/zephyr/bluetooth/mesh/ 447 - include/zephyr/bluetooth/mesh.h 448 - samples/bluetooth/mesh*/ 449 - subsys/bluetooth/mesh/ 450 - tests/bluetooth/mesh*/ 451 - tests/bluetooth/shell/mesh.conf 452 - tests/bsim/bluetooth/mesh/ 453 labels: 454 - "area: Bluetooth Mesh" 455 - "area: Bluetooth" 456 tests: 457 - bluetooth.mesh 458 459Bluetooth Audio: 460 status: maintained 461 maintainers: 462 - Thalley 463 collaborators: 464 - jhedberg 465 - Casper-Bonde-Bose 466 - MariuszSkamra 467 - sjanc 468 - asbjornsabo 469 - fredrikdanebjer 470 - kruithofa 471 - larsgk 472 - pin-zephyr 473 - niym-ot 474 - jthm-ot 475 - babrsn 476 files: 477 - subsys/bluetooth/audio/ 478 - include/zephyr/bluetooth/audio/ 479 - tests/bluetooth/audio/ 480 - tests/bsim/bluetooth/audio/ 481 - tests/bsim/bluetooth/audio_samples/ 482 - tests/bluetooth/shell/audio.conf 483 - tests/bluetooth/tester/overlay-le-audio.conf 484 - tests/bluetooth/tester/src/audio/ 485 - doc/connectivity/bluetooth/api/audio/ 486 - doc/connectivity/bluetooth/shell/audio/ 487 - samples/bluetooth/bap*/ 488 - samples/bluetooth/cap*/ 489 - samples/bluetooth/hap*/ 490 - samples/bluetooth/pbp*/ 491 - samples/bluetooth/tmap*/ 492 labels: 493 - "area: Bluetooth Audio" 494 - "area: Bluetooth" 495 tests: 496 - bluetooth.audio 497 498Bluetooth Classic: 499 status: maintained 500 maintainers: 501 - lylezhu2012 502 collaborators: 503 - jhedberg 504 files: 505 - doc/connectivity/bluetooth/shell/classic/a2dp.rst 506 - subsys/bluetooth/common/ 507 - subsys/bluetooth/host/classic/ 508 - include/zephyr/bluetooth/classic/ 509 labels: 510 - "area: Bluetooth Classic" 511 - "area: Bluetooth" 512 tests: 513 - bluetooth 514 515Bluetooth ISO: 516 status: maintained 517 maintainers: 518 - Thalley 519 collaborators: 520 - jhedberg 521 - kruithofa 522 - rugeGerritsen 523 - cvinayak 524 files: 525 - include/zephyr/bluetooth/iso.h 526 - doc/connectivity/bluetooth/shell/host/iso.rst 527 - samples/bluetooth/iso_*/ 528 - subsys/bluetooth/Kconfig.iso 529 - subsys/bluetooth/host/iso.c 530 - subsys/bluetooth/host/iso_internal.h 531 - subsys/bluetooth/host/shell/iso.c 532 labels: 533 - "area: Bluetooth ISO" 534 - "area: Bluetooth" 535 tests: 536 - bluetooth 537 538Bluetooth Qualification: 539 status: maintained 540 maintainers: 541 - sjanc 542 collaborators: 543 - Thalley 544 - jhedberg 545 files: 546 - doc/connectivity/bluetooth/autopts/ 547 - tests/bluetooth/qualification/ 548 - tests/bluetooth/tester/ 549 labels: 550 - "area: Bluetooth Qualification" 551 - "area: Bluetooth" 552 tests: 553 - bluetooth 554 555Bootloaders: 556 status: odd fixes 557 files: 558 - tests/boot/ 559 labels: 560 - "area: Bootloader" 561 tests: 562 - bootloader 563 564Build system: 565 status: maintained 566 maintainers: 567 - tejlmand 568 collaborators: 569 - jeremybettis 570 - nashif 571 - nordicjm 572 - "57300" 573 files: 574 - cmake/ 575 - CMakeLists.txt 576 - scripts/zephyr_module.py 577 - share/ 578 - doc/build/ 579 - doc/develop/modules.rst 580 - scripts/build/ 581 - tests/cmake/ 582 - misc/empty_file.c 583 - misc/generated/ 584 - snippets/ 585 - modules/Kconfig.sysbuild 586 - scripts/list_boards.py 587 - scripts/list_hardware.py 588 - scripts/schemas/*-schema.yml 589 labels: 590 - "area: Build System" 591 tests: 592 - buildsystem 593 594Board/SoC configuration: 595 status: maintained 596 maintainers: 597 - tejlmand 598 collaborators: 599 - galak 600 - nashif 601 - nordicjm 602 - "57300" 603 files: 604 - soc/Kconfig* 605 - boards/Kconfig* 606 labels: 607 - "area: Board/SoC configuration" 608 609"C++": 610 status: maintained 611 maintainers: 612 - stephanosio 613 collaborators: 614 - alexanderwachter 615 - cfriedt 616 files: 617 - lib/cpp/ 618 - tests/lib/cpp/ 619 - samples/cpp/ 620 labels: 621 - "area: C++" 622 tests: 623 - cpp 624 625Cache: 626 status: maintained 627 maintainers: 628 - carlocaione 629 collaborators: 630 - nashif 631 files: 632 - include/zephyr/drivers/cache.h 633 - include/zephyr/cache.h 634 - doc/hardware/cache/index.rst 635 - drivers/cache/ 636 - tests/kernel/cache/ 637 labels: 638 - "area: Cache" 639 tests: 640 - kernel.cache 641 642C library: 643 status: maintained 644 maintainers: 645 - stephanosio 646 collaborators: 647 - aescolar 648 - nashif 649 - keith-packard 650 - cfriedt 651 files: 652 - lib/libc/ 653 - tests/lib/c_lib/ 654 - tests/lib/newlib/ 655 labels: 656 - "area: C Library" 657 tests: 658 - libraries.libc 659 660CMSIS API layer: 661 status: odd fixes 662 collaborators: 663 - nashif 664 files: 665 - subsys/portability/ 666 - include/zephyr/portability/cmsis* 667 - samples/subsys/portability/cmsis_rtos_v*/ 668 - tests/subsys/portability/cmsis_rtos_v*/ 669 - doc/services/portability/cmsis* 670 labels: 671 - "area: CMSIS API Layer" 672 - "area: Portability" 673 tests: 674 - portability.cmsis_rtos_v1 675 - portability.cmsis_rtos_v2 676 677DAP: 678 status: maintained 679 maintainers: 680 - jfischer-no 681 collaborators: 682 - maxd-nordic 683 files: 684 - include/zephyr/drivers/swdp.h 685 - drivers/dp/ 686 - subsys/dap/ 687 - samples/subsys/dap/ 688 description: >- 689 Debug Access Port controller 690 labels: 691 - "area: dap" 692 693DSP subsystem: 694 status: maintained 695 maintainers: 696 - stephanosio 697 - yperess 698 files: 699 - subsys/dsp/ 700 - tests/subsys/dsp/ 701 - include/zephyr/dsp/dsp.h 702 - include/zephyr/dsp/types.h 703 - include/zephyr/dsp/ 704 - doc/services/dsp/ 705 labels: 706 - "area: DSP" 707 tests: 708 - zdsp 709 710CMSIS-DSP integration: 711 status: maintained 712 maintainers: 713 - stephanosio 714 collaborators: 715 - galak 716 - XenuIsWatching 717 files: 718 - modules/cmsis-dsp/ 719 - tests/benchmarks/cmsis_dsp/ 720 - tests/lib/cmsis_dsp/ 721 labels: 722 - "area: CMSIS-DSP" 723 tests: 724 - libraries.cmsis_dsp 725 726CMSIS-NN integration: 727 status: maintained 728 maintainers: 729 - JordanYates 730 collaborators: 731 - stephanosio 732 - XenuIsWatching 733 files: 734 - modules/cmsis-nn/ 735 - tests/lib/cmsis_nn/ 736 labels: 737 - "area: CMSIS-NN" 738 tests: 739 - libraries.cmsis_nn 740 741Coding Guidelines: 742 status: maintained 743 maintainers: 744 - keith-zephyr 745 collaborators: 746 - nashif 747 - carlescufi 748 - jfischer-no 749 - simhein 750 files: 751 - .checkpatch.conf 752 - .clang-format 753 - .editorconfig 754 - .gitlint 755 - .yamllint 756 - doc/contribute/guidelines.rst 757 - doc/contribute/coding_guidelines/ 758 - scripts/checkpatch.pl 759 - scripts/checkpatch/ 760 - scripts/ci/check_compliance.py 761 - scripts/ci/guideline_check.py 762 - scripts/ci/pylintrc 763 - scripts/coccicheck 764 - scripts/coccinelle/ 765 - scripts/gitlint/ 766 - scripts/pylint/ 767 - scripts/spelling.txt 768 labels: 769 - "area: Coding Guidelines" 770 771Common Architecture Interface: 772 status: maintained 773 maintainers: 774 - dcpleung 775 - nashif 776 files: 777 - arch/Kconfig 778 - include/zephyr/arch/ 779 - arch/common/ 780 - include/zephyr/arch/common/ 781 - tests/arch/common/ 782 - doc/hardware/porting/arch.rst 783 labels: 784 - "area: Architectures" 785 tests: 786 - arch 787 788Console: 789 status: odd fixes 790 files: 791 - include/zephyr/console/ 792 - subsys/console/ 793 labels: 794 - "area: Console" 795 tests: 796 - sample.console 797 798Debug: 799 status: maintained 800 maintainers: 801 - nashif 802 collaborators: 803 - dcpleung 804 - mrkhldn 805 files: 806 - include/zephyr/debug/ 807 - subsys/debug/ 808 - tests/subsys/debug/ 809 - scripts/coredump/ 810 - samples/subsys/debug/ 811 - doc/services/debugging/ 812 labels: 813 - "area: Debugging" 814 tests: 815 - debug 816 817"Debug: Profiling: Perf": 818 status: odd fixes 819 files: 820 - doc/services/profiling/perf.rst 821 - samples/subsys/profiling/perf/ 822 - scripts/profiling/stackcollapse.py 823 - subsys/profiling/perf/ 824 labels: 825 - "area: Profiling / Perf" 826 tests: 827 - debug.profiling.perf 828 829"Debug: Symtab": 830 status: maintained 831 maintainers: 832 - ycsin 833 files: 834 - include/zephyr/debug/symtab.h 835 - subsys/debug/symtab/ 836 - tests/subsys/debug/symtab/ 837 - scripts/build/gen_symtab.py 838 labels: 839 - "area: Symtab" 840 tests: 841 - debug.symtab 842 843Demand Paging: 844 status: maintained 845 maintainers: 846 - dcpleung 847 collaborators: 848 - ceolin 849 - peter-mitsis 850 - nashif 851 files: 852 - subsys/demand_paging/ 853 - tests/kernel/mem_protect/demand_paging/ 854 tests: 855 - kernel.demand_paging 856 857Device Driver Model: 858 status: maintained 859 maintainers: 860 - gmarull 861 - tbursztyka 862 collaborators: 863 - dcpleung 864 - nashif 865 files: 866 - include/zephyr/device.h 867 - kernel/device.c 868 - include/zephyr/init.h 869 - tests/kernel/device/ 870 - doc/kernel/drivers/ 871 - tests/misc/check_init_priorities/ 872 labels: 873 - "area: Device Model" 874 tests: 875 - kernel.device 876 - init 877 878DFU: 879 status: maintained 880 maintainers: 881 - de-nordic 882 - nordicjm 883 files: 884 - include/zephyr/dfu/ 885 - subsys/dfu/ 886 - tests/subsys/dfu/ 887 labels: 888 - "area: DFU" 889 tests: 890 - dfu 891 892Devicetree: 893 status: odd fixes 894 collaborators: 895 - decsny 896 - galak 897 - rruuaanng 898 files-regex: 899 - ^dts/bindings/.*zephyr.* 900 - ^dts/bindings/[^,]+$ 901 files: 902 - scripts/dts/ 903 - dts/common/ 904 - tests/lib/devicetree/ 905 - doc/build/dts/ 906 - include/zephyr/devicetree/ 907 - scripts/kconfig/kconfigfunctions.py 908 - doc/build/kconfig/preprocessor-functions.rst 909 - include/zephyr/devicetree.h 910 - include/zephyr/dt-bindings/dt-util.h 911 - dts/binding-template.yaml 912 - dts/bindings/base/ 913 files-exclude: 914 - dts/common/nordic/ 915 labels: 916 - "area: Devicetree" 917 tests: 918 - libraries.devicetree 919 920Disk: 921 status: maintained 922 maintainers: 923 - danieldegrasse 924 collaborators: 925 - jfischer-no 926 - decsny 927 files: 928 - include/zephyr/storage/disk_access.h 929 - include/zephyr/drivers/disk.h 930 - drivers/disk/ 931 - subsys/disk/ 932 - subsys/sd/ 933 - tests/subsys/sd/ 934 - tests/drivers/disk/ 935 - tests/drivers/build_all/disk/ 936 - include/zephyr/sd/ 937 - dts/bindings/sd/ 938 - dts/bindings/mmc/ 939 - dts/bindings/disk/ 940 labels: 941 - "area: Disk Access" 942 tests: 943 - drivers.disk 944 945Display drivers: 946 status: odd fixes 947 collaborators: 948 - jfischer-no 949 - danieldegrasse 950 files: 951 - drivers/display/ 952 - dts/bindings/display/ 953 - include/zephyr/dt-bindings/display/ 954 - include/zephyr/drivers/display.h 955 - include/zephyr/display/ 956 - include/zephyr/drivers/display.h 957 - subsys/fb/ 958 - samples/subsys/display/ 959 - tests/subsys/display/ 960 - doc/hardware/peripherals/display/ 961 - tests/drivers/*/display/ 962 labels: 963 - "area: Display" 964 tests: 965 - display.cfb 966 - drivers.display 967 968Documentation: 969 status: maintained 970 maintainers: 971 - kartben 972 - carlescufi 973 collaborators: 974 - nashif 975 files: 976 - CODE_OF_CONDUCT.md 977 - CONTRIBUTING.rst 978 - doc/glossary.rst 979 - doc/contribute/ 980 - doc/develop/ 981 - doc/introduction/ 982 - doc/project/ 983 - doc/releases/ 984 - doc/security/ 985 - doc/safety/ 986 - README.rst 987 - doc/substitutions.txt 988 - doc/images/Zephyr-Kite-in-tree.png 989 - doc/index-tex.rst 990 - doc/index.rst 991 - doc/kconfig.rst 992 - doc/templates/sample.tmpl 993 - doc/templates/board.tmpl 994 - boards/index.rst 995 files-exclude: 996 - doc/releases/migration-guide-* 997 - doc/releases/release-notes-* 998 - doc/develop/test/ 999 labels: 1000 - "area: Documentation" 1001 1002Documentation Infrastructure: 1003 status: maintained 1004 maintainers: 1005 - gmarull 1006 - kartben 1007 collaborators: 1008 - carlescufi 1009 - nashif 1010 files: 1011 - doc/_*/ 1012 - doc/CMakeLists.txt 1013 - doc/conf.py 1014 - doc/Makefile 1015 - doc/zephyr.doxyfile.in 1016 labels: 1017 - "area: Documentation Infrastructure" 1018 1019Release Notes: 1020 status: maintained 1021 maintainers: 1022 - fabiobaltieri 1023 - kartben 1024 collaborators: 1025 - kartben 1026 files: 1027 - doc/releases/migration-guide-* 1028 - doc/releases/release-notes-* 1029 labels: 1030 - "Release Notes" 1031 1032"Drivers: ADC": 1033 status: maintained 1034 maintainers: 1035 - anangl 1036 files: 1037 - drivers/adc/ 1038 - include/zephyr/drivers/adc.h 1039 - tests/drivers/adc/ 1040 - samples/drivers/adc/ 1041 - include/zephyr/drivers/adc/ 1042 - doc/hardware/peripherals/adc.rst 1043 - tests/drivers/build_all/adc/ 1044 - include/zephyr/dt-bindings/adc/ 1045 - dts/bindings/adc/ 1046 labels: 1047 - "area: ADC" 1048 tests: 1049 - drivers.adc 1050 1051"Drivers: Audio": 1052 status: odd fixes 1053 collaborators: 1054 - lyakh 1055 - lgirdwood 1056 - kv2019i 1057 files: 1058 - drivers/audio/ 1059 - include/zephyr/audio/ 1060 - doc/hardware/peripherals/audio/ 1061 labels: 1062 - "area: Audio" 1063 1064"Drivers: bbram": 1065 status: maintained 1066 maintainers: 1067 - yperess 1068 files: 1069 - tests/drivers/bbram/ 1070 - tests/drivers/build_all/bbram/ 1071 - drivers/bbram/ 1072 - include/zephyr/drivers/bbram.h 1073 - doc/hardware/peripherals/bbram.rst 1074 labels: 1075 - "area: Battery Backed RAM (bbram)" 1076 tests: 1077 - drivers.bbram 1078 1079"Drivers: Aux display": 1080 status: maintained 1081 maintainers: 1082 - thedjnK 1083 collaborators: 1084 - xingrz 1085 files: 1086 - include/zephyr/drivers/auxdisplay.h 1087 - drivers/auxdisplay/* 1088 - dts/bindings/auxdisplay/* 1089 - doc/hardware/peripherals/auxdisplay.rst 1090 labels: 1091 - "area: Aux display" 1092 tests: 1093 - sample.drivers.auxdisplay 1094 1095"Drivers: CAN": 1096 status: maintained 1097 maintainers: 1098 - henrikbrixandersen 1099 collaborators: 1100 - alexanderwachter 1101 - martinjaeger 1102 - str4t0m 1103 files: 1104 - boards/shields/mcp2515/ 1105 - boards/shields/tcan4550evm/ 1106 - doc/connectivity/canbus/ 1107 - doc/hardware/peripherals/can/ 1108 - drivers/can/ 1109 - drivers/net/canbus.c 1110 - dts/bindings/can/ 1111 - dts/bindings/phy/can-transceiver* 1112 - include/zephyr/canbus/ 1113 - include/zephyr/devicetree/can.h 1114 - include/zephyr/drivers/can.h 1115 - include/zephyr/drivers/can/ 1116 - include/zephyr/net/canbus.h 1117 - include/zephyr/net/socketcan*.h 1118 - samples/drivers/can/ 1119 - samples/modules/canopennode/ 1120 - samples/net/sockets/can/ 1121 - samples/subsys/canbus/ 1122 - scripts/west_commands/runners/canopen_program.py 1123 - subsys/canbus/ 1124 - subsys/net/l2/canbus/ 1125 - tests/drivers/build_all/can/ 1126 - tests/drivers/can/ 1127 - tests/net/socket/can/ 1128 - tests/subsys/canbus/ 1129 labels: 1130 - "area: CAN" 1131 tests: 1132 - drivers.can 1133 - canbus 1134 1135"Drivers: Charger": 1136 status: maintained 1137 maintainers: 1138 - rriveramcrus 1139 collaborators: 1140 - RobertZ2011 1141 files: 1142 - drivers/charger/ 1143 - dts/bindings/charger/ 1144 - include/zephyr/drivers/charger.h 1145 - tests/drivers/charger/ 1146 - doc/hardware/peripherals/charger.rst 1147 - tests/drivers/build_all/charger/ 1148 - samples/drivers/charger/ 1149 labels: 1150 - "area: Charger" 1151 tests: 1152 - drivers.charger 1153 1154"Drivers: Clock control": 1155 status: maintained 1156 maintainers: 1157 - nordic-krch 1158 files: 1159 - drivers/clock_control/ 1160 - dts/bindings/clock/ 1161 - include/zephyr/dt-bindings/clock/ 1162 - include/zephyr/drivers/clock_control.h 1163 - include/zephyr/dt-bindings/clock/ 1164 - tests/drivers/clock_control/ 1165 - include/zephyr/drivers/clock_control/ 1166 - doc/hardware/peripherals/clock_control.rst 1167 labels: 1168 - "area: Clock control" 1169 tests: 1170 - drivers.clock 1171 1172"Drivers: Comparator": 1173 status: maintained 1174 maintainers: 1175 - bjarki-andreasen 1176 files: 1177 - drivers/comparator/ 1178 - dts/bindings/comparator/ 1179 - include/zephyr/drivers/comparator.h 1180 - include/zephyr/drivers/comparator/ 1181 - tests/drivers/build_all/comparator/ 1182 - tests/drivers/comparator/ 1183 - doc/hardware/peripherals/comparator.rst 1184 labels: 1185 - "area: Comparator" 1186 tests: 1187 - drivers.comparator 1188 1189"Drivers: Console": 1190 status: odd fixes 1191 files: 1192 - drivers/console/ 1193 - include/zephyr/drivers/console/ 1194 - tests/drivers/console/ 1195 - samples/subsys/console/ 1196 labels: 1197 - "area: Console" 1198 tests: 1199 - drivers.console 1200 1201"Drivers: Coredump": 1202 status: maintained 1203 maintainers: 1204 - mrkhldn 1205 files: 1206 - drivers/coredump/ 1207 - dts/bindings/coredump/ 1208 - include/zephyr/drivers/coredump.h 1209 - tests/drivers/coredump/ 1210 - doc/hardware/peripherals/coredump.rst 1211 labels: 1212 - "area: Coredump" 1213 tests: 1214 - debug.codedump 1215 1216"Drivers: Counter": 1217 status: maintained 1218 maintainers: 1219 - nordic-krch 1220 files: 1221 - drivers/counter/ 1222 - include/zephyr/drivers/counter.h 1223 - tests/drivers/counter/ 1224 - doc/hardware/peripherals/counter.rst 1225 - samples/drivers/counter/ 1226 - tests/drivers/build_all/counter/ 1227 labels: 1228 - "area: Counter" 1229 tests: 1230 - drivers.counter 1231 1232"Drivers: Crypto": 1233 status: maintained 1234 maintainers: 1235 - ceolin 1236 files: 1237 - drivers/crypto/ 1238 - dts/bindings/crypto/ 1239 - include/zephyr/crypto/ 1240 - samples/drivers/crypto/ 1241 - tests/crypto/ 1242 - doc/services/crypto/ 1243 - tests/drivers/build_all/crypto/ 1244 labels: 1245 - "area: Crypto / RNG" 1246 tests: 1247 - crypto 1248 1249"Drivers: DAC": 1250 status: maintained 1251 maintainers: 1252 - martinjaeger 1253 files: 1254 - drivers/dac/ 1255 - include/zephyr/drivers/dac.h 1256 - dts/bindings/dac/ 1257 - include/zephyr/dt-bindings/dac/ 1258 - tests/drivers/dac/ 1259 - samples/drivers/dac/ 1260 - doc/hardware/peripherals/dac.rst 1261 - tests/drivers/build_all/dac/ 1262 labels: 1263 - "area: DAC" 1264 tests: 1265 - drivers.dac 1266 1267"Drivers: DAI": 1268 status: maintained 1269 maintainers: 1270 - kv2019i 1271 - LaurentiuM1234 1272 collaborators: 1273 - lgirdwood 1274 - juimonen 1275 - iuliana-prodan 1276 - dbaluta 1277 files: 1278 - drivers/dai/ 1279 - doc/hardware/peripherals/audio/dai.rst 1280 - include/zephyr/drivers/dai.h 1281 - include/zephyr/dt-bindings/dai/ 1282 - dts/bindings/dai/ 1283 labels: 1284 - "area: DAI" 1285 1286"Drivers: Devmux": 1287 status: maintained 1288 maintainers: 1289 - cfriedt 1290 files: 1291 - drivers/misc/devmux/ 1292 - include/zephyr/drivers/misc/devmux/ 1293 - tests/drivers/console_switching/ 1294 labels: 1295 - "area: Devmux" 1296 tests: 1297 - drivers.devmux 1298 1299"Drivers: DMA": 1300 status: maintained 1301 maintainers: 1302 - teburd 1303 files: 1304 - drivers/dma/ 1305 - tests/drivers/dma/ 1306 - include/zephyr/drivers/dma/ 1307 - dts/bindings/dma/ 1308 - include/zephyr/dt-bindings/dma/ 1309 - doc/hardware/peripherals/dma.rst 1310 - include/zephyr/drivers/dma.h 1311 - include/zephyr/dt-bindings/dma/ 1312 labels: 1313 - "area: DMA" 1314 tests: 1315 - drivers.dma 1316 1317"Drivers: EDAC": 1318 status: maintained 1319 maintainers: 1320 - finikorg 1321 files: 1322 - drivers/edac/ 1323 - dts/bindings/edac/ 1324 - include/zephyr/drivers/edac.h 1325 - samples/subsys/edac/ 1326 - tests/subsys/edac/ 1327 - doc/hardware/peripherals/edac/ 1328 labels: 1329 - "area: EDAC" 1330 tests: 1331 - edac 1332 1333"Drivers: EEPROM": 1334 status: maintained 1335 maintainers: 1336 - henrikbrixandersen 1337 files: 1338 - drivers/eeprom/ 1339 - include/zephyr/drivers/eeprom/eeprom_fake.h 1340 - dts/bindings/mtd/*eeprom* 1341 - include/zephyr/drivers/eeprom.h 1342 - samples/drivers/eeprom/ 1343 - tests/drivers/eeprom/ 1344 - tests/drivers/*/eeprom/ 1345 - doc/hardware/peripherals/eeprom/ 1346 labels: 1347 - "area: EEPROM" 1348 tests: 1349 - drivers.eeprom 1350 1351"Drivers: Entropy": 1352 status: maintained 1353 maintainers: 1354 - ceolin 1355 collaborators: 1356 - tomi-font 1357 files: 1358 - drivers/entropy/ 1359 - include/zephyr/drivers/entropy.h 1360 - tests/drivers/entropy/ 1361 - doc/hardware/peripherals/entropy.rst 1362 labels: 1363 - "area: Crypto / RNG" 1364 tests: 1365 - drivers.entropy 1366 1367"Drivers: ESPI": 1368 status: maintained 1369 maintainers: 1370 - albertofloyd 1371 collaborators: 1372 - VenkatKotakonda 1373 - jvasanth1 1374 files: 1375 - drivers/espi/ 1376 - include/zephyr/drivers/espi.h 1377 - include/zephyr/dt-bindings/espi/ 1378 - samples/drivers/espi/ 1379 - dts/bindings/espi/ 1380 - doc/hardware/peripherals/espi.rst 1381 - include/zephyr/drivers/espi_saf.h 1382 - tests/drivers/espi/ 1383 labels: 1384 - "area: eSPI" 1385 tests: 1386 - sample.drivers.espi 1387 - drivers.espi 1388 1389"Drivers: Ethernet": 1390 status: odd fixes 1391 collaborators: 1392 - decsny 1393 - lmajewski 1394 - pdgendt 1395 - maass-hamburg 1396 files: 1397 - drivers/ethernet/ 1398 - include/zephyr/dt-bindings/ethernet/ 1399 - tests/drivers/build_all/ethernet/ 1400 - dts/bindings/ethernet/ 1401 - tests/drivers/ethernet/ 1402 - include/zephyr/drivers/ethernet/ 1403 - include/zephyr/net/phy.h 1404 - include/zephyr/net/ethernet.h 1405 labels: 1406 - "area: Ethernet" 1407 tests: 1408 - net.ethernet 1409 1410"Drivers: Flash": 1411 status: maintained 1412 maintainers: 1413 - de-nordic 1414 collaborators: 1415 - rghaddab 1416 files: 1417 - drivers/flash/ 1418 - dts/bindings/flash_controller/ 1419 - include/zephyr/dt-bindings/flash_controller/ 1420 - include/zephyr/drivers/flash.h 1421 - samples/drivers/flash_shell/ 1422 - samples/drivers/soc_flash_nrf/ 1423 - tests/drivers/flash/ 1424 - doc/hardware/peripherals/flash.rst 1425 - include/zephyr/drivers/flash/ 1426 - tests/drivers/flash_simulator/ 1427 - tests/drivers/build_all/flash/ 1428 labels: 1429 - "area: Flash" 1430 tests: 1431 - drivers.flash 1432 1433"Drivers: FPGA": 1434 status: maintained 1435 maintainers: 1436 - cfriedt 1437 collaborators: 1438 - tgorochowik 1439 - fkokosinski 1440 - msierszulski 1441 files: 1442 - drivers/fpga/ 1443 - dts/bindings/fpga/ 1444 - include/zephyr/drivers/fpga.h 1445 - samples/drivers/fpga/ 1446 - tests/drivers/build_all/fpga/ 1447 labels: 1448 - "area: FPGA" 1449 tests: 1450 - drivers.fpga 1451 1452"Drivers: Fuel Gauge": 1453 status: maintained 1454 maintainers: 1455 - aaronemassey 1456 - teburd 1457 files: 1458 - drivers/fuel_gauge/ 1459 - dts/bindings/fuel-gauge/ 1460 - include/zephyr/drivers/fuel_gauge.h 1461 - tests/drivers/fuel_gauge/ 1462 - doc/hardware/peripherals/fuel_gauge.rst 1463 labels: 1464 - "area: Fuel Gauge" 1465 tests: 1466 - drivers.fuel_gauge 1467 1468"Drivers: GPIO": 1469 status: odd fixes 1470 collaborators: 1471 - henrikbrixandersen 1472 - mnkp 1473 files: 1474 - doc/hardware/peripherals/gpio.rst 1475 - drivers/gpio/ 1476 - dts/bindings/gpio/ 1477 - include/zephyr/drivers/gpio/ 1478 - include/zephyr/drivers/gpio.h 1479 - include/zephyr/dt-bindings/gpio/ 1480 - tests/drivers/gpio/ 1481 - tests/drivers/build_all/gpio/ 1482 labels: 1483 - "area: GPIO" 1484 tests: 1485 - drivers.gpio 1486 1487"Drivers: GNSS": 1488 status: maintained 1489 maintainers: 1490 - bjarki-andreasen 1491 collaborators: 1492 - tomi-font 1493 - fabiobaltieri 1494 files: 1495 - doc/hardware/peripherals/gnss.rst 1496 - drivers/gnss/ 1497 - include/zephyr/drivers/gnss.h 1498 - include/zephyr/drivers/gnss/ 1499 - dts/bindings/gnss/ 1500 - include/zephyr/dt-bindings/gnss/ 1501 - tests/drivers/build_all/gnss/ 1502 - tests/drivers/gnss/ 1503 labels: 1504 - "area: GNSS" 1505 tests: 1506 - drivers.gnss 1507 1508"Drivers: Haptics": 1509 status: maintained 1510 maintainers: 1511 - rriveramcrus 1512 files: 1513 - drivers/haptics/ 1514 - dts/bindings/haptics/ 1515 - include/zephyr/drivers/haptics.h 1516 - doc/hardware/peripherals/haptics.rst 1517 - tests/drivers/build_all/haptics/ 1518 - samples/drivers/haptics/ 1519 labels: 1520 - "area: Haptics" 1521 tests: 1522 - drivers.haptics 1523 1524"Drivers: HW Info": 1525 status: maintained 1526 maintainers: 1527 - alexanderwachter 1528 files: 1529 - drivers/hwinfo/ 1530 - dts/bindings/hwinfo/ 1531 - include/zephyr/drivers/hwinfo.h 1532 - tests/drivers/hwinfo/ 1533 - doc/hardware/peripherals/hwinfo.rst 1534 labels: 1535 - "area: HWINFO" 1536 tests: 1537 - drivers.hwinfo 1538 1539"Drivers: Hardware Spinlock": 1540 status: odd fixes 1541 files: 1542 - drivers/hwspinlock/ 1543 - dts/bindings/hwspinlock/ 1544 - include/zephyr/drivers/hwspinlock.h 1545 labels: 1546 - "area: Hardware Spinlock" 1547 1548"Drivers: I2C": 1549 status: maintained 1550 maintainers: 1551 - teburd 1552 files: 1553 - drivers/i2c/ 1554 - include/zephyr/drivers/i2c/ 1555 - dts/bindings/i2c/ 1556 - include/zephyr/drivers/i2c.h 1557 - tests/drivers/i2c/ 1558 - doc/hardware/peripherals/i2c.rst 1559 - include/zephyr/dt-bindings/i2c/ 1560 - tests/boards/*/i2c/ 1561 - tests/drivers/*/i2c/ 1562 - samples/drivers/i2c/ 1563 labels: 1564 - "area: I2C" 1565 tests: 1566 - drivers.i2c 1567 1568"Drivers: I2S": 1569 status: maintained 1570 maintainers: 1571 - anangl 1572 files: 1573 - doc/hardware/peripherals/audio/i2s.rst 1574 - drivers/i2s/ 1575 - dts/bindings/i2s/ 1576 - include/zephyr/drivers/i2s.h 1577 - tests/drivers/i2s/ 1578 - samples/drivers/i2s/ 1579 labels: 1580 - "area: I2S" 1581 tests: 1582 - drivers.i2s 1583 1584"Drivers: I3C": 1585 status: maintained 1586 maintainers: 1587 - dcpleung 1588 collaborators: 1589 - XenuIsWatching 1590 files: 1591 - drivers/i3c/ 1592 - dts/bindings/i3c/ 1593 - include/zephyr/drivers/i3c.h 1594 - include/zephyr/drivers/i3c/ 1595 - doc/hardware/peripherals/i3c.rst 1596 - tests/drivers/build_all/i3c/ 1597 labels: 1598 - "area: I3C" 1599 tests: 1600 - drivers.i3c 1601 1602"Drivers: IEEE 802.15.4": 1603 status: odd fixes 1604 collaborators: 1605 - rlubos 1606 - ankuns 1607 - cfriedt 1608 - jukkar 1609 files: 1610 - drivers/ieee802154/ 1611 - include/zephyr/drivers/ieee802154/ 1612 - include/zephyr/net/ieee802154_radio.h 1613 - tests/drivers/build_all/ieee802154/ 1614 labels: 1615 - "area: IEEE 802.15.4" 1616 tests: 1617 - drivers.ieee802154 1618 1619"Drivers: Mbox": 1620 status: maintained 1621 maintainers: 1622 - carlocaione 1623 files: 1624 - include/zephyr/drivers/mbox.h 1625 - drivers/mbox/ 1626 - samples/drivers/mbox/ 1627 - dts/bindings/mbox/ 1628 - doc/hardware/peripherals/mbox.rst 1629 labels: 1630 - "area: mbox" 1631 tests: 1632 - sample.drivers.mbox 1633 1634"Drivers: MEMC": 1635 status: odd fixes 1636 files: 1637 - drivers/memc/ 1638 - samples/drivers/memc/ 1639 - tests/drivers/memc/ 1640 - include/zephyr/dt-bindings/memory-controller/ 1641 - dts/bindings/memory-controllers/ 1642 labels: 1643 - "area: MEMC" 1644 tests: 1645 - samples.drivers.memc 1646 - drivers.memc 1647 1648"Drivers: MDIO": 1649 status: odd fixes 1650 collaborators: 1651 - decsny 1652 - maass-hamburg 1653 files: 1654 - doc/hardware/peripherals/mdio.rst 1655 - drivers/mdio/ 1656 - include/zephyr/drivers/mdio.h 1657 - include/zephyr/net/mdio.h 1658 - tests/drivers/build_all/mdio/ 1659 - dts/bindings/mdio/ 1660 labels: 1661 - "area: MDIO" 1662 tests: 1663 - drivers.mdio 1664 1665"Drivers: MIPI-DSI": 1666 status: odd fixes 1667 files: 1668 - drivers/mipi_dsi/ 1669 - doc/hardware/peripherals/mipi_dsi.rst 1670 - include/zephyr/drivers/mipi_dsi.h 1671 - include/zephyr/drivers/mipi_dsi/ 1672 - tests/drivers/mipi_dsi/ 1673 - include/zephyr/dt-bindings/mipi_dsi/ 1674 - dts/bindings/mipi-dsi/ 1675 labels: 1676 - "area: MIPI-DSI" 1677 tests: 1678 - drivers.mipi_dsi 1679 1680"Drivers: MSPI": 1681 status: maintained 1682 maintainers: 1683 - swift-tk 1684 files: 1685 - drivers/mspi/ 1686 - drivers/memc/*mspi* 1687 - drivers/flash/*mspi* 1688 - include/zephyr/drivers/mspi.h 1689 - include/zephyr/drivers/mspi/ 1690 - samples/drivers/mspi/ 1691 - tests/drivers/mspi/ 1692 - doc/hardware/peripherals/mspi.rst 1693 - dts/bindings/mspi/ 1694 - dts/bindings/mtd/mspi* 1695 labels: 1696 - "area: MSPI" 1697 tests: 1698 - drivers.mspi 1699 1700"Drivers: Reset": 1701 status: odd fixes 1702 collaborators: 1703 - decsny 1704 files: 1705 - drivers/reset/ 1706 - include/zephyr/drivers/reset.h 1707 - dts/bindings/reset/ 1708 - include/zephyr/dt-bindings/reset/ 1709 1710"Interrupt Handling": 1711 status: odd fixes 1712 files: 1713 - drivers/interrupt_controller/ 1714 - dts/bindings/interrupt-controller/ 1715 - include/zephyr/drivers/interrupt_controller/ 1716 - include/zephyr/dt-bindings/interrupt-controller/ 1717 - include/zephyr/irq* 1718 - include/zephyr/sw_isr_table.h 1719 - include/zephyr/shared_irq.h 1720 - tests/drivers/interrupt_controller/ 1721 - tests/drivers/build_all/interrupt_controller/ 1722 labels: 1723 - "area: Interrupt Controller" 1724 tests: 1725 - drivers.interrupt_controller 1726 1727"Drivers: IPM": 1728 status: odd fixes 1729 collaborators: 1730 - dcpleung 1731 files: 1732 - drivers/ipm/ 1733 - samples/drivers/ipm/ 1734 - dts/bindings/ipm/ 1735 - tests/drivers/ipm/ 1736 - doc/hardware/peripherals/ipm.rst 1737 - include/zephyr/drivers/ipm.h 1738 description: >- 1739 Inter-processor mailboxes 1740 labels: 1741 - "area: IPM" 1742 tests: 1743 - drivers.ipm 1744 1745"Drivers: kscan": 1746 status: maintained 1747 maintainers: 1748 - albertofloyd 1749 collaborators: 1750 - VenkatKotakonda 1751 files: 1752 - drivers/kscan/ 1753 - include/zephyr/drivers/kscan.h 1754 - samples/drivers/kscan/ 1755 - tests/drivers/kscan/ 1756 - dts/bindings/kscan/ 1757 - doc/hardware/peripherals/kscan.rst 1758 labels: 1759 - "area: Kscan" 1760 tests: 1761 - drivers.kscan 1762 1763"Drivers: LED": 1764 status: maintained 1765 maintainers: 1766 - Mani-Sadhasivam 1767 - simonguinot 1768 collaborators: 1769 - bbilas 1770 files: 1771 - drivers/led/ 1772 - include/zephyr/drivers/led/ 1773 - include/zephyr/drivers/led.h 1774 - samples/drivers/led/ 1775 - tests/drivers/led/ 1776 - doc/hardware/peripherals/led.rst 1777 - tests/drivers/build_all/led/ 1778 - dts/bindings/led/ 1779 - include/zephyr/dt-bindings/led/ 1780 labels: 1781 - "area: LED" 1782 tests: 1783 - drivers.led 1784 1785"Drivers: LED Strip": 1786 status: maintained 1787 maintainers: 1788 - simonguinot 1789 collaborators: 1790 - soburi 1791 - thedjnK 1792 files: 1793 - drivers/led_strip/ 1794 - dts/bindings/led_strip/ 1795 - include/zephyr/drivers/led_strip.h 1796 - tests/drivers/build_all/led_strip/ 1797 - include/zephyr/drivers/led_strip/ 1798 labels: 1799 - "area: LED" 1800 tests: 1801 - drivers.led_strip 1802 1803"Drivers: MFD": 1804 status: odd fixes 1805 collaborators: 1806 - gmarull 1807 - aasinclair 1808 files: 1809 - drivers/mfd/ 1810 - include/zephyr/drivers/mfd/ 1811 - dts/bindings/mfd/ 1812 - tests/drivers/build_all/mfd/ 1813 labels: 1814 - "area: MFD" 1815 tests: 1816 - drivers.mfd 1817 1818"Drivers: Modem": 1819 status: maintained 1820 maintainers: 1821 - rerickson1 1822 files: 1823 - drivers/modem/ 1824 - tests/drivers/build_all/modem/ 1825 - dts/bindings/modem/ 1826 - include/zephyr/drivers/modem/ 1827 labels: 1828 - "area: Modem Drivers" 1829 tests: 1830 - drivers.modem 1831 1832"Drivers: Regulators": 1833 status: maintained 1834 maintainers: 1835 - gmarull 1836 collaborators: 1837 - danieldegrasse 1838 - aasinclair 1839 files: 1840 - drivers/regulator/ 1841 - include/zephyr/drivers/regulator/ 1842 - include/zephyr/drivers/regulator.h 1843 - include/zephyr/dt-bindings/regulator/ 1844 - tests/drivers/regulator/ 1845 - tests/drivers/build_all/regulator/ 1846 - doc/hardware/peripherals/regulators.rst 1847 - dts/bindings/regulator/ 1848 labels: 1849 - "area: Regulators" 1850 tests: 1851 - drivers.regulator 1852 1853"Drivers: Retained Memory": 1854 status: maintained 1855 maintainers: 1856 - nordicjm 1857 files: 1858 - drivers/retained_mem/ 1859 - dts/bindings/retained_mem/ 1860 - include/zephyr/drivers/retained_mem.h 1861 - tests/drivers/retained_mem/ 1862 - doc/hardware/peripherals/retained_mem.rst 1863 - dts/bindings/retained_mem/ 1864 labels: 1865 - "area: Retained Memory" 1866 tests: 1867 - drivers.retained_mem 1868 1869"Drivers: RTC": 1870 status: maintained 1871 maintainers: 1872 - bjarki-andreasen 1873 files: 1874 - drivers/rtc/ 1875 - include/zephyr/drivers/rtc/ 1876 - tests/drivers/rtc/ 1877 - doc/hardware/peripherals/rtc.rst 1878 - include/zephyr/drivers/rtc.h 1879 - tests/drivers/build_all/rtc/ 1880 - dts/bindings/rtc/ 1881 labels: 1882 - "area: RTC" 1883 tests: 1884 - drivers.rtc 1885 1886"Drivers: PCI": 1887 status: maintained 1888 maintainers: 1889 - dcpleung 1890 files: 1891 - drivers/pcie/ 1892 - include/zephyr/drivers/pcie/ 1893 - doc/hardware/peripherals/pcie.rst 1894 - dts/bindings/pcie/ 1895 - include/zephyr/dt-bindings/pcie/ 1896 labels: 1897 - "area: PCI" 1898 1899"Drivers: PECI": 1900 status: maintained 1901 maintainers: 1902 - albertofloyd 1903 collaborators: 1904 - VenkatKotakonda 1905 files: 1906 - drivers/peci/ 1907 - include/zephyr/drivers/peci.h 1908 - samples/drivers/peci/ 1909 - doc/hardware/peripherals/peci.rst 1910 - dts/bindings/peci/ 1911 labels: 1912 - "area: PECI" 1913 tests: 1914 - samples.drivers.peci 1915 1916"Drivers: Pin Control": 1917 status: maintained 1918 maintainers: 1919 - gmarull 1920 files: 1921 - doc/hardware/pinctrl/ 1922 - include/zephyr/drivers/pinctrl/ 1923 - include/zephyr/drivers/pinctrl.h 1924 - drivers/pinctrl/ 1925 - tests/drivers/pinctrl/ 1926 - dts/bindings/pinctrl/ 1927 - include/zephyr/dt-bindings/pinctrl/ 1928 labels: 1929 - "area: Pinctrl" 1930 tests: 1931 - drivers.pinctrl 1932 1933"Drivers: PS2": 1934 status: odd fixes 1935 files: 1936 - drivers/ps2/ 1937 - doc/hardware/peripherals/ps2.rst 1938 - include/zephyr/drivers/ps2.h 1939 - samples/drivers/ps2/ 1940 - dts/bindings/ps2/ 1941 labels: 1942 - "area: PS2" 1943 tests: 1944 - sample.drivers.espi.ps2 1945 1946"Drivers: PTP Clock": 1947 status: maintained 1948 maintainers: 1949 - tbursztyka 1950 files: 1951 - drivers/ptp_clock/ 1952 - include/zephyr/drivers/ptp_clock.h 1953 labels: 1954 - "area: Clocks" 1955 1956"Drivers: PM CPU ops": 1957 status: maintained 1958 maintainers: 1959 - carlocaione 1960 collaborators: 1961 - gdengi 1962 - nbalabak 1963 files: 1964 - drivers/pm_cpu_ops/ 1965 - include/zephyr/drivers/pm_cpu_ops/ 1966 - include/zephyr/drivers/pm_cpu_ops.h 1967 - include/zephyr/arch/arm64/arm-smccc.h 1968 - dts/bindings/pm_cpu_ops/ 1969 labels: 1970 - "area: PM CPU ops" 1971 1972"Drivers: PWM": 1973 status: maintained 1974 maintainers: 1975 - anangl 1976 collaborators: 1977 - henrikbrixandersen 1978 files: 1979 - drivers/pwm/ 1980 - dts/bindings/pwm/ 1981 - include/zephyr/dt-bindings/pwm/ 1982 - tests/drivers/pwm/ 1983 - include/zephyr/*/pwms.h 1984 - doc/hardware/peripherals/pwm.rst 1985 - tests/drivers/build_all/pwm/ 1986 - include/zephyr/drivers/pwm.h 1987 - include/zephyr/drivers/pwm/ 1988 labels: 1989 - "area: PWM" 1990 tests: 1991 - drivers.pwm 1992 1993"Drivers: SDHC": 1994 status: maintained 1995 maintainers: 1996 - danieldegrasse 1997 files: 1998 - drivers/sdhc/ 1999 - tests/drivers/sdhc/ 2000 - include/zephyr/drivers/sdhc.h 2001 - dts/bindings/sdhc/ 2002 - doc/hardware/peripherals/sdhc.rst 2003 labels: 2004 - "area: Disk Access" 2005 tests: 2006 - drivers.sdhc 2007 2008"Drivers: Serial/UART": 2009 status: maintained 2010 maintainers: 2011 - dcpleung 2012 files: 2013 - drivers/serial/ 2014 - include/zephyr/drivers/uart.h 2015 - include/zephyr/drivers/uart/ 2016 - dts/bindings/serial/ 2017 - samples/drivers/uart/ 2018 - tests/drivers/uart/ 2019 - tests/drivers/build_all/uart/ 2020 - doc/hardware/peripherals/uart.rst 2021 - include/zephyr/drivers/serial/ 2022 - include/zephyr/drivers/uart_pipe.h 2023 labels: 2024 - "area: UART" 2025 tests: 2026 - drivers.uart 2027 2028"Drivers: Sensors": 2029 status: maintained 2030 maintainers: 2031 - MaureenHelm 2032 collaborators: 2033 - avisconti 2034 - teburd 2035 - yperess 2036 - tristan-google 2037 - ubieda 2038 - jeppenodgaard 2039 - asemjonovs 2040 files: 2041 - drivers/sensor/ 2042 - include/zephyr/drivers/sensor.h 2043 - include/zephyr/drivers/sensor_data_types.h 2044 - samples/sensor/ 2045 - tests/drivers/sensor/ 2046 - dts/bindings/sensor/ 2047 - include/zephyr/drivers/sensor/ 2048 - include/zephyr/dt-bindings/sensor/ 2049 - doc/hardware/peripherals/sensor/ 2050 - tests/drivers/build_all/sensor/ 2051 labels: 2052 - "area: Sensors" 2053 tests: 2054 - drivers.sensors 2055 2056"Drivers: SMBus": 2057 status: maintained 2058 maintainers: 2059 - finikorg 2060 files: 2061 - drivers/smbus/ 2062 - dts/bindings/smbus/ 2063 - include/zephyr/drivers/smbus.h 2064 - samples/drivers/smbus/ 2065 - tests/drivers/smbus/ 2066 - doc/hardware/peripherals/smbus.rst 2067 labels: 2068 - "area: SMBus" 2069 tests: 2070 - drivers.smbus 2071 2072"Drivers: SPI": 2073 status: maintained 2074 maintainers: 2075 - tbursztyka 2076 collaborators: 2077 - teburd 2078 files: 2079 - drivers/spi/ 2080 - include/zephyr/drivers/spi.h 2081 - tests/drivers/spi/ 2082 - dts/bindings/spi/ 2083 - include/zephyr/dt-bindings/spi/ 2084 - doc/hardware/peripherals/spi.rst 2085 labels: 2086 - "area: SPI" 2087 tests: 2088 - drivers.spi 2089 2090"Drivers: Stepper": 2091 status: maintained 2092 maintainers: 2093 - jilaypandya 2094 collaborators: 2095 - bjarki-andreasen 2096 - dipakgmx 2097 - fabiobaltieri 2098 - faxe1008 2099 files: 2100 - drivers/stepper/ 2101 - include/zephyr/drivers/stepper.h 2102 - dts/bindings/stepper/ 2103 - doc/hardware/peripherals/stepper.rst 2104 - tests/drivers/build_all/stepper/ 2105 labels: 2106 - "area: Stepper" 2107 tests: 2108 - drivers.stepper 2109 2110"Drivers: System timer": 2111 status: maintained 2112 maintainers: 2113 - andyross 2114 collaborators: 2115 - teburd 2116 files: 2117 - drivers/timer/ 2118 - include/zephyr/drivers/timer/ 2119 - dts/bindings/timer/ 2120 - include/zephyr/dt-bindings/timer/ 2121 labels: 2122 - "area: Timer" 2123 2124"Drivers: Video": 2125 status: odd fixes 2126 collaborators: 2127 - loicpoulain 2128 - josuah 2129 - ngphibang 2130 files: 2131 - drivers/video/ 2132 - include/zephyr/drivers/video.h 2133 - include/zephyr/drivers/video-controls.h 2134 - doc/hardware/peripherals/video.rst 2135 - tests/drivers/*/video/ 2136 - dts/bindings/video/ 2137 - samples/drivers/video/ 2138 labels: 2139 - "area: Video" 2140 tests: 2141 - drivers.video 2142 2143"Drivers: W1": 2144 status: maintained 2145 maintainers: 2146 - str4t0m 2147 collaborators: 2148 - casparfriedrich 2149 files: 2150 - doc/hardware/peripherals/w1.rst 2151 - drivers/w1/ 2152 - dts/bindings/w1/ 2153 - include/zephyr/drivers/w1.h 2154 - include/zephyr/drivers/sensor/w1_sensor.h 2155 - tests/drivers/w1/ 2156 - tests/drivers/build_all/w1/ 2157 - samples/drivers/w1/ 2158 labels: 2159 - "area: W1" 2160 tests: 2161 - drivers.w1 2162 2163"Drivers: Watchdog": 2164 status: odd fixes 2165 collaborators: 2166 - katsuster 2167 - martinjaeger 2168 files: 2169 - doc/hardware/peripherals/watchdog.rst 2170 - drivers/watchdog/ 2171 - dts/bindings/watchdog/ 2172 - include/zephyr/drivers/watchdog.h 2173 - samples/drivers/watchdog/ 2174 - tests/drivers/watchdog/ 2175 - tests/drivers/build_all/watchdog/ 2176 labels: 2177 - "area: Watchdog" 2178 tests: 2179 - drivers.watchdog 2180 2181"Drivers: Wi-Fi": 2182 status: maintained 2183 maintainers: 2184 - jukkar 2185 collaborators: 2186 - rlubos 2187 - kludentwo 2188 - krish2718 2189 - MaochenWang1 2190 files: 2191 - drivers/wifi/ 2192 - dts/bindings/wifi/ 2193 labels: 2194 - "area: Wi-Fi" 2195 2196"Drivers: Wi-Fi es-WiFi": 2197 status: odd fixes 2198 collaborators: 2199 - loicpoulain 2200 files: 2201 - drivers/wifi/eswifi/ 2202 description: >- 2203 Inventek es-WiFi 2204 2205 labels: 2206 - "area: Wi-Fi" 2207 2208"Drivers: Wi-Fi as nRF Wi-Fi": 2209 status: maintained 2210 maintainers: 2211 - krish2718 2212 - jukkar 2213 collaborators: 2214 - sachinthegreen 2215 files: 2216 - drivers/wifi/nrf_wifi/ 2217 - dts/bindings/wifi/nordic,nrf70.yaml 2218 - dts/bindings/wifi/nordic,nrf70-qspi.yaml 2219 - dts/bindings/wifi/nordic,nrf70-spi.yaml 2220 - dts/bindings/wifi/nordic,nrf70-coex.yaml 2221 - dts/bindings/wifi/nordic,nrf7002-qspi.yaml 2222 - dts/bindings/wifi/nordic,nrf7002-spi.yaml 2223 - dts/bindings/wifi/nordic,nrf7000-qspi.yaml 2224 - dts/bindings/wifi/nordic,nrf7000-spi.yaml 2225 - dts/bindings/wifi/nordic,nrf7001-qspi.yaml 2226 - dts/bindings/wifi/nordic,nrf7001-spi.yaml 2227 - boards/shields/nrf7002ek/ 2228 labels: 2229 - "area: Wi-Fi" 2230 2231"Drivers: Wi-Fi NXP": 2232 status: maintained 2233 maintainers: 2234 - dleach02 2235 - MaochenWang1 2236 files: 2237 - drivers/wifi/nxp/ 2238 labels: 2239 - "platform: NXP Drivers" 2240 2241"Drivers: Memory Management": 2242 status: maintained 2243 maintainers: 2244 - dcpleung 2245 collaborators: 2246 - ceolin 2247 - edersondisouza 2248 - jxstelter 2249 files: 2250 - include/zephyr/drivers/mm/ 2251 - drivers/mm/ 2252 - tests/boards/intel_adsp/mm/ 2253 - dts/bindings/mm/ 2254 labels: 2255 - "area: Memory Management" 2256 2257"Drivers: MIPI DBI": 2258 status: maintained 2259 maintainers: 2260 - danieldegrasse 2261 files: 2262 - drivers/mipi_dbi/ 2263 - dts/bindings/mipi-dbi/ 2264 - include/zephyr/dt-bindings/mipi_dbi/ 2265 labels: 2266 - "area: Display Controller" 2267 2268"Drivers: Virtualization": 2269 status: maintained 2270 maintainers: 2271 - tbursztyka 2272 files: 2273 - drivers/virtualization/ 2274 - tests/drivers/virtualization/ 2275 - dts/bindings/virtualization/ 2276 - include/zephyr/drivers/virtualization/ 2277 - doc/services/virtualization/ 2278 - include/zephyr/drivers/virtualization/ivshmem.h 2279 labels: 2280 - "area: Virtualization" 2281 tests: 2282 - drivers.virtualization 2283 2284EC Host Commands: 2285 status: maintained 2286 maintainers: 2287 - niedzwiecki-dawid 2288 files: 2289 - subsys/mgmt/ec_host_cmd/ 2290 - include/zephyr/mgmt/ec_host_cmd/ 2291 - tests/subsys/mgmt/ec_host_cmd/ 2292 labels: 2293 - "area: ec_host_cmd" 2294 tests: 2295 - mgmt.ec_host_cmd 2296 2297Xen Platform: 2298 status: maintained 2299 maintainers: 2300 - povergoing 2301 collaborators: 2302 - SgrrZhf 2303 - lorc 2304 - firscity 2305 - luca-fancellu 2306 files: 2307 - include/zephyr/xen/ 2308 - drivers/xen/ 2309 - arch/arm64/core/xen/ 2310 - soc/xen/ 2311 - boards/xen/ 2312 - dts/bindings/xen/ 2313 labels: 2314 - "area: Xen Platform" 2315 2316Filesystems: 2317 status: maintained 2318 maintainers: 2319 - de-nordic 2320 collaborators: 2321 - Laczen 2322 - nashif 2323 files: 2324 - include/zephyr/fs/ 2325 - samples/subsys/fs/ 2326 - subsys/fs/ 2327 - tests/subsys/fs/ 2328 - dts/bindings/fs/ 2329 labels: 2330 - "area: File System" 2331 tests: 2332 - filesystem 2333 2334Formatted Output: 2335 status: maintained 2336 maintainers: 2337 - nordic-krch 2338 collaborators: 2339 - dcpleung 2340 files: 2341 - include/zephyr/sys/cbprintf* 2342 - tests/unit/cbprintf/ 2343 - tests/lib/cbprintf_*/ 2344 - lib/os/cbprintf* 2345 - lib/os/Kconfig.cbprintf 2346 - doc/services/formatted_output.rst 2347 labels: 2348 - "area: Formatting Output" 2349 tests: 2350 - utilities.prf 2351 - libraries.cbprintf 2352 2353Google Platforms: 2354 status: maintained 2355 maintainers: 2356 - fabiobaltieri 2357 - keith-zephyr 2358 collaborators: 2359 - duda-patryk 2360 files: 2361 - boards/google/ 2362 - samples/boards/google/ 2363 2364Hash Utilities: 2365 status: maintained 2366 maintainers: 2367 - cfriedt 2368 files: 2369 - include/zephyr/sys/hash_* 2370 - lib/hash/ 2371 - samples/basic/hash_map/ 2372 - tests/lib/hash_*/ 2373 description: >- 2374 Hash Functions and Hash Maps (Hash Tables) 2375 labels: 2376 - "area: hash utils" 2377 tests: 2378 - libraries.hash_function 2379 - libraries.hash_map 2380 2381Input: 2382 status: maintained 2383 maintainers: 2384 - fabiobaltieri 2385 collaborators: 2386 - gmarull 2387 files: 2388 - doc/services/input/ 2389 - drivers/input/ 2390 - dts/bindings/input/ 2391 - include/zephyr/dt-bindings/input/ 2392 - include/zephyr/input/ 2393 - samples/subsys/input/ 2394 - subsys/input/ 2395 - tests/drivers/build_all/input/ 2396 - tests/subsys/input/ 2397 - tests/drivers/input/ 2398 description: >- 2399 Input subsystem and drivers 2400 labels: 2401 - "area: Input" 2402 tests: 2403 - drivers.input 2404 - input 2405 2406IPC: 2407 status: maintained 2408 maintainers: 2409 - doki-nordic 2410 collaborators: 2411 - carlocaione 2412 - arnopo 2413 files: 2414 - include/zephyr/ipc/ 2415 - samples/subsys/ipc/ 2416 - subsys/ipc/ 2417 - tests/subsys/ipc/ 2418 - doc/services/ipc/ 2419 - dts/bindings/ipc/ 2420 - include/zephyr/dt-bindings/ipc_service/ 2421 description: >- 2422 Inter-Processor Communication 2423 labels: 2424 - "area: IPC" 2425 tests: 2426 - ipc 2427 2428JSON Web Token: 2429 status: maintained 2430 maintainers: 2431 - d3zd3z 2432 collaborators: 2433 - mrfuchs 2434 - sir-branch 2435 files: 2436 - subsys/jwt/ 2437 - include/zephyr/data/ 2438 - lib/utils/json.c 2439 - tests/subsys/jwt/ 2440 - tests/lib/json/ 2441 labels: 2442 - "area: JSON" 2443 tests: 2444 - libraries.encoding.json 2445 - libraries.encoding.jwt 2446 2447Kconfig: 2448 status: odd fixes 2449 collaborators: 2450 - tejlmand 2451 - nashif 2452 files: 2453 - scripts/kconfig/ 2454 - doc/build/kconfig/ 2455 - Kconfig.zephyr 2456 - tests/kconfig/configdefault/ 2457 - tests/misc/kconfigoptions/ 2458 labels: 2459 - "area: Kconfig" 2460 description: >- 2461 See https://docs.zephyrproject.org/latest/build/kconfig/index.html and 2462 https://docs.zephyrproject.org/latest/hardware/porting/board_porting.html#default-board-configuration 2463 tests: 2464 - kconfig 2465 2466Kernel: 2467 status: maintained 2468 maintainers: 2469 - andyross 2470 - peter-mitsis 2471 collaborators: 2472 - nashif 2473 - ceolin 2474 - dcpleung 2475 - cfriedt 2476 - npitre 2477 - TaiJuWu 2478 files: 2479 - doc/kernel/ 2480 - include/zephyr/kernel*.h 2481 - include/zephyr/spinlock.h 2482 - include/zephyr/fatal.h 2483 - kernel/ 2484 - tests/kernel/ 2485 - include/zephyr/sys_clock.h 2486 - samples/kernel/ 2487 - include/zephyr/kernel/ 2488 - tests/lib/p4workq/ 2489 files-exclude: 2490 - tests/kernel/mem_protect/ 2491 labels: 2492 - "area: Kernel" 2493 tests: 2494 - kernel 2495 2496Utilities: 2497 status: maintained 2498 maintainers: 2499 - andyross 2500 - nashif 2501 collaborators: 2502 - dcpleung 2503 - peter-mitsis 2504 files: 2505 - lib/crc/ 2506 - lib/utils/ 2507 - tests/unit/timeutil/ 2508 - tests/unit/time_units/ 2509 - tests/unit/rbtree/ 2510 - tests/unit/math_extras/ 2511 - tests/unit/crc/ 2512 - tests/unit/base64/ 2513 - tests/unit/math_extras/ 2514 - tests/unit/list/ 2515 - tests/unit/intmath/ 2516 - tests/unit/pot/ 2517 - tests/lib/time/ 2518 - tests/lib/onoff/ 2519 - tests/lib/sys_util/ 2520 - tests/lib/sprintf/ 2521 - tests/lib/ringbuffer/ 2522 - tests/lib/notify/ 2523 - tests/lib/linear_range/ 2524 labels: 2525 - "area: Utilities" 2526 tests: 2527 - utilities 2528 - libraries.ring_buffer 2529 - libraries.linear_range 2530 2531Base OS: 2532 status: maintained 2533 maintainers: 2534 - andyross 2535 - nashif 2536 collaborators: 2537 - dcpleung 2538 - peter-mitsis 2539 files: 2540 - include/zephyr/sys/ 2541 - lib/os/ 2542 - tests/misc/print_format/ 2543 - tests/lib/p4workq/ 2544 - tests/lib/fdtable/ 2545 files-exclude: 2546 - include/zephyr/sys/cbprintf* 2547 - tests/unit/cbprintf/ 2548 - tests/lib/cbprintf_*/ 2549 - lib/os/cbprintf* 2550 - lib/os/Kconfig.cbprintf 2551 - include/zephyr/sys/mem_manage.h 2552 - include/zephyr/sys/mpsc_pbuf.h 2553 - include/zephyr/sys/mpsc_packet.h 2554 - lib/os/mpsc_pbuf.c 2555 labels: 2556 - "area: Base OS" 2557 tests: 2558 - printk 2559 2560Heap Management: 2561 status: maintained 2562 maintainers: 2563 - npitre 2564 - andyross 2565 files: 2566 - tests/lib/shared_multi_heap/ 2567 - lib/heap/ 2568 - tests/lib/heap/ 2569 - tests/lib/heap_align/ 2570 - tests/lib/multi_heap/ 2571 - include/zephyr/multi_heap/ 2572 2573Memory Management: 2574 status: maintained 2575 maintainers: 2576 - carlocaione 2577 - dcpleung 2578 files: 2579 - subsys/mem_mgmt/ 2580 - lib/mem_blocks/ 2581 - tests/subsys/mem_mgmt/ 2582 - include/zephyr/mem_mgmt/mem_attr_heap.h 2583 - tests/lib/mem_alloc/ 2584 - tests/lib/mem_blocks/ 2585 - doc/services/mem_mgmt/ 2586 - include/zephyr/mem_mgmt/mem_attr.h 2587 - include/zephyr/dt-bindings/memory-attr/ 2588 - tests/lib/mem_blocks_stats/ 2589 - tests/drivers/mm/ 2590 tests: 2591 - mem_mgmt 2592 2593Ezurio platforms: 2594 status: maintained 2595 maintainers: 2596 - rerickson1 2597 collaborators: 2598 - greg-leach 2599 files: 2600 - boards/ezurio/ 2601 labels: 2602 - "platform: Ezurio" 2603 2604Linker Scripts: 2605 status: maintained 2606 maintainers: 2607 - nashif 2608 files: 2609 - include/zephyr/linker/ 2610 - tests/misc/iterable_sections/ 2611 - tests/application_development/code_relocation/ 2612 labels: 2613 - "area: Linker Scripts" 2614 tests: 2615 - linker 2616 2617Little FS: 2618 status: odd fixes 2619 files: 2620 - subsys/fs/Kconfig.littlefs 2621 - subsys/fs/littlefs_fs.c 2622 - tests/subsys/fs/littlefs/ 2623 description: >- 2624 Little FS 2625 labels: 2626 - "area: File System" 2627 tests: 2628 - filesystem.littlefs 2629 2630Logging: 2631 status: maintained 2632 maintainers: 2633 - nordic-krch 2634 collaborators: 2635 - dcpleung 2636 files: 2637 - include/zephyr/logging/ 2638 - include/zephyr/sys/mpsc_pbuf.h 2639 - include/zephyr/sys/mpsc_packet.h 2640 - lib/os/mpsc_pbuf.c 2641 - doc/kernel/data_structures/mpsc_pbuf.rst 2642 - tests/lib/mpsc_pbuf/ 2643 - samples/subsys/logging/ 2644 - subsys/logging/ 2645 - tests/subsys/logging/ 2646 - scripts/logging/ 2647 - doc/services/logging/ 2648 - tests/lib/spsc_pbuf/ 2649 labels: 2650 - "area: Logging" 2651 tests: 2652 - logging 2653 2654LoRa and LoRaWAN: 2655 status: maintained 2656 maintainers: 2657 - JordanYates 2658 collaborators: 2659 - Mani-Sadhasivam 2660 - martinjaeger 2661 - mniestroj 2662 files: 2663 - drivers/lora/ 2664 - include/zephyr/drivers/lora.h 2665 - samples/drivers/lora/ 2666 - include/zephyr/lorawan/ 2667 - subsys/lorawan/ 2668 - samples/subsys/lorawan/ 2669 - include/zephyr/dt-bindings/lora/ 2670 - dts/bindings/lora/ 2671 - doc/connectivity/lora_lorawan/index.rst 2672 labels: 2673 - "area: LoRa" 2674 tests: 2675 - sample.driver.lora 2676 - lorawan 2677 2678MAINTAINERS file: 2679 status: maintained 2680 maintainers: 2681 - MaureenHelm 2682 - nashif 2683 collaborators: 2684 - stephanosio 2685 files: 2686 - MAINTAINERS.yml 2687 labels: 2688 - "area: Process" 2689 description: >- 2690 Zephyr Maintainers File 2691 2692MCU Manager: 2693 status: maintained 2694 maintainers: 2695 - nordicjm 2696 collaborators: 2697 - de-nordic 2698 files: 2699 - subsys/mgmt/mcumgr/ 2700 - include/zephyr/mgmt/mcumgr/ 2701 - samples/subsys/mgmt/mcumgr/ 2702 - tests/subsys/mgmt/mcumgr/ 2703 - doc/services/device_mgmt/ 2704 - scripts/utils/migrate_mcumgr_kconfigs.py 2705 labels: 2706 - "area: mcumgr" 2707 tests: 2708 - mgmt.mcumgr 2709 2710Modbus: 2711 status: maintained 2712 maintainers: 2713 - jfischer-no 2714 files: 2715 - samples/subsys/modbus/ 2716 - include/zephyr/modbus/ 2717 - tests/subsys/modbus/ 2718 - subsys/modbus/ 2719 - doc/services/modbus/ 2720 labels: 2721 - "area: modbus" 2722 tests: 2723 - modbus 2724 2725Modem: 2726 status: maintained 2727 maintainers: 2728 - bjarki-andreasen 2729 collaborators: 2730 - tomi-font 2731 files: 2732 - subsys/modem/ 2733 - include/zephyr/modem/ 2734 - tests/subsys/modem/ 2735 - doc/services/modem/ 2736 - samples/net/cellular_modem/ 2737 - include/zephyr/drivers/cellular.h 2738 labels: 2739 - "area: Modem" 2740 tests: 2741 - modem 2742 2743OSDP: 2744 status: maintained 2745 maintainers: 2746 - sidcha 2747 collaborators: 2748 - adakus 2749 - r2r0 2750 files: 2751 - subsys/mgmt/osdp/ 2752 - include/zephyr/mgmt/osdp.h 2753 - samples/subsys/mgmt/osdp/ 2754 labels: 2755 - "area: OSDP" 2756 tests: 2757 - sample.mgmt.osdp 2758 2759hawkBit: 2760 status: maintained 2761 maintainers: 2762 - maass-hamburg 2763 files: 2764 - subsys/mgmt/hawkbit/ 2765 - include/zephyr/mgmt/hawkbit/ 2766 - include/zephyr/mgmt/hawkbit.h 2767 - samples/subsys/mgmt/hawkbit/ 2768 labels: 2769 - "area: hawkBit" 2770 tests: 2771 - sample.net.hawkbit 2772 2773"mgmt: updatehub": 2774 status: maintained 2775 maintainers: 2776 - nandojve 2777 files: 2778 - subsys/mgmt/updatehub/ 2779 - include/zephyr/mgmt/updatehub.h 2780 - samples/subsys/mgmt/updatehub/ 2781 labels: 2782 - "area: updatehub" 2783 description: >- 2784 UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent 2785 tests: 2786 - sample.net.updatehub 2787 2788Native POSIX/Sim and POSIX arch: 2789 status: maintained 2790 maintainers: 2791 - aescolar 2792 files: 2793 - arch/posix/ 2794 - boards/native/common/ 2795 - boards/native/native_*/ 2796 - boards/native/doc/ 2797 - boards/native/*.rst 2798 - drivers/*/*posix* 2799 - drivers/*/*native* 2800 - drivers/*/*/*posix* 2801 - drivers/*/*/*native* 2802 - dts/posix/ 2803 - include/zephyr/arch/posix/ 2804 - scripts/native_simulator/ 2805 - scripts/valgrind.supp 2806 - soc/native/ 2807 - tests/boards/native_sim/ 2808 labels: 2809 - "area: native port" 2810 description: >- 2811 POSIX architecture and SOC, native_posix & native_sim boards, and related drivers 2812 tests: 2813 - boards.native_sim 2814 2815Networking: 2816 status: maintained 2817 maintainers: 2818 - rlubos 2819 - jukkar 2820 collaborators: 2821 - pdgendt 2822 - tbursztyka 2823 - ssharks 2824 files: 2825 - scripts/net/ 2826 - drivers/net/ 2827 - include/zephyr/net/ 2828 - samples/net/ 2829 - subsys/net/ 2830 - doc/connectivity/networking/ 2831 - tests/net/ 2832 - tests/unit/net_timeout/ 2833 files-exclude: 2834 - doc/connectivity/networking/api/gptp.rst 2835 - doc/connectivity/networking/api/ieee802154.rst 2836 - doc/connectivity/networking/api/ptp.rst 2837 - doc/connectivity/networking/api/wifi.rst 2838 - doc/connectivity/networking/api/http*.rst 2839 - include/zephyr/net/gptp.h 2840 - include/zephyr/net/ieee802154*.h 2841 - include/zephyr/net/ptp.h 2842 - include/zephyr/net/wifi*.h 2843 - include/zephyr/net/buf.h 2844 - include/zephyr/net/dhcpv4*.h 2845 - include/zephyr/net/http/ 2846 - samples/net/gptp/ 2847 - samples/net/sockets/coap_*/ 2848 - samples/net/sockets/*http*/ 2849 - samples/net/lwm2m_client/ 2850 - samples/net/wifi/ 2851 - samples/net/dhcpv4_client/ 2852 - subsys/net/l2/ethernet/gptp/ 2853 - subsys/net/l2/ieee802154/ 2854 - subsys/net/l2/wifi/ 2855 - subsys/net/lib/coap/ 2856 - subsys/net/lib/config/ieee802154* 2857 - subsys/net/lib/http/ 2858 - subsys/net/lib/lwm2m/ 2859 - subsys/net/lib/ptp/ 2860 - subsys/net/lib/tls_credentials/ 2861 - subsys/net/lib/dhcpv4/ 2862 - tests/net/dhcpv4/ 2863 - tests/net/ieee802154/ 2864 - tests/net/lib/http*/ 2865 - tests/net/wifi/ 2866 labels: 2867 - "area: Networking" 2868 tests: 2869 - net 2870 2871"Networking: BSD sockets": 2872 status: maintained 2873 maintainers: 2874 - rlubos 2875 - jukkar 2876 files: 2877 - samples/net/sockets/ 2878 - subsys/net/lib/sockets/ 2879 - tests/net/socket/ 2880 labels: 2881 - "area: Networking" 2882 - "area: Sockets" 2883 tests: 2884 - net.socket 2885 2886"Networking Buffers": 2887 status: maintained 2888 maintainers: 2889 - jhedberg 2890 collaborators: 2891 - rlubos 2892 - tbursztyka 2893 - jukkar 2894 files: 2895 - doc/services/net_buf/ 2896 - include/zephyr/net/buf.h 2897 - include/zephyr/net_buf.h 2898 - lib/net_buf/ 2899 - tests/lib/net_buf/ 2900 labels: 2901 - "area: Networking Buffers" 2902 tests: 2903 - libraries.net_buf 2904 2905"Networking: Connection Manager": 2906 status: maintained 2907 maintainers: 2908 - rlubos 2909 collaborators: 2910 - glarsennordic 2911 - jukkar 2912 files: 2913 - include/zephyr/net/conn_mgr*.h 2914 - subsys/net/conn_mgr/ 2915 - tests/net/conn_mgr_monitor/ 2916 - tests/net/conn_mgr_conn/ 2917 - doc/connectivity/networking/conn_mgr/ 2918 labels: 2919 - "area: Networking" 2920 tests: 2921 - net.conn_mgr 2922 2923"Networking: CoAP": 2924 status: maintained 2925 maintainers: 2926 - rlubos 2927 collaborators: 2928 - pdgendt 2929 files: 2930 - subsys/net/lib/coap/ 2931 - samples/net/sockets/coap_*/ 2932 - tests/net/lib/coap/ 2933 labels: 2934 - "area: Networking" 2935 tests: 2936 - net.coap 2937 2938"Networking: DHCPv4": 2939 status: maintained 2940 maintainers: 2941 - rlubos 2942 - jukkar 2943 collaborators: 2944 - maass-hamburg 2945 files: 2946 - subsys/net/lib/dhcpv4/ 2947 - samples/net/dhcpv4_client/ 2948 - tests/net/dhcpv4/ 2949 - include/zephyr/net/dhcpv4*.h 2950 labels: 2951 - "area: Networking" 2952 tests: 2953 - net.dhcpv4_client 2954 - net.dhcpv4_server 2955 2956"Networking: gPTP": 2957 status: maintained 2958 maintainers: 2959 - jukkar 2960 files: 2961 - doc/connectivity/networking/api/gptp.rst 2962 - include/zephyr/net/gptp.h 2963 - samples/net/gptp/ 2964 - subsys/net/l2/ethernet/gptp/ 2965 labels: 2966 - "area: Networking" 2967 tests: 2968 - sample.net.gptp 2969 2970"Networking: LWM2M": 2971 status: maintained 2972 maintainers: 2973 - rlubos 2974 collaborators: 2975 - SeppoTakalo 2976 files: 2977 - samples/net/lwm2m_client/ 2978 - tests/net/lib/lwm2m/ 2979 - subsys/net/lib/lwm2m/ 2980 labels: 2981 - "area: LWM2M" 2982 tests: 2983 - net.lwm2m 2984 2985"Networking: MQTT": 2986 status: maintained 2987 maintainers: 2988 - rlubos 2989 files: 2990 - subsys/net/lib/mqtt/ 2991 - tests/net/lib/mqtt_*/ 2992 - samples/net/cloud/mqtt_azure/ 2993 - samples/net/mqtt_publisher/ 2994 files-exclude: 2995 - tests/net/lib/mqtt_sn*/ 2996 labels: 2997 - "area: Networking" 2998 tests: 2999 - net.mqtt 3000 3001"Networking: MQTT-SN": 3002 status: maintained 3003 maintainers: 3004 - rlubos 3005 collaborators: 3006 - BeckmaR 3007 files: 3008 - subsys/net/lib/mqtt_sn/ 3009 - tests/net/lib/mqtt_sn*/ 3010 - samples/net/mqtt_sn_publisher/ 3011 labels: 3012 - "area: Networking" 3013 tests: 3014 - net.mqtt_sn 3015 3016"Networking: PTP": 3017 status: maintained 3018 maintainers: 3019 - awojasinski 3020 files: 3021 - doc/connectivity/networking/api/ptp.rst 3022 - include/zephyr/net/ptp.h 3023 - subsys/net/lib/ptp/ 3024 - samples/net/ptp/ 3025 labels: 3026 - "area: PTP" 3027 tests: 3028 - sample.net.ptp 3029 3030"Networking: Native IEEE 802.15.4": 3031 status: odd fixes 3032 collaborators: 3033 - rlubos 3034 - jukkar 3035 files: 3036 - doc/connectivity/networking/api/ieee802154.rst 3037 - include/zephyr/net/ieee802154*.h 3038 - subsys/net/l2/ieee802154/ 3039 - subsys/net/lib/config/ieee802154* 3040 - tests/net/ieee802154/ 3041 labels: 3042 - "area: IEEE 802.15.4" 3043 tests: 3044 - net.ieee802154 3045 3046"Networking: OpenThread": 3047 status: maintained 3048 maintainers: 3049 - rlubos 3050 collaborators: 3051 - pdgendt 3052 - canisLupus1313 3053 - mariuszpos 3054 - edmont 3055 - maciejbaczmanski 3056 files: 3057 - subsys/net/l2/openthread/ 3058 - samples/net/openthread/ 3059 - tests/subsys/openthread/ 3060 labels: 3061 - "area: Networking" 3062 - "area: OpenThread" 3063 tests: 3064 - openthread 3065 3066"Networking: Wi-Fi": 3067 status: maintained 3068 maintainers: 3069 - jukkar 3070 collaborators: 3071 - rlubos 3072 - krish2718 3073 - MaochenWang1 3074 files: 3075 - doc/connectivity/networking/api/wifi.rst 3076 - include/zephyr/net/wifi*.h 3077 - subsys/net/l2/wifi/ 3078 - samples/net/wifi/ 3079 - tests/net/wifi/ 3080 labels: 3081 - "area: Networking" 3082 - "area: Wi-Fi" 3083 tests: 3084 - net.wifi 3085 3086"Networking: HTTP": 3087 status: maintained 3088 maintainers: 3089 - jukkar 3090 - rlubos 3091 collaborators: 3092 - mrodgers-witekio 3093 files: 3094 - doc/connectivity/networking/api/http*.rst 3095 - include/zephyr/net/http/ 3096 - subsys/net/lib/http/ 3097 - samples/net/sockets/*http*/ 3098 - tests/net/lib/http*/ 3099 labels: 3100 - "area: Networking" 3101 - "area: HTTP" 3102 tests: 3103 - net.http 3104 3105NIOS-2 arch: 3106 status: maintained 3107 maintainers: 3108 - nashif 3109 files: 3110 - arch/nios2/ 3111 - dts/nios2/intel/ 3112 - boards/common/nios2.board.cmake 3113 - soc/altr/*nios2*/ 3114 - include/zephyr/arch/nios2/ 3115 - tests/boards/altera_max10/ 3116 - boards/qemu/nios2/ 3117 - boards/altr/max10/ 3118 - scripts/support/quartus-flash.py 3119 labels: 3120 - "area: NIOS2" 3121 tests: 3122 - boards.altera_max10 3123 3124nRF BSIM: 3125 status: maintained 3126 maintainers: 3127 - aescolar 3128 files: 3129 - boards/native/nrf_bsim/ 3130 - tests/boards/nrf52_bsim/ 3131 - tests/bsim/ 3132 - doc/develop/test/bsim.rst 3133 - .github/workflows/bsim-tests* 3134 files-regex-exclude: 3135 - tests\/bsim\/.*\/.*\.([ch]|conf) 3136 - tests\/bsim\/.*\/(CMakeLists|Kconfig).* 3137 labels: 3138 - "platform: nRF BSIM" 3139 tests: 3140 - boards.nrf52_bsim 3141 3142Open AMP: 3143 status: maintained 3144 maintainers: 3145 - carlocaione 3146 files: 3147 - lib/open-amp/ 3148 - samples/subsys/ipc/openamp/ 3149 - samples/subsys/ipc/openamp_rsc_table/ 3150 - samples/subsys/ipc/rpmsg_service/ 3151 labels: 3152 - "area: Open AMP" 3153 tests: 3154 - sample.ipc.openamp 3155 3156PHYTEC Platforms: 3157 status: maintained 3158 maintainers: 3159 - dnltz 3160 collaborators: 3161 - jonas-rem 3162 - pefech 3163 files: 3164 - boards/phytec/ 3165 labels: 3166 - "platform: PHYTEC" 3167 3168POSIX API layer: 3169 status: maintained 3170 maintainers: 3171 - cfriedt 3172 collaborators: 3173 - ycsin 3174 files: 3175 - include/zephyr/posix/ 3176 - lib/posix/ 3177 - tests/posix/ 3178 - samples/posix/ 3179 - tests/lib/fdtable/ 3180 - doc/services/portability/posix/ 3181 labels: 3182 - "area: POSIX" 3183 tests: 3184 - libraries.fdtable 3185 - portability.posix 3186 3187Power management: 3188 status: maintained 3189 maintainers: 3190 - ceolin 3191 - bjarki-andreasen 3192 collaborators: 3193 - nashif 3194 - teburd 3195 - tmleman 3196 - JordanYates 3197 files: 3198 - include/zephyr/pm/ 3199 - samples/subsys/pm/ 3200 - subsys/pm/ 3201 - tests/subsys/pm/ 3202 - doc/services/pm/ 3203 - drivers/power_domain/ 3204 - dts/bindings/power/ 3205 - include/zephyr/dt-bindings/power/ 3206 labels: 3207 - "area: Power Management" 3208 tests: 3209 - pm 3210 3211"Quicklogic Platform": 3212 status: odd fixes 3213 files: 3214 - soc/quicklogic/ 3215 - dts/arm/quicklogic/ 3216 labels: 3217 - "platform: Quicklogic" 3218 3219RISCV arch: 3220 status: maintained 3221 maintainers: 3222 - fkokosinski 3223 - kgugala 3224 - tgorochowik 3225 collaborators: 3226 - mgielda 3227 - katsuster 3228 - edersondisouza 3229 - carlocaione 3230 - npitre 3231 - ycsin 3232 files: 3233 - arch/riscv/ 3234 - boards/enjoydigital/litex_vexriscv/ 3235 - boards/lowrisc/opentitan_earlgrey/ 3236 - boards/qemu/riscv*/ 3237 - boards/sifive/ 3238 - boards/sparkfun/red_v_things_plus/ 3239 - boards/starfive/ 3240 - dts/bindings/riscv/ 3241 - dts/riscv/ 3242 - include/zephyr/arch/riscv/ 3243 - soc/common/riscv-privileged/ 3244 - soc/sifive/ 3245 - soc/starfive/ 3246 - soc/qemu/virt_riscv/ 3247 - tests/arch/riscv/ 3248 - doc/hardware/arch/risc-v.rst 3249 - drivers/interrupt_controller/intc_plic.c 3250 labels: 3251 - "area: RISCV" 3252 tests: 3253 - arch.riscv 3254 3255Retention: 3256 status: maintained 3257 maintainers: 3258 - nordicjm 3259 files: 3260 - dts/bindings/retention/ 3261 - include/zephyr/retention/ 3262 - subsys/retention/ 3263 - doc/services/retention/ 3264 labels: 3265 - "area: Retention" 3266 3267Samples: 3268 status: maintained 3269 maintainers: 3270 - kartben 3271 collaborators: 3272 - nashif 3273 files: 3274 - samples/ 3275 labels: 3276 - "area: Samples" 3277 3278Sensor Subsystem: 3279 status: maintained 3280 maintainers: 3281 - lixuzha 3282 - ghu0510 3283 - yperess 3284 collaborators: 3285 - qianruh 3286 files: 3287 - dts/bindings/sensor/zephyr,sensing.yaml 3288 - dts/bindings/sensor/zephyr,sensing*.yaml 3289 - include/zephyr/sensing/ 3290 - doc/services/sensing/ 3291 - subsys/sensing/ 3292 - samples/subsys/sensing/ 3293 - tests/subsys/sensing/ 3294 labels: 3295 - "area: Sensor Subsystem" 3296 tests: 3297 - sample.sensing 3298 - sensing.api 3299 3300Stats: 3301 status: odd fixes 3302 files: 3303 - subsys/stats/ 3304 - include/zephyr/stats/stats.h 3305 labels: 3306 - "area: Stats" 3307 3308Twister: 3309 status: maintained 3310 maintainers: 3311 - nashif 3312 collaborators: 3313 - PerMac 3314 - hakehuang 3315 - golowanow 3316 - gchwier 3317 - LukaszMrugala 3318 - KamilxPaszkiet 3319 files: 3320 - scripts/twister 3321 - scripts/schemas/twister/ 3322 - scripts/pylib/twister/ 3323 - scripts/tests/twister/ 3324 - scripts/tests/twister_blackbox/ 3325 - doc/develop/test/twister.rst 3326 - scripts/pylib/pytest-twister-harness/ 3327 - doc/develop/test/pytest.rst 3328 - tests/test_config.yaml 3329 - scripts/utils/twister_to_list.py 3330 - tests/robot/common.robot 3331 labels: 3332 - "area: Twister" 3333 3334Settings: 3335 status: odd fixes 3336 files: 3337 - include/zephyr/settings/ 3338 - subsys/settings/ 3339 - tests/subsys/settings/ 3340 - samples/subsys/settings/ 3341 - doc/services/settings/ 3342 labels: 3343 - "area: Settings" 3344 tests: 3345 - settings 3346 3347Shell: 3348 status: maintained 3349 maintainers: 3350 - jakub-uC 3351 collaborators: 3352 - carlescufi 3353 files: 3354 - include/zephyr/shell/ 3355 - samples/subsys/shell/ 3356 - subsys/shell/ 3357 - tests/subsys/shell/ 3358 - doc/services/shell/ 3359 labels: 3360 - "area: Shell" 3361 tests: 3362 - shell 3363 3364Shields: 3365 status: maintained 3366 maintainers: 3367 - kartben 3368 collaborators: 3369 - avisconti 3370 - jfischer-no 3371 - erwango 3372 files: 3373 - boards/shields/ 3374 - doc/hardware/porting/shields.rst 3375 - samples/shields/ 3376 labels: 3377 - "area: Shields" 3378 tests: 3379 - sample.shields 3380 3381SPARC arch: 3382 status: odd fixes 3383 collaborators: 3384 - tbr-tt 3385 files: 3386 - arch/sparc/ 3387 - include/zephyr/arch/sparc/ 3388 - dts/sparc/ 3389 - boards/qemu/leon3/ 3390 labels: 3391 - "area: SPARC" 3392 3393Gaisler Platforms: 3394 status: odd fixes 3395 collaborators: 3396 - tbr-tt 3397 files: 3398 - dts/sparc/gaisler/ 3399 - soc/gaisler/ 3400 - boards/gaisler/ 3401 labels: 3402 - "area: SPARC" 3403 3404State machine framework: 3405 status: maintained 3406 maintainers: 3407 - sambhurst 3408 collaborators: 3409 - keith-zephyr 3410 - glenn-andrews 3411 files: 3412 - doc/services/smf/ 3413 - include/zephyr/smf.h 3414 - lib/smf/ 3415 - tests/lib/smf/ 3416 - samples/subsys/smf/ 3417 labels: 3418 - "area: State Machine Framework" 3419 tests: 3420 - libraries.smf 3421 3422ADI Platforms: 3423 status: maintained 3424 maintainers: 3425 - MaureenHelm 3426 collaborators: 3427 - ozersa 3428 - ttmut 3429 - galak 3430 - microbuilder 3431 files: 3432 - boards/adi/ 3433 - boards/shields/pmod_acl/ 3434 - drivers/*/*max* 3435 - drivers/*/*max*/ 3436 - drivers/dac/dac_ltc* 3437 - drivers/ethernet/eth_adin* 3438 - drivers/mdio/mdio_adin* 3439 - drivers/regulator/regulator_adp5360* 3440 - drivers/sensor/adi/ 3441 - dts/arm/adi/ 3442 - dts/bindings/*/adi,* 3443 - dts/bindings/*/lltc,* 3444 - dts/bindings/*/maxim,* 3445 - soc/adi/ 3446 labels: 3447 - "platform: ADI" 3448 3449Broadcom Platforms: 3450 status: odd fixes 3451 files: 3452 - dts/arm/broadcom/ 3453 - soc/brcm/ 3454 - boards/brcm/ 3455 3456GD32 Platforms: 3457 status: maintained 3458 maintainers: 3459 - nandojve 3460 collaborators: 3461 - gmarull 3462 - soburi 3463 - cameled 3464 files: 3465 - boards/gd/ 3466 - drivers/*/*gd32* 3467 - dts/*/gd/ 3468 - dts/bindings/*/*gd32* 3469 - scripts/west_commands/*/*gd32* 3470 - soc/gd/gd32/ 3471 labels: 3472 - "platform: GD32" 3473 description: >- 3474 GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval 3475 boards. 3476 3477Synopsys Platforms: 3478 status: maintained 3479 maintainers: 3480 - ruuddw 3481 - evgeniy-paltsev 3482 collaborators: 3483 - abrodkin 3484 files: 3485 - soc/snps/ 3486 - boards/snps/ 3487 - boards/qemu/arc/ 3488 - samples/boards/arc_secure_services/ 3489 - scripts/west_commands/runners/mdb.py 3490 - scripts/west_commands/tests/test_mdb.py 3491 - scripts/west_commands/runners/nsim.py 3492 - cmake/emu/nsim.cmake 3493 - drivers/serial/uart_hostlink.c 3494 - drivers/serial/Kconfig.hostlink 3495 labels: 3496 - "platform: Synopsys" 3497 3498Nuvoton NPCX Platforms: 3499 status: maintained 3500 maintainers: 3501 - MulinChao 3502 - ChiHuaL 3503 collaborators: 3504 - TomChang19 3505 - alvsun 3506 - sjg20 3507 - keith-zephyr 3508 - jackrosenthal 3509 - fabiobaltieri 3510 files: 3511 - soc/nuvoton/npcx/ 3512 - boards/nuvoton/npcx*/ 3513 - dts/arm/nuvoton/ 3514 - dts/bindings/*/*npcx* 3515 - drivers/*/*_npcx*.c 3516 labels: 3517 - "platform: Nuvoton NPCX" 3518 3519Nuvoton Numicro Numaker Platforms: 3520 status: maintained 3521 maintainers: 3522 - cyliangtw 3523 collaborators: 3524 - ssekar15 3525 files: 3526 - soc/nuvoton/numaker/ 3527 - soc/nuvoton/numicro/ 3528 - boards/nuvoton/numaker*/ 3529 - dts/arm/nuvoton/ 3530 - dts/bindings/*/*numicro* 3531 - dts/bindings/*/*numaker* 3532 - drivers/*/*_numicro* 3533 - drivers/*/*_numaker* 3534 labels: 3535 - "platform: Nuvoton Numicro Numaker" 3536 3537Nuvoton NPCM Platforms: 3538 status: maintained 3539 maintainers: 3540 - maxdog988 3541 - warp5tw 3542 - jc849 3543 files: 3544 - soc/nuvoton/npcm/ 3545 - boards/nuvoton/npcm*/ 3546 - dts/arm/nuvoton/ 3547 - drivers/*/*_npcm* 3548 - include/zephyr/dt-bindings/*/npcm_* 3549 labels: 3550 - "platform: Nuvoton NPCM" 3551 3552Raspberry Pi Pico Platforms: 3553 status: maintained 3554 maintainers: 3555 - soburi 3556 collaborators: 3557 - yonsch 3558 files: 3559 - boards/raspberrypi/ 3560 - boards/adafruit/kb2040/ 3561 - boards/sparkfun/pro_micro_rp2040/ 3562 - dts/arm/raspberrypi/rpi_pico/ 3563 - dts/bindings/*/raspberrypi,pico* 3564 - drivers/*/*rpi_pico 3565 - drivers/*/*rpi_pico*/ 3566 - drivers/*/*rpi_pico*.c 3567 - soc/raspberrypi/ 3568 labels: 3569 - "platform: Raspberry Pi Pico" 3570 3571Silabs Platforms: 3572 status: maintained 3573 maintainers: 3574 - jhedberg 3575 collaborators: 3576 - jerome-pouiller 3577 - asmellby 3578 files: 3579 - soc/silabs/ 3580 - boards/silabs/ 3581 - dts/arm/silabs/ 3582 - dts/bindings/*/silabs* 3583 - drivers/*/*gecko* 3584 - drivers/bluetooth/hci/hci_silabs_* 3585 - drivers/*/*silabs* 3586 labels: 3587 - "platform: Silabs" 3588 3589Silabs SiM3U Platforms: 3590 status: maintained 3591 maintainers: 3592 - rettichschnidi 3593 collaborators: 3594 - M1cha 3595 - asmellby 3596 - jerome-pouiller 3597 - jhedberg 3598 files: 3599 - boards/silabs/dev_kits/sim3u1xx_dk/ 3600 - drivers/*/*_si32* 3601 - drivers/*/Kconfig.si32 3602 - dts/arm/silabs/sim3u* 3603 - dts/bindings/*/*silabs,si32* 3604 - include/zephyr/dt-bindings/pinctrl/*si32* 3605 - soc/silabs/silabs_sim3/ 3606 labels: 3607 - "platform: Silabs SiM3U" 3608 description: >- 3609 SiM3U SoCs, dts files, and related drivers. Boards based on SiM3U SoCs. 3610 3611Gardena Platforms: 3612 status: maintained 3613 maintainers: 3614 - rettichschnidi 3615 collaborators: 3616 - M1cha 3617 files: 3618 - boards/gardena/ 3619 labels: 3620 - "platform: Gardena" 3621 description: >- 3622 Gardena board(s). 3623 3624Intel Platforms (X86): 3625 status: maintained 3626 maintainers: 3627 - edersondisouza 3628 collaborators: 3629 - najumon1980 3630 - teburd 3631 - dcpleung 3632 - ceolin 3633 files: 3634 - boards/intel/adl/ 3635 - boards/intel/ehl/ 3636 - boards/intel/rpl/ 3637 - dts/x86/intel/ 3638 - soc/intel/atom/ 3639 - soc/intel/lakemont/ 3640 - soc/intel/*_lake/ 3641 - drivers/timer/Kconfig.x86 3642 - drivers/timer/hpet.c 3643 - drivers/timer/apic* 3644 labels: 3645 - "platform: X86" 3646 3647Intel Platforms (Xtensa): 3648 status: maintained 3649 maintainers: 3650 - dcpleung 3651 collaborators: 3652 - andyross 3653 - lyakh 3654 - lgirdwood 3655 - kv2019i 3656 - ceolin 3657 - tmleman 3658 - softwarecki 3659 - jxstelter 3660 - marcinszkudlinski 3661 - nashif 3662 files: 3663 - boards/intel/adsp/ 3664 - soc/intel/intel_adsp/ 3665 - dts/xtensa/intel/ 3666 - tests/boards/intel_adsp/ 3667 - samples/boards/intel/adsp/ 3668 - dts/bindings/*/intel,adsp* 3669 - scripts/west_commands/runners/intel_adsp.py 3670 labels: 3671 - "platform: Intel ADSP" 3672 3673Intel Platforms (ISH): 3674 status: maintained 3675 maintainers: 3676 - kwd-doodling 3677 collaborators: 3678 - teburd 3679 - likongintel 3680 - nashif 3681 files: 3682 - boards/intel/ish/ 3683 - soc/intel/intel_ish/ 3684 - dts/x86/intel/intel_ish* 3685 - dts/bindings/*/intel,sedi* 3686 - drivers/*/*sedi* 3687 labels: 3688 - "platform: Intel ISH" 3689 3690Intel Platforms (Agilex): 3691 status: maintained 3692 maintainers: 3693 - gdengi 3694 collaborators: 3695 - nbalabak 3696 - teikheng 3697 files: 3698 - boards/intel/socfpga/ 3699 - soc/intel/intel_socfpga/ 3700 - dts/arm64/intel/ 3701 - dts/bindings/*/intel,agilex* 3702 - dts/arm/intel_socfpga_std/ 3703 labels: 3704 - "platform: Intel SoC FPGA Agilex" 3705 3706NXP Drivers: 3707 status: maintained 3708 maintainers: 3709 - dleach02 3710 - mmahadevan108 3711 collaborators: 3712 - decsny 3713 - manuargue 3714 - dbaluta 3715 files-regex: 3716 - ^drivers/.*nxp.* 3717 - ^drivers/.*mcux.* 3718 files: 3719 - drivers/*/*imx* 3720 - drivers/*/*lpc*.c 3721 - drivers/*/*mcux*.c 3722 - drivers/*/*.mcux 3723 - drivers/*/*.nxp 3724 - drivers/*/*nxp* 3725 - drivers/*/*/*kinetis* 3726 - drivers/misc/*/nxp* 3727 - include/zephyr/dt-bindings/*/*nxp* 3728 - include/zephyr/dt-bindings/*/*mcux* 3729 - include/zephyr/dt-bindings/inputmux/ 3730 - include/zephyr/dt-bindings/rdc/ 3731 - include/zephyr/drivers/*/*nxp* 3732 - include/zephyr/drivers/*/*mcux* 3733 - arch/arm/core/mpu/nxp_mpu.c 3734 - dts/bindings/*/nxp* 3735 files-exclude: 3736 - drivers/wifi/nxp/ 3737 - drivers/usb/*/*mcux* 3738 files-regex-exclude: 3739 - .*s32.* 3740 labels: 3741 - "platform: NXP Drivers" 3742 description: NXP Drivers 3743 3744NXP MCUX USB: 3745 status: maintained 3746 maintainers: 3747 - mmahadevan108 3748 - MarkWangChinese 3749 files: 3750 - drivers/usb/*/*mcux* 3751 labels: 3752 - "platform: NXP Drivers" 3753 description: NXP MCUX USB shim drivers 3754 3755NXP Platforms (MCU): 3756 status: maintained 3757 maintainers: 3758 - dleach02 3759 - mmahadevan108 3760 collaborators: 3761 - DerekSnell 3762 - yvanderv 3763 - EmilioCBen 3764 - decsny 3765 - butok 3766 files: 3767 - boards/nxp/mimxrt*/ 3768 - boards/nxp/frdm*/ 3769 - boards/nxp/lpcxpress*/ 3770 - boards/nxp/twr_*/ 3771 - boards/nxp/vmu*/ 3772 - boards/nxp/*rw*/ 3773 - soc/nxp/imxrt/ 3774 - soc/nxp/kinetis/ 3775 - soc/nxp/lpc/ 3776 - soc/nxp/rw/ 3777 - soc/nxp/mcx/ 3778 - dts/arm/nxp/ 3779 - samples/boards/nxp*/ 3780 files-exclude: 3781 - dts/arm/nxp/nxp_imx* 3782 files-regex-exclude: 3783 - .*s32.* 3784 labels: 3785 - "platform: NXP" 3786 description: NXP MCU Platforms supported by MCUXpresso suite 3787 3788NXP Platforms (S32): 3789 status: maintained 3790 maintainers: 3791 - manuargue 3792 collaborators: 3793 - PetervdPerk-NXP 3794 - bperseghetti 3795 - Dat-NguyenDuy 3796 files: 3797 - boards/nxp/s32*/ 3798 - boards/nxp/mr_canhubk3/ 3799 - boards/nxp/ucans32k1sic/ 3800 - boards/common/*nxp_s32* 3801 - soc/nxp/s32/ 3802 - drivers/*/*nxp_s32* 3803 - drivers/misc/*nxp_s32*/ 3804 - dts/bindings/*/nxp,s32* 3805 - dts/arm/nxp/*s32* 3806 - samples/boards/nxp/s32/ 3807 - include/zephyr/dt-bindings/*/nxp-s32* 3808 - include/zephyr/dt-bindings/*/nxp_s32* 3809 - include/zephyr/drivers/*/*nxp_s32* 3810 labels: 3811 - "platform: NXP S32" 3812 description: NXP S32 platforms and S32-specific drivers 3813 3814NXP Platforms (MPU): 3815 status: maintained 3816 maintainers: 3817 - JiafeiPan 3818 collaborators: 3819 - dleach02 3820 - dbaluta 3821 - iuliana-prodan 3822 - yvanderv 3823 files: 3824 - dts/arm64/nxp/ 3825 - dts/arm/nxp/nxp_imx* 3826 - soc/nxp/imx/ 3827 - soc/nxp/layerscape/ 3828 files-regex: 3829 - boards/nxp/m?imx[^(rt)].*/ 3830 labels: 3831 - "platform: NXP MPU" 3832 description: NXP MPU platforms 3833 3834NXP Platforms (Xtensa): 3835 status: maintained 3836 maintainers: 3837 - dbaluta 3838 collaborators: 3839 - iuliana-prodan 3840 files: 3841 - soc/nxp/imx/*/adsp/ 3842 - soc/nxp/imxrt/imxrt5xx/f1/ 3843 labels: 3844 - "platform: NXP Xtensa" 3845 description: NXP Xtensa platforms 3846 3847Microchip MEC Platforms: 3848 status: maintained 3849 maintainers: 3850 - jvasanth1 3851 collaborators: 3852 - VenkatKotakonda 3853 - albertofloyd 3854 files: 3855 - boards/microchip/mec*/ 3856 - dts/arm/microchip/ 3857 - soc/microchip/mec/ 3858 - drivers/*/*mchp*.c 3859 - tests/boards/mec15xxevb_assy6853/ 3860 - tests/boards/mec172xevb_assy6906/ 3861 - dts/bindings/*/microchip,mec* 3862 - dts/bindings/*/microchip,xec* 3863 labels: 3864 - "platform: Microchip MEC" 3865 3866Microchip RISC-V Platforms: 3867 status: maintained 3868 maintainers: 3869 - fkokosinski 3870 - kgugala 3871 - tgorochowik 3872 files: 3873 - boards/microchip/m2gl025_miv/ 3874 - boards/microchip/mpfs_icicle/ 3875 - dts/riscv/microchip/ 3876 - soc/microchip/miv/ 3877 labels: 3878 - "platform: Microchip RISC-V" 3879 3880Microchip SAM Platforms: 3881 status: maintained 3882 maintainers: 3883 - nandojve 3884 collaborators: 3885 - attie-argentum 3886 - pdgendt 3887 - mnkp 3888 - stephanosio 3889 files: 3890 - boards/atmel/ 3891 - dts/arm/atmel/ 3892 - soc/atmel/ 3893 - drivers/*/*sam*.c 3894 - dts/bindings/*/atmel,* 3895 labels: 3896 - "platform: Microchip SAM" 3897 3898nRF Platforms: 3899 status: maintained 3900 maintainers: 3901 - anangl 3902 - masz-nordic 3903 collaborators: 3904 - jaz1-nordic 3905 - kl-cruz 3906 - magp-nordic 3907 - nika-nordic 3908 files: 3909 - boards/nordic/ 3910 - drivers/*/*nrf*.c 3911 - drivers/*/*nordic*/ 3912 - soc/nordic/ 3913 - samples/boards/nordic/ 3914 - dts/*/nordic/ 3915 - dts/bindings/*/nordic,* 3916 - tests/drivers/*/*nrf*/ 3917 - snippets/nordic*/ 3918 labels: 3919 - "platform: nRF" 3920 3921OpenTitan Platforms: 3922 status: maintained 3923 maintainers: 3924 - snematbakhsh 3925 files: 3926 - boards/lowrisc/opentitan_earlgrey/ 3927 - drivers/*/*opentitan* 3928 - dts/bindings/*/*opentitan* 3929 - dts/riscv/lowrisc/*opentitan* 3930 - soc/lowrisc/opentitan/ 3931 labels: 3932 - "platform: OpenTitan" 3933 description: >- 3934 OpenTitan boards, SOCs, dts files and related drivers. 3935 3936Renesas SmartBond Platforms: 3937 status: maintained 3938 maintainers: 3939 - ioannis-karachalios 3940 - andrzej-kaczmarek 3941 - blauret 3942 collaborators: 3943 - ydamigos 3944 files: 3945 - boards/renesas/da14*/ 3946 - drivers/*/*smartbond* 3947 - drivers/pinctrl/renesas/smartbond/ 3948 - dts/arm/renesas/smartbond/ 3949 - dts/bindings/*/renesas,smartbond* 3950 - soc/renesas/smartbond/ 3951 labels: 3952 - "platform: Renesas SmartBond" 3953 description: >- 3954 Renesas SmartBond SOCs, dts files, and related drivers. Renesas boards based 3955 on SmartBond SoCs. 3956 3957Renesas RA Platforms: 3958 status: maintained 3959 maintainers: 3960 - soburi 3961 - KhiemNguyenT 3962 collaborators: 3963 - duynguyenxa 3964 - thaoluonguw 3965 files: 3966 - boards/arduino/uno_r4/ 3967 - boards/renesas/*ra*/ 3968 - drivers/*/*renesas_ra* 3969 - drivers/pinctrl/renesas/ra/ 3970 - dts/arm/renesas/ra/ 3971 - dts/bindings/*/*renesas,ra* 3972 - soc/renesas/ra/ 3973 labels: 3974 - "platform: Renesas RA" 3975 description: >- 3976 Renesas RA SOCs, dts files, and related drivers. Boards based 3977 on Renesas RA SoCs. 3978 3979Renesas RZ Platforms: 3980 status: maintained 3981 maintainers: 3982 - tgorochowik 3983 files: 3984 - boards/renesas/rzt2m_*/ 3985 - drivers/*/*rzt2m* 3986 - drivers/pinctrl/renesas/rz/ 3987 - dts/arm/renesas/rz/ 3988 - dts/bindings/*/*rzt2m* 3989 - soc/renesas/rzt2m/ 3990 labels: 3991 - "platforms: Renesas RZ" 3992 description: >- 3993 Renesas RZ SOCs, dts files, and related drivers. Renesas boards based 3994 on RZ SoCs. 3995 3996Renesas R-Car Platforms: 3997 status: maintained 3998 maintainers: 3999 - aaillet 4000 - lorc 4001 collaborators: 4002 - xakep-amatop 4003 files: 4004 - boards/renesas/rcar_*/ 4005 - drivers/*/*rcar* 4006 - drivers/clock_control/*cpg_mssr* 4007 - drivers/pinctrl/renesas/rcar/ 4008 - dts/arm/renesas/rcar/ 4009 - dts/arm64/renesas/ 4010 - dts/bindings/*/*rcar* 4011 - soc/renesas/rcar/ 4012 labels: 4013 - "platform: Renesas R-Car" 4014 description: >- 4015 Renesas R-Car SOCs, dts files (Cortex-R and Cortex-A sides). 4016 Renesas boards based on R-Car SOCs (Cortex-R and Cortex-A sides). 4017 Renesas R-Car related drivers. 4018 4019STM32 Platforms: 4020 status: maintained 4021 maintainers: 4022 - erwango 4023 collaborators: 4024 - FRASTM 4025 - gautierg-st 4026 - GeorgeCGV 4027 - marwaiehm-st 4028 - mathieuchopstm 4029 - djiatsaf-st 4030 files: 4031 - boards/st/ 4032 - drivers/*/*stm32*.c 4033 - drivers/*/*stm32*.h 4034 - drivers/*/*/*stm32* 4035 - drivers/*/*stm32* 4036 - dts/arm/st/ 4037 - dts/bindings/*/*stm32* 4038 - soc/st/stm32/ 4039 - samples/boards/st/ 4040 files-exclude: 4041 - boards/st/*wb*/ 4042 - drivers/bluetooth/hci/*stm32*.c 4043 - soc/st/stm32/stm32wb*/ 4044 labels: 4045 - "platform: STM32" 4046 description: >- 4047 STM32 SOCs, dts files and related drivers. ST development boards. 4048 4049STM32 Wireless Platforms: 4050 status: maintained 4051 maintainers: 4052 - erwango 4053 collaborators: 4054 - asm5878 4055 - HoZHel 4056 - benothmn-st 4057 - mathieuchopstm 4058 files: 4059 - boards/shields/x_nucleo_bnrg2a1/ 4060 - boards/shields/x_nucleo_idb05a1/ 4061 - boards/shields/x_nucleo_wb05kn1/ 4062 - boards/st/*wb*/ 4063 - drivers/bluetooth/hci/*stm32*.c 4064 - drivers/bluetooth/hci/hci_spi_st.c 4065 - soc/st/stm32/stm32wb*/ 4066 labels: 4067 - "platform: STM32" 4068 description: >- 4069 STM32WB SOCs, dts files and related drivers. STM32WB development boards 4070 and ST bluetooth shields. 4071 4072Espressif Platforms: 4073 status: maintained 4074 maintainers: 4075 - sylvioalves 4076 collaborators: 4077 - LucasTambor 4078 - marekmatej 4079 - uLipe 4080 - raffarost 4081 - wmrsouza 4082 files: 4083 - drivers/*/*esp32*.c 4084 - boards/espressif/ 4085 - soc/espressif/ 4086 - dts/xtensa/espressif/ 4087 - dts/riscv/espressif/ 4088 - dts/bindings/*/*esp32* 4089 - samples/boards/espressif/ 4090 - tests/boards/espressif/ 4091 - drivers/*/*esp32*/ 4092 labels: 4093 - "platform: ESP32" 4094 4095ITE Platforms: 4096 status: maintained 4097 maintainers: 4098 - Dino-Li 4099 - GTLin08 4100 - RuibinChang 4101 collaborators: 4102 - jackrosenthal 4103 - keith-zephyr 4104 - brockus-zephyr 4105 - sjg20 4106 files: 4107 - boards/ite/ 4108 - drivers/sensor/ite/ 4109 - drivers/*/*it8xxx2*.c 4110 - drivers/*/*_ite_* 4111 - dts/bindings/*/ite* 4112 - dts/riscv/ite/ 4113 - soc/ite/ 4114 labels: 4115 - "platform: ITE" 4116 4117TI SimpleLink Platforms: 4118 status: maintained 4119 maintainers: 4120 - vaishnavachath 4121 collaborators: 4122 - vanti 4123 files: 4124 - boards/ti/cc*/ 4125 - boards/ti/msp*/ 4126 - drivers/*/*cc13* 4127 - drivers/*/*cc25* 4128 - drivers/*/*cc26* 4129 - drivers/*/*cc32* 4130 - dts/arm/ti/ 4131 - dts/bindings/*/ti,* 4132 - soc/ti/simplelink/ 4133 - dts/bindings/*/ti,* 4134 - modules/Kconfig.simplelink 4135 labels: 4136 - "platform: TI SimpleLink" 4137 4138TI K3 Platforms: 4139 status: maintained 4140 maintainers: 4141 - vaishnavachath 4142 collaborators: 4143 - gramsay0 4144 - dnltz 4145 files: 4146 - boards/ti/*am62*/ 4147 - drivers/*/*ti_k3* 4148 - dts/bindings/*/ti,k3* 4149 - soc/ti/k3/ 4150 labels: 4151 - "platform: TI K3" 4152 4153TI Platforms: 4154 status: odd fixes 4155 files: 4156 - soc/ti/lm3s6965/ 4157 - dts/arm/ti/lm3s6965.dtsi 4158 labels: 4159 - "platform: TI" 4160 4161Xilinx Platforms: 4162 status: odd fixes 4163 collaborators: 4164 - henrikbrixandersen 4165 - ibirnbaum 4166 - michalsimek 4167 files: 4168 - boards/amd/ 4169 - drivers/*/*xilinx* 4170 - drivers/*/*xlnx* 4171 - drivers/*/*zynq* 4172 - dts/*/xilinx/ 4173 - dts/bindings/*/*xlnx* 4174 - include/zephyr/*/*/*xlnx* 4175 - soc/xlnx/ 4176 labels: 4177 - "platform: Xilinx" 4178 4179Infineon Platforms: 4180 status: maintained 4181 maintainers: 4182 - ifyall 4183 collaborators: 4184 - npal-cy 4185 - talih0 4186 files: 4187 - boards/cypress/ 4188 - boards/infineon/ 4189 - drivers/*/*ifx_cat1* 4190 - drivers/*/*xmc* 4191 - drivers/sensor/infineon/ 4192 - dts/arm/infineon/ 4193 - dts/bindings/*/*infineon* 4194 - soc/infineon/ 4195 labels: 4196 - "platform: Infineon" 4197 description: >- 4198 Infineon SOCs, dts files and related drivers. Infineon Proto, Pioneer, Eval and Relax 4199 boards. 4200 4201LiteX Platforms: 4202 status: maintained 4203 maintainers: 4204 - tgorochowik 4205 - kgugala 4206 - fkokosinski 4207 collaborators: 4208 - mateusz-holenko 4209 - maass-hamburg 4210 files: 4211 - boards/enjoydigital/litex_vexriscv/ 4212 - drivers/*/*litex* 4213 - drivers/*/Kconfig.litex 4214 - dts/bindings/*/litex* 4215 - dts/riscv/riscv32-litex-vexriscv.dtsi 4216 - include/zephyr/drivers/*/*litex* 4217 - samples/boards/enjoydigital/litex/ 4218 - samples/drivers/*litex/ 4219 - soc/litex/ 4220 labels: 4221 - "platform: LiteX" 4222 4223Panasonic Platforms: 4224 status: maintained 4225 maintainers: 4226 - pideu-sj 4227 files: 4228 - boards/panasonic/ 4229 labels: 4230 - "platform: Panasonic" 4231 4232RTIO: 4233 status: maintained 4234 maintainers: 4235 - teburd 4236 collaborators: 4237 - yperess 4238 - ubieda 4239 files: 4240 - samples/subsys/rtio/ 4241 - include/zephyr/rtio/ 4242 - tests/subsys/rtio/ 4243 - subsys/rtio/ 4244 - doc/services/rtio/ 4245 labels: 4246 - "area: RTIO" 4247 tests: 4248 - rtio 4249 4250Secure storage: 4251 status: maintained 4252 maintainers: 4253 - tomi-font 4254 files: 4255 - subsys/secure_storage/ 4256 - samples/psa/ 4257 - doc/services/secure_storage.rst 4258 - tests/subsys/secure_storage/ 4259 labels: 4260 - "area: Secure storage" 4261 tests: 4262 - psa.secure_storage 4263 4264Storage: 4265 status: odd fixes 4266 files: 4267 - subsys/storage/ 4268 - include/zephyr/storage/ 4269 - tests/subsys/storage/ 4270 - doc/services/storage/ 4271 labels: 4272 - "area: Storage" 4273 tests: 4274 - storage 4275 4276Storage ZMS: 4277 status: maintained 4278 maintainers: 4279 - rghaddab 4280 files: 4281 - subsys/fs/zms/ 4282 - include/zephyr/fs/zms.h 4283 - samples/subsys/fs/zms/ 4284 - tests/subsys/fs/zms/ 4285 - doc/services/storage/zms/zms.rst 4286 4287Sysbuild: 4288 status: maintained 4289 maintainers: 4290 - tejlmand 4291 collaborators: 4292 - nordicjm 4293 - "57300" 4294 files: 4295 - share/sysbuild/ 4296 - samples/sysbuild/ 4297 - doc/build/sysbuild/ 4298 labels: 4299 - "area: Sysbuild" 4300 tests: 4301 - sample.sysbuild 4302 4303Task Watchdog: 4304 status: maintained 4305 maintainers: 4306 - martinjaeger 4307 files: 4308 - include/zephyr/task_wdt/ 4309 - samples/subsys/task_wdt/ 4310 - subsys/task_wdt/ 4311 - doc/services/task_wdt/index.rst 4312 labels: 4313 - "area: Task Watchdog" 4314 tests: 4315 - sample.task_wdt 4316 4317"Drivers: Syscon": 4318 status: maintained 4319 maintainers: 4320 - carlocaione 4321 files: 4322 - include/zephyr/drivers/syscon.h 4323 - drivers/syscon/ 4324 - tests/drivers/syscon/ 4325 tests: 4326 - drivers.syscon 4327 4328TDK Sensors: 4329 status: maintained 4330 maintainers: 4331 - teburd 4332 - MaureenHelm 4333 files: 4334 - drivers/sensor/tdk/ 4335 labels: 4336 - "area: Sensors" 4337 tests: 4338 - drivers.sensors 4339 4340"Drivers: Time Aware GPIO": 4341 status: maintained 4342 maintainers: 4343 - akanisetti 4344 files: 4345 - doc/hardware/peripherals/tgpio.rst 4346 - drivers/misc/timeaware_gpio/ 4347 - include/zephyr/drivers/misc/timeaware_gpio/ 4348 - samples/drivers/misc/timeaware_gpio/ 4349 labels: 4350 - "area: Time Aware GPIO" 4351 tests: 4352 - sample.drivers.misc.timeaware_gpio 4353 4354"Toolchain Integration": 4355 status: maintained 4356 maintainers: 4357 - tejlmand 4358 collaborators: 4359 - stephanosio 4360 files: 4361 - cmake/bintools/ 4362 - cmake/compiler/ 4363 - cmake/linker/ 4364 - cmake/toolchain/ 4365 - include/zephyr/toolchain/ 4366 - include/zephyr/toolchain.h 4367 labels: 4368 - "area: Toolchains" 4369 4370"Toolchain ARC MWDT": 4371 status: maintained 4372 maintainers: 4373 - evgeniy-paltsev 4374 - abrodkin 4375 files: 4376 - cmake/*/arcmwdt/ 4377 - include/zephyr/toolchain/mwdt.h 4378 - include/zephyr/linker/linker-tool-mwdt.h 4379 - lib/libc/arcmwdt/* 4380 labels: 4381 - "area: Toolchains" 4382 4383"Toolchain arm compiler 6": 4384 status: maintained 4385 maintainers: 4386 - tejlmand 4387 files: 4388 - cmake/*/armclang/ 4389 - cmake/linker/armlink/ 4390 - include/zephyr/toolchain/armclang.h 4391 - lib/libc/armstdc/* 4392 labels: 4393 - "area: Toolchains" 4394 4395"Toolchain oneApi": 4396 status: maintained 4397 maintainers: 4398 - nashif 4399 files: 4400 - cmake/*/oneApi/ 4401 - cmake/compiler/icx/ 4402 labels: 4403 - "area: Toolchains" 4404 4405Tracing: 4406 status: maintained 4407 maintainers: 4408 - nashif 4409 collaborators: 4410 - teburd 4411 files: 4412 - subsys/tracing/ 4413 - scripts/tracing/ 4414 - include/zephyr/tracing/ 4415 - subsys/timing/ 4416 - samples/subsys/tracing/ 4417 - doc/services/tracing/ 4418 - tests/subsys/tracing/ 4419 labels: 4420 - "area: tracing" 4421 tests: 4422 - tracing 4423 4424USB: 4425 status: maintained 4426 maintainers: 4427 - jfischer-no 4428 collaborators: 4429 - tmon-nordic 4430 files: 4431 - drivers/usb/ 4432 - dts/bindings/usb/ 4433 - include/zephyr/dt-bindings/usb/ 4434 - include/zephyr/*/usb/ 4435 - include/zephyr/usb/ 4436 - samples/subsys/usb/ 4437 - subsys/usb/ 4438 - tests/subsys/usb/ 4439 - tests/drivers/build_all/usb/ 4440 - tests/drivers/usb/ 4441 - tests/drivers/udc/ 4442 - doc/connectivity/usb/ 4443 labels: 4444 - "area: USB" 4445 tests: 4446 - usb 4447 - drivers.usb 4448 4449USB-C: 4450 status: maintained 4451 maintainers: 4452 - sambhurst 4453 collaborators: 4454 - keith-zephyr 4455 files: 4456 - drivers/usb_c/ 4457 - dts/bindings/usb-c/ 4458 - include/zephyr/dt-bindings/usb-c/ 4459 - include/zephyr/*/usb_c/ 4460 - include/zephyr/usb_c/ 4461 - samples/subsys/usb_c/ 4462 - subsys/usb/usb_c/ 4463 - doc/connectivity/usb/pd/ 4464 - doc/hardware/peripherals/usbc_vbus.rst 4465 - scripts/generate_usb_vif/ 4466 labels: 4467 - "area: USB-C" 4468 tests: 4469 - sample.usbc 4470 4471Userspace: 4472 status: maintained 4473 maintainers: 4474 - dcpleung 4475 collaborators: 4476 - ceolin 4477 files: 4478 - include/zephyr/internal/syscall_handler.h 4479 - doc/kernel/usermode/kernelobjects.rst 4480 - include/zephyr/app_memory/ 4481 - include/zephyr/linker/app_smem*.ld 4482 - tests/kernel/mem_protect/ 4483 - samples/userspace/ 4484 - include/zephyr/syscall.h 4485 - kernel/userspace* 4486 - scripts/build/gen_app_partitions.py 4487 - scripts/build/gen_kobject_list.py 4488 - scripts/build/gen_syscalls.py 4489 - scripts/build/process_gperf.py 4490 - scripts/build/gen_relocate_app.py 4491 - include/zephyr/sys/kobject.h 4492 - include/zephyr/sys/mem_manage.h 4493 - include/zephyr/kernel/mm.h 4494 - include/zephyr/kernel/internal/mm.h 4495 - include/zephyr/kernel/mm/demand_paging.h 4496 labels: 4497 - "area: Userspace" 4498 tests: 4499 - kernel.memory_protection 4500 4501VFS: 4502 status: maintained 4503 maintainers: 4504 - de-nordic 4505 files: 4506 - subsys/fs/fat_fs.c 4507 - tests/subsys/fs/fat_fs_api/ 4508 description: >- 4509 VFS implementation 4510 4511 labels: 4512 - "area: File System" 4513 tests: 4514 - filesystem 4515 4516West: 4517 status: maintained 4518 maintainers: 4519 - pdgendt 4520 collaborators: 4521 - mbolivar 4522 - carlescufi 4523 - swinslow 4524 files: 4525 - scripts/west-commands.yml 4526 - scripts/west_commands/ 4527 - doc/develop/west/ 4528 - scripts/pylib/build_helpers/domains.py 4529 labels: 4530 - "area: West" 4531 4532"West project: acpica": 4533 status: maintained 4534 maintainers: 4535 - najumon1980 4536 files: 4537 - modules/acpica/ 4538 labels: 4539 - "area: ACPI" 4540 4541"West project: bsim": 4542 status: maintained 4543 maintainers: 4544 - aescolar 4545 files: [] 4546 labels: 4547 - "platform: nRF BSIM" 4548 4549"West project: babblesim_base": 4550 status: maintained 4551 maintainers: 4552 - aescolar 4553 files: [] 4554 labels: 4555 - "platform: nRF BSIM" 4556 4557"West project: babblesim_ext_2G4_libPhyComv1": 4558 status: maintained 4559 maintainers: 4560 - aescolar 4561 files: [] 4562 labels: 4563 - "platform: nRF BSIM" 4564 4565"West project: babblesim_ext_2G4_phy_v1": 4566 status: maintained 4567 maintainers: 4568 - aescolar 4569 files: [] 4570 labels: 4571 - "platform: nRF BSIM" 4572 4573"West project: babblesim_ext_2G4_channel_NtNcable": 4574 status: maintained 4575 maintainers: 4576 - aescolar 4577 files: [] 4578 labels: 4579 - "platform: nRF BSIM" 4580 4581"West project: babblesim_ext_2G4_channel_multiatt": 4582 status: maintained 4583 maintainers: 4584 - aescolar 4585 files: [] 4586 labels: 4587 - "platform: nRF BSIM" 4588 4589"West project: babblesim_ext_2G4_modem_magic": 4590 status: maintained 4591 maintainers: 4592 - aescolar 4593 files: [] 4594 labels: 4595 - "platform: nRF BSIM" 4596 4597"West project: babblesim_ext_2G4_modem_BLE_simple": 4598 status: maintained 4599 maintainers: 4600 - aescolar 4601 files: [] 4602 labels: 4603 - "platform: nRF BSIM" 4604 4605"West project: babblesim_ext_2G4_device_burst_interferer": 4606 status: maintained 4607 maintainers: 4608 - aescolar 4609 files: [] 4610 labels: 4611 - "platform: nRF BSIM" 4612 4613"West project: babblesim_ext_2G4_device_WLAN_actmod": 4614 status: maintained 4615 maintainers: 4616 - aescolar 4617 files: [] 4618 labels: 4619 - "platform: nRF BSIM" 4620 4621"West project: babblesim_ext_2G4_device_playback": 4622 status: maintained 4623 maintainers: 4624 - aescolar 4625 files: [] 4626 labels: 4627 - "platform: nRF BSIM" 4628 4629"West project: babblesim_ext_libCryptov1": 4630 status: maintained 4631 maintainers: 4632 - aescolar 4633 files: [] 4634 labels: 4635 - "platform: nRF BSIM" 4636 4637"West project: canopennode": 4638 status: maintained 4639 maintainers: 4640 - henrikbrixandersen 4641 files: 4642 - modules/canopennode/ 4643 labels: 4644 - "area: CAN" 4645 4646"West project: chre": 4647 status: maintained 4648 maintainers: 4649 - yperess 4650 files: 4651 - samples/modules/chre/ 4652 - modules/Kconfig.chre 4653 labels: 4654 - "area: CHRE" 4655 4656"West project: cmsis": 4657 status: maintained 4658 maintainers: 4659 - stephanosio 4660 collaborators: 4661 - microbuilder 4662 - povergoing 4663 files: 4664 - modules/cmsis/ 4665 labels: 4666 - "area: CMSIS-Core" 4667 4668"West project: cmsis-dsp": 4669 status: maintained 4670 maintainers: 4671 - XenuIsWatching 4672 collaborators: 4673 - stephanosio 4674 files: 4675 - modules/cmsis-dsp/ 4676 labels: 4677 - "area: CMSIS-DSP" 4678 4679"West project: cmsis-nn": 4680 status: maintained 4681 maintainers: 4682 - XenuIsWatching 4683 collaborators: 4684 - stephanosio 4685 files: 4686 - modules/cmsis-nn/ 4687 labels: 4688 - "area: CMSIS-NN" 4689 4690"West project: cmsis_6": 4691 status: maintained 4692 maintainers: 4693 - ithinuel 4694 collaborators: 4695 - tomi-font 4696 - wearyzen 4697 files: [] 4698 labels: 4699 - "area: CMSIS_6" 4700 4701"West project: edtt": 4702 status: maintained 4703 maintainers: 4704 - aescolar 4705 collaborators: 4706 - wopu-ot 4707 - thoh-ot 4708 files: [] 4709 labels: 4710 - "area: Tests" 4711 4712"West project: fatfs": 4713 status: maintained 4714 maintainers: 4715 - de-nordic 4716 files: 4717 - modules/fatfs/ 4718 labels: 4719 - "area: Storage" 4720 4721"West project: hal_adi": 4722 status: maintained 4723 maintainers: 4724 - MaureenHelm 4725 collaborators: 4726 - ozersa 4727 - ttmut 4728 files: [] 4729 labels: 4730 - "platform: ADI" 4731 4732"West project: hal_altera": 4733 status: odd fixes 4734 collaborators: 4735 - nashif 4736 files: 4737 - modules/Kconfig.altera 4738 labels: 4739 - "platform: Altera" 4740 4741"West project: hal_ambiq": 4742 status: odd fixes 4743 collaborators: 4744 - aaronyegx 4745 - AlessandroLuo 4746 - RichardSWheatley 4747 files: 4748 - modules/hal_ambiq/ 4749 labels: 4750 - "platform: Ambiq" 4751 4752"West project: hal_atmel": 4753 status: maintained 4754 maintainers: 4755 - nandojve 4756 collaborators: 4757 - pdgendt 4758 files: 4759 - modules/Kconfig.atmel 4760 labels: 4761 - "platform: Microchip SAM" 4762 4763"West project: hal_cypress": 4764 status: maintained 4765 maintainers: 4766 - ifyall 4767 collaborators: 4768 - nashif 4769 - npal-cy 4770 files: 4771 - modules/Kconfig.cypress 4772 labels: 4773 - "platform: Infineon" 4774 4775"West project: hal_espressif": 4776 status: maintained 4777 maintainers: 4778 - sylvioalves 4779 collaborators: 4780 - LucasTambor 4781 - marekmatej 4782 files: 4783 - modules/Kconfig.esp32 4784 labels: 4785 - "platform: ESP32" 4786 4787"West project: hal_ethos_u": 4788 status: maintained 4789 maintainers: 4790 - kristofer-jonsson-arm 4791 files: 4792 - drivers/misc/ethos_u/ 4793 - modules/hal_ethos_u/ 4794 labels: 4795 - "platform: ARM" 4796 4797"West project: hal_gigadevice": 4798 status: maintained 4799 maintainers: 4800 - nandojve 4801 collaborators: 4802 - gmarull 4803 - soburi 4804 files: 4805 - modules/hal_gigadevice/ 4806 labels: 4807 - "platform: GD32" 4808 4809"West project: hal_infineon": 4810 status: maintained 4811 maintainers: 4812 - ifyall 4813 collaborators: 4814 - parthitce 4815 - talih0 4816 - npal-cy 4817 files: 4818 - modules/Kconfig.infineon 4819 - modules/hal_infineon/ 4820 labels: 4821 - "platform: Infineon" 4822 4823"West project: hal_microchip": 4824 status: maintained 4825 maintainers: 4826 - jvasanth1 4827 collaborators: 4828 - VenkatKotakonda 4829 - albertofloyd 4830 files: 4831 - modules/Kconfig.microchip 4832 labels: 4833 - "platform: Microchip SAM" 4834 - "platform: Microchip MEC" 4835 4836"West project: hal_nordic": 4837 status: maintained 4838 maintainers: 4839 - anangl 4840 collaborators: 4841 - hubertmis 4842 - nordic-krch 4843 files: 4844 - modules/hal_nordic/ 4845 labels: 4846 - "platform: nRF" 4847 4848"West project: hal_nuvoton": 4849 status: maintained 4850 maintainers: 4851 - ssekar15 4852 files: 4853 - modules/Kconfig.nuvoton 4854 labels: 4855 - "platform: Nuvoton" 4856 4857"West project: hal_nxp": 4858 status: maintained 4859 maintainers: 4860 - dleach02 4861 - mmahadevan108 4862 collaborators: 4863 - decsny 4864 - manuargue 4865 - PetervdPerk-NXP 4866 - bperseghetti 4867 files: 4868 - modules/hal_nxp/ 4869 - modules/Kconfig.imx 4870 - modules/Kconfig.mcux 4871 - modules/Kconfig.nxp_s32 4872 labels: 4873 - "platform: NXP" 4874 4875"West project: hal_openisa": 4876 status: odd fixes 4877 collaborators: 4878 - dleach02 4879 files: 4880 - modules/Kconfig.vega 4881 labels: 4882 - "platform: openisa/RV32M1" 4883 4884"West project: hal_quicklogic": 4885 status: odd fixes 4886 collaborators: 4887 - fkokosinski 4888 files: [] 4889 labels: 4890 - "platform: Quicklogic" 4891 4892"West project: hal_renesas": 4893 status: maintained 4894 maintainers: 4895 - KhiemNguyenT 4896 - ioannis-karachalios 4897 collaborators: 4898 - blauret 4899 - andrzej-kaczmarek 4900 - ydamigos 4901 - soburi 4902 - duynguyenxa 4903 - thaoluonguw 4904 files: [] 4905 labels: 4906 - "platform: Renesas" 4907 4908"West project: hal_rpi_pico": 4909 status: maintained 4910 maintainers: 4911 - soburi 4912 collaborators: 4913 - yonsch 4914 files: 4915 - modules/hal_rpi_pico/ 4916 labels: 4917 - "platform: Raspberry Pi Pico" 4918 4919"West project: hal_silabs": 4920 status: maintained 4921 maintainers: 4922 - jhedberg 4923 collaborators: 4924 - jerome-pouiller 4925 - asmellby 4926 - sateeshkotapati 4927 - yonsch 4928 - mnkp 4929 - rettichschnidi 4930 files: 4931 - modules/hal_silabs/ 4932 labels: 4933 - "platform: Silabs" 4934 4935"West project: hal_st": 4936 status: maintained 4937 maintainers: 4938 - avisconti 4939 collaborators: 4940 - erwango 4941 files: 4942 - modules/hal_st/Kconfig 4943 4944"West project: hal_stm32": 4945 status: maintained 4946 maintainers: 4947 - erwango 4948 collaborators: 4949 - FRASTM 4950 - gautierg-st 4951 - marwaiehm-st 4952 - asm5878 4953 - HoZHel 4954 - benothmn-st 4955 files: 4956 - modules/Kconfig.stm32 4957 labels: 4958 - "platform: STM32" 4959 4960"West project: hal_tdk": 4961 status: maintained 4962 maintainers: 4963 - afontaine-invn 4964 collaborators: 4965 - rbuisson-invn 4966 - gjabouley-invn 4967 - sriccardi-invn 4968 files: 4969 - modules/hal_tdk/Kconfig 4970 4971"West project: hal_telink": 4972 status: maintained 4973 maintainers: 4974 - andy-liu-telink 4975 files: 4976 - modules/Kconfig.telink 4977 labels: 4978 - "platform: Telink" 4979 4980"West project: hal_ti": 4981 status: maintained 4982 maintainers: 4983 - vaishnavachath 4984 files: [] 4985 labels: 4986 - "platform: TI" 4987 4988"West project: hal_wch": 4989 status: maintained 4990 maintainers: 4991 - nzmichaelh 4992 - kholia 4993 files: 4994 - modules/hal_wch/ 4995 4996"West project: hal_wurthelektronik": 4997 status: maintained 4998 maintainers: 4999 - mah-eiSmart 5000 files: 5001 - modules/Kconfig.wurthelektronik 5002 5003"West project: hal_xtensa": 5004 status: maintained 5005 maintainers: 5006 - dcpleung 5007 collaborators: 5008 - andyross 5009 - nashif 5010 files: 5011 - modules/Kconfig.xtensa 5012 labels: 5013 - "area: Xtensa" 5014 5015"West project: hal_intel": 5016 status: maintained 5017 maintainers: 5018 - kwd-doodling 5019 collaborators: 5020 - teburd 5021 - likongintel 5022 files: 5023 - modules/Kconfig.intel 5024 labels: 5025 - "platform: Intel" 5026 5027"West project: zephyr-lang-rust": 5028 status: maintained 5029 maintainers: 5030 - d3zd3z 5031 files: [] 5032 labels: 5033 - "area: Rust" 5034 5035"West project: libmetal": 5036 status: odd fixes 5037 collaborators: 5038 - carlocaione 5039 - arnopo 5040 files: 5041 - modules/Kconfig.libmetal 5042 labels: 5043 - "area: AMP" 5044 5045"West project: liblc3": 5046 status: maintained 5047 maintainers: 5048 - Casper-Bonde-Bose 5049 - MariuszSkamra 5050 collaborators: 5051 - thalley 5052 - asbjornsabo 5053 files: 5054 - modules/liblc3/ 5055 labels: 5056 - "area: Audio" 5057 5058"West project: littlefs": 5059 status: odd fixes 5060 files: 5061 - modules/littlefs/ 5062 labels: 5063 - "area: Storage" 5064 5065"West project: loramac-node": 5066 status: maintained 5067 maintainers: 5068 - Mani-Sadhasivam 5069 files: 5070 - modules/loramac-node/ 5071 labels: 5072 - "area: LoRa" 5073 5074"West project: lvgl": 5075 status: maintained 5076 maintainers: 5077 - faxe1008 5078 collaborators: 5079 - brgl 5080 - pdgendt 5081 - uLipe 5082 files: 5083 - modules/lvgl/ 5084 - tests/lib/gui/lvgl/ 5085 - include/zephyr/dt-bindings/lvgl/ 5086 labels: 5087 - "area: LVGL" 5088 5089"West project: lz4": 5090 status: odd fixes 5091 collaborators: 5092 - parthitce 5093 files: 5094 - modules/lz4/ 5095 - samples/modules/compression/lz4/ 5096 labels: 5097 - "area: Compression" 5098 5099"West project: mbedtls": 5100 status: maintained 5101 maintainers: 5102 - d3zd3z 5103 - ceolin 5104 collaborators: 5105 - ithinuel 5106 - wearyzen 5107 - valeriosetti 5108 - tomi-font 5109 files: 5110 - modules/mbedtls/ 5111 - tests/crypto/mbedtls/ 5112 - tests/benchmarks/mbedtls/ 5113 labels: 5114 - "area: mbedTLS / PSA Crypto" 5115 tests: 5116 - benchmark.crypto.mbedtls 5117 - crypto.mbedtls 5118 - psa.secure_storage 5119 5120"West project: mcuboot": 5121 status: maintained 5122 maintainers: 5123 - d3zd3z 5124 collaborators: 5125 - de-nordic 5126 - nordicjm 5127 files: 5128 - modules/Kconfig.mcuboot 5129 - tests/boot/ 5130 labels: 5131 - "area: MCUBoot" 5132 5133"West project: mipi-sys-t": 5134 status: odd fixes 5135 collaborators: 5136 - dcpleung 5137 files: 5138 - modules/Kconfig.syst 5139 labels: 5140 - "area: Tracing" 5141 5142"West project: nanopb": 5143 status: maintained 5144 maintainers: 5145 - pdgendt 5146 files: 5147 - modules/nanopb/ 5148 - samples/modules/nanopb/ 5149 - tests/modules/nanopb/ 5150 labels: 5151 - "area: Serialization" 5152 5153"West project: net-tools": 5154 status: odd fixes 5155 maintainers: 5156 - jukkar 5157 collaborators: 5158 - rlubos 5159 files: [] 5160 labels: 5161 - "area: Networking" 5162 5163"West project: nrf_hw_models": 5164 status: maintained 5165 maintainers: 5166 - aescolar 5167 collaborators: 5168 - wopu-ot 5169 - thoh-ot 5170 files: [] 5171 labels: 5172 - "area: native port" 5173 5174"West project: nrf_wifi": 5175 status: maintained 5176 maintainers: 5177 - krish2718 5178 - sachinthegreen 5179 collaborators: 5180 - udaynordic 5181 - rajb9 5182 - srkanordic 5183 files: 5184 - modules/nrf_wifi/ 5185 labels: 5186 - "area: Wi-Fi" 5187 5188"West project: open-amp": 5189 status: odd fixes 5190 collaborators: 5191 - carlocaione 5192 files: 5193 - modules/Kconfig.open-amp 5194 labels: 5195 - "area: AMP" 5196 5197"West project: openthread": 5198 status: maintained 5199 maintainers: 5200 - rlubos 5201 collaborators: 5202 - pdgendt 5203 - canisLupus1313 5204 - mariuszpos 5205 - edmont 5206 - maciejbaczmanski 5207 files: 5208 - modules/openthread/ 5209 labels: 5210 - "area: OpenThread" 5211 5212"West project: percepio": 5213 status: maintained 5214 maintainers: 5215 - eriktamlin 5216 - aronlander-pe 5217 files: 5218 - modules/percepio/ 5219 labels: 5220 - "area: Tracing" 5221 5222"West project: picolibc": 5223 status: maintained 5224 maintainers: 5225 - keith-packard 5226 collaborators: 5227 - stephanosio 5228 files: 5229 - modules/Kconfig.picolibc 5230 labels: 5231 - "area: C Library" 5232 - "area: picolibc" 5233 5234"West project: segger": 5235 status: odd fixes 5236 collaborators: 5237 - nordic-krch 5238 files: 5239 - modules/segger/ 5240 labels: 5241 - "area: Debugging" 5242 5243"West project: sof": 5244 status: maintained 5245 maintainers: 5246 - kv2019i 5247 collaborators: 5248 - andyross 5249 - nashif 5250 - lyakh 5251 - lgirdwood 5252 files: 5253 - modules/Kconfig.sof 5254 labels: 5255 - "area: Audio" 5256 5257"West project: tflite-micro": 5258 status: odd fixes 5259 collaborators: 5260 - laurenmurphyx64 5261 files: 5262 - modules/tflite-micro/ 5263 - samples/modules/tflite-micro/ 5264 labels: 5265 - "area: Neural Networks" 5266 5267"West project: thrift": 5268 status: maintained 5269 maintainers: 5270 - cfriedt 5271 files: 5272 - modules/thrift/ 5273 - samples/modules/thrift/ 5274 - tests/modules/thrift/ 5275 labels: 5276 - "area: Thrift" 5277 - "area: Serialization" 5278 tests: 5279 - thrift 5280 5281"West project: tinycrypt": 5282 status: odd fixes 5283 files: 5284 - modules/Kconfig.tinycrypt 5285 labels: 5286 - "area: Crypto / RNG" 5287 5288"West project: trusted-firmware-m": 5289 status: maintained 5290 maintainers: 5291 - d3zd3z 5292 collaborators: 5293 - Vge0rge 5294 - ithinuel 5295 - wearyzen 5296 - valeriosetti 5297 - tomi-font 5298 files: 5299 - modules/trusted-firmware-m/ 5300 - samples/tfm_integration/ 5301 - doc/services/tfm/ 5302 labels: 5303 - "area: TF-M" 5304 tests: 5305 - trusted-firmware-m 5306 - psa.secure_storage 5307 5308"West project: tf-m-tests": 5309 status: maintained 5310 maintainers: 5311 - d3zd3z 5312 collaborators: 5313 - Vge0rge 5314 - ithinuel 5315 - wearyzen 5316 files: [] 5317 labels: 5318 - "area: TF-M" 5319 5320"West project: trusted-firmware-a": 5321 status: maintained 5322 maintainers: 5323 - povergoing 5324 - sgrrzhf 5325 collaborators: 5326 - carlocaione 5327 - ithinuel 5328 - wearyzen 5329 files: 5330 - modules/trusted-firmware-a/ 5331 labels: 5332 - "area: TF-A" 5333 5334"West project: psa-arch-tests": 5335 status: maintained 5336 maintainers: 5337 - d3zd3z 5338 collaborators: 5339 - Vge0rge 5340 - ithinuel 5341 - wearyzen 5342 files: [] 5343 labels: 5344 - "area: TF-M" 5345 5346"West project: uoscore-uedhoc": 5347 status: maintained 5348 maintainers: 5349 - rlubos 5350 - StefanHri 5351 files: 5352 - modules/uoscore-uedhoc/ 5353 - tests/modules/uoscore/ 5354 labels: 5355 - "area: Networking" 5356 - "area: Crypto / RNG" 5357 5358"West project: zcbor": 5359 status: maintained 5360 maintainers: 5361 - de-nordic 5362 files: 5363 - modules/zcbor/ 5364 labels: 5365 - "area: CBOR" 5366 5367"West project: zscilib": 5368 status: maintained 5369 maintainers: 5370 - microbuilder 5371 files: [] 5372 5373"West project: hostap": 5374 status: maintained 5375 maintainers: 5376 - krish2718 5377 - jukkar 5378 collaborators: 5379 - MaochenWang1 5380 files: 5381 - modules/hostap/ 5382 labels: 5383 - "area: Wi-Fi" 5384 tests: 5385 - net.wifi 5386 5387Xtensa arch: 5388 status: maintained 5389 maintainers: 5390 - dcpleung 5391 collaborators: 5392 - andyross 5393 - nashif 5394 - ceolin 5395 files: 5396 - arch/xtensa/ 5397 - include/zephyr/arch/xtensa/ 5398 - dts/xtensa/ 5399 - boards/qemu/xtensa/ 5400 - boards/cdns/xt-sim/ 5401 - soc/cdns/dc233c/ 5402 - soc/cdns/xtensa_sample_controller/ 5403 - tests/arch/xtensa/ 5404 labels: 5405 - "area: Xtensa" 5406 5407x86 arch: 5408 status: maintained 5409 maintainers: 5410 - edersondisouza 5411 collaborators: 5412 - andyross 5413 - dcpleung 5414 - ceolin 5415 - laurenmurphyx64 5416 - najumon1980 5417 - nashif 5418 files: 5419 - arch/x86/ 5420 - include/zephyr/arch/x86/ 5421 - tests/arch/x86/ 5422 - drivers/interrupt_controller/*intel* 5423 - drivers/interrupt_controller/*ioapic* 5424 - drivers/interrupt_controller/*loapic* 5425 - doc/hardware/arch/x86.rst 5426 labels: 5427 - "area: X86" 5428 5429Continuous Integration: 5430 status: maintained 5431 maintainers: 5432 - stephanosio 5433 - nashif 5434 collaborators: 5435 - fabiobaltieri 5436 - kartben 5437 files: 5438 - .github/ 5439 - scripts/ci/ 5440 - scripts/make_bugs_pickle.py 5441 - .checkpatch.conf 5442 - scripts/gitlint/ 5443 - scripts/set_assignees.py 5444 labels: 5445 - "area: Continuous Integration" 5446 5447Test Framework (Ztest): 5448 status: maintained 5449 maintainers: 5450 - nashif 5451 collaborators: 5452 - aaronemassey 5453 - jeremybettis 5454 - yperess 5455 - asemjonovs 5456 files: 5457 - subsys/testsuite/ 5458 - tests/ztest/ 5459 - tests/unit/util/ 5460 - tests/subsys/testsuite/ 5461 - samples/subsys/testsuite/ 5462 - doc/develop/test/ 5463 labels: 5464 - "area: Testsuite" 5465 tests: 5466 - testing 5467 5468Emulation: 5469 status: maintained 5470 maintainers: 5471 - yperess 5472 collaborators: 5473 - aaronemassey 5474 - jeremybettis 5475 - alevkoy 5476 - asemjonovs 5477 - tristan-google 5478 files: 5479 - subsys/emul/ 5480 - include/zephyr/drivers/emul_* 5481 - include/zephyr/drivers/emul.h 5482 - include/zephyr/drivers/espi_emul.h 5483 - include/zephyr/drivers/i2c_emul.h 5484 - include/zephyr/drivers/spi_emul.h 5485 - tests/subsys/emul/ 5486 - doc/hardware/emulator/ 5487 labels: 5488 - "area: HW Emulation" 5489 tests: 5490 - emul 5491 5492Random: 5493 status: maintained 5494 maintainers: 5495 - ceolin 5496 collaborators: 5497 - tomi-font 5498 files: 5499 - subsys/random/ 5500 - include/zephyr/random/ 5501 labels: 5502 - "area: Random" 5503 5504# This area is to be converted to a subarea 5505Testing with Renode: 5506 status: odd fixes 5507 collaborators: 5508 - mateusz-holenko 5509 - fkokosinski 5510 files: 5511 - cmake/emu/renode.cmake 5512 - soc/renode/ 5513 - boards/renode/ 5514 - boards/**/*/support/*.repl 5515 - boards/**/*/support/*.resc 5516 labels: 5517 - "area: Renode" 5518 5519zbus: 5520 status: maintained 5521 maintainers: 5522 - rodrigopex 5523 files: 5524 - samples/subsys/zbus/ 5525 - include/zephyr/zbus/ 5526 - tests/subsys/zbus/ 5527 - subsys/zbus/ 5528 - doc/services/zbus/ 5529 labels: 5530 - "area: zbus" 5531 tests: 5532 - message_bus.zbus 5533 5534"Linkable Loadable Extensions": 5535 status: maintained 5536 maintainers: 5537 - teburd 5538 collaborators: 5539 - lyakh 5540 - pillo79 5541 files: 5542 - cmake/llext-edk.cmake 5543 - samples/subsys/llext/ 5544 - include/zephyr/llext/ 5545 - tests/subsys/llext/ 5546 - subsys/llext/ 5547 - doc/services/llext/ 5548 labels: 5549 - "area: llext" 5550 tests: 5551 - llext 5552