2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2006-10-03 21:01:26 +00:00
|
|
|
* linux/drivers/parisc/power.c
|
2005-04-16 22:20:36 +00:00
|
|
|
* HP PARISC soft power switch support driver
|
|
|
|
*
|
2007-01-07 15:07:48 +00:00
|
|
|
* Copyright (c) 2001-2007 Helge Deller <deller@gmx.de>
|
2005-04-16 22:20:36 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL").
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* HINT:
|
|
|
|
* Support of the soft power switch button may be enabled or disabled at
|
|
|
|
* runtime through the "/proc/sys/kernel/power" procfs entry.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
#include <linux/sched.h>
|
2007-01-07 15:07:48 +00:00
|
|
|
#include <linux/kthread.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <asm/pdc.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/led.h>
|
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
#define DRIVER_NAME "powersw"
|
|
|
|
#define KTHREAD_NAME "kpowerswd"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
/* how often should the power button be polled ? */
|
|
|
|
#define POWERSWITCH_POLL_PER_SEC 2
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
/* how long does the power button needs to be down until we react ? */
|
|
|
|
#define POWERSWITCH_DOWN_SEC 2
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
/* assembly code to access special registers */
|
|
|
|
/* taken from PCXL ERS page 82 */
|
2005-04-16 22:20:36 +00:00
|
|
|
#define DIAG_CODE(code) (0x14000000 + ((code)<<5))
|
|
|
|
|
|
|
|
#define MFCPU_X(rDiagReg, t_ch, t_th, code) \
|
|
|
|
(DIAG_CODE(code) + ((rDiagReg)<<21) + ((t_ch)<<16) + ((t_th)<<0) )
|
|
|
|
|
|
|
|
#define MTCPU(dr, gr) MFCPU_X(dr, gr, 0, 0x12) /* move value of gr to dr[dr] */
|
|
|
|
#define MFCPU_C(dr, gr) MFCPU_X(dr, gr, 0, 0x30) /* for dr0 and dr8 only ! */
|
|
|
|
#define MFCPU_T(dr, gr) MFCPU_X(dr, 0, gr, 0xa0) /* all dr except dr0 and dr8 */
|
|
|
|
|
|
|
|
#define __getDIAG(dr) ( { \
|
|
|
|
register unsigned long __res asm("r28");\
|
|
|
|
__asm__ __volatile__ ( \
|
2007-01-07 15:07:48 +00:00
|
|
|
".word %1" : "=&r" (__res) : "i" (MFCPU_T(dr,28) ) \
|
2005-04-16 22:20:36 +00:00
|
|
|
); \
|
|
|
|
__res; \
|
|
|
|
} )
|
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
/* local shutdown counter */
|
2006-01-11 01:35:03 +00:00
|
|
|
static int shutdown_timer __read_mostly;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* check, give feedback and start shutdown after one second */
|
|
|
|
static void process_shutdown(void)
|
|
|
|
{
|
|
|
|
if (shutdown_timer == 0)
|
2007-01-07 15:07:48 +00:00
|
|
|
printk(KERN_ALERT KTHREAD_NAME ": Shutdown requested...\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
shutdown_timer++;
|
|
|
|
|
|
|
|
/* wait until the button was pressed for 1 second */
|
2007-01-07 15:07:48 +00:00
|
|
|
if (shutdown_timer == (POWERSWITCH_DOWN_SEC*POWERSWITCH_POLL_PER_SEC)) {
|
|
|
|
static const char msg[] = "Shutting down...";
|
|
|
|
printk(KERN_INFO KTHREAD_NAME ": %s\n", msg);
|
2005-04-16 22:20:36 +00:00
|
|
|
lcd_print(msg);
|
2007-01-07 15:07:48 +00:00
|
|
|
|
|
|
|
/* send kill signal */
|
|
|
|
if (kill_cad_pid(SIGINT, 1)) {
|
|
|
|
/* just in case killing init process failed */
|
|
|
|
if (pm_power_off)
|
|
|
|
pm_power_off();
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
/* main power switch task struct */
|
|
|
|
static struct task_struct *power_task;
|
|
|
|
|
|
|
|
/* filename in /proc which can be used to enable/disable the power switch */
|
|
|
|
#define SYSCTL_FILENAME "sys/kernel/power"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* soft power switch enabled/disabled */
|
2006-01-11 01:35:03 +00:00
|
|
|
int pwrsw_enabled __read_mostly = 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
/* main kernel thread worker. It polls the button state */
|
|
|
|
static int kpowerswd(void *param)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-01-07 15:07:48 +00:00
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
|
|
|
|
do {
|
|
|
|
int button_not_pressed;
|
|
|
|
unsigned long soft_power_reg = (unsigned long) param;
|
|
|
|
|
|
|
|
schedule_timeout_interruptible(pwrsw_enabled ? HZ : HZ/POWERSWITCH_POLL_PER_SEC);
|
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
|
|
|
|
if (unlikely(!pwrsw_enabled))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (soft_power_reg) {
|
|
|
|
/*
|
|
|
|
* Non-Gecko-style machines:
|
|
|
|
* Check the power switch status which is read from the
|
|
|
|
* real I/O location at soft_power_reg.
|
|
|
|
* Bit 31 ("the lowest bit) is the status of the power switch.
|
|
|
|
* This bit is "1" if the button is NOT pressed.
|
|
|
|
*/
|
|
|
|
button_not_pressed = (gsc_readl(soft_power_reg) & 0x1);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* On gecko style machines (e.g. 712/xx and 715/xx)
|
|
|
|
* the power switch status is stored in Bit 0 ("the highest bit")
|
|
|
|
* of CPU diagnose register 25.
|
|
|
|
* Warning: Some machines never reset the DIAG flag, even if
|
|
|
|
* the button has been released again.
|
|
|
|
*/
|
|
|
|
button_not_pressed = (__getDIAG(25) & 0x80000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (likely(button_not_pressed)) {
|
|
|
|
if (unlikely(shutdown_timer && /* avoid writing if not necessary */
|
|
|
|
shutdown_timer < (POWERSWITCH_DOWN_SEC*POWERSWITCH_POLL_PER_SEC))) {
|
|
|
|
shutdown_timer = 0;
|
|
|
|
printk(KERN_INFO KTHREAD_NAME ": Shutdown request aborted.\n");
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
process_shutdown();
|
|
|
|
|
|
|
|
|
|
|
|
} while (!kthread_should_stop());
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* powerfail interruption handler (irq IRQ_FROM_REGION(CPU_IRQ_REGION)+2)
|
|
|
|
*/
|
|
|
|
#if 0
|
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
of passing regs around manually through all ~1800 interrupt handlers in the
Linux kernel.
The regs pointer is used in few places, but it potentially costs both stack
space and code to pass it around. On the FRV arch, removing the regs parameter
from all the genirq function results in a 20% speed up of the IRQ exit path
(ie: from leaving timer_interrupt() to leaving do_IRQ()).
Where appropriate, an arch may override the generic storage facility and do
something different with the variable. On FRV, for instance, the address is
maintained in GR28 at all times inside the kernel as part of general exception
handling.
Having looked over the code, it appears that the parameter may be handed down
through up to twenty or so layers of functions. Consider a USB character
device attached to a USB hub, attached to a USB controller that posts its
interrupts through a cascaded auxiliary interrupt controller. A character
device driver may want to pass regs to the sysrq handler through the input
layer which adds another few layers of parameter passing.
I've build this code with allyesconfig for x86_64 and i386. I've runtested the
main part of the code on FRV and i386, though I can't test most of the drivers.
I've also done partial conversion for powerpc and MIPS - these at least compile
with minimal configurations.
This will affect all archs. Mostly the changes should be relatively easy.
Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
struct pt_regs *old_regs = set_irq_regs(regs);
And put the old one back at the end:
set_irq_regs(old_regs);
Don't pass regs through to generic_handle_irq() or __do_IRQ().
In timer_interrupt(), this sort of change will be necessary:
- update_process_times(user_mode(regs));
- profile_tick(CPU_PROFILING, regs);
+ update_process_times(user_mode(get_irq_regs()));
+ profile_tick(CPU_PROFILING);
I'd like to move update_process_times()'s use of get_irq_regs() into itself,
except that i386, alone of the archs, uses something other than user_mode().
Some notes on the interrupt handling in the drivers:
(*) input_dev() is now gone entirely. The regs pointer is no longer stored in
the input_dev struct.
(*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking. It does
something different depending on whether it's been supplied with a regs
pointer or not.
(*) Various IRQ handler function pointers have been moved to type
irq_handler_t.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
2006-10-05 13:55:46 +00:00
|
|
|
static void powerfail_interrupt(int code, void *x)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
printk(KERN_CRIT "POWERFAIL INTERRUPTION !\n");
|
|
|
|
poweroff();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* parisc_panic_event() is called by the panic handler.
|
|
|
|
* As soon as a panic occurs, our tasklets above will not be
|
|
|
|
* executed any longer. This function then re-enables the
|
|
|
|
* soft-power switch and allows the user to switch off the system
|
|
|
|
*/
|
|
|
|
static int parisc_panic_event(struct notifier_block *this,
|
|
|
|
unsigned long event, void *ptr)
|
|
|
|
{
|
|
|
|
/* re-enable the soft-power switch */
|
|
|
|
pdc_soft_power_button(0);
|
|
|
|
return NOTIFY_DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block parisc_panic_block = {
|
|
|
|
.notifier_call = parisc_panic_event,
|
|
|
|
.priority = INT_MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int __init power_init(void)
|
|
|
|
{
|
|
|
|
unsigned long ret;
|
2007-01-07 15:07:48 +00:00
|
|
|
unsigned long soft_power_reg;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
request_irq( IRQ_FROM_REGION(CPU_IRQ_REGION)+2, &powerfail_interrupt,
|
|
|
|
0, "powerfail", NULL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* enable the soft power switch if possible */
|
|
|
|
ret = pdc_soft_power_info(&soft_power_reg);
|
|
|
|
if (ret == PDC_OK)
|
|
|
|
ret = pdc_soft_power_button(1);
|
|
|
|
if (ret != PDC_OK)
|
|
|
|
soft_power_reg = -1UL;
|
|
|
|
|
|
|
|
switch (soft_power_reg) {
|
2007-01-07 15:07:48 +00:00
|
|
|
case 0: printk(KERN_INFO DRIVER_NAME ": Gecko-style soft power switch enabled.\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
case -1UL: printk(KERN_INFO DRIVER_NAME ": Soft power switch support not available.\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
return -ENODEV;
|
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
default: printk(KERN_INFO DRIVER_NAME ": Soft power switch at 0x%08lx enabled.\n",
|
2005-04-16 22:20:36 +00:00
|
|
|
soft_power_reg);
|
2007-01-07 15:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
power_task = kthread_run(kpowerswd, (void*)soft_power_reg, KTHREAD_NAME);
|
|
|
|
if (IS_ERR(power_task)) {
|
|
|
|
printk(KERN_ERR DRIVER_NAME ": thread creation failed. Driver not loaded.\n");
|
|
|
|
pdc_soft_power_button(0);
|
|
|
|
return -EIO;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Register a call for panic conditions. */
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
atomic_notifier_chain_register(&panic_notifier_list,
|
|
|
|
&parisc_panic_block);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit power_exit(void)
|
|
|
|
{
|
2007-01-07 15:07:48 +00:00
|
|
|
kthread_stop(power_task);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
atomic_notifier_chain_unregister(&panic_notifier_list,
|
|
|
|
&parisc_panic_block);
|
2007-01-07 15:07:48 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
pdc_soft_power_button(0);
|
|
|
|
}
|
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
arch_initcall(power_init);
|
2005-04-16 22:20:36 +00:00
|
|
|
module_exit(power_exit);
|
|
|
|
|
|
|
|
|
2007-01-07 15:07:48 +00:00
|
|
|
MODULE_AUTHOR("Helge Deller <deller@gmx.de>");
|
2005-04-16 22:20:36 +00:00
|
|
|
MODULE_DESCRIPTION("Soft power switch driver");
|
|
|
|
MODULE_LICENSE("Dual BSD/GPL");
|