lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Sun, 12 Oct 2008 10:52:10 +0200
From:	Wim Van Sebroeck <wim@...ana.be>
To:	Linus Torvalds <torvalds@...ux-foundation.org>
Cc:	Andrew Morton <akpm@...ux-foundation.org>,
	LKML <linux-kernel@...r.kernel.org>,
	Felipe Balbi <felipe.balbi@...ia.com>,
	Flemming Frandsen <ff@...issing.net>,
	"George G. Davis" <gdavis@...sta.com>,
	Lennert Buytenhek <buytenh@...vell.com>,
	Oliver Schuster <olivers137@....com>,
	Renaud Cerrato <r.cerrato@...-technologies.fr>,
	Sylver Bruneau <sylver.bruneau@...glemail.com>,
	Russell King - ARM Linux <linux@....linux.org.uk>
Subject: [WATCHDOG] v2.6.28-rc1 watchdog patches - part 1

Hi Linus,

The first set of watchdog patches.

Can you please pull from 'master' branch of
	git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
or if master.kernel.org hasn't synced up yet:
	master.kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git

This will update the following files:

 arch/arm/mach-orion5x/include/mach/orion5x.h |    2 
 arch/arm/plat-omap/devices.c                 |   21 
 drivers/watchdog/Kconfig                     |   43 +
 drivers/watchdog/Makefile                    |    4 
 drivers/watchdog/at91sam9_wdt.c              |  328 ++++++++++++
 drivers/watchdog/it87_wdt.c                  |  725 +++++++++++++++++++++++++++
 drivers/watchdog/omap_wdt.c                  |  337 ++++++++----
 drivers/watchdog/omap_wdt.h                  |   28 -
 drivers/watchdog/orion5x_wdt.c               |  245 +++++++++
 drivers/watchdog/w83697ug_wdt.c              |  392 ++++++++++++++
 10 files changed, 1985 insertions(+), 140 deletions(-)

with these Changes:

Author: Wim Van Sebroeck <wim@...ana.be>
Date:   Thu Oct 2 09:32:45 2008 +0000

    [WATCHDOG] orion5x_wdt.c: add spinlocking
    
    Add spin_locking to orion5x_wdt.c to prevent races.
    
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

Author: Sylver Bruneau <sylver.bruneau@...glemail.com>
Date:   Thu Jun 26 10:47:45 2008 +0200

    [WATCHDOG] Orion: add hardware watchdog support
    
    This patch allows the use of the hardware watchdog in the
    Marvell Orion series of ARM SoCs.
    
    Signed-off-by: Sylver Bruneau <sylver.bruneau@...glemail.com>
    Signed-off-by: Lennert Buytenhek <buytenh@...vell.com>
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

Author: Felipe Balbi <felipe.balbi@...ia.com>
Date:   Sat Sep 20 04:14:03 2008 +0300

    [WATCHDOG] omap_wdt.c: cleanup a bit omap_wdt.c
    
    Trivial cleanup patch.
    
    Signed-off-by: Felipe Balbi <felipe.balbi@...ia.com>
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

Author: Felipe Balbi <felipe.balbi@...ia.com>
Date:   Sat Sep 20 04:14:02 2008 +0300

    [WATCHDOG] omap_wdt.c: another ioremap() fix
    
    convert to use ioremap() and __raw_{read/write} friends.
    
    Signed-off-by: Felipe Balbi <felipe.balbi@...ia.com>
    Signed-off-by: George G. Davis <gdavis@...sta.com>
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

Author: Felipe Balbi <felipe.balbi@...ia.com>
Date:   Sat Sep 20 04:14:01 2008 +0300

    [WATCHDOG] omap_wdt.c: sync linux-omap changes
    
    These are changes that have been sitting in linux-omap
    and were never sent upstream.
    
    Hopefully, it'll never happen again at least for this
    driver.
    
    Signed-off-by: Felipe Balbi <felipe.balbi@...ia.com>
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

Author: Renaud CERRATO <r.cerrato@...-technologies.fr>
Date:   Mon Jun 23 17:05:49 2008 +0200

    [WATCHDOG] Add AT91SAM9X watchdog
    
    Add a driver for the watchdog timer embedded into AT91SAM9X chips.
    
    Signed-off-by: Renaud Cerrato <r.cerrato@...-technologies.fr>
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

Author: Flemming Frandsen <ff@...issing.net>
Date:   Thu Apr 17 11:29:54 2008 +0200

    [WATCHDOG] Add driver for winbond w83697ug/uf watchdog feature
    
    Adapted the w83627hf_wdt.c driver to work with the w83697ug/uf chip,
    found on MSI Fuzzy CX700 boards.
    
    The method used is taken directly from the winbond datasheet and
    surprisingly it differs slightly from all the other winbond watchdogs.
    
    So far it has only been tested on the CX700 board that I have, but it
    seems to work nicely.
    
    Signed-off-by: Flemming Frandsen <ff@...issing.net>
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

Author: Oliver Schuster <olivers137@....com>
Date:   Wed Mar 5 16:48:45 2008 +0100

    [WATCHDOG] add watchdog driver IT8716 IT8726 IT8712J/K
    
    Add it87xx watchdog driver
    IT8716 IT8718 IT8726 IT8712-J IT8712-K
    
    Signed-off-by: Oliver Schuster <olivers137@....com>
    Signed-off-by: Wim Van Sebroeck <wim@...ana.be>

The Changes can also be looked at on:
	http://www.kernel.org/git/?p=linux/kernel/git/wim/linux-2.6-watchdog.git;a=summary

Greetings,
Wim.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists