summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-02-14 11:47:17 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2020-02-19 08:30:32 +0100
commitaa65f083d96096002ec3b6aa2cde036fe814ad55 (patch)
tree8b5dc458c2985446f83834e5cd803e4f79395ea4
parent61a0d63c755dae9c31e0cc0e5a5cb9a885fa6141 (diff)
downloadbarebox-aa65f083d96096002ec3b6aa2cde036fe814ad55.tar.gz
barebox-aa65f083d96096002ec3b6aa2cde036fe814ad55.tar.xz
scripts: imx-image: Add i.MX8MM support
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--scripts/imx/imx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/imx/imx.c b/scripts/imx/imx.c
index 980173950f..fd119e3e4f 100644
--- a/scripts/imx/imx.c
+++ b/scripts/imx/imx.c
@@ -243,6 +243,7 @@ static struct soc_type socs[] = {
{ .name = "imx53", .header_version = 2, .cpu_type = IMX_CPU_IMX53, .header_gap = 0, .first_opcode = 0xea0003fe /* b 0x1000 */},
{ .name = "imx6", .header_version = 2, .cpu_type = IMX_CPU_IMX6, .header_gap = 0, .first_opcode = 0xea0003fe /* b 0x1000 */},
{ .name = "imx7", .header_version = 2, .cpu_type = IMX_CPU_IMX7, .header_gap = 0, .first_opcode = 0xea0003fe /* b 0x1000 */},
+ { .name = "imx8mm", .header_version = 2, .cpu_type = IMX_CPU_IMX8MM, .header_gap = SZ_32K, .first_opcode = 0x14000000 /* b 0x0000 (offset computed) */},
{ .name = "imx8mq", .header_version = 2, .cpu_type = IMX_CPU_IMX8MQ, .header_gap = SZ_32K, .first_opcode = 0x14000000 /* b 0x0000 (offset computed) */},
{ .name = "vf610", .header_version = 2, .cpu_type = IMX_CPU_VF610, .header_gap = 0, .first_opcode = 0xea0003fe /* b 0x1000 */},
};