<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de-AT">
	<id>https://becomwiki.live.md-websolutions.com/index.php?action=history&amp;feed=atom&amp;title=SDHC_controller_%28SBC-i.MX51%29</id>
	<title>SDHC controller (SBC-i.MX51) - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://becomwiki.live.md-websolutions.com/index.php?action=history&amp;feed=atom&amp;title=SDHC_controller_%28SBC-i.MX51%29"/>
	<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=SDHC_controller_(SBC-i.MX51)&amp;action=history"/>
	<updated>2026-05-13T13:30:23Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in BECOM Systems Support</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://becomwiki.live.md-websolutions.com/index.php?title=SDHC_controller_(SBC-i.MX51)&amp;diff=156&amp;oldid=prev</id>
		<title>Peter: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=SDHC_controller_(SBC-i.MX51)&amp;diff=156&amp;oldid=prev"/>
		<updated>2023-10-31T08:03:07Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de-AT&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 31. Oktober 2023, 10:03 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;de-AT&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Peter</name></author>
	</entry>
	<entry>
		<id>https://becomwiki.live.md-websolutions.com/index.php?title=SDHC_controller_(SBC-i.MX51)&amp;diff=155&amp;oldid=prev</id>
		<title>en&gt;Peter: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=SDHC_controller_(SBC-i.MX51)&amp;diff=155&amp;oldid=prev"/>
		<updated>2023-08-22T19:35:49Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The SD card slot on the SBC-i.MX51 is connected to the eSDHC controller #1 of the i.MX51 processor.&lt;br /&gt;
See chapter 31 of the i.MX51 Reference Manual for detailed information.&lt;br /&gt;
&lt;br /&gt;
SDHC cards [https://en.wikipedia.org/wiki/Secure_Digital#SDHC] are supported.&lt;br /&gt;
&lt;br /&gt;
== Kernel configuration ==&lt;br /&gt;
&lt;br /&gt;
 Device Drivers  ---&amp;gt;&lt;br /&gt;
   &amp;lt;*&amp;gt; MMC/SD/SDIO card support  ---&amp;gt;&lt;br /&gt;
     &amp;lt;*&amp;gt;   MMC block device driver&lt;br /&gt;
     [*]     Use bounce buffer for simple hosts&lt;br /&gt;
     &amp;lt;*&amp;gt;   Freescale i.MX Secure Digital Host Controller Interface support&lt;br /&gt;
&lt;br /&gt;
 File systems  ---&amp;gt;&lt;br /&gt;
   &amp;lt;*&amp;gt; Ext3 journalling file system support&lt;br /&gt;
   [*]   Ext3 extended attributes&lt;br /&gt;
(choose file systems that you want to use)&lt;br /&gt;
&lt;br /&gt;
== Test in Linux ==&lt;br /&gt;
&lt;br /&gt;
Insert a card into the SD slot. Linux will automatically detect the card and create the device files&lt;br /&gt;
 /dev/mmcblk0&lt;br /&gt;
 /dev/mmcblk0p1&lt;br /&gt;
 /dev/mmcblk0p2&lt;br /&gt;
 ...&lt;br /&gt;
for the card itself and its partitions.&lt;br /&gt;
&lt;br /&gt;
We will now create a single partition on the SD card, format it with the EXT3 file system, write a random file to it, and read it back:&lt;br /&gt;
&lt;br /&gt;
* Create single partition:&lt;br /&gt;
 fdisk /dev/mmcblk0&lt;br /&gt;
 p (prints partition table)&lt;br /&gt;
 d (deletes existing partitions) ...repeat until no partitions exist&lt;br /&gt;
 n (adds a new parition) ...maximum size&lt;br /&gt;
 w (writes partition table and exits)&lt;br /&gt;
&lt;br /&gt;
* Make ext3 file system and mount it:&lt;br /&gt;
 mkfs.ext3 /dev/mmcblk0p1&lt;br /&gt;
 mkdir /mnt/sdcard&lt;br /&gt;
 mount /dev/mmcblk0p1 /mnt/sdcard&lt;br /&gt;
&lt;br /&gt;
* Create random file:&lt;br /&gt;
 dd if=/dev/urandom of=/randomfile bs=1M count=1&lt;br /&gt;
&lt;br /&gt;
* Copy random file to SD card and unmount card:&lt;br /&gt;
 cp /randomfile /mnt/sdcard&lt;br /&gt;
 umount /mnt/sdcard&lt;br /&gt;
&lt;br /&gt;
* Mount SD card again and check randomfile:&lt;br /&gt;
 mount /dev/mmcblk0p1 /mnt/sdcard&lt;br /&gt;
 diff /mnt/sdcard/randomfile /randomfile&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;diff&amp;#039;&amp;#039; must not output anything, which means the files are 100% identical.&lt;br /&gt;
&lt;br /&gt;
== Booting from SD card ==&lt;br /&gt;
See page [[Boot media (SBC-i.MX51)|Boot media]].&lt;br /&gt;
&lt;br /&gt;
== Performance ==&lt;br /&gt;
We have measured the following speeds with a SanDisk SDHC 4GB card:&lt;br /&gt;
*Read: 13.0 MiB/s&lt;br /&gt;
*Write: 6.3 MiB/s&lt;br /&gt;
&lt;br /&gt;
[[Category:SBC-i.MX51]]&lt;br /&gt;
[[Category:i.MX]]&lt;/div&gt;</summary>
		<author><name>en&gt;Peter</name></author>
	</entry>
</feed>