2 * drivers/mtd/nand/ppchameleonevb.c
4 * Copyright (C) 2003 DAVE Srl (info@wawnet.biz)
6 * Derived from drivers/mtd/nand/edb7312.c
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 * This is a device driver for the NAND flash devices found on the
15 * PPChameleon/PPChameleonEVB system.
16 * PPChameleon options (autodetected):
18 * - ME model: 32MB (Samsung K9F5608U0B)
19 * - HI model: 128MB (Samsung K9F1G08UOM)
20 * PPChameleonEVB options:
21 * - 32MB (Samsung K9F5608U0B)
24 #include <linux/init.h>
25 #include <linux/slab.h>
26 #include <linux/module.h>
27 #include <linux/mtd/mtd.h>
28 #include <linux/mtd/nand.h>
29 #include <linux/mtd/partitions.h>
31 #include <platforms/PPChameleonEVB.h>
33 #undef USE_READY_BUSY_PIN
34 #define USE_READY_BUSY_PIN
35 /* see datasheets (tR) */
36 #define NAND_BIG_DELAY_US 25
37 #define NAND_SMALL_DELAY_US 10
40 #define SZ_4M 0x00400000
41 #define NAND_SMALL_SIZE 0x02000000
42 #define NAND_MTD_NAME "ppchameleon-nand"
43 #define NAND_EVB_MTD_NAME "ppchameleonevb-nand"
45 /* GPIO pins used to drive NAND chip mounted on processor module */
46 #define NAND_nCE_GPIO_PIN (0x80000000 >> 1)
47 #define NAND_CLE_GPIO_PIN (0x80000000 >> 2)
48 #define NAND_ALE_GPIO_PIN (0x80000000 >> 3)
49 #define NAND_RB_GPIO_PIN (0x80000000 >> 4)
50 /* GPIO pins used to drive NAND chip mounted on EVB */
51 #define NAND_EVB_nCE_GPIO_PIN (0x80000000 >> 14)
52 #define NAND_EVB_CLE_GPIO_PIN (0x80000000 >> 15)
53 #define NAND_EVB_ALE_GPIO_PIN (0x80000000 >> 16)
54 #define NAND_EVB_RB_GPIO_PIN (0x80000000 >> 31)
57 * MTD structure for PPChameleonEVB board
59 static struct mtd_info
*ppchameleon_mtd
= NULL
;
60 static struct mtd_info
*ppchameleonevb_mtd
= NULL
;
65 static unsigned long ppchameleon_fio_pbase
= CFG_NAND0_PADDR
;
66 static unsigned long ppchameleonevb_fio_pbase
= CFG_NAND1_PADDR
;
69 module_param(ppchameleon_fio_pbase
, ulong
, 0);
70 module_param(ppchameleonevb_fio_pbase
, ulong
, 0);
72 __setup("ppchameleon_fio_pbase=", ppchameleon_fio_pbase
);
73 __setup("ppchameleonevb_fio_pbase=", ppchameleonevb_fio_pbase
);
77 * Define static partitions for flash devices
79 static struct mtd_partition partition_info_hi
[] = {
80 { .name
= "PPChameleon HI Nand Flash",
82 .size
= 128 * 1024 * 1024
86 static struct mtd_partition partition_info_me
[] = {
87 { .name
= "PPChameleon ME Nand Flash",
89 .size
= 32 * 1024 * 1024
93 static struct mtd_partition partition_info_evb
[] = {
94 { .name
= "PPChameleonEVB Nand Flash",
96 .size
= 32 * 1024 * 1024
100 #define NUM_PARTITIONS 1
103 * hardware specific access to control-lines
105 static void ppchameleon_hwcontrol(struct mtd_info
*mtdinfo
, int cmd
,
108 struct nand_chip
*chip
= mtd
->priv
;
110 if (ctrl
& NAND_CTRL_CHANGE
) {
111 #error Missing headerfiles. No way to fix this. -tglx
113 case NAND_CTL_SETCLE
:
114 MACRO_NAND_CTL_SETCLE((unsigned long)CFG_NAND0_PADDR
);
116 case NAND_CTL_CLRCLE
:
117 MACRO_NAND_CTL_CLRCLE((unsigned long)CFG_NAND0_PADDR
);
119 case NAND_CTL_SETALE
:
120 MACRO_NAND_CTL_SETALE((unsigned long)CFG_NAND0_PADDR
);
122 case NAND_CTL_CLRALE
:
123 MACRO_NAND_CTL_CLRALE((unsigned long)CFG_NAND0_PADDR
);
125 case NAND_CTL_SETNCE
:
126 MACRO_NAND_ENABLE_CE((unsigned long)CFG_NAND0_PADDR
);
128 case NAND_CTL_CLRNCE
:
129 MACRO_NAND_DISABLE_CE((unsigned long)CFG_NAND0_PADDR
);
133 if (cmd
!= NAND_CMD_NONE
)
134 writeb(cmd
, chip
->IO_ADDR_W
);
137 static void ppchameleonevb_hwcontrol(struct mtd_info
*mtdinfo
, int cmd
,
140 struct nand_chip
*chip
= mtd
->priv
;
142 if (ctrl
& NAND_CTRL_CHANGE
) {
143 #error Missing headerfiles. No way to fix this. -tglx
145 case NAND_CTL_SETCLE
:
146 MACRO_NAND_CTL_SETCLE((unsigned long)CFG_NAND1_PADDR
);
148 case NAND_CTL_CLRCLE
:
149 MACRO_NAND_CTL_CLRCLE((unsigned long)CFG_NAND1_PADDR
);
151 case NAND_CTL_SETALE
:
152 MACRO_NAND_CTL_SETALE((unsigned long)CFG_NAND1_PADDR
);
154 case NAND_CTL_CLRALE
:
155 MACRO_NAND_CTL_CLRALE((unsigned long)CFG_NAND1_PADDR
);
157 case NAND_CTL_SETNCE
:
158 MACRO_NAND_ENABLE_CE((unsigned long)CFG_NAND1_PADDR
);
160 case NAND_CTL_CLRNCE
:
161 MACRO_NAND_DISABLE_CE((unsigned long)CFG_NAND1_PADDR
);
165 if (cmd
!= NAND_CMD_NONE
)
166 writeb(cmd
, chip
->IO_ADDR_W
);
169 #ifdef USE_READY_BUSY_PIN
171 * read device ready pin
173 static int ppchameleon_device_ready(struct mtd_info
*minfo
)
175 if (in_be32((volatile unsigned *)GPIO0_IR
) & NAND_RB_GPIO_PIN
)
180 static int ppchameleonevb_device_ready(struct mtd_info
*minfo
)
182 if (in_be32((volatile unsigned *)GPIO0_IR
) & NAND_EVB_RB_GPIO_PIN
)
189 * Main initialization routine
191 static int __init
ppchameleonevb_init(void)
193 struct nand_chip
*this;
194 void __iomem
*ppchameleon_fio_base
;
195 void __iomem
*ppchameleonevb_fio_base
;
197 /*********************************
198 * Processor module NAND (if any) *
199 *********************************/
200 /* Allocate memory for MTD device structure and private data */
201 ppchameleon_mtd
= kmalloc(sizeof(struct mtd_info
) + sizeof(struct nand_chip
), GFP_KERNEL
);
202 if (!ppchameleon_mtd
) {
203 printk("Unable to allocate PPChameleon NAND MTD device structure.\n");
207 /* map physical address */
208 ppchameleon_fio_base
= ioremap(ppchameleon_fio_pbase
, SZ_4M
);
209 if (!ppchameleon_fio_base
) {
210 printk("ioremap PPChameleon NAND flash failed\n");
211 kfree(ppchameleon_mtd
);
215 /* Get pointer to private data */
216 this = (struct nand_chip
*)(&ppchameleon_mtd
[1]);
218 /* Initialize structures */
219 memset(ppchameleon_mtd
, 0, sizeof(struct mtd_info
));
220 memset(this, 0, sizeof(struct nand_chip
));
222 /* Link the private data with the MTD structure */
223 ppchameleon_mtd
->priv
= this;
224 ppchameleon_mtd
->owner
= THIS_MODULE
;
226 /* Initialize GPIOs */
227 /* Pin mapping for NAND chip */
235 out_be32((volatile unsigned *)GPIO0_OSRH
, in_be32((volatile unsigned *)GPIO0_OSRH
) & 0xC0FFFFFF);
236 /* three-state select */
237 out_be32((volatile unsigned *)GPIO0_TSRH
, in_be32((volatile unsigned *)GPIO0_TSRH
) & 0xC0FFFFFF);
238 /* enable output driver */
239 out_be32((volatile unsigned *)GPIO0_TCR
,
240 in_be32((volatile unsigned *)GPIO0_TCR
) | NAND_nCE_GPIO_PIN
| NAND_CLE_GPIO_PIN
| NAND_ALE_GPIO_PIN
);
241 #ifdef USE_READY_BUSY_PIN
242 /* three-state select */
243 out_be32((volatile unsigned *)GPIO0_TSRH
, in_be32((volatile unsigned *)GPIO0_TSRH
) & 0xFF3FFFFF);
244 /* high-impedecence */
245 out_be32((volatile unsigned *)GPIO0_TCR
, in_be32((volatile unsigned *)GPIO0_TCR
) & (~NAND_RB_GPIO_PIN
));
247 out_be32((volatile unsigned *)GPIO0_ISR1H
,
248 (in_be32((volatile unsigned *)GPIO0_ISR1H
) & 0xFF3FFFFF) | 0x00400000);
251 /* insert callbacks */
252 this->IO_ADDR_R
= ppchameleon_fio_base
;
253 this->IO_ADDR_W
= ppchameleon_fio_base
;
254 this->cmd_ctrl
= ppchameleon_hwcontrol
;
255 #ifdef USE_READY_BUSY_PIN
256 this->dev_ready
= ppchameleon_device_ready
;
258 this->chip_delay
= NAND_BIG_DELAY_US
;
260 this->ecc
.mode
= NAND_ECC_SOFT
;
262 /* Scan to find existence of the device (it could not be mounted) */
263 if (nand_scan(ppchameleon_mtd
, 1)) {
264 iounmap((void *)ppchameleon_fio_base
);
265 ppchameleon_fio_base
= NULL
;
266 kfree(ppchameleon_mtd
);
269 #ifndef USE_READY_BUSY_PIN
270 /* Adjust delay if necessary */
271 if (ppchameleon_mtd
->size
== NAND_SMALL_SIZE
)
272 this->chip_delay
= NAND_SMALL_DELAY_US
;
275 ppchameleon_mtd
->name
= "ppchameleon-nand";
277 /* Register the partitions */
278 mtd_device_parse_register(ppchameleon_mtd
, NULL
, 0,
279 ppchameleon_mtd
->size
== NAND_SMALL_SIZE
?
285 /****************************
286 * EVB NAND (always present) *
287 ****************************/
288 /* Allocate memory for MTD device structure and private data */
289 ppchameleonevb_mtd
= kmalloc(sizeof(struct mtd_info
) + sizeof(struct nand_chip
), GFP_KERNEL
);
290 if (!ppchameleonevb_mtd
) {
291 printk("Unable to allocate PPChameleonEVB NAND MTD device structure.\n");
292 if (ppchameleon_fio_base
)
293 iounmap(ppchameleon_fio_base
);
297 /* map physical address */
298 ppchameleonevb_fio_base
= ioremap(ppchameleonevb_fio_pbase
, SZ_4M
);
299 if (!ppchameleonevb_fio_base
) {
300 printk("ioremap PPChameleonEVB NAND flash failed\n");
301 kfree(ppchameleonevb_mtd
);
302 if (ppchameleon_fio_base
)
303 iounmap(ppchameleon_fio_base
);
307 /* Get pointer to private data */
308 this = (struct nand_chip
*)(&ppchameleonevb_mtd
[1]);
310 /* Initialize structures */
311 memset(ppchameleonevb_mtd
, 0, sizeof(struct mtd_info
));
312 memset(this, 0, sizeof(struct nand_chip
));
314 /* Link the private data with the MTD structure */
315 ppchameleonevb_mtd
->priv
= this;
317 /* Initialize GPIOs */
318 /* Pin mapping for NAND chip */
326 out_be32((volatile unsigned *)GPIO0_OSRH
, in_be32((volatile unsigned *)GPIO0_OSRH
) & 0xFFFFFFF0);
327 out_be32((volatile unsigned *)GPIO0_OSRL
, in_be32((volatile unsigned *)GPIO0_OSRL
) & 0x3FFFFFFF);
328 /* three-state select */
329 out_be32((volatile unsigned *)GPIO0_TSRH
, in_be32((volatile unsigned *)GPIO0_TSRH
) & 0xFFFFFFF0);
330 out_be32((volatile unsigned *)GPIO0_TSRL
, in_be32((volatile unsigned *)GPIO0_TSRL
) & 0x3FFFFFFF);
331 /* enable output driver */
332 out_be32((volatile unsigned *)GPIO0_TCR
, in_be32((volatile unsigned *)GPIO0_TCR
) | NAND_EVB_nCE_GPIO_PIN
|
333 NAND_EVB_CLE_GPIO_PIN
| NAND_EVB_ALE_GPIO_PIN
);
334 #ifdef USE_READY_BUSY_PIN
335 /* three-state select */
336 out_be32((volatile unsigned *)GPIO0_TSRL
, in_be32((volatile unsigned *)GPIO0_TSRL
) & 0xFFFFFFFC);
337 /* high-impedecence */
338 out_be32((volatile unsigned *)GPIO0_TCR
, in_be32((volatile unsigned *)GPIO0_TCR
) & (~NAND_EVB_RB_GPIO_PIN
));
340 out_be32((volatile unsigned *)GPIO0_ISR1L
,
341 (in_be32((volatile unsigned *)GPIO0_ISR1L
) & 0xFFFFFFFC) | 0x00000001);
344 /* insert callbacks */
345 this->IO_ADDR_R
= ppchameleonevb_fio_base
;
346 this->IO_ADDR_W
= ppchameleonevb_fio_base
;
347 this->cmd_ctrl
= ppchameleonevb_hwcontrol
;
348 #ifdef USE_READY_BUSY_PIN
349 this->dev_ready
= ppchameleonevb_device_ready
;
351 this->chip_delay
= NAND_SMALL_DELAY_US
;
354 this->ecc
.mode
= NAND_ECC_SOFT
;
356 /* Scan to find existence of the device */
357 if (nand_scan(ppchameleonevb_mtd
, 1)) {
358 iounmap((void *)ppchameleonevb_fio_base
);
359 kfree(ppchameleonevb_mtd
);
360 if (ppchameleon_fio_base
)
361 iounmap(ppchameleon_fio_base
);
365 ppchameleonevb_mtd
->name
= NAND_EVB_MTD_NAME
;
367 /* Register the partitions */
368 mtd_device_parse_register(ppchameleonevb_mtd
, NULL
, 0,
369 ppchameleon_mtd
->size
== NAND_SMALL_SIZE
?
378 module_init(ppchameleonevb_init
);
383 static void __exit
ppchameleonevb_cleanup(void)
385 struct nand_chip
*this;
387 /* Release resources, unregister device(s) */
388 nand_release(ppchameleon_mtd
);
389 nand_release(ppchameleonevb_mtd
);
392 this = (struct nand_chip
*) &ppchameleon_mtd
[1];
393 iounmap((void *) this->IO_ADDR_R
);
394 this = (struct nand_chip
*) &ppchameleonevb_mtd
[1];
395 iounmap((void *) this->IO_ADDR_R
);
397 /* Free the MTD device structure */
398 kfree (ppchameleon_mtd
);
399 kfree (ppchameleonevb_mtd
);
401 module_exit(ppchameleonevb_cleanup
);
403 MODULE_LICENSE("GPL");
404 MODULE_AUTHOR("DAVE Srl <support-ppchameleon@dave-tech.it>");
405 MODULE_DESCRIPTION("MTD map driver for DAVE Srl PPChameleonEVB board");