Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | // Copyright (c) 2017-18 Linaro Limited |
| 3 | |
| 4 | #include <linux/delay.h> |
| 5 | #include <linux/errno.h> |
| 6 | #include <linux/kernel.h> |
| 7 | #include <linux/module.h> |
| 8 | #include <linux/of.h> |
| 9 | #include <linux/of_platform.h> |
| 10 | #include <linux/platform_device.h> |
| 11 | #include <linux/reboot.h> |
| 12 | #include <linux/reboot-mode.h> |
| 13 | #include <linux/regmap.h> |
| 14 | |
| 15 | #define PON_SOFT_RB_SPARE 0x8f |
| 16 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 17 | #define GEN1_REASON_SHIFT 2 |
| 18 | #define GEN2_REASON_SHIFT 1 |
| 19 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 20 | struct pm8916_pon { |
| 21 | struct device *dev; |
| 22 | struct regmap *regmap; |
| 23 | u32 baseaddr; |
| 24 | struct reboot_mode_driver reboot_mode; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 25 | long reason_shift; |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | static int pm8916_reboot_mode_write(struct reboot_mode_driver *reboot, |
| 29 | unsigned int magic) |
| 30 | { |
| 31 | struct pm8916_pon *pon = container_of |
| 32 | (reboot, struct pm8916_pon, reboot_mode); |
| 33 | int ret; |
| 34 | |
| 35 | ret = regmap_update_bits(pon->regmap, |
| 36 | pon->baseaddr + PON_SOFT_RB_SPARE, |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 37 | 0xfc, magic << pon->reason_shift); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 38 | if (ret < 0) |
| 39 | dev_err(pon->dev, "update reboot mode bits failed\n"); |
| 40 | |
| 41 | return ret; |
| 42 | } |
| 43 | |
| 44 | static int pm8916_pon_probe(struct platform_device *pdev) |
| 45 | { |
| 46 | struct pm8916_pon *pon; |
| 47 | int error; |
| 48 | |
| 49 | pon = devm_kzalloc(&pdev->dev, sizeof(*pon), GFP_KERNEL); |
| 50 | if (!pon) |
| 51 | return -ENOMEM; |
| 52 | |
| 53 | pon->dev = &pdev->dev; |
| 54 | |
| 55 | pon->regmap = dev_get_regmap(pdev->dev.parent, NULL); |
| 56 | if (!pon->regmap) { |
| 57 | dev_err(&pdev->dev, "failed to locate regmap\n"); |
| 58 | return -ENODEV; |
| 59 | } |
| 60 | |
| 61 | error = of_property_read_u32(pdev->dev.of_node, "reg", |
| 62 | &pon->baseaddr); |
| 63 | if (error) |
| 64 | return error; |
| 65 | |
| 66 | pon->reboot_mode.dev = &pdev->dev; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 67 | pon->reason_shift = (long)of_device_get_match_data(&pdev->dev); |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 68 | pon->reboot_mode.write = pm8916_reboot_mode_write; |
| 69 | error = devm_reboot_mode_register(&pdev->dev, &pon->reboot_mode); |
| 70 | if (error) { |
| 71 | dev_err(&pdev->dev, "can't register reboot mode\n"); |
| 72 | return error; |
| 73 | } |
| 74 | |
| 75 | platform_set_drvdata(pdev, pon); |
| 76 | |
| 77 | return devm_of_platform_populate(&pdev->dev); |
| 78 | } |
| 79 | |
| 80 | static const struct of_device_id pm8916_pon_id_table[] = { |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 81 | { .compatible = "qcom,pm8916-pon", .data = (void *)GEN1_REASON_SHIFT }, |
| 82 | { .compatible = "qcom,pms405-pon", .data = (void *)GEN1_REASON_SHIFT }, |
| 83 | { .compatible = "qcom,pm8998-pon", .data = (void *)GEN2_REASON_SHIFT }, |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 84 | { } |
| 85 | }; |
| 86 | MODULE_DEVICE_TABLE(of, pm8916_pon_id_table); |
| 87 | |
| 88 | static struct platform_driver pm8916_pon_driver = { |
| 89 | .probe = pm8916_pon_probe, |
| 90 | .driver = { |
| 91 | .name = "pm8916-pon", |
| 92 | .of_match_table = of_match_ptr(pm8916_pon_id_table), |
| 93 | }, |
| 94 | }; |
| 95 | module_platform_driver(pm8916_pon_driver); |
| 96 | |
| 97 | MODULE_DESCRIPTION("pm8916 Power On driver"); |
| 98 | MODULE_LICENSE("GPL v2"); |