54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
|
/*
|
||
|
* Copyright : (C) 2022 Phytium Information Technology, Inc.
|
||
|
* All Rights Reserved.
|
||
|
*
|
||
|
* This program is OPEN SOURCE software: you can redistribute it and/or modify it
|
||
|
* under the terms of the Phytium Public License as published by the Phytium Technology Co.,Ltd,
|
||
|
* either version 1.0 of the License, or (at your option) 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 Phytium Public License for more details.
|
||
|
*
|
||
|
*
|
||
|
* FilePath: fnand_id.h
|
||
|
* Date: 2022-07-06 14:19:15
|
||
|
* LastEditTime: 2022-07-06 14:19:15
|
||
|
* Description: This file is for
|
||
|
*
|
||
|
* Modify History:
|
||
|
* Ver Who Date Changes
|
||
|
* ----- ------ -------- --------------------------------------
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef DRIVERS_NAND_DRIVER_FNAND
|
||
|
#define DRIVERS_NAND_DRIVER_FNAND
|
||
|
|
||
|
|
||
|
#include "ftypes.h"
|
||
|
#include "fnand.h"
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
struct FNandManuFacturerOps
|
||
|
{
|
||
|
FError(*detect)(FNand *instance_p, FNandId *id_p, u32 chip_addr); /* detect chip */
|
||
|
int (*init)(FNand *instance_p, u32 chip_addr);
|
||
|
void (*cleanup)(FNand *instance_p, u32 chip_addr);
|
||
|
};
|
||
|
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
int id;
|
||
|
char *name;
|
||
|
const struct FNandManuFacturerOps *ops;
|
||
|
} FNandManuFacturer;
|
||
|
|
||
|
FError FNandDetect(FNand *instance_p);
|
||
|
|
||
|
|
||
|
#endif
|