aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-07-23 21:54:23 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-07-23 21:54:23 -0400
commit83c7f72259ea4bd0561e2f2762d97ee2888126ce (patch)
treec8b181e9f9a0bb061f5ab63fabb98197d7aee19a /drivers/watchdog
parente05644e17e744315bce12b0948cdc36910b9a76e (diff)
parent574ce79cea9d3fda109ffcc82f81733de4740e5c (diff)
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc
Pull powerpc updates from Benjamin Herrenschmidt: "Notable highlights: - iommu improvements from Anton removing the per-iommu global lock in favor of dividing the DMA space into pools, each with its own lock, and hashed on the CPU number. Along with making the locking more fine grained, this gives significant improvements in multiqueue networking scalability. - Still from Anton, we know provide a vdso based variant of getcpu which makes sched_getcpu with the appropriate glibc patch something like 18 times faster. - More anton goodness (he's been busy !) in other areas such as a faster __clear_user and copy_page on P7, various perf fixes to improve sampling quality, etc... - One more step toward removing legacy i2c interfaces by using new device-tree based probing of platform devices for the AOA audio drivers - A nice series of patches from Michael Neuling that helps avoiding confusion between register numbers and litterals in assembly code, trying to enforce the use of "%rN" register names in gas rather than plain numbers. - A pile of FSL updates - The usual bunch of small fixes, cleanups etc... You may spot a change to drivers/char/mem. The patch got no comment or ack from outside, it's a trivial patch to allow the architecture to skip creating /dev/port, which we use to disable it on ppc64 that don't have a legacy brige. On those, IO ports 0...64K are not mapped in kernel space at all, so accesses to /dev/port cause oopses (and yes, distros -still- ship userspace that bangs hard coded ports such as kbdrate)." * 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc: (106 commits) powerpc/mpic: Create a revmap with enough entries for IPIs and timers Remove stale .rej file powerpc/iommu: Fix iommu pool initialization powerpc/eeh: Check handle_eeh_events() return value powerpc/85xx: Add phy nodes in SGMII mode for MPC8536/44/72DS & P2020DS powerpc/e500: add paravirt QEMU platform powerpc/mpc85xx_ds: convert to unified PCI init powerpc/fsl-pci: get PCI init out of board files powerpc/85xx: Update corenet64_smp_defconfig powerpc/85xx: Update corenet32_smp_defconfig powerpc/85xx: Rename P1021RDB-PC device trees to be consistent powerpc/watchdog: move booke watchdog param related code to setup-common.c sound/aoa: Adapt to new i2c probing scheme i2c/powermac: Improve detection of devices from device-tree powerpc: Disable /dev/port interface on systems without an ISA bridge of: Improve prom_update_property() function powerpc: Add "memory" attribute for mfmsr() powerpc/ftrace: Fix assembly trampoline register usage powerpc/hw_breakpoints: Fix incorrect pointer access powerpc: Put the gpr save/restore functions in their own section ...
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/Kconfig8
-rw-r--r--drivers/watchdog/booke_wdt.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig
index fe819b76de56..c450cfcd702f 100644
--- a/drivers/watchdog/Kconfig
+++ b/drivers/watchdog/Kconfig
@@ -1115,10 +1115,10 @@ config BOOKE_WDT
1115config BOOKE_WDT_DEFAULT_TIMEOUT 1115config BOOKE_WDT_DEFAULT_TIMEOUT
1116 int "PowerPC Book-E Watchdog Timer Default Timeout" 1116 int "PowerPC Book-E Watchdog Timer Default Timeout"
1117 depends on BOOKE_WDT 1117 depends on BOOKE_WDT
1118 default 38 if FSL_BOOKE 1118 default 38 if PPC_FSL_BOOK3E
1119 range 0 63 if FSL_BOOKE 1119 range 0 63 if PPC_FSL_BOOK3E
1120 default 3 if !FSL_BOOKE 1120 default 3 if !PPC_FSL_BOOK3E
1121 range 0 3 if !FSL_BOOKE 1121 range 0 3 if !PPC_FSL_BOOK3E
1122 help 1122 help
1123 Select the default watchdog timer period to be used by the PowerPC 1123 Select the default watchdog timer period to be used by the PowerPC
1124 Book-E watchdog driver. A watchdog "event" occurs when the bit 1124 Book-E watchdog driver. A watchdog "event" occurs when the bit
diff --git a/drivers/watchdog/booke_wdt.c b/drivers/watchdog/booke_wdt.c
index ce0ab4415eff..3fe82d0e8caa 100644
--- a/drivers/watchdog/booke_wdt.c
+++ b/drivers/watchdog/booke_wdt.c
@@ -37,7 +37,7 @@
37u32 booke_wdt_enabled; 37u32 booke_wdt_enabled;
38u32 booke_wdt_period = CONFIG_BOOKE_WDT_DEFAULT_TIMEOUT; 38u32 booke_wdt_period = CONFIG_BOOKE_WDT_DEFAULT_TIMEOUT;
39 39
40#ifdef CONFIG_FSL_BOOKE 40#ifdef CONFIG_PPC_FSL_BOOK3E
41#define WDTP(x) ((((x)&0x3)<<30)|(((x)&0x3c)<<15)) 41#define WDTP(x) ((((x)&0x3)<<30)|(((x)&0x3c)<<15))
42#define WDTP_MASK (WDTP(0x3f)) 42#define WDTP_MASK (WDTP(0x3f))
43#else 43#else
@@ -190,7 +190,7 @@ static long booke_wdt_ioctl(struct file *file,
190 case WDIOC_SETTIMEOUT: 190 case WDIOC_SETTIMEOUT:
191 if (get_user(tmp, p)) 191 if (get_user(tmp, p))
192 return -EFAULT; 192 return -EFAULT;
193#ifdef CONFIG_FSL_BOOKE 193#ifdef CONFIG_PPC_FSL_BOOK3E
194 /* period of 1 gives the largest possible timeout */ 194 /* period of 1 gives the largest possible timeout */
195 if (tmp > period_to_sec(1)) 195 if (tmp > period_to_sec(1))
196 return -EINVAL; 196 return -EINVAL;