blob: db9a1a75523f420b7bab02d6c11e44159d2be194 [file] [log] [blame]
Maxime Ripard8f1ae772013-09-24 11:07:43 +03001/*
2 * Allwinner SoCs Reset Controller driver
3 *
4 * Copyright 2013 Maxime Ripard
5 *
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 *
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.
12 */
13
14#include <linux/err.h>
15#include <linux/io.h>
Paul Gortmakerc4742ed2016-06-13 14:03:36 -040016#include <linux/init.h>
Maxime Ripard8f1ae772013-09-24 11:07:43 +030017#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>
24
Philipp Zabele13c2052017-08-11 12:58:43 +020025#include "reset-simple.h"
Maxime Ripard8f1ae772013-09-24 11:07:43 +030026
27static int sunxi_reset_init(struct device_node *np)
28{
Philipp Zabele13c2052017-08-11 12:58:43 +020029 struct reset_simple_data *data;
Maxime Ripard8f1ae772013-09-24 11:07:43 +030030 struct resource res;
31 resource_size_t size;
32 int ret;
33
34 data = kzalloc(sizeof(*data), GFP_KERNEL);
35 if (!data)
36 return -ENOMEM;
37
38 ret = of_address_to_resource(np, 0, &res);
39 if (ret)
40 goto err_alloc;
41
42 size = resource_size(&res);
43 if (!request_mem_region(res.start, size, np->name)) {
44 ret = -EBUSY;
45 goto err_alloc;
46 }
47
48 data->membase = ioremap(res.start, size);
49 if (!data->membase) {
50 ret = -ENOMEM;
51 goto err_alloc;
52 }
53
Tyler Baker41544f92015-01-12 07:54:46 -080054 spin_lock_init(&data->lock);
55
Maxime Ripard8f1ae772013-09-24 11:07:43 +030056 data->rcdev.owner = THIS_MODULE;
Philipp Zabel726cc792017-08-11 12:33:57 +020057 data->rcdev.nr_resets = size * 8;
Philipp Zabele13c2052017-08-11 12:58:43 +020058 data->rcdev.ops = &reset_simple_ops;
Maxime Ripard8f1ae772013-09-24 11:07:43 +030059 data->rcdev.of_node = np;
Philipp Zabele13c2052017-08-11 12:58:43 +020060 data->active_low = true;
Maxime Ripard8f1ae772013-09-24 11:07:43 +030061
Masahiro Yamadad1f15aa2015-11-05 14:54:56 +090062 return reset_controller_register(&data->rcdev);
Maxime Ripard8f1ae772013-09-24 11:07:43 +030063
64err_alloc:
65 kfree(data);
66 return ret;
67};
68
69/*
70 * These are the reset controller we need to initialize early on in
71 * our system, before we can even think of using a regular device
72 * driver for it.
Philipp Zabele13c2052017-08-11 12:58:43 +020073 * The controllers that we can register through the regular device
74 * model are handled by the simple reset driver directly.
Maxime Ripard8f1ae772013-09-24 11:07:43 +030075 */
Philipp Zabelfddad172015-10-29 09:59:34 +010076static const struct of_device_id sunxi_early_reset_dt_ids[] __initconst = {
Maxime Ripard8f1ae772013-09-24 11:07:43 +030077 { .compatible = "allwinner,sun6i-a31-ahb1-reset", },
78 { /* sentinel */ },
79};
80
81void __init sun6i_reset_init(void)
82{
83 struct device_node *np;
84
85 for_each_matching_node(np, sunxi_early_reset_dt_ids)
86 sunxi_reset_init(np);
87}