All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andras Garzo <garzoand@domain.hid>
To: xenomai-help <xenomai@xenomai.org>
Subject: Re: [Xenomai-help] BF537-Stamp pushbutton interrupts
Date: Mon, 25 Feb 2008 21:17:58 +0100	[thread overview]
Message-ID: <47C32276.8060509@domain.hid> (raw)
In-Reply-To: <47C1AA67.4030900@domain.hid>

Thanks for help, now it's working...

Andras

Wolfgang Grandegger wrote:
> Andras Garzo wrote:
>   
>> Hi all,
>>
>> I'm trying to handle the BF537-STAMP pushbutton interrupts with rtdm, but
>> my system hangs when calling rtdm_irq_request with the following message:
>>
>> BUG: failure at arch/blackfin/kernel/bfin_gpio.c:504/set_gpio_maska()!
>> Kernel panic - not syncing: BUG!
>>
>> I'm using linux kernel 2.6.22 and Xenomai 2.4.1. It could be a kernel bug?
>> The following code worked well on 2.6.19 with Xenomai 2.3.2:
>>
>> #include <linux/list.h>
>> #include <linux/init.h>
>> #include <linux/types.h>
>> #include <linux/interrupt.h>
>> #include <linux/module.h>
>> #include <linux/fs.h>
>> #include <linux/kernel.h>
>> #include <linux/time.h>
>> #include <asm/irq.h>
>> #include <rtdm/rtdm.h>
>> #include <rtdm/rtdm_driver.h>
>>
>> #define PPSMOD_IRQ IRQ_PF4
>>
>>
>> struct ppsmod_dev
>> {
>>     unsigned int irqnum;
>> };
>>
>> rtdm_irq_t irq_handle;
>>
>> static int ppsmod_irqhandler(rtdm_irq_t *handle)
>> {
>>     printk(KERN_WARNING "ppsmod: PPS interrupt triggered.\n");
>>     return IRQ_HANDLED;
>> }
>>
>> static int __init ppsmod_init(void)
>> {
>>     int alloc_size = sizeof(struct ppsmod_dev);
>>     struct ppsmod_dev *dev = (struct ppsmod_dev*)kmalloc(alloc_size, 
>> GFP_KERNEL);
>>     int ret;
>>    
>>     printk(KERN_WARNING "ppsmod: module loaded.\n");
>>    
>>     // installing IRQ handler
>>     if(rtdm_irq_request(&irq_handle, PPSMOD_IRQ, &ppsmod_irqhandler, 
>> RTDM_IRQTYPE_EDGE, NULL, dev))
>>     {
>>         printk(KERN_WARNING "ppsmod: PF4 irq is not free.\n");
>>         return -EBUSY;
>>     }
>>     printk(KERN_WARNING "ppsmod: 23231\n");
>>     set_irq_type(IRQ_PF4, IRQF_TRIGGER_RISING);
>>     rtdm_irq_enable(&irq_handle);
>>     
>
> Be aware, that starting with Xenomai v2.4, the interrupt is
> automatically enabled by rtdm_irq_request().
>
> Wolfgang.
>   



      reply	other threads:[~2008-02-25 20:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-24 13:09 [Xenomai-help] BF537-Stamp pushbutton interrupts Andras Garzo
2008-02-24 15:11 ` Philippe Gerum
2008-02-24 17:33 ` Wolfgang Grandegger
2008-02-25 20:17   ` Andras Garzo [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=47C32276.8060509@domain.hid \
    --to=garzoand@domain.hid \
    --cc=xenomai@xenomai.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.