Source
1
1
/*
2
2
* Copyright (C) 2014 Marvell Technology Group Ltd.
3
3
*
4
+
* Marvell Berlin reset driver
5
+
*
4
6
* Antoine Tenart <antoine.tenart@free-electrons.com>
5
7
* Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6
8
*
7
9
* This file is licensed under the terms of the GNU General Public
8
10
* License version 2. This program is licensed "as is" without any
9
11
* warranty of any kind, whether express or implied.
10
12
*/
11
13
12
14
#include <linux/delay.h>
13
15
#include <linux/io.h>
14
16
#include <linux/mfd/syscon.h>
15
-
#include <linux/module.h>
17
+
#include <linux/init.h>
16
18
#include <linux/of.h>
17
19
#include <linux/of_address.h>
18
20
#include <linux/platform_device.h>
19
21
#include <linux/regmap.h>
20
22
#include <linux/reset-controller.h>
21
23
#include <linux/slab.h>
22
24
#include <linux/types.h>
23
25
24
26
#define BERLIN_MAX_RESETS 32
25
27
84
86
priv->rcdev.of_reset_n_cells = 2;
85
87
priv->rcdev.of_xlate = berlin_reset_xlate;
86
88
87
89
return reset_controller_register(&priv->rcdev);
88
90
}
89
91
90
92
static const struct of_device_id berlin_reset_dt_match[] = {
91
93
{ .compatible = "marvell,berlin2-reset" },
92
94
{ },
93
95
};
94
-
MODULE_DEVICE_TABLE(of, berlin_reset_dt_match);
95
96
96
97
static struct platform_driver berlin_reset_driver = {
97
98
.probe = berlin2_reset_probe,
98
99
.driver = {
99
100
.name = "berlin2-reset",
100
101
.of_match_table = berlin_reset_dt_match,
101
102
},
102
103
};
103
-
module_platform_driver(berlin_reset_driver);
104
-
105
-
MODULE_AUTHOR("Antoine Tenart <antoine.tenart@free-electrons.com>");
106
-
MODULE_AUTHOR("Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>");
107
-
MODULE_DESCRIPTION("Marvell Berlin reset driver");
108
-
MODULE_LICENSE("GPL");
104
+
builtin_platform_driver(berlin_reset_driver);