summaryrefslogtreecommitdiffstats
path: root/drivers/nand/nand.c
blob: 6700655d96d9fb7c6398653b422909301295295e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * (C) Copyright 2005
 * 2N Telekomunikace, a.s. <www.2n.cz>
 * Ladislav Michl <michl@2n.cz>
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * 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.
 *
 * 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 * MA 02111-1307 USA
 */

#include <common.h>
#include <linux/mtd/nand.h>
#include <init.h>
#include <xfuncs.h>
#include <driver.h>

static 	ssize_t nand_read(struct device_d *dev, void* buf, size_t count, ulong offset, ulong flags)
{
	struct nand_chip *nand = dev->priv;
	size_t retlen;
	int ret;
	char oobuf[NAND_MAX_OOBSIZE];

	printf("%s\n", __FUNCTION__);

	ret = nand->read_ecc(nand, offset, count, &retlen, buf, oobuf, &nand->oobinfo);

	if(ret)
		return ret;
	return retlen;
}

static ssize_t nand_write(struct device_d* dev, const void* buf, size_t count, ulong offset, ulong flags)
{
	struct nand_chip *nand = dev->priv;
	size_t retlen;
	int ret;

	ret = nand->write_ecc(nand, offset, count, &retlen, buf, NULL, &nand->oobinfo);
	if (ret)
		return ret;
	return retlen;
}

static int nand_probe (struct device_d *dev)
{
	printf("%s\n", __FUNCTION__);
	return 0;
}

static struct driver_d nand_driver = {
	.name   = "nand_flash",
	.probe  = nand_probe,
	.read   = nand_read,
	.write  = nand_write,
//	.erase  = nand_erase,
//	.protect= nand_protect,
//	.memmap = generic_memmap_ro,
//	.info   = nand_info,
};

static int nand_init(void)
{
	return register_driver(&nand_driver);
}

device_initcall(nand_init);