├── .github └── workflows │ ├── ci.yml │ ├── release.yml │ └── twister.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── VERSION ├── cmake ├── Zephyr-sdkConfig.cmake ├── Zephyr-sdkConfigVersion.cmake ├── zephyr │ ├── Kconfig │ ├── gnu │ │ ├── generic.cmake │ │ └── target.cmake │ ├── host-tools.cmake │ └── llvm │ │ ├── clang_compiler_rt.cfg │ │ ├── generic.cmake │ │ └── target.cmake └── zephyr_sdk_export.cmake ├── configs ├── aarch64-zephyr-elf.config ├── arc-zephyr-elf.config ├── arc64-zephyr-elf.config ├── arm-zephyr-eabi.config ├── common.config ├── microblazeel-zephyr-elf.config ├── mips-zephyr-elf.config ├── or1k-zephyr-elf.config ├── riscv64-zephyr-elf.config ├── rx-zephyr-elf.config ├── sparc-zephyr-elf.config ├── x86_64-zephyr-elf.config ├── xtensa-amd_acp_6_0_adsp_zephyr-elf.config ├── xtensa-amd_acp_7_0_adsp_zephyr-elf.config ├── xtensa-amd_acp_7_3_adsp_zephyr-elf.config ├── xtensa-dc233c_zephyr-elf.config ├── xtensa-espressif_esp32_zephyr-elf.config ├── xtensa-espressif_esp32s2_zephyr-elf.config ├── xtensa-espressif_esp32s3_zephyr-elf.config ├── xtensa-intel_ace15_mtpm_zephyr-elf.config ├── xtensa-intel_ace30_ptl_zephyr-elf.config ├── xtensa-intel_ace40_zephyr-elf.config ├── xtensa-intel_tgl_adsp_zephyr-elf.config ├── xtensa-mtk_mt818x_adsp_zephyr-elf.config ├── xtensa-mtk_mt8195_adsp_zephyr-elf.config ├── xtensa-mtk_mt8196_adsp_zephyr-elf.config ├── xtensa-mtk_mt8365_adsp_zephyr-elf.config ├── xtensa-nxp_imx8m_adsp_zephyr-elf.config ├── xtensa-nxp_imx8ulp_adsp_zephyr-elf.config ├── xtensa-nxp_imx_adsp_zephyr-elf.config ├── xtensa-nxp_rt500_adsp_zephyr-elf.config ├── xtensa-nxp_rt600_adsp_zephyr-elf.config ├── xtensa-nxp_rt700_hifi1_zephyr-elf.config ├── xtensa-nxp_rt700_hifi4_zephyr-elf.config ├── xtensa-sample_controller32_zephyr-elf.config └── xtensa-sample_controller_zephyr-elf.config ├── contrib ├── linux_build_llvm.sh └── linux_build_toolchain.sh ├── meta-zephyr-sdk ├── LICENSE ├── README.md ├── conf │ ├── distro │ │ ├── include │ │ │ └── zephyr-sdk.inc │ │ └── zephyr-sdk.conf │ └── layer.conf ├── files │ └── additional-licenses │ │ ├── DABAEZ │ │ └── SHUMATECH ├── recipes-core │ └── udev │ │ └── eudev_%.bbappend ├── recipes-devtools │ ├── meson │ │ ├── meson │ │ │ ├── 0001-Make-CPU-family-warnings-fatal.patch │ │ │ ├── 0001-dependencies-dev-prepend-sysroot-when-searching-for-.patch │ │ │ ├── 0001-python-module-do-not-manipulate-the-environment-when.patch │ │ │ ├── 0002-Support-building-allarch-recipes-again.patch │ │ │ ├── meson-setup.py │ │ │ └── meson-wrapper │ │ └── meson_1.7.0.bb │ ├── qemu │ │ ├── files │ │ │ ├── powerpc_rom.bin │ │ │ ├── qemu-guest-agent.init │ │ │ ├── qemu-guest-agent.udev │ │ │ └── run-ptest │ │ └── qemu-zephyr_git.bb │ ├── qemu_arc │ │ ├── files │ │ │ └── cross.patch │ │ └── qemu-arc_git.bb │ └── qemu_xilinx │ │ └── qemu-xilinx_git.bb ├── recipes-hosttools │ ├── bossa │ │ ├── bossa_git.bb │ │ └── files │ │ │ ├── 0001-Flash.h-Add-flash-override-samba-error.patch │ │ │ ├── 0001-Wait-for-EEFC-flash-to-complete-operations-before-re.patch │ │ │ ├── 0002-CalwFlash-Add-SAM4L-Flashcalw-controller.patch │ │ │ ├── 0003-Device-Introduce-support-to-SAM4L-SoC-family.patch │ │ │ └── 0004-CalwFlash-Add-NVIC-reset-command.patch │ ├── hosttools │ │ └── hosttools-tarball.bb │ └── openocd │ │ └── openocd_git.bb ├── recipes-support │ ├── hidapi │ │ └── hidapi_git.bb │ ├── libftdi │ │ └── libftdi_1.4.bb │ ├── libpcre │ │ ├── libpcre2_%.bbappend │ │ └── libpcre_%.bbappend │ └── libusb │ │ ├── libusb-compat │ │ └── 0001-usb.h-Include-sys-types.h.patch │ │ └── libusb-compat_0.1.8.bb └── scripts │ ├── meta-zephyr-sdk-build.sh │ ├── meta-zephyr-sdk-clone.sh │ └── template_dir ├── overlays ├── README.md ├── xtensa_amd_acp_6_0_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_amd_acp_7_0_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_amd_acp_7_3_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_dc233c │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_espressif_esp32 │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_espressif_esp32s2 │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_espressif_esp32s3 │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.cc │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_intel_ace15_mtpm │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_intel_ace30_ptl │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_intel_ace40 │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_intel_tgl_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_mtk_mt818x_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.cc │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_mtk_mt8195_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.cc │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_mtk_mt8196_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.cc │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_mtk_mt8365_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.c │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_nxp_imx8m_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_nxp_imx8ulp_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_nxp_imx_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_nxp_rt500_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.c │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_nxp_rt600_adsp │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.c │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_nxp_rt700_hifi1 │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.c │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_nxp_rt700_hifi4 │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── gdbserver │ │ │ │ ├── xtensa-regmap.c │ │ │ │ └── xtensa-xtregs.c │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h ├── xtensa_sample_controller │ ├── binutils │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ └── include │ │ │ └── xtensa-config.h │ ├── gcc │ │ ├── gcc │ │ │ └── ginclude │ │ │ │ └── core-isa.h │ │ └── include │ │ │ └── xtensa-config.h │ ├── gdb │ │ ├── bfd │ │ │ └── xtensa-modules.c │ │ ├── gdb │ │ │ ├── regformats │ │ │ │ └── reg-xtensa.dat │ │ │ ├── xtensa-config.c │ │ │ └── xtensa-xtregs.c │ │ ├── gdbserver │ │ │ └── xtensa-xtregs.cc │ │ └── include │ │ │ └── xtensa-config.h │ ├── newlib │ │ └── newlib │ │ │ └── libc │ │ │ └── sys │ │ │ └── xtensa │ │ │ └── include │ │ │ └── xtensa │ │ │ └── config │ │ │ └── core-isa.h │ └── picolibc │ │ └── newlib │ │ └── libc │ │ └── machine │ │ └── xtensa │ │ └── machine │ │ └── core-isa.h └── xtensa_sample_controller32 │ ├── binutils │ ├── bfd │ │ └── xtensa-modules.c │ └── include │ │ └── xtensa-config.h │ ├── gcc │ ├── gcc │ │ └── ginclude │ │ │ └── core-isa.h │ └── include │ │ └── xtensa-config.h │ ├── gdb │ ├── bfd │ │ └── xtensa-modules.c │ ├── gdb │ │ ├── regformats │ │ │ └── reg-xtensa.dat │ │ ├── xtensa-config.c │ │ └── xtensa-xtregs.c │ ├── gdbserver │ │ └── xtensa-xtregs.cc │ └── include │ │ └── xtensa-config.h │ ├── newlib │ └── newlib │ │ └── libc │ │ └── sys │ │ └── xtensa │ │ └── include │ │ └── xtensa │ │ └── config │ │ └── core-isa.h │ └── picolibc │ └── newlib │ └── libc │ └── machine │ └── xtensa │ └── machine │ └── core-isa.h ├── release-notes.md └── scripts ├── build_openocd.sh ├── build_qemu.sh ├── build_wget.sh ├── llvm ├── CMakeLists.txt ├── Omax.cfg ├── OmaxLTO.cfg ├── cmake │ ├── THIRD-PARTY-LICENSES.txt.in │ ├── handle-windows-symlinks.sh │ ├── meson-cross-build.txt.in │ ├── multilib.yaml.in │ └── to_meson_list.cmake ├── llvmlibc-support │ ├── CMakeLists.txt │ ├── crt0.c │ ├── exit.c │ ├── init.c │ ├── platform.h │ ├── semihost.h │ ├── stdio_read.c │ └── stdio_write.c ├── llvmlibc.cfg ├── mingw-licenses │ ├── COPYING.MinGW-w64-runtime.txt │ ├── COPYING.RUNTIME │ └── COPYING3.GCC ├── multilib-fpus.py ├── newlib.cfg ├── packagetest │ ├── CMakeLists.txt │ ├── Inputs │ │ └── microbit.ld │ ├── README.md │ ├── baremetal-semihosting-aarch64.test │ ├── baremetal-semihosting.test │ ├── baremetal-uart.test │ ├── cpp-baremetal-semihosting-cfi.test │ ├── cpp-baremetal-semihosting-exceptions.test │ ├── cpp-baremetal-semihosting-prof.test │ ├── cpp-baremetal-semihosting-ubsan.test │ ├── cpp-baremetal-semihosting.test │ ├── hello.c │ ├── hello.cpp │ ├── lit.cfg.py │ └── lit.site.cfg.py.in ├── test-support │ ├── lit-exec-qemu.py │ ├── llvm-libc++-picolibc.cfg.in │ ├── llvm-libc++abi-picolibc.cfg.in │ ├── llvm-libunwind-picolibc.cfg.in │ ├── picolibc-test-wrapper.py │ ├── run-picolibc-tests.py │ └── run_qemu.py └── test │ ├── CMakeLists.txt │ ├── lit.cfg.py │ ├── lit.site.cfg.py.in │ └── multilib │ ├── aarch64.test │ ├── armv4t.test │ ├── armv5e.test │ ├── armv6m.test │ ├── armv7a.test │ ├── armv7m.test │ ├── armv7r.test │ ├── armv8.1m.main.test │ ├── armv8a.test │ ├── armv8m.main.test │ ├── armv8r.test │ ├── fpus.test │ ├── rv32e.test │ ├── rv32i.test │ └── rv64i.test ├── template_setup_posix └── template_setup_win /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/twister.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/.github/workflows/twister.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0-beta1 2 | -------------------------------------------------------------------------------- /cmake/Zephyr-sdkConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/Zephyr-sdkConfig.cmake -------------------------------------------------------------------------------- /cmake/Zephyr-sdkConfigVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/Zephyr-sdkConfigVersion.cmake -------------------------------------------------------------------------------- /cmake/zephyr/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/zephyr/Kconfig -------------------------------------------------------------------------------- /cmake/zephyr/gnu/generic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/zephyr/gnu/generic.cmake -------------------------------------------------------------------------------- /cmake/zephyr/gnu/target.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/zephyr/gnu/target.cmake -------------------------------------------------------------------------------- /cmake/zephyr/host-tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/zephyr/host-tools.cmake -------------------------------------------------------------------------------- /cmake/zephyr/llvm/clang_compiler_rt.cfg: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2023 The ChromiumOS Authors 2 | # SPDX-License-Identifier: Apache-2.0 3 | 4 | --rtlib=compiler-rt 5 | -------------------------------------------------------------------------------- /cmake/zephyr/llvm/generic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/zephyr/llvm/generic.cmake -------------------------------------------------------------------------------- /cmake/zephyr/llvm/target.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/zephyr/llvm/target.cmake -------------------------------------------------------------------------------- /cmake/zephyr_sdk_export.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/cmake/zephyr_sdk_export.cmake -------------------------------------------------------------------------------- /configs/aarch64-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/aarch64-zephyr-elf.config -------------------------------------------------------------------------------- /configs/arc-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/arc-zephyr-elf.config -------------------------------------------------------------------------------- /configs/arc64-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/arc64-zephyr-elf.config -------------------------------------------------------------------------------- /configs/arm-zephyr-eabi.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/arm-zephyr-eabi.config -------------------------------------------------------------------------------- /configs/common.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/common.config -------------------------------------------------------------------------------- /configs/microblazeel-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/microblazeel-zephyr-elf.config -------------------------------------------------------------------------------- /configs/mips-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/mips-zephyr-elf.config -------------------------------------------------------------------------------- /configs/or1k-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/or1k-zephyr-elf.config -------------------------------------------------------------------------------- /configs/riscv64-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/riscv64-zephyr-elf.config -------------------------------------------------------------------------------- /configs/rx-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/rx-zephyr-elf.config -------------------------------------------------------------------------------- /configs/sparc-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/sparc-zephyr-elf.config -------------------------------------------------------------------------------- /configs/x86_64-zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/x86_64-zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-amd_acp_6_0_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-amd_acp_6_0_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-amd_acp_7_0_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-amd_acp_7_0_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-amd_acp_7_3_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-amd_acp_7_3_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-dc233c_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-dc233c_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-espressif_esp32_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-espressif_esp32_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-espressif_esp32s2_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-espressif_esp32s2_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-espressif_esp32s3_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-espressif_esp32s3_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-intel_ace15_mtpm_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-intel_ace15_mtpm_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-intel_ace30_ptl_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-intel_ace30_ptl_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-intel_ace40_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-intel_ace40_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-intel_tgl_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-intel_tgl_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-mtk_mt818x_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-mtk_mt818x_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-mtk_mt8195_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-mtk_mt8195_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-mtk_mt8196_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-mtk_mt8196_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-mtk_mt8365_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-mtk_mt8365_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-nxp_imx8m_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-nxp_imx8m_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-nxp_imx8ulp_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-nxp_imx8ulp_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-nxp_imx_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-nxp_imx_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-nxp_rt500_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-nxp_rt500_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-nxp_rt600_adsp_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-nxp_rt600_adsp_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-nxp_rt700_hifi1_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-nxp_rt700_hifi1_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-nxp_rt700_hifi4_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-nxp_rt700_hifi4_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-sample_controller32_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-sample_controller32_zephyr-elf.config -------------------------------------------------------------------------------- /configs/xtensa-sample_controller_zephyr-elf.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/configs/xtensa-sample_controller_zephyr-elf.config -------------------------------------------------------------------------------- /contrib/linux_build_llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/contrib/linux_build_llvm.sh -------------------------------------------------------------------------------- /contrib/linux_build_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/contrib/linux_build_toolchain.sh -------------------------------------------------------------------------------- /meta-zephyr-sdk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/LICENSE -------------------------------------------------------------------------------- /meta-zephyr-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/README.md -------------------------------------------------------------------------------- /meta-zephyr-sdk/conf/distro/include/zephyr-sdk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/conf/distro/include/zephyr-sdk.inc -------------------------------------------------------------------------------- /meta-zephyr-sdk/conf/distro/zephyr-sdk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/conf/distro/zephyr-sdk.conf -------------------------------------------------------------------------------- /meta-zephyr-sdk/conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/conf/layer.conf -------------------------------------------------------------------------------- /meta-zephyr-sdk/files/additional-licenses/DABAEZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/files/additional-licenses/DABAEZ -------------------------------------------------------------------------------- /meta-zephyr-sdk/files/additional-licenses/SHUMATECH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/files/additional-licenses/SHUMATECH -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-core/udev/eudev_%.bbappend: -------------------------------------------------------------------------------- 1 | BBCLASSEXTEND = "nativesdk" 2 | -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/meson/meson/0001-dependencies-dev-prepend-sysroot-when-searching-for-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/meson/meson/0001-dependencies-dev-prepend-sysroot-when-searching-for-.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/meson/meson/0002-Support-building-allarch-recipes-again.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/meson/meson/0002-Support-building-allarch-recipes-again.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/meson/meson/meson-setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/meson/meson/meson-setup.py -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/meson/meson/meson-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/meson/meson/meson-wrapper -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/meson/meson_1.7.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/meson/meson_1.7.0.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu/files/powerpc_rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu/files/powerpc_rom.bin -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu/files/qemu-guest-agent.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu/files/qemu-guest-agent.init -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu/files/qemu-guest-agent.udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu/files/qemu-guest-agent.udev -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu/files/run-ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu/files/run-ptest -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu/qemu-zephyr_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu/qemu-zephyr_git.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu_arc/files/cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu_arc/files/cross.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu_arc/qemu-arc_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu_arc/qemu-arc_git.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-devtools/qemu_xilinx/qemu-xilinx_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-devtools/qemu_xilinx/qemu-xilinx_git.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/bossa/bossa_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/bossa/bossa_git.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/bossa/files/0001-Flash.h-Add-flash-override-samba-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/bossa/files/0001-Flash.h-Add-flash-override-samba-error.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/bossa/files/0001-Wait-for-EEFC-flash-to-complete-operations-before-re.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/bossa/files/0001-Wait-for-EEFC-flash-to-complete-operations-before-re.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/bossa/files/0002-CalwFlash-Add-SAM4L-Flashcalw-controller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/bossa/files/0002-CalwFlash-Add-SAM4L-Flashcalw-controller.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/bossa/files/0003-Device-Introduce-support-to-SAM4L-SoC-family.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/bossa/files/0003-Device-Introduce-support-to-SAM4L-SoC-family.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/bossa/files/0004-CalwFlash-Add-NVIC-reset-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/bossa/files/0004-CalwFlash-Add-NVIC-reset-command.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/hosttools/hosttools-tarball.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/hosttools/hosttools-tarball.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-hosttools/openocd/openocd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-hosttools/openocd/openocd_git.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-support/hidapi/hidapi_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-support/hidapi/hidapi_git.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-support/libftdi/libftdi_1.4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-support/libftdi/libftdi_1.4.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-support/libpcre/libpcre2_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-support/libpcre/libpcre2_%.bbappend -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-support/libpcre/libpcre_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-support/libpcre/libpcre_%.bbappend -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-support/libusb/libusb-compat/0001-usb.h-Include-sys-types.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-support/libusb/libusb-compat/0001-usb.h-Include-sys-types.h.patch -------------------------------------------------------------------------------- /meta-zephyr-sdk/recipes-support/libusb/libusb-compat_0.1.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/recipes-support/libusb/libusb-compat_0.1.8.bb -------------------------------------------------------------------------------- /meta-zephyr-sdk/scripts/meta-zephyr-sdk-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/scripts/meta-zephyr-sdk-build.sh -------------------------------------------------------------------------------- /meta-zephyr-sdk/scripts/meta-zephyr-sdk-clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/scripts/meta-zephyr-sdk-clone.sh -------------------------------------------------------------------------------- /meta-zephyr-sdk/scripts/template_dir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/meta-zephyr-sdk/scripts/template_dir -------------------------------------------------------------------------------- /overlays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/README.md -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_6_0_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_6_0_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_0_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_0_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_amd_acp_7_3_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_amd_acp_7_3_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_dc233c/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_dc233c/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s2/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s2/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gdb/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gdb/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_espressif_esp32s3/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_espressif_esp32s3/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace15_mtpm/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace15_mtpm/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace30_ptl/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace30_ptl/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_ace40/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_ace40/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_intel_tgl_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_intel_tgl_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt818x_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt818x_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8195_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8195_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8196_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8196_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/gdbserver/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/gdbserver/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_mtk_mt8365_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_mtk_mt8365_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8m_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8m_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx8ulp_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx8ulp_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_imx_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_imx_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gdb/gdb/gdbserver/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gdb/gdb/gdbserver/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt500_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt500_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gdb/gdb/gdbserver/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gdb/gdb/gdbserver/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt600_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt600_adsp/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/gdbserver/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/gdbserver/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi1/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi1/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/gdbserver/xtensa-regmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/gdbserver/xtensa-regmap.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/gdbserver/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/gdbserver/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_nxp_rt700_hifi4/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_nxp_rt700_hifi4/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/binutils/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/binutils/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/binutils/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/binutils/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gcc/gcc/ginclude/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gcc/gcc/ginclude/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gcc/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gcc/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gdb/bfd/xtensa-modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gdb/bfd/xtensa-modules.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gdb/gdb/regformats/reg-xtensa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gdb/gdb/regformats/reg-xtensa.dat -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gdb/gdb/xtensa-config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gdb/gdb/xtensa-config.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gdb/gdb/xtensa-xtregs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gdb/gdb/xtensa-xtregs.c -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gdb/gdbserver/xtensa-xtregs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gdb/gdbserver/xtensa-xtregs.cc -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/gdb/include/xtensa-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/gdb/include/xtensa-config.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/newlib/newlib/libc/sys/xtensa/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /overlays/xtensa_sample_controller32/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/overlays/xtensa_sample_controller32/picolibc/newlib/libc/machine/xtensa/machine/core-isa.h -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/release-notes.md -------------------------------------------------------------------------------- /scripts/build_openocd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/build_openocd.sh -------------------------------------------------------------------------------- /scripts/build_qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/build_qemu.sh -------------------------------------------------------------------------------- /scripts/build_wget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/build_wget.sh -------------------------------------------------------------------------------- /scripts/llvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/llvm/Omax.cfg: -------------------------------------------------------------------------------- 1 | --sysroot /../lib/clang-runtimes/newlib 2 | -------------------------------------------------------------------------------- /scripts/llvm/OmaxLTO.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/OmaxLTO.cfg -------------------------------------------------------------------------------- /scripts/llvm/cmake/THIRD-PARTY-LICENSES.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/cmake/THIRD-PARTY-LICENSES.txt.in -------------------------------------------------------------------------------- /scripts/llvm/cmake/handle-windows-symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/cmake/handle-windows-symlinks.sh -------------------------------------------------------------------------------- /scripts/llvm/cmake/meson-cross-build.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/cmake/meson-cross-build.txt.in -------------------------------------------------------------------------------- /scripts/llvm/cmake/multilib.yaml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/cmake/multilib.yaml.in -------------------------------------------------------------------------------- /scripts/llvm/cmake/to_meson_list.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/cmake/to_meson_list.cmake -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/crt0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/crt0.c -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/exit.c -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/init.c -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/platform.h -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/semihost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/semihost.h -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/stdio_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/stdio_read.c -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc-support/stdio_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/llvmlibc-support/stdio_write.c -------------------------------------------------------------------------------- /scripts/llvm/llvmlibc.cfg: -------------------------------------------------------------------------------- 1 | --sysroot /../lib/clang-runtimes/llvmlibc 2 | -------------------------------------------------------------------------------- /scripts/llvm/mingw-licenses/COPYING.MinGW-w64-runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/mingw-licenses/COPYING.MinGW-w64-runtime.txt -------------------------------------------------------------------------------- /scripts/llvm/mingw-licenses/COPYING.RUNTIME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/mingw-licenses/COPYING.RUNTIME -------------------------------------------------------------------------------- /scripts/llvm/mingw-licenses/COPYING3.GCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/mingw-licenses/COPYING3.GCC -------------------------------------------------------------------------------- /scripts/llvm/multilib-fpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/multilib-fpus.py -------------------------------------------------------------------------------- /scripts/llvm/newlib.cfg: -------------------------------------------------------------------------------- 1 | --sysroot /../lib/clang-runtimes/newlib 2 | -------------------------------------------------------------------------------- /scripts/llvm/packagetest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/llvm/packagetest/Inputs/microbit.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/Inputs/microbit.ld -------------------------------------------------------------------------------- /scripts/llvm/packagetest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/README.md -------------------------------------------------------------------------------- /scripts/llvm/packagetest/baremetal-semihosting-aarch64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/baremetal-semihosting-aarch64.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/baremetal-semihosting.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/baremetal-semihosting.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/baremetal-uart.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/baremetal-uart.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/cpp-baremetal-semihosting-cfi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/cpp-baremetal-semihosting-cfi.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/cpp-baremetal-semihosting-exceptions.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/cpp-baremetal-semihosting-exceptions.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/cpp-baremetal-semihosting-prof.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/cpp-baremetal-semihosting-prof.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/cpp-baremetal-semihosting-ubsan.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/cpp-baremetal-semihosting-ubsan.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/cpp-baremetal-semihosting.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/cpp-baremetal-semihosting.test -------------------------------------------------------------------------------- /scripts/llvm/packagetest/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/hello.c -------------------------------------------------------------------------------- /scripts/llvm/packagetest/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/hello.cpp -------------------------------------------------------------------------------- /scripts/llvm/packagetest/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/lit.cfg.py -------------------------------------------------------------------------------- /scripts/llvm/packagetest/lit.site.cfg.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/packagetest/lit.site.cfg.py.in -------------------------------------------------------------------------------- /scripts/llvm/test-support/lit-exec-qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test-support/lit-exec-qemu.py -------------------------------------------------------------------------------- /scripts/llvm/test-support/llvm-libc++-picolibc.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test-support/llvm-libc++-picolibc.cfg.in -------------------------------------------------------------------------------- /scripts/llvm/test-support/llvm-libc++abi-picolibc.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test-support/llvm-libc++abi-picolibc.cfg.in -------------------------------------------------------------------------------- /scripts/llvm/test-support/llvm-libunwind-picolibc.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test-support/llvm-libunwind-picolibc.cfg.in -------------------------------------------------------------------------------- /scripts/llvm/test-support/picolibc-test-wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test-support/picolibc-test-wrapper.py -------------------------------------------------------------------------------- /scripts/llvm/test-support/run-picolibc-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test-support/run-picolibc-tests.py -------------------------------------------------------------------------------- /scripts/llvm/test-support/run_qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test-support/run_qemu.py -------------------------------------------------------------------------------- /scripts/llvm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/llvm/test/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/lit.cfg.py -------------------------------------------------------------------------------- /scripts/llvm/test/lit.site.cfg.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/lit.site.cfg.py.in -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/aarch64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/aarch64.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv4t.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv4t.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv5e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv5e.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv6m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv6m.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv7a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv7a.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv7m.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv7m.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv7r.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv7r.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv8.1m.main.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv8.1m.main.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv8a.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv8a.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv8m.main.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv8m.main.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/armv8r.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/armv8r.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/fpus.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/fpus.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/rv32e.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/rv32e.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/rv32i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/rv32i.test -------------------------------------------------------------------------------- /scripts/llvm/test/multilib/rv64i.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/llvm/test/multilib/rv64i.test -------------------------------------------------------------------------------- /scripts/template_setup_posix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/template_setup_posix -------------------------------------------------------------------------------- /scripts/template_setup_win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephyrproject-rtos/sdk-ng/HEAD/scripts/template_setup_win --------------------------------------------------------------------------------