omap3530/beagle_drivers/wb/api/include/cyasmedia.h
changeset 27 117faf51deac
equal deleted inserted replaced
26:b7e488c49d0d 27:117faf51deac
       
     1 /* Cypress West Bridge API header file (cyasmedia.h)
       
     2  ## ===========================
       
     3  ##
       
     4  ##  Copyright Cypress Semiconductor Corporation, 2006-2009,
       
     5  ##  All Rights Reserved
       
     6  ##  UNPUBLISHED, LICENSED SOFTWARE.
       
     7  ##
       
     8  ##  CONFIDENTIAL AND PROPRIETARY INFORMATION
       
     9  ##  WHICH IS THE PROPERTY OF CYPRESS.
       
    10  ##
       
    11  ##  Use of this file is governed
       
    12  ##  by the license agreement included in the file
       
    13  ##
       
    14  ##     <install>/license/license.txt
       
    15  ##
       
    16  ##  where <install> is the Cypress software
       
    17  ##  installation root directory path.
       
    18  ##
       
    19  ## ===========================
       
    20 */
       
    21 
       
    22 #ifndef _INCLUDED_CYASMEDIA_H_
       
    23 #define _INCLUDED_CYASMEDIA_H_
       
    24 
       
    25 #include "cyas_cplus_start.h"
       
    26 
       
    27 
       
    28 /* Summary
       
    29    Specifies a specific type of media supported by West Bridge
       
    30  
       
    31    Description
       
    32    The West Bridge device supports five specific types of media as storage/IO devices
       
    33    attached to it's S-Port.  This type is used to indicate the type of 
       
    34    media being referenced in any API call.
       
    35 */
       
    36 typedef enum CyAsMediaType
       
    37 {
       
    38     CyAsMediaNand = 0x00,			/* Flash NAND memory (may be SLC or MLC) */
       
    39     CyAsMediaSDFlash = 0x01,			/* An SD flash memory device */
       
    40     CyAsMediaMMCFlash = 0x02,			/* An MMC flash memory device */
       
    41     CyAsMediaCEATA = 0x03,			/* A CE-ATA disk drive */
       
    42     CyAsMediaSDIO = 0x04,			/* SDIO device. */
       
    43     CyAsMediaMaxMediaValue = 0x05
       
    44     
       
    45 } CyAsMediaType ;
       
    46 
       
    47 #include "cyas_cplus_end.h"
       
    48 
       
    49 #endif				/* _INCLUDED_CYASMEDIA_H_ */