├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── debian ├── README.md ├── files │ ├── dtb_cp │ ├── dtb_rm │ ├── kernel-img.conf │ ├── kernel_chmod │ ├── mk_extlinux │ └── rc.local ├── install_kernel.sh └── make_debian_img.sh ├── dtb ├── README.md ├── make_dtb.sh ├── overlays │ ├── Makefile │ ├── rtc-ds3231-overlay.dts │ └── rtc-pcf8523-overlay.dts └── patches │ ├── 01_timer │ ├── 0001-dt-bindings-timer-Add-timer-for-StarFive-JH7110-SoC.patch │ └── 0003-riscv-dts-jh7110-starfive-Add-timer-node.patch │ ├── 02_pwm │ ├── 0001-dt-bindings-pwm-Add-bindings-for-OpenCores-PWM-Contr.patch │ ├── 0003-riscv-dts-starfive-jh7100-Add-PWM-node-and-pins-conf.patch │ └── 0004-riscv-dts-starfive-jh7110-Add-PWM-node-and-pins-conf.patch │ ├── 05_pcie │ ├── 0018-dt-bindings-PCI-Add-StarFive-JH7110-PCIe-controller.patch │ └── 0020-riscv-dts-starfive-add-PCIe-dts-configuration-for-JH.patch │ └── 99_patches │ └── 0011-assorted-devicetree-patches-from-upstream.patch ├── kernel ├── make_kernel.sh └── patches │ ├── 01_pwm │ └── 0001-pwm-opencores-Add-PWM-driver-support.patch │ ├── 02_can │ ├── 0001-dt-bindings-vendor-prefixes-Add-cast-vendor-prefix.patch │ ├── 0002-dt-bindings-can-Add-CAST-CAN-Bus-Controller.patch │ ├── 0003-can-Add-driver-for-CAST-CAN-Bus-Controller.patch │ └── 0004-riscv-dts-starfive-jh7110-Add-CAN-nodes.patch │ ├── 03_mipi_dsi │ ├── 0001-dt-bindings-display-bridge-cdns-Add-display-bridge-s.patch │ └── 0002-drm-bridge-cdns-dsi-Add-support-for-StarFive-JH7110-.patch │ └── 99_misc │ ├── 0001-ASoC-dwc-Use-ops-to-get-platform-data.patch │ └── 0002-default-config-for-the-starfive-visionfive2.patch ├── misc ├── do_doc.sh ├── motd ├── vf2_mmc.jpg └── vf2_spi.jpg └── uboot ├── README.md ├── make_uboot.sh └── patches └── 0001-turn-off-standard-boot-for-now.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/README.md -------------------------------------------------------------------------------- /debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/README.md -------------------------------------------------------------------------------- /debian/files/dtb_cp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/files/dtb_cp -------------------------------------------------------------------------------- /debian/files/dtb_rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/files/dtb_rm -------------------------------------------------------------------------------- /debian/files/kernel-img.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/files/kernel-img.conf -------------------------------------------------------------------------------- /debian/files/kernel_chmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/files/kernel_chmod -------------------------------------------------------------------------------- /debian/files/mk_extlinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/files/mk_extlinux -------------------------------------------------------------------------------- /debian/files/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/files/rc.local -------------------------------------------------------------------------------- /debian/install_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/install_kernel.sh -------------------------------------------------------------------------------- /debian/make_debian_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/debian/make_debian_img.sh -------------------------------------------------------------------------------- /dtb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/README.md -------------------------------------------------------------------------------- /dtb/make_dtb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/make_dtb.sh -------------------------------------------------------------------------------- /dtb/overlays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/overlays/Makefile -------------------------------------------------------------------------------- /dtb/overlays/rtc-ds3231-overlay.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/overlays/rtc-ds3231-overlay.dts -------------------------------------------------------------------------------- /dtb/overlays/rtc-pcf8523-overlay.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/overlays/rtc-pcf8523-overlay.dts -------------------------------------------------------------------------------- /dtb/patches/01_timer/0001-dt-bindings-timer-Add-timer-for-StarFive-JH7110-SoC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/01_timer/0001-dt-bindings-timer-Add-timer-for-StarFive-JH7110-SoC.patch -------------------------------------------------------------------------------- /dtb/patches/01_timer/0003-riscv-dts-jh7110-starfive-Add-timer-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/01_timer/0003-riscv-dts-jh7110-starfive-Add-timer-node.patch -------------------------------------------------------------------------------- /dtb/patches/02_pwm/0001-dt-bindings-pwm-Add-bindings-for-OpenCores-PWM-Contr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/02_pwm/0001-dt-bindings-pwm-Add-bindings-for-OpenCores-PWM-Contr.patch -------------------------------------------------------------------------------- /dtb/patches/02_pwm/0003-riscv-dts-starfive-jh7100-Add-PWM-node-and-pins-conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/02_pwm/0003-riscv-dts-starfive-jh7100-Add-PWM-node-and-pins-conf.patch -------------------------------------------------------------------------------- /dtb/patches/02_pwm/0004-riscv-dts-starfive-jh7110-Add-PWM-node-and-pins-conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/02_pwm/0004-riscv-dts-starfive-jh7110-Add-PWM-node-and-pins-conf.patch -------------------------------------------------------------------------------- /dtb/patches/05_pcie/0018-dt-bindings-PCI-Add-StarFive-JH7110-PCIe-controller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/05_pcie/0018-dt-bindings-PCI-Add-StarFive-JH7110-PCIe-controller.patch -------------------------------------------------------------------------------- /dtb/patches/05_pcie/0020-riscv-dts-starfive-add-PCIe-dts-configuration-for-JH.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/05_pcie/0020-riscv-dts-starfive-add-PCIe-dts-configuration-for-JH.patch -------------------------------------------------------------------------------- /dtb/patches/99_patches/0011-assorted-devicetree-patches-from-upstream.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/dtb/patches/99_patches/0011-assorted-devicetree-patches-from-upstream.patch -------------------------------------------------------------------------------- /kernel/make_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/make_kernel.sh -------------------------------------------------------------------------------- /kernel/patches/01_pwm/0001-pwm-opencores-Add-PWM-driver-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/01_pwm/0001-pwm-opencores-Add-PWM-driver-support.patch -------------------------------------------------------------------------------- /kernel/patches/02_can/0001-dt-bindings-vendor-prefixes-Add-cast-vendor-prefix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/02_can/0001-dt-bindings-vendor-prefixes-Add-cast-vendor-prefix.patch -------------------------------------------------------------------------------- /kernel/patches/02_can/0002-dt-bindings-can-Add-CAST-CAN-Bus-Controller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/02_can/0002-dt-bindings-can-Add-CAST-CAN-Bus-Controller.patch -------------------------------------------------------------------------------- /kernel/patches/02_can/0003-can-Add-driver-for-CAST-CAN-Bus-Controller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/02_can/0003-can-Add-driver-for-CAST-CAN-Bus-Controller.patch -------------------------------------------------------------------------------- /kernel/patches/02_can/0004-riscv-dts-starfive-jh7110-Add-CAN-nodes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/02_can/0004-riscv-dts-starfive-jh7110-Add-CAN-nodes.patch -------------------------------------------------------------------------------- /kernel/patches/03_mipi_dsi/0001-dt-bindings-display-bridge-cdns-Add-display-bridge-s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/03_mipi_dsi/0001-dt-bindings-display-bridge-cdns-Add-display-bridge-s.patch -------------------------------------------------------------------------------- /kernel/patches/03_mipi_dsi/0002-drm-bridge-cdns-dsi-Add-support-for-StarFive-JH7110-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/03_mipi_dsi/0002-drm-bridge-cdns-dsi-Add-support-for-StarFive-JH7110-.patch -------------------------------------------------------------------------------- /kernel/patches/99_misc/0001-ASoC-dwc-Use-ops-to-get-platform-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/99_misc/0001-ASoC-dwc-Use-ops-to-get-platform-data.patch -------------------------------------------------------------------------------- /kernel/patches/99_misc/0002-default-config-for-the-starfive-visionfive2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/kernel/patches/99_misc/0002-default-config-for-the-starfive-visionfive2.patch -------------------------------------------------------------------------------- /misc/do_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/misc/do_doc.sh -------------------------------------------------------------------------------- /misc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/misc/motd -------------------------------------------------------------------------------- /misc/vf2_mmc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/misc/vf2_mmc.jpg -------------------------------------------------------------------------------- /misc/vf2_spi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/misc/vf2_spi.jpg -------------------------------------------------------------------------------- /uboot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/uboot/README.md -------------------------------------------------------------------------------- /uboot/make_uboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/uboot/make_uboot.sh -------------------------------------------------------------------------------- /uboot/patches/0001-turn-off-standard-boot-for-now.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inindev/visionfive2/HEAD/uboot/patches/0001-turn-off-standard-boot-for-now.patch --------------------------------------------------------------------------------