All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] power/reset: versatile: support the actual versatile
@ 2016-01-25  8:29 Linus Walleij
  2016-02-11 14:40 ` Linus Walleij
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Walleij @ 2016-01-25  8:29 UTC (permalink / raw)
  To: Sebastian Reichel, Dmitry Eremin-Solenikov, linux-kernel
  Cc: David Woodhouse, Linus Walleij, Rob Herring

While this driver is named after the Versatile family of
boards (ARM reference designs) the machine actually called
Versatile was not supported. This patch makes the driver
handle also that machine. We augment the register names for
the reset to *VERSATILE* as well since it is the same
register offsets for Versatile and RealView.

Cc: Rob Herring <robh@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
Hi Power folks, since this is orthogonal to the corresponding
device tree changes it's best of this is just merged into the
power tree and I'll merge the required device tree and board
file changes into the ARM SoC tree.
---
 drivers/power/reset/arm-versatile-reboot.c | 39 +++++++++++++++++++++---------
 1 file changed, 27 insertions(+), 12 deletions(-)

diff --git a/drivers/power/reset/arm-versatile-reboot.c b/drivers/power/reset/arm-versatile-reboot.c
index b208073c887d..06d34ab47df5 100644
--- a/drivers/power/reset/arm-versatile-reboot.c
+++ b/drivers/power/reset/arm-versatile-reboot.c
@@ -18,8 +18,8 @@
 #define INTEGRATOR_HDR_LOCK_OFFSET	0x14
 #define INTEGRATOR_CM_CTRL_RESET	(1 << 3)
 
-#define REALVIEW_SYS_LOCK_OFFSET	0x20
-#define REALVIEW_SYS_RESETCTL_OFFSET	0x40
+#define VERSATILE_SYS_LOCK_OFFSET	0x20
+#define VERSATILE_SYS_RESETCTL_OFFSET	0x40
 
 /* Magic unlocking token used on all Versatile boards */
 #define VERSATILE_LOCK_VAL		0xA05F
@@ -29,6 +29,7 @@
  */
 enum versatile_reboot {
 	INTEGRATOR_REBOOT_CM,
+	VERSATILE_REBOOT_CM,
 	REALVIEW_REBOOT_EB,
 	REALVIEW_REBOOT_PB1176,
 	REALVIEW_REBOOT_PB11MP,
@@ -46,6 +47,10 @@ static const struct of_device_id versatile_reboot_of_match[] = {
 		.data = (void *)INTEGRATOR_REBOOT_CM
 	},
 	{
+		.compatible = "arm,core-module-versatile",
+		.data = (void *)VERSATILE_REBOOT_CM,
+	},
+	{
 		.compatible = "arm,realview-eb-syscon",
 		.data = (void *)REALVIEW_REBOOT_EB,
 	},
@@ -82,33 +87,43 @@ static int versatile_reboot(struct notifier_block *this, unsigned long mode,
 				   INTEGRATOR_CM_CTRL_RESET,
 				   INTEGRATOR_CM_CTRL_RESET);
 		break;
+	case VERSATILE_REBOOT_CM:
+		regmap_write(syscon_regmap, VERSATILE_SYS_LOCK_OFFSET,
+			     VERSATILE_LOCK_VAL);
+		regmap_update_bits(syscon_regmap,
+				   VERSATILE_SYS_RESETCTL_OFFSET,
+				   0x0107,
+				   0x0105);
+		regmap_write(syscon_regmap, VERSATILE_SYS_LOCK_OFFSET,
+			     0);
+		break;
 	case REALVIEW_REBOOT_EB:
-		regmap_write(syscon_regmap, REALVIEW_SYS_LOCK_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_LOCK_OFFSET,
 			     VERSATILE_LOCK_VAL);
 		regmap_write(syscon_regmap,
-			     REALVIEW_SYS_RESETCTL_OFFSET, 0x0008);
+			     VERSATILE_SYS_RESETCTL_OFFSET, 0x0008);
 		break;
 	case REALVIEW_REBOOT_PB1176:
-		regmap_write(syscon_regmap, REALVIEW_SYS_LOCK_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_LOCK_OFFSET,
 			     VERSATILE_LOCK_VAL);
 		regmap_write(syscon_regmap,
-			     REALVIEW_SYS_RESETCTL_OFFSET, 0x0100);
+			     VERSATILE_SYS_RESETCTL_OFFSET, 0x0100);
 		break;
 	case REALVIEW_REBOOT_PB11MP:
 	case REALVIEW_REBOOT_PBA8:
-		regmap_write(syscon_regmap, REALVIEW_SYS_LOCK_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_LOCK_OFFSET,
 			     VERSATILE_LOCK_VAL);
-		regmap_write(syscon_regmap, REALVIEW_SYS_RESETCTL_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_RESETCTL_OFFSET,
 			     0x0000);
-		regmap_write(syscon_regmap, REALVIEW_SYS_RESETCTL_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_RESETCTL_OFFSET,
 			     0x0004);
 		break;
 	case REALVIEW_REBOOT_PBX:
-		regmap_write(syscon_regmap, REALVIEW_SYS_LOCK_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_LOCK_OFFSET,
 			     VERSATILE_LOCK_VAL);
-		regmap_write(syscon_regmap, REALVIEW_SYS_RESETCTL_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_RESETCTL_OFFSET,
 			     0x00f0);
-		regmap_write(syscon_regmap, REALVIEW_SYS_RESETCTL_OFFSET,
+		regmap_write(syscon_regmap, VERSATILE_SYS_RESETCTL_OFFSET,
 			     0x00f4);
 		break;
 	}
-- 
2.4.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] power/reset: versatile: support the actual versatile
  2016-01-25  8:29 [PATCH 1/2] power/reset: versatile: support the actual versatile Linus Walleij
@ 2016-02-11 14:40 ` Linus Walleij
  2016-02-15  4:59   ` Sebastian Reichel
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Walleij @ 2016-02-11 14:40 UTC (permalink / raw)
  To: Sebastian Reichel, Dmitry Eremin-Solenikov, linux-kernel
  Cc: David Woodhouse, Linus Walleij, Rob Herring, Arnd Bergmann

Hi knock knock,

On Mon, Jan 25, 2016 at 9:29 AM, Linus Walleij <linus.walleij@linaro.org> wrote:

> While this driver is named after the Versatile family of
> boards (ARM reference designs) the machine actually called
> Versatile was not supported. This patch makes the driver
> handle also that machine. We augment the register names for
> the reset to *VERSATILE* as well since it is the same
> register offsets for Versatile and RealView.
>
> Cc: Rob Herring <robh@kernel.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Hi Power folks, since this is orthogonal to the corresponding
> device tree changes it's best of this is just merged into the
> power tree and I'll merge the required device tree and board
> file changes into the ARM SoC tree.

Would the power/reset maintainers please apply this patch or
provide some feedback?

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/2] power/reset: versatile: support the actual versatile
  2016-02-11 14:40 ` Linus Walleij
@ 2016-02-15  4:59   ` Sebastian Reichel
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastian Reichel @ 2016-02-15  4:59 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Dmitry Eremin-Solenikov, linux-kernel, David Woodhouse,
	Rob Herring, Arnd Bergmann

[-- Attachment #1: Type: text/plain, Size: 1041 bytes --]

Hi,

On Thu, Feb 11, 2016 at 03:40:51PM +0100, Linus Walleij wrote:
> Hi knock knock,
> 
> On Mon, Jan 25, 2016 at 9:29 AM, Linus Walleij <linus.walleij@linaro.org> wrote:
> 
> > While this driver is named after the Versatile family of
> > boards (ARM reference designs) the machine actually called
> > Versatile was not supported. This patch makes the driver
> > handle also that machine. We augment the register names for
> > the reset to *VERSATILE* as well since it is the same
> > register offsets for Versatile and RealView.
> >
> > Cc: Rob Herring <robh@kernel.org>
> > Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> > ---
> > Hi Power folks, since this is orthogonal to the corresponding
> > device tree changes it's best of this is just merged into the
> > power tree and I'll merge the required device tree and board
> > file changes into the ARM SoC tree.
> 
> Would the power/reset maintainers please apply this patch or
> provide some feedback?

Sorry for the delay, queued.

-- Sebastian

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-15  4:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-25  8:29 [PATCH 1/2] power/reset: versatile: support the actual versatile Linus Walleij
2016-02-11 14:40 ` Linus Walleij
2016-02-15  4:59   ` Sebastian Reichel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.