* beagle bone black: problem of boot from eMMC
@ 2014-12-31 14:52 ManuelCurcio
  2015-01-05  9:41 ` Teresa Gámez
  2015-01-05  9:59 ` Sascha Hauer
  0 siblings, 2 replies; 5+ messages in thread
From: ManuelCurcio @ 2014-12-31 14:52 UTC (permalink / raw)
  To: barebox
Hi,
From the lasted Barebox version (barebox-2014.12.0): 
I generated a MLO and a barebox.bin for the BeagleBone
(am335x_defconfig&am335x_mlo_defconfig config file) with the
modification of : 
[PATCH] net: cpsw: Fix crashes on beaglebone black   ledphilippe at
gmail.com 
that I copied in a SD card. It work fine.
After, I wanted to boot from the the internal eMMC. 
So after boot from sd card, I mounted the eMMC (mount /dev/mmc1.0) and
copied the MLO and barebox.bin in the /mnt/mmc1.0 folder.
When I try to boot from the internal eMMC ,I have the following error: 
--------->
barebox 2014.12.0 #2 Wed Dec 31 15:29:16 GMT 2014
Board: TI AM335x BeagleBone
detected 'BeagleBone Black'
omap-hsmmc 48060000.mmc: registered as 48060000.mmc
booting from MMC
fat fat0: probe failed: error 22
Unable to mount  (-22)
booting failed
<---------
I tried myself to find a 'correction' by added the call of
am33xx_of_register_bootdevice(void) function at the end of the static
int beaglebone_devices_init(void) function. With this modification,
sometime (depending of the last boot: from SD Card or from eMMC)  I can
boot, someting not. 
So my correction,although improving the situation, is not exactly the
correction to do. Some one can help me ? 
Thanks very much !
 
-----------------------------
Eaton Industries (France) S.A.S ~ Siège social: 110 Rue Blaise Pascal, Immeuble Le Viséo - Bâtiment A Innovallée, 38330, Montbonnot-St.-Martin, France ~ Lieu d'enregistrement au registre du commerce: Grenoble ~ Numéro d'enregistrement: 509 653 176 ~ Capital social souscrit et liberé:€ 16215441 ~ Numéro de TVA: FR47509653176
-----------------------------
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply	[flat|nested] 5+ messages in thread
* Re: beagle bone black: problem of boot from eMMC
  2014-12-31 14:52 beagle bone black: problem of boot from eMMC ManuelCurcio
@ 2015-01-05  9:41 ` Teresa Gámez
  2015-01-06  9:06   ` Sascha Hauer
  2015-01-05  9:59 ` Sascha Hauer
  1 sibling, 1 reply; 5+ messages in thread
From: Teresa Gámez @ 2015-01-05  9:41 UTC (permalink / raw)
  To: ManuelCurcio; +Cc: barebox
Hello Manuel,
Am Mittwoch, den 31.12.2014, 14:52 +0000 schrieb ManuelCurcio@Eaton.com:
> 
> After, I wanted to boot from the the internal eMMC. 
> So after boot from sd card, I mounted the eMMC (mount /dev/mmc1.0) and
> copied the MLO and barebox.bin in the /mnt/mmc1.0 folder.
> 
> When I try to boot from the internal eMMC ,I have the following error: 
> --------->
> barebox 2014.12.0 #2 Wed Dec 31 15:29:16 GMT 2014
> 
> 
> Board: TI AM335x BeagleBone
> detected 'BeagleBone Black'
> omap-hsmmc 48060000.mmc: registered as 48060000.mmc
> booting from MMC
> fat fat0: probe failed: error 22
> Unable to mount  (-22)
> booting failed
> <---------
This issue comes from commit:
commit 0d6392de4ad824a6553c0e3e3e18edef689a7c85
Author: Sascha Hauer <s.hauer@pengutronix.de>
Date:   Thu Jun 5 12:09:07 2014 +0200
    ARM: AM335x: Beaglebone: Use stripped down devicetree for MLO
For the MLO only the am335x-bone-common.dtsi is used to create the
device tree. But this does not have the emmc support included.
> 
> I tried myself to find a 'correction' by added the call of
> am33xx_of_register_bootdevice(void) function at the end of the static
> int beaglebone_devices_init(void) function. With this modification,
> sometime (depending of the last boot: from SD Card or from eMMC)  I can
> boot, someting not. 
What you are also missing is a disabled emmc node from the
am335x-boneblack.dts in the am335x-bone-common.dtsi.
This may help.
Regards,
Teresa
> So my correction,although improving the situation, is not exactly the
> correction to do. Some one can help me ? 
> 
> Thanks very much !
>  
> 
> 
> -----------------------------
> Eaton Industries (France) S.A.S ~ Siège social: 110 Rue Blaise Pascal, Immeuble Le Viséo - Bâtiment A Innovallée, 38330, Montbonnot-St.-Martin, France ~ Lieu d'enregistrement au registre du commerce: Grenoble ~ Numéro d'enregistrement: 509 653 176 ~ Capital social souscrit et liberé:€ 16215441 ~ Numéro de TVA: FR47509653176
> 
> -----------------------------
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply	[flat|nested] 5+ messages in thread
* Re: beagle bone black: problem of boot from eMMC
  2014-12-31 14:52 beagle bone black: problem of boot from eMMC ManuelCurcio
  2015-01-05  9:41 ` Teresa Gámez
@ 2015-01-05  9:59 ` Sascha Hauer
  1 sibling, 0 replies; 5+ messages in thread
From: Sascha Hauer @ 2015-01-05  9:59 UTC (permalink / raw)
  To: ManuelCurcio; +Cc: barebox
On Wed, Dec 31, 2014 at 02:52:39PM +0000, ManuelCurcio@Eaton.com wrote:
> Hi,
> 
> From the lasted Barebox version (barebox-2014.12.0): 
> 
> I generated a MLO and a barebox.bin for the BeagleBone
> (am335x_defconfig&am335x_mlo_defconfig config file) with the
> modification of : 
> [PATCH] net: cpsw: Fix crashes on beaglebone black   ledphilippe at
> gmail.com 
> that I copied in a SD card. It work fine.
> 
> After, I wanted to boot from the the internal eMMC. 
> So after boot from sd card, I mounted the eMMC (mount /dev/mmc1.0) and
> copied the MLO and barebox.bin in the /mnt/mmc1.0 folder.
> 
> When I try to boot from the internal eMMC ,I have the following error: 
> --------->
> barebox 2014.12.0 #2 Wed Dec 31 15:29:16 GMT 2014
> 
> 
> Board: TI AM335x BeagleBone
> detected 'BeagleBone Black'
> omap-hsmmc 48060000.mmc: registered as 48060000.mmc
> booting from MMC
> fat fat0: probe failed: error 22
> Unable to mount  (-22)
> booting failed
> <---------
> 
> I tried myself to find a 'correction' by added the call of
> am33xx_of_register_bootdevice(void) function at the end of the static
> int beaglebone_devices_init(void) function. With this modification,
> sometime (depending of the last boot: from SD Card or from eMMC)  I can
> boot, someting not. 
> So my correction,although improving the situation, is not exactly the
> correction to do. Some one can help me ? 
In your bootlog above mmc@481d8000 (which is the eMMC) is not
registered. I had a quick look at the code and didn't find anything
obvious. I can have a closer look this evening.
Sascha
-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 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] 5+ messages in thread
* Re: beagle bone black: problem of boot from eMMC
  2015-01-05  9:41 ` Teresa Gámez
@ 2015-01-06  9:06   ` Sascha Hauer
  2015-01-14  8:43     ` ManuelCurcio
  0 siblings, 1 reply; 5+ messages in thread
From: Sascha Hauer @ 2015-01-06  9:06 UTC (permalink / raw)
  To: Teresa Gámez; +Cc: barebox
On Mon, Jan 05, 2015 at 10:41:52AM +0100, Teresa Gámez wrote:
> Hello Manuel,
> 
> Am Mittwoch, den 31.12.2014, 14:52 +0000 schrieb ManuelCurcio@Eaton.com:
> > 
> > After, I wanted to boot from the the internal eMMC. 
> > So after boot from sd card, I mounted the eMMC (mount /dev/mmc1.0) and
> > copied the MLO and barebox.bin in the /mnt/mmc1.0 folder.
> > 
> > When I try to boot from the internal eMMC ,I have the following error: 
> > --------->
> > barebox 2014.12.0 #2 Wed Dec 31 15:29:16 GMT 2014
> > 
> > 
> > Board: TI AM335x BeagleBone
> > detected 'BeagleBone Black'
> > omap-hsmmc 48060000.mmc: registered as 48060000.mmc
> > booting from MMC
> > fat fat0: probe failed: error 22
> > Unable to mount  (-22)
> > booting failed
> > <---------
> 
> This issue comes from commit:
> 
> commit 0d6392de4ad824a6553c0e3e3e18edef689a7c85
> Author: Sascha Hauer <s.hauer@pengutronix.de>
> Date:   Thu Jun 5 12:09:07 2014 +0200
> 
>     ARM: AM335x: Beaglebone: Use stripped down devicetree for MLO
> 
> For the MLO only the am335x-bone-common.dtsi is used to create the
> device tree. But this does not have the emmc support included.
Damn. Somehow I knew I was guilty :(
> 
> > 
> > I tried myself to find a 'correction' by added the call of
> > am33xx_of_register_bootdevice(void) function at the end of the static
> > int beaglebone_devices_init(void) function. With this modification,
> > sometime (depending of the last boot: from SD Card or from eMMC)  I can
> > boot, someting not. 
> 
> What you are also missing is a disabled emmc node from the
> am335x-boneblack.dts in the am335x-bone-common.dtsi.
I just sent a patch which fixes this.
Sascha
-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 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] 5+ messages in thread
* RE: beagle bone black: problem of boot from eMMC
  2015-01-06  9:06   ` Sascha Hauer
@ 2015-01-14  8:43     ` ManuelCurcio
  0 siblings, 0 replies; 5+ messages in thread
From: ManuelCurcio @ 2015-01-14  8:43 UTC (permalink / raw)
  To: s.hauer, t.gamez; +Cc: barebox
Hi,
I just see your emails (some problem with my spam folder configuration ?..).
I seen also the patch, it works fine.
Thank you!
-----------------------------
Eaton Industries (France) S.A.S ~ Siège social: 110 Rue Blaise Pascal, Immeuble Le Viséo - Bâtiment A Innovallée, 38330, Montbonnot-St.-Martin, France ~ Lieu d'enregistrement au registre du commerce: Grenoble ~ Numéro d'enregistrement: 509 653 176 ~ Capital social souscrit et liberé:€ 16215441 ~ Numéro de TVA: FR47509653176
-----------------------------
-----Original Message-----
From: Sascha Hauer [mailto:s.hauer@pengutronix.de] 
Sent: mardi 6 janvier 2015 10:06
To: Teresa Gámez
Cc: Curcio, Manuel; barebox@lists.infradead.org
Subject: Re: beagle bone black: problem of boot from eMMC
On Mon, Jan 05, 2015 at 10:41:52AM +0100, Teresa Gámez wrote:
> Hello Manuel,
> 
> Am Mittwoch, den 31.12.2014, 14:52 +0000 schrieb ManuelCurcio@Eaton.com:
> > 
> > After, I wanted to boot from the the internal eMMC. 
> > So after boot from sd card, I mounted the eMMC (mount /dev/mmc1.0) 
> > and copied the MLO and barebox.bin in the /mnt/mmc1.0 folder.
> > 
> > When I try to boot from the internal eMMC ,I have the following error: 
> > --------->
> > barebox 2014.12.0 #2 Wed Dec 31 15:29:16 GMT 2014
> > 
> > 
> > Board: TI AM335x BeagleBone
> > detected 'BeagleBone Black'
> > omap-hsmmc 48060000.mmc: registered as 48060000.mmc booting from MMC 
> > fat fat0: probe failed: error 22 Unable to mount  (-22) booting 
> > failed
> > <---------
> 
> This issue comes from commit:
> 
> commit 0d6392de4ad824a6553c0e3e3e18edef689a7c85
> Author: Sascha Hauer <s.hauer@pengutronix.de>
> Date:   Thu Jun 5 12:09:07 2014 +0200
> 
>     ARM: AM335x: Beaglebone: Use stripped down devicetree for MLO
> 
> For the MLO only the am335x-bone-common.dtsi is used to create the 
> device tree. But this does not have the emmc support included.
Damn. Somehow I knew I was guilty :(
> 
> > 
> > I tried myself to find a 'correction' by added the call of
> > am33xx_of_register_bootdevice(void) function at the end of the 
> > static int beaglebone_devices_init(void) function. With this 
> > modification, sometime (depending of the last boot: from SD Card or 
> > from eMMC)  I can boot, someting not.
> 
> What you are also missing is a disabled emmc node from the 
> am335x-boneblack.dts in the am335x-bone-common.dtsi.
I just sent a patch which fixes this.
Sascha
-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 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] 5+ messages in thread
end of thread, other threads:[~2015-01-14  8:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-31 14:52 beagle bone black: problem of boot from eMMC ManuelCurcio
2015-01-05  9:41 ` Teresa Gámez
2015-01-06  9:06   ` Sascha Hauer
2015-01-14  8:43     ` ManuelCurcio
2015-01-05  9:59 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox