From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/3] misc: add bootcount framework
Date: Fri, 20 Sep 2013 10:01:27 +0200 [thread overview]
Message-ID: <20130920080127.GG1137@ns203013.ovh.net> (raw)
In-Reply-To: <20130920072313.GF30088@pengutronix.de>
On 09:23 Fri 20 Sep , Sascha Hauer wrote:
> On Fri, Sep 20, 2013 at 06:46:15AM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > ---
> > drivers/misc/Kconfig | 3 +++
> > drivers/misc/Makefile | 1 +
> > drivers/misc/bootcount.c | 24 ++++++++++++++++++++++++
> > include/bootcount.h | 21 +++++++++++++++++++++
> > 4 files changed, 49 insertions(+)
> > create mode 100644 drivers/misc/bootcount.c
> > create mode 100644 include/bootcount.h
> >
> > diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig
> > index 606490b..a972ba4 100644
> > --- a/drivers/misc/Kconfig
> > +++ b/drivers/misc/Kconfig
> > @@ -15,4 +15,7 @@ config JTAG
> > help
> > Controls JTAG chains connected to I/O pins
> >
> > +config BOOTCOUNT
> > + bool
> > +
> > endif # MISC_DEVICES
> > diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile
> > index b085577..fa668c1 100644
> > --- a/drivers/misc/Makefile
> > +++ b/drivers/misc/Makefile
> > @@ -3,3 +3,4 @@
> > #
> >
> > obj-$(CONFIG_JTAG) += jtag.o
> > +obj-$(CONFIG_BOOTCOUNT) += bootcount.o
> > diff --git a/drivers/misc/bootcount.c b/drivers/misc/bootcount.c
> > new file mode 100644
> > index 0000000..0205d00
> > --- /dev/null
> > +++ b/drivers/misc/bootcount.c
> > @@ -0,0 +1,24 @@
> > +/*
> > + * Copyright (C) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> > + *
> > + * GPLv2 Only
> > + */
> > +
> > +#include <common.h>
> > +#include <init.h>
> > +#include <bootcount.h>
> > +
> > +static struct bootcount_driver *bd;
> > +
> > +void bootcount_register(struct bootcount_driver *drv)
> > +{
> > + bd = drv;
> > +}
> > +
> > +static int bootcount_inc(void)
> > +{
> > + if (bd)
> > + bd->inc(bd);
> > + return 0;
> > +}
> > +late_initcall(bootcount_inc);
>
> This 'framework' in it's current state doesn't make much sense. It
> doesn't even have support for reading the actual count back which I
> would see as one of the minimum requirements for this.
I let the driver handle this
we can move this here if you want
>
> Also it's not clear what exactly this boot counter counts. Is it the
> number of boots since the beginning of time? Or is it the boot counter
> since the last power cycle or since the RTC Backup battery was last
> changed?
the boot count is alway how many time the system start
the number will depend on you system if you use an env it;s will be since
ever. If you use a regsiter it will be since ever if register is a backup
powered register or since power on
the comportement will depend on the implementation and the hardware feature
for somfy it's since ever as we use a backup register which is powered by a
backup battery
Best Regards,
J.
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2013-09-20 8:00 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-20 4:45 [PATCH 0/3] introduce bootcount support Jean-Christophe PLAGNIOL-VILLARD
2013-09-20 4:46 ` [PATCH 1/3] misc: add bootcount framework Jean-Christophe PLAGNIOL-VILLARD
2013-09-20 4:46 ` [PATCH 2/3] misc: add somfy bootcount support Jean-Christophe PLAGNIOL-VILLARD
2013-09-20 4:46 ` [PATCH 3/3] animeo_ip: add " Jean-Christophe PLAGNIOL-VILLARD
2013-09-20 7:23 ` [PATCH 1/3] misc: add bootcount framework Sascha Hauer
2013-09-20 8:01 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2013-09-20 12:39 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130920080127.GG1137@ns203013.ovh.net \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox