omap3530/beagleboard/inc/variantmediadef.h
changeset 0 6663340f3fc9
equal deleted inserted replaced
-1:000000000000 0:6663340f3fc9
       
     1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // omap3530/beagleboard/inc/variantmediadef.h
       
    15 // Media definitions for Beagle variant.
       
    16 // Each Media Driver requires the following definitions
       
    17 // DRIVECOUNT - The total number of local drive object to be assigned to the Media Driver (1-KMaxLocalDrives)
       
    18 // DRIVELIST - A list of the local drive numbers (each separated with a comma) to be assigned to the Media Driver.
       
    19 // Each in the range 0 - (KMaxLocalDrives-1). Total number of drive numbers must equal the value
       
    20 // of DRIVECOUNT.
       
    21 // NUMMEDIA - The total number of media objects to be assigned to the Media Driver.
       
    22 // DRIVENAME - A name for the drive group.
       
    23 // For the complete set of media definitions
       
    24 // - The total number of local drive objects assigned should not exceed KMaxLocalDrives.
       
    25 // - Each Media Driver should be assigned a unique set of drive numbers - no conflicts between Media Drivers.
       
    26 // - The total number of media objects assigned should not exceed KMaxLocalDrives.
       
    27 //
       
    28  
       
    29 #ifndef __VARIANTMEDIADEF_H__
       
    30 #define __VARIANTMEDIADEF_H__
       
    31 
       
    32 // Variant parameters for IRAM Media Driver (MEDINT.PDD)
       
    33 #define IRAM_DRIVECOUNT 1
       
    34 #define IRAM_DRIVELIST 0
       
    35 #define IRAM_NUMMEDIA 1	
       
    36 #define IRAM_DRIVENAME "IRam"
       
    37 
       
    38 // Variant parameters for the MMC Controller (EPBUSMMC.DLL)
       
    39 #define MMC0_DRIVECOUNT 1
       
    40 #define MMC0_DRIVELIST 3
       
    41 #define MMC0_NUMMEDIA 1	
       
    42 #define MMC0_DRIVENAME "MultiMediaCard0"
       
    43 
       
    44 // Variant parameters for the NAND media driver (MEDNAND.PDD)
       
    45 // Note that the NANDLOADER code expects the are to be 2 drives/partitions 
       
    46 #define NAND_DRIVECOUNT 2
       
    47 #define NAND_DRIVELIST 6,7
       
    48 #define NAND_NUMMEDIA 1	
       
    49 #define NAND_DRIVENAME "Nand"
       
    50 
       
    51 #endif