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>
16 #include <linux/init.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 #include "reset-simple.h"
27 static int sunxi_reset_init(struct device_node
*np
)
29 struct reset_simple_data
*data
;
34 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
38 ret
= of_address_to_resource(np
, 0, &res
);
42 size
= resource_size(&res
);
43 if (!request_mem_region(res
.start
, size
, np
->name
)) {
48 data
->membase
= ioremap(res
.start
, size
);
54 spin_lock_init(&data
->lock
);
56 data
->rcdev
.owner
= THIS_MODULE
;
57 data
->rcdev
.nr_resets
= size
* 8;
58 data
->rcdev
.ops
= &reset_simple_ops
;
59 data
->rcdev
.of_node
= np
;
60 data
->active_low
= true;
62 return reset_controller_register(&data
->rcdev
);
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
73 * The controllers that we can register through the regular device
74 * model are handled by the simple reset driver directly.
76 static const struct of_device_id sunxi_early_reset_dt_ids
[] __initconst
= {
77 { .compatible
= "allwinner,sun6i-a31-ahb1-reset", },
81 void __init
sun6i_reset_init(void)
83 struct device_node
*np
;
85 for_each_matching_node(np
, sunxi_early_reset_dt_ids
)