nand.h 927 字节
Newer Older
1
/*
2
 * arch/arm/plat-omap/include/mach/nand.h
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * Copyright (C) 2006 Micron Technology Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/mtd/partitions.h>

struct omap_nand_platform_data {
	unsigned int		options;
	int			cs;
	int			gpio_irq;
	struct mtd_partition	*parts;
18
	struct gpmc_timings	*gpmc_t;
19
	int			nr_parts;
20
	int			(*nand_setup)(void);
21 22
	int			(*dev_ready)(struct omap_nand_platform_data *);
	int			dma_channel;
23 24
	unsigned long		phys_base;
	int			devsize;
25
};
26

27 28
/* minimum size for IO mapping */
#define	NAND_IO_SIZE	4
29

30
#if defined(CONFIG_MTD_NAND_OMAP2) || defined(CONFIG_MTD_NAND_OMAP2_MODULE)
31
extern int gpmc_nand_init(struct omap_nand_platform_data *d);
32 33 34 35 36 37
#else
static inline int gpmc_nand_init(struct omap_nand_platform_data *d)
{
	return 0;
}
#endif