Hi Sascha<div><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">> I have been trying to boot a customized mx25 based device using barebox and<br>


> I seem to be missing a few basic pointers, I believe, since it does not<br>
> work. I have attached my config and put my current patch-set online:<br>
> <a href="http://pastebin.com/KUVAwWRk" target="_blank">http://pastebin.com/KUVAwWRk</a>. It's based on git commit 'dadcf5bd8f715'.<br>
><br>
> I don't know if the way of adding the boatloader to the SD card for later<br>
> installing it onto NOR flash is the correct one. I currently issue a:<br>
><br>
> sudo dd if=barebox.bin of=/dev/sdc bs=512 skip=2 seek=2 && sync<br>
><br>
<br>
</div>You have configured barebox for external boot mode. This is not suitable<br>
for SD cards, you have to use internal bootmode instead. This requires<br>
that you provide a dtd header, see for example the babbage board for how<br>
to do this.<br>
<span class="HOEnZb"><font color="#888888"><br></font></span></blockquote><div><br></div><div>To be honest, after reading section 7 in the RM of the mx24, reading dozens of post, your comments in the source code with regard to internal vs. external boot, I still seem to be confused.</div>

<div><br></div><div>Nevertheless, your suggestion works!! Also, they way I setup my SD card was slightly wrong; the reserved 2048 sectors on my SD card confused me, but the reason is the 8-byte alignment boundary for speed reasons. To better document things, here are the steps that lead to my mx25 based device booting barebox as first stage boot loader from SD card in internal boot mode  (my SD card being detected as /dev/sdc):</div>

<div><br></div><div><div>root@pc-develop:~# fdisk -l /dev/sdc</div><div><br></div><div>Disk /dev/sdc: 2002 MB, 2002780160 bytes</div><div>62 heads, 62 sectors/track, 1017 cylinders, total 3911680 sectors</div><div>Units = sectors of 1 * 512 = 512 bytes</div>

<div>Sector size (logical/physical): 512 bytes / 512 bytes</div><div>I/O size (minimum/optimal): 512 bytes / 512 bytes</div><div>Disk identifier: 0xfb7a8756</div><div><br></div><div>   Device Boot      Start         End      Blocks   Id  System</div>

<div>/dev/sdc1   *        2048        4095        1024   83  Linux</div><div>/dev/sdc2            4096     1052671      524288    b  W95 FAT32</div><div>/dev/sdc3         1052672     3911679     1429504   83  Linux</div>
<div>
root@pc-develop:~# umount /media/216B-BCD2 </div><div>root@pc-develop:~# mkfs.vfat /dev/sdc2</div><div>mkfs.vfat 3.0.12 (29 Oct 2011)</div><div>root@pc-develop:~# mkfs.ext3 /dev/sdc3</div><div>mke2fs 1.42 (29-Nov-2011)</div>

<div>[...]</div><div>root@pc-develop:~# dd if=./barebox.bin of=/dev/sdc1 bs=512</div><div>553+1 records in</div><div>553+1 records out</div><div>283144 bytes (283 kB) copied, 0.0504609 s, 5.6 MB/s</div></div><div><br></div>

<div>Set the switches to boot from SD on the mx25 device and power on. It successfully loads barebox and I can mount the fat partition (of course the other partition is unmountable, because there is no ext2/3 support in barebox). Booting from my environment currently fails, but I reckon it has to do with my configuration settings. Here is where it gets so far:</div>

<div><br></div><div><div>[    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)</div><div>[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)</div><div>[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)</div>

<div>[    0.000000] Memory: 64MB = 64MB total</div><div>[    0.000000] Memory: 57860k/57860k available, 7676k reserved, 0K highmem</div><div>[    0.000000] Virtual kernel memory layout:</div><div>[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)</div>

<div>[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)</div><div>[    0.000000]     vmalloc : 0xc4800000 - 0xff000000   ( 936 MB)</div><div>[    0.000000]     lowmem  : 0xc0000000 - 0xc4000000   (  64 MB)</div>

<div>[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)</div><div>[    0.000000]       .text : 0xc0008000 - 0xc062e608   (6298 kB)</div><div>[    0.000000]       .init : 0xc062f000 - 0xc0665000   ( 216 kB)</div>

<div>[    0.000000]       .data : 0xc0666000 - 0xc06a4a48   ( 251 kB)</div><div>[    0.000000]        .bss : 0xc06a4a6c - 0xc06e7084   ( 266 kB)</div><div>[    0.000000] SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1</div>

<div>[    0.000000] NR_IRQS:336</div><div>[    0.000000] MXC IRQ initialized</div><div>[    0.000000] CPU identified as i.MX25, unknown revision</div><div>[    0.000000] sched_clock: 32 bits at 66MHz, resolution 15ns, wraps every 64585ms</div>

<div>[    0.000000] Console: colour dummy device 80x30</div><div>[    0.000494] Calibrating delay loop... 199.06 BogoMIPS (lpj=995328)</div><div>[    0.070322] pid_max: default: 32768 minimum: 301</div><div>[    0.070847] Mount-cache hash table entries: 512</div>

<div>[    0.072033] CPU: Testing write buffer coherency: ok</div><div>[    0.072302] ftrace: allocating 15086 entries in 45 pages</div><div>[    0.168557] Setting up static identity map for 0x80480fc8 - 0x80481004</div><div>

[    0.171939] devtmpfs: initialized</div><div>[    0.175457] NET: Registered protocol family 16</div><div>[    0.187052] gpiochip_add: registered GPIOs 0 to 31 on device: imx31-gpio.0</div><div>[    0.189598] gpiochip_add: registered GPIOs 32 to 63 on device: imx31-gpio.1</div>

<div>[    0.191705] gpiochip_add: registered GPIOs 64 to 95 on device: imx31-gpio.2</div><div>[    0.193832] gpiochip_add: registered GPIOs 96 to 127 on device: imx31-gpio.3</div><div>[    0.320820] bio: create slab <bio-0> at 0</div>

<div>[    0.326517] SCSI subsystem initialized</div><div>[    0.330858] usbcore: registered new interface driver usbfs</div><div>[    0.331815] usbcore: registered new interface driver hub</div><div>[    0.332898] usbcore: registered new device driver usb</div>

<div>[    0.343553] Advanced Linux Sound Architecture Driver Version 1.0.24.</div><div>[    0.347646] Bluetooth: Core ver 2.16</div><div>[    0.348460] NET: Registered protocol family 31</div><div>[    0.348508] Bluetooth: HCI device and connection manager initialized</div>

<div>[    0.348556] Bluetooth: HCI socket layer initialized</div><div>[    0.348590] Bluetooth: L2CAP socket layer initialized</div><div>[    0.348704] Bluetooth: SCO socket layer initialized</div><div>[    0.351609] cfg80211: Calling CRDA to update world regulatory domain</div>

<div>[    0.353985] Switching to clocksource mxc_timer1</div><div>[    0.499000] NET: Registered protocol family 2</div><div>[    0.499750] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)</div><div>[    0.501890] TCP established hash table entries: 2048 (order: 2, 16384 bytes)</div>

<div>[    0.502117] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)</div><div>[    0.502236] TCP: Hash tables configured (established 2048 bind 2048)</div><div>[    0.502269] TCP reno registered</div><div>[    0.502316] UDP hash table entries: 256 (order: 0, 4096 bytes)</div>

<div>[    0.502402] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)</div><div>[    0.503200] NET: Registered protocol family 1</div><div>[    0.504788] RPC: Registered named UNIX socket transport module.</div><div>

[    0.504838] RPC: Registered udp transport module.</div><div>[    0.504867] RPC: Registered tcp transport module.</div><div>[    0.504894] RPC: Registered tcp NFSv4.1 backchannel transport module.</div><div>[    0.507432] FQ mxc_sim driver started: v1.1 (2012/02/21)</div>

<div>[    0.585854] NTFS driver 2.1.30 [Flags: R/W].</div><div>[    0.588284] JFFS2 version 2.2. (NAND) ¬© 2001-2006 Red Hat, Inc.</div><div>[    0.591345] fuse init (API version 7.18)</div><div>[    0.595203] msgmni has been set to 113</div>

<div>[    0.601501] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)</div><div>[    0.601562] io scheduler noop registered</div><div>[    0.601755] io scheduler cfq registered (default)</div><div>[    0.607105] imx-sdma imx35-sdma: loaded firmware 1.0</div>

<div>[    0.635752] imx-sdma imx35-sdma: initialized</div><div>[    0.637804] Serial: IMX driver</div><div>[    0.638199] imx21-uart.0: ttymxc0 at MMIO 0x43f90000 (irq = 45) is a IMX</div><div>[    1.089977] console [ttymxc0] enabled</div>

<div>[    1.118473] loop: module loaded</div><div>[    1.121838] at24 0-0050: 65024 byte 24c16 EEPROM, writable, 128 bytes/write</div><div>[    1.135587] physmap platform flash device: 04000000 at a0000000</div><div>[    1.146468] physmap-flash physmap-flash.0: map_probe failed</div>

<div>[    1.181758] spi_imx_setup: mode 3, 8 bpw, 20000000 hz</div><div>[    1.187997] spi_imx imx35-cspi.2: probed</div><div>[    1.196679] FEC Ethernet Driver</div><div>[    1.207440] fec_enet_mii_bus: probed</div><div>

[    1.216038] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver</div><div>[    1.222774] mxc-ehci mxc-ehci.0: initializing i.MX USB Controller</div><div>[    1.254156] mxc-ehci mxc-ehci.0: Freescale On-Chip EHCI Host Controller</div>

<div>[    1.261079] mxc-ehci mxc-ehci.0: new USB bus registered, assigned bus number 1</div><div>[    1.294278] mxc-ehci mxc-ehci.0: irq 37, io mem 0x53ff4000</div><div>[    1.314205] mxc-ehci mxc-ehci.0: USB 2.0 started, EHCI 1.00</div>

<div>[    1.320074] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002</div><div>[    1.327010] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1</div><div>[    1.334342] usb usb1: Product: Freescale On-Chip EHCI Host Controller</div>

<div>[    1.340823] usb usb1: Manufacturer: Linux 3.3.4-00448-g80850fc-dirty ehci_hcd</div><div>[    1.348051] usb usb1: SerialNumber: mxc-ehci.0</div><div>[    1.355432] hub 1-0:1.0: USB hub found</div><div>[    1.359293] hub 1-0:1.0: 1 port detected</div>

<div>[    1.363954] mxc-ehci mxc-ehci.1: initializing i.MX USB Controller</div><div>[    1.394159] mxc-ehci mxc-ehci.1: Freescale On-Chip EHCI Host Controller</div><div>[    1.400983] mxc-ehci mxc-ehci.1: new USB bus registered, assigned bus number 2</div>

<div>[    1.434279] mxc-ehci mxc-ehci.1: irq 35, io mem 0x53ff4400</div><div>[    1.454377] mxc-ehci mxc-ehci.1: USB 2.0 started, EHCI 1.00</div><div>[    1.460251] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002</div>

<div>[    1.467188] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1</div><div>[    1.474518] usb usb2: Product: Freescale On-Chip EHCI Host Controller</div><div>[    1.480999] usb usb2: Manufacturer: Linux 3.3.4-00448-g80850fc-dirty ehci_hcd</div>

<div>[    1.488224] usb usb2: SerialNumber: mxc-ehci.1</div><div>[    1.495664] hub 2-0:1.0: USB hub found</div><div>[    1.499525] hub 2-0:1.0: 1 port detected</div><div>[    1.506043] usbcore: registered new interface driver uas</div>

<div>[    1.511399] Initializing USB Mass Storage driver...</div><div>[    1.517643] usbcore: registered new interface driver usb-storage</div><div>[    1.523694] USB Mass Storage support registered.</div><div>[    1.529647] usbcore: registered new interface driver libusual</div>

<div>[    1.537456] usbcore: registered new interface driver usbserial</div><div>[    1.544447] USB Serial support registered for generic</div><div>[    1.550387] usbcore: registered new interface driver usbserial_generic</div>

<div>[    1.557266] usbserial: USB Serial Driver core</div><div>[    1.562532] usbcore: registered new interface driver fq_cpr40</div><div>[    1.569460] usbcore: registered new interface driver sisusb</div><div>[    1.579705] imxdi_rtc imxdi_rtc.0: rtc core: registered imxdi_rtc as rtc0</div>

<div>[    1.587516] i2c /dev entries driver</div><div>[    1.592996] Driver for 1-wire Dallas network protocol.</div><div>[    1.603270] imx2-wdt imx2-wdt.0: IMX2+ Watchdog Timer enabled. timeout=60s (nowayout=0)</div><div>

[    1.613364] usbcore: registered new interface driver btusb</div><div>[    1.619238] cpuidle: using governor ladder</div><div>[    1.623379] cpuidle: using governor menu</div><div>[    1.628129] sdhci: Secure Digital Host Controller Interface driver</div>

<div>[    1.634609] sdhci: Copyright(c) Pierre Ossman</div><div>[    1.639176] spi_imx_setup: mode 3, 8 bpw, 20000000 hz</div><div>[    1.644533] mmc_spi spi2.0: ASSUMING 3.2-3.4 V slot power</div><div>[    1.651878] mmc_spi spi2.0: SD/MMC host mmc0, no DMA, no WP, no poweroff</div>

<div>[    1.659804] sdhci-pltfm: SDHCI platform and OF driver helper</div><div>[    1.681925] sdhci_pltfm_init: MMC quirks: 651ec000 (1696514048)</div><div>[    1.814297] usb 2-1: new full-speed USB device number 2 using mxc-ehci</div>

<div>[    1.838533] sdhci [sdhci_add_host()]: mmc1: Auto-CMD23 unavailable</div><div>[    1.985712] usb 2-1: not running at top speed; connect to a high speed hub</div><div>[    2.011883] usb 2-1: New USB device found, idVendor=0424, idProduct=2513</div>

<div>[    2.043754] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0</div><div>[    2.055683] esdhc_set_clock: Current dividers: pre_div=2 div=1</div><div>[    2.077609] mmc1: SDHCI controller on sdhci-esdhc-imx25.0 [sdhci-esdhc-imx25.0] using DMA</div>

<div>[    2.134930] hub 2-1:1.0: USB hub found</div><div>[    2.145712] hub 2-1:1.0: 3 ports detected</div><div>[    2.176905] usbcore: registered new interface driver usbhid</div><div>[    2.182523] usbhid: USB HID core driver</div>

<div>[    4.674272] spi_imx_setup: mode 7, 8 bpw, 20000000 hz</div><div>[    4.681104] spi_imx_setup: mode 3, 8 bpw, 20000000 hz</div><div>[    4.688547] aic3x_i2c_probe: Probing for TLV320AIC3x (selected model=AIC3101)</div>

<div>[    4.696167] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.701859] aic3x_modinit: Success registering the TLV320AIC3x I2C driver</div><div>[    4.713884] aic3x_probe: Probing AIC3x</div><div>[    4.718488] aic3x_init: Setting Default Volume, Routes and Mute</div>

<div>[    4.724688] aic3x_probe: Setting AIC3x snd_controls</div><div>[    4.729819] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.735520] aic3x_probe: Adding AIC3x widgets</div><div>[    4.745137] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div>

<div>[    4.752725] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.759139] asoc: tlv320aic3x-hifi <-> imx-ssi.0 mapping ok</div><div>[    4.766926] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.775269] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div>

<div>[    4.780267] mmc0: host doesn't support card's voltages</div><div>[    4.787462] ASoC: Platform initialized</div><div>[    4.791252] ALSA device list:</div><div>[    4.794576]   #0: noah-audio</div><div>[    4.800269] TCP cubic registered</div>

<div>[    4.803540] NET: Registered protocol family 17</div><div>[    4.808211] mmc0: error -22 whilst initialising SDIO card</div><div>[    4.814457] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.819633] Bluetooth: RFCOMM TTY layer initialized</div>

<div>[    4.824939] Bluetooth: RFCOMM socket layer initialized</div><div>[    4.830245] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.835465] Bluetooth: RFCOMM ver 1.11</div><div>[    4.839258] Bluetooth: BNEP (Ethernet Emulation) ver 1.3</div>

<div>[    4.844912] Bluetooth: BNEP filters: protocol multicast</div><div>[    4.850216] Bluetooth: HIDP (Human Interface Emulation) ver 1.2</div><div>[    4.856400] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.863768] imxdi_rtc imxdi_rtc.0: setting system clock to 1970-01-01 00:00:03 UTC (3)</div>

<div>[    4.872019] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.877172] mmc0: host doesn't support card's voltages</div><div>[    4.882342] mmc0: error -22 whilst initialising SD card</div><div>[    4.889411] eth0: Freescale FEC PHY driver [SMSC LAN8710/LAN8720] (mii_bus:phy_addr=imx25-fec-1:00, irq=-1)</div>

<div>[    4.900151] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.906156] spi_imx_setup: mode 3, 8 bpw, 400000 hz</div><div>[    4.911135] mmc0: host doesn't support card's voltages</div><div>[    4.916461] mmc0: error -22 whilst initialising MMC card</div>

<div>[    4.922858] esdhc_set_clock: Current dividers: pre_div=2 div=1</div><div>[    4.944164] esdhc_set_clock: Current dividers: pre_div=2 div=1</div><div>[    4.950040] esdhc_set_clock: Adjustment 1 dividers: pre_div=16 div=11</div>

<div>[    4.956510] desired SD clock: 400000, actual=377840 (max=66500000)</div><div>[    4.962715] esdhc_set_clock: Adjustment 2 dividers: pre_div=1 div=1</div><div>[    5.010020] mmc1: host does not support reading read-only switch. assuming write-enable.</div>

<div>[    5.019134] esdhc_set_clock: Current dividers: pre_div=2 div=1</div><div>[    5.025008] esdhc_set_clock: Adjustment 1 dividers: pre_div=2 div=1</div><div>[    5.031304] desired SD clock: 50000000, actual=33250000 (max=66500000)</div>

<div>[    5.037857] esdhc_set_clock: Adjustment 2 dividers: pre_div=1 div=1</div><div>[    5.045723] mmc1: new high speed SD card at address 0002</div><div>[    5.052267] blk_limits_max_hw_sectors: set to minimum 8</div>
<div>
[    5.058272] mmcblk0: mmc1:0002 00000 1.86 GiB</div><div>[    5.072167]  mmcblk0: p1 p2 p3</div><div>[    6.884651] PHY: imx25-fec-1:00 - Link is Up - 100/Full</div><div>[    6.924205] Sending DHCP requests ., OK</div>
<div>
[    7.934638] IP-Config: Got DHCP answer from 0.0.0.0, my address is 192.168.1.211</div><div>[    7.942931] IP-Config: Complete:</div><div>[    7.946490]      device=eth0, addr=192.168.1.211, mask=255.255.255.0, gw=192.168.1.1,</div>

<div>[    7.954238]      host=192.168.1.211, domain=<a href="http://domini.int">domini.int</a>, nis-domain=(none),</div><div>[    7.961160]      bootserver=0.0.0.0, rootserver=192.168.1.23, rootpath=</div><div>[  103.029081] VFS: Unable to mount root fs via NFS, trying floppy.</div>

<div>[  103.036763] VFS: Cannot open root device "nfs" or unknown-block(2,0)</div><div>[  103.043157] Please append a correct "root=" boot option; here are the available partitions:</div><div>[  103.052007] b300         1955840 mmcblk0  driver: mmcblk</div>

<div>[  103.057512]   b301            1024 mmcblk0p1 00000000-0000-0000-0000-000000000mmcblk0p1</div><div>[  103.065670]   b302          524288 mmcblk0p2 00000000-0000-0000-0000-000000000mmcblk0p2</div><div>[  103.073744]   b303         1429504 mmcblk0p3 00000000-0000-0000-0000-000000000mmcblk0p3</div>

<div>[  103.081904] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)</div><div>[  103.090367] [<c000fb8c>] (unwind_backtrace+0x0/0x13c) from [<c047e360>] (dump_stack+0x20/0x24)</div>

<div>[  103.099148] [<c047e360>] (dump_stack+0x20/0x24) from [<c047e3f0>] (panic+0x8c/0x1d0)</div><div>[  103.107044] [<c047e3f0>] (panic+0x8c/0x1d0) from [<c062fc38>] (mount_block_root+0x164/0x214)</div>

<div>[  103.115630] [<c062fc38>] (mount_block_root+0x164/0x214) from [<c062fdc4>] (mount_root+0xdc/0x100)</div><div>[  103.124644] [<c062fdc4>] (mount_root+0xdc/0x100) from [<c062ff0c>] (prepare_namespace+0x124/0x188)</div>

<div>[  103.133674] [<c062ff0c>] (prepare_namespace+0x124/0x188) from [<c062f890>] (kernel_init+0xf4/0x128)</div><div>[  103.142860] [<c062f890>] (kernel_init+0xf4/0x128) from [<c000a5c8>] (kernel_thread_exit+0x0/0x8)</div>

</div><div><br></div><div>Thank you very much for your pointers.</div><div><br></div><div>Best regards</div><div>Roberto</div><div><br></div></div></div>