Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Álvaro Fernández Rojas | e388969 | 2017-04-25 00:39:14 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> |
| 4 | * |
| 5 | * Derived from linux/drivers/power/reset/syscon-reboot.c: |
| 6 | * Copyright (C) 2013, Applied Micro Circuits Corporation |
| 7 | * Author: Feng Kan <fkan@apm.com> |
Álvaro Fernández Rojas | e388969 | 2017-04-25 00:39:14 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <dm.h> |
| 12 | #include <errno.h> |
| 13 | #include <regmap.h> |
| 14 | #include <sysreset.h> |
| 15 | #include <syscon.h> |
| 16 | |
Álvaro Fernández Rojas | e388969 | 2017-04-25 00:39:14 +0200 | [diff] [blame] | 17 | struct syscon_reboot_priv { |
| 18 | struct regmap *regmap; |
| 19 | unsigned int offset; |
| 20 | unsigned int mask; |
| 21 | }; |
| 22 | |
| 23 | static int syscon_reboot_request(struct udevice *dev, enum sysreset_t type) |
| 24 | { |
| 25 | struct syscon_reboot_priv *priv = dev_get_priv(dev); |
| 26 | |
| 27 | regmap_write(priv->regmap, priv->offset, priv->mask); |
| 28 | |
| 29 | return -EINPROGRESS; |
| 30 | } |
| 31 | |
| 32 | static struct sysreset_ops syscon_reboot_ops = { |
| 33 | .request = syscon_reboot_request, |
| 34 | }; |
| 35 | |
| 36 | int syscon_reboot_probe(struct udevice *dev) |
| 37 | { |
| 38 | struct udevice *syscon; |
| 39 | struct syscon_reboot_priv *priv = dev_get_priv(dev); |
| 40 | int err; |
| 41 | |
| 42 | err = uclass_get_device_by_phandle(UCLASS_SYSCON, dev, |
| 43 | "regmap", &syscon); |
| 44 | if (err) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 45 | pr_err("unable to find syscon device\n"); |
Álvaro Fernández Rojas | e388969 | 2017-04-25 00:39:14 +0200 | [diff] [blame] | 46 | return err; |
| 47 | } |
| 48 | |
| 49 | priv->regmap = syscon_get_regmap(syscon); |
| 50 | if (!priv->regmap) { |
Masahiro Yamada | 9b643e3 | 2017-09-16 14:10:41 +0900 | [diff] [blame] | 51 | pr_err("unable to find regmap\n"); |
Álvaro Fernández Rojas | e388969 | 2017-04-25 00:39:14 +0200 | [diff] [blame] | 52 | return -ENODEV; |
| 53 | } |
| 54 | |
Álvaro Fernández Rojas | 0606906 | 2018-03-17 12:22:24 +0100 | [diff] [blame] | 55 | priv->offset = dev_read_u32_default(dev, "offset", 0); |
| 56 | priv->mask = dev_read_u32_default(dev, "mask", 0); |
Álvaro Fernández Rojas | e388969 | 2017-04-25 00:39:14 +0200 | [diff] [blame] | 57 | |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | static const struct udevice_id syscon_reboot_ids[] = { |
| 62 | { .compatible = "syscon-reboot" }, |
| 63 | { /* sentinel */ } |
| 64 | }; |
| 65 | |
| 66 | U_BOOT_DRIVER(syscon_reboot) = { |
| 67 | .name = "syscon_reboot", |
| 68 | .id = UCLASS_SYSRESET, |
| 69 | .of_match = syscon_reboot_ids, |
| 70 | .probe = syscon_reboot_probe, |
| 71 | .priv_auto_alloc_size = sizeof(struct syscon_reboot_priv), |
| 72 | .ops = &syscon_reboot_ops, |
| 73 | }; |