Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-16 Thread branislav . sasic
;>>> that up.  If you look at the rtdm gpio code that is in Xenomai
>>>>> (kernel/drivers/gpio/gpio-core.c) that would be a good example to
>>>>> work
>>>>> from.  Are you planning on using the gpio pins from user space or
>>>>> from
>>>>> another rtdm driver?  IF you want to use them via user space there
>>>>> are
>>>>> better and quicker approaches then creating a custom RTDM driver.
>>>>>
>>>>> -Greg
>>>>>
>>>>> On Wed, Mar 7, 2018 at 8:15 AM,
>>>>>  wrote:
>>>>>> Thank you.
>>>>>> Meanwhile, I tried ipipe-arm kernel with latest xenomai from git on
>>>>>> NanoPi-NEO. Interrupts configured from sysfs interface works,
>>>>>> doesn't
>>>>>> display any message, but when requested with rtdm_irq_request
>>>>>>
>>>>>> //request_irq(irq, irig_r_isr_test, 0, DRIVER_NAME, NULL); //this
>>>>>> works
>>>>>> rtdm_irq_request(&irq_handle, irq, irig_r_isr_test,
>>>>>> RTDM_IRQTYPE_EDGE,
>>>>>> DRIVER_NAME, NULL); //this not
>>>>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>>>>> rtdm_irq_enable(&irq_handle);
>>>>>>
>>>>>> sunxi_pinctrl_irq_handler(struct irq_desc *desc) routine never get
>>>>>> called.
>>>>>>
>>>>>>
>>>>>> Branislav
>>>>>>
>>>>>>
>>>>>>> I should have access to a beaglebone green this week. I wasn't able
>>>>>>> to
>>>>>>> reproduce it with a zynq or raspberry Pi 2 board.
>>>>>>>
>>>>>>> Greg
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>   Original Message
>>>>>>> From: branislav.sa...@automatika.imp.bg.ac.rs
>>>>>>> Sent: March 5, 2018 3:24 AM
>>>>>>> To: branislav.sa...@automatika.imp.bg.ac.rs
>>>>>>> Cc: xenomai@xenomai.org
>>>>>>> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ
>>>>>>> trap
>>>>>>>
>>>>>>> Nothing? :|
>>>>>>>
>>>>>>>
>>>>>>>> Thank you for your help Greg & Philippe!
>>>>>>>>
>>>>>>>> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is
>>>>>>>> freezed
>>>>>>>> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel
>>>>>>>> from
>>>>>>>> git (nothing added, nothing removed), and similar thing happens.
>>>>>>>> Only
>>>>>>>> I
>>>>>>>> could see some time after, until complete freeze, are messages
>>>>>>>>
>>>>>>>> [   62.463002] unexpected IRQ trap at vector 3f
>>>>>>>> [   63.643847] unexpected IRQ trap at vector 3f
>>>>>>>> [   63.648204] unexpected IRQ trap at vector 3f
>>>>>>>> [   65.605123] unexpected IRQ trap at vector 3f
>>>>>>>> [   66.418225] unexpected IRQ trap at vector 3f
>>>>>>>>
>>>>>>>> Tested through sysfs gpio interface.
>>>>>>>>
>>>>>>>>
>>>>>>>> Branislav
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>> As Philippe mentioned, they are some missing pieces that need to
>>>>>>>>> be
>>>>>>>>> added to the ipipe.  The link Philippe provided will give you
>>>>>>>>> guidance
>>>>>>>>> on how to make those changes to your custom kernel.  The other
>>>>>>>>> option
>>>>>>>>> is you could use the ipipe-arm tree and the mainline kernel.
>>>>>>>>> Also,
>>>>>>>>> unrelated, the gpios that are exposed in sysfs are not RTDM
>>>>>>>>> gpios.
>>>>>>>>> There currently isn't a RTDM driver for beaglebone gpio, but one
>>>>>>>>> can
>>>>>>>>> be added v

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-15 Thread Greg Gallagher
arm kernel with latest xenomai from git on
>>>>> NanoPi-NEO. Interrupts configured from sysfs interface works, doesn't
>>>>> display any message, but when requested with rtdm_irq_request
>>>>>
>>>>> //request_irq(irq, irig_r_isr_test, 0, DRIVER_NAME, NULL); //this works
>>>>> rtdm_irq_request(&irq_handle, irq, irig_r_isr_test, RTDM_IRQTYPE_EDGE,
>>>>> DRIVER_NAME, NULL); //this not
>>>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>>>> rtdm_irq_enable(&irq_handle);
>>>>>
>>>>> sunxi_pinctrl_irq_handler(struct irq_desc *desc) routine never get
>>>>> called.
>>>>>
>>>>>
>>>>> Branislav
>>>>>
>>>>>
>>>>>> I should have access to a beaglebone green this week. I wasn't able to
>>>>>> reproduce it with a zynq or raspberry Pi 2 board.
>>>>>>
>>>>>> Greg
>>>>>>
>>>>>>
>>>>>>
>>>>>>   Original Message
>>>>>> From: branislav.sa...@automatika.imp.bg.ac.rs
>>>>>> Sent: March 5, 2018 3:24 AM
>>>>>> To: branislav.sa...@automatika.imp.bg.ac.rs
>>>>>> Cc: xenomai@xenomai.org
>>>>>> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>>>>>>
>>>>>> Nothing? :|
>>>>>>
>>>>>>
>>>>>>> Thank you for your help Greg & Philippe!
>>>>>>>
>>>>>>> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is
>>>>>>> freezed
>>>>>>> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel
>>>>>>> from
>>>>>>> git (nothing added, nothing removed), and similar thing happens. Only
>>>>>>> I
>>>>>>> could see some time after, until complete freeze, are messages
>>>>>>>
>>>>>>> [   62.463002] unexpected IRQ trap at vector 3f
>>>>>>> [   63.643847] unexpected IRQ trap at vector 3f
>>>>>>> [   63.648204] unexpected IRQ trap at vector 3f
>>>>>>> [   65.605123] unexpected IRQ trap at vector 3f
>>>>>>> [   66.418225] unexpected IRQ trap at vector 3f
>>>>>>>
>>>>>>> Tested through sysfs gpio interface.
>>>>>>>
>>>>>>>
>>>>>>> Branislav
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>> As Philippe mentioned, they are some missing pieces that need to be
>>>>>>>> added to the ipipe.  The link Philippe provided will give you
>>>>>>>> guidance
>>>>>>>> on how to make those changes to your custom kernel.  The other option
>>>>>>>> is you could use the ipipe-arm tree and the mainline kernel.  Also,
>>>>>>>> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
>>>>>>>> There currently isn't a RTDM driver for beaglebone gpio, but one can
>>>>>>>> be added very easily.
>>>>>>>>
>>>>>>>>
>>>>>>>> -Greg
>>>>>>>>
>>>>>>>> On Mon, Feb 26, 2018 at 1:05 PM,
>>>>>>>>  wrote:
>>>>>>>>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>>>>>>>>> kernel
>>>>>>>>> (with BeagleBone patches applied too). Same situation with this
>>>>>>>>> kernel
>>>>>>>>> ->
>>>>>>>>> https://github.com/beagleboard/linux/tree/4.9-xenomai
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Just as Giulio wrote, GPIO is configured with:
>>>>>>>>>
>>>>>>>>> echo 60 > /sys/class/gpio/export
>>>>>>>>> echo both > /sys/class/gpio/gpio60/edge
>>>>>>>>>
>>>>>>>>> or in kernel module init routine with:
>>>>>>>>>
>>>>>>>>> gpio_request(gpio, "test");
>>>>>>>>> gpio_direction_input(gpio);
>>&

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-15 Thread Greg Gallagher
Using the 4.14 arm ipipe tree, xenomai stable 3.0.x (from git) I was
able to receive an interrupt, if you are still having issues can you
try the below code?  Obviously modify the pin values to the pins you
require.

static unsigned int irq_num;
static unsigned int gpioLED = 953;
static unsigned int gpioButton = 957;
static bool value = false;
static rtdm_irq_t irq_handle;
static int num_of_intr = 0;


static int gpio_irq_handler(rtdm_irq_t * irq)
{
value = !value;
gpio_set_value(gpioLED, value); // toggle the led everytime irq
handler is invoked
printk("GPIO interrupt \n");
num_of_intr++;
return RTDM_IRQ_HANDLED;
}


static int __init rtdm_init (void)
{
int err;

if ((err = gpio_request(gpioButton, THIS_MODULE->name)) != 0) {
printk(" gpio_request gpioButton failed ! \n");
return err;
}

if ((err = gpio_direction_input(gpioButton)) != 0) {
printk(" gpio_direction_input gpioButton failed ! \n");
gpio_free(gpioButton);

return err;
}

irq_num = gpio_to_irq(gpioButton);

printk(" IRQ number %d !  \n",irq_num);

if ((err = gpio_request(gpioLED, THIS_MODULE->name)) != 0) {
printk(" gpio_request gpioLED failed ! \n");
gpio_free(gpioButton);
return err;
}

if ((err = gpio_direction_output(gpioLED, 0)) != 0) {
printk(" gpio_direction_input gpioLED failed ! \n");
gpio_free(gpioLED);
gpio_free(gpioButton);
return err;
}

err = irq_set_irq_type(irq_num,  IRQF_TRIGGER_RISING);

if(err) {
gpio_free(gpioLED);
gpio_free(gpioButton);
printk(" irq_set_irq_type failed ! \n");
return err;
}

err = 
rtdm_irq_request(&irq_handle,irq_num,(rtdm_irq_handler_t)gpio_irq_handler,
RTDM_IRQTYPE_EDGE,THIS_MODULE->name, NULL);

printk("after request irq = %d \n",irq_handle.irq);

if(err) {
gpio_free(gpioLED);
gpio_free(gpioButton);
printk(" rtdm_irq_request failed ! \n");
return err;
}

err = rtdm_irq_enable(&irq_handle);

if (err < 0) {
printk("rtdm_irq_enable failed \n");
return err;
}
return 0;


}



static void __exit rtdm_exit (void)
{
rtdm_irq_free(&irq_handle);
gpio_free(gpioLED);
gpio_free(gpioButton);

printk("The number of intr is %d \n",num_of_intr);
}


module_init(rtdm_init);
module_exit(rtdm_exit);
MODULE_LICENSE("GPL");

On Thu, Mar 8, 2018 at 10:39 AM, Greg Gallagher  wrote:
> I'll have to run this on my known working set up and see what I can
> find.  The only difference between gpio-core and your file is
> gpio-core uses the same label in the gpio_request and the
> rtdm_irq_request.  For fun you can try to pass "gpio203" to
> rtdm_irq_request. I'll have to take a deeper look at what's happening
> in cobalt.
>
> -Greg
>
> On Thu, Mar 8, 2018 at 5:53 AM,
>  wrote:
>> In attachment is example kernel module code that work when used
>> request_irq but not with rtdm_irq_request.
>> I need to measure time intervals between signal edges and to do some
>> processing inside that module. This worked fine on 3.14 kernel on
>> BeagleBone with Xenomai 2.6.x. Now, on NanoPi NEO (4.14, xenomai 3.0.6) it
>> seams it doesn't work.
>>
>>
>> Branislav
>>
>>
>>> I'd have to see more of the code to understand how you are setting
>>> that up.  If you look at the rtdm gpio code that is in Xenomai
>>> (kernel/drivers/gpio/gpio-core.c) that would be a good example to work
>>> from.  Are you planning on using the gpio pins from user space or from
>>> another rtdm driver?  IF you want to use them via user space there are
>>> better and quicker approaches then creating a custom RTDM driver.
>>>
>>> -Greg
>>>
>>> On Wed, Mar 7, 2018 at 8:15 AM,
>>>  wrote:
>>>> Thank you.
>>>> Meanwhile, I tried ipipe-arm kernel with latest xenomai from git on
>>>> NanoPi-NEO. Interrupts configured from sysfs interface works, doesn't
>>>> display any message, but when requested with rtdm_irq_request
>>>>
>>>> //request_irq(irq, irig_r_isr_test, 0, DRIVER_NAME, NULL); //this works
>>>> rtdm_irq_request(&irq_handle, irq, irig_r_isr_test, RTDM_IRQTYPE_EDGE,
>>>> DRIVER_NAME, NULL); //this not
>>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>>> rtdm_irq_enable(&irq_handle);
>>>>
>>>> sunxi_pinctrl_irq_handler(struct irq_desc *desc) routine never get
>>>> called.
>>>>
>>>>
>>>&

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-08 Thread Greg Gallagher
I'll have to run this on my known working set up and see what I can
find.  The only difference between gpio-core and your file is
gpio-core uses the same label in the gpio_request and the
rtdm_irq_request.  For fun you can try to pass "gpio203" to
rtdm_irq_request. I'll have to take a deeper look at what's happening
in cobalt.

-Greg

On Thu, Mar 8, 2018 at 5:53 AM,
 wrote:
> In attachment is example kernel module code that work when used
> request_irq but not with rtdm_irq_request.
> I need to measure time intervals between signal edges and to do some
> processing inside that module. This worked fine on 3.14 kernel on
> BeagleBone with Xenomai 2.6.x. Now, on NanoPi NEO (4.14, xenomai 3.0.6) it
> seams it doesn't work.
>
>
> Branislav
>
>
>> I'd have to see more of the code to understand how you are setting
>> that up.  If you look at the rtdm gpio code that is in Xenomai
>> (kernel/drivers/gpio/gpio-core.c) that would be a good example to work
>> from.  Are you planning on using the gpio pins from user space or from
>> another rtdm driver?  IF you want to use them via user space there are
>> better and quicker approaches then creating a custom RTDM driver.
>>
>> -Greg
>>
>> On Wed, Mar 7, 2018 at 8:15 AM,
>>  wrote:
>>> Thank you.
>>> Meanwhile, I tried ipipe-arm kernel with latest xenomai from git on
>>> NanoPi-NEO. Interrupts configured from sysfs interface works, doesn't
>>> display any message, but when requested with rtdm_irq_request
>>>
>>> //request_irq(irq, irig_r_isr_test, 0, DRIVER_NAME, NULL); //this works
>>> rtdm_irq_request(&irq_handle, irq, irig_r_isr_test, RTDM_IRQTYPE_EDGE,
>>> DRIVER_NAME, NULL); //this not
>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>> rtdm_irq_enable(&irq_handle);
>>>
>>> sunxi_pinctrl_irq_handler(struct irq_desc *desc) routine never get
>>> called.
>>>
>>>
>>> Branislav
>>>
>>>
>>>> I should have access to a beaglebone green this week. I wasn't able to
>>>> reproduce it with a zynq or raspberry Pi 2 board.
>>>>
>>>> Greg
>>>>
>>>>
>>>>
>>>>   Original Message
>>>> From: branislav.sa...@automatika.imp.bg.ac.rs
>>>> Sent: March 5, 2018 3:24 AM
>>>> To: branislav.sa...@automatika.imp.bg.ac.rs
>>>> Cc: xenomai@xenomai.org
>>>> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>>>>
>>>> Nothing? :|
>>>>
>>>>
>>>>> Thank you for your help Greg & Philippe!
>>>>>
>>>>> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is
>>>>> freezed
>>>>> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel
>>>>> from
>>>>> git (nothing added, nothing removed), and similar thing happens. Only
>>>>> I
>>>>> could see some time after, until complete freeze, are messages
>>>>>
>>>>> [   62.463002] unexpected IRQ trap at vector 3f
>>>>> [   63.643847] unexpected IRQ trap at vector 3f
>>>>> [   63.648204] unexpected IRQ trap at vector 3f
>>>>> [   65.605123] unexpected IRQ trap at vector 3f
>>>>> [   66.418225] unexpected IRQ trap at vector 3f
>>>>>
>>>>> Tested through sysfs gpio interface.
>>>>>
>>>>>
>>>>> Branislav
>>>>>
>>>>>
>>>>>
>>>>>> As Philippe mentioned, they are some missing pieces that need to be
>>>>>> added to the ipipe.  The link Philippe provided will give you
>>>>>> guidance
>>>>>> on how to make those changes to your custom kernel.  The other option
>>>>>> is you could use the ipipe-arm tree and the mainline kernel.  Also,
>>>>>> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
>>>>>> There currently isn't a RTDM driver for beaglebone gpio, but one can
>>>>>> be added very easily.
>>>>>>
>>>>>>
>>>>>> -Greg
>>>>>>
>>>>>> On Mon, Feb 26, 2018 at 1:05 PM,
>>>>>>  wrote:
>>>>>>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>>>>>>> kernel
>>>>>>> (with BeagleBone patches applied too). Sam

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-08 Thread branislav . sasic
In attachment is example kernel module code that work when used
request_irq but not with rtdm_irq_request.
I need to measure time intervals between signal edges and to do some
processing inside that module. This worked fine on 3.14 kernel on
BeagleBone with Xenomai 2.6.x. Now, on NanoPi NEO (4.14, xenomai 3.0.6) it
seams it doesn't work.


Branislav


> I'd have to see more of the code to understand how you are setting
> that up.  If you look at the rtdm gpio code that is in Xenomai
> (kernel/drivers/gpio/gpio-core.c) that would be a good example to work
> from.  Are you planning on using the gpio pins from user space or from
> another rtdm driver?  IF you want to use them via user space there are
> better and quicker approaches then creating a custom RTDM driver.
>
> -Greg
>
> On Wed, Mar 7, 2018 at 8:15 AM,
>  wrote:
>> Thank you.
>> Meanwhile, I tried ipipe-arm kernel with latest xenomai from git on
>> NanoPi-NEO. Interrupts configured from sysfs interface works, doesn't
>> display any message, but when requested with rtdm_irq_request
>>
>> //request_irq(irq, irig_r_isr_test, 0, DRIVER_NAME, NULL); //this works
>> rtdm_irq_request(&irq_handle, irq, irig_r_isr_test, RTDM_IRQTYPE_EDGE,
>> DRIVER_NAME, NULL); //this not
>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>> rtdm_irq_enable(&irq_handle);
>>
>> sunxi_pinctrl_irq_handler(struct irq_desc *desc) routine never get
>> called.
>>
>>
>> Branislav
>>
>>
>>> I should have access to a beaglebone green this week. I wasn't able to
>>> reproduce it with a zynq or raspberry Pi 2 board.
>>>
>>> Greg
>>>
>>>
>>>
>>>   Original Message
>>> From: branislav.sa...@automatika.imp.bg.ac.rs
>>> Sent: March 5, 2018 3:24 AM
>>> To: branislav.sa...@automatika.imp.bg.ac.rs
>>> Cc: xenomai@xenomai.org
>>> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>>>
>>> Nothing? :|
>>>
>>>
>>>> Thank you for your help Greg & Philippe!
>>>>
>>>> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is
>>>> freezed
>>>> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel
>>>> from
>>>> git (nothing added, nothing removed), and similar thing happens. Only
>>>> I
>>>> could see some time after, until complete freeze, are messages
>>>>
>>>> [   62.463002] unexpected IRQ trap at vector 3f
>>>> [   63.643847] unexpected IRQ trap at vector 3f
>>>> [   63.648204] unexpected IRQ trap at vector 3f
>>>> [   65.605123] unexpected IRQ trap at vector 3f
>>>> [   66.418225] unexpected IRQ trap at vector 3f
>>>>
>>>> Tested through sysfs gpio interface.
>>>>
>>>>
>>>> Branislav
>>>>
>>>>
>>>>
>>>>> As Philippe mentioned, they are some missing pieces that need to be
>>>>> added to the ipipe.  The link Philippe provided will give you
>>>>> guidance
>>>>> on how to make those changes to your custom kernel.  The other option
>>>>> is you could use the ipipe-arm tree and the mainline kernel.  Also,
>>>>> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
>>>>> There currently isn't a RTDM driver for beaglebone gpio, but one can
>>>>> be added very easily.
>>>>>
>>>>>
>>>>> -Greg
>>>>>
>>>>> On Mon, Feb 26, 2018 at 1:05 PM,
>>>>>  wrote:
>>>>>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>>>>>> kernel
>>>>>> (with BeagleBone patches applied too). Same situation with this
>>>>>> kernel
>>>>>> ->
>>>>>> https://github.com/beagleboard/linux/tree/4.9-xenomai
>>>>>>
>>>>>>
>>>>>> Just as Giulio wrote, GPIO is configured with:
>>>>>>
>>>>>> echo 60 > /sys/class/gpio/export
>>>>>> echo both > /sys/class/gpio/gpio60/edge
>>>>>>
>>>>>> or in kernel module init routine with:
>>>>>>
>>>>>> gpio_request(gpio, "test");
>>>>>> gpio_direction_input(gpio);
>>>>>> irq = gpio_to_irq(gpio);
>>>>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TR

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-07 Thread Greg Gallagher
I'd have to see more of the code to understand how you are setting
that up.  If you look at the rtdm gpio code that is in Xenomai
(kernel/drivers/gpio/gpio-core.c) that would be a good example to work
from.  Are you planning on using the gpio pins from user space or from
another rtdm driver?  IF you want to use them via user space there are
better and quicker approaches then creating a custom RTDM driver.

-Greg

On Wed, Mar 7, 2018 at 8:15 AM,
 wrote:
> Thank you.
> Meanwhile, I tried ipipe-arm kernel with latest xenomai from git on
> NanoPi-NEO. Interrupts configured from sysfs interface works, doesn't
> display any message, but when requested with rtdm_irq_request
>
> //request_irq(irq, irig_r_isr_test, 0, DRIVER_NAME, NULL); //this works
> rtdm_irq_request(&irq_handle, irq, irig_r_isr_test, RTDM_IRQTYPE_EDGE,
> DRIVER_NAME, NULL); //this not
> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
> rtdm_irq_enable(&irq_handle);
>
> sunxi_pinctrl_irq_handler(struct irq_desc *desc) routine never get called.
>
>
> Branislav
>
>
>> I should have access to a beaglebone green this week. I wasn't able to
>> reproduce it with a zynq or raspberry Pi 2 board.
>>
>> Greg
>>
>>
>>
>>   Original Message
>> From: branislav.sa...@automatika.imp.bg.ac.rs
>> Sent: March 5, 2018 3:24 AM
>> To: branislav.sa...@automatika.imp.bg.ac.rs
>> Cc: xenomai@xenomai.org
>> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>>
>> Nothing? :|
>>
>>
>>> Thank you for your help Greg & Philippe!
>>>
>>> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is
>>> freezed
>>> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel from
>>> git (nothing added, nothing removed), and similar thing happens. Only I
>>> could see some time after, until complete freeze, are messages
>>>
>>> [   62.463002] unexpected IRQ trap at vector 3f
>>> [   63.643847] unexpected IRQ trap at vector 3f
>>> [   63.648204] unexpected IRQ trap at vector 3f
>>> [   65.605123] unexpected IRQ trap at vector 3f
>>> [   66.418225] unexpected IRQ trap at vector 3f
>>>
>>> Tested through sysfs gpio interface.
>>>
>>>
>>> Branislav
>>>
>>>
>>>
>>>> As Philippe mentioned, they are some missing pieces that need to be
>>>> added to the ipipe.  The link Philippe provided will give you guidance
>>>> on how to make those changes to your custom kernel.  The other option
>>>> is you could use the ipipe-arm tree and the mainline kernel.  Also,
>>>> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
>>>> There currently isn't a RTDM driver for beaglebone gpio, but one can
>>>> be added very easily.
>>>>
>>>>
>>>> -Greg
>>>>
>>>> On Mon, Feb 26, 2018 at 1:05 PM,
>>>>  wrote:
>>>>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>>>>> kernel
>>>>> (with BeagleBone patches applied too). Same situation with this kernel
>>>>> ->
>>>>> https://github.com/beagleboard/linux/tree/4.9-xenomai
>>>>>
>>>>>
>>>>> Just as Giulio wrote, GPIO is configured with:
>>>>>
>>>>> echo 60 > /sys/class/gpio/export
>>>>> echo both > /sys/class/gpio/gpio60/edge
>>>>>
>>>>> or in kernel module init routine with:
>>>>>
>>>>> gpio_request(gpio, "test");
>>>>> gpio_direction_input(gpio);
>>>>> irq = gpio_to_irq(gpio);
>>>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>>>> rtdm_irq_request(&irq_handle, irq, test_isr, RTDM_IRQTYPE_EDGE,
>>>>> DRIVER_NAME, NULL);
>>>>> rtdm_irq_enable(&irq_handle);
>>>>>
>>>>>
>>>>> Both reproduce the problem. In the second case, when requested with
>>>>> rtdm_irq_request, IRQ is visible both in /proc/interrupts, and in
>>>>> /proc/xenomai/irq
>>>>>
>>>>>
>>>>> Thanks!
>>>>>
>>>>>
>>>>> Branislav
>>>>>
>>>>>
>>>>>> Can you provide what version of Xenomai you are using and what ipipe
>>>>> patch you are using?  It also may be helpful if you could provide some
>>>>> so

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-07 Thread branislav . sasic
Thank you.
Meanwhile, I tried ipipe-arm kernel with latest xenomai from git on
NanoPi-NEO. Interrupts configured from sysfs interface works, doesn't
display any message, but when requested with rtdm_irq_request

//request_irq(irq, irig_r_isr_test, 0, DRIVER_NAME, NULL); //this works
rtdm_irq_request(&irq_handle, irq, irig_r_isr_test, RTDM_IRQTYPE_EDGE,
DRIVER_NAME, NULL); //this not
irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
rtdm_irq_enable(&irq_handle);

sunxi_pinctrl_irq_handler(struct irq_desc *desc) routine never get called.


Branislav


> I should have access to a beaglebone green this week. I wasn't able to
> reproduce it with a zynq or raspberry Pi 2 board.
>
> Greg
>
>
>
>   Original Message  
> From: branislav.sa...@automatika.imp.bg.ac.rs
> Sent: March 5, 2018 3:24 AM
> To: branislav.sa...@automatika.imp.bg.ac.rs
> Cc: xenomai@xenomai.org
> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>
> Nothing? :|
>
>
>> Thank you for your help Greg & Philippe!
>>
>> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is
>> freezed
>> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel from
>> git (nothing added, nothing removed), and similar thing happens. Only I
>> could see some time after, until complete freeze, are messages
>>
>> [   62.463002] unexpected IRQ trap at vector 3f
>> [   63.643847] unexpected IRQ trap at vector 3f
>> [   63.648204] unexpected IRQ trap at vector 3f
>> [   65.605123] unexpected IRQ trap at vector 3f
>> [   66.418225] unexpected IRQ trap at vector 3f
>>
>> Tested through sysfs gpio interface.
>>
>>
>> Branislav
>>
>>
>>
>>> As Philippe mentioned, they are some missing pieces that need to be
>>> added to the ipipe.  The link Philippe provided will give you guidance
>>> on how to make those changes to your custom kernel.  The other option
>>> is you could use the ipipe-arm tree and the mainline kernel.  Also,
>>> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
>>> There currently isn't a RTDM driver for beaglebone gpio, but one can
>>> be added very easily.
>>>
>>>
>>> -Greg
>>>
>>> On Mon, Feb 26, 2018 at 1:05 PM,
>>>  wrote:
>>>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>>>> kernel
>>>> (with BeagleBone patches applied too). Same situation with this kernel
>>>> ->
>>>> https://github.com/beagleboard/linux/tree/4.9-xenomai
>>>>
>>>>
>>>> Just as Giulio wrote, GPIO is configured with:
>>>>
>>>> echo 60 > /sys/class/gpio/export
>>>> echo both > /sys/class/gpio/gpio60/edge
>>>>
>>>> or in kernel module init routine with:
>>>>
>>>> gpio_request(gpio, "test");
>>>> gpio_direction_input(gpio);
>>>> irq = gpio_to_irq(gpio);
>>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>>> rtdm_irq_request(&irq_handle, irq, test_isr, RTDM_IRQTYPE_EDGE,
>>>> DRIVER_NAME, NULL);
>>>> rtdm_irq_enable(&irq_handle);
>>>>
>>>>
>>>> Both reproduce the problem. In the second case, when requested with
>>>> rtdm_irq_request, IRQ is visible both in /proc/interrupts, and in
>>>> /proc/xenomai/irq
>>>>
>>>>
>>>> Thanks!
>>>>
>>>>
>>>> Branislav
>>>>
>>>>
>>>>> Can you provide what version of Xenomai you are using and what ipipe
>>>> patch you are using?  It also may be helpful if you could provide some
>>>> sort of sample code that reproduces the problem.
>>>>>
>>>>> -Greg
>>>>>
>>>>> On Mon, Feb 26, 2018 at 8:46 AM,
>>>>>  wrote:
>>>>>> Hello,
>>>>>> I have a problem with new I-pipe patch, which was not existing with
>>>>>> legacy
>>>>>> patch on 3.14 kernel, on BeagleBone platform.
>>>>>> When GPIO pin is configured as input with edge interrupt enable, on
>>>>>> IRQ
>>>> occurrence the following message appears:
>>>>>> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0,
>>>>>> unhandled:
>>>>>> 0
>>>> [  303.331401] ->handle_irq():  c01a810c,
>>>>>> [  303.331435] handle_edge_irq+0x0/0x19

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-05 Thread Greg Gallagher
I should have access to a beaglebone green this week. I wasn't able to 
reproduce it with a zynq or raspberry Pi 2 board.

Greg



  Original Message  
From: branislav.sa...@automatika.imp.bg.ac.rs
Sent: March 5, 2018 3:24 AM
To: branislav.sa...@automatika.imp.bg.ac.rs
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

Nothing? :|


> Thank you for your help Greg & Philippe!
>
> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is freezed
> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel from
> git (nothing added, nothing removed), and similar thing happens. Only I
> could see some time after, until complete freeze, are messages
>
> [   62.463002] unexpected IRQ trap at vector 3f
> [   63.643847] unexpected IRQ trap at vector 3f
> [   63.648204] unexpected IRQ trap at vector 3f
> [   65.605123] unexpected IRQ trap at vector 3f
> [   66.418225] unexpected IRQ trap at vector 3f
>
> Tested through sysfs gpio interface.
>
>
> Branislav
>
>
>
>> As Philippe mentioned, they are some missing pieces that need to be
>> added to the ipipe.  The link Philippe provided will give you guidance
>> on how to make those changes to your custom kernel.  The other option
>> is you could use the ipipe-arm tree and the mainline kernel.  Also,
>> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
>> There currently isn't a RTDM driver for beaglebone gpio, but one can
>> be added very easily.
>>
>>
>> -Greg
>>
>> On Mon, Feb 26, 2018 at 1:05 PM,
>>  wrote:
>>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>>> kernel
>>> (with BeagleBone patches applied too). Same situation with this kernel
>>> ->
>>> https://github.com/beagleboard/linux/tree/4.9-xenomai
>>>
>>>
>>> Just as Giulio wrote, GPIO is configured with:
>>>
>>> echo 60 > /sys/class/gpio/export
>>> echo both > /sys/class/gpio/gpio60/edge
>>>
>>> or in kernel module init routine with:
>>>
>>> gpio_request(gpio, "test");
>>> gpio_direction_input(gpio);
>>> irq = gpio_to_irq(gpio);
>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>> rtdm_irq_request(&irq_handle, irq, test_isr, RTDM_IRQTYPE_EDGE,
>>> DRIVER_NAME, NULL);
>>> rtdm_irq_enable(&irq_handle);
>>>
>>>
>>> Both reproduce the problem. In the second case, when requested with
>>> rtdm_irq_request, IRQ is visible both in /proc/interrupts, and in
>>> /proc/xenomai/irq
>>>
>>>
>>> Thanks!
>>>
>>>
>>> Branislav
>>>
>>>
>>>> Can you provide what version of Xenomai you are using and what ipipe
>>> patch you are using?  It also may be helpful if you could provide some
>>> sort of sample code that reproduces the problem.
>>>>
>>>> -Greg
>>>>
>>>> On Mon, Feb 26, 2018 at 8:46 AM,
>>>>  wrote:
>>>>> Hello,
>>>>> I have a problem with new I-pipe patch, which was not existing with
>>>>> legacy
>>>>> patch on 3.14 kernel, on BeagleBone platform.
>>>>> When GPIO pin is configured as input with edge interrupt enable, on
>>>>> IRQ
>>> occurrence the following message appears:
>>>>> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled:
>>>>> 0
>>> [  303.331401] ->handle_irq():  c01a810c,
>>>>> [  303.331435] handle_edge_irq+0x0/0x194
>>>>> [  303.331442] ->irq_data.chip(): dc097b50,
>>>>> [  303.331454] 0xdc097b50
>>>>> [  303.331461] ->action(): da097380
>>>>> [  303.331467] ->action->handler(): c078dce4,
>>>>> [  303.331483] gpio_sysfs_irq+0x0/0x24
>>>>> [  303.331493]    IRQ_NOPROBE set
>>>>> [  303.331503] unexpected IRQ trap at vector 58
>>>>> [  303.335814] [ cut here ]
>>>>> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
>>>>> __ipipe_ack_bad_irq+0x3c/0x48
>>>>> [  303.335839] Modules linked in:
>>>>> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2 [
>>> 303.335871] Hardware name: Generic AM33XX (Flattened Device Tree) [
>>> 303.335878] I-pipe domain: Linux
>>>>> [  303.335918] [] (unwind_backtrace) from []
>>> (show_stack+0x20/0x24)
>>>>> [  303

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-03-05 Thread branislav . sasic
Nothing? :|


> Thank you for your help Greg & Philippe!
>
> I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is freezed
> cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel from
> git (nothing added, nothing removed), and similar thing happens. Only I
> could see some time after, until complete freeze, are messages
>
> [   62.463002] unexpected IRQ trap at vector 3f
> [   63.643847] unexpected IRQ trap at vector 3f
> [   63.648204] unexpected IRQ trap at vector 3f
> [   65.605123] unexpected IRQ trap at vector 3f
> [   66.418225] unexpected IRQ trap at vector 3f
>
> Tested through sysfs gpio interface.
>
>
> Branislav
>
>
>
>> As Philippe mentioned, they are some missing pieces that need to be
>> added to the ipipe.  The link Philippe provided will give you guidance
>> on how to make those changes to your custom kernel.  The other option
>> is you could use the ipipe-arm tree and the mainline kernel.  Also,
>> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
>> There currently isn't a RTDM driver for beaglebone gpio, but one can
>> be added very easily.
>>
>>
>> -Greg
>>
>> On Mon, Feb 26, 2018 at 1:05 PM,
>>  wrote:
>>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>>> kernel
>>> (with BeagleBone patches applied too). Same situation with this kernel
>>> ->
>>> https://github.com/beagleboard/linux/tree/4.9-xenomai
>>>
>>>
>>> Just as Giulio wrote, GPIO is configured with:
>>>
>>> echo 60 > /sys/class/gpio/export
>>> echo both > /sys/class/gpio/gpio60/edge
>>>
>>> or in kernel module init routine with:
>>>
>>> gpio_request(gpio, "test");
>>> gpio_direction_input(gpio);
>>> irq = gpio_to_irq(gpio);
>>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>>> rtdm_irq_request(&irq_handle, irq, test_isr, RTDM_IRQTYPE_EDGE,
>>> DRIVER_NAME, NULL);
>>> rtdm_irq_enable(&irq_handle);
>>>
>>>
>>> Both reproduce the problem. In the second case, when requested with
>>> rtdm_irq_request, IRQ is visible both in /proc/interrupts, and in
>>> /proc/xenomai/irq
>>>
>>>
>>> Thanks!
>>>
>>>
>>> Branislav
>>>
>>>
 Can you provide what version of Xenomai you are using and what ipipe
>>> patch you are using?  It also may be helpful if you could provide some
>>> sort of sample code that reproduces the problem.

 -Greg

 On Mon, Feb 26, 2018 at 8:46 AM,
  wrote:
> Hello,
> I have a problem with new I-pipe patch, which was not existing with
> legacy
> patch on 3.14 kernel, on BeagleBone platform.
> When GPIO pin is configured as input with edge interrupt enable, on
> IRQ
>>> occurrence the following message appears:
> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled:
> 0
>>> [  303.331401] ->handle_irq():  c01a810c,
> [  303.331435] handle_edge_irq+0x0/0x194
> [  303.331442] ->irq_data.chip(): dc097b50,
> [  303.331454] 0xdc097b50
> [  303.331461] ->action(): da097380
> [  303.331467] ->action->handler(): c078dce4,
> [  303.331483] gpio_sysfs_irq+0x0/0x24
> [  303.331493]IRQ_NOPROBE set
> [  303.331503] unexpected IRQ trap at vector 58
> [  303.335814] [ cut here ]
> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
> __ipipe_ack_bad_irq+0x3c/0x48
> [  303.335839] Modules linked in:
> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2 [
>>> 303.335871] Hardware name: Generic AM33XX (Flattened Device Tree) [
>>> 303.335878] I-pipe domain: Linux
> [  303.335918] [] (unwind_backtrace) from []
>>> (show_stack+0x20/0x24)
> [  303.335946] [] (show_stack) from []
> (dump_stack+0xbc/0xec)
> [  303.335968] [] (dump_stack) from []
> (__warn+0xe4/0x110)
> [  303.335984] [] (__warn) from []
> (warn_slowpath_null+0x30/0x38)
> [  303.335998] [] (warn_slowpath_null) from []
>>> (__ipipe_ack_bad_irq+0x3c/0x48)
> [  303.336027] [] (__ipipe_ack_bad_irq) from []
>>> (__ipipe_dispatch_irq+0x80/0x1e4)
> [  303.336048] [] (__ipipe_dispatch_irq) from []
>>> (omap_gpio_irq_handler+0x15c/0x1d0)
> [  303.336066] [] (omap_gpio_irq_handler) from []
>>> (__handle_irq_event_percpu+0x68/0x2bc)
> [  303.336081] [] (__handle_irq_event_percpu) from
> []
> (handle_irq_event_percpu+0x2c/0x68)
> [  303.336095] [] (handle_irq_event_percpu) from
> []
>>> (handle_irq_event+0x48/0x6c)
> [  303.336111] [] (handle_irq_event) from []
>>> (handle_level_irq+0xa8/0xfc)
> [  303.336127] [] (handle_level_irq) from []
>>> (generic_handle_irq+0x28/0x38)
> [  303.336141] [] (generic_handle_irq) from []
>>> (__handle_domain_irq+0x8c/0x10c)
> [  303.336164] [] (__handle_domain_irq) from []
>>> (handle_IRQ+0x2c/0x30)
> [  303.336182] [] (handle_IRQ) from []
> (__ipipe_do_IRQ+0x38/0x40)
> [  303.336198] [] (__ipipe_do_IRQ) from []
> (__ipipe_do_sync_stage+0x268/0x278)
> [  303.336214] [] (__ipipe_do_sync_stage) from []
>>

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-27 Thread branislav . sasic
Thank you for your help Greg & Philippe!

I merged gpio-omap.c from 4.14 kernel to my 4.11 kernel, result is freezed
cpu after interrupt. Then, I compiled 4.14 latest ipipe-arm kernel from
git (nothing added, nothing removed), and similar thing happens. Only I
could see some time after, until complete freeze, are messages

[   62.463002] unexpected IRQ trap at vector 3f
[   63.643847] unexpected IRQ trap at vector 3f
[   63.648204] unexpected IRQ trap at vector 3f
[   65.605123] unexpected IRQ trap at vector 3f
[   66.418225] unexpected IRQ trap at vector 3f

Tested through sysfs gpio interface.


Branislav



> As Philippe mentioned, they are some missing pieces that need to be
> added to the ipipe.  The link Philippe provided will give you guidance
> on how to make those changes to your custom kernel.  The other option
> is you could use the ipipe-arm tree and the mainline kernel.  Also,
> unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
> There currently isn't a RTDM driver for beaglebone gpio, but one can
> be added very easily.
>
>
> -Greg
>
> On Mon, Feb 26, 2018 at 1:05 PM,
>  wrote:
>> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2
>> kernel
>> (with BeagleBone patches applied too). Same situation with this kernel
>> ->
>> https://github.com/beagleboard/linux/tree/4.9-xenomai
>>
>>
>> Just as Giulio wrote, GPIO is configured with:
>>
>> echo 60 > /sys/class/gpio/export
>> echo both > /sys/class/gpio/gpio60/edge
>>
>> or in kernel module init routine with:
>>
>> gpio_request(gpio, "test");
>> gpio_direction_input(gpio);
>> irq = gpio_to_irq(gpio);
>> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
>> rtdm_irq_request(&irq_handle, irq, test_isr, RTDM_IRQTYPE_EDGE,
>> DRIVER_NAME, NULL);
>> rtdm_irq_enable(&irq_handle);
>>
>>
>> Both reproduce the problem. In the second case, when requested with
>> rtdm_irq_request, IRQ is visible both in /proc/interrupts, and in
>> /proc/xenomai/irq
>>
>>
>> Thanks!
>>
>>
>> Branislav
>>
>>
>>> Can you provide what version of Xenomai you are using and what ipipe
>> patch you are using?  It also may be helpful if you could provide some
>> sort of sample code that reproduces the problem.
>>>
>>> -Greg
>>>
>>> On Mon, Feb 26, 2018 at 8:46 AM,
>>>  wrote:
 Hello,
 I have a problem with new I-pipe patch, which was not existing with
 legacy
 patch on 3.14 kernel, on BeagleBone platform.
 When GPIO pin is configured as input with edge interrupt enable, on
 IRQ
>> occurrence the following message appears:
 [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled:
 0
>> [  303.331401] ->handle_irq():  c01a810c,
 [  303.331435] handle_edge_irq+0x0/0x194
 [  303.331442] ->irq_data.chip(): dc097b50,
 [  303.331454] 0xdc097b50
 [  303.331461] ->action(): da097380
 [  303.331467] ->action->handler(): c078dce4,
 [  303.331483] gpio_sysfs_irq+0x0/0x24
 [  303.331493]IRQ_NOPROBE set
 [  303.331503] unexpected IRQ trap at vector 58
 [  303.335814] [ cut here ]
 [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
 __ipipe_ack_bad_irq+0x3c/0x48
 [  303.335839] Modules linked in:
 [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2 [
>> 303.335871] Hardware name: Generic AM33XX (Flattened Device Tree) [
>> 303.335878] I-pipe domain: Linux
 [  303.335918] [] (unwind_backtrace) from []
>> (show_stack+0x20/0x24)
 [  303.335946] [] (show_stack) from []
 (dump_stack+0xbc/0xec)
 [  303.335968] [] (dump_stack) from []
 (__warn+0xe4/0x110)
 [  303.335984] [] (__warn) from []
 (warn_slowpath_null+0x30/0x38)
 [  303.335998] [] (warn_slowpath_null) from []
>> (__ipipe_ack_bad_irq+0x3c/0x48)
 [  303.336027] [] (__ipipe_ack_bad_irq) from []
>> (__ipipe_dispatch_irq+0x80/0x1e4)
 [  303.336048] [] (__ipipe_dispatch_irq) from []
>> (omap_gpio_irq_handler+0x15c/0x1d0)
 [  303.336066] [] (omap_gpio_irq_handler) from []
>> (__handle_irq_event_percpu+0x68/0x2bc)
 [  303.336081] [] (__handle_irq_event_percpu) from
 []
 (handle_irq_event_percpu+0x2c/0x68)
 [  303.336095] [] (handle_irq_event_percpu) from
 []
>> (handle_irq_event+0x48/0x6c)
 [  303.336111] [] (handle_irq_event) from []
>> (handle_level_irq+0xa8/0xfc)
 [  303.336127] [] (handle_level_irq) from []
>> (generic_handle_irq+0x28/0x38)
 [  303.336141] [] (generic_handle_irq) from []
>> (__handle_domain_irq+0x8c/0x10c)
 [  303.336164] [] (__handle_domain_irq) from []
>> (handle_IRQ+0x2c/0x30)
 [  303.336182] [] (handle_IRQ) from []
 (__ipipe_do_IRQ+0x38/0x40)
 [  303.336198] [] (__ipipe_do_IRQ) from []
 (__ipipe_do_sync_stage+0x268/0x278)
 [  303.336214] [] (__ipipe_do_sync_stage) from []
>> (ipipe_unstall_root+0x50/0x5c)
 [  303.336244] [] (ipipe_unstall_root) from []
>> (default_idle_call+0x54/0x7c)
 [  303.336271] [] (default_idle_call) f

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread Greg Gallagher
As Philippe mentioned, they are some missing pieces that need to be
added to the ipipe.  The link Philippe provided will give you guidance
on how to make those changes to your custom kernel.  The other option
is you could use the ipipe-arm tree and the mainline kernel.  Also,
unrelated, the gpios that are exposed in sysfs are not RTDM gpios.
There currently isn't a RTDM driver for beaglebone gpio, but one can
be added very easily.


-Greg

On Mon, Feb 26, 2018 at 1:05 PM,
 wrote:
> Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2 kernel
> (with BeagleBone patches applied too). Same situation with this kernel ->
> https://github.com/beagleboard/linux/tree/4.9-xenomai
>
>
> Just as Giulio wrote, GPIO is configured with:
>
> echo 60 > /sys/class/gpio/export
> echo both > /sys/class/gpio/gpio60/edge
>
> or in kernel module init routine with:
>
> gpio_request(gpio, "test");
> gpio_direction_input(gpio);
> irq = gpio_to_irq(gpio);
> irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
> rtdm_irq_request(&irq_handle, irq, test_isr, RTDM_IRQTYPE_EDGE,
> DRIVER_NAME, NULL);
> rtdm_irq_enable(&irq_handle);
>
>
> Both reproduce the problem. In the second case, when requested with
> rtdm_irq_request, IRQ is visible both in /proc/interrupts, and in
> /proc/xenomai/irq
>
>
> Thanks!
>
>
> Branislav
>
>
>> Can you provide what version of Xenomai you are using and what ipipe
> patch you are using?  It also may be helpful if you could provide some
> sort of sample code that reproduces the problem.
>>
>> -Greg
>>
>> On Mon, Feb 26, 2018 at 8:46 AM,
>>  wrote:
>>> Hello,
>>> I have a problem with new I-pipe patch, which was not existing with legacy
>>> patch on 3.14 kernel, on BeagleBone platform.
>>> When GPIO pin is configured as input with edge interrupt enable, on IRQ
> occurrence the following message appears:
>>> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
> [  303.331401] ->handle_irq():  c01a810c,
>>> [  303.331435] handle_edge_irq+0x0/0x194
>>> [  303.331442] ->irq_data.chip(): dc097b50,
>>> [  303.331454] 0xdc097b50
>>> [  303.331461] ->action(): da097380
>>> [  303.331467] ->action->handler(): c078dce4,
>>> [  303.331483] gpio_sysfs_irq+0x0/0x24
>>> [  303.331493]IRQ_NOPROBE set
>>> [  303.331503] unexpected IRQ trap at vector 58
>>> [  303.335814] [ cut here ]
>>> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
>>> __ipipe_ack_bad_irq+0x3c/0x48
>>> [  303.335839] Modules linked in:
>>> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2 [
> 303.335871] Hardware name: Generic AM33XX (Flattened Device Tree) [
> 303.335878] I-pipe domain: Linux
>>> [  303.335918] [] (unwind_backtrace) from []
> (show_stack+0x20/0x24)
>>> [  303.335946] [] (show_stack) from []
>>> (dump_stack+0xbc/0xec)
>>> [  303.335968] [] (dump_stack) from []
>>> (__warn+0xe4/0x110)
>>> [  303.335984] [] (__warn) from []
>>> (warn_slowpath_null+0x30/0x38)
>>> [  303.335998] [] (warn_slowpath_null) from []
> (__ipipe_ack_bad_irq+0x3c/0x48)
>>> [  303.336027] [] (__ipipe_ack_bad_irq) from []
> (__ipipe_dispatch_irq+0x80/0x1e4)
>>> [  303.336048] [] (__ipipe_dispatch_irq) from []
> (omap_gpio_irq_handler+0x15c/0x1d0)
>>> [  303.336066] [] (omap_gpio_irq_handler) from []
> (__handle_irq_event_percpu+0x68/0x2bc)
>>> [  303.336081] [] (__handle_irq_event_percpu) from
>>> []
>>> (handle_irq_event_percpu+0x2c/0x68)
>>> [  303.336095] [] (handle_irq_event_percpu) from []
> (handle_irq_event+0x48/0x6c)
>>> [  303.336111] [] (handle_irq_event) from []
> (handle_level_irq+0xa8/0xfc)
>>> [  303.336127] [] (handle_level_irq) from []
> (generic_handle_irq+0x28/0x38)
>>> [  303.336141] [] (generic_handle_irq) from []
> (__handle_domain_irq+0x8c/0x10c)
>>> [  303.336164] [] (__handle_domain_irq) from []
> (handle_IRQ+0x2c/0x30)
>>> [  303.336182] [] (handle_IRQ) from []
>>> (__ipipe_do_IRQ+0x38/0x40)
>>> [  303.336198] [] (__ipipe_do_IRQ) from []
>>> (__ipipe_do_sync_stage+0x268/0x278)
>>> [  303.336214] [] (__ipipe_do_sync_stage) from []
> (ipipe_unstall_root+0x50/0x5c)
>>> [  303.336244] [] (ipipe_unstall_root) from []
> (default_idle_call+0x54/0x7c)
>>> [  303.336271] [] (default_idle_call) from []
> (cpu_startup_entry+0xd0/0x144)
>>> [  303.336289] [] (cpu_startup_entry) from []
> (rest_init+0x80/0x98)
>>> [  303.336315] [] (rest_init) from []
>>> (start_kernel+0x370/0x3d8)
>>> [  303.336327] ---[ end trace fd2436447809c122 ]---
>>> [  303.336343] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
> [  303.336349] ->handle_irq():  c01a810c,
>>> [  303.336361] handle_edge_irq+0x0/0x194
>>> [  303.336367] ->irq_data.chip(): dc097b50,
>>> [  303.336376] 0xdc097b50
>>> [  303.336382] ->action(): da097380
>>> [  303.336389] ->action->handler(): c078dce4,
>>> [  303.336399] gpio_sysfs_irq+0x0/0x24
>>> [  303.336406]IRQ_NOPROBE set
>>> [  303.336413] unexpected IRQ trap at vector 58
>>> [  306.761879] irq 88, desc: dc1be400, depth: 0, count

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread branislav . sasic
Xenomai 3.0.6, and ipipe-core-4.9.51-arm-3, patched on sunxi 4.11.2 kernel
(with BeagleBone patches applied too). Same situation with this kernel ->
https://github.com/beagleboard/linux/tree/4.9-xenomai


Just as Giulio wrote, GPIO is configured with:

echo 60 > /sys/class/gpio/export
echo both > /sys/class/gpio/gpio60/edge

or in kernel module init routine with:

gpio_request(gpio, "test");
gpio_direction_input(gpio);
irq = gpio_to_irq(gpio);
irq_set_irq_type(irq, IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING);
rtdm_irq_request(&irq_handle, irq, test_isr, RTDM_IRQTYPE_EDGE,
DRIVER_NAME, NULL);
rtdm_irq_enable(&irq_handle);


Both reproduce the problem. In the second case, when requested with
rtdm_irq_request, IRQ is visible both in /proc/interrupts, and in
/proc/xenomai/irq


Thanks!


Branislav


> Can you provide what version of Xenomai you are using and what ipipe
patch you are using?  It also may be helpful if you could provide some
sort of sample code that reproduces the problem.
>
> -Greg
>
> On Mon, Feb 26, 2018 at 8:46 AM,
>  wrote:
>> Hello,
>> I have a problem with new I-pipe patch, which was not existing with legacy
>> patch on 3.14 kernel, on BeagleBone platform.
>> When GPIO pin is configured as input with edge interrupt enable, on IRQ
occurrence the following message appears:
>> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
[  303.331401] ->handle_irq():  c01a810c,
>> [  303.331435] handle_edge_irq+0x0/0x194
>> [  303.331442] ->irq_data.chip(): dc097b50,
>> [  303.331454] 0xdc097b50
>> [  303.331461] ->action(): da097380
>> [  303.331467] ->action->handler(): c078dce4,
>> [  303.331483] gpio_sysfs_irq+0x0/0x24
>> [  303.331493]IRQ_NOPROBE set
>> [  303.331503] unexpected IRQ trap at vector 58
>> [  303.335814] [ cut here ]
>> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
>> __ipipe_ack_bad_irq+0x3c/0x48
>> [  303.335839] Modules linked in:
>> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2 [ 
303.335871] Hardware name: Generic AM33XX (Flattened Device Tree) [ 
303.335878] I-pipe domain: Linux
>> [  303.335918] [] (unwind_backtrace) from []
(show_stack+0x20/0x24)
>> [  303.335946] [] (show_stack) from []
>> (dump_stack+0xbc/0xec)
>> [  303.335968] [] (dump_stack) from []
>> (__warn+0xe4/0x110)
>> [  303.335984] [] (__warn) from []
>> (warn_slowpath_null+0x30/0x38)
>> [  303.335998] [] (warn_slowpath_null) from []
(__ipipe_ack_bad_irq+0x3c/0x48)
>> [  303.336027] [] (__ipipe_ack_bad_irq) from []
(__ipipe_dispatch_irq+0x80/0x1e4)
>> [  303.336048] [] (__ipipe_dispatch_irq) from []
(omap_gpio_irq_handler+0x15c/0x1d0)
>> [  303.336066] [] (omap_gpio_irq_handler) from []
(__handle_irq_event_percpu+0x68/0x2bc)
>> [  303.336081] [] (__handle_irq_event_percpu) from
>> []
>> (handle_irq_event_percpu+0x2c/0x68)
>> [  303.336095] [] (handle_irq_event_percpu) from []
(handle_irq_event+0x48/0x6c)
>> [  303.336111] [] (handle_irq_event) from []
(handle_level_irq+0xa8/0xfc)
>> [  303.336127] [] (handle_level_irq) from []
(generic_handle_irq+0x28/0x38)
>> [  303.336141] [] (generic_handle_irq) from []
(__handle_domain_irq+0x8c/0x10c)
>> [  303.336164] [] (__handle_domain_irq) from []
(handle_IRQ+0x2c/0x30)
>> [  303.336182] [] (handle_IRQ) from []
>> (__ipipe_do_IRQ+0x38/0x40)
>> [  303.336198] [] (__ipipe_do_IRQ) from []
>> (__ipipe_do_sync_stage+0x268/0x278)
>> [  303.336214] [] (__ipipe_do_sync_stage) from []
(ipipe_unstall_root+0x50/0x5c)
>> [  303.336244] [] (ipipe_unstall_root) from []
(default_idle_call+0x54/0x7c)
>> [  303.336271] [] (default_idle_call) from []
(cpu_startup_entry+0xd0/0x144)
>> [  303.336289] [] (cpu_startup_entry) from []
(rest_init+0x80/0x98)
>> [  303.336315] [] (rest_init) from []
>> (start_kernel+0x370/0x3d8)
>> [  303.336327] ---[ end trace fd2436447809c122 ]---
>> [  303.336343] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
[  303.336349] ->handle_irq():  c01a810c,
>> [  303.336361] handle_edge_irq+0x0/0x194
>> [  303.336367] ->irq_data.chip(): dc097b50,
>> [  303.336376] 0xdc097b50
>> [  303.336382] ->action(): da097380
>> [  303.336389] ->action->handler(): c078dce4,
>> [  303.336399] gpio_sysfs_irq+0x0/0x24
>> [  303.336406]IRQ_NOPROBE set
>> [  303.336413] unexpected IRQ trap at vector 58
>> [  306.761879] irq 88, desc: dc1be400, depth: 0, count: 1, unhandled: 0
[  306.761893] ->handle_irq():  c01a810c,
>> [  306.761928] handle_edge_irq+0x0/0x194
>> [  306.761935] ->irq_data.chip(): dc097b50,
>> [  306.761947] 0xdc097b50
>> [  306.761954] ->action(): da097380
>> [  306.761960] ->action->handler(): c078dce4,
>> [  306.761976] gpio_sysfs_irq+0x0/0x24
>> [  306.761985]IRQ_NOPROBE set
>> [  306.761995] unexpected IRQ trap at vector 58
>> [  306.766311] irq 88, desc: dc1be400, depth: 0, count: 1, unhandled: 0
[  306.766318] ->handle_irq():  c01a810c,
>> [  306.766330] handle_edge_irq+0x0/0x194
>> [  306.766336] ->irq_data.chip(): dc097b50,
>> [  306.766344] 0xdc097b50
>> [ 

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread Philippe Gerum
On 02/26/2018 02:46 PM, branislav.sa...@automatika.imp.bg.ac.rs wrote:
> Hello,
> 
> I have a problem with new I-pipe patch, which was not existing with legacy
> patch on 3.14 kernel, on BeagleBone platform.
> 
> When GPIO pin is configured as input with edge interrupt enable, on IRQ
> occurrence the following message appears:
> 
> 
> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
> [  303.331401] ->handle_irq():  c01a810c,
> [  303.331435] handle_edge_irq+0x0/0x194
> [  303.331442] ->irq_data.chip(): dc097b50,
> [  303.331454] 0xdc097b50
> [  303.331461] ->action(): da097380
> [  303.331467] ->action->handler(): c078dce4,
> [  303.331483] gpio_sysfs_irq+0x0/0x24
> [  303.331493]IRQ_NOPROBE set
> [  303.331503] unexpected IRQ trap at vector 58
> 
> [  303.335814] [ cut here ]
> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883

As Greg pointed out, there is no way we can figure out which kernel you
are running, which is a key information for us to help you.

Anyway, looking at the backtrace, it looks like the interrupt is not
properly pipelined. You need drivers/gpio/gpio-omap.c to be fixed up in
your kernel the way this commit fixes up a mainline 4.14 kernel:

http://git.xenomai.org/ipipe-arm.git/commit/?id=63b8ee7f25b73547ac8eff7a6be5b587422015ca

-- 
Philippe.

___
Xenomai mailing list
Xenomai@xenomai.org
https://xenomai.org/mailman/listinfo/xenomai


Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread Greg Gallagher
Is it possible to try this with the latest Xenomai stable branch?
There have been a good amount of fixes and changes in the branch since
3.0.5.

git clone git://git.xenomai.org/xenomai-3.git
git checkout stable-3.0.x

Then you can follow the steps as you did for 3.0.5 to patch the
kernel.  Is this on a mainline kernel or the TI kernel?

On Mon, Feb 26, 2018 at 11:07 AM, Giulio Moro  wrote:
> Yes correct, we have Xenomai installed and tried to use a pin through the 
> linux sysfs interface. Xenomai was not using that same pin (or any other GPIO 
> pins, for what matters).
> Thanks,
> Giulio
> 
> From: Greg Gallagher 
> Sent: 26 February 2018 16:06
> To: Giulio Moro
> Cc: branislav.sa...@automatika.imp.bg.ac.rs; Xenomai@xenomai.org
> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>
>  In this case you have Xenomai installed and are using the GPIO in a
> non rt situation?  On Zynq I can use both the RTDM gpios and the sysfs
> gpios (non rt) at the same time as long as it's not the same pin.  I
> will look into this this week, I have RPI stuff on the go as well so
> patience is appreciated.
>
> -Greg
>
> On Mon, Feb 26, 2018 at 10:54 AM, Giulio Moro  wrote:
>> We have a similar issue on Linux 4.4.87 and  4.4.113, with xenomai 3.0.5: 
>> https://github.com/RobertCNelson/ti-linux-kernel-dev/issues/16  (comes with 
>> code to reproduce issue).
>>
>> Best,
>> Giulio
>>
>> 
>> From: Xenomai  on behalf of Greg Gallagher 
>> 
>> Sent: 26 February 2018 15:37
>> To: branislav.sa...@automatika.imp.bg.ac.rs
>> Cc: Xenomai@xenomai.org
>> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>>
>> Can you provide what version of Xenomai you are using and what ipipe
>> patch you are using?  It also may be helpful if you could provide some
>> sort of sample code that reproduces the problem.
>>
>> -Greg
>>
>> On Mon, Feb 26, 2018 at 8:46 AM,
>>  wrote:
>>> Hello,
>>>
>>> I have a problem with new I-pipe patch, which was not existing with legacy
>>> patch on 3.14 kernel, on BeagleBone platform.
>>>
>>> When GPIO pin is configured as input with edge interrupt enable, on IRQ
>>> occurrence the following message appears:
>>>
>>>
>>> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
>>> [  303.331401] ->handle_irq():  c01a810c,
>>> [  303.331435] handle_edge_irq+0x0/0x194
>>> [  303.331442] ->irq_data.chip(): dc097b50,
>>> [  303.331454] 0xdc097b50
>>> [  303.331461] ->action(): da097380
>>> [  303.331467] ->action->handler(): c078dce4,
>>> [  303.331483] gpio_sysfs_irq+0x0/0x24
>>> [  303.331493]IRQ_NOPROBE set
>>> [  303.331503] unexpected IRQ trap at vector 58
>>>
>>> [  303.335814] [ cut here ]
>>> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
>>> __ipipe_ack_bad_irq+0x3c/0x48
>>> [  303.335839] Modules linked in:
>>> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2
>>> [  303.335871] Hardware name: Generic AM33XX (Flattened Device Tree)
>>> [  303.335878] I-pipe domain: Linux
>>> [  303.335918] [] (unwind_backtrace) from []
>>> (show_stack+0x20/0x24)
>>> [  303.335946] [] (show_stack) from []
>>> (dump_stack+0xbc/0xec)
>>> [  303.335968] [] (dump_stack) from []
>>> (__warn+0xe4/0x110)
>>> [  303.335984] [] (__warn) from []
>>> (warn_slowpath_null+0x30/0x38)
>>> [  303.335998] [] (warn_slowpath_null) from []
>>> (__ipipe_ack_bad_irq+0x3c/0x48)
>>> [  303.336027] [] (__ipipe_ack_bad_irq) from []
>>> (__ipipe_dispatch_irq+0x80/0x1e4)
>>> [  303.336048] [] (__ipipe_dispatch_irq) from []
>>> (omap_gpio_irq_handler+0x15c/0x1d0)
>>> [  303.336066] [] (omap_gpio_irq_handler) from []
>>> (__handle_irq_event_percpu+0x68/0x2bc)
>>> [  303.336081] [] (__handle_irq_event_percpu) from []
>>> (handle_irq_event_percpu+0x2c/0x68)
>>> [  303.336095] [] (handle_irq_event_percpu) from []
>>> (handle_irq_event+0x48/0x6c)
>>> [  303.336111] [] (handle_irq_event) from []
>>> (handle_level_irq+0xa8/0xfc)
>>> [  303.336127] [] (handle_level_irq) from []
>>> (generic_handle_irq+0x28/0x38)
>>> [  303.336141] [] (generic_handle_irq) from []
>>> (__handle_domain_irq+0x8c/0x10c)
>>> [  303.336164] [] (__handle_domain_irq) from []
>>> (handle_IRQ

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread Giulio Moro
Yes correct, we have Xenomai installed and tried to use a pin through the linux 
sysfs interface. Xenomai was not using that same pin (or any other GPIO pins, 
for what matters).
Thanks,
Giulio

From: Greg Gallagher 
Sent: 26 February 2018 16:06
To: Giulio Moro
Cc: branislav.sa...@automatika.imp.bg.ac.rs; Xenomai@xenomai.org
Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

 In this case you have Xenomai installed and are using the GPIO in a
non rt situation?  On Zynq I can use both the RTDM gpios and the sysfs
gpios (non rt) at the same time as long as it's not the same pin.  I
will look into this this week, I have RPI stuff on the go as well so
patience is appreciated.

-Greg

On Mon, Feb 26, 2018 at 10:54 AM, Giulio Moro  wrote:
> We have a similar issue on Linux 4.4.87 and  4.4.113, with xenomai 3.0.5: 
> https://github.com/RobertCNelson/ti-linux-kernel-dev/issues/16  (comes with 
> code to reproduce issue).
>
> Best,
> Giulio
>
> 
> From: Xenomai  on behalf of Greg Gallagher 
> 
> Sent: 26 February 2018 15:37
> To: branislav.sa...@automatika.imp.bg.ac.rs
> Cc: Xenomai@xenomai.org
> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>
> Can you provide what version of Xenomai you are using and what ipipe
> patch you are using?  It also may be helpful if you could provide some
> sort of sample code that reproduces the problem.
>
> -Greg
>
> On Mon, Feb 26, 2018 at 8:46 AM,
>  wrote:
>> Hello,
>>
>> I have a problem with new I-pipe patch, which was not existing with legacy
>> patch on 3.14 kernel, on BeagleBone platform.
>>
>> When GPIO pin is configured as input with edge interrupt enable, on IRQ
>> occurrence the following message appears:
>>
>>
>> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
>> [  303.331401] ->handle_irq():  c01a810c,
>> [  303.331435] handle_edge_irq+0x0/0x194
>> [  303.331442] ->irq_data.chip(): dc097b50,
>> [  303.331454] 0xdc097b50
>> [  303.331461] ->action(): da097380
>> [  303.331467] ->action->handler(): c078dce4,
>> [  303.331483] gpio_sysfs_irq+0x0/0x24
>> [  303.331493]IRQ_NOPROBE set
>> [  303.331503] unexpected IRQ trap at vector 58
>>
>> [  303.335814] [ cut here ]
>> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
>> __ipipe_ack_bad_irq+0x3c/0x48
>> [  303.335839] Modules linked in:
>> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2
>> [  303.335871] Hardware name: Generic AM33XX (Flattened Device Tree)
>> [  303.335878] I-pipe domain: Linux
>> [  303.335918] [] (unwind_backtrace) from []
>> (show_stack+0x20/0x24)
>> [  303.335946] [] (show_stack) from []
>> (dump_stack+0xbc/0xec)
>> [  303.335968] [] (dump_stack) from []
>> (__warn+0xe4/0x110)
>> [  303.335984] [] (__warn) from []
>> (warn_slowpath_null+0x30/0x38)
>> [  303.335998] [] (warn_slowpath_null) from []
>> (__ipipe_ack_bad_irq+0x3c/0x48)
>> [  303.336027] [] (__ipipe_ack_bad_irq) from []
>> (__ipipe_dispatch_irq+0x80/0x1e4)
>> [  303.336048] [] (__ipipe_dispatch_irq) from []
>> (omap_gpio_irq_handler+0x15c/0x1d0)
>> [  303.336066] [] (omap_gpio_irq_handler) from []
>> (__handle_irq_event_percpu+0x68/0x2bc)
>> [  303.336081] [] (__handle_irq_event_percpu) from []
>> (handle_irq_event_percpu+0x2c/0x68)
>> [  303.336095] [] (handle_irq_event_percpu) from []
>> (handle_irq_event+0x48/0x6c)
>> [  303.336111] [] (handle_irq_event) from []
>> (handle_level_irq+0xa8/0xfc)
>> [  303.336127] [] (handle_level_irq) from []
>> (generic_handle_irq+0x28/0x38)
>> [  303.336141] [] (generic_handle_irq) from []
>> (__handle_domain_irq+0x8c/0x10c)
>> [  303.336164] [] (__handle_domain_irq) from []
>> (handle_IRQ+0x2c/0x30)
>> [  303.336182] [] (handle_IRQ) from []
>> (__ipipe_do_IRQ+0x38/0x40)
>> [  303.336198] [] (__ipipe_do_IRQ) from []
>> (__ipipe_do_sync_stage+0x268/0x278)
>> [  303.336214] [] (__ipipe_do_sync_stage) from []
>> (ipipe_unstall_root+0x50/0x5c)
>> [  303.336244] [] (ipipe_unstall_root) from []
>> (default_idle_call+0x54/0x7c)
>> [  303.336271] [] (default_idle_call) from []
>> (cpu_startup_entry+0xd0/0x144)
>> [  303.336289] [] (cpu_startup_entry) from []
>> (rest_init+0x80/0x98)
>> [  303.336315] [] (rest_init) from []
>> (start_kernel+0x370/0x3d8)
>> [  303.336327] ---[ end trace fd2436447809c122 ]---
>>
>> [  303.336343] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
&

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread Greg Gallagher
 In this case you have Xenomai installed and are using the GPIO in a
non rt situation?  On Zynq I can use both the RTDM gpios and the sysfs
gpios (non rt) at the same time as long as it's not the same pin.  I
will look into this this week, I have RPI stuff on the go as well so
patience is appreciated.

-Greg

On Mon, Feb 26, 2018 at 10:54 AM, Giulio Moro  wrote:
> We have a similar issue on Linux 4.4.87 and  4.4.113, with xenomai 3.0.5: 
> https://github.com/RobertCNelson/ti-linux-kernel-dev/issues/16  (comes with 
> code to reproduce issue).
>
> Best,
> Giulio
>
> 
> From: Xenomai  on behalf of Greg Gallagher 
> 
> Sent: 26 February 2018 15:37
> To: branislav.sa...@automatika.imp.bg.ac.rs
> Cc: Xenomai@xenomai.org
> Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap
>
> Can you provide what version of Xenomai you are using and what ipipe
> patch you are using?  It also may be helpful if you could provide some
> sort of sample code that reproduces the problem.
>
> -Greg
>
> On Mon, Feb 26, 2018 at 8:46 AM,
>  wrote:
>> Hello,
>>
>> I have a problem with new I-pipe patch, which was not existing with legacy
>> patch on 3.14 kernel, on BeagleBone platform.
>>
>> When GPIO pin is configured as input with edge interrupt enable, on IRQ
>> occurrence the following message appears:
>>
>>
>> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
>> [  303.331401] ->handle_irq():  c01a810c,
>> [  303.331435] handle_edge_irq+0x0/0x194
>> [  303.331442] ->irq_data.chip(): dc097b50,
>> [  303.331454] 0xdc097b50
>> [  303.331461] ->action(): da097380
>> [  303.331467] ->action->handler(): c078dce4,
>> [  303.331483] gpio_sysfs_irq+0x0/0x24
>> [  303.331493]IRQ_NOPROBE set
>> [  303.331503] unexpected IRQ trap at vector 58
>>
>> [  303.335814] [ cut here ]
>> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
>> __ipipe_ack_bad_irq+0x3c/0x48
>> [  303.335839] Modules linked in:
>> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2
>> [  303.335871] Hardware name: Generic AM33XX (Flattened Device Tree)
>> [  303.335878] I-pipe domain: Linux
>> [  303.335918] [] (unwind_backtrace) from []
>> (show_stack+0x20/0x24)
>> [  303.335946] [] (show_stack) from []
>> (dump_stack+0xbc/0xec)
>> [  303.335968] [] (dump_stack) from []
>> (__warn+0xe4/0x110)
>> [  303.335984] [] (__warn) from []
>> (warn_slowpath_null+0x30/0x38)
>> [  303.335998] [] (warn_slowpath_null) from []
>> (__ipipe_ack_bad_irq+0x3c/0x48)
>> [  303.336027] [] (__ipipe_ack_bad_irq) from []
>> (__ipipe_dispatch_irq+0x80/0x1e4)
>> [  303.336048] [] (__ipipe_dispatch_irq) from []
>> (omap_gpio_irq_handler+0x15c/0x1d0)
>> [  303.336066] [] (omap_gpio_irq_handler) from []
>> (__handle_irq_event_percpu+0x68/0x2bc)
>> [  303.336081] [] (__handle_irq_event_percpu) from []
>> (handle_irq_event_percpu+0x2c/0x68)
>> [  303.336095] [] (handle_irq_event_percpu) from []
>> (handle_irq_event+0x48/0x6c)
>> [  303.336111] [] (handle_irq_event) from []
>> (handle_level_irq+0xa8/0xfc)
>> [  303.336127] [] (handle_level_irq) from []
>> (generic_handle_irq+0x28/0x38)
>> [  303.336141] [] (generic_handle_irq) from []
>> (__handle_domain_irq+0x8c/0x10c)
>> [  303.336164] [] (__handle_domain_irq) from []
>> (handle_IRQ+0x2c/0x30)
>> [  303.336182] [] (handle_IRQ) from []
>> (__ipipe_do_IRQ+0x38/0x40)
>> [  303.336198] [] (__ipipe_do_IRQ) from []
>> (__ipipe_do_sync_stage+0x268/0x278)
>> [  303.336214] [] (__ipipe_do_sync_stage) from []
>> (ipipe_unstall_root+0x50/0x5c)
>> [  303.336244] [] (ipipe_unstall_root) from []
>> (default_idle_call+0x54/0x7c)
>> [  303.336271] [] (default_idle_call) from []
>> (cpu_startup_entry+0xd0/0x144)
>> [  303.336289] [] (cpu_startup_entry) from []
>> (rest_init+0x80/0x98)
>> [  303.336315] [] (rest_init) from []
>> (start_kernel+0x370/0x3d8)
>> [  303.336327] ---[ end trace fd2436447809c122 ]---
>>
>> [  303.336343] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
>> [  303.336349] ->handle_irq():  c01a810c,
>> [  303.336361] handle_edge_irq+0x0/0x194
>> [  303.336367] ->irq_data.chip(): dc097b50,
>> [  303.336376] 0xdc097b50
>> [  303.336382] ->action(): da097380
>> [  303.336389] ->action->handler(): c078dce4,
>> [  303.336399] gpio_sysfs_irq+0x0/0x24
>> [  303.336406]IRQ_NOPROBE set
>> [  303.336413] unexpected IRQ trap at ve

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread Giulio Moro
We have a similar issue on Linux 4.4.87 and  4.4.113, with xenomai 3.0.5: 
https://github.com/RobertCNelson/ti-linux-kernel-dev/issues/16  (comes with 
code to reproduce issue).

Best,
Giulio


From: Xenomai  on behalf of Greg Gallagher 

Sent: 26 February 2018 15:37
To: branislav.sa...@automatika.imp.bg.ac.rs
Cc: Xenomai@xenomai.org
Subject: Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

Can you provide what version of Xenomai you are using and what ipipe
patch you are using?  It also may be helpful if you could provide some
sort of sample code that reproduces the problem.

-Greg

On Mon, Feb 26, 2018 at 8:46 AM,
 wrote:
> Hello,
>
> I have a problem with new I-pipe patch, which was not existing with legacy
> patch on 3.14 kernel, on BeagleBone platform.
>
> When GPIO pin is configured as input with edge interrupt enable, on IRQ
> occurrence the following message appears:
>
>
> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
> [  303.331401] ->handle_irq():  c01a810c,
> [  303.331435] handle_edge_irq+0x0/0x194
> [  303.331442] ->irq_data.chip(): dc097b50,
> [  303.331454] 0xdc097b50
> [  303.331461] ->action(): da097380
> [  303.331467] ->action->handler(): c078dce4,
> [  303.331483] gpio_sysfs_irq+0x0/0x24
> [  303.331493]IRQ_NOPROBE set
> [  303.331503] unexpected IRQ trap at vector 58
>
> [  303.335814] [ cut here ]
> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
> __ipipe_ack_bad_irq+0x3c/0x48
> [  303.335839] Modules linked in:
> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2
> [  303.335871] Hardware name: Generic AM33XX (Flattened Device Tree)
> [  303.335878] I-pipe domain: Linux
> [  303.335918] [] (unwind_backtrace) from []
> (show_stack+0x20/0x24)
> [  303.335946] [] (show_stack) from []
> (dump_stack+0xbc/0xec)
> [  303.335968] [] (dump_stack) from []
> (__warn+0xe4/0x110)
> [  303.335984] [] (__warn) from []
> (warn_slowpath_null+0x30/0x38)
> [  303.335998] [] (warn_slowpath_null) from []
> (__ipipe_ack_bad_irq+0x3c/0x48)
> [  303.336027] [] (__ipipe_ack_bad_irq) from []
> (__ipipe_dispatch_irq+0x80/0x1e4)
> [  303.336048] [] (__ipipe_dispatch_irq) from []
> (omap_gpio_irq_handler+0x15c/0x1d0)
> [  303.336066] [] (omap_gpio_irq_handler) from []
> (__handle_irq_event_percpu+0x68/0x2bc)
> [  303.336081] [] (__handle_irq_event_percpu) from []
> (handle_irq_event_percpu+0x2c/0x68)
> [  303.336095] [] (handle_irq_event_percpu) from []
> (handle_irq_event+0x48/0x6c)
> [  303.336111] [] (handle_irq_event) from []
> (handle_level_irq+0xa8/0xfc)
> [  303.336127] [] (handle_level_irq) from []
> (generic_handle_irq+0x28/0x38)
> [  303.336141] [] (generic_handle_irq) from []
> (__handle_domain_irq+0x8c/0x10c)
> [  303.336164] [] (__handle_domain_irq) from []
> (handle_IRQ+0x2c/0x30)
> [  303.336182] [] (handle_IRQ) from []
> (__ipipe_do_IRQ+0x38/0x40)
> [  303.336198] [] (__ipipe_do_IRQ) from []
> (__ipipe_do_sync_stage+0x268/0x278)
> [  303.336214] [] (__ipipe_do_sync_stage) from []
> (ipipe_unstall_root+0x50/0x5c)
> [  303.336244] [] (ipipe_unstall_root) from []
> (default_idle_call+0x54/0x7c)
> [  303.336271] [] (default_idle_call) from []
> (cpu_startup_entry+0xd0/0x144)
> [  303.336289] [] (cpu_startup_entry) from []
> (rest_init+0x80/0x98)
> [  303.336315] [] (rest_init) from []
> (start_kernel+0x370/0x3d8)
> [  303.336327] ---[ end trace fd2436447809c122 ]---
>
> [  303.336343] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
> [  303.336349] ->handle_irq():  c01a810c,
> [  303.336361] handle_edge_irq+0x0/0x194
> [  303.336367] ->irq_data.chip(): dc097b50,
> [  303.336376] 0xdc097b50
> [  303.336382] ->action(): da097380
> [  303.336389] ->action->handler(): c078dce4,
> [  303.336399] gpio_sysfs_irq+0x0/0x24
> [  303.336406]IRQ_NOPROBE set
> [  303.336413] unexpected IRQ trap at vector 58
>
> [  306.761879] irq 88, desc: dc1be400, depth: 0, count: 1, unhandled: 0
> [  306.761893] ->handle_irq():  c01a810c,
> [  306.761928] handle_edge_irq+0x0/0x194
> [  306.761935] ->irq_data.chip(): dc097b50,
> [  306.761947] 0xdc097b50
> [  306.761954] ->action(): da097380
> [  306.761960] ->action->handler(): c078dce4,
> [  306.761976] gpio_sysfs_irq+0x0/0x24
> [  306.761985]IRQ_NOPROBE set
> [  306.761995] unexpected IRQ trap at vector 58
>
> [  306.766311] irq 88, desc: dc1be400, depth: 0, count: 1, unhandled: 0
> [  306.766318] ->handle_irq():  c01a810c,
> [  306.766330] handle_edge_irq+0x0/0x194
> [  306.766336] ->irq_data.chip(): dc097b50,
> [  306.766344] 0xdc097b50
> [  306.766351] ->actio

Re: [Xenomai] interrupt on edge problem, unexpected IRQ trap

2018-02-26 Thread Greg Gallagher
Can you provide what version of Xenomai you are using and what ipipe
patch you are using?  It also may be helpful if you could provide some
sort of sample code that reproduces the problem.

-Greg

On Mon, Feb 26, 2018 at 8:46 AM,
 wrote:
> Hello,
>
> I have a problem with new I-pipe patch, which was not existing with legacy
> patch on 3.14 kernel, on BeagleBone platform.
>
> When GPIO pin is configured as input with edge interrupt enable, on IRQ
> occurrence the following message appears:
>
>
> [  303.331386] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
> [  303.331401] ->handle_irq():  c01a810c,
> [  303.331435] handle_edge_irq+0x0/0x194
> [  303.331442] ->irq_data.chip(): dc097b50,
> [  303.331454] 0xdc097b50
> [  303.331461] ->action(): da097380
> [  303.331467] ->action->handler(): c078dce4,
> [  303.331483] gpio_sysfs_irq+0x0/0x24
> [  303.331493]IRQ_NOPROBE set
> [  303.331503] unexpected IRQ trap at vector 58
>
> [  303.335814] [ cut here ]
> [  303.335832] WARNING: CPU: 0 PID: 0 at kernel/irq/chip.c:883
> __ipipe_ack_bad_irq+0x3c/0x48
> [  303.335839] Modules linked in:
> [  303.335863] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 4.9.82 #2
> [  303.335871] Hardware name: Generic AM33XX (Flattened Device Tree)
> [  303.335878] I-pipe domain: Linux
> [  303.335918] [] (unwind_backtrace) from []
> (show_stack+0x20/0x24)
> [  303.335946] [] (show_stack) from []
> (dump_stack+0xbc/0xec)
> [  303.335968] [] (dump_stack) from []
> (__warn+0xe4/0x110)
> [  303.335984] [] (__warn) from []
> (warn_slowpath_null+0x30/0x38)
> [  303.335998] [] (warn_slowpath_null) from []
> (__ipipe_ack_bad_irq+0x3c/0x48)
> [  303.336027] [] (__ipipe_ack_bad_irq) from []
> (__ipipe_dispatch_irq+0x80/0x1e4)
> [  303.336048] [] (__ipipe_dispatch_irq) from []
> (omap_gpio_irq_handler+0x15c/0x1d0)
> [  303.336066] [] (omap_gpio_irq_handler) from []
> (__handle_irq_event_percpu+0x68/0x2bc)
> [  303.336081] [] (__handle_irq_event_percpu) from []
> (handle_irq_event_percpu+0x2c/0x68)
> [  303.336095] [] (handle_irq_event_percpu) from []
> (handle_irq_event+0x48/0x6c)
> [  303.336111] [] (handle_irq_event) from []
> (handle_level_irq+0xa8/0xfc)
> [  303.336127] [] (handle_level_irq) from []
> (generic_handle_irq+0x28/0x38)
> [  303.336141] [] (generic_handle_irq) from []
> (__handle_domain_irq+0x8c/0x10c)
> [  303.336164] [] (__handle_domain_irq) from []
> (handle_IRQ+0x2c/0x30)
> [  303.336182] [] (handle_IRQ) from []
> (__ipipe_do_IRQ+0x38/0x40)
> [  303.336198] [] (__ipipe_do_IRQ) from []
> (__ipipe_do_sync_stage+0x268/0x278)
> [  303.336214] [] (__ipipe_do_sync_stage) from []
> (ipipe_unstall_root+0x50/0x5c)
> [  303.336244] [] (ipipe_unstall_root) from []
> (default_idle_call+0x54/0x7c)
> [  303.336271] [] (default_idle_call) from []
> (cpu_startup_entry+0xd0/0x144)
> [  303.336289] [] (cpu_startup_entry) from []
> (rest_init+0x80/0x98)
> [  303.336315] [] (rest_init) from []
> (start_kernel+0x370/0x3d8)
> [  303.336327] ---[ end trace fd2436447809c122 ]---
>
> [  303.336343] irq 88, desc: dc1be400, depth: 0, count: 0, unhandled: 0
> [  303.336349] ->handle_irq():  c01a810c,
> [  303.336361] handle_edge_irq+0x0/0x194
> [  303.336367] ->irq_data.chip(): dc097b50,
> [  303.336376] 0xdc097b50
> [  303.336382] ->action(): da097380
> [  303.336389] ->action->handler(): c078dce4,
> [  303.336399] gpio_sysfs_irq+0x0/0x24
> [  303.336406]IRQ_NOPROBE set
> [  303.336413] unexpected IRQ trap at vector 58
>
> [  306.761879] irq 88, desc: dc1be400, depth: 0, count: 1, unhandled: 0
> [  306.761893] ->handle_irq():  c01a810c,
> [  306.761928] handle_edge_irq+0x0/0x194
> [  306.761935] ->irq_data.chip(): dc097b50,
> [  306.761947] 0xdc097b50
> [  306.761954] ->action(): da097380
> [  306.761960] ->action->handler(): c078dce4,
> [  306.761976] gpio_sysfs_irq+0x0/0x24
> [  306.761985]IRQ_NOPROBE set
> [  306.761995] unexpected IRQ trap at vector 58
>
> [  306.766311] irq 88, desc: dc1be400, depth: 0, count: 1, unhandled: 0
> [  306.766318] ->handle_irq():  c01a810c,
> [  306.766330] handle_edge_irq+0x0/0x194
> [  306.766336] ->irq_data.chip(): dc097b50,
> [  306.766344] 0xdc097b50
> [  306.766351] ->action(): da097380
> [  306.766357] ->action->handler(): c078dce4,
> [  306.766366] gpio_sysfs_irq+0x0/0x24
> [  306.766373]IRQ_NOPROBE set
> [  306.766380] unexpected IRQ trap at vector 58
>
> [  306.892617] irq 88, desc: dc1be400, depth: 0, count: 2, unhandled: 0
> [  306.892634] ->handle_irq():  c01a810c,
> [  306.892666] handle_edge_irq+0x0/0x194
> [  306.892673] ->irq_data.chip(): dc097b50,
> [  306.892683] 0xdc097b50
> [  306.892690] ->action(): da097380
> [  306.892697] ->action->handler(): c078dce4,
> [  306.892712] gpio_sysfs_irq+0x0/0x24
> [  306.892723]IRQ_NOPROBE set
> [  306.892732] unexpected IRQ trap at vector 58
>
> [  306.897047] irq 88, desc: dc1be400, depth: 0, count: 2, unhandled: 0
> [  306.897054] ->handle_irq():  c01a810c,
> [  306.897065] handle_edge_irq+0x0/0x194
> [  306.8