diff options
author | John Crispin <blogic@openwrt.org> | 2008-08-05 22:17:16 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2008-08-05 22:17:16 +0000 |
commit | b82dd11b1d0e1f3492343b54d64ee6d628e3d74c (patch) | |
tree | ed647aadd52bd89024422262d530631b8fcaa45c /target/linux/atheros/files | |
parent | caedcd715d84f471068de1249cbe9da49d8bce0b (diff) | |
download | upstream-b82dd11b1d0e1f3492343b54d64ee6d628e3d74c.tar.gz upstream-b82dd11b1d0e1f3492343b54d64ee6d628e3d74c.tar.bz2 upstream-b82dd11b1d0e1f3492343b54d64ee6d628e3d74c.zip |
add proper uci/hotplug based button handling on atheros and work around boards, where the gpio release irq does not fire correctly
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12179 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/atheros/files')
-rw-r--r-- | target/linux/atheros/files/arch/mips/atheros/reset.c | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/target/linux/atheros/files/arch/mips/atheros/reset.c b/target/linux/atheros/files/arch/mips/atheros/reset.c index 876fa29ba7..a94954d091 100644 --- a/target/linux/atheros/files/arch/mips/atheros/reset.c +++ b/target/linux/atheros/files/arch/mips/atheros/reset.c @@ -18,6 +18,7 @@ struct event_t { }; static struct ar531x_boarddata *bcfg; +static struct timer_list rst_button_timer; extern struct sock *uevent_sock; extern u64 uevent_next_seqnum(void); @@ -71,6 +72,37 @@ done: kfree(event); } +static int no_release_workaround = 1; + +static void +reset_button_poll(unsigned long unused) +{ + struct event_t *event; + int gpio = ~0; + + if(!no_release_workaround) + return; + + DO_AR5315(gpio = sysRegRead(AR5315_GPIO_DI);) + gpio &= 1 << (AR531X_RESET_GPIO_IRQ - AR531X_GPIO_IRQ_BASE); + if(gpio) + { + rst_button_timer.expires = jiffies + (HZ / 4); + add_timer(&rst_button_timer); + } else { + event = (struct event_t *) kzalloc(sizeof(struct event_t), GFP_ATOMIC); + if (!event) + { + printk("Could not alloc hotplug event\n"); + return; + } + event->set = 0; + event->jiffies = jiffies; + INIT_WORK(&event->wq, (void *)(void *)hotplug_button); + schedule_work(&event->wq); + } +} + static irqreturn_t button_handler(int irq, void *dev_id) { static int pressed = 0; @@ -87,13 +119,20 @@ static irqreturn_t button_handler(int irq, void *dev_id) gpio &= 1 << (irq - AR531X_GPIO_IRQ_BASE); event->set = gpio; + if(!event->set) + no_release_workaround = 0; + event->jiffies = jiffies; INIT_WORK(&event->wq, (void *)(void *)hotplug_button); schedule_work(&event->wq); seen = jiffies; - + if(event->set && no_release_workaround) + { + rst_button_timer.expires = jiffies + (HZ / 4); + add_timer(&rst_button_timer); + } return IRQ_HANDLED; } @@ -110,6 +149,11 @@ int __init ar531x_init_reset(void) seen = jiffies; + init_timer(&rst_button_timer); + rst_button_timer.function = reset_button_poll; + rst_button_timer.expires = jiffies + HZ / 50; + add_timer(&rst_button_timer); + request_irq(AR531X_RESET_GPIO_IRQ, &button_handler, IRQF_SAMPLE_RANDOM, "ar531x_reset", NULL); return 0; |