📄 hal_nor.h
字号:
/****************************************************************************** * * * Project: DOC Driver for Linux 2.4 Block device driver for mDOC H3 family * * of devices under Linux kernel 2.4. * * * * Version: 1.0 * * Email questions to: oemsupport@sandisk.com * * Copyright (C) SanDisk IL Ltd. 1995 - 2007 * * SanDisk IL Ltd., 7 Atir Yeda Street, Kfar Saba 44425, Israel * * * ****************************************************************************** * * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the Free * * Software Foundation; either version 2 of the License, or any later version.* * This program is distributed in the hope that it will be useful, but WITHOUT* * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * * more details, which is set forth in the readme.txt file. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., 51 * * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * * * This License does not grant you any right to use the trademarks, service * * marks or logos of SanDisk IL Ltd. or SanDisk Corporation. * * Subject to the foregoing, SanDisk IL Ltd., for itself and on behalf of its * * licensors, hereby reserves all intellectual property rights in the program,* * except for the rights expressly granted in this License. * * * ******************************************************************************//*
* $Log: V:/PVCSDB/DiskOnChip/archives/Test for 7.x/src/H3/hal_nor.h-arc $
*
* Rev 1.16 Sep 11 2006 13:45:26 yaniv.iarovici
* Legal header added
*
* Rev 1.15 Aug 09 2006 17:26:56 Polina.Marimont
* initial for DOC Driver 1.0
*
*/
#ifndef DOCH_SYS_NOR_H
#define DOCH_SYS_NOR_H
#include "flsystyp.h"
#include "doch_api.h"
#include "hib.h"
#ifdef __cplusplus
extern "C" {
#endif
DOCH_Error hal_init_nor (FLSNative socketNo);
DOCH_Error hal_init_nor_noFunc (FLSNative socketNo);
FLByte hal_get_ata_reg_nor (volatile FLByte *base, FLSNative reg);
void hal_set_ata_reg_nor (volatile FLByte *base, FLSNative reg, FLNative val);
FLWord hal_get_ctrl_reg_nor (volatile FLByte *base, FLSNative reg);
void hal_set_ctrl_reg_nor (volatile FLByte *base, FLSNative reg, FLNative val);
FLSNative hal_blk_read_nor (volatile FLByte *base, FLByte *buf, FLSNative sectors);
FLSNative hal_blk_write_nor (volatile FLByte *base, FLByte *buf, FLSNative sectors);
FLSNative doch_sys_release_nor (int socketNo);
/*Default read.write routines, using the ATA data register*/
void blk_read_using_data_reg ( volatile FLByte * base,
FLByte * buf,
FLSNative bytes );
void blk_write_using_data_reg ( volatile FLByte * base,
FLByte * buf,
FLSNative bytes );
#ifdef __cplusplus
}
#endif
#endif /*DOCH_SYS_NOR_H*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -