Blame view

drivers/reset/reset-meson.c 3.57 KB
7c61ccf64   Neil Armstrong   reset: reset-meso...
1
  // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
c7224dc34   Neil Armstrong   reset: Add suppor...
2
  /*
8290924e6   Paul Gortmaker   reset: meson: mak...
3
4
   * Amlogic Meson Reset Controller driver
   *
c7224dc34   Neil Armstrong   reset: Add suppor...
5
6
   * Copyright (c) 2016 BayLibre, SAS.
   * Author: Neil Armstrong <narmstrong@baylibre.com>
c7224dc34   Neil Armstrong   reset: Add suppor...
7
8
   */
  #include <linux/err.h>
8290924e6   Paul Gortmaker   reset: meson: mak...
9
  #include <linux/init.h>
c7224dc34   Neil Armstrong   reset: Add suppor...
10
11
12
13
14
15
  #include <linux/io.h>
  #include <linux/of.h>
  #include <linux/platform_device.h>
  #include <linux/reset-controller.h>
  #include <linux/slab.h>
  #include <linux/types.h>
a5a10afe0   Neil Armstrong   reset: meson: add...
16
  #include <linux/of_device.h>
c7224dc34   Neil Armstrong   reset: Add suppor...
17

c7224dc34   Neil Armstrong   reset: Add suppor...
18
  #define BITS_PER_REG	32
bdb369e1e   Xingyu Chen   reset: add suppor...
19
20
21
22
23
  
  struct meson_reset_param {
  	int reg_count;
  	int level_offset;
  };
c7224dc34   Neil Armstrong   reset: Add suppor...
24
25
26
  
  struct meson_reset {
  	void __iomem *reg_base;
bdb369e1e   Xingyu Chen   reset: add suppor...
27
  	const struct meson_reset_param *param;
c7224dc34   Neil Armstrong   reset: Add suppor...
28
  	struct reset_controller_dev rcdev;
a5a10afe0   Neil Armstrong   reset: meson: add...
29
  	spinlock_t lock;
c7224dc34   Neil Armstrong   reset: Add suppor...
30
31
32
33
34
35
36
37
38
39
  };
  
  static int meson_reset_reset(struct reset_controller_dev *rcdev,
  			      unsigned long id)
  {
  	struct meson_reset *data =
  		container_of(rcdev, struct meson_reset, rcdev);
  	unsigned int bank = id / BITS_PER_REG;
  	unsigned int offset = id % BITS_PER_REG;
  	void __iomem *reg_addr = data->reg_base + (bank << 2);
c7224dc34   Neil Armstrong   reset: Add suppor...
40
41
42
43
  	writel(BIT(offset), reg_addr);
  
  	return 0;
  }
a5a10afe0   Neil Armstrong   reset: meson: add...
44
45
46
47
48
49
50
  static int meson_reset_level(struct reset_controller_dev *rcdev,
  			    unsigned long id, bool assert)
  {
  	struct meson_reset *data =
  		container_of(rcdev, struct meson_reset, rcdev);
  	unsigned int bank = id / BITS_PER_REG;
  	unsigned int offset = id % BITS_PER_REG;
bdb369e1e   Xingyu Chen   reset: add suppor...
51
  	void __iomem *reg_addr;
a5a10afe0   Neil Armstrong   reset: meson: add...
52
53
  	unsigned long flags;
  	u32 reg;
bdb369e1e   Xingyu Chen   reset: add suppor...
54
  	reg_addr = data->reg_base + data->param->level_offset + (bank << 2);
a5a10afe0   Neil Armstrong   reset: meson: add...
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  	spin_lock_irqsave(&data->lock, flags);
  
  	reg = readl(reg_addr);
  	if (assert)
  		writel(reg & ~BIT(offset), reg_addr);
  	else
  		writel(reg | BIT(offset), reg_addr);
  
  	spin_unlock_irqrestore(&data->lock, flags);
  
  	return 0;
  }
  
  static int meson_reset_assert(struct reset_controller_dev *rcdev,
  			      unsigned long id)
  {
  	return meson_reset_level(rcdev, id, true);
  }
  
  static int meson_reset_deassert(struct reset_controller_dev *rcdev,
  				unsigned long id)
  {
  	return meson_reset_level(rcdev, id, false);
  }
320da785d   Martin Blumenstingl   reset: meson: ena...
79
  static const struct reset_control_ops meson_reset_ops = {
a5a10afe0   Neil Armstrong   reset: meson: add...
80
81
82
83
  	.reset		= meson_reset_reset,
  	.assert		= meson_reset_assert,
  	.deassert	= meson_reset_deassert,
  };
bdb369e1e   Xingyu Chen   reset: add suppor...
84
85
86
87
88
89
90
91
92
  static const struct meson_reset_param meson8b_param = {
  	.reg_count	= 8,
  	.level_offset	= 0x7c,
  };
  
  static const struct meson_reset_param meson_a1_param = {
  	.reg_count	= 3,
  	.level_offset	= 0x40,
  };
c7224dc34   Neil Armstrong   reset: Add suppor...
93
  static const struct of_device_id meson_reset_dt_ids[] = {
bdb369e1e   Xingyu Chen   reset: add suppor...
94
95
96
97
  	 { .compatible = "amlogic,meson8b-reset",    .data = &meson8b_param},
  	 { .compatible = "amlogic,meson-gxbb-reset", .data = &meson8b_param},
  	 { .compatible = "amlogic,meson-axg-reset",  .data = &meson8b_param},
  	 { .compatible = "amlogic,meson-a1-reset",   .data = &meson_a1_param},
c7224dc34   Neil Armstrong   reset: Add suppor...
98
99
  	 { /* sentinel */ },
  };
c7224dc34   Neil Armstrong   reset: Add suppor...
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  
  static int meson_reset_probe(struct platform_device *pdev)
  {
  	struct meson_reset *data;
  	struct resource *res;
  
  	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
  	if (!data)
  		return -ENOMEM;
  
  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  	data->reg_base = devm_ioremap_resource(&pdev->dev, res);
  	if (IS_ERR(data->reg_base))
  		return PTR_ERR(data->reg_base);
bdb369e1e   Xingyu Chen   reset: add suppor...
114
115
116
  	data->param = of_device_get_match_data(&pdev->dev);
  	if (!data->param)
  		return -ENODEV;
c7224dc34   Neil Armstrong   reset: Add suppor...
117
  	platform_set_drvdata(pdev, data);
a5a10afe0   Neil Armstrong   reset: meson: add...
118
  	spin_lock_init(&data->lock);
c7224dc34   Neil Armstrong   reset: Add suppor...
119
  	data->rcdev.owner = THIS_MODULE;
bdb369e1e   Xingyu Chen   reset: add suppor...
120
  	data->rcdev.nr_resets = data->param->reg_count * BITS_PER_REG;
320da785d   Martin Blumenstingl   reset: meson: ena...
121
  	data->rcdev.ops = &meson_reset_ops;
c7224dc34   Neil Armstrong   reset: Add suppor...
122
123
124
125
126
127
128
129
130
131
132
133
  	data->rcdev.of_node = pdev->dev.of_node;
  
  	return devm_reset_controller_register(&pdev->dev, &data->rcdev);
  }
  
  static struct platform_driver meson_reset_driver = {
  	.probe	= meson_reset_probe,
  	.driver = {
  		.name		= "meson_reset",
  		.of_match_table	= meson_reset_dt_ids,
  	},
  };
8290924e6   Paul Gortmaker   reset: meson: mak...
134
  builtin_platform_driver(meson_reset_driver);