mtd: nand: drop unnecessary partition parser data
[deliverable/linux.git] / drivers / mtd / nand / plat_nand.c
CommitLineData
711fdf62
VW
1/*
2 * Generic NAND driver
3 *
4 * Author: Vitaly Wool <vitalywool@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
ffdac7cd 12#include <linux/err.h>
711fdf62
VW
13#include <linux/io.h>
14#include <linux/module.h>
15#include <linux/platform_device.h>
16#include <linux/slab.h>
17#include <linux/mtd/mtd.h>
18#include <linux/mtd/nand.h>
19#include <linux/mtd/partitions.h>
20
21struct plat_nand_data {
22 struct nand_chip chip;
23 struct mtd_info mtd;
24 void __iomem *io_base;
711fdf62
VW
25};
26
27/*
28 * Probe for the NAND device.
29 */
06f25510 30static int plat_nand_probe(struct platform_device *pdev)
711fdf62 31{
453810b7 32 struct platform_nand_data *pdata = dev_get_platdata(&pdev->dev);
711fdf62 33 struct plat_nand_data *data;
2d098a72 34 struct resource *res;
f2e5a244 35 const char **part_types;
2d098a72
HS
36 int err = 0;
37
da3888cb
JC
38 if (!pdata) {
39 dev_err(&pdev->dev, "platform_nand_data is missing\n");
40 return -EINVAL;
41 }
42
01cd2aba
MV
43 if (pdata->chip.nr_chips < 1) {
44 dev_err(&pdev->dev, "invalid number of chips specified\n");
45 return -EINVAL;
46 }
47
711fdf62 48 /* Allocate memory for the device structure (and zero it) */
ffdac7cd
JH
49 data = devm_kzalloc(&pdev->dev, sizeof(struct plat_nand_data),
50 GFP_KERNEL);
a01eb204 51 if (!data)
711fdf62 52 return -ENOMEM;
711fdf62 53
840f53c3 54 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
ffdac7cd
JH
55 data->io_base = devm_ioremap_resource(&pdev->dev, res);
56 if (IS_ERR(data->io_base))
57 return PTR_ERR(data->io_base);
711fdf62
VW
58
59 data->chip.priv = &data;
a61ae81a 60 nand_set_flash_node(&data->chip, pdev->dev.of_node);
711fdf62 61 data->mtd.priv = &data->chip;
f0aa200c 62 data->mtd.dev.parent = &pdev->dev;
711fdf62
VW
63
64 data->chip.IO_ADDR_R = data->io_base;
65 data->chip.IO_ADDR_W = data->io_base;
66 data->chip.cmd_ctrl = pdata->ctrl.cmd_ctrl;
67 data->chip.dev_ready = pdata->ctrl.dev_ready;
68 data->chip.select_chip = pdata->ctrl.select_chip;
d6fed9e9
AC
69 data->chip.write_buf = pdata->ctrl.write_buf;
70 data->chip.read_buf = pdata->ctrl.read_buf;
b4f7aa84 71 data->chip.read_byte = pdata->ctrl.read_byte;
711fdf62
VW
72 data->chip.chip_delay = pdata->chip.chip_delay;
73 data->chip.options |= pdata->chip.options;
a40f7341 74 data->chip.bbt_options |= pdata->chip.bbt_options;
711fdf62
VW
75
76 data->chip.ecc.hwctl = pdata->ctrl.hwcontrol;
77 data->chip.ecc.layout = pdata->chip.ecclayout;
78 data->chip.ecc.mode = NAND_ECC_SOFT;
79
80 platform_set_drvdata(pdev, data);
81
bf95efd4
HS
82 /* Handle any platform specific setup */
83 if (pdata->ctrl.probe) {
2d098a72
HS
84 err = pdata->ctrl.probe(pdev);
85 if (err)
bf95efd4
HS
86 goto out;
87 }
88
25985edc 89 /* Scan to find existence of the device */
81cbb0b1 90 if (nand_scan(&data->mtd, pdata->chip.nr_chips)) {
2d098a72 91 err = -ENXIO;
711fdf62
VW
92 goto out;
93 }
94
8bf57b0d 95 part_types = pdata->chip.part_probe_types;
f2e5a244 96
a61ae81a 97 err = mtd_device_parse_register(&data->mtd, part_types, NULL,
42d7fbe2
AB
98 pdata->chip.partitions,
99 pdata->chip.nr_partitions);
711fdf62 100
2d098a72
HS
101 if (!err)
102 return err;
711fdf62
VW
103
104 nand_release(&data->mtd);
105out:
bf95efd4
HS
106 if (pdata->ctrl.remove)
107 pdata->ctrl.remove(pdev);
2d098a72 108 return err;
711fdf62
VW
109}
110
111/*
112 * Remove a NAND device.
113 */
810b7e06 114static int plat_nand_remove(struct platform_device *pdev)
711fdf62
VW
115{
116 struct plat_nand_data *data = platform_get_drvdata(pdev);
453810b7 117 struct platform_nand_data *pdata = dev_get_platdata(&pdev->dev);
711fdf62
VW
118
119 nand_release(&data->mtd);
bf95efd4
HS
120 if (pdata->ctrl.remove)
121 pdata->ctrl.remove(pdev);
711fdf62
VW
122
123 return 0;
124}
125
a4f20351
JC
126static const struct of_device_id plat_nand_match[] = {
127 { .compatible = "gen_nand" },
128 {},
129};
130MODULE_DEVICE_TABLE(of, plat_nand_match);
131
711fdf62 132static struct platform_driver plat_nand_driver = {
a4f20351 133 .probe = plat_nand_probe,
5153b88c 134 .remove = plat_nand_remove,
a4f20351
JC
135 .driver = {
136 .name = "gen_nand",
a4f20351 137 .of_match_table = plat_nand_match,
711fdf62
VW
138 },
139};
140
f99640de 141module_platform_driver(plat_nand_driver);
711fdf62
VW
142
143MODULE_LICENSE("GPL");
144MODULE_AUTHOR("Vitaly Wool");
145MODULE_DESCRIPTION("Simple generic NAND driver");
1ff18422 146MODULE_ALIAS("platform:gen_nand");
This page took 0.558622 seconds and 5 git commands to generate.