forked from auracaster/openocd
Replace the FSF boilerplate with the SPDX tag. The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: Ic7db91fe37d1139d42c99e303b3243b6c8fe3ea2 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7067 Tested-by: jenkins
28 lines
926 B
C
28 lines
926 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> *
|
|
***************************************************************************/
|
|
|
|
#ifndef OPENOCD_FLASH_NAND_IMP_H
|
|
#define OPENOCD_FLASH_NAND_IMP_H
|
|
|
|
#include "core.h"
|
|
#include "driver.h"
|
|
|
|
void nand_device_add(struct nand_device *c);
|
|
|
|
int nand_write_page(struct nand_device *nand,
|
|
uint32_t page, uint8_t *data, uint32_t data_size,
|
|
uint8_t *oob, uint32_t oob_size);
|
|
|
|
int nand_read_page(struct nand_device *nand, uint32_t page,
|
|
uint8_t *data, uint32_t data_size,
|
|
uint8_t *oob, uint32_t oob_size);
|
|
|
|
int nand_probe(struct nand_device *nand);
|
|
int nand_erase(struct nand_device *nand, int first_block, int last_block);
|
|
int nand_build_bbt(struct nand_device *nand, int first, int last);
|
|
|
|
#endif /* OPENOCD_FLASH_NAND_IMP_H */
|