kernel/eka/drivers/medmmc/mmcptn.cpp
author Tom Cosgrove <tom.cosgrove@nokia.com>
Fri, 28 May 2010 16:29:07 +0100
changeset 30 8aab599e3476
parent 14 5d2844f35677
permissions -rw-r--r--
Fix for bug 2283 (RVCT 4.0 support is missing from PDK 3.0.h) Have multiple extension sections in the bld.inf, one for each version of the compiler. The RVCT version building the tools will build the runtime libraries for its version, but make sure we extract all the other versions from zip archives. Also add the archive for RVCT4.

// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// \e32\drivers\medmmc\mmcptn.cpp
// 
//

#include "sdcard.h"
#include "OstTraceDefinitions.h"
#ifdef OST_TRACE_COMPILER_IN_USE
#include "locmedia_ost.h"
#ifdef __VC32__
#pragma warning(disable: 4127) // disabling warning "conditional expression is constant"
#endif
#include "mmcptnTraces.h"
#endif

const TInt KDiskSectorShift = 9;

LOCAL_C void SetPartitionType(const TMMCard& aCard, TMBRPartitionEntry& aPartitionEntry)
	{
	OstTraceFunctionEntry0( _SETPARTITIONTYPE_ENTRY );
	if(aCard.IsHighCapacity())
		{
		aPartitionEntry.iPartitionType = KPartitionTypeWin95FAT32;
		}
	else if(aPartitionEntry.iNumSectors < 32680)
		{
		aPartitionEntry.iPartitionType = KPartitionTypeFAT12;
		}
	else if(aPartitionEntry.iNumSectors < 65536)
		{
		aPartitionEntry.iPartitionType = KPartitionTypeFAT16small;
		}
	else if (aPartitionEntry.iNumSectors < 1048576)
		{
		aPartitionEntry.iPartitionType = KPartitionTypeFAT16;
 		}
	else
		{
		aPartitionEntry.iPartitionType = KPartitionTypeWin95FAT32;
		}
	OstTraceFunctionExit0( _SETPARTITIONTYPE_EXIT );
	}

/**
Get the write block size to allow the FAT file system to calculate a suitable cluster size
*/
GLDEF_C TInt BlockSize(const TMMCard* aCardP)
	{
	OstTraceFunctionEntry0( _BLOCKSIZE_ENTRY );
	if ((aCardP == NULL) || ((const TSDCard *) aCardP)->IsSDCard())
		return KMMCardHighCapBlockSize;

	const TExtendedCSD& extCSD = aCardP->ExtendedCSD();

	TInt blockSize = 
		extCSD.ExtendedCSDRev() >= 3 && extCSD.AccessSize() < 9 ? 
		512 << (extCSD.AccessSize()-1) :
			KMMCardHighCapBlockSize;			// default write block size = 512

	OstTraceFunctionExit0( _BLOCKSIZE_EXIT );
	return blockSize;
	}

/**
Get Erase block size to allow FAT file system to align first usable cluster correctly
*/
GLDEF_C TInt EraseBlockSize(const TMMCard* aCardP)
	{
	OstTraceFunctionEntry0( _ERASEBLOCKSIZE_ENTRY );
	if (aCardP == NULL)
	    {
		OstTraceFunctionExit0( _ERASEBLOCKSIZE_EXIT );
		return 0;
	    }
	
	const TUint K8KBShift = 13;
	if (((const TSDCard *) aCardP)->IsSDCard())
		{
		//Allocation Unit is returned as EraseBlockSize for SD card
		//as calculation for MMC card is not valid for SD card.
		TUint8 auSize = ((const TSDCard *) aCardP)->GetAUSize();
		//eraseBlkSize is 2^(auSize + K8KBShift)
		TInt eraseBlkSize = 1 << (auSize + K8KBShift) ;
		OstTraceFunctionExit0( DUP1__ERASEBLOCKSIZE_EXIT );
		return eraseBlkSize;
		}


	TInt eraseBlockSize;

	// Revision 1.0 of the "File Formats Specification for MultiMediaCards" dictates that 
	// for High-Capacity MMC cards (i.e. FAT32 cards), 
	// "There shall be a Master Boot Record with valid partition information. The partition(s)
	// "and user data area(s) shall start from the beginning of an erasable unit (i.e. physical
	// "block boundary).
	// Version 1.0 of the "The MultiMediaCard FAT16 File System Specification" recommends having a 
	// 16KB MBR and aligning the root directory entry (which is also 16KB long) and the first usable 
	// sector to a 16KB boundary

	const TUint K512KBShift = 19;
	const TInt K16KBytes = 16384;
	const TExtendedCSD& extCSD = aCardP->ExtendedCSD();

	if (extCSD.ExtendedCSDRev() >= 3 && extCSD.HighCapacityEraseGroupSize() && extCSD.EraseGroupDef())
		eraseBlockSize = extCSD.HighCapacityEraseGroupSize() << K512KBShift;
	else if (aCardP->IsHighCapacity())
		eraseBlockSize = aCardP->CSD().EraseGroupSize();
	else
		eraseBlockSize = K16KBytes;

	OstTraceFunctionExit0( DUP2__ERASEBLOCKSIZE_EXIT );
	return eraseBlockSize;
	}

/**
	Calculates the default partition information for an MMC Card
	@param aPartitionEntry The TMBRPartitionEntry to be filled in with the format parameters
	@return Standard Symbian OS Error Code
 */
GLDEF_C TInt GetMediaDefaultPartitionInfo(TMBRPartitionEntry& aPartitionEntry, TUint16& aReservedSectors, const TMMCard* aCardP)
	{
	OstTraceFunctionEntry0( _GETMEDIADEFAULTPARTITIONINFO_ENTRY );
	const TUint32 KTotalSectors = I64LOW(aCardP->DeviceSize64() >> KDiskSectorShift);

	aPartitionEntry.iFirstSector = EraseBlockSize(aCardP) >> KDiskSectorShift;
	aPartitionEntry.iNumSectors  = KTotalSectors - aPartitionEntry.iFirstSector;
	aPartitionEntry.iX86BootIndicator = 0x00;
	SetPartitionType(*aCardP, aPartitionEntry);

	aReservedSectors = 0;	// Let the filesystem decide on the appropriate value..

	OstTraceFunctionExit0( _GETMEDIADEFAULTPARTITIONINFO_EXIT );
	return(KErrNone);
	}

/**
	Returns whether having a Master Boot Record is mandatory
	
	@return ETrue if MBR is mandatory for this card
 */
GLDEF_C TBool MBRMandatory(const TMMCard* /*aCardP*/)
	{
	return EFalse;
	}
/**
	Returns whether to create a Master Boot Record after a format
	
	@return ETrue if MBR should be created
 */
GLDEF_C TBool CreateMBRAfterFormat(const TMMCard* aCardP)
	{
	OstTraceFunctionEntry0( _CREATEMBRAFTERFORMAT_ENTRY );
	if(aCardP == NULL)
		{
		OstTraceFunctionExit0( _CREATEMBRAFTERFORMAT_EXIT );
		return EFalse;
		}

	// Create an MBR on high capacity (FAT32) cards and optionally on low-capacity FAT16/FAT32 MMC cards
	if (aCardP->IsHighCapacity())
		{
		OstTraceFunctionExit0( DUP1__CREATEMBRAFTERFORMAT_EXIT );
		return ETrue;
		}
#ifdef SYMBIAN_CREATE_MBR_ON_LOW_CAPACITY_MMC
	if ((I64LOW(aCardP->DeviceSize64()) >> KDiskSectorShift) >= 32680)
		{
		OstTraceFunctionExit0( DUP2__CREATEMBRAFTERFORMAT_EXIT );
		return ETrue;
		}
#endif
	
	OstTraceFunctionExit0( DUP3__CREATEMBRAFTERFORMAT_EXIT );
	return EFalse;
	}

GLDEF_C TInt GetCardFormatInfo(const TMMCard* /*aCardP*/, TLDFormatInfo& /*aFormatInfo*/)
/**
 * Returns the preferred format parameters for the primary partition.
 * @return Standard Symbian OS error code.
 */
	{
	return KErrNotSupported;
	}