Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 77b2555b52a894a2e39a42e43d993df875c46a6a 275 lines 6.8 kB view raw
1/* 2 * $Id: ixp2000.c,v 1.6 2005/03/18 14:07:46 gleixner Exp $ 3 * 4 * drivers/mtd/maps/ixp2000.c 5 * 6 * Mapping for the Intel XScale IXP2000 based systems 7 * 8 * Copyright (C) 2002 Intel Corp. 9 * Copyright (C) 2003-2004 MontaVista Software, Inc. 10 * 11 * Original Author: Naeem M Afzal <naeem.m.afzal@intel.com> 12 * Maintainer: Deepak Saxena <dsaxena@plexity.net> 13 * 14 * This program is free software; you can redistribute it and/or modify 15 * it under the terms of the GNU General Public License version 2 as 16 * published by the Free Software Foundation. 17 * 18 */ 19 20#include <linux/module.h> 21#include <linux/types.h> 22#include <linux/init.h> 23#include <linux/kernel.h> 24#include <linux/string.h> 25#include <linux/mtd/mtd.h> 26#include <linux/mtd/map.h> 27#include <linux/mtd/partitions.h> 28#include <linux/ioport.h> 29#include <linux/device.h> 30 31#include <asm/io.h> 32#include <asm/hardware.h> 33#include <asm/mach-types.h> 34#include <asm/mach/flash.h> 35 36#include <linux/reboot.h> 37 38struct ixp2000_flash_info { 39 struct mtd_info *mtd; 40 struct map_info map; 41 struct mtd_partition *partitions; 42 struct resource *res; 43 int nr_banks; 44}; 45 46static inline unsigned long flash_bank_setup(struct map_info *map, unsigned long ofs) 47{ 48 unsigned long (*set_bank)(unsigned long) = 49 (unsigned long(*)(unsigned long))map->map_priv_2; 50 51 return (set_bank ? set_bank(ofs) : ofs); 52} 53 54#ifdef __ARMEB__ 55/* 56 * Rev A0 and A1 of IXP2400 silicon have a broken addressing unit which 57 * causes the lower address bits to be XORed with 0x11 on 8 bit accesses 58 * and XORed with 0x10 on 16 bit accesses. See the spec update, erratum 44. 59 */ 60static int erratum44_workaround = 0; 61 62static inline unsigned long address_fix8_write(unsigned long addr) 63{ 64 if (erratum44_workaround) { 65 return (addr ^ 3); 66 } 67 return addr; 68} 69#else 70 71#define address_fix8_write(x) (x) 72#endif 73 74static map_word ixp2000_flash_read8(struct map_info *map, unsigned long ofs) 75{ 76 map_word val; 77 78 val.x[0] = *((u8 *)(map->map_priv_1 + flash_bank_setup(map, ofs))); 79 return val; 80} 81 82/* 83 * We can't use the standard memcpy due to the broken SlowPort 84 * address translation on rev A0 and A1 silicon and the fact that 85 * we have banked flash. 86 */ 87static void ixp2000_flash_copy_from(struct map_info *map, void *to, 88 unsigned long from, ssize_t len) 89{ 90 from = flash_bank_setup(map, from); 91 while(len--) 92 *(__u8 *) to++ = *(__u8 *)(map->map_priv_1 + from++); 93} 94 95static void ixp2000_flash_write8(struct map_info *map, map_word d, unsigned long ofs) 96{ 97 *(__u8 *) (address_fix8_write(map->map_priv_1 + 98 flash_bank_setup(map, ofs))) = d.x[0]; 99} 100 101static void ixp2000_flash_copy_to(struct map_info *map, unsigned long to, 102 const void *from, ssize_t len) 103{ 104 to = flash_bank_setup(map, to); 105 while(len--) { 106 unsigned long tmp = address_fix8_write(map->map_priv_1 + to++); 107 *(__u8 *)(tmp) = *(__u8 *)(from++); 108 } 109} 110 111 112static int ixp2000_flash_remove(struct device *_dev) 113{ 114 struct platform_device *dev = to_platform_device(_dev); 115 struct flash_platform_data *plat = dev->dev.platform_data; 116 struct ixp2000_flash_info *info = dev_get_drvdata(&dev->dev); 117 118 dev_set_drvdata(&dev->dev, NULL); 119 120 if(!info) 121 return 0; 122 123 if (info->mtd) { 124 del_mtd_partitions(info->mtd); 125 map_destroy(info->mtd); 126 } 127 if (info->map.map_priv_1) 128 iounmap((void *) info->map.map_priv_1); 129 130 if (info->partitions) { 131 kfree(info->partitions); } 132 133 if (info->res) { 134 release_resource(info->res); 135 kfree(info->res); 136 } 137 138 if (plat->exit) 139 plat->exit(); 140 141 return 0; 142} 143 144 145static int ixp2000_flash_probe(struct device *_dev) 146{ 147 static const char *probes[] = { "RedBoot", "cmdlinepart", NULL }; 148 struct platform_device *dev = to_platform_device(_dev); 149 struct ixp2000_flash_data *ixp_data = dev->dev.platform_data; 150 struct flash_platform_data *plat; 151 struct ixp2000_flash_info *info; 152 unsigned long window_size; 153 int err = -1; 154 155 if (!ixp_data) 156 return -ENODEV; 157 158 plat = ixp_data->platform_data; 159 if (!plat) 160 return -ENODEV; 161 162 window_size = dev->resource->end - dev->resource->start + 1; 163 dev_info(_dev, "Probe of IXP2000 flash(%d banks x %dMiB)\n", 164 ixp_data->nr_banks, ((u32)window_size >> 20)); 165 166 if (plat->width != 1) { 167 dev_err(_dev, "IXP2000 MTD map only supports 8-bit mode, asking for %d\n", 168 plat->width * 8); 169 return -EIO; 170 } 171 172 info = kmalloc(sizeof(struct ixp2000_flash_info), GFP_KERNEL); 173 if(!info) { 174 err = -ENOMEM; 175 goto Error; 176 } 177 memzero(info, sizeof(struct ixp2000_flash_info)); 178 179 dev_set_drvdata(&dev->dev, info); 180 181 /* 182 * Tell the MTD layer we're not 1:1 mapped so that it does 183 * not attempt to do a direct access on us. 184 */ 185 info->map.phys = NO_XIP; 186 187 info->nr_banks = ixp_data->nr_banks; 188 info->map.size = ixp_data->nr_banks * window_size; 189 info->map.bankwidth = 1; 190 191 /* 192 * map_priv_2 is used to store a ptr to to the bank_setup routine 193 */ 194 info->map.map_priv_2 = (void __iomem *) ixp_data->bank_setup; 195 196 info->map.name = dev->dev.bus_id; 197 info->map.read = ixp2000_flash_read8; 198 info->map.write = ixp2000_flash_write8; 199 info->map.copy_from = ixp2000_flash_copy_from; 200 info->map.copy_to = ixp2000_flash_copy_to; 201 202 info->res = request_mem_region(dev->resource->start, 203 dev->resource->end - dev->resource->start + 1, 204 dev->dev.bus_id); 205 if (!info->res) { 206 dev_err(_dev, "Could not reserve memory region\n"); 207 err = -ENOMEM; 208 goto Error; 209 } 210 211 info->map.map_priv_1 = ioremap(dev->resource->start, 212 dev->resource->end - dev->resource->start + 1); 213 if (!info->map.map_priv_1) { 214 dev_err(_dev, "Failed to ioremap flash region\n"); 215 err = -EIO; 216 goto Error; 217 } 218 219#if defined(__ARMEB__) 220 /* 221 * Enable erratum 44 workaround for NPUs with broken slowport 222 */ 223 224 erratum44_workaround = ixp2000_has_broken_slowport(); 225 dev_info(_dev, "Erratum 44 workaround %s\n", 226 erratum44_workaround ? "enabled" : "disabled"); 227#endif 228 229 info->mtd = do_map_probe(plat->map_name, &info->map); 230 if (!info->mtd) { 231 dev_err(_dev, "map_probe failed\n"); 232 err = -ENXIO; 233 goto Error; 234 } 235 info->mtd->owner = THIS_MODULE; 236 237 err = parse_mtd_partitions(info->mtd, probes, &info->partitions, 0); 238 if (err > 0) { 239 err = add_mtd_partitions(info->mtd, info->partitions, err); 240 if(err) 241 dev_err(_dev, "Could not parse partitions\n"); 242 } 243 244 if (err) 245 goto Error; 246 247 return 0; 248 249Error: 250 ixp2000_flash_remove(_dev); 251 return err; 252} 253 254static struct device_driver ixp2000_flash_driver = { 255 .name = "IXP2000-Flash", 256 .bus = &platform_bus_type, 257 .probe = &ixp2000_flash_probe, 258 .remove = &ixp2000_flash_remove 259}; 260 261static int __init ixp2000_flash_init(void) 262{ 263 return driver_register(&ixp2000_flash_driver); 264} 265 266static void __exit ixp2000_flash_exit(void) 267{ 268 driver_unregister(&ixp2000_flash_driver); 269} 270 271module_init(ixp2000_flash_init); 272module_exit(ixp2000_flash_exit); 273MODULE_LICENSE("GPL"); 274MODULE_AUTHOR("Deepak Saxena <dsaxena@plexity.net>"); 275