staging: comedi: usbduxsigma: remove AI scan_begin_src == TRIG_FOLLOW
[linux-2.6/btrfs-unstable.git] / drivers / reset / reset-sunxi.c
blob3d95c87160b35003635460d5d67379d3da33d27f
1 /*
2 * Allwinner SoCs Reset Controller driver
4 * Copyright 2013 Maxime Ripard
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/err.h>
15 #include <linux/io.h>
16 #include <linux/module.h>
17 #include <linux/of.h>
18 #include <linux/of_address.h>
19 #include <linux/platform_device.h>
20 #include <linux/reset-controller.h>
21 #include <linux/slab.h>
22 #include <linux/spinlock.h>
23 #include <linux/types.h>
25 struct sunxi_reset_data {
26 spinlock_t lock;
27 void __iomem *membase;
28 struct reset_controller_dev rcdev;
31 static int sunxi_reset_assert(struct reset_controller_dev *rcdev,
32 unsigned long id)
34 struct sunxi_reset_data *data = container_of(rcdev,
35 struct sunxi_reset_data,
36 rcdev);
37 int bank = id / BITS_PER_LONG;
38 int offset = id % BITS_PER_LONG;
39 unsigned long flags;
40 u32 reg;
42 spin_lock_irqsave(&data->lock, flags);
44 reg = readl(data->membase + (bank * 4));
45 writel(reg & ~BIT(offset), data->membase + (bank * 4));
47 spin_unlock_irqrestore(&data->lock, flags);
49 return 0;
52 static int sunxi_reset_deassert(struct reset_controller_dev *rcdev,
53 unsigned long id)
55 struct sunxi_reset_data *data = container_of(rcdev,
56 struct sunxi_reset_data,
57 rcdev);
58 int bank = id / BITS_PER_LONG;
59 int offset = id % BITS_PER_LONG;
60 unsigned long flags;
61 u32 reg;
63 spin_lock_irqsave(&data->lock, flags);
65 reg = readl(data->membase + (bank * 4));
66 writel(reg | BIT(offset), data->membase + (bank * 4));
68 spin_unlock_irqrestore(&data->lock, flags);
70 return 0;
73 static struct reset_control_ops sunxi_reset_ops = {
74 .assert = sunxi_reset_assert,
75 .deassert = sunxi_reset_deassert,
78 static int sunxi_reset_init(struct device_node *np)
80 struct sunxi_reset_data *data;
81 struct resource res;
82 resource_size_t size;
83 int ret;
85 data = kzalloc(sizeof(*data), GFP_KERNEL);
86 if (!data)
87 return -ENOMEM;
89 ret = of_address_to_resource(np, 0, &res);
90 if (ret)
91 goto err_alloc;
93 size = resource_size(&res);
94 if (!request_mem_region(res.start, size, np->name)) {
95 ret = -EBUSY;
96 goto err_alloc;
99 data->membase = ioremap(res.start, size);
100 if (!data->membase) {
101 ret = -ENOMEM;
102 goto err_alloc;
105 spin_lock_init(&data->lock);
107 data->rcdev.owner = THIS_MODULE;
108 data->rcdev.nr_resets = size * 32;
109 data->rcdev.ops = &sunxi_reset_ops;
110 data->rcdev.of_node = np;
111 reset_controller_register(&data->rcdev);
113 return 0;
115 err_alloc:
116 kfree(data);
117 return ret;
121 * These are the reset controller we need to initialize early on in
122 * our system, before we can even think of using a regular device
123 * driver for it.
125 static const struct of_device_id sunxi_early_reset_dt_ids[] __initdata = {
126 { .compatible = "allwinner,sun6i-a31-ahb1-reset", },
127 { /* sentinel */ },
130 void __init sun6i_reset_init(void)
132 struct device_node *np;
134 for_each_matching_node(np, sunxi_early_reset_dt_ids)
135 sunxi_reset_init(np);
139 * And these are the controllers we can register through the regular
140 * device model.
142 static const struct of_device_id sunxi_reset_dt_ids[] = {
143 { .compatible = "allwinner,sun6i-a31-clock-reset", },
144 { /* sentinel */ },
146 MODULE_DEVICE_TABLE(of, sunxi_reset_dt_ids);
148 static int sunxi_reset_probe(struct platform_device *pdev)
150 struct sunxi_reset_data *data;
151 struct resource *res;
153 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
154 if (!data)
155 return -ENOMEM;
157 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
158 data->membase = devm_ioremap_resource(&pdev->dev, res);
159 if (IS_ERR(data->membase))
160 return PTR_ERR(data->membase);
162 spin_lock_init(&data->lock);
164 data->rcdev.owner = THIS_MODULE;
165 data->rcdev.nr_resets = resource_size(res) * 32;
166 data->rcdev.ops = &sunxi_reset_ops;
167 data->rcdev.of_node = pdev->dev.of_node;
169 return reset_controller_register(&data->rcdev);
172 static int sunxi_reset_remove(struct platform_device *pdev)
174 struct sunxi_reset_data *data = platform_get_drvdata(pdev);
176 reset_controller_unregister(&data->rcdev);
178 return 0;
181 static struct platform_driver sunxi_reset_driver = {
182 .probe = sunxi_reset_probe,
183 .remove = sunxi_reset_remove,
184 .driver = {
185 .name = "sunxi-reset",
186 .of_match_table = sunxi_reset_dt_ids,
189 module_platform_driver(sunxi_reset_driver);
191 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com");
192 MODULE_DESCRIPTION("Allwinner SoCs Reset Controller Driver");
193 MODULE_LICENSE("GPL");