mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCHv3] Add a simple watchdog 'framework' to Barebox
@ 2012-06-26  8:43 Juergen Beisert
  2012-06-26  8:43 ` [PATCH 1/2] Add a simple watchdog framework Juergen Beisert
  2012-06-26  8:43 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
  0 siblings, 2 replies; 6+ messages in thread
From: Juergen Beisert @ 2012-06-26  8:43 UTC (permalink / raw)
  To: barebox

This patch series add a very simple watchdog command and also a user of it
for the i.MX28 SoC. The watchdog driver might also work on i.MX23, but this
is not tested yet.

This version again adds some error check and reporting, if the watchdog does
not work as expected.

The following changes since commit 075ea63a322b70d9a7a27fe0bad5f36e8e3c8bdc:

  Merge branch 'for-next/resource-size' into next (2012-06-25 14:39:10 +0200)

are available in the git repository at:

  git://git.pengutronix.de/git/jbe/barebox.git next_add_watchdog_frameworkV3

for you to fetch changes up to 4710576c2851d53529b02ac9342134672698837d:

  ARM/MXS: add a watchdog driver for i.MX28 (2012-06-26 10:37:35 +0200)

----------------------------------------------------------------
Juergen Beisert (2):
      Add a simple watchdog framework
      ARM/MXS: add a watchdog driver for i.MX28

 drivers/Kconfig            |    1 +
 drivers/Makefile           |    1 +
 drivers/watchdog/Kconfig   |   17 +++++++
 drivers/watchdog/Makefile  |    2 +
 drivers/watchdog/im28wd.c  |  121 ++++++++++++++++++++++++++++++++++++++++++++
 drivers/watchdog/wd_core.c |   67 ++++++++++++++++++++++++
 include/watchdog.h         |   18 +++++++
 7 files changed, 227 insertions(+)
 create mode 100644 drivers/watchdog/Kconfig
 create mode 100644 drivers/watchdog/Makefile
 create mode 100644 drivers/watchdog/im28wd.c
 create mode 100644 drivers/watchdog/wd_core.c
 create mode 100644 include/watchdog.h

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [PATCHv4] Add a simple watchdog 'framework' to Barebox
@ 2012-06-27 14:30 Juergen Beisert
  2012-06-27 14:30 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
  0 siblings, 1 reply; 6+ messages in thread
From: Juergen Beisert @ 2012-06-27 14:30 UTC (permalink / raw)
  To: barebox

This patch series add a less simple watchdog command and also a user of it
for the i.MX28 SoC. The watchdog driver might also work on i.MX23, but this
is not tested yet.

This version has reorganized additions. And it is more or less prepared to add
support for more than one watchdog at runtime at a time later on.

The following changes since commit 7eccba9c44dc69c9727a14b3e7a82c31b874327e:

  Merge branch 'for-next/sparse' into next (2012-06-26 21:30:22 +0200)

are available in the git repository at:

  git://git.pengutronix.de/git/jbe/barebox.git next_add_watchdog_frameworkV4

for you to fetch changes up to b75764cbf2bbdbc63c38f85690a39d647a5a7bda:

  ARM/MXS: add a watchdog driver for i.MX28 (2012-06-27 12:25:49 +0200)

----------------------------------------------------------------
Juergen Beisert (2):
      Add a simple watchdog framework
      ARM/MXS: add a watchdog driver for i.MX28

 commands/Kconfig           |   19 +++++++
 commands/Makefile          |    1 +
 commands/wd.c              |   68 ++++++++++++++++++++++++
 drivers/Kconfig            |    1 +
 drivers/Makefile           |    1 +
 drivers/watchdog/Kconfig   |   15 ++++++
 drivers/watchdog/Makefile  |    2 +
 drivers/watchdog/im28wd.c  |  124 ++++++++++++++++++++++++++++++++++++++++++++
 drivers/watchdog/wd_core.c |   61 ++++++++++++++++++++++
 include/watchdog.h         |   24 +++++++++
 10 files changed, 316 insertions(+)
 create mode 100644 commands/wd.c
 create mode 100644 drivers/watchdog/Kconfig
 create mode 100644 drivers/watchdog/Makefile
 create mode 100644 drivers/watchdog/im28wd.c
 create mode 100644 drivers/watchdog/wd_core.c
 create mode 100644 include/watchdog.h

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [PATCHv2] Add a simple watchdog 'framework' to Barebox
@ 2012-06-22  9:54 Juergen Beisert
  2012-06-22  9:54 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
  0 siblings, 1 reply; 6+ messages in thread
From: Juergen Beisert @ 2012-06-22  9:54 UTC (permalink / raw)
  To: barebox

This patch series add a very simple watchdog command and also a user of it
for the i.MX28 SoC. The watchdog driver might also work on i.MX23, but this
is not tested yet.

This version adds some error check and reporting, if the watchdog does not
work as expected.

The following changes since commit 5d44309c3f9ab24d3f12f0d571bb94725948f0ff:

  Merge branch 'for-next/resource-size' into next (2012-06-21 20:52:03 +0200)

are available in the git repository at:

  git://git.pengutronix.de/git/jbe/barebox.git next_add_watchdog_frameworkV2

for you to fetch changes up to db34cd3715b7cbce138ccffaa5490be2e31e1b3e:

  ARM/MXS: add a watchdog driver for i.MX28 (2012-06-22 11:45:42 +0200)

----------------------------------------------------------------
Juergen Beisert (2):
      Add a simple watchdog framework
      ARM/MXS: add a watchdog driver for i.MX28

 drivers/Kconfig            |    1 +
 drivers/Makefile           |    1 +
 drivers/watchdog/Kconfig   |   17 +++++++
 drivers/watchdog/Makefile  |    2 +
 drivers/watchdog/im28wd.c  |  121 ++++++++++++++++++++++++++++++++++++++++++++
 drivers/watchdog/wd_core.c |   58 +++++++++++++++++++++
 include/watchdog.h         |   18 +++++++
 7 files changed, 218 insertions(+)
 create mode 100644 drivers/watchdog/Kconfig
 create mode 100644 drivers/watchdog/Makefile
 create mode 100644 drivers/watchdog/im28wd.c
 create mode 100644 drivers/watchdog/wd_core.c
 create mode 100644 include/watchdog.h


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 6+ messages in thread
* [PATCH] Add a simple watchdog 'framework' to Barebox
@ 2012-06-22  8:44 Juergen Beisert
  2012-06-22  8:44 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
  0 siblings, 1 reply; 6+ messages in thread
From: Juergen Beisert @ 2012-06-22  8:44 UTC (permalink / raw)
  To: barebox

This patch series add a very simple watchdog command and also a user of it
for the i.MX28 SoC. The watchdog driver might also work on i.MX23, but this
is not tested yed.

The following changes since commit 5d44309c3f9ab24d3f12f0d571bb94725948f0ff:

  Merge branch 'for-next/resource-size' into next (2012-06-21 20:52:03 +0200)

are available in the git repository at:

  git://git.pengutronix.de/git/jbe/barebox.git next_add_watchdog_frameworkV1

for you to fetch changes up to 4778025b3c99ca815d4902b961e62b9265cf2db5:

  ARM/MXS: add a watchdog driver for i.MX28 (2012-06-22 10:28:19 +0200)

----------------------------------------------------------------
Juergen Beisert (2):
      Add a simple watchdog framework
      ARM/MXS: add a watchdog driver for i.MX28

 drivers/Kconfig            |    1 +
 drivers/Makefile           |    1 +
 drivers/watchdog/Kconfig   |   17 +++++++
 drivers/watchdog/Makefile  |    2 +
 drivers/watchdog/im28wd.c  |  118 ++++++++++++++++++++++++++++++++++++++++++++
 drivers/watchdog/wd_core.c |   48 ++++++++++++++++++
 include/watchdog.h         |   18 +++++++
 7 files changed, 205 insertions(+)
 create mode 100644 drivers/watchdog/Kconfig
 create mode 100644 drivers/watchdog/Makefile
 create mode 100644 drivers/watchdog/im28wd.c
 create mode 100644 drivers/watchdog/wd_core.c
 create mode 100644 include/watchdog.h

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2012-06-27 14:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-26  8:43 [PATCHv3] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-26  8:43 ` [PATCH 1/2] Add a simple watchdog framework Juergen Beisert
2012-06-26  8:43 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
  -- strict thread matches above, loose matches on Subject: below --
2012-06-27 14:30 [PATCHv4] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-27 14:30 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
2012-06-22  9:54 [PATCHv2] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-22  9:54 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert
2012-06-22  8:44 [PATCH] Add a simple watchdog 'framework' to Barebox Juergen Beisert
2012-06-22  8:44 ` [PATCH 2/2] ARM/MXS: add a watchdog driver for i.MX28 Juergen Beisert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox