hw: add board support for Nitrogen6 SoloX

This commit is contained in:
Stefan Kalkowski
2017-10-19 10:39:11 +02:00
committed by Christian Helmuth
parent 7ffc480db8
commit 55b0dff795
11 changed files with 414 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ proc bootstrap_link_address { } {
if {[have_spec "zynq"]} { return "0x00100000" }
if {[have_spec "riscv"]} { return "0x81000000" }
if {[have_spec "rpi"]} { return "0x00800000" }
if {[have_spec "nit6_solox"]} { return "0x88000000" }
puts "unknown platform no linker address known"
exit -1
@@ -211,6 +212,7 @@ proc base_src { } {
if {[have_spec pbxa9]} { return base-hw-pbxa9 }
if {[have_spec rpi]} { return base-hw-rpi }
if {[have_spec imx6q_sabrelite]} { return base-hw-imx6q_sabrelite }
if {[have_spec nit6_solox]} { return base-hw-nit6_solox }
if {[have_spec odroid_xu]} { return base-hw-odroid_xu }
if {[have_spec imx53_qsb] && ![have_spec trustzone]} { return base-hw-imx53_qsb }
if {[have_spec imx53_qsb] && [have_spec trustzone]} { return base-hw-imx53_qsb_tz }