Release 4.7 drivers/mtd/maps/physmap.c
/*
* Normal mappings of chips in physical memory
*
* Copyright (C) 2003 MontaVista Software Inc.
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
*
* 031022 - [jsun] add run-time configure and partition setup
*/
#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
#include <linux/mtd/concat.h>
#include <linux/io.h>
#define MAX_RESOURCES 4
struct physmap_flash_info {
struct mtd_info *mtd[MAX_RESOURCES];
struct mtd_info *cmtd;
struct map_info map[MAX_RESOURCES];
spinlock_t vpp_lock;
int vpp_refcnt;
};
static int physmap_flash_remove(struct platform_device *dev)
{
struct physmap_flash_info *info;
struct physmap_flash_data *physmap_data;
int i;
info = platform_get_drvdata(dev);
if (info == NULL)
return 0;
physmap_data = dev_get_platdata(&dev->dev);
if (info->cmtd) {
mtd_device_unregister(info->cmtd);
if (info->cmtd != info->mtd[0])
mtd_concat_destroy(info->cmtd);
}
for (i = 0; i < MAX_RESOURCES; i++) {
if (info->mtd[i] != NULL)
map_destroy(info->mtd[i]);
}
if (physmap_data->exit)
physmap_data->exit(dev);
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lennert buytenhek | lennert buytenhek | 60 | 43.80% | 1 | 10.00% |
atsushi nemoto | atsushi nemoto | 37 | 27.01% | 1 | 10.00% |
marc zyngier | marc zyngier | 13 | 9.49% | 1 | 10.00% |
stefan roese | stefan roese | 10 | 7.30% | 1 | 10.00% |
h hartley sweeten | h hartley sweeten | 8 | 5.84% | 2 | 20.00% |
david woodhouse | david woodhouse | 4 | 2.92% | 2 | 20.00% |
jingoo han | jingoo han | 4 | 2.92% | 1 | 10.00% |
jamie iles | jamie iles | 1 | 0.73% | 1 | 10.00% |
| Total | 137 | 100.00% | 10 | 100.00% |
static void physmap_set_vpp(struct map_info *map, int state)
{
struct platform_device *pdev;
struct physmap_flash_data *physmap_data;
struct physmap_flash_info *info;
unsigned long flags;
pdev = (struct platform_device *)map->map_priv_1;
physmap_data = dev_get_platdata(&pdev->dev);
if (!physmap_data->set_vpp)
return;
info = platform_get_drvdata(pdev);
spin_lock_irqsave(&info->vpp_lock, flags);
if (state) {
if (++info->vpp_refcnt == 1) /* first nested 'on' */
physmap_data->set_vpp(pdev, 1);
} else {
if (--info->vpp_refcnt == 0) /* last nested 'off' */
physmap_data->set_vpp(pdev, 0);
}
spin_unlock_irqrestore(&info->vpp_lock, flags);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
paul parsons | paul parsons | 77 | 56.62% | 1 | 33.33% |
marc zyngier | marc zyngier | 55 | 40.44% | 1 | 33.33% |
jingoo han | jingoo han | 4 | 2.94% | 1 | 33.33% |
| Total | 136 | 100.00% | 3 | 100.00% |
static const char * const rom_probe_types[] = {
"cfi_probe", "jedec_probe", "qinfo_probe", "map_rom", NULL };
static const char * const part_probe_types[] = {
"cmdlinepart", "RedBoot", "afs", NULL };
static int physmap_flash_probe(struct platform_device *dev)
{
struct physmap_flash_data *physmap_data;
struct physmap_flash_info *info;
const char * const *probe_type;
const char * const *part_types;
int err = 0;
int i;
int devices_found = 0;
physmap_data = dev_get_platdata(&dev->dev);
if (physmap_data == NULL)
return -ENODEV;
info = devm_kzalloc(&dev->dev, sizeof(struct physmap_flash_info),
GFP_KERNEL);
if (info == NULL) {
err = -ENOMEM;
goto err_out;
}
if (physmap_data->init) {
err = physmap_data->init(dev);
if (err)
goto err_out;
}
platform_set_drvdata(dev, info);
for (i = 0; i < dev->num_resources; i++) {
printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
(unsigned long long)resource_size(&dev->resource[i]),
(unsigned long long)dev->resource[i].start);
if (!devm_request_mem_region(&dev->dev,
dev->resource[i].start,
resource_size(&dev->resource[i]),
dev_name(&dev->dev))) {
dev_err(&dev->dev, "Could not reserve memory region\n");
err = -ENOMEM;
goto err_out;
}
info->map[i].name = dev_name(&dev->dev);
info->map[i].phys = dev->resource[i].start;
info->map[i].size = resource_size(&dev->resource[i]);
info->map[i].bankwidth = physmap_data->width;
info->map[i].set_vpp = physmap_set_vpp;
info->map[i].pfow_base = physmap_data->pfow_base;
info->map[i].map_priv_1 = (unsigned long)dev;
info->map[i].virt = devm_ioremap(&dev->dev, info->map[i].phys,
info->map[i].size);
if (info->map[i].virt == NULL) {
dev_err(&dev->dev, "Failed to ioremap flash region\n");
err = -EIO;
goto err_out;
}
simple_map_init(&info->map[i]);
probe_type = rom_probe_types;
if (physmap_data->probe_type == NULL) {
for (; info->mtd[i] == NULL && *probe_type != NULL; probe_type++)
info->mtd[i] = do_map_probe(*probe_type, &info->map[i]);
} else
info->mtd[i] = do_map_probe(physmap_data->probe_type, &info->map[i]);
if (info->mtd[i] == NULL) {
dev_err(&dev->dev, "map_probe failed\n");
err = -ENXIO;
goto err_out;
} else {
devices_found++;
}
info->mtd[i]->dev.parent = &dev->dev;
}
if (devices_found == 1) {
info->cmtd = info->mtd[0];
} else if (devices_found > 1) {
/*
* We detected multiple devices. Concatenate them together.
*/
info->cmtd = mtd_concat_create(info->mtd, devices_found, dev_name(&dev->dev));
if (info->cmtd == NULL)
err = -ENXIO;
}
if (err)
goto err_out;
spin_lock_init(&info->vpp_lock);
part_types = physmap_data->part_probe_types ? : part_probe_types;
mtd_device_parse_register(info->cmtd, part_types, NULL,
physmap_data->parts, physmap_data->nr_parts);
return 0;
err_out:
physmap_flash_remove(dev);
return err;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lennert buytenhek | lennert buytenhek | 237 | 34.80% | 1 | 4.55% |
stefan roese | stefan roese | 191 | 28.05% | 1 | 4.55% |
david woodhouse | david woodhouse | 44 | 6.46% | 2 | 9.09% |
marc zyngier | marc zyngier | 40 | 5.87% | 2 | 9.09% |
pre-git | pre-git | 34 | 4.99% | 2 | 9.09% |
barry song | barry song | 33 | 4.85% | 1 | 4.55% |
atsushi nemoto | atsushi nemoto | 21 | 3.08% | 1 | 4.55% |
jonas gorski | jonas gorski | 16 | 2.35% | 1 | 4.55% |
alexey korolev | alexey korolev | 13 | 1.91% | 1 | 4.55% |
h hartley sweeten | h hartley sweeten | 12 | 1.76% | 1 | 4.55% |
kay sievers | kay sievers | 12 | 1.76% | 1 | 4.55% |
david brownell | david brownell | 9 | 1.32% | 1 | 4.55% |
paul parsons | paul parsons | 8 | 1.17% | 1 | 4.55% |
jingoo han | jingoo han | 4 | 0.59% | 1 | 4.55% |
artem bityutskiy | artem bityutskiy | 3 | 0.44% | 2 | 9.09% |
linus torvalds | linus torvalds | 2 | 0.29% | 1 | 4.55% |
roel kluin | roel kluin | 1 | 0.15% | 1 | 4.55% |
dmitry eremin-baryshkov | dmitry eremin-baryshkov | 1 | 0.15% | 1 | 4.55% |
| Total | 681 | 100.00% | 22 | 100.00% |
#ifdef CONFIG_PM
static void physmap_flash_shutdown(struct platform_device *dev)
{
struct physmap_flash_info *info = platform_get_drvdata(dev);
int i;
for (i = 0; i < MAX_RESOURCES && info->mtd[i]; i++)
if (mtd_suspend(info->mtd[i]) == 0)
mtd_resume(info->mtd[i]);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lennert buytenhek | lennert buytenhek | 37 | 54.41% | 1 | 20.00% |
stefan roese | stefan roese | 22 | 32.35% | 1 | 20.00% |
anton vorontsov | anton vorontsov | 7 | 10.29% | 1 | 20.00% |
artem bityutskiy | artem bityutskiy | 2 | 2.94% | 2 | 40.00% |
| Total | 68 | 100.00% | 5 | 100.00% |
#else
#define physmap_flash_shutdown NULL
#endif
static struct platform_driver physmap_flash_driver = {
.probe = physmap_flash_probe,
.remove = physmap_flash_remove,
.shutdown = physmap_flash_shutdown,
.driver = {
.name = "physmap-flash",
},
};
#ifdef CONFIG_MTD_PHYSMAP_COMPAT
static struct physmap_flash_data physmap_flash_data = {
.width = CONFIG_MTD_PHYSMAP_BANKWIDTH,
};
static struct resource physmap_flash_resource = {
.start = CONFIG_MTD_PHYSMAP_START,
.end = CONFIG_MTD_PHYSMAP_START + CONFIG_MTD_PHYSMAP_LEN - 1,
.flags = IORESOURCE_MEM,
};
static struct platform_device physmap_flash = {
.name = "physmap-flash",
.id = 0,
.dev = {
.platform_data = &physmap_flash_data,
},
.num_resources = 1,
.resource = &physmap_flash_resource,
};
#endif
static int __init physmap_init(void)
{
int err;
err = platform_driver_register(&physmap_flash_driver);
#ifdef CONFIG_MTD_PHYSMAP_COMPAT
if (err == 0) {
err = platform_device_register(&physmap_flash);
if (err)
platform_driver_unregister(&physmap_flash_driver);
}
#endif
return err;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lennert buytenhek | lennert buytenhek | 29 | 53.70% | 1 | 20.00% |
h hartley sweeten | h hartley sweeten | 14 | 25.93% | 1 | 20.00% |
pre-git | pre-git | 6 | 11.11% | 1 | 20.00% |
david woodhouse | david woodhouse | 4 | 7.41% | 1 | 20.00% |
mike frysinger | mike frysinger | 1 | 1.85% | 1 | 20.00% |
| Total | 54 | 100.00% | 5 | 100.00% |
static void __exit physmap_exit(void)
{
#ifdef CONFIG_MTD_PHYSMAP_COMPAT
platform_device_unregister(&physmap_flash);
#endif
platform_driver_unregister(&physmap_flash_driver);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lennert buytenhek | lennert buytenhek | 15 | 57.69% | 1 | 25.00% |
david woodhouse | david woodhouse | 6 | 23.08% | 1 | 25.00% |
pre-git | pre-git | 4 | 15.38% | 1 | 25.00% |
mike frysinger | mike frysinger | 1 | 3.85% | 1 | 25.00% |
| Total | 26 | 100.00% | 4 | 100.00% |
module_init(physmap_init);
module_exit(physmap_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
MODULE_DESCRIPTION("Generic configurable MTD map driver");
/* legacy platform drivers can't hotplug or coldplg */
#ifndef CONFIG_MTD_PHYSMAP_COMPAT
/* work with hotplug and coldplug */
MODULE_ALIAS("platform:physmap-flash");
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
lennert buytenhek | lennert buytenhek | 524 | 38.05% | 2 | 4.88% |
stefan roese | stefan roese | 241 | 17.50% | 1 | 2.44% |
marc zyngier | marc zyngier | 110 | 7.99% | 2 | 4.88% |
paul parsons | paul parsons | 91 | 6.61% | 1 | 2.44% |
david woodhouse | david woodhouse | 81 | 5.88% | 4 | 9.76% |
pre-git | pre-git | 79 | 5.74% | 3 | 7.32% |
atsushi nemoto | atsushi nemoto | 59 | 4.28% | 2 | 4.88% |
h hartley sweeten | h hartley sweeten | 34 | 2.47% | 4 | 9.76% |
barry song | barry song | 33 | 2.40% | 1 | 2.44% |
kay sievers | kay sievers | 23 | 1.67% | 2 | 4.88% |
linus torvalds | linus torvalds | 17 | 1.23% | 2 | 4.88% |
jonas gorski | jonas gorski | 16 | 1.16% | 1 | 2.44% |
alexey korolev | alexey korolev | 15 | 1.09% | 1 | 2.44% |
jingoo han | jingoo han | 12 | 0.87% | 1 | 2.44% |
david brownell | david brownell | 9 | 0.65% | 1 | 2.44% |
anton vorontsov | anton vorontsov | 7 | 0.51% | 1 | 2.44% |
artem bityutskiy | artem bityutskiy | 7 | 0.51% | 4 | 9.76% |
andrew morton | andrew morton | 6 | 0.44% | 1 | 2.44% |
adrian bunk | adrian bunk | 4 | 0.29% | 2 | 4.88% |
mike frysinger | mike frysinger | 4 | 0.29% | 1 | 2.44% |
sascha hauer | sascha hauer | 2 | 0.15% | 1 | 2.44% |
dmitry eremin-baryshkov | dmitry eremin-baryshkov | 1 | 0.07% | 1 | 2.44% |
roel kluin | roel kluin | 1 | 0.07% | 1 | 2.44% |
jamie iles | jamie iles | 1 | 0.07% | 1 | 2.44% |
| Total | 1377 | 100.00% | 41 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.