2 * AR71xx Reset Controller Driver
5 * Copyright (C) 2015 Alban Bedel <albeu@free.fr>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #include <linux/init.h>
20 #include <linux/mod_devicetable.h>
21 #include <linux/platform_device.h>
22 #include <linux/reset-controller.h>
23 #include <linux/reboot.h>
26 struct reset_controller_dev rcdev
;
27 struct notifier_block restart_nb
;
32 #define FULL_CHIP_RESET 24
34 static int ath79_reset_update(struct reset_controller_dev
*rcdev
,
35 unsigned long id
, bool assert)
37 struct ath79_reset
*ath79_reset
=
38 container_of(rcdev
, struct ath79_reset
, rcdev
);
42 spin_lock_irqsave(&ath79_reset
->lock
, flags
);
43 val
= readl(ath79_reset
->base
);
48 writel(val
, ath79_reset
->base
);
49 spin_unlock_irqrestore(&ath79_reset
->lock
, flags
);
54 static int ath79_reset_assert(struct reset_controller_dev
*rcdev
,
57 return ath79_reset_update(rcdev
, id
, true);
60 static int ath79_reset_deassert(struct reset_controller_dev
*rcdev
,
63 return ath79_reset_update(rcdev
, id
, false);
66 static int ath79_reset_status(struct reset_controller_dev
*rcdev
,
69 struct ath79_reset
*ath79_reset
=
70 container_of(rcdev
, struct ath79_reset
, rcdev
);
73 val
= readl(ath79_reset
->base
);
75 return !!(val
& BIT(id
));
78 static const struct reset_control_ops ath79_reset_ops
= {
79 .assert = ath79_reset_assert
,
80 .deassert
= ath79_reset_deassert
,
81 .status
= ath79_reset_status
,
84 static int ath79_reset_restart_handler(struct notifier_block
*nb
,
85 unsigned long action
, void *data
)
87 struct ath79_reset
*ath79_reset
=
88 container_of(nb
, struct ath79_reset
, restart_nb
);
90 ath79_reset_assert(&ath79_reset
->rcdev
, FULL_CHIP_RESET
);
95 static int ath79_reset_probe(struct platform_device
*pdev
)
97 struct ath79_reset
*ath79_reset
;
101 ath79_reset
= devm_kzalloc(&pdev
->dev
,
102 sizeof(*ath79_reset
), GFP_KERNEL
);
106 platform_set_drvdata(pdev
, ath79_reset
);
108 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
109 ath79_reset
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
110 if (IS_ERR(ath79_reset
->base
))
111 return PTR_ERR(ath79_reset
->base
);
113 spin_lock_init(&ath79_reset
->lock
);
114 ath79_reset
->rcdev
.ops
= &ath79_reset_ops
;
115 ath79_reset
->rcdev
.owner
= THIS_MODULE
;
116 ath79_reset
->rcdev
.of_node
= pdev
->dev
.of_node
;
117 ath79_reset
->rcdev
.of_reset_n_cells
= 1;
118 ath79_reset
->rcdev
.nr_resets
= 32;
120 err
= devm_reset_controller_register(&pdev
->dev
, &ath79_reset
->rcdev
);
124 ath79_reset
->restart_nb
.notifier_call
= ath79_reset_restart_handler
;
125 ath79_reset
->restart_nb
.priority
= 128;
127 err
= register_restart_handler(&ath79_reset
->restart_nb
);
129 dev_warn(&pdev
->dev
, "Failed to register restart handler\n");
134 static const struct of_device_id ath79_reset_dt_ids
[] = {
135 { .compatible
= "qca,ar7100-reset", },
139 static struct platform_driver ath79_reset_driver
= {
140 .probe
= ath79_reset_probe
,
142 .name
= "ath79-reset",
143 .of_match_table
= ath79_reset_dt_ids
,
144 .suppress_bind_attrs
= true,
147 builtin_platform_driver(ath79_reset_driver
);