pxa2xx-flash.c 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Map driver for Intel XScale PXA2xx platforms.
 *
 * Author:	Nicolas Pitre
 * Copyright:	(C) 2001 MontaVista Software Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/types.h>
14
#include <linux/slab.h>
15 16 17 18 19 20 21 22
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>

#include <asm/io.h>
23
#include <mach/hardware.h>
24 25 26

#include <asm/mach/flash.h>

27 28
#define CACHELINESIZE	32

29 30 31
static void pxa2xx_map_inval_cache(struct map_info *map, unsigned long from,
				      ssize_t len)
{
32 33 34 35 36 37 38 39 40
	unsigned long start = (unsigned long)map->cached + from;
	unsigned long end = start + len;

	start &= ~(CACHELINESIZE - 1);
	while (start < end) {
		/* invalidate D cache line */
		asm volatile ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start));
		start += CACHELINESIZE;
	}
41 42 43 44 45 46 47
}

struct pxa2xx_flash_info {
	struct mtd_info		*mtd;
	struct map_info		map;
};

48
static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL };
49

B
Bill Pemberton 已提交
50
static int pxa2xx_flash_probe(struct platform_device *pdev)
51 52 53 54 55 56 57 58 59
{
	struct flash_platform_data *flash = pdev->dev.platform_data;
	struct pxa2xx_flash_info *info;
	struct resource *res;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		return -ENODEV;

J
Julia Lawall 已提交
60
	info = kzalloc(sizeof(struct pxa2xx_flash_info), GFP_KERNEL);
61 62 63 64 65 66
	if (!info)
		return -ENOMEM;

	info->map.name = (char *) flash->name;
	info->map.bankwidth = flash->width;
	info->map.phys = res->start;
67
	info->map.size = resource_size(res);
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

	info->map.virt = ioremap(info->map.phys, info->map.size);
	if (!info->map.virt) {
		printk(KERN_WARNING "Failed to ioremap %s\n",
		       info->map.name);
		return -ENOMEM;
	}
	info->map.cached =
		ioremap_cached(info->map.phys, info->map.size);
	if (!info->map.cached)
		printk(KERN_WARNING "Failed to ioremap cached %s\n",
		       info->map.name);
	info->map.inval_cache = pxa2xx_map_inval_cache;
	simple_map_init(&info->map);

	printk(KERN_NOTICE
	       "Probing %s at physical address 0x%08lx"
	       " (%d-bit bankwidth)\n",
	       info->map.name, (unsigned long)info->map.phys,
	       info->map.bankwidth * 8);

	info->mtd = do_map_probe(flash->map_name, &info->map);

	if (!info->mtd) {
		iounmap((void *)info->map.virt);
		if (info->map.cached)
			iounmap(info->map.cached);
		return -EIO;
	}
	info->mtd->owner = THIS_MODULE;

99 100
	mtd_device_parse_register(info->mtd, probes, NULL, flash->parts,
				  flash->nr_parts);
101

102
	platform_set_drvdata(pdev, info);
103 104 105
	return 0;
}

B
Bill Pemberton 已提交
106
static int pxa2xx_flash_remove(struct platform_device *dev)
107
{
108
	struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
109

110
	platform_set_drvdata(dev, NULL);
111

112
	mtd_device_unregister(info->mtd);
113 114 115 116 117 118 119 120 121 122

	map_destroy(info->mtd);
	iounmap(info->map.virt);
	if (info->map.cached)
		iounmap(info->map.cached);
	kfree(info);
	return 0;
}

#ifdef CONFIG_PM
123
static void pxa2xx_flash_shutdown(struct platform_device *dev)
124
{
125
	struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
126

127
	if (info && mtd_suspend(info->mtd) == 0)
128
		mtd_resume(info->mtd);
129 130 131 132 133
}
#else
#define pxa2xx_flash_shutdown NULL
#endif

134 135 136 137 138
static struct platform_driver pxa2xx_flash_driver = {
	.driver = {
		.name		= "pxa2xx-flash",
		.owner		= THIS_MODULE,
	},
139
	.probe		= pxa2xx_flash_probe,
B
Bill Pemberton 已提交
140
	.remove		= pxa2xx_flash_remove,
141 142 143
	.shutdown	= pxa2xx_flash_shutdown,
};

144
module_platform_driver(pxa2xx_flash_driver);
145 146

MODULE_LICENSE("GPL");
147
MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net>");
148
MODULE_DESCRIPTION("MTD map driver for Intel XScale PXA2xx");