Embedded Systems Design Guide For Removable USB Flash Drives
Embedded Systems Design Guide For Removable USB Flash Drives
Table of Contents
Introduction................................................................................................ 2
An Overview of the Universal Serial Bus (USB) ......................... 2
Designing the System............................................................................ 3
Make/Buy .................................................................................................... 3
Compliance Testing................................................................................... 3
Implementation Overview ...................................................................... 4
USB Host Controller Choices ................................................................. 4
USB So"ware Support ............................................................................. 6
Designing Custom USB Hardware.................................................... 8
USB Connectors ......................................................................................... 8
Power Supplies .......................................................................................... 8
Resets & Brownout .................................................................................10
Electromagnetic Interference (EMI) ...................................................10
Controlled Impedance ............................................................................11
Example Host Controller Solutions ...............................................12
Example Bolt-On Host Controller .......................................................12
Example Built-In Host Controller .......................................................14
Implementing the Embedded Firmware ......................................15
The USB Flash Drive File System .......................................................15
Handling Surprise Removal and Power Loss.................................15
File System Licensing ............................................................................15
About Datakey ........................................................................................16
Conclusion ................................................................................................16
Glossary.....................................................................................................16
References ...............................................................................................17
www.datakey.com
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
INTRODUCTION
The removable USB flash drive is a key technology in our embedded computing world. Among other things, it can be
used to store collected data, perform secure authenticated access and automatically update firmware. A removable USB
flash drive simply takes embedded computing to the next level.
Although a removable USB flash drive is easy to use, implementing a USB flash drive can be difficult. There are
many issues that an embedded designer may encounter for the first time when implementing a USB flash drive.
Unfortunately, when you don’t know what you don’t know, your project can get in trouble very quickly.
Designers need to understand the challenges of implementing a removable USB flash drive in an embedded system
before they begin development. First, let’s do a quick review of USB, then walk through the development process step by
step and explore some of the considerations that make this task different from many others.
pÙ )NÙORDERÙTOÙUSEÙTHEÙ53"ÙLOGOÙAÙCOMPANYÙMUSTÙBECOMEÙAÙSIGNATORYÙTOÙTHEÙ53"Ù!DOPTERmSÙ!GREEMENTÙANDÙITSÙDEVICESÙÙ
must pass compliance testing.
pÙ 53"ÙDEVICESÙCONTAINÙSTRINGSÙTHATÙCANÙBEÙACCESSEDÙBYÙAÙHOSTÙ3TRINGSÙAREÙSTOREDÙASÙ5NICODEÙTOÙSUPPORTÙÙ Ù Ù
internationalization and US English is the default language. Devices are required to implement a manufacturer
string that contains the name of the device manufacturer. Other optional strings include a product name string and
a serial number string. Devices may also implement private strings.
pÙ 4HEREÙAREÙTHREEÙTYPESÙOFÙNODESÙALLOWEDÙONÙTHEÙBUSÙAÙHOSTÙAÙDEVICEÙANDÙAÙHUBÙ!ÙHOSTÙHASÙRECEPTACLESÙFORÙHUBSÙANDÙÙ Ù
devices and initiates all USB traffic. A device plugs into hubs and hosts to receive USB traffic and respond. A hub is a
special type of device that connects one upstream port to one or more downstream ports by repeating the traffic on
all the ports and returning responses.
www.datakey.com
2
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
pÙ 53"ÙSUPPORTSÙEXACTLYÙONEÙHOSTÙPERÙBUSÙANDÙUPÙTOÙÙDEVICESÙINCLUDINGÙHUBS Ù(UBSÙMAYÙBEÙNESTEDÙUPÙTOÙAÙÙ Ù
Ù MAXIMUMÙOFÙSEVENÙLAYERSÙINCLUDINGÙTHEÙROOTÙHUB
pÙ 53"ÙDEVICESÙMAYÙIMPLEMENTÙAÙ53"ÙCLASSÙ!Ù53"ÙCLASSÙISÙAÙSTANDARDIZEDÙGENERICÙDEVICEÙFUNCTIONÙTHATÙALLOWSÙÙ Ù
devices to operate identically on multiple operating systems without the need for a user-installed driver. OS vendors
must implement a class driver for each class they support.
pÙ 4HEÙ-ASSÙ3TORAGEÙ#LASSÙ-3# ÙISÙAÙ53"ÙCLASSÙTHATÙIMPLEMENTSÙAÙREMOVABLEÙSTORAGEÙDEVICEÙ-3#ÙMAKESÙ53"ÙֶASHÙÙÙ
drives possible.
MAKE/BUY
One of the first things that you need to think about is the decision to make or buy your system. The more likely it is that
someone else might want to do what you need to do, the more likely it is that you can buy something to do it. It’s a sad
day for the designer who built custom hardware to learn a#er the project is complete that what he built could have been
purchased. So take some time to research single-board computers and system-on-module solutions and compare
their costs to that of custom hardware at your expected production quantities. Be sure to account for your development
costs and consider risk, time-to-market and opportunity costs.
COMPLIANCE TESTING
USB compliance testing is a series of tests established by the USB-IF to determine whether a USB product meets the
USB specification requirements. Although USB compliance testing is not mandatory, it is likely in your customers’
BESTÙINTERESTÙ0RODUCTSÙTHATÙPASSÙCOMPLIANCEÙTESTINGÙAREÙNOTÙONLYÙASSUREDÙTOÙWORKÙWITHÙOTHERÙ53"ÙPRODUCTSÙTHEYÙAREÙ
COMPLIANCEÙLISTEDÙBYÙTHEÙ53"
)&ÙANDÙAREÙELIGIBLEÙTOÙLICENSEÙTHEÙ53"Ù,OGOÙFORÙUSEÙONÙTHEÙPRODUCTÙPACKAGING
For more information about USB compliance testing, visit the USB website here .
www.datakey.com
3
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
IMPLEMENTATION OVERVIEW
The USB specification dictates that the only way to read from or write to a USB flash drive is through a USB host. A USB
host is specifically designed for other USB devices to be plugged into it and typically has one or more type A receptacle
connectors for that purpose. If you need to implement a removable USB flash drive in an embedded system, you must
implement a USB host.
Not all embedded USB hosts are created equally. In order for a USB host to be able to communicate with a class of
devices, the designer must select the device drivers, class drivers and protocol stacks for the devices and services that
the host will support. For instance, to support a USB flash drive, a USB host should include the components shown in
Figure 1.
Application
Hardware Middleware System So!ware So!ware
USB Host/ Host Controller USB Stack Mass Storage File System OS/RTOS Your App
OTG Controller Driver Class (optional) (optional)
As you can see in the preceding figure, an embedded host for a USB flash drive is a complex combination of hardware
and so#ware that works together as a system.
!ÙKEYÙCOMPONENTÙOFÙTHISÙSYSTEMÙISÙSOֹWAREÙTHATÙWEÙCALLÙlMIDDLEWAREmÙ-IDDLEWAREÙISÙAÙCOLLECTIONÙOFÙSOֹWAREÙCONSISTINGÙ
of drivers, protocol stacks and class drivers that make it possible to communicate with the USB flash drive via the
USB host controller. For embedded systems with no operating system, it may also include a file system to properly
format the data written to the USB flash drive so that other computers can read it as if it were a disk drive. We’ll talk
more about middleware later, but we mention it now because for our system-level discussion it’s important to know
that middleware is a required part of our system. It is also important to realize that middleware imposes additional
requirements on the system above and beyond the USB host controller hardware.
Now with the basic requirements understood, let’s take a look at the hardware and so#ware options available
to do the job.
www.datakey.com
4
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
USB host controllers can be divided into three types as shown in Table 1ÙANDÙDESCRIBEDÙBELOWÙ
1. ‘Standardized’ USB Host Controllers: These host controllers implement a standard so#ware interface and
Ù TYPICALLYÙREQUIREÙANÙ/3ÙORÙANÙ24/3ÙANDÙMIDDLEWAREÙWHICHÙWILLÙREQUIREÙEXTRAÙ2!-ÙANDÙֶASHÙSTORAGEÙ
2. Proprietary USB Host Controllers: These host controllers implement a vendor-specific so#ware interface and
require the use of vendor-supplied or user-written libraries. These also may require middleware, but the
middleware must include support for the required chip because the interface is proprietary.
3. USB Host Peripherals: These chips are actually self-contained embedded systems that contain a USB host
controller and contain firmware that includes middleware, mass storage class and file system in a single chip. They
are easy to use, and in keeping with their minimalistic system footprint, their feature set and performance are
limited but quite capable for a wide variety of applications.
A deciding factor between these types of chips is whether or not your system has sufficient resources available to
support an OS or RTOS and middleware. If your system requires high-performance such as Hi-Speed or SuperSpeed
and can afford the cost of middleware and an OS or RTOS, perhaps a standardized host controller is a good choice. For a
system that needs higher performance and can support middleware but not an OS or RTOS, a proprietary host controller
may be a better fit. If your system is resource constrained and moderate performance is acceptable, a USB host
peripheral may be the better choice since it is ready-made and puts a lighter load on the existing embedded system.
www.datakey.com
5
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
www.datakey.com
6
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
BARE METAL
If you use a USB host peripheral for your host controller solution, you have the option of implementing what’s known
ASÙAÙlBAREÙMETALmÙEMBEDDEDÙSYSTEMÙ!ÙBAREÙMETALÙEMBEDDEDÙSYSTEMÙHASÙNEITHERÙANÙ/3ÙNORÙANÙ24/3ÙITmSÙJUSTÙAÙPROGRAMÙ
RUNNINGÙONÙAÙMICROCONTROLLERÙ-ODERNÙBAREÙMETALÙEMBEDDEDÙSYSTEMSÙAREÙUSUALLYÙWRITTENÙINÙ#ÙANDÙSENDÙCOMMANDSÙTOÙ
the USB host peripheral directly over standard peripheral interfaces. Bare metal systems tend to support just the bare
essentials due to their minimalistic implementation, but the functions they implement tend to be extremely efficient
BECAUSEÙTHEYÙPAYÙNOÙ/3ÙORÙ24/3ÙOVERHEADÙPENALTYÙINÙCODEÙSPACEÙ2!-ÙORÙCOMPUTATIONALÙRESOURCES
www.datakey.com
7
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
USB CONNECTORS
#ONSUMER
GRADEÙ53"ÙֶASHÙDRIVESÙUSEÙTHEÙ53"ÙTYPEÙ!ÙPLUGÙANDÙPLUGÙINTOÙAÙTYPEÙ!ÙRECEPTACLEÙ4HEÙSIGNALÙNAMESÙFORÙAÙ
type A receptacle are shown in Figure 2. The type A USB receptacle is a low-cost, consumer-grade connector rated to
LASTÙAÙMINIMUMÙOFÙÙPLUG
UNPLUGÙCYCLESÙ!LTHOUGHÙTHEÙ53"ÙSPECIֵCATIONÙINCLUDESÙSPECSÙFORÙCONNECTORSÙTHEIRÙUSEÙ
is not mandated. Special needs, such as high-reliability applications, may require different connectors to meet their
requirements. For instance, type A USB connectors are not waterproof, so third parties have developed variants of
standard USB connectors to meet the needs of their customers. Figure 3 below shows a panel-mount receptacle that
ISÙCAPABLEÙOFÙPLUGGINGÙINTOÙAÙSTANDARDÙ53"ÙTYPEÙ!ÙRECEPTACLEÙBUTÙITÙOִERSÙEXTREMELYÙHIGHÙCYCLEÙLIFEÙANDÙISÙAVAILABLEÙINÙ)0Ù
ANDÙ)0ÙRATEDÙVERSIONSÙ7HENÙYOUÙEVALUATEÙYOURÙEMBEDDEDÙSYSTEMÙREQUIREMENTSÙMAKEÙSUREÙTHATÙYOUÙSPECIFYÙTHEÙRIGHTÙ
connector to meet your needs.
POWER SUPPLIES
The most important circuit of any electronic product is the power supply. Just as we need clean water to live, electronic
devices need clean power to operate. A properly functioning power supply is an unsung hero, but even the best system
will fail if its power supply goes bad. For embedded USB hosts, the power supply is doubly important because it not only
powers the host, it also powers all the devices connected to it.
POWER REQUESTS
7HENÙAÙ53"ÙDEVICEÙISÙֵRSTÙPLUGGEDÙINTOÙAÙSYSTEMÙITÙSHOULDÙCONSUMEÙAÙMAXIMUMÙOFÙONEÙUNITÙLOADÙM! Ù4HEÙHOSTÙ
queries the device to find out how much power it needs to operate. Then, the device indicates the amount of current that
www.datakey.com
8
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
it intends to consume. If the amount of current that your host can provide is limited, it may deny a request for current by
failing to send a configuration message to the device. If the device does not receive a configuration message, it simply
will not connect. A user who observes this will not necessarily be able to tell that the connection failed. Therefore, it is
recommended that a USB host notify the user when a power request is denied so the user will know what happened
and potentially take corrective action.
4HEÙSTANDARDÙPRACTICEÙFORÙEXTERNALLYÙPOWEREDÙEMBEDDEDÙ53"ÙHOSTSÙISÙTOÙCONNECTÙ6"53ÙTOÙTHEÙ6ÙRAILÙTHROUGHÙANÙ
overcurrent protection device and acknowledge all requests for power. If your system is battery-powered or has
stringent power consumption requirements, your system design should probably take a more rigorous approach to
POWERÙMANAGEMENTÙ&ORÙCOMPREHENSIVEÙINFORMATIONÙABOUTÙ53"Ù0OWERÙ-ANAGEMENTÙCONSULTÙSECTIONSÙÙANDÙÙOFÙ
THEÙ53"ÙÙSPECIֵCATIONÙANDÙSECTIONÙÙOFÙTHEÙ53"ÙÙ/N
4HE
'OÙANDÙ%MBEDDEDÙ(OSTÙ3UPPLEMENTÙ
OVERCURRENT PROTECTION
The USB specification requires overcurrent protection for all USB hosts, embedded or otherwise. This requirement is
imposed for safety reasons to handle the case where a device or a cable is plugged into the host that shorts the power
LEADÙ6"53 ÙTOÙGROUNDÙ7ITHOUTÙCURRENTÙLIMITINGÙTHISÙSITUATIONÙCOULDÙLEADÙTOÙAÙֵREÙIFÙTHEÙPOWERÙSUPPLYÙISÙPOWERFULÙENOUGH
The requirement states that overcurrent limiting must be resettable without user mechanical intervention, which rules
OUTÙAÙFUSEÙ0#ÙHOSTSÙUSUALLYÙINCORPORATEÙAÙROOTÙHUBÙCHIPÙWITHÙCURRENTÙSENSINGÙCAPABILITYÙANDÙEXTERNALÙ6"53ÙSWITCHESÙ
that turn the power off to devices that draw too much current. Embedded systems can do this too, but to keep costs low
MOSTÙEMBEDDEDÙHOSTSÙINCORPORATEÙAÙ04#ÙRESETTABLEÙFUSEÙLIKEÙTHOSEÙSHOWNÙINÙFigure 4, between the power source and
THEÙ6"53ÙLINEÙ!Ù04#ÙFUSEÙAKAÙPOLYFUSEÙORÙPOLYSWITCH ÙISÙAÙSOLID
STATEÙSELF
RESETTINGÙCIRCUITÙBREAKERÙDEVICEÙTHATÙGOESÙTOÙAÙ
high resistance state when the current through it exceeds a certain amount then returns to a low resistance state when
the current is removed.
/NEÙWAYÙFORÙ53"ÙHOSTSÙTOÙHANDLEÙHIGHÙDEVICEÙINRUSHÙCURRENTSÙISÙTOÙHAVEÙABOUTÙU&ÙOFÙCAPACITANCEÙONÙTHEÙHOSTÙSIDEÙOFÙ
6"53Ù,ARGEÙBULKÙCAPACITANCEÙSERVESÙASÙAÙCHARGEÙRESERVOIRÙTOÙSUPPLYÙCURRENTÙDURINGÙDEVICEÙPLUG
INÙTHATÙMAYÙNORMALLYÙ
swamp the host power supplies. Another mitigation to be used in combination with a large bulk capacitance is to
PROVIDEÙAÙLOWÙVALUEÙSERIESÙRESISTORÙBETWEENÙTHEÙHOSTÙBULKÙCAPACITANCEÙANDÙTHEÙDEVICEÙ6"53Ù4HISÙTECHNIQUEÙLIMITSÙTHEÙ
maximum amount of inrush current that a device can be supplied. It will also introduce a constant voltage drop across
the series resistor during normal operation. The voltage drop can be ignored as long as the output voltage of the host
PORTÙISÙBETWEENÙÙTOÙ6
www.datakey.com
9
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
Did you know that without a reset controller, your microcontroller keeps right on running even a#er the power has
been turned off? That’s right. A#er the power supply has been turned off and while the supply voltage is bleeding down
from its nominal voltage toward ground, your microcontroller still has enough voltage at its power supply pins to
keep running. Some parts of the microcontroller don’t use much power and they keep working for a long time while
other more power-hungry parts of the microcontroller stop working relatively quickly. This phenomenon is known
as brownout. Brownout is the condition where parts of the system work and other parts shut down as the power
supply ramps up or down. This can be a big problem for flash-based microcontrollers because during brownout the
microcontroller can execute random code that is capable of corrupting flash memory. Figure 5 illustrates how a
supervisor protects your microcontroller by resetting it when the input voltage is too low.
VDD
reset reset
/RESET delay delay
/NEÙSOLUTIONÙFORÙBROWNOUTÙISÙAÙSUPERVISORÙORÙRESETÙCONTROLLERÙ!ÙRESETÙCONTROLLERÙISÙAÙSIMPLEÙ)#ÙTHATÙCONTROLSÙRESETÙBASEDÙ
on the power supply voltage rather than time. A number of companies provide reset controllers that put an end to
brownout. The diagram above in Figure 5 SHOWSÙHOWÙ4EXASÙ)NSTRUMENTSmÙ3UPERVISORÙANDÙ2ESETÙ)#SÙOPERATEÙ"EÙSUREÙ
that you design one into your system.
www.datakey.com
10
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
2. Use grounded polygon pours on the top and bottom layers to provide a return path for unbalanced return currents.
Ù 0ROPERLYÙBYPASSÙALLÙ)#SÙWITHÙLOWÙ%32ÙCERAMICÙCAPACITORS
Ù 5SEÙFERRITEÙBEADSÙONÙYOURÙ6"53ÙANDÙ'.$ÙLINESÙTOÙֵLTERÙNOISEÙGENERATEDÙBYÙYOURÙSYSTEMÙFROMÙGETTINGÙINTOÙTHEÙÙ Ù
power leads of the USB cable.
Ù $OÙNOTÙCONNECTÙTHEÙ53"ÙSHIELDÙDIRECTLYÙTOÙGROUNDÙ4IEÙITÙTOÙGROUNDÙTHROUGHÙAÙÙ-ƆÙRESISTORÙINÙPARALLELÙWITHÙAÙ
Ù ÙP&ÙCERAMICÙCAPACITORÙ4HISÙSHOULDÙPROVIDEÙSUַCIENTÙֵLTERINGÙTOÙAVOIDÙRADIATINGÙNOISEÙTHROUGHÙTHEÙSHIELD
Ù 5SEÙAÙMETALÙORÙMETALLIZEDÙPLASTICÙENCLOSUREÙTOÙACTÙASÙAÙl&ARADAYÙCAGEmÙTOÙENCLOSEÙ%-)ÙRADIATEDÙBYÙYOURÙELECTRONICS
CONTROLLED IMPEDANCE
53"ÙSIGNALSÙAREÙDIִERENTIALÙANDÙMUSTÙBEÙROUTEDÙUSINGÙAÙÙƆÙ
ÙÙDIִERENTIALÙIMPEDANCEÙDESIGNÙ4HEÙSIGNALSÙ
THATÙMUSTÙBEÙCONTROLLEDÙAREÙTHEÙ$ÙANDÙ$
ÙLINESÙBETWEENÙTHEÙCONNECTORÙANDÙYOURÙHOSTÙCONTROLLERÙ0ROPERLYÙCONTROLLEDÙ
impedance design is a good idea for low and full-speed designs, but it’s absolutely required for Hi-Speed and
SuperSpeed designs. Without it, the circuits simply won’t work. If your design will be compliance tested, it will undergo
4$2Ù4IME
$OMAINÙ2EֶECTOMETER ÙIMPEDANCEÙMEASUREMENTÙTOÙASSUREÙTHATÙYOURÙDESIGNÙHASÙTHEÙCORRECTÙIMPEDANCE
Microstrip Stripline
www.datakey.com
11
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
!NOTHERÙTECHNIQUEÙTOÙGETÙYOURÙ0#"ÙBUILTÙWITHÙTHEÙPROPERÙCONTROLLEDÙIMPEDANCEÙ53"Ù$$
ÙTRACESÙISÙTOÙSPECIFYÙ
THEÙCONTROLLEDÙIMPEDANCEÙSIGNALSÙTOÙYOURÙ0#"ÙMANUFACTURERÙASÙPARTÙOFÙYOURÙFABRICATIONÙINSTRUCTIONSÙ-OSTÙ0#"Ù
manufacturers have the so#ware necessary to calculate impedance precisely and they can test the impedance of your
0#"ÙTRACESÙUSINGÙAÙ4$2Ù4HISÙISÙAÙRELATIVELYÙCOMMONÙPRACTICEÙANDÙISÙNOTÙAÙBIGÙCOSTÙADDERÙSOÙITÙISÙAÙGREATÙWAYÙTOÙGETÙ
CONTROLLEDÙIMPEDANCEÙ0#"SÙWITHÙVERYÙLOWÙRISKÙ$ESIGNÙTHEÙDIִERENTIALÙTRACESÙUSINGÙTHEÙAPPLICATIONÙNOTEÙANDÙTHEÙRESULTSÙOFÙ
THEÙIMPEDANCEÙCALCULATORÙ.EXTÙADDÙFABRICATIONÙINSTRUCTIONSÙTOÙYOURÙ0#"ÙDRAWINGÙINSTRUCTINGÙTHEÙMANUFACTURERÙTOÙBUILDÙ
FORÙÙOHMSÙDIִERENTIALÙIMPEDANCEÙFORÙ53"ÙTRACESÙ9OUÙSHOULDÙCLEARLYÙMARKÙTHEÙAִECTEDÙTRACESÙINÙYOURÙDRAWINGSÙSOÙTHEÙ
manufacturer will tune the correct lines.
)NÙSUMMARYÙYOUÙCANÙGREATLYÙSIMPLIFYÙTHEÙTASKÙOFÙACHIEVINGÙTHEÙCORRECTÙCONTROLLEDÙIMPEDANCEÙONÙYOURÙ0#"ÙBYÙUSINGÙANÙ
IMPEDANCEÙCALCULATORÙANDORÙENLISTINGÙTHEÙHELPÙOFÙYOURÙ0#"ÙSUPPLIER
From the hardware perspective, you may design the module or the chip into your circuit. Either way, you need to provide
POWERÙANDÙWIREÙTHEÙ5!24ÙPARALLELÙ&)&/ÙORÙ30)ÙINTERFACEÙTOÙYOURÙMICROPROCESSORÙ%VENÙTHOUGHÙTHEREÙISÙONLYÙONEÙ53"ÙHOSTÙ
connector, the module actually supports two USB host ports. All you need to do is wire up the second port if you need it.
4HEÙSCHEMATICÙFORÙTHEÙ6$)0ÙISÙFOUNDÙINÙFigure 8.
www.datakey.com
12
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
53"ÙHOSTÙCONTROLLERÙFUNCTIONSÙAREÙEXECUTEDÙWHENÙYOURÙMICROCONTROLLERÙSENDSÙHIGH
LEVELÙCOMMANDSÙTOÙTHEÙ6INCULUMÙ
))ÙOVERÙTHEÙMICROCONTROLLERÙINTERFACEÙ&ORÙEXAMPLEÙINÙORDERÙTOÙREADÙTHEÙDIRECTORYÙOFÙAÙ53"ÙֶASHÙDRIVEÙYOUÙSENDÙTHEÙl$)2mÙ
command over the microcontroller interface and the module sends a list of filenames in response. The command
PROTOCOLÙSUPPORTSÙEITHERÙ!3#))ÙORÙBINARYÙCOMMANDS
All in all, a USB host peripheral is a clever solution for applications where resources are limited and the required data
rates are relatively low.
www.datakey.com
13
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
4HEÙMINI
53"ÙPORTÙONÙTHEÙMODULEÙISÙAÙDEVICEÙPORTÙTHATÙCONNECTSÙTOÙAÙ0#ÙFORÙSOֹWAREÙDOWNLOADSÙANDÙDEBUGGERÙFUNCTIONSÙ
To use this board as a USB host controller, you need to wire up the USB host connector to the ports indicated in the
mbed HDK as shown in Figure 10.
The so#ware development tools for mbed are free and online, so developing code is as easy as creating a web account.
The IDE, compilers, version control system and libraries are all online. The system is designed to make it easy to import
source code from other developers who share their work. For instance, one developer has designed and shared a
PROJECTÙNAMEDÙ-3#5SB(OSTÙfound here. The program uses the included libraries, middleware and FAT file system to
read the directory of a USB flash drive, write a test file and read back the contents of the test file. This code can be easily
imported into your online account to help you get started right away.
7HENÙITÙCOMESÙTOÙBUILDINGÙYOURÙOWNÙHARDWAREÙUSINGÙTHEÙ.80Ù,0#ÙYOUÙCANÙDOWNLOADÙTHEÙMBEDÙ.80Ù,0#Ù
development board schematics from www.mbed.org.
VBUS_TGT VBUS
GND
15k
15k
www.datakey.com
14
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
The FAT file system helps with surprise removal and power loss by maintaining two copies of the File Allocation Table
&!4 Ù)NÙCASEÙAÙREMOVALÙORÙPOWERÙLOSSÙHAPPENSÙWHILEÙWRITINGÙTHEÙTABLEÙCHANCESÙAREÙTHATÙONLYÙONEÙTABLEÙWILLÙBEÙCORRUPTEDÙSOÙ
the disk can be recovered. ExFAT only maintains one copy of the FAT, so recovery is less likely with ExFAT.
Another way to minimize the possibility of media corruption due to disconnection or power loss is to design your
so#ware to perform file access operations in a manner that minimizes the duration of the file access. Rather than
opening a file at the beginning of the program and leaving it open for a long period of time, it is better to open the
file, read or write the data, then close the file immediately a#erwards. By adopting this approach, the possibility of file
corruption is minimized.
If your file system implements a caching scheme, it is best to disable write caching because it can lengthen the duration
of a write operation due to asynchronous cache flushing.
www.datakey.com
15
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
ABOUT DATAKEY
!4%+Ù!CCESSÙ4ECHNOLOGIESmÙ$ATAKEYÙBRANDÙHASÙAÙLONGÙANDÙDISTINGUISHEDÙHISTORYÙDATINGÙBACKÙTOÙ ÙOFÙPRODUCINGÙ
RUGGEDÙPORTABLEÙMEMORYÙPRODUCTSÙFORÙTHEÙEMBEDDEDÙELECTRONICSÙINDUSTRYÙ4HEÙCOMPANYmSÙ25''%$RIVEtÙPRODUCTÙLINEÙ
includes a variety of USB flash drive devices that addresses many of the weaknesses found in consumer USB flash
DRIVESÙ4HEÙ25''%$RIVEtÙLINEÙINCLUDESÙ53"ÙֶASHÙDRIVESÙWITHÙRUGGEDIZEDÙPACKAGINGÙEXTENDEDÙTEMPERATUREÙOPERATIONÙ
READ
ONLYÙOPERATIONÙANDÙOTHERÙSECURITYÙANDÙ/%-
CUSTOMIZABLEÙFEATURESÙ4HEÙLINEÙALSOÙINCLUDESÙHIGHÙCYCLE
LIFEÙ)0ÙANDÙ
)0
RATEDÙRECEPTACLESÙFORÙDEMANDINGÙHARSH
ENVIRONMENTÙAPPLICATIONSÙ&ORÙMOREÙINFORMATIONÙONÙTHEÙ25''%$RIVEtÙ
line or other Datakey portable memory products, please visit www.datakey.com.
CONCLUSION
We have covered many topics with regard to implementing an embedded system with USB flash drive support. A#er
discussing high-level system design, we looked at many practical system implementation options available to you at
the hardware, system so#ware and application levels. It is our hope that this paper is helpful to you as you undertake
your development and that you will avoid many difficulties that you may have encountered otherwise.
GLOSSARY
EHCI: %(#)ÙISÙANÙACRONYMÙFORÙ%NHANCEDÙ(OSTÙ#ONTROLLERÙ)NTERFACEÙ%(#)ÙISÙAÙREGISTER
LEVELÙINTERFACEÙFORÙAÙ53"ÙÙHOSTÙ
CONTROLLERÙ4HEÙ%(#)Ù3PECIֵCATIONÙMAYÙBEÙFOUNDÙHEREÙ
WWWINTELCOMCONTENTWWWUSENIOUNIVERSAL
SERIAL
BUSEHCI
SPECIֵCATIONHTML
Device Driver: A device driver is a so#ware component that implements a predefined set of functions that allows an
operating system to communicate with hardware devices in a uniform manner.
Class Driver: A class driver is a device driver for USB devices that provides a device-independent interface to an
operating system subsystem.
Protocol Stack: A protocol stack is a collection of so#ware components that implements a communication protocol.
Middleware: A collection of so#ware or firmware that provides a so#ware service that may not be provided by the
operating system.
RTOS: RTOS is an acronym for Real Time Operating System. An RTOS is a special type of operating system specifically
DESIGNEDÙFORÙSYSTEMSÙTHATÙHAVEÙSPECIֵCÙDETERMINISMÙTHROUGHPUTÙANDORÙRESPONSEÙTIMEÙREQUIREMENTS
www.datakey.com
16
Embedded Systems Design Guide
for Removable USB Flash Drives
WHITE PAPER
REFERENCES
ÙÙ
Universal Serial Bus Overview , Intel Website,
HTTPWWWINTELCOMCONTENTWWWUSENIOUNIVERSAL
SERIAL
BUSUNIVERSAL
SERIAL
BUSHTML
2
USB-IF Hardware and So#ware Tools, USB-IF Website, WWWUSBORGDEVELOPERSTOOLS
ÙÙ
53"
)&Ù#OMPLIANCEÙ0ROGRAMÙ53"
)&Ù7EBSITEÙWWWUSBORGDEVELOPERSCOMPLIANCE
ÙÙ
.80Ù)NTERFACEÙANDÙ#ONNECTIVTYÙ0RODUCTSÙ.80Ù7EBSITEÙÙ Ù Ù Ù Ù Ù Ù Ù Ù
WWWNXPCOMPRODUCTSINTERFACE?AND?CONNECTIVITYUSB?HOST?CONTROLLERSPRODUCTS
ÙÙ
#YPRESSÙ53"Ù(OSTSÙ#YPRESSÙ7EBSITEÙHTTPWWWCYPRESSCOMID
ÙÙ
&4$)Ù0RODUCTSÙ&4$)Ù7EBSITEÙWWWֹDICHIPCOM0RODUCTS)#SHTM
ÙÙ
4IVAÙ#Ù3ERIESÙ-#5SÙ4)Ù7EBSITEÙWWWTICOMLSDSTIMICROCONTROLLERTIVA?ARM?CORTEXC?SERIESOVERVIEWPAGE
ÙÙ
4)Ù3AFETYÙ-ICROCONTROLLERSÙ4)Ù7EBSITEÙWWWTICOMLSDSTIMICROCONTROLLERSAFETY?MCUOVERVIEWPAGE
ÙÙ
4)Ù3ITARAÙ-ICROPROCESSORSÙ4)Ù7EBSITEÙWWWTICOMLSDSTIARMSITARA?ARM?CORTEX?A?PROCESSOROVERVIEWPAGE
ÙÙ
4)Ù/-!0Ù!PPLICATIONÙ0ROCESSORSÙ4)Ù7EBSITEÙWWWTICOMLSDSTIOMAP
APPLICATIONS
PROCESSORSOVERVIEWPAGE
ÙÙ
&REESCALEÙ+INETISÙ-ICROCONTROLLERSÙ&REESCALEÙ7EBSITEÙWWWFREESCALECOMWEBAPPSPSSITEHOMEPAGEJSPCODE+).%4)3
Ù
&REESCALEÙ6YBRIDÙ-ICROPROCESSORSÙ&REESCALEÙ7EBSITE WWWFREESCALECOMWEBAPPSPSSITEHOMEPAGEJSPCODE69"2)$
ÙÙ
&REESCALEÙI-8Ù3ERIESÙ-ICROPROCESSORSÙ&REESCALEÙ7EBSITEÙWWWFREESCALECOMWEBAPPSPSSITEHOMEPAGEJSPCODE)-8?(/-%
ÙÙ
!TMELÙ!62Ù-ICROCONTROLLERSÙ!TMELÙ7EBSITEÙWWWATMELCOMPRODUCTSMICROCONTROLLERSAVRDEFAULTASPX
ÙÙ
!TMELÙ!2-Ù-ICROCONTROLLERSÙ!TMELÙ7EBSITEÙWWWATMELCOMPRODUCTSMICROCONTROLLERSARMDEFAULTASPX
ÙÙ
.80Ù,0#Ù-ICROCONTROLLERSÙ.80Ù7EBSITEÙWWWNXPCOMPRODUCTSMICROCONTROLLERS
ÙÙ
-ICROCHIPÙ0)#Ù-ICROCONTROLLERSÙ-ICROCHIPÙ7EBSITEÙ
HTTPWWWMICROCHIPCOMPAGEHANDLEREN
USTECHNOLOGYUSBMICROCONTROLLERSHOMEHTML
ÙÙ
7INDOWSÙ%MBEDDEDÙ-ICROSOֹÙ7EBSITEÙWWWMICROSOֹCOMWINDOWSEMBEDDED
ÙÙ
emUSB Host, Segger Website, WWWSEGGERCOMEMUSB
HOSTHTML
ÙÙ
+EILÙ-$+
!2-Ù+EILÙ7EBSITEÙWWWKEILCOMARMMDKASP
ÙÙ
'REENÙ(ILLSÙ0RODUCTSÙ'REENÙ(ILLSÙ7EBSITEÙWWWGHSCOMPRODUCTSHTML
22
-18Ù4OOLSÙ&REESCALEÙ7EBSITEÙWWWFREESCALECOMWEBAPPSPSSITEPROD?SUMMARYJSPCODE-18
ÙÙ
4IVA7AREÙ2ESOURCESÙ0AGEÙ4)Ù7EBSITEÙÙ
WWWTICOMLSDSTIMICROCONTROLLERTIVA?ARM?CORTEXC?SERIESTOOLS?SOֹWAREPAGETIVAWARE
ÙÙ
!3-Ù53"Ù(OSTÙ3TACKÙ!TMELÙ7EBSITEÙWWWATMELCOM)MAGESDOCPDF
ÙÙ
-18Ù3OֹWAREÙ3OLUTIONSÙ&REESCALEÙ7EBSITEÙWWWFREESCALECOMWEBAPPSPSSITEHOMEPAGEJSPCODE-18?(/-%
ÙÙ
53"Ù3PECIֵCATIONÙVÙ53"
)&Ù7EBSITEÙWWWUSBORGDEVELOPERSDOCSUSB?DOCS
ÙÙ
/N
4HE
'OÙANDÙ%MBEDDEDÙ(OSTÙ53"
)&Ù7EBSITEÙWWWUSBORGDEVELOPERSONTHEGO
ÙÙ
363Ù2ESETÙ$ELAYÙWWWTICOMLSDSTIPOWER
MANAGEMENTSUPERVISOR
RESET
IC
OVERVIEWPAGE
ÙÙl(I
3PEEDÙ53"Ù0#"Ù,AYOUTmÙ#YPRESSÙ3EMICONDUCTORÙHTTPWWWCYPRESSCOMDOC)$
ÙÙ
3ATURNÙ0#"Ù4OOLKITÙ3ATURNÙ7EBSITEÙWWWSATURNPCBCOMPCB?TOOLKITHTM
ÙÙ
0#"Ù4RACEÙ#ALCULATORÙ!DVANCEDÙ0#"Ù7EBSITE HTTPWWWPCBCOMTRACE
WIDTH
CALCULATORHTML
ÙÙ
mBED HDK, mbed Website, HTTPMBEDORGTEAMSMBEDCODEMBED
($+
ÙÙ
-3#5SB(OSTÙ%XAMPLEÙMBEDÙ7EBSITEÙWWWMBEDORGUSERSIGORSKCODE-3#5SB(OST
ÙÙ
&!4Ù&ILEÙ3YSTEMÙ,ICENSINGÙ0ROGRAMÙ-ICROSOֹÙ7EBSITEÙ
HTTPWWWMICROSOֹCOMEN
USLEGAL)NTELLECTUAL0ROPERTY)0,ICENSING0ROGRAMS$EFAULTASPX
©2014 ATEK Accesss Technologies, LLC. All Rights Reserved. Images and marketing materials are protected by various patents, copyrights and/or
trademarks. ATEK assumes no responsibility for any errors which may appear in this document, reserves the right to change devices or specifications
detailed herein at any time without notice, and does not make any commitment to update the information contained herein. No licenses to patents or
other intellectual property of ATEK are granted by the Company in connection with the sale of products, expressly or by implication.