├── .gitignore ├── Kconfig ├── LICENSE ├── Makefile ├── arch ├── Kconfig └── riscv │ ├── Kconfig │ ├── Makefile │ ├── boot │ ├── conf │ │ ├── sg2044-evb-conf.ini │ │ ├── sg2044-sra3-40-8-conf.ini │ │ └── sg2044-sra3-40.conf.ini │ ├── dts │ │ ├── Makefile │ │ ├── mango-milkv-pioneer.dts │ │ ├── mango-sophgo-capricorn.dts │ │ ├── mango-sophgo-pisces.dts │ │ ├── mango-sophgo-x4evb.dts │ │ ├── mango-sophgo-x8evb.dts │ │ ├── mango-yixin-s2110.dts │ │ ├── qemu-virt.dts │ │ ├── sg2042.dts │ │ └── sg2044.dts │ └── dtso │ │ ├── Makefile │ │ ├── mango-milkv-pioneer.dtso │ │ ├── mango-sophgo-pisces.dtso │ │ ├── mango-sophgo-x4evb.dtso │ │ ├── mango-sophgo-x8evb.dtso │ │ ├── sg2044-evb.dtso │ │ └── sg2044-sra3.dtso │ ├── configs │ ├── bm1690tp_defconfig │ ├── defconfig │ ├── sg2042_defconfig │ └── sg2044_defconfig │ ├── include │ ├── arch.h │ ├── arch_spinlock.h │ ├── arch_thread.h │ ├── asm.h │ ├── atomic.h │ ├── barrier.h │ ├── bitops.h │ ├── cache.h │ ├── encoding.h │ ├── irq.h │ ├── linkage.h │ ├── rwonce.h │ ├── sbi.h │ ├── smp.h │ ├── timer.h │ ├── trap.h │ └── types.h │ └── src │ ├── Makefile │ ├── arch.c │ ├── arch_spinlock.c │ ├── arch_thread.c │ ├── atomic.c │ ├── builtin_dtb.S │ ├── cache.c │ ├── crt.c │ ├── dtb.c │ ├── smp.c │ ├── target-ram.lds.S │ ├── target-rom.lds.S │ ├── timer.c │ ├── trap.c │ └── vector.S ├── common ├── Kconfig ├── Makefile ├── commands.c ├── main.c ├── mmio.c ├── semaphore.c ├── spinlock.c ├── stdio.c ├── test.c └── thread.c ├── drivers ├── Kconfig ├── Makefile ├── alg │ ├── Kconfig │ ├── Makefile │ ├── alg.c │ └── pka │ │ ├── Makefile │ │ ├── elapka.elf │ │ ├── elppka.c │ │ ├── firmware.c │ │ ├── pdu.c │ │ ├── pka_port.c │ │ ├── pka_rsa.c │ │ ├── pka_sm2.c │ │ ├── pkadev.c │ │ └── pkafw.S ├── base │ ├── Kconfig │ ├── Makefile │ └── device.c ├── blkdev │ ├── Kconfig │ ├── Makefile │ ├── blkdev.c │ └── sdhci-dwc │ │ ├── Makefile │ │ ├── mmc.c │ │ └── sd.c ├── boot │ ├── Kconfig │ ├── Makefile │ └── bootdev.c ├── irqchip │ ├── Kconfig │ ├── Makefile │ ├── ictl │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ictl.c │ │ └── ictl.h │ ├── intc │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ └── intc.c │ ├── interrupt.c │ ├── mtli │ │ ├── Kconfig │ │ ├── Makefile │ │ └── mtli.c │ └── plic │ │ ├── Kconfig │ │ ├── Makefile │ │ └── plic.c ├── mtd │ ├── Kconfig │ ├── Makefile │ ├── mtd.c │ └── spifmc-sophgo │ │ ├── Makefile │ │ └── sgspif.c ├── nvmem │ ├── Kconfig │ ├── Makefile │ ├── nvmem.c │ └── sophgo-efuse │ │ ├── Makefile │ │ └── sophgo-efuse.c ├── platform │ ├── Kconfig │ ├── Makefile │ └── platform.c └── serial │ ├── Kconfig │ ├── Makefile │ ├── ns16550 │ ├── Kconfig │ ├── Makefile │ ├── ns16550.c │ ├── ns16550.h │ ├── ns16550_device.c │ └── ns16550_early.c │ └── serial.c ├── include ├── assert.h ├── common │ ├── common.h │ ├── debug.h │ ├── ictl.h │ ├── mmio.h │ ├── module.h │ ├── semaphore.h │ ├── spinlock.h │ └── thread.h ├── driver │ ├── alg.h │ ├── blkdev.h │ ├── bootdev.h │ ├── device.h │ ├── driver.h │ ├── dtb.h │ ├── interrupt.h │ ├── irqchip │ │ └── gic.h │ ├── mtd.h │ ├── nvmem.h │ ├── pka │ │ ├── elppdu.h │ │ ├── elppdu_error.h │ │ ├── elppka.h │ │ ├── elppka_elf.h │ │ ├── elppka_hw.h │ │ ├── pka.h │ │ ├── pka_port.h │ │ ├── pkadev.h │ │ └── pkafw.h │ ├── platform.h │ ├── sd │ │ ├── mmc.h │ │ └── sd.h │ └── serial.h └── lib │ ├── akcipher.h │ ├── cli.h │ ├── console.h │ ├── container_of.h │ ├── efi.h │ ├── fat32 │ ├── diskio.h │ ├── ff.h │ └── ffconf.h │ ├── fatio_dev.h │ ├── fdt │ ├── fdt.h │ ├── fdt_dump.h │ ├── libfdt.h │ ├── libfdt_env.h │ └── of.h │ ├── hash │ ├── ec.h │ ├── sha256.h │ ├── sm3.h │ ├── tomcrypt.h │ ├── tomcrypt_hash.h │ └── tomcrypt_private.h │ ├── ini.h │ ├── libc │ ├── cdefs.h │ ├── ctype.h │ ├── errno.h │ ├── getopt.h │ ├── inttypes.h │ ├── limits.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ └── wchar.h │ ├── list.h │ ├── mac.h │ └── mmio.h ├── lib ├── Kconfig ├── Makefile ├── akcipher │ ├── Makefile │ └── akcipher.c ├── cli │ ├── Makefile │ ├── cli.c │ └── console.c ├── debug │ ├── Makefile │ └── debug.c ├── efi │ ├── Makefile │ └── efi.c ├── fat32 │ ├── LICENSE.txt │ ├── Makefile │ ├── documents │ │ ├── 00index_e.html │ │ ├── css_e.css │ │ ├── doc │ │ │ ├── appnote.html │ │ │ ├── chdir.html │ │ │ ├── chdrive.html │ │ │ ├── chmod.html │ │ │ ├── close.html │ │ │ ├── closedir.html │ │ │ ├── config.html │ │ │ ├── dinit.html │ │ │ ├── dioctl.html │ │ │ ├── dread.html │ │ │ ├── dstat.html │ │ │ ├── dwrite.html │ │ │ ├── eof.html │ │ │ ├── error.html │ │ │ ├── expand.html │ │ │ ├── fattime.html │ │ │ ├── fdisk.html │ │ │ ├── filename.html │ │ │ ├── findfirst.html │ │ │ ├── findnext.html │ │ │ ├── forward.html │ │ │ ├── getcwd.html │ │ │ ├── getfree.html │ │ │ ├── getlabel.html │ │ │ ├── gets.html │ │ │ ├── lseek.html │ │ │ ├── mkdir.html │ │ │ ├── mkfs.html │ │ │ ├── mount.html │ │ │ ├── open.html │ │ │ ├── opendir.html │ │ │ ├── printf.html │ │ │ ├── putc.html │ │ │ ├── puts.html │ │ │ ├── rc.html │ │ │ ├── read.html │ │ │ ├── readdir.html │ │ │ ├── rename.html │ │ │ ├── sdir.html │ │ │ ├── setcp.html │ │ │ ├── setlabel.html │ │ │ ├── sfatfs.html │ │ │ ├── sfile.html │ │ │ ├── sfileinfo.html │ │ │ ├── size.html │ │ │ ├── stat.html │ │ │ ├── sync.html │ │ │ ├── tell.html │ │ │ ├── truncate.html │ │ │ ├── unlink.html │ │ │ ├── utime.html │ │ │ └── write.html │ │ ├── res │ │ │ ├── app1.c │ │ │ ├── app2.c │ │ │ ├── app3.c │ │ │ ├── app4.c │ │ │ ├── app5.c │ │ │ ├── app6.c │ │ │ ├── f1.png │ │ │ ├── f2.png │ │ │ ├── f3.png │ │ │ ├── f4.png │ │ │ ├── f5.png │ │ │ ├── f6.png │ │ │ ├── f7.png │ │ │ ├── funcs.png │ │ │ ├── layers.png │ │ │ ├── layers1.png │ │ │ ├── layers2.png │ │ │ ├── layers3.png │ │ │ ├── mkfatimg.zip │ │ │ ├── mkfs.xlsx │ │ │ ├── modules.png │ │ │ ├── rwtest1.png │ │ │ ├── rwtest2.png │ │ │ └── rwtest3.png │ │ └── updates.txt │ └── source │ │ ├── 00history.txt │ │ ├── 00readme.txt │ │ ├── Makefile │ │ ├── diskio.c │ │ ├── ff.c │ │ ├── ffsystem.c │ │ └── ffunicode.c ├── fdt │ ├── Makefile │ ├── fdt.c │ ├── fdt_addresses.c │ ├── fdt_check.c │ ├── fdt_dump.c │ ├── fdt_empty_tree.c │ ├── fdt_overlay.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── fdtput.c │ ├── libfdt_internal.h │ └── of.c ├── hash │ ├── Makefile │ ├── ec.c │ ├── sha256.c │ └── sm3.c ├── ini │ ├── Makefile │ └── ini.c ├── libc │ ├── Makefile │ ├── errno.c │ ├── getopt.c │ ├── stdio.c │ ├── stdlib.c │ ├── string.c │ └── wchar.c ├── mac │ ├── Makefile │ └── mac.c ├── sgcfg │ ├── Kconfig │ ├── Makefile │ └── sgcfg.c ├── sgfat │ ├── Kconfig │ ├── Makefile │ └── sgfat.c └── sgmtd │ ├── Kconfig │ ├── Makefile │ └── sgmtd.c ├── plat ├── Kconfig ├── Makefile ├── bm1690tp │ ├── Makefile │ ├── config.h │ ├── early_setup.S │ ├── include │ │ ├── memmap.h │ │ └── platform.h │ ├── ns16550.c │ ├── plat.c │ └── tp_dtb.c ├── qemu-riscv-virt │ ├── Makefile │ ├── include │ │ └── platform.h │ └── plat.c ├── sg2042 │ ├── Makefile │ ├── cache.c │ ├── config.c │ ├── config.h │ ├── early_setup.S │ ├── include │ │ ├── memmap.h │ │ └── platform.h │ └── plat.c └── sg2044 │ ├── Makefile │ ├── config.c │ ├── config.h │ ├── early_setup.S │ ├── efuse.c │ ├── efuse.h │ ├── fdt_pcie.c │ ├── fdt_pcie.h │ ├── include │ ├── memmap.h │ └── platform.h │ └── plat.c ├── scripts ├── .gitignore ├── Kbuild.include ├── Makefile ├── Makefile.asm-generic ├── Makefile.build ├── Makefile.clean ├── Makefile.headersinst ├── Makefile.host ├── Makefile.lib ├── Makefile.modbuiltin ├── Makefile.modfinal ├── Makefile.modinst ├── Makefile.modpost ├── Makefile.modsign ├── Makefile.package ├── basic │ ├── .gitignore │ ├── Makefile │ └── fixdep.c ├── bin2head ├── kconfig │ ├── .gitignore │ ├── Makefile │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf-cfg.sh │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── images.h │ ├── lexer.l │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf-cfg.sh │ ├── mconf.c │ ├── menu.c │ ├── merge_config.sh │ ├── nconf-cfg.sh │ ├── nconf.c │ ├── nconf.gui.c │ ├── nconf.h │ ├── parser.y │ ├── preprocess.c │ ├── qconf-cfg.sh │ ├── qconf.cc │ ├── qconf.h │ ├── streamline_config.pl │ ├── symbol.c │ ├── tests │ │ ├── auto_submenu │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ └── expected_stdout │ │ ├── choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── alldef_expected_config │ │ │ ├── allmod_expected_config │ │ │ ├── allno_expected_config │ │ │ ├── allyes_expected_config │ │ │ ├── oldask0_expected_stdout │ │ │ ├── oldask1_config │ │ │ └── oldask1_expected_stdout │ │ ├── choice_value_with_m_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ ├── expected_config │ │ │ └── expected_stdout │ │ ├── conftest.py │ │ ├── err_recursive_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ └── expected_stderr │ │ ├── err_recursive_inc │ │ │ ├── Kconfig │ │ │ ├── Kconfig.inc1 │ │ │ ├── Kconfig.inc2 │ │ │ ├── Kconfig.inc3 │ │ │ ├── __init__.py │ │ │ └── expected_stderr │ │ ├── inter_choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── defconfig │ │ │ └── expected_config │ │ ├── new_choice_with_dep │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ └── expected_stdout │ │ ├── no_write_if_dep_unmet │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ └── expected_config │ │ ├── preprocess │ │ │ ├── builtin_func │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ ├── expected_stderr │ │ │ │ └── expected_stdout │ │ │ ├── circular_expansion │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ │ ├── escape │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ │ └── variable │ │ │ │ ├── Kconfig │ │ │ │ ├── __init__.py │ │ │ │ └── expected_stderr │ │ ├── pytest.ini │ │ └── rand_nested_choice │ │ │ ├── Kconfig │ │ │ ├── __init__.py │ │ │ ├── expected_stdout0 │ │ │ ├── expected_stdout1 │ │ │ └── expected_stdout2 │ └── util.c ├── mkmakefile ├── setlocalversion └── tags.sh └── test ├── Kconfig ├── Makefile ├── arch_timer ├── Kconfig ├── Makefile └── test_timer.c ├── blkdev ├── Kconfig ├── Makefile └── test.c ├── bootdev ├── Kconfig ├── Makefile └── test.c ├── c2clat ├── Kconfig ├── Makefile └── c2clat.c ├── fab ├── Kconfig ├── Makefile └── test_fab.c ├── fat32 ├── Kconfig ├── Makefile └── testfat32.c ├── gic ├── Kconfig ├── Makefile └── test_gic.c ├── hello ├── Kconfig ├── Makefile └── hello.c ├── malloc ├── Kconfig ├── Makefile └── test_malloc.c ├── riscv_exception ├── Kconfig ├── Makefile └── testrvexception.c ├── sd ├── Kconfig ├── Makefile └── testsd.c ├── smp ├── Kconfig ├── Makefile └── testsmp.c ├── spi-flash ├── Kconfig ├── Makefile └── testflash.c └── thread ├── Kconfig ├── Makefile └── test_multi_thread.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/.gitignore -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/Kconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/Makefile -------------------------------------------------------------------------------- /arch/Kconfig: -------------------------------------------------------------------------------- 1 | menu "Architecture" 2 | source "arch/$(SRCARCH)/Kconfig" 3 | endmenu 4 | -------------------------------------------------------------------------------- /arch/riscv/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/Kconfig -------------------------------------------------------------------------------- /arch/riscv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/Makefile -------------------------------------------------------------------------------- /arch/riscv/boot/conf/sg2044-evb-conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/conf/sg2044-evb-conf.ini -------------------------------------------------------------------------------- /arch/riscv/boot/conf/sg2044-sra3-40-8-conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/conf/sg2044-sra3-40-8-conf.ini -------------------------------------------------------------------------------- /arch/riscv/boot/conf/sg2044-sra3-40.conf.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/conf/sg2044-sra3-40.conf.ini -------------------------------------------------------------------------------- /arch/riscv/boot/dts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/Makefile -------------------------------------------------------------------------------- /arch/riscv/boot/dts/mango-milkv-pioneer.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/mango-milkv-pioneer.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/mango-sophgo-capricorn.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/mango-sophgo-capricorn.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/mango-sophgo-pisces.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/mango-sophgo-pisces.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/mango-sophgo-x4evb.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/mango-sophgo-x4evb.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/mango-sophgo-x8evb.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/mango-sophgo-x8evb.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/mango-yixin-s2110.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/mango-yixin-s2110.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/qemu-virt.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/qemu-virt.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/sg2042.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/sg2042.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dts/sg2044.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dts/sg2044.dts -------------------------------------------------------------------------------- /arch/riscv/boot/dtso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dtso/Makefile -------------------------------------------------------------------------------- /arch/riscv/boot/dtso/mango-milkv-pioneer.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dtso/mango-milkv-pioneer.dtso -------------------------------------------------------------------------------- /arch/riscv/boot/dtso/mango-sophgo-pisces.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dtso/mango-sophgo-pisces.dtso -------------------------------------------------------------------------------- /arch/riscv/boot/dtso/mango-sophgo-x4evb.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dtso/mango-sophgo-x4evb.dtso -------------------------------------------------------------------------------- /arch/riscv/boot/dtso/mango-sophgo-x8evb.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dtso/mango-sophgo-x8evb.dtso -------------------------------------------------------------------------------- /arch/riscv/boot/dtso/sg2044-evb.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dtso/sg2044-evb.dtso -------------------------------------------------------------------------------- /arch/riscv/boot/dtso/sg2044-sra3.dtso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/boot/dtso/sg2044-sra3.dtso -------------------------------------------------------------------------------- /arch/riscv/configs/bm1690tp_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/configs/bm1690tp_defconfig -------------------------------------------------------------------------------- /arch/riscv/configs/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/configs/defconfig -------------------------------------------------------------------------------- /arch/riscv/configs/sg2042_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/configs/sg2042_defconfig -------------------------------------------------------------------------------- /arch/riscv/configs/sg2044_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/configs/sg2044_defconfig -------------------------------------------------------------------------------- /arch/riscv/include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/arch.h -------------------------------------------------------------------------------- /arch/riscv/include/arch_spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/arch_spinlock.h -------------------------------------------------------------------------------- /arch/riscv/include/arch_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/arch_thread.h -------------------------------------------------------------------------------- /arch/riscv/include/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/asm.h -------------------------------------------------------------------------------- /arch/riscv/include/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/atomic.h -------------------------------------------------------------------------------- /arch/riscv/include/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/barrier.h -------------------------------------------------------------------------------- /arch/riscv/include/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/bitops.h -------------------------------------------------------------------------------- /arch/riscv/include/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/cache.h -------------------------------------------------------------------------------- /arch/riscv/include/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/encoding.h -------------------------------------------------------------------------------- /arch/riscv/include/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/irq.h -------------------------------------------------------------------------------- /arch/riscv/include/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/linkage.h -------------------------------------------------------------------------------- /arch/riscv/include/rwonce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/rwonce.h -------------------------------------------------------------------------------- /arch/riscv/include/sbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/sbi.h -------------------------------------------------------------------------------- /arch/riscv/include/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/smp.h -------------------------------------------------------------------------------- /arch/riscv/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/timer.h -------------------------------------------------------------------------------- /arch/riscv/include/trap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/trap.h -------------------------------------------------------------------------------- /arch/riscv/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/include/types.h -------------------------------------------------------------------------------- /arch/riscv/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/Makefile -------------------------------------------------------------------------------- /arch/riscv/src/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/arch.c -------------------------------------------------------------------------------- /arch/riscv/src/arch_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/arch_spinlock.c -------------------------------------------------------------------------------- /arch/riscv/src/arch_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/arch_thread.c -------------------------------------------------------------------------------- /arch/riscv/src/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/atomic.c -------------------------------------------------------------------------------- /arch/riscv/src/builtin_dtb.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/builtin_dtb.S -------------------------------------------------------------------------------- /arch/riscv/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/cache.c -------------------------------------------------------------------------------- /arch/riscv/src/crt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/crt.c -------------------------------------------------------------------------------- /arch/riscv/src/dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/dtb.c -------------------------------------------------------------------------------- /arch/riscv/src/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/smp.c -------------------------------------------------------------------------------- /arch/riscv/src/target-ram.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/target-ram.lds.S -------------------------------------------------------------------------------- /arch/riscv/src/target-rom.lds.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/target-rom.lds.S -------------------------------------------------------------------------------- /arch/riscv/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/timer.c -------------------------------------------------------------------------------- /arch/riscv/src/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/trap.c -------------------------------------------------------------------------------- /arch/riscv/src/vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/arch/riscv/src/vector.S -------------------------------------------------------------------------------- /common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/Kconfig -------------------------------------------------------------------------------- /common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/Makefile -------------------------------------------------------------------------------- /common/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/commands.c -------------------------------------------------------------------------------- /common/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/main.c -------------------------------------------------------------------------------- /common/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/mmio.c -------------------------------------------------------------------------------- /common/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/semaphore.c -------------------------------------------------------------------------------- /common/spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/spinlock.c -------------------------------------------------------------------------------- /common/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/stdio.c -------------------------------------------------------------------------------- /common/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/test.c -------------------------------------------------------------------------------- /common/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/common/thread.c -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/Makefile -------------------------------------------------------------------------------- /drivers/alg/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/Kconfig -------------------------------------------------------------------------------- /drivers/alg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/Makefile -------------------------------------------------------------------------------- /drivers/alg/alg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/alg.c -------------------------------------------------------------------------------- /drivers/alg/pka/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/Makefile -------------------------------------------------------------------------------- /drivers/alg/pka/elapka.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/elapka.elf -------------------------------------------------------------------------------- /drivers/alg/pka/elppka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/elppka.c -------------------------------------------------------------------------------- /drivers/alg/pka/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/firmware.c -------------------------------------------------------------------------------- /drivers/alg/pka/pdu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/pdu.c -------------------------------------------------------------------------------- /drivers/alg/pka/pka_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/pka_port.c -------------------------------------------------------------------------------- /drivers/alg/pka/pka_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/pka_rsa.c -------------------------------------------------------------------------------- /drivers/alg/pka/pka_sm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/pka_sm2.c -------------------------------------------------------------------------------- /drivers/alg/pka/pkadev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/pkadev.c -------------------------------------------------------------------------------- /drivers/alg/pka/pkafw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/alg/pka/pkafw.S -------------------------------------------------------------------------------- /drivers/base/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVER_DEVICE_MODEL 2 | bool 3 | default n 4 | -------------------------------------------------------------------------------- /drivers/base/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += device.o 2 | -------------------------------------------------------------------------------- /drivers/base/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/base/device.c -------------------------------------------------------------------------------- /drivers/blkdev/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/blkdev/Kconfig -------------------------------------------------------------------------------- /drivers/blkdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/blkdev/Makefile -------------------------------------------------------------------------------- /drivers/blkdev/blkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/blkdev/blkdev.c -------------------------------------------------------------------------------- /drivers/blkdev/sdhci-dwc/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += mmc.o sd.o 2 | -------------------------------------------------------------------------------- /drivers/blkdev/sdhci-dwc/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/blkdev/sdhci-dwc/mmc.c -------------------------------------------------------------------------------- /drivers/blkdev/sdhci-dwc/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/blkdev/sdhci-dwc/sd.c -------------------------------------------------------------------------------- /drivers/boot/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/boot/Kconfig -------------------------------------------------------------------------------- /drivers/boot/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += bootdev.o 2 | -------------------------------------------------------------------------------- /drivers/boot/bootdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/boot/bootdev.c -------------------------------------------------------------------------------- /drivers/irqchip/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/Kconfig -------------------------------------------------------------------------------- /drivers/irqchip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/Makefile -------------------------------------------------------------------------------- /drivers/irqchip/ictl/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVER_IRQCHIP_ICTL 2 | bool "DesignWare ICTL" 3 | -------------------------------------------------------------------------------- /drivers/irqchip/ictl/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ictl.o 2 | -------------------------------------------------------------------------------- /drivers/irqchip/ictl/ictl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/ictl/ictl.c -------------------------------------------------------------------------------- /drivers/irqchip/ictl/ictl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/ictl/ictl.h -------------------------------------------------------------------------------- /drivers/irqchip/intc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/intc/Kconfig -------------------------------------------------------------------------------- /drivers/irqchip/intc/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += intc.o 2 | -------------------------------------------------------------------------------- /drivers/irqchip/intc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/intc/ReadMe.txt -------------------------------------------------------------------------------- /drivers/irqchip/intc/intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/intc/intc.c -------------------------------------------------------------------------------- /drivers/irqchip/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/interrupt.c -------------------------------------------------------------------------------- /drivers/irqchip/mtli/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/mtli/Kconfig -------------------------------------------------------------------------------- /drivers/irqchip/mtli/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += mtli.o 2 | -------------------------------------------------------------------------------- /drivers/irqchip/mtli/mtli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/mtli/mtli.c -------------------------------------------------------------------------------- /drivers/irqchip/plic/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/plic/Kconfig -------------------------------------------------------------------------------- /drivers/irqchip/plic/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += plic.o 2 | -------------------------------------------------------------------------------- /drivers/irqchip/plic/plic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/irqchip/plic/plic.c -------------------------------------------------------------------------------- /drivers/mtd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/mtd/Kconfig -------------------------------------------------------------------------------- /drivers/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/mtd/Makefile -------------------------------------------------------------------------------- /drivers/mtd/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/mtd/mtd.c -------------------------------------------------------------------------------- /drivers/mtd/spifmc-sophgo/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += sgspif.o 2 | -------------------------------------------------------------------------------- /drivers/mtd/spifmc-sophgo/sgspif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/mtd/spifmc-sophgo/sgspif.c -------------------------------------------------------------------------------- /drivers/nvmem/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/nvmem/Kconfig -------------------------------------------------------------------------------- /drivers/nvmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/nvmem/Makefile -------------------------------------------------------------------------------- /drivers/nvmem/nvmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/nvmem/nvmem.c -------------------------------------------------------------------------------- /drivers/nvmem/sophgo-efuse/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += sophgo-efuse.o 2 | -------------------------------------------------------------------------------- /drivers/nvmem/sophgo-efuse/sophgo-efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/nvmem/sophgo-efuse/sophgo-efuse.c -------------------------------------------------------------------------------- /drivers/platform/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/platform/Kconfig -------------------------------------------------------------------------------- /drivers/platform/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += platform.o 2 | -------------------------------------------------------------------------------- /drivers/platform/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/platform/platform.c -------------------------------------------------------------------------------- /drivers/serial/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/Kconfig -------------------------------------------------------------------------------- /drivers/serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/Makefile -------------------------------------------------------------------------------- /drivers/serial/ns16550/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/ns16550/Kconfig -------------------------------------------------------------------------------- /drivers/serial/ns16550/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/ns16550/Makefile -------------------------------------------------------------------------------- /drivers/serial/ns16550/ns16550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/ns16550/ns16550.c -------------------------------------------------------------------------------- /drivers/serial/ns16550/ns16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/ns16550/ns16550.h -------------------------------------------------------------------------------- /drivers/serial/ns16550/ns16550_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/ns16550/ns16550_device.c -------------------------------------------------------------------------------- /drivers/serial/ns16550/ns16550_early.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/ns16550/ns16550_early.c -------------------------------------------------------------------------------- /drivers/serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/drivers/serial/serial.c -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/common.h -------------------------------------------------------------------------------- /include/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/debug.h -------------------------------------------------------------------------------- /include/common/ictl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/ictl.h -------------------------------------------------------------------------------- /include/common/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/mmio.h -------------------------------------------------------------------------------- /include/common/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/module.h -------------------------------------------------------------------------------- /include/common/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/semaphore.h -------------------------------------------------------------------------------- /include/common/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/spinlock.h -------------------------------------------------------------------------------- /include/common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/common/thread.h -------------------------------------------------------------------------------- /include/driver/alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/alg.h -------------------------------------------------------------------------------- /include/driver/blkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/blkdev.h -------------------------------------------------------------------------------- /include/driver/bootdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/bootdev.h -------------------------------------------------------------------------------- /include/driver/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/device.h -------------------------------------------------------------------------------- /include/driver/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/driver.h -------------------------------------------------------------------------------- /include/driver/dtb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/dtb.h -------------------------------------------------------------------------------- /include/driver/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/interrupt.h -------------------------------------------------------------------------------- /include/driver/irqchip/gic.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/driver/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/mtd.h -------------------------------------------------------------------------------- /include/driver/nvmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/nvmem.h -------------------------------------------------------------------------------- /include/driver/pka/elppdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/elppdu.h -------------------------------------------------------------------------------- /include/driver/pka/elppdu_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/elppdu_error.h -------------------------------------------------------------------------------- /include/driver/pka/elppka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/elppka.h -------------------------------------------------------------------------------- /include/driver/pka/elppka_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/elppka_elf.h -------------------------------------------------------------------------------- /include/driver/pka/elppka_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/elppka_hw.h -------------------------------------------------------------------------------- /include/driver/pka/pka.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/pka.h -------------------------------------------------------------------------------- /include/driver/pka/pka_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/pka_port.h -------------------------------------------------------------------------------- /include/driver/pka/pkadev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/pkadev.h -------------------------------------------------------------------------------- /include/driver/pka/pkafw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/pka/pkafw.h -------------------------------------------------------------------------------- /include/driver/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/platform.h -------------------------------------------------------------------------------- /include/driver/sd/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/sd/mmc.h -------------------------------------------------------------------------------- /include/driver/sd/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/sd/sd.h -------------------------------------------------------------------------------- /include/driver/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/driver/serial.h -------------------------------------------------------------------------------- /include/lib/akcipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/akcipher.h -------------------------------------------------------------------------------- /include/lib/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/cli.h -------------------------------------------------------------------------------- /include/lib/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/console.h -------------------------------------------------------------------------------- /include/lib/container_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/container_of.h -------------------------------------------------------------------------------- /include/lib/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/efi.h -------------------------------------------------------------------------------- /include/lib/fat32/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fat32/diskio.h -------------------------------------------------------------------------------- /include/lib/fat32/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fat32/ff.h -------------------------------------------------------------------------------- /include/lib/fat32/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fat32/ffconf.h -------------------------------------------------------------------------------- /include/lib/fatio_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fatio_dev.h -------------------------------------------------------------------------------- /include/lib/fdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fdt/fdt.h -------------------------------------------------------------------------------- /include/lib/fdt/fdt_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fdt/fdt_dump.h -------------------------------------------------------------------------------- /include/lib/fdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fdt/libfdt.h -------------------------------------------------------------------------------- /include/lib/fdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fdt/libfdt_env.h -------------------------------------------------------------------------------- /include/lib/fdt/of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/fdt/of.h -------------------------------------------------------------------------------- /include/lib/hash/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/hash/ec.h -------------------------------------------------------------------------------- /include/lib/hash/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/hash/sha256.h -------------------------------------------------------------------------------- /include/lib/hash/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/hash/sm3.h -------------------------------------------------------------------------------- /include/lib/hash/tomcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/hash/tomcrypt.h -------------------------------------------------------------------------------- /include/lib/hash/tomcrypt_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/hash/tomcrypt_hash.h -------------------------------------------------------------------------------- /include/lib/hash/tomcrypt_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/hash/tomcrypt_private.h -------------------------------------------------------------------------------- /include/lib/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/ini.h -------------------------------------------------------------------------------- /include/lib/libc/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/cdefs.h -------------------------------------------------------------------------------- /include/lib/libc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/ctype.h -------------------------------------------------------------------------------- /include/lib/libc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/errno.h -------------------------------------------------------------------------------- /include/lib/libc/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/getopt.h -------------------------------------------------------------------------------- /include/lib/libc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/inttypes.h -------------------------------------------------------------------------------- /include/lib/libc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/limits.h -------------------------------------------------------------------------------- /include/lib/libc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/stdbool.h -------------------------------------------------------------------------------- /include/lib/libc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/stddef.h -------------------------------------------------------------------------------- /include/lib/libc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/stdint.h -------------------------------------------------------------------------------- /include/lib/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/stdio.h -------------------------------------------------------------------------------- /include/lib/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/stdlib.h -------------------------------------------------------------------------------- /include/lib/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/string.h -------------------------------------------------------------------------------- /include/lib/libc/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/libc/wchar.h -------------------------------------------------------------------------------- /include/lib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/list.h -------------------------------------------------------------------------------- /include/lib/mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/mac.h -------------------------------------------------------------------------------- /include/lib/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/include/lib/mmio.h -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/akcipher/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += akcipher.o 2 | -------------------------------------------------------------------------------- /lib/akcipher/akcipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/akcipher/akcipher.c -------------------------------------------------------------------------------- /lib/cli/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += cli.o console.o 2 | -------------------------------------------------------------------------------- /lib/cli/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/cli/cli.c -------------------------------------------------------------------------------- /lib/cli/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/cli/console.c -------------------------------------------------------------------------------- /lib/debug/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += debug.o 2 | -------------------------------------------------------------------------------- /lib/debug/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/debug/debug.c -------------------------------------------------------------------------------- /lib/efi/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += efi.o 2 | -------------------------------------------------------------------------------- /lib/efi/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/efi/efi.c -------------------------------------------------------------------------------- /lib/fat32/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/LICENSE.txt -------------------------------------------------------------------------------- /lib/fat32/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += source/ 2 | -------------------------------------------------------------------------------- /lib/fat32/documents/00index_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/00index_e.html -------------------------------------------------------------------------------- /lib/fat32/documents/css_e.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/css_e.css -------------------------------------------------------------------------------- /lib/fat32/documents/doc/appnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/appnote.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/chdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/chdir.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/chdrive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/chdrive.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/chmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/chmod.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/close.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/closedir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/closedir.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/config.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/dinit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/dinit.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/dioctl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/dioctl.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/dread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/dread.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/dstat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/dstat.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/dwrite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/dwrite.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/eof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/eof.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/error.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/expand.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/fattime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/fattime.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/fdisk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/fdisk.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/filename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/filename.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/findfirst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/findfirst.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/findnext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/findnext.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/forward.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/forward.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/getcwd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/getcwd.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/getfree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/getfree.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/getlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/getlabel.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/gets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/gets.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/lseek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/lseek.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/mkdir.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/mkfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/mkfs.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/mount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/mount.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/open.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/opendir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/opendir.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/printf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/printf.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/putc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/putc.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/puts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/puts.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/rc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/rc.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/read.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/readdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/readdir.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/rename.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/sdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/sdir.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/setcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/setcp.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/setlabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/setlabel.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/sfatfs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/sfatfs.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/sfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/sfile.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/sfileinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/sfileinfo.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/size.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/stat.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/sync.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/tell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/tell.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/truncate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/truncate.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/unlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/unlink.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/utime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/utime.html -------------------------------------------------------------------------------- /lib/fat32/documents/doc/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/doc/write.html -------------------------------------------------------------------------------- /lib/fat32/documents/res/app1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/app1.c -------------------------------------------------------------------------------- /lib/fat32/documents/res/app2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/app2.c -------------------------------------------------------------------------------- /lib/fat32/documents/res/app3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/app3.c -------------------------------------------------------------------------------- /lib/fat32/documents/res/app4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/app4.c -------------------------------------------------------------------------------- /lib/fat32/documents/res/app5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/app5.c -------------------------------------------------------------------------------- /lib/fat32/documents/res/app6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/app6.c -------------------------------------------------------------------------------- /lib/fat32/documents/res/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/f1.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/f2.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/f3.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/f4.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/f5.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/f6.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/f7.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/funcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/funcs.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/layers.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/layers1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/layers1.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/layers2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/layers2.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/layers3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/layers3.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/mkfatimg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/mkfatimg.zip -------------------------------------------------------------------------------- /lib/fat32/documents/res/mkfs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/mkfs.xlsx -------------------------------------------------------------------------------- /lib/fat32/documents/res/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/modules.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/rwtest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/rwtest1.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/rwtest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/rwtest2.png -------------------------------------------------------------------------------- /lib/fat32/documents/res/rwtest3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/res/rwtest3.png -------------------------------------------------------------------------------- /lib/fat32/documents/updates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/documents/updates.txt -------------------------------------------------------------------------------- /lib/fat32/source/00history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/source/00history.txt -------------------------------------------------------------------------------- /lib/fat32/source/00readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/source/00readme.txt -------------------------------------------------------------------------------- /lib/fat32/source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/source/Makefile -------------------------------------------------------------------------------- /lib/fat32/source/diskio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/source/diskio.c -------------------------------------------------------------------------------- /lib/fat32/source/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/source/ff.c -------------------------------------------------------------------------------- /lib/fat32/source/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/source/ffsystem.c -------------------------------------------------------------------------------- /lib/fat32/source/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fat32/source/ffunicode.c -------------------------------------------------------------------------------- /lib/fdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/Makefile -------------------------------------------------------------------------------- /lib/fdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt.c -------------------------------------------------------------------------------- /lib/fdt/fdt_addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_addresses.c -------------------------------------------------------------------------------- /lib/fdt/fdt_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_check.c -------------------------------------------------------------------------------- /lib/fdt/fdt_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_dump.c -------------------------------------------------------------------------------- /lib/fdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /lib/fdt/fdt_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_overlay.c -------------------------------------------------------------------------------- /lib/fdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_ro.c -------------------------------------------------------------------------------- /lib/fdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_rw.c -------------------------------------------------------------------------------- /lib/fdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_strerror.c -------------------------------------------------------------------------------- /lib/fdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_sw.c -------------------------------------------------------------------------------- /lib/fdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdt_wip.c -------------------------------------------------------------------------------- /lib/fdt/fdtput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/fdtput.c -------------------------------------------------------------------------------- /lib/fdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/libfdt_internal.h -------------------------------------------------------------------------------- /lib/fdt/of.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/fdt/of.c -------------------------------------------------------------------------------- /lib/hash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/hash/Makefile -------------------------------------------------------------------------------- /lib/hash/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/hash/ec.c -------------------------------------------------------------------------------- /lib/hash/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/hash/sha256.c -------------------------------------------------------------------------------- /lib/hash/sm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/hash/sm3.c -------------------------------------------------------------------------------- /lib/ini/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ini.o 2 | -------------------------------------------------------------------------------- /lib/ini/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/ini/ini.c -------------------------------------------------------------------------------- /lib/libc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/libc/Makefile -------------------------------------------------------------------------------- /lib/libc/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/libc/errno.c -------------------------------------------------------------------------------- /lib/libc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/libc/getopt.c -------------------------------------------------------------------------------- /lib/libc/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/libc/stdio.c -------------------------------------------------------------------------------- /lib/libc/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/libc/stdlib.c -------------------------------------------------------------------------------- /lib/libc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/libc/string.c -------------------------------------------------------------------------------- /lib/libc/wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/libc/wchar.c -------------------------------------------------------------------------------- /lib/mac/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += mac.o 2 | -------------------------------------------------------------------------------- /lib/mac/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/mac/mac.c -------------------------------------------------------------------------------- /lib/sgcfg/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/sgcfg/Kconfig -------------------------------------------------------------------------------- /lib/sgcfg/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += sgcfg.o 2 | -------------------------------------------------------------------------------- /lib/sgcfg/sgcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/sgcfg/sgcfg.c -------------------------------------------------------------------------------- /lib/sgfat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/sgfat/Kconfig -------------------------------------------------------------------------------- /lib/sgfat/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += sgfat.o 2 | -------------------------------------------------------------------------------- /lib/sgfat/sgfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/sgfat/sgfat.c -------------------------------------------------------------------------------- /lib/sgmtd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/sgmtd/Kconfig -------------------------------------------------------------------------------- /lib/sgmtd/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += sgmtd.o 2 | -------------------------------------------------------------------------------- /lib/sgmtd/sgmtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/lib/sgmtd/sgmtd.c -------------------------------------------------------------------------------- /plat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/Kconfig -------------------------------------------------------------------------------- /plat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/Makefile -------------------------------------------------------------------------------- /plat/bm1690tp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/Makefile -------------------------------------------------------------------------------- /plat/bm1690tp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/config.h -------------------------------------------------------------------------------- /plat/bm1690tp/early_setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/early_setup.S -------------------------------------------------------------------------------- /plat/bm1690tp/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/include/memmap.h -------------------------------------------------------------------------------- /plat/bm1690tp/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/include/platform.h -------------------------------------------------------------------------------- /plat/bm1690tp/ns16550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/ns16550.c -------------------------------------------------------------------------------- /plat/bm1690tp/plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/plat.c -------------------------------------------------------------------------------- /plat/bm1690tp/tp_dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/bm1690tp/tp_dtb.c -------------------------------------------------------------------------------- /plat/qemu-riscv-virt/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += plat.o 2 | -------------------------------------------------------------------------------- /plat/qemu-riscv-virt/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/qemu-riscv-virt/include/platform.h -------------------------------------------------------------------------------- /plat/qemu-riscv-virt/plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/qemu-riscv-virt/plat.c -------------------------------------------------------------------------------- /plat/sg2042/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/Makefile -------------------------------------------------------------------------------- /plat/sg2042/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/cache.c -------------------------------------------------------------------------------- /plat/sg2042/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/config.c -------------------------------------------------------------------------------- /plat/sg2042/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/config.h -------------------------------------------------------------------------------- /plat/sg2042/early_setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/early_setup.S -------------------------------------------------------------------------------- /plat/sg2042/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/include/memmap.h -------------------------------------------------------------------------------- /plat/sg2042/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/include/platform.h -------------------------------------------------------------------------------- /plat/sg2042/plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2042/plat.c -------------------------------------------------------------------------------- /plat/sg2044/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/Makefile -------------------------------------------------------------------------------- /plat/sg2044/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/config.c -------------------------------------------------------------------------------- /plat/sg2044/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/config.h -------------------------------------------------------------------------------- /plat/sg2044/early_setup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/early_setup.S -------------------------------------------------------------------------------- /plat/sg2044/efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/efuse.c -------------------------------------------------------------------------------- /plat/sg2044/efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/efuse.h -------------------------------------------------------------------------------- /plat/sg2044/fdt_pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/fdt_pcie.c -------------------------------------------------------------------------------- /plat/sg2044/fdt_pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/fdt_pcie.h -------------------------------------------------------------------------------- /plat/sg2044/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/include/memmap.h -------------------------------------------------------------------------------- /plat/sg2044/include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/include/platform.h -------------------------------------------------------------------------------- /plat/sg2044/plat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/plat/sg2044/plat.c -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/Kbuild.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Kbuild.include -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/Makefile.asm-generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.asm-generic -------------------------------------------------------------------------------- /scripts/Makefile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.build -------------------------------------------------------------------------------- /scripts/Makefile.clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.clean -------------------------------------------------------------------------------- /scripts/Makefile.headersinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.headersinst -------------------------------------------------------------------------------- /scripts/Makefile.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.host -------------------------------------------------------------------------------- /scripts/Makefile.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.lib -------------------------------------------------------------------------------- /scripts/Makefile.modbuiltin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.modbuiltin -------------------------------------------------------------------------------- /scripts/Makefile.modfinal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.modfinal -------------------------------------------------------------------------------- /scripts/Makefile.modinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.modinst -------------------------------------------------------------------------------- /scripts/Makefile.modpost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.modpost -------------------------------------------------------------------------------- /scripts/Makefile.modsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.modsign -------------------------------------------------------------------------------- /scripts/Makefile.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/Makefile.package -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /scripts/basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/basic/Makefile -------------------------------------------------------------------------------- /scripts/basic/fixdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/basic/fixdep.c -------------------------------------------------------------------------------- /scripts/bin2head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/bin2head -------------------------------------------------------------------------------- /scripts/kconfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/.gitignore -------------------------------------------------------------------------------- /scripts/kconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/Makefile -------------------------------------------------------------------------------- /scripts/kconfig/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/conf.c -------------------------------------------------------------------------------- /scripts/kconfig/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/confdata.c -------------------------------------------------------------------------------- /scripts/kconfig/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/expr.c -------------------------------------------------------------------------------- /scripts/kconfig/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/expr.h -------------------------------------------------------------------------------- /scripts/kconfig/gconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/gconf-cfg.sh -------------------------------------------------------------------------------- /scripts/kconfig/gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/gconf.c -------------------------------------------------------------------------------- /scripts/kconfig/gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/gconf.glade -------------------------------------------------------------------------------- /scripts/kconfig/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/images.c -------------------------------------------------------------------------------- /scripts/kconfig/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/images.h -------------------------------------------------------------------------------- /scripts/kconfig/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lexer.l -------------------------------------------------------------------------------- /scripts/kconfig/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/list.h -------------------------------------------------------------------------------- /scripts/kconfig/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lkc.h -------------------------------------------------------------------------------- /scripts/kconfig/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lkc_proto.h -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/kconfig/mconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/mconf-cfg.sh -------------------------------------------------------------------------------- /scripts/kconfig/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/mconf.c -------------------------------------------------------------------------------- /scripts/kconfig/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/menu.c -------------------------------------------------------------------------------- /scripts/kconfig/merge_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/merge_config.sh -------------------------------------------------------------------------------- /scripts/kconfig/nconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/nconf-cfg.sh -------------------------------------------------------------------------------- /scripts/kconfig/nconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/nconf.c -------------------------------------------------------------------------------- /scripts/kconfig/nconf.gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/nconf.gui.c -------------------------------------------------------------------------------- /scripts/kconfig/nconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/nconf.h -------------------------------------------------------------------------------- /scripts/kconfig/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/parser.y -------------------------------------------------------------------------------- /scripts/kconfig/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/preprocess.c -------------------------------------------------------------------------------- /scripts/kconfig/qconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/qconf-cfg.sh -------------------------------------------------------------------------------- /scripts/kconfig/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/qconf.cc -------------------------------------------------------------------------------- /scripts/kconfig/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/qconf.h -------------------------------------------------------------------------------- /scripts/kconfig/streamline_config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/streamline_config.pl -------------------------------------------------------------------------------- /scripts/kconfig/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/symbol.c -------------------------------------------------------------------------------- /scripts/kconfig/tests/auto_submenu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/auto_submenu/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/auto_submenu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/auto_submenu/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/auto_submenu/expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/auto_submenu/expected_stdout -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/alldef_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/alldef_expected_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/allmod_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/allmod_expected_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/allno_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/allno_expected_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/allyes_expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/allyes_expected_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/oldask0_expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/oldask0_expected_stdout -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/oldask1_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/oldask1_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/oldask1_expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice/oldask1_expected_stdout -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice_value_with_m_dep/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice_value_with_m_dep/config -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice_value_with_m_dep/expected_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/choice_value_with_m_dep/expected_stdout -------------------------------------------------------------------------------- /scripts/kconfig/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/conftest.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_dep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/err_recursive_dep/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_dep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/err_recursive_dep/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_dep/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/err_recursive_dep/expected_stderr -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | source "Kconfig.inc1" 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc1: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | 4 | 5 | source "Kconfig.inc2" 6 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc2: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | 3 | 4 | source "Kconfig.inc3" 5 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc3: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | source "Kconfig.inc1" 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/err_recursive_inc/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/err_recursive_inc/expected_stderr -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/inter_choice/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/inter_choice/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_VAL0=y 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/inter_choice/expected_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/new_choice_with_dep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/new_choice_with_dep/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/new_choice_with_dep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/new_choice_with_dep/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/new_choice_with_dep/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/new_choice_with_dep/config -------------------------------------------------------------------------------- /scripts/kconfig/tests/new_choice_with_dep/expected_stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/new_choice_with_dep/expected_stdout -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/no_write_if_dep_unmet/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/no_write_if_dep_unmet/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/config: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/expected_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/no_write_if_dep_unmet/expected_config -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/builtin_func/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/builtin_func/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/builtin_func/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/builtin_func/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/builtin_func/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/builtin_func/expected_stderr -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/builtin_func/expected_stdout: -------------------------------------------------------------------------------- 1 | hello world 0 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/circular_expansion/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/circular_expansion/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/circular_expansion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/circular_expansion/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/circular_expansion/expected_stderr: -------------------------------------------------------------------------------- 1 | Kconfig:5: Recursive variable 'X' references itself (eventually) 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/escape/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/escape/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/escape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/escape/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/escape/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/escape/expected_stderr -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/variable/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/variable/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/variable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/variable/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/preprocess/variable/expected_stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/preprocess/variable/expected_stderr -------------------------------------------------------------------------------- /scripts/kconfig/tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/pytest.ini -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/rand_nested_choice/Kconfig -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/rand_nested_choice/__init__.py -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/rand_nested_choice/expected_stdout0 -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/rand_nested_choice/expected_stdout1 -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/tests/rand_nested_choice/expected_stdout2 -------------------------------------------------------------------------------- /scripts/kconfig/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/kconfig/util.c -------------------------------------------------------------------------------- /scripts/mkmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/mkmakefile -------------------------------------------------------------------------------- /scripts/setlocalversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/setlocalversion -------------------------------------------------------------------------------- /scripts/tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/scripts/tags.sh -------------------------------------------------------------------------------- /test/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/Kconfig -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/arch_timer/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/arch_timer/Kconfig -------------------------------------------------------------------------------- /test/arch_timer/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += test_timer.o 2 | -------------------------------------------------------------------------------- /test/arch_timer/test_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/arch_timer/test_timer.c -------------------------------------------------------------------------------- /test/blkdev/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/blkdev/Kconfig -------------------------------------------------------------------------------- /test/blkdev/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += test.o 2 | -------------------------------------------------------------------------------- /test/blkdev/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/blkdev/test.c -------------------------------------------------------------------------------- /test/bootdev/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/bootdev/Kconfig -------------------------------------------------------------------------------- /test/bootdev/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += test.o 2 | 3 | -------------------------------------------------------------------------------- /test/bootdev/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/bootdev/test.c -------------------------------------------------------------------------------- /test/c2clat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/c2clat/Kconfig -------------------------------------------------------------------------------- /test/c2clat/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += c2clat.o 2 | -------------------------------------------------------------------------------- /test/c2clat/c2clat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/c2clat/c2clat.c -------------------------------------------------------------------------------- /test/fab/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/fab/Kconfig -------------------------------------------------------------------------------- /test/fab/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += test_fab.o 2 | -------------------------------------------------------------------------------- /test/fab/test_fab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/fab/test_fab.c -------------------------------------------------------------------------------- /test/fat32/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/fat32/Kconfig -------------------------------------------------------------------------------- /test/fat32/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += testfat32.o 2 | 3 | -------------------------------------------------------------------------------- /test/fat32/testfat32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/fat32/testfat32.c -------------------------------------------------------------------------------- /test/gic/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/gic/Kconfig -------------------------------------------------------------------------------- /test/gic/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += test_gic.o 2 | -------------------------------------------------------------------------------- /test/gic/test_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/gic/test_gic.c -------------------------------------------------------------------------------- /test/hello/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/hello/Kconfig -------------------------------------------------------------------------------- /test/hello/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += hello.o 2 | -------------------------------------------------------------------------------- /test/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/hello/hello.c -------------------------------------------------------------------------------- /test/malloc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/malloc/Kconfig -------------------------------------------------------------------------------- /test/malloc/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += test_malloc.o 2 | -------------------------------------------------------------------------------- /test/malloc/test_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/malloc/test_malloc.c -------------------------------------------------------------------------------- /test/riscv_exception/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/riscv_exception/Kconfig -------------------------------------------------------------------------------- /test/riscv_exception/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += testrvexception.o 2 | -------------------------------------------------------------------------------- /test/riscv_exception/testrvexception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/riscv_exception/testrvexception.c -------------------------------------------------------------------------------- /test/sd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/sd/Kconfig -------------------------------------------------------------------------------- /test/sd/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += testsd.o 2 | -------------------------------------------------------------------------------- /test/sd/testsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/sd/testsd.c -------------------------------------------------------------------------------- /test/smp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/smp/Kconfig -------------------------------------------------------------------------------- /test/smp/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += testsmp.o 2 | -------------------------------------------------------------------------------- /test/smp/testsmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/smp/testsmp.c -------------------------------------------------------------------------------- /test/spi-flash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/spi-flash/Kconfig -------------------------------------------------------------------------------- /test/spi-flash/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += testflash.o -------------------------------------------------------------------------------- /test/spi-flash/testflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/spi-flash/testflash.c -------------------------------------------------------------------------------- /test/thread/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/thread/Kconfig -------------------------------------------------------------------------------- /test/thread/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += test_multi_thread.o 2 | -------------------------------------------------------------------------------- /test/thread/test_multi_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/zsbl/HEAD/test/thread/test_multi_thread.c --------------------------------------------------------------------------------