summaryrefslogtreecommitdiff
path: root/plat/nxp
AgeCommit message (Collapse)Author
2018-10-04warp7: Change TFTF load addressJun Nie
Change TFTF load address because ATF is merged and load address is re-arranged. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-09-10warp7: skip tests that are not supported by warp7Jun Nie
suspend, PSCI Affinity info and CPU hotplug are not supported by warp7. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-09-10warp7: fix platform name typo in commentsJun Nie
fix platform name typo in comments Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-09-07warp7: add system level standby stateJun Nie
add system level standby state Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-09-06warp7: Fix power level number for warp7Jun Nie
Fix power level number for warp7 because there are only two power levels are defined. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-09-06warp7: Skip PSCI Affinity testJun Nie
Skip PSCI Affinity test as there is only one CPU core in SOC. This test also cause test suite to exit. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-28warp7: register platform timerJun Nie
register nxp timer as platform timer to provide timeout interrupt service. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-24warp7: correct system counter register addressJun Nie
Correct system counter register address. So that framework can call it directly to get latest counter value. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-24warp7: adjust mpid valueJun Nie
The mpid value get from tftf_plat_get_mpidr() should be aligned with read_mpidr_el1(), so that below test is true for lead core. (read_mpidr_el1() & MPID_MASK) == mpid Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-24warp7: change tftf load address to ease testJun Nie
change tftf load address to ease test. The original address is for optee. TFTF should play u-boot's role for test actually. But for ease of test, we use u-boot to load it, as below boot sequence of ATF -> optee -> u-boot -> tftf. The command in u-boot console to boot tftf: fatload mmc 0:1 0x9e000000 tftf.bin; go 0x9e000000 Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-24warp7: add irq stack size definitionJun Nie
add irq stack size definition so that Aarch32 framework can use it to define the stack in IRQ mode. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-07warp7: Add tests list to skipJun Nie
Add tests list to skip for warp7. More will be added later Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-07warp7: build: Add make config fileJun Nie
Add build config file to specify source code for compiling Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-07warp7: Add power state and domain topologyJun Nie
Add power state and domain topology for warp7 Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-07warp7: register timer for warp7Jun Nie
register timer for warp7 to provide timer callback for framework. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-07warp7: Add basic platform setupJun Nie
Add basic platform setup code, include console and GIC initilization. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-07warp7: Add plat helpers functionJun Nie
Add plat helpers function, platform_get_core_pos(). This function is called in framework so we need implement it though warp7 only have one CPU core. Signed-off-by: Jun Nie <jun.nie@linaro.org>
2018-08-07warp7: Add platform configuration headerJun Nie
Add platform definition header, which defines all warp7 related configurations. Signed-off-by: Jun Nie <jun.nie@linaro.org>