2 * Freescale UPM NAND driver.
4 * Copyright © 2007-2008 MontaVista Software, Inc.
6 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/delay.h>
17 #include <linux/mtd/nand.h>
18 #include <linux/mtd/nand_ecc.h>
19 #include <linux/mtd/partitions.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/of_address.h>
22 #include <linux/of_platform.h>
23 #include <linux/of_gpio.h>
25 #include <linux/slab.h>
26 #include <asm/fsl_lbc.h>
28 #define FSL_UPM_WAIT_RUN_PATTERN 0x1
29 #define FSL_UPM_WAIT_WRITE_BYTE 0x2
30 #define FSL_UPM_WAIT_WRITE_BUFFER 0x4
35 struct nand_chip chip
;
37 struct mtd_partition
*parts
;
39 uint8_t upm_addr_offset
;
40 uint8_t upm_cmd_offset
;
41 void __iomem
*io_base
;
42 int rnb_gpio
[NAND_MAX_CHIPS
];
43 uint32_t mchip_offsets
[NAND_MAX_CHIPS
];
45 uint32_t mchip_number
;
50 static inline struct fsl_upm_nand
*to_fsl_upm_nand(struct mtd_info
*mtdinfo
)
52 return container_of(mtdinfo
, struct fsl_upm_nand
, mtd
);
55 static int fun_chip_ready(struct mtd_info
*mtd
)
57 struct fsl_upm_nand
*fun
= to_fsl_upm_nand(mtd
);
59 if (gpio_get_value(fun
->rnb_gpio
[fun
->mchip_number
]))
62 dev_vdbg(fun
->dev
, "busy\n");
66 static void fun_wait_rnb(struct fsl_upm_nand
*fun
)
68 if (fun
->rnb_gpio
[fun
->mchip_number
] >= 0) {
71 while (--cnt
&& !fun_chip_ready(&fun
->mtd
))
74 dev_err(fun
->dev
, "tired waiting for RNB\n");
80 static void fun_cmd_ctrl(struct mtd_info
*mtd
, int cmd
, unsigned int ctrl
)
82 struct nand_chip
*chip
= mtd
->priv
;
83 struct fsl_upm_nand
*fun
= to_fsl_upm_nand(mtd
);
86 if (!(ctrl
& fun
->last_ctrl
)) {
87 fsl_upm_end_pattern(&fun
->upm
);
89 if (cmd
== NAND_CMD_NONE
)
92 fun
->last_ctrl
= ctrl
& (NAND_ALE
| NAND_CLE
);
95 if (ctrl
& NAND_CTRL_CHANGE
) {
97 fsl_upm_start_pattern(&fun
->upm
, fun
->upm_addr_offset
);
98 else if (ctrl
& NAND_CLE
)
99 fsl_upm_start_pattern(&fun
->upm
, fun
->upm_cmd_offset
);
102 mar
= (cmd
<< (32 - fun
->upm
.width
)) |
103 fun
->mchip_offsets
[fun
->mchip_number
];
104 fsl_upm_run_pattern(&fun
->upm
, chip
->IO_ADDR_R
, mar
);
106 if (fun
->wait_flags
& FSL_UPM_WAIT_RUN_PATTERN
)
110 static void fun_select_chip(struct mtd_info
*mtd
, int mchip_nr
)
112 struct nand_chip
*chip
= mtd
->priv
;
113 struct fsl_upm_nand
*fun
= to_fsl_upm_nand(mtd
);
115 if (mchip_nr
== -1) {
116 chip
->cmd_ctrl(mtd
, NAND_CMD_NONE
, 0 | NAND_CTRL_CHANGE
);
117 } else if (mchip_nr
>= 0 && mchip_nr
< NAND_MAX_CHIPS
) {
118 fun
->mchip_number
= mchip_nr
;
119 chip
->IO_ADDR_R
= fun
->io_base
+ fun
->mchip_offsets
[mchip_nr
];
120 chip
->IO_ADDR_W
= chip
->IO_ADDR_R
;
126 static uint8_t fun_read_byte(struct mtd_info
*mtd
)
128 struct fsl_upm_nand
*fun
= to_fsl_upm_nand(mtd
);
130 return in_8(fun
->chip
.IO_ADDR_R
);
133 static void fun_read_buf(struct mtd_info
*mtd
, uint8_t *buf
, int len
)
135 struct fsl_upm_nand
*fun
= to_fsl_upm_nand(mtd
);
138 for (i
= 0; i
< len
; i
++)
139 buf
[i
] = in_8(fun
->chip
.IO_ADDR_R
);
142 static void fun_write_buf(struct mtd_info
*mtd
, const uint8_t *buf
, int len
)
144 struct fsl_upm_nand
*fun
= to_fsl_upm_nand(mtd
);
147 for (i
= 0; i
< len
; i
++) {
148 out_8(fun
->chip
.IO_ADDR_W
, buf
[i
]);
149 if (fun
->wait_flags
& FSL_UPM_WAIT_WRITE_BYTE
)
152 if (fun
->wait_flags
& FSL_UPM_WAIT_WRITE_BUFFER
)
156 static int fun_chip_init(struct fsl_upm_nand
*fun
,
157 const struct device_node
*upm_np
,
158 const struct resource
*io_res
)
161 struct device_node
*flash_np
;
162 struct mtd_part_parser_data ppdata
;
164 fun
->chip
.IO_ADDR_R
= fun
->io_base
;
165 fun
->chip
.IO_ADDR_W
= fun
->io_base
;
166 fun
->chip
.cmd_ctrl
= fun_cmd_ctrl
;
167 fun
->chip
.chip_delay
= fun
->chip_delay
;
168 fun
->chip
.read_byte
= fun_read_byte
;
169 fun
->chip
.read_buf
= fun_read_buf
;
170 fun
->chip
.write_buf
= fun_write_buf
;
171 fun
->chip
.ecc
.mode
= NAND_ECC_SOFT
;
172 if (fun
->mchip_count
> 1)
173 fun
->chip
.select_chip
= fun_select_chip
;
175 if (fun
->rnb_gpio
[0] >= 0)
176 fun
->chip
.dev_ready
= fun_chip_ready
;
178 fun
->mtd
.priv
= &fun
->chip
;
179 fun
->mtd
.owner
= THIS_MODULE
;
181 flash_np
= of_get_next_child(upm_np
, NULL
);
185 fun
->mtd
.name
= kasprintf(GFP_KERNEL
, "0x%llx.%s", (u64
)io_res
->start
,
187 if (!fun
->mtd
.name
) {
192 ret
= nand_scan(&fun
->mtd
, fun
->mchip_count
);
196 ppdata
.of_node
= flash_np
;
197 ret
= mtd_device_parse_register(&fun
->mtd
, NULL
, &ppdata
, NULL
, 0);
199 of_node_put(flash_np
);
201 kfree(fun
->mtd
.name
);
205 static int fun_probe(struct platform_device
*ofdev
)
207 struct fsl_upm_nand
*fun
;
208 struct resource io_res
;
215 fun
= kzalloc(sizeof(*fun
), GFP_KERNEL
);
219 ret
= of_address_to_resource(ofdev
->dev
.of_node
, 0, &io_res
);
221 dev_err(&ofdev
->dev
, "can't get IO base\n");
225 ret
= fsl_upm_find(io_res
.start
, &fun
->upm
);
227 dev_err(&ofdev
->dev
, "can't find UPM\n");
231 prop
= of_get_property(ofdev
->dev
.of_node
, "fsl,upm-addr-offset",
233 if (!prop
|| size
!= sizeof(uint32_t)) {
234 dev_err(&ofdev
->dev
, "can't get UPM address offset\n");
238 fun
->upm_addr_offset
= *prop
;
240 prop
= of_get_property(ofdev
->dev
.of_node
, "fsl,upm-cmd-offset", &size
);
241 if (!prop
|| size
!= sizeof(uint32_t)) {
242 dev_err(&ofdev
->dev
, "can't get UPM command offset\n");
246 fun
->upm_cmd_offset
= *prop
;
248 prop
= of_get_property(ofdev
->dev
.of_node
,
249 "fsl,upm-addr-line-cs-offsets", &size
);
250 if (prop
&& (size
/ sizeof(uint32_t)) > 0) {
251 fun
->mchip_count
= size
/ sizeof(uint32_t);
252 if (fun
->mchip_count
>= NAND_MAX_CHIPS
) {
253 dev_err(&ofdev
->dev
, "too much multiple chips\n");
256 for (i
= 0; i
< fun
->mchip_count
; i
++)
257 fun
->mchip_offsets
[i
] = be32_to_cpu(prop
[i
]);
259 fun
->mchip_count
= 1;
262 for (i
= 0; i
< fun
->mchip_count
; i
++) {
263 fun
->rnb_gpio
[i
] = -1;
264 rnb_gpio
= of_get_gpio(ofdev
->dev
.of_node
, i
);
266 ret
= gpio_request(rnb_gpio
, dev_name(&ofdev
->dev
));
269 "can't request RNB gpio #%d\n", i
);
272 gpio_direction_input(rnb_gpio
);
273 fun
->rnb_gpio
[i
] = rnb_gpio
;
274 } else if (rnb_gpio
== -EINVAL
) {
275 dev_err(&ofdev
->dev
, "RNB gpio #%d is invalid\n", i
);
280 prop
= of_get_property(ofdev
->dev
.of_node
, "chip-delay", NULL
);
282 fun
->chip_delay
= be32_to_cpup(prop
);
284 fun
->chip_delay
= 50;
286 prop
= of_get_property(ofdev
->dev
.of_node
, "fsl,upm-wait-flags", &size
);
287 if (prop
&& size
== sizeof(uint32_t))
288 fun
->wait_flags
= be32_to_cpup(prop
);
290 fun
->wait_flags
= FSL_UPM_WAIT_RUN_PATTERN
|
291 FSL_UPM_WAIT_WRITE_BYTE
;
293 fun
->io_base
= devm_ioremap_nocache(&ofdev
->dev
, io_res
.start
,
294 resource_size(&io_res
));
300 fun
->dev
= &ofdev
->dev
;
301 fun
->last_ctrl
= NAND_CLE
;
303 ret
= fun_chip_init(fun
, ofdev
->dev
.of_node
, &io_res
);
307 dev_set_drvdata(&ofdev
->dev
, fun
);
311 for (i
= 0; i
< fun
->mchip_count
; i
++) {
312 if (fun
->rnb_gpio
[i
] < 0)
314 gpio_free(fun
->rnb_gpio
[i
]);
322 static int fun_remove(struct platform_device
*ofdev
)
324 struct fsl_upm_nand
*fun
= dev_get_drvdata(&ofdev
->dev
);
327 nand_release(&fun
->mtd
);
328 kfree(fun
->mtd
.name
);
330 for (i
= 0; i
< fun
->mchip_count
; i
++) {
331 if (fun
->rnb_gpio
[i
] < 0)
333 gpio_free(fun
->rnb_gpio
[i
]);
341 static const struct of_device_id of_fun_match
[] = {
342 { .compatible
= "fsl,upm-nand" },
345 MODULE_DEVICE_TABLE(of
, of_fun_match
);
347 static struct platform_driver of_fun_driver
= {
349 .name
= "fsl,upm-nand",
350 .of_match_table
= of_fun_match
,
353 .remove
= fun_remove
,
356 module_platform_driver(of_fun_driver
);
358 MODULE_LICENSE("GPL");
359 MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
360 MODULE_DESCRIPTION("Driver for NAND chips working through Freescale "
361 "LocalBus User-Programmable Machine");