Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | /* * MTD map driver for flash on the DC21285 (the StrongARM-110 companion chip) * * (C) 2000 Nicolas Pitre <nico@cam.org> * * This code is GPL * * $Id: dc21285.c,v 1.15 2003/05/21 12:45:18 dwmw2 Exp $ */ #include <linux/config.h> #include <linux/module.h> #include <linux/types.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/mtd/mtd.h> #include <linux/mtd/map.h> #include <linux/mtd/partitions.h> #include <asm/io.h> #include <asm/hardware/dec21285.h> static struct mtd_info *mymtd; __u8 dc21285_read8(struct map_info *map, unsigned long ofs) { return *(__u8*)(map->map_priv_1 + ofs); } __u16 dc21285_read16(struct map_info *map, unsigned long ofs) { return *(__u16*)(map->map_priv_1 + ofs); } __u32 dc21285_read32(struct map_info *map, unsigned long ofs) { return *(__u32*)(map->map_priv_1 + ofs); } void dc21285_copy_from(struct map_info *map, void *to, unsigned long from, ssize_t len) { memcpy(to, (void*)(map->map_priv_1 + from), len); } void dc21285_write8(struct map_info *map, __u8 d, unsigned long adr) { *CSR_ROMWRITEREG = adr & 3; adr &= ~3; *(__u8*)(map->map_priv_1 + adr) = d; } void dc21285_write16(struct map_info *map, __u16 d, unsigned long adr) { *CSR_ROMWRITEREG = adr & 3; adr &= ~3; *(__u16*)(map->map_priv_1 + adr) = d; } void dc21285_write32(struct map_info *map, __u32 d, unsigned long adr) { *(__u32*)(map->map_priv_1 + adr) = d; } void dc21285_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) { switch (map->buswidth) { case 4: while (len > 0) { __u32 d = *((__u32*)from)++; dc21285_write32(map, d, to); to += 4; len -= 4; } break; case 2: while (len > 0) { __u16 d = *((__u16*)from)++; dc21285_write16(map, d, to); to += 2; len -= 2; } break; case 1: while (len > 0) { __u8 d = *((__u8*)from)++; dc21285_write8(map, d, to); to++; len--; } break; } } struct map_info dc21285_map = { .name = "DC21285 flash", .phys = NO_XIP, .size = 16*1024*1024, .read8 = dc21285_read8, .read16 = dc21285_read16, .read32 = dc21285_read32, .copy_from = dc21285_copy_from, .write8 = dc21285_write8, .write16 = dc21285_write16, .write32 = dc21285_write32, .copy_to = dc21285_copy_to }; /* Partition stuff */ static struct mtd_partition *dc21285_parts; #ifdef CONFIG_MTD_PARTITIONS static const char *probes[] = { "RedBoot", "cmdlinepart", NULL }; #endif int __init init_dc21285(void) { /* * Flash timing is determined with bits 19-16 of the * CSR_SA110_CNTL. The value is the number of wait cycles, or * 0 for 16 cycles (the default). Cycles are 20 ns. * Here we use 7 for 140 ns flash chips. */ /* access time */ *CSR_SA110_CNTL = ((*CSR_SA110_CNTL & ~0x000f0000) | (7 << 16)); /* burst time */ *CSR_SA110_CNTL = ((*CSR_SA110_CNTL & ~0x00f00000) | (7 << 20)); /* tristate time */ *CSR_SA110_CNTL = ((*CSR_SA110_CNTL & ~0x0f000000) | (7 << 24)); /* Determine buswidth */ switch (*CSR_SA110_CNTL & (3<<14)) { case SA110_CNTL_ROMWIDTH_8: dc21285_map.buswidth = 1; break; case SA110_CNTL_ROMWIDTH_16: dc21285_map.buswidth = 2; break; case SA110_CNTL_ROMWIDTH_32: dc21285_map.buswidth = 4; break; default: printk (KERN_ERR "DC21285 flash: undefined buswidth\n"); return -ENXIO; } printk (KERN_NOTICE "DC21285 flash support (%d-bit buswidth)\n", dc21285_map.buswidth*8); /* Let's map the flash area */ dc21285_map.map_priv_1 = (unsigned long)ioremap(DC21285_FLASH, 16*1024*1024); if (!dc21285_map.map_priv_1) { printk("Failed to ioremap\n"); return -EIO; } mymtd = do_map_probe("cfi_probe", &dc21285_map); if (mymtd) { int nrparts = 0; mymtd->owner = THIS_MODULE; /* partition fixup */ #ifdef CONFIG_MTD_PARTITIONS nrparts = parse_mtd_partitions(mymtd, probes, &dc21285_parts, (void *)0); if (nrparts > 0) { add_mtd_partitions(mymtd, dc21285_parts, nrparts); return 0; } #endif add_mtd_device(mymtd); return 0; } iounmap((void *)dc21285_map.map_priv_1); return -ENXIO; } static void __exit cleanup_dc21285(void) { #ifdef CONFIG_MTD_PARTITIONS if (dc21285_parts) { del_mtd_partitions(mymtd); kfree(dc21285_parts); } else #endif del_mtd_device(mymtd); map_destroy(mymtd); iounmap((void *)dc21285_map.map_priv_1); } module_init(init_dc21285); module_exit(cleanup_dc21285); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Nicolas Pitre <nico@cam.org>"); MODULE_DESCRIPTION("MTD map driver for DC21285 boards"); |