2016-12-09 03:07:49 +01:00
|
|
|
/** @file
|
|
|
|
Global data in the FAT Filesystem driver.
|
2007-12-20 10:16:45 +01:00
|
|
|
|
2013-10-30 04:13:16 +01:00
|
|
|
Copyright (c) 2005 - 2013, Intel Corporation. All rights reserved.<BR>
|
2010-04-26 03:24:39 +02:00
|
|
|
This program and the accompanying materials are licensed and made available
|
2007-12-20 10:16:45 +01:00
|
|
|
under the terms and conditions of the BSD License which accompanies this
|
|
|
|
distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
2016-12-09 03:07:49 +01:00
|
|
|
**/
|
2007-12-20 10:16:45 +01:00
|
|
|
|
|
|
|
#include "Fat.h"
|
|
|
|
|
|
|
|
//
|
|
|
|
// Globals
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// FatFsLock - Global lock for synchronizing all requests.
|
|
|
|
//
|
2013-10-30 04:13:16 +01:00
|
|
|
EFI_LOCK FatFsLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_CALLBACK);
|
|
|
|
|
|
|
|
EFI_LOCK FatTaskLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_NOTIFY);
|
2007-12-20 10:16:45 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Filesystem interface functions
|
|
|
|
//
|
2009-09-22 04:48:17 +02:00
|
|
|
EFI_FILE_PROTOCOL FatFileInterface = {
|
2007-12-20 10:16:45 +01:00
|
|
|
EFI_FILE_PROTOCOL_REVISION,
|
|
|
|
FatOpen,
|
|
|
|
FatClose,
|
|
|
|
FatDelete,
|
|
|
|
FatRead,
|
|
|
|
FatWrite,
|
|
|
|
FatGetPosition,
|
|
|
|
FatSetPosition,
|
|
|
|
FatGetInfo,
|
|
|
|
FatSetInfo,
|
2013-10-30 04:13:16 +01:00
|
|
|
FatFlush,
|
|
|
|
FatOpenEx,
|
|
|
|
FatReadEx,
|
|
|
|
FatWriteEx,
|
|
|
|
FatFlushEx
|
2007-12-20 10:16:45 +01:00
|
|
|
};
|