2 * Flash memory access on EPXA based devices
4 * (C) 2000 Nicolas Pitre <nico@cam.org>
5 * Copyright (C) 2001 Altera Corporation
6 * Copyright (C) 2001 Red Hat, Inc.
8 * $Id: epxa10db-flash.c,v 1.15 2005/11/07 11:14:27 gleixner Exp $
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/config.h>
26 #include <linux/module.h>
27 #include <linux/types.h>
28 #include <linux/kernel.h>
29 #include <linux/init.h>
30 #include <linux/slab.h>
32 #include <linux/mtd/mtd.h>
33 #include <linux/mtd/map.h>
34 #include <linux/mtd/partitions.h>
37 #include <asm/hardware.h>
39 #ifdef CONFIG_EPXA10DB
40 #define BOARD_NAME "EPXA10DB"
42 #define BOARD_NAME "EPXA1DB"
45 static int nr_parts
= 0;
46 static struct mtd_partition
*parts
;
48 static struct mtd_info
*mymtd
;
50 static int epxa_default_partitions(struct mtd_info
*master
, struct mtd_partition
**pparts
);
53 static struct map_info epxa_map
= {
60 static const char *probes
[] = { "RedBoot", "afs", NULL
};
62 static int __init
epxa_mtd_init(void)
66 printk(KERN_NOTICE
"%s flash device: 0x%x at 0x%x\n", BOARD_NAME
, FLASH_SIZE
, FLASH_START
);
68 epxa_map
.virt
= ioremap(FLASH_START
, FLASH_SIZE
);
70 printk("Failed to ioremap %s flash\n",BOARD_NAME
);
73 simple_map_init(&epxa_map
);
75 mymtd
= do_map_probe("cfi_probe", &epxa_map
);
77 iounmap((void *)epxa_map
.virt
);
81 mymtd
->owner
= THIS_MODULE
;
83 /* Unlock the flash device. */
85 for (i
=0; i
<mymtd
->numeraseregions
;i
++){
87 for(j
=0;j
<mymtd
->eraseregions
[i
].numblocks
;j
++){
88 mymtd
->unlock(mymtd
,mymtd
->eraseregions
[i
].offset
+ j
* mymtd
->eraseregions
[i
].erasesize
,mymtd
->eraseregions
[i
].erasesize
);
93 #ifdef CONFIG_MTD_PARTITIONS
94 nr_parts
= parse_mtd_partitions(mymtd
, probes
, &parts
, 0);
97 add_mtd_partitions(mymtd
, parts
, nr_parts
);
101 /* No recognised partitioning schemes found - use defaults */
102 nr_parts
= epxa_default_partitions(mymtd
, &parts
);
104 add_mtd_partitions(mymtd
, parts
, nr_parts
);
108 /* If all else fails... */
109 add_mtd_device(mymtd
);
113 static void __exit
epxa_mtd_cleanup(void)
117 del_mtd_partitions(mymtd
);
119 del_mtd_device(mymtd
);
123 iounmap((void *)epxa_map
.virt
);
130 * This will do for now, once we decide which bootldr we're finally
131 * going to use then we'll remove this function and do it properly
133 * Partions are currently (as offsets from base of flash):
134 * 0x00000000 - 0x003FFFFF - bootloader (!)
135 * 0x00400000 - 0x00FFFFFF - Flashdisk
138 static int __init
epxa_default_partitions(struct mtd_info
*master
, struct mtd_partition
**pparts
)
140 struct mtd_partition
*parts
;
144 const char *name
= "jffs";
146 printk("Using default partitions for %s\n",BOARD_NAME
);
148 parts
= kmalloc(npartitions
*sizeof(*parts
)+strlen(name
), GFP_KERNEL
);
149 memzero(parts
,npartitions
*sizeof(*parts
)+strlen(name
));
155 names
= (char *)&parts
[npartitions
];
156 parts
[i
].name
= names
;
157 names
+= strlen(name
) + 1;
158 strcpy(parts
[i
].name
, name
);
160 #ifdef CONFIG_EPXA10DB
161 parts
[i
].size
= FLASH_SIZE
-0x00400000;
162 parts
[i
].offset
= 0x00400000;
164 parts
[i
].size
= FLASH_SIZE
-0x00180000;
165 parts
[i
].offset
= 0x00180000;
174 module_init(epxa_mtd_init
);
175 module_exit(epxa_mtd_cleanup
);
177 MODULE_AUTHOR("Clive Davies");
178 MODULE_DESCRIPTION("Altera epxa mtd flash map");
179 MODULE_LICENSE("GPL");