blob: 10f5ddd87f55a94dfd5557a17ba5f4ff243158b8 [file] [log] [blame]
Anton Vorontsovcd9d2302008-01-14 23:09:32 +03001/*
2 * FSL UPM NAND driver
3 *
4 * Copyright (C) 2007 MontaVista Software, Inc.
5 * Anton Vorontsov <avorontsov@ru.mvista.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 */
12
13#ifndef __LINUX_MTD_NAND_FSL_UPM
14#define __LINUX_MTD_NAND_FSL_UPM
15
16#include <linux/mtd/nand.h>
17
18struct fsl_upm {
Anton Vorontsovcd9d2302008-01-14 23:09:32 +030019 void __iomem *mdr;
20 void __iomem *mxmr;
21 void __iomem *mar;
22 void __iomem *io_addr;
23};
24
25struct fsl_upm_nand {
26 struct fsl_upm upm;
27
28 int width;
29 int upm_cmd_offset;
30 int upm_addr_offset;
Wolfgang Grandegger06e9f7d2009-02-11 18:38:22 +010031 int upm_mar_chip_offset;
Anton Vorontsovcd9d2302008-01-14 23:09:32 +030032 int wait_pattern;
Wolfgang Grandeggere93c1c12009-02-11 18:38:21 +010033 int (*dev_ready)(int chip_nr);
Anton Vorontsovcd9d2302008-01-14 23:09:32 +030034 int chip_delay;
Wolfgang Grandeggere93c1c12009-02-11 18:38:21 +010035 int chip_offset;
36 int chip_nr;
Anton Vorontsove1c3dba2008-06-12 11:10:21 -050037
38 /* no need to fill */
39 int last_ctrl;
Anton Vorontsovcd9d2302008-01-14 23:09:32 +030040};
41
42extern int fsl_upm_nand_init(struct nand_chip *chip, struct fsl_upm_nand *fun);
43
44#endif