blob: f2a2d4706f1fb9befdc8c8ff552d6745309194c0 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Todd Poynore644f7d2005-11-07 21:47:48 +00002/*
3 * Map driver for Intel XScale PXA2xx platforms.
4 *
5 * Author: Nicolas Pitre
6 * Copyright: (C) 2001 MontaVista Software Inc.
Todd Poynore644f7d2005-11-07 21:47:48 +00007 */
8
9#include <linux/module.h>
10#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Todd Poynore644f7d2005-11-07 21:47:48 +000012#include <linux/kernel.h>
Todd Poynore644f7d2005-11-07 21:47:48 +000013#include <linux/platform_device.h>
Todd Poynore644f7d2005-11-07 21:47:48 +000014#include <linux/mtd/mtd.h>
15#include <linux/mtd/map.h>
16#include <linux/mtd/partitions.h>
17
18#include <asm/io.h>
Todd Poynore644f7d2005-11-07 21:47:48 +000019#include <asm/mach/flash.h>
20
Nicolas Pitreccaf5f02009-12-11 02:21:57 +010021#define CACHELINESIZE 32
22
Todd Poynore644f7d2005-11-07 21:47:48 +000023static void pxa2xx_map_inval_cache(struct map_info *map, unsigned long from,
24 ssize_t len)
25{
Nicolas Pitreccaf5f02009-12-11 02:21:57 +010026 unsigned long start = (unsigned long)map->cached + from;
27 unsigned long end = start + len;
28
29 start &= ~(CACHELINESIZE - 1);
30 while (start < end) {
31 /* invalidate D cache line */
32 asm volatile ("mcr p15, 0, %0, c7, c6, 1" : : "r" (start));
33 start += CACHELINESIZE;
34 }
Todd Poynore644f7d2005-11-07 21:47:48 +000035}
36
37struct pxa2xx_flash_info {
Todd Poynore644f7d2005-11-07 21:47:48 +000038 struct mtd_info *mtd;
39 struct map_info map;
40};
41
Artem Bityutskiy0984c892013-03-12 10:46:37 +020042static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL };
Todd Poynore644f7d2005-11-07 21:47:48 +000043
Bill Pemberton06f25512012-11-19 13:23:07 -050044static int pxa2xx_flash_probe(struct platform_device *pdev)
Todd Poynore644f7d2005-11-07 21:47:48 +000045{
Jingoo Hand20d5a52013-07-30 17:18:06 +090046 struct flash_platform_data *flash = dev_get_platdata(&pdev->dev);
Todd Poynore644f7d2005-11-07 21:47:48 +000047 struct pxa2xx_flash_info *info;
Todd Poynore644f7d2005-11-07 21:47:48 +000048 struct resource *res;
Todd Poynore644f7d2005-11-07 21:47:48 +000049
50 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
51 if (!res)
52 return -ENODEV;
53
Julia Lawall2bfefa4c2010-05-13 22:03:15 +020054 info = kzalloc(sizeof(struct pxa2xx_flash_info), GFP_KERNEL);
Todd Poynore644f7d2005-11-07 21:47:48 +000055 if (!info)
56 return -ENOMEM;
57
Geert Uytterhoeven7c4bb4f2013-11-12 20:07:15 +010058 info->map.name = flash->name;
Todd Poynore644f7d2005-11-07 21:47:48 +000059 info->map.bankwidth = flash->width;
60 info->map.phys = res->start;
Joe Perches28f65c112011-06-09 09:13:32 -070061 info->map.size = resource_size(res);
Todd Poynore644f7d2005-11-07 21:47:48 +000062
63 info->map.virt = ioremap(info->map.phys, info->map.size);
64 if (!info->map.virt) {
65 printk(KERN_WARNING "Failed to ioremap %s\n",
66 info->map.name);
Zheng Yongjun23994012022-11-19 07:33:07 +000067 kfree(info);
Todd Poynore644f7d2005-11-07 21:47:48 +000068 return -ENOMEM;
69 }
Christoph Hellwig97ef08a2019-08-17 09:32:28 +020070 info->map.cached = ioremap_cache(info->map.phys, info->map.size);
Todd Poynore644f7d2005-11-07 21:47:48 +000071 if (!info->map.cached)
72 printk(KERN_WARNING "Failed to ioremap cached %s\n",
73 info->map.name);
74 info->map.inval_cache = pxa2xx_map_inval_cache;
75 simple_map_init(&info->map);
76
77 printk(KERN_NOTICE
78 "Probing %s at physical address 0x%08lx"
79 " (%d-bit bankwidth)\n",
80 info->map.name, (unsigned long)info->map.phys,
81 info->map.bankwidth * 8);
82
83 info->mtd = do_map_probe(flash->map_name, &info->map);
84
85 if (!info->mtd) {
86 iounmap((void *)info->map.virt);
87 if (info->map.cached)
88 iounmap(info->map.cached);
Zheng Yongjun23994012022-11-19 07:33:07 +000089 kfree(info);
Todd Poynore644f7d2005-11-07 21:47:48 +000090 return -EIO;
91 }
Frans Klaver24515812015-06-10 22:38:33 +020092 info->mtd->dev.parent = &pdev->dev;
Todd Poynore644f7d2005-11-07 21:47:48 +000093
Artem Bityutskiy42d7fbe2012-03-09 19:24:26 +020094 mtd_device_parse_register(info->mtd, probes, NULL, flash->parts,
95 flash->nr_parts);
Todd Poynore644f7d2005-11-07 21:47:48 +000096
Ming Lei7a192ec2009-02-06 23:40:12 +080097 platform_set_drvdata(pdev, info);
Todd Poynore644f7d2005-11-07 21:47:48 +000098 return 0;
99}
100
Uwe Kleine-Königa1052912023-10-08 22:01:38 +0200101static void pxa2xx_flash_remove(struct platform_device *dev)
Todd Poynore644f7d2005-11-07 21:47:48 +0000102{
Ming Lei7a192ec2009-02-06 23:40:12 +0800103 struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
Todd Poynore644f7d2005-11-07 21:47:48 +0000104
Jamie Iles3dfad122011-05-23 10:22:50 +0100105 mtd_device_unregister(info->mtd);
Todd Poynore644f7d2005-11-07 21:47:48 +0000106
107 map_destroy(info->mtd);
108 iounmap(info->map.virt);
109 if (info->map.cached)
Ard Biesheuvel7769aea2016-02-25 08:57:52 +0100110 iounmap(info->map.cached);
Todd Poynore644f7d2005-11-07 21:47:48 +0000111 kfree(info);
Todd Poynore644f7d2005-11-07 21:47:48 +0000112}
113
114#ifdef CONFIG_PM
Ming Lei7a192ec2009-02-06 23:40:12 +0800115static void pxa2xx_flash_shutdown(struct platform_device *dev)
Todd Poynore644f7d2005-11-07 21:47:48 +0000116{
Ming Lei7a192ec2009-02-06 23:40:12 +0800117 struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
Todd Poynore644f7d2005-11-07 21:47:48 +0000118
Artem Bityutskiy3fe4bae2011-12-23 19:25:16 +0200119 if (info && mtd_suspend(info->mtd) == 0)
Artem Bityutskiyead995f2011-12-23 19:31:25 +0200120 mtd_resume(info->mtd);
Todd Poynore644f7d2005-11-07 21:47:48 +0000121}
122#else
Todd Poynore644f7d2005-11-07 21:47:48 +0000123#define pxa2xx_flash_shutdown NULL
124#endif
125
Ming Lei7a192ec2009-02-06 23:40:12 +0800126static struct platform_driver pxa2xx_flash_driver = {
127 .driver = {
128 .name = "pxa2xx-flash",
Ming Lei7a192ec2009-02-06 23:40:12 +0800129 },
Todd Poynore644f7d2005-11-07 21:47:48 +0000130 .probe = pxa2xx_flash_probe,
Uwe Kleine-Königa1052912023-10-08 22:01:38 +0200131 .remove_new = pxa2xx_flash_remove,
Todd Poynore644f7d2005-11-07 21:47:48 +0000132 .shutdown = pxa2xx_flash_shutdown,
133};
134
Axel Linf99640d2011-11-27 20:45:03 +0800135module_platform_driver(pxa2xx_flash_driver);
Todd Poynore644f7d2005-11-07 21:47:48 +0000136
137MODULE_LICENSE("GPL");
Nicolas Pitre2f82af02009-09-14 03:25:28 -0400138MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net>");
Todd Poynore644f7d2005-11-07 21:47:48 +0000139MODULE_DESCRIPTION("MTD map driver for Intel XScale PXA2xx");