Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Map driver for Intel XScale PXA2xx platforms. |
| 3 | * |
| 4 | * Author: Nicolas Pitre |
| 5 | * Copyright: (C) 2001 MontaVista Software Inc. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/platform_device.h> |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 18 | #include <linux/mtd/mtd.h> |
| 19 | #include <linux/mtd/map.h> |
| 20 | #include <linux/mtd/partitions.h> |
| 21 | |
| 22 | #include <asm/io.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 23 | #include <mach/hardware.h> |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 24 | |
| 25 | #include <asm/mach/flash.h> |
| 26 | |
Nicolas Pitre | ccaf5f0 | 2009-12-11 02:21:57 +0100 | [diff] [blame] | 27 | #define CACHELINESIZE 32 |
| 28 | |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 29 | static void pxa2xx_map_inval_cache(struct map_info *map, unsigned long from, |
| 30 | ssize_t len) |
| 31 | { |
Nicolas Pitre | ccaf5f0 | 2009-12-11 02:21:57 +0100 | [diff] [blame] | 32 | unsigned long start = (unsigned long)map->cached + from; |
| 33 | unsigned long end = start + len; |
| 34 | |
| 35 | start &= ~(CACHELINESIZE - 1); |
| 36 | while (start < end) { |
| 37 | /* invalidate D cache line */ |
| 38 | asm volatile ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start)); |
| 39 | start += CACHELINESIZE; |
| 40 | } |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | struct pxa2xx_flash_info { |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 44 | struct mtd_info *mtd; |
| 45 | struct map_info map; |
| 46 | }; |
| 47 | |
| 48 | |
| 49 | static const char *probes[] = { "RedBoot", "cmdlinepart", NULL }; |
| 50 | |
| 51 | |
Bill Pemberton | 06f2551 | 2012-11-19 13:23:07 -0500 | [diff] [blame] | 52 | static int pxa2xx_flash_probe(struct platform_device *pdev) |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 53 | { |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 54 | struct flash_platform_data *flash = pdev->dev.platform_data; |
| 55 | struct pxa2xx_flash_info *info; |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 56 | struct resource *res; |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 57 | |
| 58 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 59 | if (!res) |
| 60 | return -ENODEV; |
| 61 | |
Julia Lawall | 2bfefa4 | 2010-05-13 22:03:15 +0200 | [diff] [blame] | 62 | info = kzalloc(sizeof(struct pxa2xx_flash_info), GFP_KERNEL); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 63 | if (!info) |
| 64 | return -ENOMEM; |
| 65 | |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 66 | info->map.name = (char *) flash->name; |
| 67 | info->map.bankwidth = flash->width; |
| 68 | info->map.phys = res->start; |
Joe Perches | 28f65c11 | 2011-06-09 09:13:32 -0700 | [diff] [blame] | 69 | info->map.size = resource_size(res); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 70 | |
| 71 | info->map.virt = ioremap(info->map.phys, info->map.size); |
| 72 | if (!info->map.virt) { |
| 73 | printk(KERN_WARNING "Failed to ioremap %s\n", |
| 74 | info->map.name); |
| 75 | return -ENOMEM; |
| 76 | } |
| 77 | info->map.cached = |
| 78 | ioremap_cached(info->map.phys, info->map.size); |
| 79 | if (!info->map.cached) |
| 80 | printk(KERN_WARNING "Failed to ioremap cached %s\n", |
| 81 | info->map.name); |
| 82 | info->map.inval_cache = pxa2xx_map_inval_cache; |
| 83 | simple_map_init(&info->map); |
| 84 | |
| 85 | printk(KERN_NOTICE |
| 86 | "Probing %s at physical address 0x%08lx" |
| 87 | " (%d-bit bankwidth)\n", |
| 88 | info->map.name, (unsigned long)info->map.phys, |
| 89 | info->map.bankwidth * 8); |
| 90 | |
| 91 | info->mtd = do_map_probe(flash->map_name, &info->map); |
| 92 | |
| 93 | if (!info->mtd) { |
| 94 | iounmap((void *)info->map.virt); |
| 95 | if (info->map.cached) |
| 96 | iounmap(info->map.cached); |
| 97 | return -EIO; |
| 98 | } |
| 99 | info->mtd->owner = THIS_MODULE; |
| 100 | |
Artem Bityutskiy | 42d7fbe | 2012-03-09 19:24:26 +0200 | [diff] [blame] | 101 | mtd_device_parse_register(info->mtd, probes, NULL, flash->parts, |
| 102 | flash->nr_parts); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 103 | |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 104 | platform_set_drvdata(pdev, info); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 105 | return 0; |
| 106 | } |
| 107 | |
Bill Pemberton | 810b7e0 | 2012-11-19 13:26:04 -0500 | [diff] [blame^] | 108 | static int pxa2xx_flash_remove(struct platform_device *dev) |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 109 | { |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 110 | struct pxa2xx_flash_info *info = platform_get_drvdata(dev); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 111 | |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 112 | platform_set_drvdata(dev, NULL); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 113 | |
Jamie Iles | 3dfad12 | 2011-05-23 10:22:50 +0100 | [diff] [blame] | 114 | mtd_device_unregister(info->mtd); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 115 | |
| 116 | map_destroy(info->mtd); |
| 117 | iounmap(info->map.virt); |
| 118 | if (info->map.cached) |
| 119 | iounmap(info->map.cached); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 120 | kfree(info); |
| 121 | return 0; |
| 122 | } |
| 123 | |
| 124 | #ifdef CONFIG_PM |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 125 | static void pxa2xx_flash_shutdown(struct platform_device *dev) |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 126 | { |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 127 | struct pxa2xx_flash_info *info = platform_get_drvdata(dev); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 128 | |
Artem Bityutskiy | 3fe4bae | 2011-12-23 19:25:16 +0200 | [diff] [blame] | 129 | if (info && mtd_suspend(info->mtd) == 0) |
Artem Bityutskiy | ead995f | 2011-12-23 19:31:25 +0200 | [diff] [blame] | 130 | mtd_resume(info->mtd); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 131 | } |
| 132 | #else |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 133 | #define pxa2xx_flash_shutdown NULL |
| 134 | #endif |
| 135 | |
Ming Lei | 7a192ec | 2009-02-06 23:40:12 +0800 | [diff] [blame] | 136 | static struct platform_driver pxa2xx_flash_driver = { |
| 137 | .driver = { |
| 138 | .name = "pxa2xx-flash", |
| 139 | .owner = THIS_MODULE, |
| 140 | }, |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 141 | .probe = pxa2xx_flash_probe, |
Bill Pemberton | 5153b88 | 2012-11-19 13:21:24 -0500 | [diff] [blame] | 142 | .remove = pxa2xx_flash_remove, |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 143 | .shutdown = pxa2xx_flash_shutdown, |
| 144 | }; |
| 145 | |
Axel Lin | f99640d | 2011-11-27 20:45:03 +0800 | [diff] [blame] | 146 | module_platform_driver(pxa2xx_flash_driver); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 147 | |
| 148 | MODULE_LICENSE("GPL"); |
Nicolas Pitre | 2f82af0 | 2009-09-14 03:25:28 -0400 | [diff] [blame] | 149 | MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net>"); |
Todd Poynor | e644f7d | 2005-11-07 21:47:48 +0000 | [diff] [blame] | 150 | MODULE_DESCRIPTION("MTD map driver for Intel XScale PXA2xx"); |