cregit-Linux how code gets into the kernel

Release 4.7 drivers/mtd/maps/plat-ram.c

Directory: drivers/mtd/maps
/* drivers/mtd/maps/plat-ram.c
 *
 * (c) 2004-2005 Simtec Electronics
 *      http://www.simtec.co.uk/products/SWLINUX/
 *      Ben Dooks <ben@simtec.co.uk>
 *
 * Generic platform device based RAM map
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/ioport.h>
#include <linux/device.h>
#include <linux/slab.h>
#include <linux/platform_device.h>

#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/plat-ram.h>

#include <asm/io.h>

/* private structure for each mtd platform ram device created */


struct platram_info {
	
struct device		*dev;
	
struct mtd_info		*mtd;
	
struct map_info		 map;
	
struct resource		*area;
	
struct platdata_mtd_ram	*pdata;
};

/* to_platram_info()
 *
 * device private data to struct platram_info conversion
*/


static inline struct platram_info *to_platram_info(struct platform_device *dev) { return platform_get_drvdata(dev); }

Contributors

PersonTokensPropCommitsCommitProp
ben dooksben dooks1890.00%150.00%
russell kingrussell king210.00%150.00%
Total20100.00%2100.00%

/* platram_setrw * * call the platform device's set rw/ro control * * to = 0 => read-only * = 1 => read-write */
static inline void platram_setrw(struct platram_info *info, int to) { if (info->pdata == NULL) return; if (info->pdata->set_rw != NULL) (info->pdata->set_rw)(info->dev, to); }

Contributors

PersonTokensPropCommitsCommitProp
ben dooksben dooks49100.00%1100.00%
Total49100.00%1100.00%

/* platram_remove * * called to remove the device from the driver's control */
static int platram_remove(struct platform_device *pdev) { struct platram_info *info = to_platram_info(pdev); dev_dbg(&pdev->dev, "removing device\n"); if (info == NULL) return 0; if (info->mtd) { mtd_device_unregister(info->mtd); map_destroy(info->mtd); } /* ensure ram is left read-only */ platram_setrw(info, PLATRAM_RO); /* release resources */ if (info->area) { release_resource(info->area); kfree(info->area); } if (info->map.virt != NULL) iounmap(info->map.virt); kfree(info); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
ben dooksben dooks10789.17%133.33%
jamie ilesjamie iles75.83%133.33%
russell kingrussell king65.00%133.33%
Total120100.00%3100.00%

/* platram_probe * * called from device drive system when a device matching our * driver is found. */
static int platram_probe(struct platform_device *pdev) { struct platdata_mtd_ram *pdata; struct platram_info *info; struct resource *res; int err = 0; dev_dbg(&pdev->dev, "probe entered\n"); if (dev_get_platdata(&pdev->dev) == NULL) { dev_err(&pdev->dev, "no platform data supplied\n"); err = -ENOENT; goto exit_error; } pdata = dev_get_platdata(&pdev->dev); info = kzalloc(sizeof(*info), GFP_KERNEL); if (info == NULL) { err = -ENOMEM; goto exit_error; } platform_set_drvdata(pdev, info); info->dev = &pdev->dev; info->pdata = pdata; /* get the resource for the memory mapping */ res = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (res == NULL) { dev_err(&pdev->dev, "no memory resource specified\n"); err = -ENOENT; goto exit_free; } dev_dbg(&pdev->dev, "got platform resource %p (0x%llx)\n", res, (unsigned long long)res->start); /* setup map parameters */ info->map.phys = res->start; info->map.size = resource_size(res); info->map.name = pdata->mapname != NULL ? (char *)pdata->mapname : (char *)pdev->name; info->map.bankwidth = pdata->bankwidth; /* register our usage of the memory area */ info->area = request_mem_region(res->start, info->map.size, pdev->name); if (info->area == NULL) { dev_err(&pdev->dev, "failed to request memory region\n"); err = -EIO; goto exit_free; } /* remap the memory area */ info->map.virt = ioremap(res->start, info->map.size); dev_dbg(&pdev->dev, "virt %p, %lu bytes\n", info->map.virt, info->map.size); if (info->map.virt == NULL) { dev_err(&pdev->dev, "failed to ioremap() region\n"); err = -EIO; goto exit_free; } simple_map_init(&info->map); dev_dbg(&pdev->dev, "initialised map, probing for mtd\n"); /* probe for the right mtd map driver * supplied by the platform_data struct */ if (pdata->map_probes) { const char * const *map_probes = pdata->map_probes; for ( ; !info->mtd && *map_probes; map_probes++) info->mtd = do_map_probe(*map_probes , &info->map); } /* fallback to map_ram */ else info->mtd = do_map_probe("map_ram", &info->map); if (info->mtd == NULL) { dev_err(&pdev->dev, "failed to probe for map_ram\n"); err = -ENOMEM; goto exit_free; } info->mtd->dev.parent = &pdev->dev; platram_setrw(info, PLATRAM_RW); /* check to see if there are any available partitions, or whether * to add this device whole */ err = mtd_device_parse_register(info->mtd, pdata->probes, NULL, pdata->partitions, pdata->nr_partitions); if (!err) dev_info(&pdev->dev, "registered mtd device\n"); if (pdata->nr_partitions) { /* add the whole device. */ err = mtd_device_register(info->mtd, NULL, 0); if (err) { dev_err(&pdev->dev, "failed to register the entire device\n"); } } return err; exit_free: platram_remove(pdev); exit_error: return err; }

Contributors

PersonTokensPropCommitsCommitProp
ben dooksben dooks41869.90%212.50%
florian fainelliflorian fainelli7011.71%16.25%
russell kingrussell king488.03%16.25%
jamie ilesjamie iles172.84%16.25%
ilya yanokilya yanok101.67%16.25%
david brownelldavid brownell91.51%16.25%
jingoo hanjingoo han81.34%16.25%
randy dunlaprandy dunlap61.00%16.25%
thomas gleixnerthomas gleixner40.67%16.25%
wolfram sangwolfram sang30.50%16.25%
artem bityutskiyartem bityutskiy20.33%212.50%
burman yanburman yan10.17%16.25%
adam buchbinderadam buchbinder10.17%16.25%
dmitry eremin-baryshkovdmitry eremin-baryshkov10.17%16.25%
Total598100.00%16100.00%

/* device driver info */ /* work with hotplug and coldplug */ MODULE_ALIAS("platform:mtd-ram"); static struct platform_driver platram_driver = { .probe = platram_probe, .remove = platram_remove, .driver = { .name = "mtd-ram", }, }; module_platform_driver(platram_driver); MODULE_LICENSE("GPL"); MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>"); MODULE_DESCRIPTION("MTD platform RAM map driver");

Overall Contributors

PersonTokensPropCommitsCommitProp
ben dooksben dooks69776.17%313.64%
florian fainelliflorian fainelli707.65%14.55%
russell kingrussell king677.32%29.09%
jamie ilesjamie iles242.62%14.55%
ilya yanokilya yanok101.09%14.55%
david brownelldavid brownell90.98%14.55%
jingoo hanjingoo han80.87%14.55%
randy dunlaprandy dunlap60.66%14.55%
kay sieverskay sievers60.66%14.55%
thomas gleixnerthomas gleixner40.44%14.55%
wolfram sangwolfram sang30.33%14.55%
tim schmielautim schmielau30.33%14.55%
sachin kamatsachin kamat20.22%14.55%
artem bityutskiyartem bityutskiy20.22%29.09%
stefan weilstefan weil10.11%14.55%
burman yanburman yan10.11%14.55%
adam buchbinderadam buchbinder10.11%14.55%
dmitry eremin-baryshkovdmitry eremin-baryshkov10.11%14.55%
Total915100.00%22100.00%
Directory: drivers/mtd/maps
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}