├── .gitattributes ├── .gitignore ├── .gitmodules ├── Kconfig ├── README.md ├── SConscript ├── SConstruct ├── applications ├── SConscript ├── led.c └── main.c ├── cpu ├── SConscript ├── armv7.h ├── context_gcc.S ├── cp15.h ├── cp15_gcc.S ├── gic.c ├── gic.h ├── gic_registers.h ├── interrupt.c ├── interrupt.h ├── mmu.c ├── port.c ├── start_gcc.S ├── trap.c └── vector_gcc.S ├── download.bat ├── driver ├── SConscript ├── board.c ├── board.h ├── drv_emac.c ├── drv_gpio.c ├── drv_i2c.c ├── drv_lcd.c ├── drv_pwm.c ├── drv_rtc.c ├── drv_spi.c ├── drv_tf.c ├── drv_uart.c ├── drv_wdt.c └── romfs.c ├── include ├── asm-generic │ ├── atomic-long.h │ ├── bitops │ │ ├── __ffs.h │ │ ├── __fls.h │ │ ├── fls.h │ │ └── fls64.h │ ├── bitsperlong.h │ ├── global_data.h │ ├── gpio.h │ ├── ioctl.h │ ├── sections.h │ ├── signal.h │ ├── u-boot.h │ └── unaligned.h ├── asm-offsets.h ├── asm │ ├── arch │ │ ├── boot0.h │ │ ├── clock.h │ │ ├── clock_sun4i.h │ │ ├── clock_sun6i.h │ │ ├── clock_sun8i_a83t.h │ │ ├── clock_sun9i.h │ │ ├── cpu.h │ │ ├── cpu_sun4i.h │ │ ├── cpu_sun9i.h │ │ ├── cpucfg.h │ │ ├── display.h │ │ ├── dma.h │ │ ├── dma_sun4i.h │ │ ├── dram.h │ │ ├── dram_sun4i.h │ │ ├── dram_sun6i.h │ │ ├── dram_sun8i_a23.h │ │ ├── dram_sun8i_a33.h │ │ ├── dram_sun8i_a83t.h │ │ ├── dram_sun8i_h3.h │ │ ├── dram_sun9i.h │ │ ├── gpio.h │ │ ├── gtbus.h │ │ ├── gtbus_sun9i.h │ │ ├── i2c.h │ │ ├── mmc.h │ │ ├── p2wi.h │ │ ├── pmic_bus.h │ │ ├── prcm.h │ │ ├── pwm.h │ │ ├── rsb.h │ │ ├── spi.h │ │ ├── spi_sun4i.h │ │ ├── spi_sun6i.h │ │ ├── spl.h │ │ ├── sys_proto.h │ │ ├── timer.h │ │ ├── tzpc.h │ │ ├── usb_phy.h │ │ └── watchdog.h │ ├── armv7.h │ ├── barriers.h │ ├── bitops.h │ ├── byteorder.h │ ├── cache.h │ ├── config.h │ ├── global_data.h │ ├── gpio.h │ ├── io.h │ ├── linkage.h │ ├── mach-types.h │ ├── memory.h │ ├── posix_types.h │ ├── proc-armv │ │ ├── domain.h │ │ ├── processor.h │ │ ├── ptrace.h │ │ └── system.h │ ├── ptrace.h │ ├── sections.h │ ├── setjmp.h │ ├── setup.h │ ├── string.h │ ├── system.h │ ├── types.h │ ├── u-boot-arm.h │ ├── u-boot.h │ └── utils.h ├── axp152.h ├── axp209.h ├── axp221.h ├── axp809.h ├── axp818.h ├── axp_pmic.h ├── blk.h ├── bootstage.h ├── clk.h ├── command.h ├── common.h ├── compiler.h ├── config.h ├── config_defaults.h ├── config_distro_bootcmd.h ├── config_distro_defaults.h ├── config_fallbacks.h ├── config_uncmd_spl.h ├── configs │ ├── sun8i.h │ └── sunxi-common.h ├── console.h ├── display_options.h ├── div64.h ├── dt-bindings │ ├── gpio │ │ └── gpio.h │ └── pinctrl │ │ └── sun4i-a10.h ├── edid.h ├── efi.h ├── efi_api.h ├── efi_loader.h ├── elf.h ├── fdt.h ├── fdt_support.h ├── fdtdec.h ├── flash.h ├── generated │ ├── asm-offsets.h │ ├── autoconf.h │ ├── generic-asm-offsets.h │ ├── timestamp_autogenerated.h │ └── version_autogenerated.h ├── i2c.h ├── ide.h ├── image.h ├── initcall.h ├── iotrace.h ├── libfdt.h ├── libfdt_env.h ├── linker_lists.h ├── linux │ ├── bitops.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ └── swab.h │ ├── compat.h │ ├── compiler-gcc.h │ ├── compiler.h │ ├── err.h │ ├── errno.h │ ├── ethtool.h │ ├── kconfig.h │ ├── kernel.h │ ├── linkage.h │ ├── linux_string.h │ ├── list.h │ ├── mdio.h │ ├── mii.h │ ├── poison.h │ ├── posix_types.h │ ├── sizes.h │ ├── stddef.h │ ├── string.h │ ├── stringify.h │ └── types.h ├── lmb.h ├── mapmem.h ├── memalign.h ├── membuff.h ├── miiphy.h ├── mmc.h ├── net.h ├── ns16550.h ├── os.h ├── part.h ├── part_efi.h ├── pci.h ├── pci_ids.h ├── phy.h ├── post.h ├── serial.h ├── spi.h ├── status_led.h ├── timer.h ├── timestamp.h ├── trace.h ├── u-boot │ ├── crc.h │ ├── md5.h │ ├── rsa-checksum.h │ ├── rsa-mod-exp.h │ ├── rsa.h │ ├── sha1.h │ ├── sha256.h │ ├── u-boot.lds.h │ └── zlib.h ├── uuid.h ├── version.h ├── video.h ├── video_fb.h ├── vsprintf.h └── watchdog.h ├── link.lds ├── rtconfig.h ├── rtconfig.py ├── tools ├── dd.exe ├── libusb-1.0.dll ├── libwinpthread-1.dll ├── mk.cmd ├── mkimage.exe ├── sunxi-fel.exe ├── sunxi-spl.bin ├── sunxi-tf.bin └── zadig-2.3.exe └── uboot ├── SConscript ├── anx9804.h ├── cache.c ├── cache_v7.c ├── cache_v7_asm.S ├── clock_sun6i.c ├── cpu_info.c ├── div64.c ├── hitachi_tx18d42vm_lcd.h ├── miiphyutil.c ├── ns16550.c ├── phy.c ├── pinmux.c ├── pwm-sun4i.c ├── rtc-sun6i.c ├── ssd2828.h ├── sun8i_emac.c ├── sunxi_display.c ├── sunxi_gpio.c ├── sunxi_mmc.c ├── sunxi_spi.c ├── sunxi_wdt.c ├── timer.c ├── videomodes.c └── videomodes.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/.gitmodules -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/Kconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # allwinner_v3s 2 | 3 | 下载方式: 连接usb后, 双击 `download.bat` 文件下载. 4 | -------------------------------------------------------------------------------- /SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/SConscript -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/SConstruct -------------------------------------------------------------------------------- /applications/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/applications/SConscript -------------------------------------------------------------------------------- /applications/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/applications/led.c -------------------------------------------------------------------------------- /applications/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/applications/main.c -------------------------------------------------------------------------------- /cpu/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/SConscript -------------------------------------------------------------------------------- /cpu/armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/armv7.h -------------------------------------------------------------------------------- /cpu/context_gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/context_gcc.S -------------------------------------------------------------------------------- /cpu/cp15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/cp15.h -------------------------------------------------------------------------------- /cpu/cp15_gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/cp15_gcc.S -------------------------------------------------------------------------------- /cpu/gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/gic.c -------------------------------------------------------------------------------- /cpu/gic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/gic.h -------------------------------------------------------------------------------- /cpu/gic_registers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/gic_registers.h -------------------------------------------------------------------------------- /cpu/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/interrupt.c -------------------------------------------------------------------------------- /cpu/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/interrupt.h -------------------------------------------------------------------------------- /cpu/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/mmu.c -------------------------------------------------------------------------------- /cpu/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/port.c -------------------------------------------------------------------------------- /cpu/start_gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/start_gcc.S -------------------------------------------------------------------------------- /cpu/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/trap.c -------------------------------------------------------------------------------- /cpu/vector_gcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/cpu/vector_gcc.S -------------------------------------------------------------------------------- /download.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/download.bat -------------------------------------------------------------------------------- /driver/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/SConscript -------------------------------------------------------------------------------- /driver/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/board.c -------------------------------------------------------------------------------- /driver/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/board.h -------------------------------------------------------------------------------- /driver/drv_emac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_emac.c -------------------------------------------------------------------------------- /driver/drv_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_gpio.c -------------------------------------------------------------------------------- /driver/drv_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_i2c.c -------------------------------------------------------------------------------- /driver/drv_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_lcd.c -------------------------------------------------------------------------------- /driver/drv_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_pwm.c -------------------------------------------------------------------------------- /driver/drv_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_rtc.c -------------------------------------------------------------------------------- /driver/drv_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_spi.c -------------------------------------------------------------------------------- /driver/drv_tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_tf.c -------------------------------------------------------------------------------- /driver/drv_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_uart.c -------------------------------------------------------------------------------- /driver/drv_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/drv_wdt.c -------------------------------------------------------------------------------- /driver/romfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/driver/romfs.c -------------------------------------------------------------------------------- /include/asm-generic/atomic-long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/atomic-long.h -------------------------------------------------------------------------------- /include/asm-generic/bitops/__ffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/bitops/__ffs.h -------------------------------------------------------------------------------- /include/asm-generic/bitops/__fls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/bitops/__fls.h -------------------------------------------------------------------------------- /include/asm-generic/bitops/fls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/bitops/fls.h -------------------------------------------------------------------------------- /include/asm-generic/bitops/fls64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/bitops/fls64.h -------------------------------------------------------------------------------- /include/asm-generic/bitsperlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/bitsperlong.h -------------------------------------------------------------------------------- /include/asm-generic/global_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/global_data.h -------------------------------------------------------------------------------- /include/asm-generic/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/gpio.h -------------------------------------------------------------------------------- /include/asm-generic/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/ioctl.h -------------------------------------------------------------------------------- /include/asm-generic/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/sections.h -------------------------------------------------------------------------------- /include/asm-generic/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/signal.h -------------------------------------------------------------------------------- /include/asm-generic/u-boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/u-boot.h -------------------------------------------------------------------------------- /include/asm-generic/unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-generic/unaligned.h -------------------------------------------------------------------------------- /include/asm-offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm-offsets.h -------------------------------------------------------------------------------- /include/asm/arch/boot0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/boot0.h -------------------------------------------------------------------------------- /include/asm/arch/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/clock.h -------------------------------------------------------------------------------- /include/asm/arch/clock_sun4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/clock_sun4i.h -------------------------------------------------------------------------------- /include/asm/arch/clock_sun6i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/clock_sun6i.h -------------------------------------------------------------------------------- /include/asm/arch/clock_sun8i_a83t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/clock_sun8i_a83t.h -------------------------------------------------------------------------------- /include/asm/arch/clock_sun9i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/clock_sun9i.h -------------------------------------------------------------------------------- /include/asm/arch/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/cpu.h -------------------------------------------------------------------------------- /include/asm/arch/cpu_sun4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/cpu_sun4i.h -------------------------------------------------------------------------------- /include/asm/arch/cpu_sun9i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/cpu_sun9i.h -------------------------------------------------------------------------------- /include/asm/arch/cpucfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/cpucfg.h -------------------------------------------------------------------------------- /include/asm/arch/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/display.h -------------------------------------------------------------------------------- /include/asm/arch/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dma.h -------------------------------------------------------------------------------- /include/asm/arch/dma_sun4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dma_sun4i.h -------------------------------------------------------------------------------- /include/asm/arch/dram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram.h -------------------------------------------------------------------------------- /include/asm/arch/dram_sun4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram_sun4i.h -------------------------------------------------------------------------------- /include/asm/arch/dram_sun6i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram_sun6i.h -------------------------------------------------------------------------------- /include/asm/arch/dram_sun8i_a23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram_sun8i_a23.h -------------------------------------------------------------------------------- /include/asm/arch/dram_sun8i_a33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram_sun8i_a33.h -------------------------------------------------------------------------------- /include/asm/arch/dram_sun8i_a83t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram_sun8i_a83t.h -------------------------------------------------------------------------------- /include/asm/arch/dram_sun8i_h3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram_sun8i_h3.h -------------------------------------------------------------------------------- /include/asm/arch/dram_sun9i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/dram_sun9i.h -------------------------------------------------------------------------------- /include/asm/arch/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/gpio.h -------------------------------------------------------------------------------- /include/asm/arch/gtbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/gtbus.h -------------------------------------------------------------------------------- /include/asm/arch/gtbus_sun9i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/gtbus_sun9i.h -------------------------------------------------------------------------------- /include/asm/arch/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/i2c.h -------------------------------------------------------------------------------- /include/asm/arch/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/mmc.h -------------------------------------------------------------------------------- /include/asm/arch/p2wi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/p2wi.h -------------------------------------------------------------------------------- /include/asm/arch/pmic_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/pmic_bus.h -------------------------------------------------------------------------------- /include/asm/arch/prcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/prcm.h -------------------------------------------------------------------------------- /include/asm/arch/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/pwm.h -------------------------------------------------------------------------------- /include/asm/arch/rsb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/rsb.h -------------------------------------------------------------------------------- /include/asm/arch/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/spi.h -------------------------------------------------------------------------------- /include/asm/arch/spi_sun4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/spi_sun4i.h -------------------------------------------------------------------------------- /include/asm/arch/spi_sun6i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/spi_sun6i.h -------------------------------------------------------------------------------- /include/asm/arch/spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/spl.h -------------------------------------------------------------------------------- /include/asm/arch/sys_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/sys_proto.h -------------------------------------------------------------------------------- /include/asm/arch/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/timer.h -------------------------------------------------------------------------------- /include/asm/arch/tzpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/tzpc.h -------------------------------------------------------------------------------- /include/asm/arch/usb_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/usb_phy.h -------------------------------------------------------------------------------- /include/asm/arch/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/arch/watchdog.h -------------------------------------------------------------------------------- /include/asm/armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/armv7.h -------------------------------------------------------------------------------- /include/asm/barriers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/barriers.h -------------------------------------------------------------------------------- /include/asm/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/bitops.h -------------------------------------------------------------------------------- /include/asm/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/byteorder.h -------------------------------------------------------------------------------- /include/asm/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/cache.h -------------------------------------------------------------------------------- /include/asm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/config.h -------------------------------------------------------------------------------- /include/asm/global_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/global_data.h -------------------------------------------------------------------------------- /include/asm/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/gpio.h -------------------------------------------------------------------------------- /include/asm/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/io.h -------------------------------------------------------------------------------- /include/asm/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/linkage.h -------------------------------------------------------------------------------- /include/asm/mach-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/mach-types.h -------------------------------------------------------------------------------- /include/asm/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/memory.h -------------------------------------------------------------------------------- /include/asm/posix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/posix_types.h -------------------------------------------------------------------------------- /include/asm/proc-armv/domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/proc-armv/domain.h -------------------------------------------------------------------------------- /include/asm/proc-armv/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/proc-armv/processor.h -------------------------------------------------------------------------------- /include/asm/proc-armv/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/proc-armv/ptrace.h -------------------------------------------------------------------------------- /include/asm/proc-armv/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/proc-armv/system.h -------------------------------------------------------------------------------- /include/asm/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/ptrace.h -------------------------------------------------------------------------------- /include/asm/sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/sections.h -------------------------------------------------------------------------------- /include/asm/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/setjmp.h -------------------------------------------------------------------------------- /include/asm/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/setup.h -------------------------------------------------------------------------------- /include/asm/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/string.h -------------------------------------------------------------------------------- /include/asm/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/system.h -------------------------------------------------------------------------------- /include/asm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/types.h -------------------------------------------------------------------------------- /include/asm/u-boot-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/u-boot-arm.h -------------------------------------------------------------------------------- /include/asm/u-boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/u-boot.h -------------------------------------------------------------------------------- /include/asm/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/asm/utils.h -------------------------------------------------------------------------------- /include/axp152.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/axp152.h -------------------------------------------------------------------------------- /include/axp209.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/axp209.h -------------------------------------------------------------------------------- /include/axp221.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/axp221.h -------------------------------------------------------------------------------- /include/axp809.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/axp809.h -------------------------------------------------------------------------------- /include/axp818.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/axp818.h -------------------------------------------------------------------------------- /include/axp_pmic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/axp_pmic.h -------------------------------------------------------------------------------- /include/blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/blk.h -------------------------------------------------------------------------------- /include/bootstage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/bootstage.h -------------------------------------------------------------------------------- /include/clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/clk.h -------------------------------------------------------------------------------- /include/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/command.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/common.h -------------------------------------------------------------------------------- /include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/compiler.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/config.h -------------------------------------------------------------------------------- /include/config_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/config_defaults.h -------------------------------------------------------------------------------- /include/config_distro_bootcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/config_distro_bootcmd.h -------------------------------------------------------------------------------- /include/config_distro_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/config_distro_defaults.h -------------------------------------------------------------------------------- /include/config_fallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/config_fallbacks.h -------------------------------------------------------------------------------- /include/config_uncmd_spl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/config_uncmd_spl.h -------------------------------------------------------------------------------- /include/configs/sun8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/configs/sun8i.h -------------------------------------------------------------------------------- /include/configs/sunxi-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/configs/sunxi-common.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/console.h -------------------------------------------------------------------------------- /include/display_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/display_options.h -------------------------------------------------------------------------------- /include/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/div64.h -------------------------------------------------------------------------------- /include/dt-bindings/gpio/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/dt-bindings/gpio/gpio.h -------------------------------------------------------------------------------- /include/dt-bindings/pinctrl/sun4i-a10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/dt-bindings/pinctrl/sun4i-a10.h -------------------------------------------------------------------------------- /include/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/edid.h -------------------------------------------------------------------------------- /include/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/efi.h -------------------------------------------------------------------------------- /include/efi_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/efi_api.h -------------------------------------------------------------------------------- /include/efi_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/efi_loader.h -------------------------------------------------------------------------------- /include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/elf.h -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/fdt.h -------------------------------------------------------------------------------- /include/fdt_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/fdt_support.h -------------------------------------------------------------------------------- /include/fdtdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/fdtdec.h -------------------------------------------------------------------------------- /include/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/flash.h -------------------------------------------------------------------------------- /include/generated/asm-offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/generated/asm-offsets.h -------------------------------------------------------------------------------- /include/generated/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/generated/autoconf.h -------------------------------------------------------------------------------- /include/generated/generic-asm-offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/generated/generic-asm-offsets.h -------------------------------------------------------------------------------- /include/generated/timestamp_autogenerated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/generated/timestamp_autogenerated.h -------------------------------------------------------------------------------- /include/generated/version_autogenerated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/generated/version_autogenerated.h -------------------------------------------------------------------------------- /include/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/i2c.h -------------------------------------------------------------------------------- /include/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/ide.h -------------------------------------------------------------------------------- /include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/image.h -------------------------------------------------------------------------------- /include/initcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/initcall.h -------------------------------------------------------------------------------- /include/iotrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/iotrace.h -------------------------------------------------------------------------------- /include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/libfdt.h -------------------------------------------------------------------------------- /include/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/libfdt_env.h -------------------------------------------------------------------------------- /include/linker_lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linker_lists.h -------------------------------------------------------------------------------- /include/linux/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/bitops.h -------------------------------------------------------------------------------- /include/linux/byteorder/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/byteorder/big_endian.h -------------------------------------------------------------------------------- /include/linux/byteorder/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/byteorder/generic.h -------------------------------------------------------------------------------- /include/linux/byteorder/little_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/byteorder/little_endian.h -------------------------------------------------------------------------------- /include/linux/byteorder/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/byteorder/swab.h -------------------------------------------------------------------------------- /include/linux/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/compat.h -------------------------------------------------------------------------------- /include/linux/compiler-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/compiler-gcc.h -------------------------------------------------------------------------------- /include/linux/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/compiler.h -------------------------------------------------------------------------------- /include/linux/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/err.h -------------------------------------------------------------------------------- /include/linux/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/errno.h -------------------------------------------------------------------------------- /include/linux/ethtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/ethtool.h -------------------------------------------------------------------------------- /include/linux/kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/kconfig.h -------------------------------------------------------------------------------- /include/linux/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/kernel.h -------------------------------------------------------------------------------- /include/linux/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/linkage.h -------------------------------------------------------------------------------- /include/linux/linux_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/linux_string.h -------------------------------------------------------------------------------- /include/linux/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/list.h -------------------------------------------------------------------------------- /include/linux/mdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/mdio.h -------------------------------------------------------------------------------- /include/linux/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/mii.h -------------------------------------------------------------------------------- /include/linux/poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/poison.h -------------------------------------------------------------------------------- /include/linux/posix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/posix_types.h -------------------------------------------------------------------------------- /include/linux/sizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/sizes.h -------------------------------------------------------------------------------- /include/linux/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/stddef.h -------------------------------------------------------------------------------- /include/linux/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/string.h -------------------------------------------------------------------------------- /include/linux/stringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/stringify.h -------------------------------------------------------------------------------- /include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/linux/types.h -------------------------------------------------------------------------------- /include/lmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/lmb.h -------------------------------------------------------------------------------- /include/mapmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/mapmem.h -------------------------------------------------------------------------------- /include/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/memalign.h -------------------------------------------------------------------------------- /include/membuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/membuff.h -------------------------------------------------------------------------------- /include/miiphy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/miiphy.h -------------------------------------------------------------------------------- /include/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/mmc.h -------------------------------------------------------------------------------- /include/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/net.h -------------------------------------------------------------------------------- /include/ns16550.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/ns16550.h -------------------------------------------------------------------------------- /include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/os.h -------------------------------------------------------------------------------- /include/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/part.h -------------------------------------------------------------------------------- /include/part_efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/part_efi.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/pci_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/pci_ids.h -------------------------------------------------------------------------------- /include/phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/phy.h -------------------------------------------------------------------------------- /include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/post.h -------------------------------------------------------------------------------- /include/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/serial.h -------------------------------------------------------------------------------- /include/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/spi.h -------------------------------------------------------------------------------- /include/status_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/status_led.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/timestamp.h -------------------------------------------------------------------------------- /include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/trace.h -------------------------------------------------------------------------------- /include/u-boot/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/crc.h -------------------------------------------------------------------------------- /include/u-boot/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/md5.h -------------------------------------------------------------------------------- /include/u-boot/rsa-checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/rsa-checksum.h -------------------------------------------------------------------------------- /include/u-boot/rsa-mod-exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/rsa-mod-exp.h -------------------------------------------------------------------------------- /include/u-boot/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/rsa.h -------------------------------------------------------------------------------- /include/u-boot/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/sha1.h -------------------------------------------------------------------------------- /include/u-boot/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/sha256.h -------------------------------------------------------------------------------- /include/u-boot/u-boot.lds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/u-boot.lds.h -------------------------------------------------------------------------------- /include/u-boot/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/u-boot/zlib.h -------------------------------------------------------------------------------- /include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/uuid.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/version.h -------------------------------------------------------------------------------- /include/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/video.h -------------------------------------------------------------------------------- /include/video_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/video_fb.h -------------------------------------------------------------------------------- /include/vsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/vsprintf.h -------------------------------------------------------------------------------- /include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/include/watchdog.h -------------------------------------------------------------------------------- /link.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/link.lds -------------------------------------------------------------------------------- /rtconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/rtconfig.h -------------------------------------------------------------------------------- /rtconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/rtconfig.py -------------------------------------------------------------------------------- /tools/dd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/dd.exe -------------------------------------------------------------------------------- /tools/libusb-1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/libusb-1.0.dll -------------------------------------------------------------------------------- /tools/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/libwinpthread-1.dll -------------------------------------------------------------------------------- /tools/mk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/mk.cmd -------------------------------------------------------------------------------- /tools/mkimage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/mkimage.exe -------------------------------------------------------------------------------- /tools/sunxi-fel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/sunxi-fel.exe -------------------------------------------------------------------------------- /tools/sunxi-spl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/sunxi-spl.bin -------------------------------------------------------------------------------- /tools/sunxi-tf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/sunxi-tf.bin -------------------------------------------------------------------------------- /tools/zadig-2.3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/tools/zadig-2.3.exe -------------------------------------------------------------------------------- /uboot/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/SConscript -------------------------------------------------------------------------------- /uboot/anx9804.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/anx9804.h -------------------------------------------------------------------------------- /uboot/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/cache.c -------------------------------------------------------------------------------- /uboot/cache_v7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/cache_v7.c -------------------------------------------------------------------------------- /uboot/cache_v7_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/cache_v7_asm.S -------------------------------------------------------------------------------- /uboot/clock_sun6i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/clock_sun6i.c -------------------------------------------------------------------------------- /uboot/cpu_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/cpu_info.c -------------------------------------------------------------------------------- /uboot/div64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/div64.c -------------------------------------------------------------------------------- /uboot/hitachi_tx18d42vm_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/hitachi_tx18d42vm_lcd.h -------------------------------------------------------------------------------- /uboot/miiphyutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/miiphyutil.c -------------------------------------------------------------------------------- /uboot/ns16550.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/ns16550.c -------------------------------------------------------------------------------- /uboot/phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/phy.c -------------------------------------------------------------------------------- /uboot/pinmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/pinmux.c -------------------------------------------------------------------------------- /uboot/pwm-sun4i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/pwm-sun4i.c -------------------------------------------------------------------------------- /uboot/rtc-sun6i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/rtc-sun6i.c -------------------------------------------------------------------------------- /uboot/ssd2828.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/ssd2828.h -------------------------------------------------------------------------------- /uboot/sun8i_emac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/sun8i_emac.c -------------------------------------------------------------------------------- /uboot/sunxi_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/sunxi_display.c -------------------------------------------------------------------------------- /uboot/sunxi_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/sunxi_gpio.c -------------------------------------------------------------------------------- /uboot/sunxi_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/sunxi_mmc.c -------------------------------------------------------------------------------- /uboot/sunxi_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/sunxi_spi.c -------------------------------------------------------------------------------- /uboot/sunxi_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/sunxi_wdt.c -------------------------------------------------------------------------------- /uboot/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/timer.c -------------------------------------------------------------------------------- /uboot/videomodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/videomodes.c -------------------------------------------------------------------------------- /uboot/videomodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liu2guang/bsp_v3s/HEAD/uboot/videomodes.h --------------------------------------------------------------------------------