├── .gitignore ├── LICENSE ├── README.md ├── bare_blink ├── .gitignore ├── Makefile ├── README.md ├── bare.lds ├── blink.c └── start.S ├── bare_dump ├── .gitignore ├── Makefile ├── README.md ├── bare.lds ├── dump.c ├── prf.c ├── start.S └── uart.c ├── bare_hello ├── .gitignore ├── Makefile ├── README.md ├── bare.lds ├── bare_ddr.lds ├── hello.c ├── start.S └── uart.c ├── blink ├── .gitignore ├── Makefile ├── README.md ├── blink.c ├── spl.lds └── start.S ├── bootrom ├── .gitignore ├── Makefile ├── README.md ├── arm_wrap.c ├── bootrom.txt ├── dumpcon.c ├── hexoff ├── rom.txt └── tobin ├── hello ├── .gitignore ├── Makefile ├── README.md ├── hello.c ├── spl.lds └── start.S ├── hello2 ├── .gitignore ├── Makefile ├── README.md ├── hello.c ├── spl.lds ├── start.S └── uart.c ├── inter ├── .gitignore ├── Makefile ├── README.md ├── gic500.c ├── gpio.c ├── main.c ├── mmu.c ├── prf.c ├── protos.h ├── rk3399_ints.h ├── spl.lds ├── start.S ├── timer.c ├── trap.c └── uart.c ├── make_boot ├── .gitignore ├── Makefile ├── Notes ├── README.md ├── idbloader.bin ├── patcher.c ├── trust.bin └── uboot.img ├── mkrock ├── .gitignore ├── Makefile ├── README.md ├── mkrock.c ├── rc4.c ├── u-boot-tpl-rockchip.bin └── u-boot-tpl.bin ├── printf ├── .gitignore ├── Makefile ├── README.md ├── main.c ├── prf.c ├── spl.lds ├── start.S └── uart.c └── usb_load ├── .gitignore ├── Makefile ├── README.md ├── ddr.img ├── hello_ddr.bin ├── hello_sram.bin ├── rk3399_ddr_800MHz_v ├── unpack.c └── usb_load.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/README.md -------------------------------------------------------------------------------- /bare_blink/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_blink/.gitignore -------------------------------------------------------------------------------- /bare_blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_blink/Makefile -------------------------------------------------------------------------------- /bare_blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_blink/README.md -------------------------------------------------------------------------------- /bare_blink/bare.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_blink/bare.lds -------------------------------------------------------------------------------- /bare_blink/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_blink/blink.c -------------------------------------------------------------------------------- /bare_blink/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_blink/start.S -------------------------------------------------------------------------------- /bare_dump/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/.gitignore -------------------------------------------------------------------------------- /bare_dump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/Makefile -------------------------------------------------------------------------------- /bare_dump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/README.md -------------------------------------------------------------------------------- /bare_dump/bare.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/bare.lds -------------------------------------------------------------------------------- /bare_dump/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/dump.c -------------------------------------------------------------------------------- /bare_dump/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/prf.c -------------------------------------------------------------------------------- /bare_dump/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/start.S -------------------------------------------------------------------------------- /bare_dump/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_dump/uart.c -------------------------------------------------------------------------------- /bare_hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/.gitignore -------------------------------------------------------------------------------- /bare_hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/Makefile -------------------------------------------------------------------------------- /bare_hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/README.md -------------------------------------------------------------------------------- /bare_hello/bare.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/bare.lds -------------------------------------------------------------------------------- /bare_hello/bare_ddr.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/bare_ddr.lds -------------------------------------------------------------------------------- /bare_hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/hello.c -------------------------------------------------------------------------------- /bare_hello/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/start.S -------------------------------------------------------------------------------- /bare_hello/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bare_hello/uart.c -------------------------------------------------------------------------------- /blink/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/blink/.gitignore -------------------------------------------------------------------------------- /blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/blink/Makefile -------------------------------------------------------------------------------- /blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/blink/README.md -------------------------------------------------------------------------------- /blink/blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/blink/blink.c -------------------------------------------------------------------------------- /blink/spl.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/blink/spl.lds -------------------------------------------------------------------------------- /blink/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/blink/start.S -------------------------------------------------------------------------------- /bootrom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/.gitignore -------------------------------------------------------------------------------- /bootrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/Makefile -------------------------------------------------------------------------------- /bootrom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/README.md -------------------------------------------------------------------------------- /bootrom/arm_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/arm_wrap.c -------------------------------------------------------------------------------- /bootrom/bootrom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/bootrom.txt -------------------------------------------------------------------------------- /bootrom/dumpcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/dumpcon.c -------------------------------------------------------------------------------- /bootrom/hexoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/hexoff -------------------------------------------------------------------------------- /bootrom/rom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/rom.txt -------------------------------------------------------------------------------- /bootrom/tobin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/bootrom/tobin -------------------------------------------------------------------------------- /hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello/.gitignore -------------------------------------------------------------------------------- /hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello/Makefile -------------------------------------------------------------------------------- /hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello/README.md -------------------------------------------------------------------------------- /hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello/hello.c -------------------------------------------------------------------------------- /hello/spl.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello/spl.lds -------------------------------------------------------------------------------- /hello/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello/start.S -------------------------------------------------------------------------------- /hello2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello2/.gitignore -------------------------------------------------------------------------------- /hello2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello2/Makefile -------------------------------------------------------------------------------- /hello2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello2/README.md -------------------------------------------------------------------------------- /hello2/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello2/hello.c -------------------------------------------------------------------------------- /hello2/spl.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello2/spl.lds -------------------------------------------------------------------------------- /hello2/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello2/start.S -------------------------------------------------------------------------------- /hello2/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/hello2/uart.c -------------------------------------------------------------------------------- /inter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/.gitignore -------------------------------------------------------------------------------- /inter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/Makefile -------------------------------------------------------------------------------- /inter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/README.md -------------------------------------------------------------------------------- /inter/gic500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/gic500.c -------------------------------------------------------------------------------- /inter/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/gpio.c -------------------------------------------------------------------------------- /inter/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/main.c -------------------------------------------------------------------------------- /inter/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/mmu.c -------------------------------------------------------------------------------- /inter/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/prf.c -------------------------------------------------------------------------------- /inter/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/protos.h -------------------------------------------------------------------------------- /inter/rk3399_ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/rk3399_ints.h -------------------------------------------------------------------------------- /inter/spl.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/spl.lds -------------------------------------------------------------------------------- /inter/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/start.S -------------------------------------------------------------------------------- /inter/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/timer.c -------------------------------------------------------------------------------- /inter/trap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/trap.c -------------------------------------------------------------------------------- /inter/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/inter/uart.c -------------------------------------------------------------------------------- /make_boot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/.gitignore -------------------------------------------------------------------------------- /make_boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/Makefile -------------------------------------------------------------------------------- /make_boot/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/Notes -------------------------------------------------------------------------------- /make_boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/README.md -------------------------------------------------------------------------------- /make_boot/idbloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/idbloader.bin -------------------------------------------------------------------------------- /make_boot/patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/patcher.c -------------------------------------------------------------------------------- /make_boot/trust.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/trust.bin -------------------------------------------------------------------------------- /make_boot/uboot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/make_boot/uboot.img -------------------------------------------------------------------------------- /mkrock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/mkrock/.gitignore -------------------------------------------------------------------------------- /mkrock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/mkrock/Makefile -------------------------------------------------------------------------------- /mkrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/mkrock/README.md -------------------------------------------------------------------------------- /mkrock/mkrock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/mkrock/mkrock.c -------------------------------------------------------------------------------- /mkrock/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/mkrock/rc4.c -------------------------------------------------------------------------------- /mkrock/u-boot-tpl-rockchip.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/mkrock/u-boot-tpl-rockchip.bin -------------------------------------------------------------------------------- /mkrock/u-boot-tpl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/mkrock/u-boot-tpl.bin -------------------------------------------------------------------------------- /printf/.gitignore: -------------------------------------------------------------------------------- 1 | *.dis 2 | -------------------------------------------------------------------------------- /printf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/printf/Makefile -------------------------------------------------------------------------------- /printf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/printf/README.md -------------------------------------------------------------------------------- /printf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/printf/main.c -------------------------------------------------------------------------------- /printf/prf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/printf/prf.c -------------------------------------------------------------------------------- /printf/spl.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/printf/spl.lds -------------------------------------------------------------------------------- /printf/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/printf/start.S -------------------------------------------------------------------------------- /printf/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/printf/uart.c -------------------------------------------------------------------------------- /usb_load/.gitignore: -------------------------------------------------------------------------------- 1 | usb_load 2 | unpack 3 | *.o 4 | -------------------------------------------------------------------------------- /usb_load/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/usb_load/Makefile -------------------------------------------------------------------------------- /usb_load/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/usb_load/README.md -------------------------------------------------------------------------------- /usb_load/ddr.img: -------------------------------------------------------------------------------- 1 | rk3399_ddr_800MHz_v -------------------------------------------------------------------------------- /usb_load/hello_ddr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/usb_load/hello_ddr.bin -------------------------------------------------------------------------------- /usb_load/hello_sram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/usb_load/hello_sram.bin -------------------------------------------------------------------------------- /usb_load/rk3399_ddr_800MHz_v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/usb_load/rk3399_ddr_800MHz_v -------------------------------------------------------------------------------- /usb_load/unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/usb_load/unpack.c -------------------------------------------------------------------------------- /usb_load/usb_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trebisky/Rockchip/HEAD/usb_load/usb_load.c --------------------------------------------------------------------------------