Secure Digital card

From OLPC
Revision as of 20:02, 11 March 2009 by Skierpage (talk | contribs) (Quick Start: link Terminal activity, wiki formatting, you must choose unmount)
Jump to: navigation, search

The XO laptop has one slot for a MMC (MultiMediaCard), SD (SecureDigital) or SDHC (SecureDigital High Capacity) card. These cards, like USB flash drives, are automatically mounted and are accessed through the Journal Activity. The Journal entry shows you how to access the add-on memory devices. You can move files to and from the storage media by dragging and dropping the file in the Journal view to the USB stick icon at the bottom of the screen or by command line in the Terminal Activity.

See discussion Talk:Secure_Digital_card to talk about specific situations.

About the Cards

See Wikipedia for a good overview of SD and SDHC cards. There are various incompatibilities between cards from different manufacturers. In general, both SD and SDHC cards work.

Quick Start

  1. Insert card into the slot at the bottom of the screen. See below for more detailed instructions.
  2. The card will show up at the lower left of the Journal if correctly mounted.
  3. In the Terminal activity or console, the files on the card will be available in a subdirectory of /media based on the card's disk label, for example /media/KINGSTON/. If the card is not correctly mounted when booting the XO, an error message may briefly flash. The Linux commands df, cat /etc/mtab, cat /etc/fstab, ls /media, and dmesg | grep mmc can help figure out the status.
  4. To safely remove the card, you must click on it in the Journal and choose unmount. If you remove the card without this step, pending changes to the card may not be written and some files may be left in a corrupted state. Also, remounting the card before rebooting may be difficult.
  5. Physically removing the card requires pushing it in slightly and releasing it ("click-in to load, click-in to eject"). The card should then protrude far enough to grab with fingernails. A non-standard card with excessive width may require tweezers.

Supported cards

  • File systems FAT16 (usually on SD cards) and FAT32 (usually on SDHC cards) are supported.
  • Cards of various sizes work. 8-gigabyte SD memory cards work. 16GB cards have been reported to work. While SD & SDHC cards up to 256 GB should be supported, larger cards can only be verified as they become available.
  • Reduced Size MMC cards, like the ones Nokia uses in Nokia 770 work well. PQI 8 GB cards do not appear to work.
  • Straight old MMC cards have not been tested. They should work, but some other hardware platforms do not support MMC cards.

Implementation

XO uses a custom microchip for SD card access: the Camera and Flash Enabler (CaFE). CaFE includes SDHC support, which is hardware level compatible with SD. Pierre Ossman wrote the Linux driver support for SDHC and CaFE is driven by the sdhci driver. SD cards up to about 256 GB should be supported. CaFE follows the standard host controller interface for SD controllers.

SD standard

Again, see Wikipedia for a basic overview. SD block addressing works with a 32 bit address. In the CaFe chip, which is compatible with the standard "SDHCI" spec, the address goes in the 32-bit chip register at offset 8. For old SD cards (not the new SDHC cards), the address is a byte address, so the maximum size is 4 Gbytes. For the newer SDHC cards, the address is a block number, assuming 512 byte blocks, so the maximum size is 2 TBytes. In other words, SDHC just shifts the addresses by nine bits, allowing an effective 40 bit address. The 32 GB limit that's often written about is an artificial limit in Window's FAT formatter; Windows will use the generally incompatible NTFS file system instead. Linux can format FAT up to the ~300GB real limit just fine, after that the card will need to use a linux specific filesystem. None of this is CaFe-specific.

Insertion

To properly insert the SD/MMC/SDHC card the brass fingers on the card should be facing up and towards the front of the LCD screen. Insert the card until it is flush with the bottom of the screen, you will hear a click when the card is fully seated. It is a "Push to Click in and Push to Click out (Eject)" mechanism. When ejecting, push the card in again and release. It should come out far enough to grab with fingers, Try small tweezers if you have a hard time getting the card come out again. While not required, you can also attach a little piece of scotch tape to the SD card to give an easy handle to pull on the card when it sticks.

The picture below shows the proper way to insert the SD/MMC/SDHC card:


Proper SD Card Insertion.jpg

--KenXo 11:28, 24 December 2007 (EST)

Troubleshooting

  • There is a hidden folder the OLPC puts onto all mounted media, ".olpc.store/". A broken database there may keep the journal from working properly. Try removing the folder. You should always be able to see the device mounted using "df" in Terminal.
  • Cards and USB sticks may need to be writable for Sugar to index them correctly. Make sure any read-only switch is in the read/write position and not the read-only position.
  • Be sure the cards are formatted as a FAT-16 or FAT-32 file system. Most new USB sticks and cards come FAT-formatted.
  • If regular, brand-new cards and USB sticks are not working, it is possible there is something wrong with the hardware of your machine. You may want to contact the support line to see if it needs to be replaced (within the 30 day warranty period, if possible).
  • Another thing to try is a quick reboot of the OLPC. Hot-swapping cards can sometimes cause difficulty when booting with them already attached seems to work.
  • The SD/MMC/SDHC memory card will only mount when inserted properly into the XO laptop. Some (older?) slots may allow you to insert the card in either direction.
  • Many error messages can be found running "dmesg | grep mmc" from the terminal shell.

Formatting (FAT 16 or 32)

(Adapted from support help answers)

SD cards are pre-formatted by their manufacturers to work best for the device. It is not recommended that you reformat unless it really stops working; for example, if a freshly booted Linux refuses to mount it.

Instructions for the command line in Terminal.

The laptop doesn't come with the tools to format the SD card, so you will need to install them. With access to the Internet, you can install them as root by typing:

$ yum install dosfstools

This may take 5 to 10 minutes, then ask you if it's OK to download 71k of stuff, type "y" to download and install the "mkdosfs" command.

Insert your SD disk, check for current mount point, look for devices mounted in /media or /dev

$ df

or

$ mount

Look for similar devices as "/dev/mmcblk0p1" (meaning the first ("zeroth") MMC/SD card, and the first partition of that card. )

Then unmount any file system from the card, so that "df" doesn't show the card any more.

$ umount /dev/mmcblk0p1

Then "mkdosfs -F 32 /dev/mmcblk0p1" should reformat it as a FAT32 file system. (Use -F for FAT16/FAT file system, however 2 GB size limit)

Formatting and using with ext2

See the talk page.

Wikipedia