blob: cb7764314f1736206c9dba849e2e777c76cbb1e7 [file] [log] [blame]
Vimal Singh2f70a1e2010-02-15 10:03:33 -08001/*
2 * gpmc-nand.c
3 *
4 * Copyright (C) 2009 Texas Instruments
5 * Vimal Singh <vimalsingh@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/kernel.h>
13#include <linux/platform_device.h>
14#include <linux/io.h>
Sukumar Ghoraid5ce2b62011-01-28 15:42:03 +053015#include <linux/mtd/nand.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020016#include <linux/platform_data/mtd-nand-omap2.h>
Vimal Singh2f70a1e2010-02-15 10:03:33 -080017
18#include <asm/mach/flash.h>
19
Afzal Mohammed3ef5d002012-10-05 10:37:27 +053020#include "gpmc.h"
Tony Lindgrendbc04162012-08-31 10:59:07 -070021#include "soc.h"
Afzal Mohammedbc3668e2012-09-29 12:26:13 +053022#include "gpmc-nand.h"
23
24/* minimum size for IO mapping */
25#define NAND_IO_SIZE 4
Tony Lindgrendbc04162012-08-31 10:59:07 -070026
Daniel Mack504f3c62012-12-14 11:36:42 +010027static bool gpmc_hwecc_bch_capable(enum omap_ecc ecc_opt)
Afzal Mohammed3852ccd2012-10-01 02:47:28 +053028{
Pekon Gupta0611c412014-02-05 18:58:30 +053029 /* platforms which support all ECC schemes */
Pekon Gupta2e091d12014-05-19 16:52:36 +053030 if (soc_is_am33xx() || soc_is_am43xx() || cpu_is_omap44xx() ||
Pekon Gupta0611c412014-02-05 18:58:30 +053031 soc_is_omap54xx() || soc_is_dra7xx())
32 return 1;
33
Christoph Fritz33753cd2014-07-14 03:36:18 +020034 if (ecc_opt == OMAP_ECC_BCH4_CODE_HW_DETECTION_SW ||
35 ecc_opt == OMAP_ECC_BCH8_CODE_HW_DETECTION_SW) {
36 if (cpu_is_omap24xx())
37 return 0;
38 else if (cpu_is_omap3630() && (GET_OMAP_REVISION() == 0))
39 return 0;
40 else
41 return 1;
42 }
43
Pekon Gupta0611c412014-02-05 18:58:30 +053044 /* OMAP3xxx do not have ELM engine, so cannot support ECC schemes
45 * which require H/W based ECC error detection */
46 if ((cpu_is_omap34xx() || cpu_is_omap3630()) &&
47 ((ecc_opt == OMAP_ECC_BCH4_CODE_HW) ||
48 (ecc_opt == OMAP_ECC_BCH8_CODE_HW)))
Afzal Mohammed3852ccd2012-10-01 02:47:28 +053049 return 0;
Afzal Mohammed3852ccd2012-10-01 02:47:28 +053050
Pekon Gupta0611c412014-02-05 18:58:30 +053051 /* legacy platforms support only HAM1 (1-bit Hamming) ECC scheme */
Roger Quadros7d5929c2014-08-25 16:15:32 -070052 if (ecc_opt == OMAP_ECC_HAM1_CODE_HW ||
53 ecc_opt == OMAP_ECC_HAM1_CODE_SW)
Pekon Gupta0611c412014-02-05 18:58:30 +053054 return 1;
55 else
56 return 0;
Afzal Mohammed3852ccd2012-10-01 02:47:28 +053057}
58
Ezequiel Garciad0020cc2013-10-27 21:51:47 -030059/* This function will go away once the device-tree convertion is complete */
60static void gpmc_set_legacy(struct omap_nand_platform_data *gpmc_nand_data,
61 struct gpmc_settings *s)
62{
63 /* Enable RD PIN Monitoring Reg */
64 if (gpmc_nand_data->dev_ready) {
65 s->wait_on_read = true;
66 s->wait_on_write = true;
67 }
Ezequiel Garciabbc28cd2013-10-27 21:51:48 -030068
69 if (gpmc_nand_data->devsize == NAND_BUSWIDTH_16)
70 s->device_width = GPMC_DEVWIDTH_16BIT;
71 else
72 s->device_width = GPMC_DEVWIDTH_8BIT;
Ezequiel Garciad0020cc2013-10-27 21:51:47 -030073}
74
Daniel Mack504f3c62012-12-14 11:36:42 +010075int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
76 struct gpmc_timings *gpmc_t)
Vimal Singh2f70a1e2010-02-15 10:03:33 -080077{
Vimal Singh2f70a1e2010-02-15 10:03:33 -080078 int err = 0;
Jon Hunter24db7ec2013-02-21 15:43:08 -060079 struct gpmc_settings s;
Rostislav Lisovy97a288b2014-06-04 16:24:35 +020080 struct platform_device *pdev;
81 struct resource gpmc_nand_res[] = {
82 { .flags = IORESOURCE_MEM, },
83 { .flags = IORESOURCE_IRQ, },
84 { .flags = IORESOURCE_IRQ, },
85 };
Vimal Singh2f70a1e2010-02-15 10:03:33 -080086
Rostislav Lisovy97a288b2014-06-04 16:24:35 +020087 BUG_ON(gpmc_nand_data->cs >= GPMC_CS_NUM);
Vimal Singh2f70a1e2010-02-15 10:03:33 -080088
89 err = gpmc_cs_request(gpmc_nand_data->cs, NAND_IO_SIZE,
Rostislav Lisovy97a288b2014-06-04 16:24:35 +020090 (unsigned long *)&gpmc_nand_res[0].start);
Vimal Singh2f70a1e2010-02-15 10:03:33 -080091 if (err < 0) {
Rostislav Lisovy97a288b2014-06-04 16:24:35 +020092 pr_err("omap2-gpmc: Cannot request GPMC CS %d, error %d\n",
93 gpmc_nand_data->cs, err);
Vimal Singh2f70a1e2010-02-15 10:03:33 -080094 return err;
95 }
Rostislav Lisovy97a288b2014-06-04 16:24:35 +020096 gpmc_nand_res[0].end = gpmc_nand_res[0].start + NAND_IO_SIZE - 1;
97 gpmc_nand_res[1].start = gpmc_get_client_irq(GPMC_IRQ_FIFOEVENTENABLE);
98 gpmc_nand_res[2].start = gpmc_get_client_irq(GPMC_IRQ_COUNT_EVENT);
Afzal Mohammedbc3668e2012-09-29 12:26:13 +053099
100 if (gpmc_t) {
Christoph Fritz4d584362013-04-19 18:29:41 +0200101 err = gpmc_cs_set_timings(gpmc_nand_data->cs, gpmc_t);
Afzal Mohammedbc3668e2012-09-29 12:26:13 +0530102 if (err < 0) {
Rostislav Lisovy97a288b2014-06-04 16:24:35 +0200103 pr_err("omap2-gpmc: Unable to set gpmc timings: %d\n", err);
Afzal Mohammedbc3668e2012-09-29 12:26:13 +0530104 return err;
105 }
Vimal Singh2f70a1e2010-02-15 10:03:33 -0800106 }
107
Rostislav Lisovy97a288b2014-06-04 16:24:35 +0200108 memset(&s, 0, sizeof(struct gpmc_settings));
Ezequiel Garciad0020cc2013-10-27 21:51:47 -0300109 if (gpmc_nand_data->of_node)
Ezequiel Garciae2e699b2013-10-27 21:51:46 -0300110 gpmc_read_settings_dt(gpmc_nand_data->of_node, &s);
Ezequiel Garciad0020cc2013-10-27 21:51:47 -0300111 else
112 gpmc_set_legacy(gpmc_nand_data, &s);
Ezequiel Garciae2e699b2013-10-27 21:51:46 -0300113
114 s.device_nand = true;
Ezequiel Garciae2e699b2013-10-27 21:51:46 -0300115 err = gpmc_cs_program_settings(gpmc_nand_data->cs, &s);
116 if (err < 0)
117 goto out_free_cs;
118
119 err = gpmc_configure(GPMC_CONFIG_WP, 0);
120 if (err < 0)
121 goto out_free_cs;
122
Afzal Mohammedd126d012012-08-30 12:53:22 -0700123 gpmc_update_nand_reg(&gpmc_nand_data->reg, gpmc_nand_data->cs);
124
Pekon Gupta0611c412014-02-05 18:58:30 +0530125 if (!gpmc_hwecc_bch_capable(gpmc_nand_data->ecc_opt)) {
Rostislav Lisovy97a288b2014-06-04 16:24:35 +0200126 pr_err("omap2-nand: Unsupported NAND ECC scheme selected\n");
127 err = -EINVAL;
128 goto out_free_cs;
Pekon Gupta0611c412014-02-05 18:58:30 +0530129 }
Afzal Mohammed3852ccd2012-10-01 02:47:28 +0530130
Rostislav Lisovy97a288b2014-06-04 16:24:35 +0200131
132 pdev = platform_device_alloc("omap2-nand", gpmc_nand_data->cs);
133 if (pdev) {
134 err = platform_device_add_resources(pdev, gpmc_nand_res,
135 ARRAY_SIZE(gpmc_nand_res));
136 if (!err)
137 pdev->dev.platform_data = gpmc_nand_data;
138 } else {
139 err = -ENOMEM;
140 }
141 if (err)
142 goto out_free_pdev;
143
144 err = platform_device_add(pdev);
145 if (err) {
146 dev_err(&pdev->dev, "Unable to register NAND device\n");
147 goto out_free_pdev;
Vimal Singh2f70a1e2010-02-15 10:03:33 -0800148 }
149
150 return 0;
151
Rostislav Lisovy97a288b2014-06-04 16:24:35 +0200152out_free_pdev:
153 platform_device_put(pdev);
Vimal Singh2f70a1e2010-02-15 10:03:33 -0800154out_free_cs:
155 gpmc_cs_free(gpmc_nand_data->cs);
156
157 return err;
158}