1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2006-2007 PA Semi, Inc
5 * Author: Egor Martovetsky <egor@pasemi.com>
6 * Maintained by: Olof Johansson <olof@lixom.net>
8 * Driver for the PWRficient onchip NAND flash interface
13 #include <linux/slab.h>
14 #include <linux/module.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/rawnand.h>
17 #include <linux/of_address.h>
18 #include <linux/of_irq.h>
19 #include <linux/of_platform.h>
20 #include <linux/platform_device.h>
21 #include <linux/pci.h>
25 #define LBICTRL_LPCCTL_NR 0x00004000
26 #define CLE_PIN_CTL 15
27 #define ALE_PIN_CTL 14
29 static unsigned int lpcctl
;
30 static struct mtd_info
*pasemi_nand_mtd
;
31 static struct nand_controller controller
;
32 static const char driver_name
[] = "pasemi-nand";
34 static void pasemi_read_buf(struct nand_chip
*chip
, u_char
*buf
, int len
)
37 memcpy_fromio(buf
, chip
->legacy
.IO_ADDR_R
, 0x800);
41 memcpy_fromio(buf
, chip
->legacy
.IO_ADDR_R
, len
);
44 static void pasemi_write_buf(struct nand_chip
*chip
, const u_char
*buf
,
48 memcpy_toio(chip
->legacy
.IO_ADDR_R
, buf
, 0x800);
52 memcpy_toio(chip
->legacy
.IO_ADDR_R
, buf
, len
);
55 static void pasemi_hwcontrol(struct nand_chip
*chip
, int cmd
,
58 if (cmd
== NAND_CMD_NONE
)
62 out_8(chip
->legacy
.IO_ADDR_W
+ (1 << CLE_PIN_CTL
), cmd
);
64 out_8(chip
->legacy
.IO_ADDR_W
+ (1 << ALE_PIN_CTL
), cmd
);
66 /* Push out posted writes */
71 static int pasemi_device_ready(struct nand_chip
*chip
)
73 return !!(inl(lpcctl
) & LBICTRL_LPCCTL_NR
);
76 static int pasemi_attach_chip(struct nand_chip
*chip
)
78 chip
->ecc
.engine_type
= NAND_ECC_ENGINE_TYPE_SOFT
;
80 if (chip
->ecc
.algo
== NAND_ECC_ALGO_UNKNOWN
)
81 chip
->ecc
.algo
= NAND_ECC_ALGO_HAMMING
;
86 static const struct nand_controller_ops pasemi_ops
= {
87 .attach_chip
= pasemi_attach_chip
,
90 static int pasemi_nand_probe(struct platform_device
*ofdev
)
92 struct device
*dev
= &ofdev
->dev
;
94 struct device_node
*np
= dev
->of_node
;
96 struct nand_chip
*chip
;
99 err
= of_address_to_resource(np
, 0, &res
);
104 /* We only support one device at the moment */
108 dev_dbg(dev
, "pasemi_nand at %pR\n", &res
);
110 /* Allocate memory for MTD device structure and private data */
111 chip
= kzalloc(sizeof(struct nand_chip
), GFP_KERNEL
);
117 controller
.ops
= &pasemi_ops
;
118 nand_controller_init(&controller
);
119 chip
->controller
= &controller
;
121 pasemi_nand_mtd
= nand_to_mtd(chip
);
123 /* Link the private data with the MTD structure */
124 pasemi_nand_mtd
->dev
.parent
= dev
;
126 chip
->legacy
.IO_ADDR_R
= of_iomap(np
, 0);
127 chip
->legacy
.IO_ADDR_W
= chip
->legacy
.IO_ADDR_R
;
129 if (!chip
->legacy
.IO_ADDR_R
) {
134 pdev
= pci_get_device(PCI_VENDOR_ID_PASEMI
, 0xa008, NULL
);
140 lpcctl
= pci_resource_start(pdev
, 0);
143 if (!request_region(lpcctl
, 4, driver_name
)) {
148 chip
->legacy
.cmd_ctrl
= pasemi_hwcontrol
;
149 chip
->legacy
.dev_ready
= pasemi_device_ready
;
150 chip
->legacy
.read_buf
= pasemi_read_buf
;
151 chip
->legacy
.write_buf
= pasemi_write_buf
;
152 chip
->legacy
.chip_delay
= 0;
154 /* Enable the following for a flash based bad block table */
155 chip
->bbt_options
= NAND_BBT_USE_FLASH
;
157 /* Scan to find existence of the device */
158 err
= nand_scan(chip
, 1);
162 if (mtd_device_register(pasemi_nand_mtd
, NULL
, 0)) {
163 dev_err(dev
, "Unable to register MTD device\n");
165 goto out_cleanup_nand
;
168 dev_info(dev
, "PA Semi NAND flash at %pR, control at I/O %x\n", &res
,
176 release_region(lpcctl
, 4);
178 iounmap(chip
->legacy
.IO_ADDR_R
);
185 static int pasemi_nand_remove(struct platform_device
*ofdev
)
187 struct nand_chip
*chip
;
190 if (!pasemi_nand_mtd
)
193 chip
= mtd_to_nand(pasemi_nand_mtd
);
195 /* Release resources, unregister device */
196 ret
= mtd_device_unregister(pasemi_nand_mtd
);
200 release_region(lpcctl
, 4);
202 iounmap(chip
->legacy
.IO_ADDR_R
);
204 /* Free the MTD device structure */
207 pasemi_nand_mtd
= NULL
;
212 static const struct of_device_id pasemi_nand_match
[] =
215 .compatible
= "pasemi,localbus-nand",
220 MODULE_DEVICE_TABLE(of
, pasemi_nand_match
);
222 static struct platform_driver pasemi_nand_driver
=
226 .of_match_table
= pasemi_nand_match
,
228 .probe
= pasemi_nand_probe
,
229 .remove
= pasemi_nand_remove
,
232 module_platform_driver(pasemi_nand_driver
);
234 MODULE_LICENSE("GPL");
235 MODULE_AUTHOR("Egor Martovetsky <egor@pasemi.com>");
236 MODULE_DESCRIPTION("NAND flash interface driver for PA Semi PWRficient");