⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bsp_args.h

📁 SAMSUNG S3C6410 CPU BSP for winmobile6
💻 H
字号:
#ifndef __ARGS_H
#define __ARGS_H

//------------------------------------------------------------------------------
//
// File:        args.h
//
// Description: This header file defines device structures and constant related
//              to boot configuration. BOOT_CFG structure defines layout of
//              persistent device information. It is used to control boot
//              process. BSP_ARGS structure defines information passed from
//              boot loader to kernel HAL/OAL. Each structure has version
//              field which should be updated each time when structure layout
//              change.
//
//------------------------------------------------------------------------------

#include "oal_args.h"
#include "oal_kitl.h"

#define BSP_ARGS_VERSION    1

typedef struct {
	OAL_ARGS_HEADER header;
	UINT8 deviceId[16];                 // Device identification
	OAL_KITL_ARGS kitl;

	BOOL   fUpdateMode;                 // Is the device in update mode?
	BOOL   fUldrReboot;	       	

	// record the size and location of the RAM FMD if present
	DWORD dwExtensionRAMFMDSize;
	PVOID pvExtensionRAMFMDBaseAddr;
	DWORD	nfsblk;

	BOOL bDCDetected;		// 1:Inserted. 0:extracted.
	BOOL bPowerStatus;       // 1:AC status 0:DC status 

	HANDLE 				g_SDCardDetectEvent; 	//For USB MSF , check SD Card insert & remove.
	DWORD 				g_SDCardState;			 //For USB MSF , check SD Card insert & remove.

	BOOL		   bDisplayOff;
	BOOL           bUSBPlug;	
	BOOL           bWaveDown;
} BSP_ARGS;

//------------------------------------------------------------------------------

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -