Release 4.12 drivers/reset/reset-sunxi.c
  
  
  
/*
 * Allwinner SoCs Reset Controller driver
 *
 * Copyright 2013 Maxime Ripard
 *
 * Maxime Ripard <maxime.ripard@free-electrons.com>
 *
 * 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.
 */
#include <linux/err.h>
#include <linux/io.h>
#include <linux/init.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/platform_device.h>
#include <linux/reset-controller.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/types.h>
struct sunxi_reset_data {
	
spinlock_t			lock;
	
void __iomem			*membase;
	
struct reset_controller_dev	rcdev;
};
static int sunxi_reset_assert(struct reset_controller_dev *rcdev,
			      unsigned long id)
{
	struct sunxi_reset_data *data = container_of(rcdev,
						     struct sunxi_reset_data,
						     rcdev);
	int reg_width = sizeof(u32);
	int bank = id / (reg_width * BITS_PER_BYTE);
	int offset = id % (reg_width * BITS_PER_BYTE);
	unsigned long flags;
	u32 reg;
	spin_lock_irqsave(&data->lock, flags);
	reg = readl(data->membase + (bank * reg_width));
	writel(reg & ~BIT(offset), data->membase + (bank * reg_width));
	spin_unlock_irqrestore(&data->lock, flags);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maxime Ripard | 106 | 84.13% | 1 | 50.00% | 
| Andre Przywara | 20 | 15.87% | 1 | 50.00% | 
| Total | 126 | 100.00% | 2 | 100.00% | 
static int sunxi_reset_deassert(struct reset_controller_dev *rcdev,
				unsigned long id)
{
	struct sunxi_reset_data *data = container_of(rcdev,
						     struct sunxi_reset_data,
						     rcdev);
	int reg_width = sizeof(u32);
	int bank = id / (reg_width * BITS_PER_BYTE);
	int offset = id % (reg_width * BITS_PER_BYTE);
	unsigned long flags;
	u32 reg;
	spin_lock_irqsave(&data->lock, flags);
	reg = readl(data->membase + (bank * reg_width));
	writel(reg | BIT(offset), data->membase + (bank * reg_width));
	spin_unlock_irqrestore(&data->lock, flags);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maxime Ripard | 105 | 84.00% | 1 | 50.00% | 
| Andre Przywara | 20 | 16.00% | 1 | 50.00% | 
| Total | 125 | 100.00% | 2 | 100.00% | 
static const struct reset_control_ops sunxi_reset_ops = {
	.assert		= sunxi_reset_assert,
	.deassert	= sunxi_reset_deassert,
};
static int sunxi_reset_init(struct device_node *np)
{
	struct sunxi_reset_data *data;
	struct resource res;
	resource_size_t size;
	int ret;
	data = kzalloc(sizeof(*data), GFP_KERNEL);
	if (!data)
		return -ENOMEM;
	ret = of_address_to_resource(np, 0, &res);
	if (ret)
		goto err_alloc;
	size = resource_size(&res);
	if (!request_mem_region(res.start, size, np->name)) {
		ret = -EBUSY;
		goto err_alloc;
	}
	data->membase = ioremap(res.start, size);
	if (!data->membase) {
		ret = -ENOMEM;
		goto err_alloc;
	}
	spin_lock_init(&data->lock);
	data->rcdev.owner = THIS_MODULE;
	data->rcdev.nr_resets = size * 32;
	data->rcdev.ops = &sunxi_reset_ops;
	data->rcdev.of_node = np;
	return reset_controller_register(&data->rcdev);
err_alloc:
	kfree(data);
	return ret;
}Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maxime Ripard | 184 | 95.34% | 1 | 33.33% | 
| Tyler Baker | 8 | 4.15% | 1 | 33.33% | 
| Masahiro Yamada | 1 | 0.52% | 1 | 33.33% | 
| Total | 193 | 100.00% | 3 | 100.00% | 
;
/*
 * These are the reset controller we need to initialize early on in
 * our system, before we can even think of using a regular device
 * driver for it.
 */
static const struct of_device_id sunxi_early_reset_dt_ids[] __initconst = {
	{ .compatible = "allwinner,sun6i-a31-ahb1-reset", },
	{ /* sentinel */ },
};
void __init sun6i_reset_init(void)
{
	struct device_node *np;
	for_each_matching_node(np, sunxi_early_reset_dt_ids)
		sunxi_reset_init(np);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maxime Ripard | 24 | 100.00% | 1 | 100.00% | 
| Total | 24 | 100.00% | 1 | 100.00% | 
/*
 * And these are the controllers we can register through the regular
 * device model.
 */
static const struct of_device_id sunxi_reset_dt_ids[] = {
	 { .compatible = "allwinner,sun6i-a31-clock-reset", },
	 { /* sentinel */ },
};
static int sunxi_reset_probe(struct platform_device *pdev)
{
	struct sunxi_reset_data *data;
	struct resource *res;
	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
	if (!data)
		return -ENOMEM;
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	data->membase = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(data->membase))
		return PTR_ERR(data->membase);
	spin_lock_init(&data->lock);
	data->rcdev.owner = THIS_MODULE;
	data->rcdev.nr_resets = resource_size(res) * 32;
	data->rcdev.ops = &sunxi_reset_ops;
	data->rcdev.of_node = pdev->dev.of_node;
	return devm_reset_controller_register(&pdev->dev, &data->rcdev);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 117 | 75.97% | 1 | 25.00% | 
| Maxime Ripard | 25 | 16.23% | 1 | 25.00% | 
| Tyler Baker | 8 | 5.19% | 1 | 25.00% | 
| Masahiro Yamada | 4 | 2.60% | 1 | 25.00% | 
| Total | 154 | 100.00% | 4 | 100.00% | 
static struct platform_driver sunxi_reset_driver = {
	.probe	= sunxi_reset_probe,
	.driver = {
		.name		= "sunxi-reset",
		.of_match_table	= sunxi_reset_dt_ids,
        },
};
builtin_platform_driver(sunxi_reset_driver);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maxime Ripard | 582 | 76.18% | 1 | 11.11% | 
| Boris Brezillon | 117 | 15.31% | 1 | 11.11% | 
| Andre Przywara | 40 | 5.24% | 1 | 11.11% | 
| Tyler Baker | 16 | 2.09% | 1 | 11.11% | 
| Masahiro Yamada | 5 | 0.65% | 2 | 22.22% | 
| Paul Gortmaker | 2 | 0.26% | 1 | 11.11% | 
| Philipp Zabel | 2 | 0.26% | 2 | 22.22% | 
| Total | 764 | 100.00% | 9 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.