mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ARM: boards: phytec-som-imx6: Add mmc and emmc-boot bbu update handler
@ 2020-07-20 10:13 Robert Karszniewicz
  2020-08-10 20:00 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Karszniewicz @ 2020-07-20 10:13 UTC (permalink / raw)
  To: barebox

From: Stefan Riedmueller <s.riedmueller@phytec.de>

Add mmc and emmc-boot bbu update handler to update barebox on SD card
and eMMC boot partitions easily.

Signed-off-by: Stefan Riedmueller <s.riedmueller@phytec.de>
Signed-off-by: Robert Karszniewicz <r.karszniewicz@phytec.de>
---
 arch/arm/boards/phytec-som-imx6/board.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/arch/arm/boards/phytec-som-imx6/board.c b/arch/arm/boards/phytec-som-imx6/board.c
index a59552b95c5f..bac3e8a8a1c8 100644
--- a/arch/arm/boards/phytec-som-imx6/board.c
+++ b/arch/arm/boards/phytec-som-imx6/board.c
@@ -161,12 +161,18 @@ static int physom_imx6_devices_init(void)
 		default_environment_path = "/chosen/environment-spinor";
 		default_envdev = "SPI NOR flash";
 
+		imx6_bbu_internal_mmc_register_handler("mmc2",
+						"/dev/mmc2", 0);
+
 	} else if (of_machine_is_compatible("phytec,imx6q-pcaaxl3")) {
 
 		barebox_set_hostname("phyCARD-i.MX6");
 		default_environment_path = "/chosen/environment-nand";
 		default_envdev = "NAND flash";
 
+		imx6_bbu_internal_mmc_register_handler("mmc2",
+						"/dev/mmc2", 0);
+
 	} else if (of_machine_is_compatible("phytec,imx6q-pcm058-nand")
 		|| of_machine_is_compatible("phytec,imx6q-pcm058-emmc")
 		|| of_machine_is_compatible("phytec,imx6dl-pcm058-nand")
@@ -180,6 +186,9 @@ static int physom_imx6_devices_init(void)
 		default_environment_path = "/chosen/environment-spinor";
 		default_envdev = "SPI NOR flash";
 
+		imx6_bbu_internal_mmc_register_handler("mmc0",
+						"/dev/mmc0", 0);
+
 	} else if (of_machine_is_compatible("phytec,imx6ul-pcl063-nand")
 		|| of_machine_is_compatible("phytec,imx6ul-pcl063-emmc")) {
 		barebox_set_hostname("phyCORE-i.MX6UL");
@@ -189,6 +198,9 @@ static int physom_imx6_devices_init(void)
 		phy_register_fixup_for_uid(PHY_ID_KSZ8081, MICREL_PHY_ID_MASK,
 				ksz8081_phy_fixup);
 
+		imx6_bbu_internal_mmc_register_handler("mmc0",
+						"/dev/mmc0", 0);
+
 	} else
 		return 0;
 
@@ -227,10 +239,14 @@ static int physom_imx6_devices_init(void)
 		imx6_bbu_internal_mmc_register_handler("mmc3",
 						"/dev/mmc3",
 						BBU_HANDLER_FLAG_DEFAULT);
+		imx6_bbu_internal_mmcboot_register_handler("mmc3-boot",
+						"mmc3", 0);
 	} else if (of_machine_is_compatible("phytec,imx6ul-pcl063-emmc")) {
 		imx6_bbu_internal_mmc_register_handler("mmc1",
 						"/dev/mmc1",
 						BBU_HANDLER_FLAG_DEFAULT);
+		imx6_bbu_internal_mmcboot_register_handler("mmc1-boot",
+						"mmc1", 0);
 	} else {
 		imx6_bbu_nand_register_handler("nand", BBU_HANDLER_FLAG_DEFAULT);
 	}
-- 
2.7.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] ARM: boards: phytec-som-imx6: Add mmc and emmc-boot bbu update handler
  2020-07-20 10:13 [PATCH] ARM: boards: phytec-som-imx6: Add mmc and emmc-boot bbu update handler Robert Karszniewicz
@ 2020-08-10 20:00 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2020-08-10 20:00 UTC (permalink / raw)
  To: Robert Karszniewicz; +Cc: barebox

On Mon, Jul 20, 2020 at 12:13:18PM +0200, Robert Karszniewicz wrote:
> From: Stefan Riedmueller <s.riedmueller@phytec.de>
> 
> Add mmc and emmc-boot bbu update handler to update barebox on SD card
> and eMMC boot partitions easily.
> 
> Signed-off-by: Stefan Riedmueller <s.riedmueller@phytec.de>
> Signed-off-by: Robert Karszniewicz <r.karszniewicz@phytec.de>
> ---
>  arch/arm/boards/phytec-som-imx6/board.c | 16 ++++++++++++++++
>  1 file changed, 16 insertions(+)

Applied, thanks

Sascha

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-08-10 20:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-20 10:13 [PATCH] ARM: boards: phytec-som-imx6: Add mmc and emmc-boot bbu update handler Robert Karszniewicz
2020-08-10 20:00 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox