Linux 6.16-rc6
[linux-2.6-block.git] / drivers / mtd / maps / pxa2xx-flash.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
e644f7d6
TP
2/*
3 * Map driver for Intel XScale PXA2xx platforms.
4 *
5 * Author: Nicolas Pitre
6 * Copyright: (C) 2001 MontaVista Software Inc.
e644f7d6
TP
7 */
8
9#include <linux/module.h>
10#include <linux/types.h>
5a0e3ad6 11#include <linux/slab.h>
e644f7d6 12#include <linux/kernel.h>
e644f7d6 13#include <linux/platform_device.h>
e644f7d6
TP
14#include <linux/mtd/mtd.h>
15#include <linux/mtd/map.h>
16#include <linux/mtd/partitions.h>
17
18#include <asm/io.h>
e644f7d6
TP
19#include <asm/mach/flash.h>
20
ccaf5f05
NP
21#define CACHELINESIZE 32
22
e644f7d6
TP
23static void pxa2xx_map_inval_cache(struct map_info *map, unsigned long from,
24 ssize_t len)
25{
ccaf5f05
NP
26 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 }
e644f7d6
TP
35}
36
37struct pxa2xx_flash_info {
e644f7d6
TP
38 struct mtd_info *mtd;
39 struct map_info map;
40};
41
0984c891 42static const char * const probes[] = { "RedBoot", "cmdlinepart", NULL };
e644f7d6 43
06f25510 44static int pxa2xx_flash_probe(struct platform_device *pdev)
e644f7d6 45{
d20d5a57 46 struct flash_platform_data *flash = dev_get_platdata(&pdev->dev);
e644f7d6 47 struct pxa2xx_flash_info *info;
e644f7d6 48 struct resource *res;
e644f7d6
TP
49
50 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
51 if (!res)
52 return -ENODEV;
53
2bfefa4c 54 info = kzalloc(sizeof(struct pxa2xx_flash_info), GFP_KERNEL);
e644f7d6
TP
55 if (!info)
56 return -ENOMEM;
57
7c4bb4f8 58 info->map.name = flash->name;
e644f7d6
TP
59 info->map.bankwidth = flash->width;
60 info->map.phys = res->start;
28f65c11 61 info->map.size = resource_size(res);
e644f7d6
TP
62
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);
2399401f 67 kfree(info);
e644f7d6
TP
68 return -ENOMEM;
69 }
97ef08ae 70 info->map.cached = ioremap_cache(info->map.phys, info->map.size);
e644f7d6
TP
71 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);
2399401f 89 kfree(info);
e644f7d6
TP
90 return -EIO;
91 }
2451581f 92 info->mtd->dev.parent = &pdev->dev;
e644f7d6 93
42d7fbe2
AB
94 mtd_device_parse_register(info->mtd, probes, NULL, flash->parts,
95 flash->nr_parts);
e644f7d6 96
7a192ec3 97 platform_set_drvdata(pdev, info);
e644f7d6
TP
98 return 0;
99}
100
a105291c 101static void pxa2xx_flash_remove(struct platform_device *dev)
e644f7d6 102{
7a192ec3 103 struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
e644f7d6 104
3dfad123 105 mtd_device_unregister(info->mtd);
e644f7d6
TP
106
107 map_destroy(info->mtd);
108 iounmap(info->map.virt);
109 if (info->map.cached)
7769aea2 110 iounmap(info->map.cached);
e644f7d6 111 kfree(info);
e644f7d6
TP
112}
113
114#ifdef CONFIG_PM
7a192ec3 115static void pxa2xx_flash_shutdown(struct platform_device *dev)
e644f7d6 116{
7a192ec3 117 struct pxa2xx_flash_info *info = platform_get_drvdata(dev);
e644f7d6 118
3fe4bae8 119 if (info && mtd_suspend(info->mtd) == 0)
ead995f8 120 mtd_resume(info->mtd);
e644f7d6
TP
121}
122#else
e644f7d6
TP
123#define pxa2xx_flash_shutdown NULL
124#endif
125
7a192ec3
ML
126static struct platform_driver pxa2xx_flash_driver = {
127 .driver = {
128 .name = "pxa2xx-flash",
7a192ec3 129 },
e644f7d6 130 .probe = pxa2xx_flash_probe,
f8470006 131 .remove = pxa2xx_flash_remove,
e644f7d6
TP
132 .shutdown = pxa2xx_flash_shutdown,
133};
134
f99640de 135module_platform_driver(pxa2xx_flash_driver);
e644f7d6
TP
136
137MODULE_LICENSE("GPL");
2f82af08 138MODULE_AUTHOR("Nicolas Pitre <nico@fluxnic.net>");
e644f7d6 139MODULE_DESCRIPTION("MTD map driver for Intel XScale PXA2xx");