mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 14:14:38 +02:00
23 lines
689 B
C
23 lines
689 B
C
/*
|
|
* nand_read.c: Simple NAND read functions for booting from NAND
|
|
*
|
|
* This is used by cpu/arm920/start.S assembler code,
|
|
* and the board-specific linker script must make sure this
|
|
* file is linked within the first 4kB of NAND flash.
|
|
*
|
|
* Taken from GPLv2 licensed vivi bootloader,
|
|
* Copyright (C) 2002 MIZI Research, Inc.
|
|
*
|
|
* Author: Hwang, Chideok <hwang@mizi.com>
|
|
* Date : $Date: 2004/02/04 10:37:37 $
|
|
*
|
|
* u-boot integration and bad-block skipping (C) 2006 by OpenMoko, Inc.
|
|
* Author: Harald Welte <laforge@openmoko.org>
|
|
*/
|
|
#ifndef __NAND_READ_H
|
|
#define __NAND_READ_H
|
|
|
|
int nand_read_ll(unsigned char *buf, unsigned long start_addr, int size);
|
|
|
|
#endif /* __NAND_READ_H */
|