Skip to content

Commit

Permalink
ACPI: SBS: Ignore alarms coming from unknown devices
Browse files Browse the repository at this point in the history
http://bugzilla.kernel.org/show_bug.cgi?id=9362

Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Alexey Starikovskiy authored and Len Brown committed Dec 14, 2007
1 parent 09f1fb4 commit c2d00f2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
6 changes: 0 additions & 6 deletions drivers/acpi/sbs.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,6 @@
#define ACPI_BATTERY_DIR_NAME "BAT%i"
#define ACPI_AC_DIR_NAME "AC0"

enum acpi_sbs_device_addr {
ACPI_SBS_CHARGER = 0x9,
ACPI_SBS_MANAGER = 0xa,
ACPI_SBS_BATTERY = 0xb,
};

#define ACPI_SBS_NOTIFY_STATUS 0x80
#define ACPI_SBS_NOTIFY_INFO 0x81

Expand Down
16 changes: 12 additions & 4 deletions drivers/acpi/sbshc.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,9 @@ int acpi_smbus_unregister_callback(struct acpi_smb_hc *hc)

EXPORT_SYMBOL_GPL(acpi_smbus_unregister_callback);

static void acpi_smbus_callback(void *context)
static inline void acpi_smbus_callback(void *context)
{
struct acpi_smb_hc *hc = context;

if (hc->callback)
hc->callback(hc->context);
}
Expand All @@ -214,6 +213,7 @@ static int smbus_alarm(void *context)
{
struct acpi_smb_hc *hc = context;
union acpi_smb_status status;
u8 address;
if (smb_hc_read(hc, ACPI_SMB_STATUS, &status.raw))
return 0;
/* Check if it is only a completion notify */
Expand All @@ -222,10 +222,18 @@ static int smbus_alarm(void *context)
if (!status.fields.alarm)
return 0;
mutex_lock(&hc->lock);
smb_hc_read(hc, ACPI_SMB_ALARM_ADDRESS, &address);
status.fields.alarm = 0;
smb_hc_write(hc, ACPI_SMB_STATUS, status.raw);
if (hc->callback)
acpi_os_execute(OSL_GPE_HANDLER, acpi_smbus_callback, hc);
/* We are only interested in events coming from known devices */
switch (address >> 1) {
case ACPI_SBS_CHARGER:
case ACPI_SBS_MANAGER:
case ACPI_SBS_BATTERY:
acpi_os_execute(OSL_GPE_HANDLER,
acpi_smbus_callback, hc);
default:;
}
mutex_unlock(&hc->lock);
return 0;
}
Expand Down
6 changes: 6 additions & 0 deletions drivers/acpi/sbshc.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ enum acpi_smb_protocol {

static const u8 SMBUS_PEC = 0x80;

enum acpi_sbs_device_addr {
ACPI_SBS_CHARGER = 0x9,
ACPI_SBS_MANAGER = 0xa,
ACPI_SBS_BATTERY = 0xb,
};

typedef void (*smbus_alarm_callback)(void *context);

extern int acpi_smbus_read(struct acpi_smb_hc *hc, u8 protocol, u8 address,
Expand Down

0 comments on commit c2d00f2

Please sign in to comment.