All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andras Garzo <garzoand@domain.hid>
To: xenomai-help <xenomai@xenomai.org>
Subject: [Xenomai-help] BF537-Stamp pushbutton interrupts
Date: Sun, 24 Feb 2008 14:09:34 +0100	[thread overview]
Message-ID: <47C16C8E.8020700@domain.hid> (raw)

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);
    printk(KERN_WARNING "ppsmod: PF4 interrupt handler installed.\n");
   

    return 0;
}

void __exit ppsmod_exit(void)
{
    rtdm_irq_free(&irq_handle);
    printk(KERN_WARNING "ppsmod: module unloaded.\n");
}

module_init(ppsmod_init);
module_exit(ppsmod_exit);

Thanks,
Andras




             reply	other threads:[~2008-02-24 13:09 UTC|newest]

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

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=47C16C8E.8020700@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.