1 /** @file 2 3 Copyright (c) 2014, Linaro Ltd. All rights reserved.<BR> 4 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 **/ 14 15 #include <ArmPlatform.h> 16 #include <Library/NorFlashPlatformLib.h> 17 18 EFI_STATUS 19 NorFlashPlatformInitialization ( 20 VOID 21 ) 22 { 23 return EFI_SUCCESS; 24 } 25 26 NOR_FLASH_DESCRIPTION mNorFlashDevices[] = { 27 { 28 QEMU_NOR0_BASE, 29 QEMU_NOR0_BASE, 30 QEMU_NOR0_SIZE, 31 QEMU_NOR_BLOCK_SIZE, 32 {0xF9B94AE2, 0x8BA6, 0x409B, {0x9D, 0x56, 0xB9, 0xB4, 0x17, 0xF5, 0x3C, 0xB3}} 33 }, { 34 QEMU_NOR1_BASE, 35 QEMU_NOR1_BASE, 36 QEMU_NOR1_SIZE, 37 QEMU_NOR_BLOCK_SIZE, 38 {0x8047DB4B, 0x7E9C, 0x4C0C, {0x8E, 0xBC, 0xDF, 0xBB, 0xAA, 0xCA, 0xCE, 0x8F}} 39 } 40 }; 41 42 EFI_STATUS 43 NorFlashPlatformGetDevices ( 44 OUT NOR_FLASH_DESCRIPTION **NorFlashDescriptions, 45 OUT UINT32 *Count 46 ) 47 { 48 *NorFlashDescriptions = mNorFlashDevices; 49 *Count = ARRAY_SIZE (mNorFlashDevices); 50 return EFI_SUCCESS; 51 } 52