summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap/devices-gpmc-nand.c
blob: 9d0ab6edcba6b58cd6131231f2f401a5b2445ca2 (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
/**
 * @file
 * @brief GPMC specific NAND devices
 *
 * FileName: arch/arm/boards/omap/devices-gpmc-nand.c
 *
 */
/*
 * (C) Copyright 2006-2008
 * Texas Instruments, <www.ti.com>
 * Nishanth Menon <x0nishan@ti.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * 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 <console.h>
#include <init.h>
#include <driver.h>
#include <clock.h>
#include <io.h>

#include <mach/silicon.h>
#include <mach/gpmc.h>
#include <mach/gpmc_nand.h>

#define GPMC_CONF1_VALx8	0x00000800
#define GPMC_CONF1_VALx16	0x00001800

/** NAND platform specific settings settings */
static struct gpmc_nand_platform_data nand_plat = {
	.wait_mon_pin = 0,
};

/**
 * @brief gpmc_generic_nand_devices_init - init generic nand device
 *
 * @return success/fail based on device function
 */
int gpmc_generic_nand_devices_init(int cs, int width,
		enum gpmc_ecc_mode eccmode, struct gpmc_config *nand_cfg)
{
	nand_plat.cs = cs;

	if (width == 16)
		nand_cfg->cfg[0] = GPMC_CONF1_VALx16;
	else
		nand_cfg->cfg[0] = GPMC_CONF1_VALx8;

	nand_plat.device_width = width;
	nand_plat.ecc_mode = eccmode;
	nand_plat.priv = nand_cfg;

	/* Configure GPMC CS before register */
	gpmc_cs_config(nand_plat.cs, nand_cfg);

	add_generic_device("gpmc_nand", DEVICE_ID_DYNAMIC, NULL, OMAP_GPMC_BASE,
			1024 * 4, IORESOURCE_MEM, &nand_plat);

	return 0;
}