├── .clang-format ├── .codespell_ignore ├── .git-blame-ignore-revs ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── lint.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── hal ├── Makefile ├── aarch64 │ ├── Makefile │ ├── _exceptions.S │ ├── _init.S │ ├── _memcpy.S │ ├── _memset.S │ ├── aarch64.h │ ├── arch │ │ ├── cpu.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ └── types.h │ ├── cache.c │ ├── cpu.c │ ├── dtb.c │ ├── dtb.h │ ├── exceptions.c │ ├── hal.c │ ├── halsyspage.h │ ├── interrupts_gicv2.c │ ├── interrupts_gicv2.h │ ├── pmap.c │ ├── spinlock.c │ ├── string.c │ └── zynqmp │ │ ├── Makefile │ │ ├── config.h │ │ ├── console.c │ │ ├── timer.c │ │ ├── zynqmp.c │ │ ├── zynqmp.h │ │ └── zynqmp_regs.h ├── arm │ ├── Makefile │ ├── barriers.h │ ├── rtt.c │ ├── rtt.h │ ├── scs.c │ └── scs.h ├── armv7a │ ├── Makefile │ ├── _armv7a.S │ ├── _interrupts.S │ ├── _memcpy.S │ ├── _memset.S │ ├── arch │ │ ├── cpu.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ └── types.h │ ├── armv7a.h │ ├── cpu.c │ ├── exceptions.c │ ├── hal.c │ ├── halsyspage.h │ ├── imx6ull │ │ ├── Makefile │ │ ├── _init.S │ │ ├── _memtest.S │ │ ├── config.h │ │ ├── console.c │ │ ├── imx6ull.c │ │ ├── interrupts.c │ │ ├── memtest.c │ │ └── timer.c │ ├── pmap.c │ ├── spinlock.c │ ├── string.c │ └── zynq7000 │ │ ├── Makefile │ │ ├── _init.S │ │ ├── config.h │ │ ├── console.c │ │ ├── interrupts.c │ │ ├── timer.c │ │ ├── zynq.c │ │ └── zynq.h ├── armv7m │ ├── Makefile │ ├── _memcpy.S │ ├── _memset.S │ ├── arch │ │ ├── cpu.h │ │ ├── elf.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ └── types.h │ ├── cpu.c │ ├── exceptions.c │ ├── hal.c │ ├── imxrt │ │ ├── 10xx │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── console.c │ │ │ ├── imxrt10xx.c │ │ │ └── imxrt10xx.h │ │ ├── 117x │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── console.c │ │ │ ├── imxrt117x.c │ │ │ └── imxrt117x.h │ │ ├── Makefile │ │ ├── _init.S │ │ ├── halsyspage.h │ │ ├── interrupts.c │ │ └── timer.c │ ├── pmap.c │ ├── spinlock.c │ ├── stm32 │ │ ├── Makefile │ │ ├── _init.S │ │ ├── config.h │ │ ├── halsyspage.h │ │ ├── interrupts.c │ │ ├── l4 │ │ │ ├── Makefile │ │ │ ├── console.c │ │ │ ├── stm32l4.c │ │ │ └── timer.c │ │ ├── stm32-timer.h │ │ └── stm32.h │ └── string.c ├── armv7r │ ├── Makefile │ ├── _armv7r.S │ ├── _interrupts.S │ ├── _memcpy.S │ ├── _memset.S │ ├── arch │ │ ├── cpu.h │ │ ├── elf.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ └── types.h │ ├── armv7r.h │ ├── cpu.c │ ├── exceptions.c │ ├── hal.c │ ├── halsyspage.h │ ├── pmap.c │ ├── spinlock.c │ ├── string.c │ ├── tda4vm │ │ ├── Makefile │ │ ├── _init.S │ │ ├── config.h │ │ ├── console.c │ │ ├── interrupts.c │ │ ├── tda4vm.c │ │ ├── tda4vm.h │ │ ├── tda4vm_intrtr_defs.h │ │ ├── tda4vm_regs.h │ │ └── timer.c │ └── zynqmp │ │ ├── Makefile │ │ ├── _init.S │ │ ├── config.h │ │ ├── console.c │ │ ├── interrupts.c │ │ ├── timer.c │ │ ├── zynqmp.c │ │ ├── zynqmp.h │ │ └── zynqmp_regs.h ├── armv8m │ ├── Makefile │ ├── _memcpy.S │ ├── _memset.S │ ├── arch │ │ ├── cpu.h │ │ ├── elf.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ └── types.h │ ├── cpu.c │ ├── exceptions.c │ ├── hal.c │ ├── halsyspage.h │ ├── interrupts.c │ ├── mcx │ │ ├── Makefile │ │ ├── _init.S │ │ └── n94x │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── console.c │ │ │ ├── mcxn94x.c │ │ │ ├── mcxn94x.h │ │ │ └── timer.c │ ├── nrf │ │ ├── 91 │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ ├── console.c │ │ │ ├── nrf91.c │ │ │ ├── nrf91.h │ │ │ └── timer.c │ │ ├── Makefile │ │ └── _init.S │ ├── pmap.c │ ├── spinlock.c │ ├── stm32 │ │ ├── Makefile │ │ ├── _init.S │ │ ├── halsyspage.h │ │ ├── n6 │ │ │ ├── Makefile │ │ │ ├── bsec.c │ │ │ ├── config.h │ │ │ ├── console.c │ │ │ ├── risaf.c │ │ │ ├── stm32n6.c │ │ │ ├── stm32n6_regs.h │ │ │ └── timer.c │ │ ├── stm32-timer.h │ │ └── stm32.h │ └── string.c ├── armv8r │ ├── Makefile │ ├── _armv8r.S │ ├── _interrupts.S │ ├── _memcpy.S │ ├── _memset.S │ ├── arch │ │ ├── cpu.h │ │ ├── elf.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ └── types.h │ ├── armv8r.h │ ├── cpu.c │ ├── exceptions.c │ ├── hal.c │ ├── halsyspage.h │ ├── mps3an536 │ │ ├── Makefile │ │ ├── _init.S │ │ ├── config.h │ │ ├── console.c │ │ ├── interrupts.c │ │ ├── mps3an536.c │ │ └── timer.c │ ├── pmap.c │ ├── spinlock.c │ └── string.c ├── common.c ├── console.h ├── cpu.h ├── elf.h ├── exceptions.h ├── gaisler │ ├── Makefile │ ├── ambapp.c │ └── ambapp.h ├── hal.h ├── ia32 │ ├── Makefile │ ├── _exceptions.S │ ├── _init.S │ ├── _interrupts.S │ ├── arch │ │ ├── cpu.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ ├── tlb.h │ │ └── types.h │ ├── config.h │ ├── console-serial.c │ ├── console-vga.c │ ├── console.c │ ├── console.h │ ├── cpu.c │ ├── exceptions.c │ ├── hal.c │ ├── halsyspage.h │ ├── ia32.h │ ├── init.c │ ├── init.h │ ├── interrupts.c │ ├── pci.c │ ├── pci.h │ ├── pmap.c │ ├── spinlock.c │ ├── string.c │ └── timer.c ├── interrupts.h ├── list.h ├── pmap.h ├── riscv64 │ ├── Makefile │ ├── _cache.S │ ├── _init.S │ ├── _interrupts.S │ ├── _string.S │ ├── arch │ │ ├── cpu.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ └── types.h │ ├── cpu.c │ ├── dtb.c │ ├── dtb.h │ ├── exceptions.c │ ├── gaisler │ │ ├── Makefile │ │ ├── console.c │ │ ├── gr765 │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ └── gr765.c │ │ └── grfpga │ │ │ ├── Makefile │ │ │ ├── config.h │ │ │ └── grfpga.c │ ├── generic │ │ ├── Makefile │ │ ├── config.h │ │ ├── console.c │ │ └── generic.c │ ├── hal.c │ ├── halsyspage.h │ ├── interrupts.c │ ├── plic.c │ ├── plic.h │ ├── pmap.c │ ├── riscv64.h │ ├── sbi.c │ ├── sbi.h │ ├── spinlock.c │ ├── string.c │ └── timer.c ├── sparcv8leon │ ├── Makefile │ ├── _interrupts-nommu.S │ ├── _interrupts.S │ ├── _traps.S │ ├── arch │ │ ├── cpu.h │ │ ├── elf.h │ │ ├── exceptions.h │ │ ├── interrupts.h │ │ ├── pmap.h │ │ ├── spinlock.h │ │ ├── tlb.h │ │ └── types.h │ ├── cpu.c │ ├── exceptions-nommu.c │ ├── exceptions.c │ ├── gaisler │ │ ├── Makefile │ │ ├── console.c │ │ ├── gaisler.h │ │ ├── generic │ │ │ ├── Makefile │ │ │ ├── _init.S │ │ │ ├── config.h │ │ │ ├── generic.c │ │ │ └── generic.h │ │ ├── gr712rc │ │ │ ├── Makefile │ │ │ ├── _init.S │ │ │ ├── config.h │ │ │ ├── gr712rc.c │ │ │ └── gr712rc.h │ │ ├── gr716 │ │ │ ├── Makefile │ │ │ ├── _init.S │ │ │ ├── config.h │ │ │ ├── gr716.c │ │ │ └── gr716.h │ │ ├── gr740 │ │ │ ├── Makefile │ │ │ ├── _init.S │ │ │ ├── config.h │ │ │ ├── gr740.c │ │ │ └── gr740.h │ │ ├── grlib-tn-0018.h │ │ ├── irqamp.c │ │ ├── irqmp.c │ │ ├── l2cache.c │ │ ├── l2cache.h │ │ └── timer.c │ ├── hal.c │ ├── halsyspage.h │ ├── pmap-nommu.c │ ├── pmap.c │ ├── sparcv8leon.h │ ├── spinlock.c │ ├── srmmu.c │ ├── srmmu.h │ ├── string.c │ └── tlb.c ├── spinlock.h ├── string.h ├── timer.h ├── tlb │ ├── Makefile │ ├── tlb.c │ └── tlb.h └── types.h ├── include ├── arch │ ├── aarch64 │ │ ├── stdtypes.h │ │ ├── types.h │ │ └── zynqmp │ │ │ ├── syspage.h │ │ │ └── zynqmp.h │ ├── armv7a │ │ ├── imx6ull │ │ │ ├── imx6ull.h │ │ │ └── syspage.h │ │ ├── stdtypes.h │ │ ├── types.h │ │ └── zynq7000 │ │ │ ├── syspage.h │ │ │ └── zynq7000.h │ ├── armv7m │ │ ├── imxrt │ │ │ ├── 10xx │ │ │ │ └── imxrt10xx.h │ │ │ ├── 11xx │ │ │ │ └── imxrt1170.h │ │ │ └── syspage.h │ │ ├── stdtypes.h │ │ ├── stm32 │ │ │ ├── l4 │ │ │ │ └── stm32l4.h │ │ │ └── syspage.h │ │ └── types.h │ ├── armv7r │ │ ├── stdtypes.h │ │ ├── tda4vm │ │ │ ├── syspage.h │ │ │ ├── tda4vm.h │ │ │ └── tda4vm_pins.h │ │ ├── types.h │ │ └── zynqmp │ │ │ ├── syspage.h │ │ │ └── zynqmp.h │ ├── armv8m │ │ ├── mcx │ │ │ ├── n94x │ │ │ │ └── mcxn94x.h │ │ │ └── syspage.h │ │ ├── nrf │ │ │ ├── 91 │ │ │ │ └── nrf9160.h │ │ │ └── syspage.h │ │ ├── stdtypes.h │ │ ├── stm32 │ │ │ ├── n6 │ │ │ │ └── stm32n6.h │ │ │ └── syspage.h │ │ └── types.h │ ├── armv8r │ │ ├── mps3an536 │ │ │ ├── mps3an536.h │ │ │ └── syspage.h │ │ ├── stdtypes.h │ │ └── types.h │ ├── ia32 │ │ ├── ia32.h │ │ ├── stdtypes.h │ │ ├── syspage.h │ │ └── types.h │ ├── riscv64 │ │ ├── riscv64.h │ │ ├── stdtypes.h │ │ ├── syspage.h │ │ └── types.h │ └── sparcv8leon │ │ ├── generic │ │ └── generic.h │ │ ├── gr712rc │ │ └── gr712rc.h │ │ ├── gr716 │ │ └── gr716.h │ │ ├── gr740 │ │ └── gr740.h │ │ ├── sparcv8leon.h │ │ ├── stdtypes.h │ │ ├── syspage.h │ │ └── types.h ├── errno.h ├── events.h ├── file.h ├── gaisler │ └── ambapp.h ├── ioctl.h ├── limits.h ├── mman.h ├── msg.h ├── posix-fcntl.h ├── posix-poll.h ├── posix-socket.h ├── posix-stat.h ├── posix-statvfs.h ├── posix-stdio.h ├── posix-timespec.h ├── posix-types.h ├── posix-uio.h ├── signal.h ├── syscalls.h ├── sysinfo.h ├── syspage.h ├── threads.h ├── time.h ├── types.h └── utsname.h ├── lib ├── Makefile ├── assert.c ├── assert.h ├── bsearch.c ├── bsearch.h ├── cbuffer.c ├── cbuffer.h ├── helpers.h ├── idtree.c ├── idtree.h ├── lib.h ├── list.c ├── list.h ├── printf.c ├── printf.h ├── rand.c ├── rand.h ├── rb.c ├── rb.h ├── strutil.c └── strutil.h ├── log ├── Makefile ├── log.c └── log.h ├── main.c ├── posix ├── Makefile ├── fdpass.c ├── fdpass.h ├── inet.c ├── posix.c ├── posix.h ├── posix_private.h ├── sockdefs.h ├── sockport.h └── unix.c ├── proc ├── Makefile ├── cond.c ├── cond.h ├── elf.h ├── lock.h ├── msg-nommu.c ├── msg.c ├── msg.h ├── mutex.c ├── mutex.h ├── name.c ├── name.h ├── ports.c ├── ports.h ├── proc.c ├── proc.h ├── process.c ├── process.h ├── resource.c ├── resource.h ├── threads.c ├── threads.h ├── userintr.c └── userintr.h ├── syscalls.c ├── syscalls.h ├── syspage.c ├── syspage.h ├── test ├── Makefile ├── hw-ddr.c ├── hw-ddr.h ├── msg.c ├── msg.h ├── proc-fpu.c ├── proc-fpu.h ├── proc.c ├── proc.h ├── rb.c ├── rb.h ├── test.c ├── test.h ├── vm.c └── vm.h ├── usrv.c ├── usrv.h └── vm ├── Makefile ├── amap.c ├── amap.h ├── kmalloc.c ├── kmalloc.h ├── map.c ├── map.h ├── object.c ├── object.h ├── page-nommu.c ├── page.c ├── page.h ├── types.h ├── vm.c ├── vm.h ├── zone.c └── zone.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/.clang-format -------------------------------------------------------------------------------- /.codespell_ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/.codespell_ignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/README.md -------------------------------------------------------------------------------- /hal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/Makefile -------------------------------------------------------------------------------- /hal/aarch64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/Makefile -------------------------------------------------------------------------------- /hal/aarch64/_exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/_exceptions.S -------------------------------------------------------------------------------- /hal/aarch64/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/_init.S -------------------------------------------------------------------------------- /hal/aarch64/_memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/_memcpy.S -------------------------------------------------------------------------------- /hal/aarch64/_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/_memset.S -------------------------------------------------------------------------------- /hal/aarch64/aarch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/aarch64.h -------------------------------------------------------------------------------- /hal/aarch64/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/arch/cpu.h -------------------------------------------------------------------------------- /hal/aarch64/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/arch/exceptions.h -------------------------------------------------------------------------------- /hal/aarch64/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/arch/interrupts.h -------------------------------------------------------------------------------- /hal/aarch64/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/arch/pmap.h -------------------------------------------------------------------------------- /hal/aarch64/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/arch/spinlock.h -------------------------------------------------------------------------------- /hal/aarch64/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/arch/types.h -------------------------------------------------------------------------------- /hal/aarch64/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/cache.c -------------------------------------------------------------------------------- /hal/aarch64/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/cpu.c -------------------------------------------------------------------------------- /hal/aarch64/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/dtb.c -------------------------------------------------------------------------------- /hal/aarch64/dtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/dtb.h -------------------------------------------------------------------------------- /hal/aarch64/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/exceptions.c -------------------------------------------------------------------------------- /hal/aarch64/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/hal.c -------------------------------------------------------------------------------- /hal/aarch64/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/halsyspage.h -------------------------------------------------------------------------------- /hal/aarch64/interrupts_gicv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/interrupts_gicv2.c -------------------------------------------------------------------------------- /hal/aarch64/interrupts_gicv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/interrupts_gicv2.h -------------------------------------------------------------------------------- /hal/aarch64/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/pmap.c -------------------------------------------------------------------------------- /hal/aarch64/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/spinlock.c -------------------------------------------------------------------------------- /hal/aarch64/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/string.c -------------------------------------------------------------------------------- /hal/aarch64/zynqmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/zynqmp/Makefile -------------------------------------------------------------------------------- /hal/aarch64/zynqmp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/zynqmp/config.h -------------------------------------------------------------------------------- /hal/aarch64/zynqmp/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/zynqmp/console.c -------------------------------------------------------------------------------- /hal/aarch64/zynqmp/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/zynqmp/timer.c -------------------------------------------------------------------------------- /hal/aarch64/zynqmp/zynqmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/zynqmp/zynqmp.c -------------------------------------------------------------------------------- /hal/aarch64/zynqmp/zynqmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/zynqmp/zynqmp.h -------------------------------------------------------------------------------- /hal/aarch64/zynqmp/zynqmp_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/aarch64/zynqmp/zynqmp_regs.h -------------------------------------------------------------------------------- /hal/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/arm/Makefile -------------------------------------------------------------------------------- /hal/arm/barriers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/arm/barriers.h -------------------------------------------------------------------------------- /hal/arm/rtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/arm/rtt.c -------------------------------------------------------------------------------- /hal/arm/rtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/arm/rtt.h -------------------------------------------------------------------------------- /hal/arm/scs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/arm/scs.c -------------------------------------------------------------------------------- /hal/arm/scs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/arm/scs.h -------------------------------------------------------------------------------- /hal/armv7a/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/Makefile -------------------------------------------------------------------------------- /hal/armv7a/_armv7a.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/_armv7a.S -------------------------------------------------------------------------------- /hal/armv7a/_interrupts.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/_interrupts.S -------------------------------------------------------------------------------- /hal/armv7a/_memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/_memcpy.S -------------------------------------------------------------------------------- /hal/armv7a/_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/_memset.S -------------------------------------------------------------------------------- /hal/armv7a/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/arch/cpu.h -------------------------------------------------------------------------------- /hal/armv7a/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/arch/exceptions.h -------------------------------------------------------------------------------- /hal/armv7a/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/arch/interrupts.h -------------------------------------------------------------------------------- /hal/armv7a/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/arch/pmap.h -------------------------------------------------------------------------------- /hal/armv7a/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/arch/spinlock.h -------------------------------------------------------------------------------- /hal/armv7a/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/arch/types.h -------------------------------------------------------------------------------- /hal/armv7a/armv7a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/armv7a.h -------------------------------------------------------------------------------- /hal/armv7a/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/cpu.c -------------------------------------------------------------------------------- /hal/armv7a/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/exceptions.c -------------------------------------------------------------------------------- /hal/armv7a/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/hal.c -------------------------------------------------------------------------------- /hal/armv7a/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/halsyspage.h -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/Makefile -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/_init.S -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/_memtest.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/_memtest.S -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/config.h -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/console.c -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/imx6ull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/imx6ull.c -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/interrupts.c -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/memtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/memtest.c -------------------------------------------------------------------------------- /hal/armv7a/imx6ull/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/imx6ull/timer.c -------------------------------------------------------------------------------- /hal/armv7a/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/pmap.c -------------------------------------------------------------------------------- /hal/armv7a/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/spinlock.c -------------------------------------------------------------------------------- /hal/armv7a/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/string.c -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/Makefile -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/_init.S -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/config.h -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/console.c -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/interrupts.c -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/timer.c -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/zynq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/zynq.c -------------------------------------------------------------------------------- /hal/armv7a/zynq7000/zynq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7a/zynq7000/zynq.h -------------------------------------------------------------------------------- /hal/armv7m/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/Makefile -------------------------------------------------------------------------------- /hal/armv7m/_memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/_memcpy.S -------------------------------------------------------------------------------- /hal/armv7m/_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/_memset.S -------------------------------------------------------------------------------- /hal/armv7m/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/arch/cpu.h -------------------------------------------------------------------------------- /hal/armv7m/arch/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/arch/elf.h -------------------------------------------------------------------------------- /hal/armv7m/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/arch/exceptions.h -------------------------------------------------------------------------------- /hal/armv7m/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/arch/interrupts.h -------------------------------------------------------------------------------- /hal/armv7m/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/arch/pmap.h -------------------------------------------------------------------------------- /hal/armv7m/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/arch/spinlock.h -------------------------------------------------------------------------------- /hal/armv7m/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/arch/types.h -------------------------------------------------------------------------------- /hal/armv7m/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/cpu.c -------------------------------------------------------------------------------- /hal/armv7m/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/exceptions.c -------------------------------------------------------------------------------- /hal/armv7m/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/hal.c -------------------------------------------------------------------------------- /hal/armv7m/imxrt/10xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/10xx/Makefile -------------------------------------------------------------------------------- /hal/armv7m/imxrt/10xx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/10xx/config.h -------------------------------------------------------------------------------- /hal/armv7m/imxrt/10xx/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/10xx/console.c -------------------------------------------------------------------------------- /hal/armv7m/imxrt/10xx/imxrt10xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/10xx/imxrt10xx.c -------------------------------------------------------------------------------- /hal/armv7m/imxrt/10xx/imxrt10xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/10xx/imxrt10xx.h -------------------------------------------------------------------------------- /hal/armv7m/imxrt/117x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/117x/Makefile -------------------------------------------------------------------------------- /hal/armv7m/imxrt/117x/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/117x/config.h -------------------------------------------------------------------------------- /hal/armv7m/imxrt/117x/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/117x/console.c -------------------------------------------------------------------------------- /hal/armv7m/imxrt/117x/imxrt117x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/117x/imxrt117x.c -------------------------------------------------------------------------------- /hal/armv7m/imxrt/117x/imxrt117x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/117x/imxrt117x.h -------------------------------------------------------------------------------- /hal/armv7m/imxrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/Makefile -------------------------------------------------------------------------------- /hal/armv7m/imxrt/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/_init.S -------------------------------------------------------------------------------- /hal/armv7m/imxrt/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/halsyspage.h -------------------------------------------------------------------------------- /hal/armv7m/imxrt/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/interrupts.c -------------------------------------------------------------------------------- /hal/armv7m/imxrt/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/imxrt/timer.c -------------------------------------------------------------------------------- /hal/armv7m/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/pmap.c -------------------------------------------------------------------------------- /hal/armv7m/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/spinlock.c -------------------------------------------------------------------------------- /hal/armv7m/stm32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/Makefile -------------------------------------------------------------------------------- /hal/armv7m/stm32/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/_init.S -------------------------------------------------------------------------------- /hal/armv7m/stm32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/config.h -------------------------------------------------------------------------------- /hal/armv7m/stm32/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/halsyspage.h -------------------------------------------------------------------------------- /hal/armv7m/stm32/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/interrupts.c -------------------------------------------------------------------------------- /hal/armv7m/stm32/l4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/l4/Makefile -------------------------------------------------------------------------------- /hal/armv7m/stm32/l4/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/l4/console.c -------------------------------------------------------------------------------- /hal/armv7m/stm32/l4/stm32l4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/l4/stm32l4.c -------------------------------------------------------------------------------- /hal/armv7m/stm32/l4/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/l4/timer.c -------------------------------------------------------------------------------- /hal/armv7m/stm32/stm32-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/stm32-timer.h -------------------------------------------------------------------------------- /hal/armv7m/stm32/stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/stm32/stm32.h -------------------------------------------------------------------------------- /hal/armv7m/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7m/string.c -------------------------------------------------------------------------------- /hal/armv7r/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/Makefile -------------------------------------------------------------------------------- /hal/armv7r/_armv7r.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/_armv7r.S -------------------------------------------------------------------------------- /hal/armv7r/_interrupts.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/_interrupts.S -------------------------------------------------------------------------------- /hal/armv7r/_memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/_memcpy.S -------------------------------------------------------------------------------- /hal/armv7r/_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/_memset.S -------------------------------------------------------------------------------- /hal/armv7r/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/arch/cpu.h -------------------------------------------------------------------------------- /hal/armv7r/arch/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/arch/elf.h -------------------------------------------------------------------------------- /hal/armv7r/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/arch/exceptions.h -------------------------------------------------------------------------------- /hal/armv7r/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/arch/interrupts.h -------------------------------------------------------------------------------- /hal/armv7r/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/arch/pmap.h -------------------------------------------------------------------------------- /hal/armv7r/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/arch/spinlock.h -------------------------------------------------------------------------------- /hal/armv7r/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/arch/types.h -------------------------------------------------------------------------------- /hal/armv7r/armv7r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/armv7r.h -------------------------------------------------------------------------------- /hal/armv7r/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/cpu.c -------------------------------------------------------------------------------- /hal/armv7r/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/exceptions.c -------------------------------------------------------------------------------- /hal/armv7r/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/hal.c -------------------------------------------------------------------------------- /hal/armv7r/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/halsyspage.h -------------------------------------------------------------------------------- /hal/armv7r/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/pmap.c -------------------------------------------------------------------------------- /hal/armv7r/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/spinlock.c -------------------------------------------------------------------------------- /hal/armv7r/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/string.c -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/Makefile -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/_init.S -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/config.h -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/console.c -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/interrupts.c -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/tda4vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/tda4vm.c -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/tda4vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/tda4vm.h -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/tda4vm_intrtr_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/tda4vm_intrtr_defs.h -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/tda4vm_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/tda4vm_regs.h -------------------------------------------------------------------------------- /hal/armv7r/tda4vm/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/tda4vm/timer.c -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/Makefile -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/_init.S -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/config.h -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/console.c -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/interrupts.c -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/timer.c -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/zynqmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/zynqmp.c -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/zynqmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/zynqmp.h -------------------------------------------------------------------------------- /hal/armv7r/zynqmp/zynqmp_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv7r/zynqmp/zynqmp_regs.h -------------------------------------------------------------------------------- /hal/armv8m/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/Makefile -------------------------------------------------------------------------------- /hal/armv8m/_memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/_memcpy.S -------------------------------------------------------------------------------- /hal/armv8m/_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/_memset.S -------------------------------------------------------------------------------- /hal/armv8m/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/arch/cpu.h -------------------------------------------------------------------------------- /hal/armv8m/arch/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/arch/elf.h -------------------------------------------------------------------------------- /hal/armv8m/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/arch/exceptions.h -------------------------------------------------------------------------------- /hal/armv8m/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/arch/interrupts.h -------------------------------------------------------------------------------- /hal/armv8m/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/arch/pmap.h -------------------------------------------------------------------------------- /hal/armv8m/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/arch/spinlock.h -------------------------------------------------------------------------------- /hal/armv8m/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/arch/types.h -------------------------------------------------------------------------------- /hal/armv8m/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/cpu.c -------------------------------------------------------------------------------- /hal/armv8m/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/exceptions.c -------------------------------------------------------------------------------- /hal/armv8m/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/hal.c -------------------------------------------------------------------------------- /hal/armv8m/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/halsyspage.h -------------------------------------------------------------------------------- /hal/armv8m/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/interrupts.c -------------------------------------------------------------------------------- /hal/armv8m/mcx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/Makefile -------------------------------------------------------------------------------- /hal/armv8m/mcx/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/_init.S -------------------------------------------------------------------------------- /hal/armv8m/mcx/n94x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/n94x/Makefile -------------------------------------------------------------------------------- /hal/armv8m/mcx/n94x/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/n94x/config.h -------------------------------------------------------------------------------- /hal/armv8m/mcx/n94x/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/n94x/console.c -------------------------------------------------------------------------------- /hal/armv8m/mcx/n94x/mcxn94x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/n94x/mcxn94x.c -------------------------------------------------------------------------------- /hal/armv8m/mcx/n94x/mcxn94x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/n94x/mcxn94x.h -------------------------------------------------------------------------------- /hal/armv8m/mcx/n94x/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/mcx/n94x/timer.c -------------------------------------------------------------------------------- /hal/armv8m/nrf/91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/91/Makefile -------------------------------------------------------------------------------- /hal/armv8m/nrf/91/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/91/config.h -------------------------------------------------------------------------------- /hal/armv8m/nrf/91/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/91/console.c -------------------------------------------------------------------------------- /hal/armv8m/nrf/91/nrf91.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/91/nrf91.c -------------------------------------------------------------------------------- /hal/armv8m/nrf/91/nrf91.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/91/nrf91.h -------------------------------------------------------------------------------- /hal/armv8m/nrf/91/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/91/timer.c -------------------------------------------------------------------------------- /hal/armv8m/nrf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/Makefile -------------------------------------------------------------------------------- /hal/armv8m/nrf/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/nrf/_init.S -------------------------------------------------------------------------------- /hal/armv8m/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/pmap.c -------------------------------------------------------------------------------- /hal/armv8m/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/spinlock.c -------------------------------------------------------------------------------- /hal/armv8m/stm32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/Makefile -------------------------------------------------------------------------------- /hal/armv8m/stm32/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/_init.S -------------------------------------------------------------------------------- /hal/armv8m/stm32/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/halsyspage.h -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/Makefile -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/bsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/bsec.c -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/config.h -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/console.c -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/risaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/risaf.c -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/stm32n6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/stm32n6.c -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/stm32n6_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/stm32n6_regs.h -------------------------------------------------------------------------------- /hal/armv8m/stm32/n6/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/n6/timer.c -------------------------------------------------------------------------------- /hal/armv8m/stm32/stm32-timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/stm32-timer.h -------------------------------------------------------------------------------- /hal/armv8m/stm32/stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/stm32/stm32.h -------------------------------------------------------------------------------- /hal/armv8m/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8m/string.c -------------------------------------------------------------------------------- /hal/armv8r/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/Makefile -------------------------------------------------------------------------------- /hal/armv8r/_armv8r.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/_armv8r.S -------------------------------------------------------------------------------- /hal/armv8r/_interrupts.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/_interrupts.S -------------------------------------------------------------------------------- /hal/armv8r/_memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/_memcpy.S -------------------------------------------------------------------------------- /hal/armv8r/_memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/_memset.S -------------------------------------------------------------------------------- /hal/armv8r/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/arch/cpu.h -------------------------------------------------------------------------------- /hal/armv8r/arch/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/arch/elf.h -------------------------------------------------------------------------------- /hal/armv8r/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/arch/exceptions.h -------------------------------------------------------------------------------- /hal/armv8r/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/arch/interrupts.h -------------------------------------------------------------------------------- /hal/armv8r/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/arch/pmap.h -------------------------------------------------------------------------------- /hal/armv8r/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/arch/spinlock.h -------------------------------------------------------------------------------- /hal/armv8r/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/arch/types.h -------------------------------------------------------------------------------- /hal/armv8r/armv8r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/armv8r.h -------------------------------------------------------------------------------- /hal/armv8r/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/cpu.c -------------------------------------------------------------------------------- /hal/armv8r/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/exceptions.c -------------------------------------------------------------------------------- /hal/armv8r/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/hal.c -------------------------------------------------------------------------------- /hal/armv8r/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/halsyspage.h -------------------------------------------------------------------------------- /hal/armv8r/mps3an536/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/mps3an536/Makefile -------------------------------------------------------------------------------- /hal/armv8r/mps3an536/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/mps3an536/_init.S -------------------------------------------------------------------------------- /hal/armv8r/mps3an536/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/mps3an536/config.h -------------------------------------------------------------------------------- /hal/armv8r/mps3an536/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/mps3an536/console.c -------------------------------------------------------------------------------- /hal/armv8r/mps3an536/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/mps3an536/interrupts.c -------------------------------------------------------------------------------- /hal/armv8r/mps3an536/mps3an536.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/mps3an536/mps3an536.c -------------------------------------------------------------------------------- /hal/armv8r/mps3an536/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/mps3an536/timer.c -------------------------------------------------------------------------------- /hal/armv8r/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/pmap.c -------------------------------------------------------------------------------- /hal/armv8r/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/spinlock.c -------------------------------------------------------------------------------- /hal/armv8r/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/armv8r/string.c -------------------------------------------------------------------------------- /hal/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/common.c -------------------------------------------------------------------------------- /hal/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/console.h -------------------------------------------------------------------------------- /hal/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/cpu.h -------------------------------------------------------------------------------- /hal/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/elf.h -------------------------------------------------------------------------------- /hal/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/exceptions.h -------------------------------------------------------------------------------- /hal/gaisler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/gaisler/Makefile -------------------------------------------------------------------------------- /hal/gaisler/ambapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/gaisler/ambapp.c -------------------------------------------------------------------------------- /hal/gaisler/ambapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/gaisler/ambapp.h -------------------------------------------------------------------------------- /hal/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/hal.h -------------------------------------------------------------------------------- /hal/ia32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/Makefile -------------------------------------------------------------------------------- /hal/ia32/_exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/_exceptions.S -------------------------------------------------------------------------------- /hal/ia32/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/_init.S -------------------------------------------------------------------------------- /hal/ia32/_interrupts.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/_interrupts.S -------------------------------------------------------------------------------- /hal/ia32/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/arch/cpu.h -------------------------------------------------------------------------------- /hal/ia32/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/arch/exceptions.h -------------------------------------------------------------------------------- /hal/ia32/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/arch/interrupts.h -------------------------------------------------------------------------------- /hal/ia32/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/arch/pmap.h -------------------------------------------------------------------------------- /hal/ia32/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/arch/spinlock.h -------------------------------------------------------------------------------- /hal/ia32/arch/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/arch/tlb.h -------------------------------------------------------------------------------- /hal/ia32/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/arch/types.h -------------------------------------------------------------------------------- /hal/ia32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/config.h -------------------------------------------------------------------------------- /hal/ia32/console-serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/console-serial.c -------------------------------------------------------------------------------- /hal/ia32/console-vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/console-vga.c -------------------------------------------------------------------------------- /hal/ia32/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/console.c -------------------------------------------------------------------------------- /hal/ia32/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/console.h -------------------------------------------------------------------------------- /hal/ia32/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/cpu.c -------------------------------------------------------------------------------- /hal/ia32/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/exceptions.c -------------------------------------------------------------------------------- /hal/ia32/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/hal.c -------------------------------------------------------------------------------- /hal/ia32/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/halsyspage.h -------------------------------------------------------------------------------- /hal/ia32/ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/ia32.h -------------------------------------------------------------------------------- /hal/ia32/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/init.c -------------------------------------------------------------------------------- /hal/ia32/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/init.h -------------------------------------------------------------------------------- /hal/ia32/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/interrupts.c -------------------------------------------------------------------------------- /hal/ia32/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/pci.c -------------------------------------------------------------------------------- /hal/ia32/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/pci.h -------------------------------------------------------------------------------- /hal/ia32/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/pmap.c -------------------------------------------------------------------------------- /hal/ia32/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/spinlock.c -------------------------------------------------------------------------------- /hal/ia32/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/string.c -------------------------------------------------------------------------------- /hal/ia32/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/ia32/timer.c -------------------------------------------------------------------------------- /hal/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/interrupts.h -------------------------------------------------------------------------------- /hal/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/list.h -------------------------------------------------------------------------------- /hal/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/pmap.h -------------------------------------------------------------------------------- /hal/riscv64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/Makefile -------------------------------------------------------------------------------- /hal/riscv64/_cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/_cache.S -------------------------------------------------------------------------------- /hal/riscv64/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/_init.S -------------------------------------------------------------------------------- /hal/riscv64/_interrupts.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/_interrupts.S -------------------------------------------------------------------------------- /hal/riscv64/_string.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/_string.S -------------------------------------------------------------------------------- /hal/riscv64/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/arch/cpu.h -------------------------------------------------------------------------------- /hal/riscv64/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/arch/exceptions.h -------------------------------------------------------------------------------- /hal/riscv64/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/arch/interrupts.h -------------------------------------------------------------------------------- /hal/riscv64/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/arch/pmap.h -------------------------------------------------------------------------------- /hal/riscv64/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/arch/spinlock.h -------------------------------------------------------------------------------- /hal/riscv64/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/arch/types.h -------------------------------------------------------------------------------- /hal/riscv64/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/cpu.c -------------------------------------------------------------------------------- /hal/riscv64/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/dtb.c -------------------------------------------------------------------------------- /hal/riscv64/dtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/dtb.h -------------------------------------------------------------------------------- /hal/riscv64/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/exceptions.c -------------------------------------------------------------------------------- /hal/riscv64/gaisler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/Makefile -------------------------------------------------------------------------------- /hal/riscv64/gaisler/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/console.c -------------------------------------------------------------------------------- /hal/riscv64/gaisler/gr765/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/gr765/Makefile -------------------------------------------------------------------------------- /hal/riscv64/gaisler/gr765/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/gr765/config.h -------------------------------------------------------------------------------- /hal/riscv64/gaisler/gr765/gr765.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/gr765/gr765.c -------------------------------------------------------------------------------- /hal/riscv64/gaisler/grfpga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/grfpga/Makefile -------------------------------------------------------------------------------- /hal/riscv64/gaisler/grfpga/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/grfpga/config.h -------------------------------------------------------------------------------- /hal/riscv64/gaisler/grfpga/grfpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/gaisler/grfpga/grfpga.c -------------------------------------------------------------------------------- /hal/riscv64/generic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/generic/Makefile -------------------------------------------------------------------------------- /hal/riscv64/generic/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/generic/config.h -------------------------------------------------------------------------------- /hal/riscv64/generic/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/generic/console.c -------------------------------------------------------------------------------- /hal/riscv64/generic/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/generic/generic.c -------------------------------------------------------------------------------- /hal/riscv64/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/hal.c -------------------------------------------------------------------------------- /hal/riscv64/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/halsyspage.h -------------------------------------------------------------------------------- /hal/riscv64/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/interrupts.c -------------------------------------------------------------------------------- /hal/riscv64/plic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/plic.c -------------------------------------------------------------------------------- /hal/riscv64/plic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/plic.h -------------------------------------------------------------------------------- /hal/riscv64/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/pmap.c -------------------------------------------------------------------------------- /hal/riscv64/riscv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/riscv64.h -------------------------------------------------------------------------------- /hal/riscv64/sbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/sbi.c -------------------------------------------------------------------------------- /hal/riscv64/sbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/sbi.h -------------------------------------------------------------------------------- /hal/riscv64/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/spinlock.c -------------------------------------------------------------------------------- /hal/riscv64/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/string.c -------------------------------------------------------------------------------- /hal/riscv64/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/riscv64/timer.c -------------------------------------------------------------------------------- /hal/sparcv8leon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/Makefile -------------------------------------------------------------------------------- /hal/sparcv8leon/_interrupts-nommu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/_interrupts-nommu.S -------------------------------------------------------------------------------- /hal/sparcv8leon/_interrupts.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/_interrupts.S -------------------------------------------------------------------------------- /hal/sparcv8leon/_traps.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/_traps.S -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/cpu.h -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/elf.h -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/exceptions.h -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/interrupts.h -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/pmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/pmap.h -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/spinlock.h -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/tlb.h -------------------------------------------------------------------------------- /hal/sparcv8leon/arch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/arch/types.h -------------------------------------------------------------------------------- /hal/sparcv8leon/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/cpu.c -------------------------------------------------------------------------------- /hal/sparcv8leon/exceptions-nommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/exceptions-nommu.c -------------------------------------------------------------------------------- /hal/sparcv8leon/exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/exceptions.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/Makefile -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/console.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gaisler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gaisler.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/generic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/generic/Makefile -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/generic/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/generic/_init.S -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/generic/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/generic/config.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/generic/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/generic/generic.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/generic/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/generic/generic.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr712rc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr712rc/Makefile -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr712rc/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr712rc/_init.S -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr712rc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr712rc/config.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr712rc/gr712rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr712rc/gr712rc.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr712rc/gr712rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr712rc/gr712rc.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr716/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr716/Makefile -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr716/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr716/_init.S -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr716/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr716/config.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr716/gr716.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr716/gr716.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr716/gr716.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr716/gr716.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr740/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr740/Makefile -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr740/_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr740/_init.S -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr740/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr740/config.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr740/gr740.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr740/gr740.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/gr740/gr740.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/gr740/gr740.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/grlib-tn-0018.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/grlib-tn-0018.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/irqamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/irqamp.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/irqmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/irqmp.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/l2cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/l2cache.c -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/l2cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/l2cache.h -------------------------------------------------------------------------------- /hal/sparcv8leon/gaisler/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/gaisler/timer.c -------------------------------------------------------------------------------- /hal/sparcv8leon/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/hal.c -------------------------------------------------------------------------------- /hal/sparcv8leon/halsyspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/halsyspage.h -------------------------------------------------------------------------------- /hal/sparcv8leon/pmap-nommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/pmap-nommu.c -------------------------------------------------------------------------------- /hal/sparcv8leon/pmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/pmap.c -------------------------------------------------------------------------------- /hal/sparcv8leon/sparcv8leon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/sparcv8leon.h -------------------------------------------------------------------------------- /hal/sparcv8leon/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/spinlock.c -------------------------------------------------------------------------------- /hal/sparcv8leon/srmmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/srmmu.c -------------------------------------------------------------------------------- /hal/sparcv8leon/srmmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/srmmu.h -------------------------------------------------------------------------------- /hal/sparcv8leon/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/string.c -------------------------------------------------------------------------------- /hal/sparcv8leon/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/sparcv8leon/tlb.c -------------------------------------------------------------------------------- /hal/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/spinlock.h -------------------------------------------------------------------------------- /hal/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/string.h -------------------------------------------------------------------------------- /hal/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/timer.h -------------------------------------------------------------------------------- /hal/tlb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/tlb/Makefile -------------------------------------------------------------------------------- /hal/tlb/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/tlb/tlb.c -------------------------------------------------------------------------------- /hal/tlb/tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/tlb/tlb.h -------------------------------------------------------------------------------- /hal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/hal/types.h -------------------------------------------------------------------------------- /include/arch/aarch64/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/aarch64/stdtypes.h -------------------------------------------------------------------------------- /include/arch/aarch64/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/aarch64/types.h -------------------------------------------------------------------------------- /include/arch/aarch64/zynqmp/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/aarch64/zynqmp/syspage.h -------------------------------------------------------------------------------- /include/arch/aarch64/zynqmp/zynqmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/aarch64/zynqmp/zynqmp.h -------------------------------------------------------------------------------- /include/arch/armv7a/imx6ull/imx6ull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7a/imx6ull/imx6ull.h -------------------------------------------------------------------------------- /include/arch/armv7a/imx6ull/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7a/imx6ull/syspage.h -------------------------------------------------------------------------------- /include/arch/armv7a/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7a/stdtypes.h -------------------------------------------------------------------------------- /include/arch/armv7a/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7a/types.h -------------------------------------------------------------------------------- /include/arch/armv7a/zynq7000/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7a/zynq7000/syspage.h -------------------------------------------------------------------------------- /include/arch/armv7a/zynq7000/zynq7000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7a/zynq7000/zynq7000.h -------------------------------------------------------------------------------- /include/arch/armv7m/imxrt/10xx/imxrt10xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7m/imxrt/10xx/imxrt10xx.h -------------------------------------------------------------------------------- /include/arch/armv7m/imxrt/11xx/imxrt1170.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7m/imxrt/11xx/imxrt1170.h -------------------------------------------------------------------------------- /include/arch/armv7m/imxrt/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7m/imxrt/syspage.h -------------------------------------------------------------------------------- /include/arch/armv7m/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7m/stdtypes.h -------------------------------------------------------------------------------- /include/arch/armv7m/stm32/l4/stm32l4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7m/stm32/l4/stm32l4.h -------------------------------------------------------------------------------- /include/arch/armv7m/stm32/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7m/stm32/syspage.h -------------------------------------------------------------------------------- /include/arch/armv7m/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7m/types.h -------------------------------------------------------------------------------- /include/arch/armv7r/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7r/stdtypes.h -------------------------------------------------------------------------------- /include/arch/armv7r/tda4vm/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7r/tda4vm/syspage.h -------------------------------------------------------------------------------- /include/arch/armv7r/tda4vm/tda4vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7r/tda4vm/tda4vm.h -------------------------------------------------------------------------------- /include/arch/armv7r/tda4vm/tda4vm_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7r/tda4vm/tda4vm_pins.h -------------------------------------------------------------------------------- /include/arch/armv7r/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7r/types.h -------------------------------------------------------------------------------- /include/arch/armv7r/zynqmp/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7r/zynqmp/syspage.h -------------------------------------------------------------------------------- /include/arch/armv7r/zynqmp/zynqmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv7r/zynqmp/zynqmp.h -------------------------------------------------------------------------------- /include/arch/armv8m/mcx/n94x/mcxn94x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/mcx/n94x/mcxn94x.h -------------------------------------------------------------------------------- /include/arch/armv8m/mcx/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/mcx/syspage.h -------------------------------------------------------------------------------- /include/arch/armv8m/nrf/91/nrf9160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/nrf/91/nrf9160.h -------------------------------------------------------------------------------- /include/arch/armv8m/nrf/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/nrf/syspage.h -------------------------------------------------------------------------------- /include/arch/armv8m/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/stdtypes.h -------------------------------------------------------------------------------- /include/arch/armv8m/stm32/n6/stm32n6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/stm32/n6/stm32n6.h -------------------------------------------------------------------------------- /include/arch/armv8m/stm32/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/stm32/syspage.h -------------------------------------------------------------------------------- /include/arch/armv8m/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8m/types.h -------------------------------------------------------------------------------- /include/arch/armv8r/mps3an536/mps3an536.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8r/mps3an536/mps3an536.h -------------------------------------------------------------------------------- /include/arch/armv8r/mps3an536/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8r/mps3an536/syspage.h -------------------------------------------------------------------------------- /include/arch/armv8r/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8r/stdtypes.h -------------------------------------------------------------------------------- /include/arch/armv8r/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/armv8r/types.h -------------------------------------------------------------------------------- /include/arch/ia32/ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/ia32/ia32.h -------------------------------------------------------------------------------- /include/arch/ia32/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/ia32/stdtypes.h -------------------------------------------------------------------------------- /include/arch/ia32/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/ia32/syspage.h -------------------------------------------------------------------------------- /include/arch/ia32/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/ia32/types.h -------------------------------------------------------------------------------- /include/arch/riscv64/riscv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/riscv64/riscv64.h -------------------------------------------------------------------------------- /include/arch/riscv64/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/riscv64/stdtypes.h -------------------------------------------------------------------------------- /include/arch/riscv64/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/riscv64/syspage.h -------------------------------------------------------------------------------- /include/arch/riscv64/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/riscv64/types.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/generic/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/generic/generic.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/gr712rc/gr712rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/gr712rc/gr712rc.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/gr716/gr716.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/gr716/gr716.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/gr740/gr740.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/gr740/gr740.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/sparcv8leon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/sparcv8leon.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/stdtypes.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/syspage.h -------------------------------------------------------------------------------- /include/arch/sparcv8leon/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/arch/sparcv8leon/types.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/events.h -------------------------------------------------------------------------------- /include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/file.h -------------------------------------------------------------------------------- /include/gaisler/ambapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/gaisler/ambapp.h -------------------------------------------------------------------------------- /include/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/ioctl.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/mman.h -------------------------------------------------------------------------------- /include/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/msg.h -------------------------------------------------------------------------------- /include/posix-fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-fcntl.h -------------------------------------------------------------------------------- /include/posix-poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-poll.h -------------------------------------------------------------------------------- /include/posix-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-socket.h -------------------------------------------------------------------------------- /include/posix-stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-stat.h -------------------------------------------------------------------------------- /include/posix-statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-statvfs.h -------------------------------------------------------------------------------- /include/posix-stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-stdio.h -------------------------------------------------------------------------------- /include/posix-timespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-timespec.h -------------------------------------------------------------------------------- /include/posix-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-types.h -------------------------------------------------------------------------------- /include/posix-uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/posix-uio.h -------------------------------------------------------------------------------- /include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/signal.h -------------------------------------------------------------------------------- /include/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/syscalls.h -------------------------------------------------------------------------------- /include/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/sysinfo.h -------------------------------------------------------------------------------- /include/syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/syspage.h -------------------------------------------------------------------------------- /include/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/threads.h -------------------------------------------------------------------------------- /include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/time.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/types.h -------------------------------------------------------------------------------- /include/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/include/utsname.h -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/assert.c -------------------------------------------------------------------------------- /lib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/assert.h -------------------------------------------------------------------------------- /lib/bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/bsearch.c -------------------------------------------------------------------------------- /lib/bsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/bsearch.h -------------------------------------------------------------------------------- /lib/cbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/cbuffer.c -------------------------------------------------------------------------------- /lib/cbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/cbuffer.h -------------------------------------------------------------------------------- /lib/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/helpers.h -------------------------------------------------------------------------------- /lib/idtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/idtree.c -------------------------------------------------------------------------------- /lib/idtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/idtree.h -------------------------------------------------------------------------------- /lib/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/lib.h -------------------------------------------------------------------------------- /lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/list.c -------------------------------------------------------------------------------- /lib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/list.h -------------------------------------------------------------------------------- /lib/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/printf.c -------------------------------------------------------------------------------- /lib/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/printf.h -------------------------------------------------------------------------------- /lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/rand.c -------------------------------------------------------------------------------- /lib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/rand.h -------------------------------------------------------------------------------- /lib/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/rb.c -------------------------------------------------------------------------------- /lib/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/rb.h -------------------------------------------------------------------------------- /lib/strutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/strutil.c -------------------------------------------------------------------------------- /lib/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/lib/strutil.h -------------------------------------------------------------------------------- /log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/log/Makefile -------------------------------------------------------------------------------- /log/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/log/log.c -------------------------------------------------------------------------------- /log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/log/log.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/main.c -------------------------------------------------------------------------------- /posix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/Makefile -------------------------------------------------------------------------------- /posix/fdpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/fdpass.c -------------------------------------------------------------------------------- /posix/fdpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/fdpass.h -------------------------------------------------------------------------------- /posix/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/inet.c -------------------------------------------------------------------------------- /posix/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/posix.c -------------------------------------------------------------------------------- /posix/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/posix.h -------------------------------------------------------------------------------- /posix/posix_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/posix_private.h -------------------------------------------------------------------------------- /posix/sockdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/sockdefs.h -------------------------------------------------------------------------------- /posix/sockport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/sockport.h -------------------------------------------------------------------------------- /posix/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/posix/unix.c -------------------------------------------------------------------------------- /proc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/Makefile -------------------------------------------------------------------------------- /proc/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/cond.c -------------------------------------------------------------------------------- /proc/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/cond.h -------------------------------------------------------------------------------- /proc/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/elf.h -------------------------------------------------------------------------------- /proc/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/lock.h -------------------------------------------------------------------------------- /proc/msg-nommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/msg-nommu.c -------------------------------------------------------------------------------- /proc/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/msg.c -------------------------------------------------------------------------------- /proc/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/msg.h -------------------------------------------------------------------------------- /proc/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/mutex.c -------------------------------------------------------------------------------- /proc/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/mutex.h -------------------------------------------------------------------------------- /proc/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/name.c -------------------------------------------------------------------------------- /proc/name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/name.h -------------------------------------------------------------------------------- /proc/ports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/ports.c -------------------------------------------------------------------------------- /proc/ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/ports.h -------------------------------------------------------------------------------- /proc/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/proc.c -------------------------------------------------------------------------------- /proc/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/proc.h -------------------------------------------------------------------------------- /proc/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/process.c -------------------------------------------------------------------------------- /proc/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/process.h -------------------------------------------------------------------------------- /proc/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/resource.c -------------------------------------------------------------------------------- /proc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/resource.h -------------------------------------------------------------------------------- /proc/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/threads.c -------------------------------------------------------------------------------- /proc/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/threads.h -------------------------------------------------------------------------------- /proc/userintr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/userintr.c -------------------------------------------------------------------------------- /proc/userintr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/proc/userintr.h -------------------------------------------------------------------------------- /syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/syscalls.c -------------------------------------------------------------------------------- /syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/syscalls.h -------------------------------------------------------------------------------- /syspage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/syspage.c -------------------------------------------------------------------------------- /syspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/syspage.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/hw-ddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/hw-ddr.c -------------------------------------------------------------------------------- /test/hw-ddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/hw-ddr.h -------------------------------------------------------------------------------- /test/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/msg.c -------------------------------------------------------------------------------- /test/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/msg.h -------------------------------------------------------------------------------- /test/proc-fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/proc-fpu.c -------------------------------------------------------------------------------- /test/proc-fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/proc-fpu.h -------------------------------------------------------------------------------- /test/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/proc.c -------------------------------------------------------------------------------- /test/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/proc.h -------------------------------------------------------------------------------- /test/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/rb.c -------------------------------------------------------------------------------- /test/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/rb.h -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/test.c -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/test.h -------------------------------------------------------------------------------- /test/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/vm.c -------------------------------------------------------------------------------- /test/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/test/vm.h -------------------------------------------------------------------------------- /usrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/usrv.c -------------------------------------------------------------------------------- /usrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/usrv.h -------------------------------------------------------------------------------- /vm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/Makefile -------------------------------------------------------------------------------- /vm/amap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/amap.c -------------------------------------------------------------------------------- /vm/amap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/amap.h -------------------------------------------------------------------------------- /vm/kmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/kmalloc.c -------------------------------------------------------------------------------- /vm/kmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/kmalloc.h -------------------------------------------------------------------------------- /vm/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/map.c -------------------------------------------------------------------------------- /vm/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/map.h -------------------------------------------------------------------------------- /vm/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/object.c -------------------------------------------------------------------------------- /vm/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/object.h -------------------------------------------------------------------------------- /vm/page-nommu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/page-nommu.c -------------------------------------------------------------------------------- /vm/page.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/page.c -------------------------------------------------------------------------------- /vm/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/page.h -------------------------------------------------------------------------------- /vm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/types.h -------------------------------------------------------------------------------- /vm/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/vm.c -------------------------------------------------------------------------------- /vm/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/vm.h -------------------------------------------------------------------------------- /vm/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/zone.c -------------------------------------------------------------------------------- /vm/zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenix-rtos/phoenix-rtos-kernel/HEAD/vm/zone.h --------------------------------------------------------------------------------