omap3530/beagle_drivers/lcd/lcd_gce.mmp
author Dario Sestito <darios@symbian.org>
Fri, 16 Jul 2010 17:10:10 +0100
changeset 43 d1a826faf80b
child 48 23f868c54bc5
permissions -rw-r--r--
First drop of changes to enable a full ui rom build
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     1
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     2
// All rights reserved.
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     3
// This component and the accompanying materials are made available
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     4
// under the terms of the License "Eclipse Public License v1.0"
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     5
// which accompanies this distribution, and is available
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     7
//
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     8
// Initial Contributors:
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     9
// Nokia Corporation - initial contribution.
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    10
//
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    11
// Contributors:
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    12
//
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    13
// Description:
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    14
// beagle/beagle_drivers/lcd.mmp
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    15
// lcd.dll Beagle LCD driver
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    16
//
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    17
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    18
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    19
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    20
/**
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    21
 @file
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    22
*/
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    23
#define __USING_ASSP_REGISTER_API__
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    24
#define __USING_ASSP_INTERRUPT_API__
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    25
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    26
#include			"beagle/variant.mmh"
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    27
#include			"kernel/kern_ext.mmh"
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    28
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    29
//Need to define NGA_BUILD for a NGA compliant Display PDD
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    30
#define NGA_BUILD
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    31
#ifdef NGA_BUILD
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    32
MACRO ENABLE_GCE_MODE
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    33
target				VariantTarget(lcd_gce,dll)
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    34
#else
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    35
target				VariantTarget(lcd,dll)
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    36
#endif
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    37
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    38
targettype			kext
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    39
romtarget			lcd.dll
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    40
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    41
sourcepath			.
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    42
source				lcd.cpp
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    43
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    44
SYMBIAN_BASE_SYSTEMINCLUDE(drivers)
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    45
userinclude			.
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    46
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    47
library			VariantTarget(ecust,lib)
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    48
LIBRARY         AsspTarget(prcm,lib)
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    49
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    50
noexportlibrary
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    51
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    52
epocallowdlldata
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    53
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    54
uid					0x1000008d 0x100039e8
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    55
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    56
VENDORID 0x70000001
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    57
d1a826faf80b First drop of changes to enable a full ui rom build
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    58
capability			all