Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ff8abc28 authored by Michael Heimpold's avatar Michael Heimpold Committed by Shawn Guo
Browse files

ARM: mxs: add support for I2SE Duckbill 2 boards



The Duckbill devices are small, pen-drive sized boards based on
NXP's i.MX28 SoC. While the initial variants (Duckbill series)
were equipped with a micro SD card slot only, the latest generation
(Duckbill 2 series) have an additional internal eMMC onboard.

To distinguish between both generations, a new device tree
compatible string was introduced. To get the MAC address fixup
applied, we need to check for this new string here, too.

Signed-off-by: default avatarMichael Heimpold <michael.heimpold@i2se.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 24bb244e
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -419,7 +419,8 @@ static void __init mxs_machine_init(void)
		crystalfontz_init();
		crystalfontz_init();
	else if (of_machine_is_compatible("eukrea,mbmx283lc"))
	else if (of_machine_is_compatible("eukrea,mbmx283lc"))
		eukrea_mbmx283lc_init();
		eukrea_mbmx283lc_init();
	else if (of_machine_is_compatible("i2se,duckbill"))
	else if (of_machine_is_compatible("i2se,duckbill") ||
		 of_machine_is_compatible("i2se,duckbill-2"))
		duckbill_init();
		duckbill_init();
	else if (of_machine_is_compatible("msr,m28cu3"))
	else if (of_machine_is_compatible("msr,m28cu3"))
		m28cu3_init();
		m28cu3_init();