Loading...
1/*
2 * Socfpga Reset Controller Driver
3 *
4 * Copyright 2014 Steffen Trumtrar <s.trumtrar@pengutronix.de>
5 *
6 * based on
7 * Allwinner SoCs Reset Controller driver
8 *
9 * Copyright 2013 Maxime Ripard
10 *
11 * Maxime Ripard <maxime.ripard@free-electrons.com>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 */
18
19#include <linux/err.h>
20#include <linux/io.h>
21#include <linux/init.h>
22#include <linux/of.h>
23#include <linux/platform_device.h>
24#include <linux/reset-controller.h>
25#include <linux/spinlock.h>
26#include <linux/types.h>
27
28#define NR_BANKS 4
29
30struct socfpga_reset_data {
31 spinlock_t lock;
32 void __iomem *membase;
33 struct reset_controller_dev rcdev;
34};
35
36static int socfpga_reset_assert(struct reset_controller_dev *rcdev,
37 unsigned long id)
38{
39 struct socfpga_reset_data *data = container_of(rcdev,
40 struct socfpga_reset_data,
41 rcdev);
42 int bank = id / BITS_PER_LONG;
43 int offset = id % BITS_PER_LONG;
44 unsigned long flags;
45 u32 reg;
46
47 spin_lock_irqsave(&data->lock, flags);
48
49 reg = readl(data->membase + (bank * NR_BANKS));
50 writel(reg | BIT(offset), data->membase + (bank * NR_BANKS));
51 spin_unlock_irqrestore(&data->lock, flags);
52
53 return 0;
54}
55
56static int socfpga_reset_deassert(struct reset_controller_dev *rcdev,
57 unsigned long id)
58{
59 struct socfpga_reset_data *data = container_of(rcdev,
60 struct socfpga_reset_data,
61 rcdev);
62
63 int bank = id / BITS_PER_LONG;
64 int offset = id % BITS_PER_LONG;
65 unsigned long flags;
66 u32 reg;
67
68 spin_lock_irqsave(&data->lock, flags);
69
70 reg = readl(data->membase + (bank * NR_BANKS));
71 writel(reg & ~BIT(offset), data->membase + (bank * NR_BANKS));
72
73 spin_unlock_irqrestore(&data->lock, flags);
74
75 return 0;
76}
77
78static int socfpga_reset_status(struct reset_controller_dev *rcdev,
79 unsigned long id)
80{
81 struct socfpga_reset_data *data = container_of(rcdev,
82 struct socfpga_reset_data, rcdev);
83 int bank = id / BITS_PER_LONG;
84 int offset = id % BITS_PER_LONG;
85 u32 reg;
86
87 reg = readl(data->membase + (bank * NR_BANKS));
88
89 return !(reg & BIT(offset));
90}
91
92static const struct reset_control_ops socfpga_reset_ops = {
93 .assert = socfpga_reset_assert,
94 .deassert = socfpga_reset_deassert,
95 .status = socfpga_reset_status,
96};
97
98static int socfpga_reset_probe(struct platform_device *pdev)
99{
100 struct socfpga_reset_data *data;
101 struct resource *res;
102 struct device *dev = &pdev->dev;
103 struct device_node *np = dev->of_node;
104 u32 modrst_offset;
105
106 /*
107 * The binding was mainlined without the required property.
108 * Do not continue, when we encounter an old DT.
109 */
110 if (!of_find_property(pdev->dev.of_node, "#reset-cells", NULL)) {
111 dev_err(&pdev->dev, "%s missing #reset-cells property\n",
112 pdev->dev.of_node->full_name);
113 return -EINVAL;
114 }
115
116 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
117 if (!data)
118 return -ENOMEM;
119
120 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
121 data->membase = devm_ioremap_resource(&pdev->dev, res);
122 if (IS_ERR(data->membase))
123 return PTR_ERR(data->membase);
124
125 if (of_property_read_u32(np, "altr,modrst-offset", &modrst_offset)) {
126 dev_warn(dev, "missing altr,modrst-offset property, assuming 0x10!\n");
127 modrst_offset = 0x10;
128 }
129 data->membase += modrst_offset;
130
131 spin_lock_init(&data->lock);
132
133 data->rcdev.owner = THIS_MODULE;
134 data->rcdev.nr_resets = NR_BANKS * BITS_PER_LONG;
135 data->rcdev.ops = &socfpga_reset_ops;
136 data->rcdev.of_node = pdev->dev.of_node;
137
138 return devm_reset_controller_register(dev, &data->rcdev);
139}
140
141static const struct of_device_id socfpga_reset_dt_ids[] = {
142 { .compatible = "altr,rst-mgr", },
143 { /* sentinel */ },
144};
145
146static struct platform_driver socfpga_reset_driver = {
147 .probe = socfpga_reset_probe,
148 .driver = {
149 .name = "socfpga-reset",
150 .of_match_table = socfpga_reset_dt_ids,
151 },
152};
153builtin_platform_driver(socfpga_reset_driver);
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2018, Intel Corporation
4 * Copied from reset-sunxi.c
5 */
6
7#include <linux/err.h>
8#include <linux/io.h>
9#include <linux/init.h>
10#include <linux/of.h>
11#include <linux/of_address.h>
12#include <linux/platform_device.h>
13#include <linux/reset-controller.h>
14#include <linux/reset/socfpga.h>
15#include <linux/slab.h>
16#include <linux/spinlock.h>
17#include <linux/types.h>
18
19#include "reset-simple.h"
20
21#define SOCFPGA_NR_BANKS 8
22
23static int a10_reset_init(struct device_node *np)
24{
25 struct reset_simple_data *data;
26 struct resource res;
27 resource_size_t size;
28 int ret;
29 u32 reg_offset = 0x10;
30
31 data = kzalloc(sizeof(*data), GFP_KERNEL);
32 if (!data)
33 return -ENOMEM;
34
35 ret = of_address_to_resource(np, 0, &res);
36 if (ret)
37 goto err_alloc;
38
39 size = resource_size(&res);
40 if (!request_mem_region(res.start, size, np->name)) {
41 ret = -EBUSY;
42 goto err_alloc;
43 }
44
45 data->membase = ioremap(res.start, size);
46 if (!data->membase) {
47 ret = -ENOMEM;
48 goto err_alloc;
49 }
50
51 if (of_property_read_u32(np, "altr,modrst-offset", ®_offset))
52 pr_warn("missing altr,modrst-offset property, assuming 0x10\n");
53 data->membase += reg_offset;
54
55 spin_lock_init(&data->lock);
56
57 data->rcdev.owner = THIS_MODULE;
58 data->rcdev.nr_resets = SOCFPGA_NR_BANKS * 32;
59 data->rcdev.ops = &reset_simple_ops;
60 data->rcdev.of_node = np;
61 data->status_active_low = true;
62
63 return reset_controller_register(&data->rcdev);
64
65err_alloc:
66 kfree(data);
67 return ret;
68};
69
70/*
71 * These are the reset controller we need to initialize early on in
72 * our system, before we can even think of using a regular device
73 * driver for it.
74 * The controllers that we can register through the regular device
75 * model are handled by the simple reset driver directly.
76 */
77static const struct of_device_id socfpga_early_reset_dt_ids[] __initconst = {
78 { .compatible = "altr,rst-mgr", },
79 { /* sentinel */ },
80};
81
82void __init socfpga_reset_init(void)
83{
84 struct device_node *np;
85
86 for_each_matching_node(np, socfpga_early_reset_dt_ids)
87 a10_reset_init(np);
88}