navienginebsp/naviengine_assp/register.cpp
changeset 0 5de814552237
equal deleted inserted replaced
-1:000000000000 0:5de814552237
       
     1 /*
       
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  
       
    15 * naviengine_assp\assp.cpp
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #include <naviengine_priv.h>
       
    22 
       
    23 #ifdef __SMP__
       
    24 TSpinLock AsspLock(TSpinLock::EOrderGenericIrqLow1);
       
    25 #endif
       
    26 
       
    27 //
       
    28 //
       
    29 // MHA - Modular Hardware Adaption
       
    30 //
       
    31 // Register Access
       
    32 //
       
    33 //
       
    34 
       
    35 
       
    36 //
       
    37 // We need spin locks around read, modify, write operations because another CPU
       
    38 // may access the same memory in between operations and potentially cause
       
    39 // memory corruption.
       
    40 //
       
    41 EXPORT_C void AsspRegister::Modify8(TLinAddr aAddr, TUint8 aClearMask, TUint8 aSetMask)
       
    42 	{
       
    43 	TUint irq = __SPIN_LOCK_IRQSAVE(AsspLock);
       
    44 	TUint8  value = *(volatile TUint8  *)aAddr;
       
    45 	value &= ~aClearMask;
       
    46 	value |= aSetMask;
       
    47 	*(volatile TUint8  *)aAddr = value;
       
    48 	__SPIN_UNLOCK_IRQRESTORE(AsspLock,irq);
       
    49 	}
       
    50 
       
    51 EXPORT_C void AsspRegister::Modify16(TLinAddr aAddr, TUint16 aClearMask, TUint16 aSetMask)
       
    52 	{
       
    53 	TUint irq = __SPIN_LOCK_IRQSAVE(AsspLock);
       
    54 	TUint16 value = *(volatile TUint16 *)aAddr;
       
    55 	value &= ~aClearMask;
       
    56 	value |= aSetMask;
       
    57 	*(volatile TUint16 *)aAddr = value;
       
    58 	__SPIN_UNLOCK_IRQRESTORE(AsspLock,irq);
       
    59 	}
       
    60 
       
    61 EXPORT_C void AsspRegister::Modify32(TLinAddr aAddr, TUint32 aClearMask, TUint32 aSetMask)
       
    62 	{
       
    63 	TUint irq = __SPIN_LOCK_IRQSAVE(AsspLock);
       
    64 	TUint32 value = *(volatile TUint32 *)aAddr;
       
    65 	value &= ~aClearMask;
       
    66 	value |= aSetMask;
       
    67 	*(volatile TUint32 *)aAddr = value;
       
    68 	__SPIN_UNLOCK_IRQRESTORE(AsspLock,irq);
       
    69 	}
       
    70 
       
    71 //
       
    72 // 64 bit operations may be more complex than 8/16/32 bit operations, depending
       
    73 // upon hardware support for 64 bit accesses.
       
    74 //
       
    75 // For example, one platform required an assembly language function to prevent
       
    76 // the compliler optimising the accesses into 2 x 32 bit accesses and causing a
       
    77 // bus error.
       
    78 //
       
    79 // Spinlocks are required for non-atomic operations and are therefore
       
    80 // recommended for 64 bit accesses on current platforms.
       
    81 //
       
    82 extern TUint64 DoRead64(TLinAddr aAddr);
       
    83 
       
    84 EXPORT_C TUint64 AsspRegister::Read64(TLinAddr aAddr)
       
    85 	{
       
    86 	TUint irq = __SPIN_LOCK_IRQSAVE(AsspLock);
       
    87 	TUint64 value = DoRead64(aAddr);
       
    88 	__SPIN_UNLOCK_IRQRESTORE(AsspLock,irq);
       
    89 	return value;
       
    90 	}
       
    91 
       
    92 extern void DoWrite64(TLinAddr aAddr, TUint64 aValue);
       
    93 
       
    94 EXPORT_C void AsspRegister::Write64(TLinAddr aAddr, TUint64 aValue)
       
    95 	{
       
    96 	TUint irq = __SPIN_LOCK_IRQSAVE(AsspLock);
       
    97 	DoWrite64(aAddr, aValue);
       
    98 	__SPIN_UNLOCK_IRQRESTORE(AsspLock,irq);
       
    99 	}
       
   100 
       
   101 EXPORT_C void AsspRegister::Modify64(TLinAddr aAddr, TUint64 aClearMask, TUint64 aSetMask)
       
   102 	{
       
   103 	TUint irq = __SPIN_LOCK_IRQSAVE(AsspLock);
       
   104 	TUint64 value = DoRead64(aAddr);
       
   105 	value &= ~aClearMask;
       
   106 	value |= aSetMask;
       
   107 	DoWrite64(aAddr, value);
       
   108 	__SPIN_UNLOCK_IRQRESTORE(AsspLock,irq);
       
   109 	}
       
   110