lkml.org 
[lkml]   [2021]   [Sep]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRE: [PATCH] drivers: mfd: da9063: Add restart notifier implementation
Date
On 21 September 2021 06:34, Alexandre Ghiti wrote:

> The SiFive Unmatched board uses the da9063 PMIC for reset: add a restart
> notifier that will execute a small i2c sequence allowing to reset the
> board.
>
> The original implementation comes from Marcus Comstedt and Anders
> Montonen
> (https://forums.sifive.com/t/reboot-command/4721/28).
>
> Signed-off-by: Alexandre Ghiti <alexandre.ghiti@canonical.com>
> ---
> drivers/mfd/da9063-core.c | 25 +++++++++++++++++++++++++
> include/linux/mfd/da9063/core.h | 3 +++
> 2 files changed, 28 insertions(+)
>
> diff --git a/drivers/mfd/da9063-core.c b/drivers/mfd/da9063-core.c
> index df407c3afce3..c87b8d611f20 100644
> --- a/drivers/mfd/da9063-core.c
> +++ b/drivers/mfd/da9063-core.c
> @@ -20,6 +20,7 @@
> #include <linux/mutex.h>
> #include <linux/mfd/core.h>
> #include <linux/regmap.h>
> +#include <linux/reboot.h>
>
> #include <linux/mfd/da9063/core.h>
> #include <linux/mfd/da9063/registers.h>
> @@ -158,6 +159,18 @@ static int da9063_clear_fault_log(struct da9063 *da9063)
> return ret;
> }
>
> +static int da9063_restart_notify(struct notifier_block *this,
> + unsigned long mode, void *cmd)
> +{
> + struct da9063 *da9063 = container_of(this, struct da9063,
> restart_handler);
> +
> + regmap_write(da9063->regmap, DA9063_REG_PAGE_CON, 0x00);
> + regmap_write(da9063->regmap, DA9063_REG_CONTROL_F, 0x04);
> + regmap_write(da9063->regmap, DA9063_REG_CONTROL_A, 0x68);
> +
> + return NOTIFY_DONE;
> +}

I will talk with our HW team to clarify, but this sequence looks to be very
specific to the needs of the platform in question which doesn't feel right to
me. As was mentioned on another thread as well, the watchdog driver already has
a restart function to reset the device (and thus the system), so I don't believe
we should have multiple of these.

For board specific sequences, there are machine quirks I believe which can be
used to handle stuff like this, if this really isn't a generic solution to fit
all cases.

\
 
 \ /
  Last update: 2021-09-24 17:04    [W:0.272 / U:1.992 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site