Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1311101 > unrolled thread
| Started by | Alexandre Belloni <alexandre.belloni@free-electrons.com> |
|---|---|
| First post | 2016-01-17 03:30 +0100 |
| Last post | 2016-01-19 02:10 +0100 |
| Articles | 5 — 2 participants |
Back to article view | Back to linux.kernel
Fix preempt-rt on AT91 Alexandre Belloni <alexandre.belloni@free-electrons.com> - 2016-01-17 03:30 +0100
Re: Fix preempt-rt on AT91 Sebastian Andrzej Siewior <bigeasy@linutronix.de> - 2016-01-18 18:50 +0100
Re: Fix preempt-rt on AT91 Alexandre Belloni <alexandre.belloni@free-electrons.com> - 2016-01-18 20:30 +0100
Re: Fix preempt-rt on AT91 Sebastian Andrzej Siewior <bigeasy@linutronix.de> - 2016-01-18 21:40 +0100
Re: Fix preempt-rt on AT91 Alexandre Belloni <alexandre.belloni@free-electrons.com> - 2016-01-19 02:10 +0100
| From | Alexandre Belloni <alexandre.belloni@free-electrons.com> |
|---|---|
| Date | 2016-01-17 03:30 +0100 |
| Subject | Fix preempt-rt on AT91 |
| Message-ID | <qRLgl-4Dy-5@gated-at.bofh.it> |
Hi Sebastian, Thomas, Preemp-rt on at91 has multiple issues: 1/ After apply the preempt-rt patch, the kernel doesn't build anymore, arm-at91-pit-remove-irq-handler-when-clock-is-unused.patch is not correct anymore. Can you squash the following patch to solve this build issue? 2/ This approach actually has more issues, in particular, request_irq() must not be calls from interrupt disabled context. That only works because might_sleep() is not active during early boot. For more information, see the following discussion: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/357607.html However, we can't remove those patches now because else we would suffer from another issue: The timer interrupt is shared with other devices, in particular the debug tty, the rtc dans the pmc. When using preempt-rt, those interrupts become threaded interrupts. But, the pit interrupt is requested with IRQF_TIMER and so has IRQF_NO_THREAD. If the pit interrupt is not freed at early boot, all the other devices will fail requesting their interrupt, for example: genirq: Flags mismatch irq 16. 00042080 (ttyS0) vs. 00015280 (at91_tick) atmel_usart ffffee00.serial: atmel_startup - Can't get irq I'd say that the proper solution would still be to implement the virtual irqchip because this would still hit people not wanting to use the TCB as their clock source. 3/ Finally, the kernel will crash when initializing the PMC driver. This is solved by this series that will hopefully land in the mainline: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-December/390954.html Alexandre Belloni (1): fix arm-at91-pit-remove-irq-handler-when-clock-is-unused.patch drivers/clocksource/timer-atmel-pit.c | 68 +++++++++++++++++------------------ drivers/clocksource/timer-atmel-st.c | 8 ++--- 2 files changed, 38 insertions(+), 38 deletions(-) -- 2.5.0
[toc] | [next] | [standalone]
| From | Sebastian Andrzej Siewior <bigeasy@linutronix.de> |
|---|---|
| Date | 2016-01-18 18:50 +0100 |
| Message-ID | <qSm6g-3ZZ-47@gated-at.bofh.it> |
| In reply to | #1311101 |
* Alexandre Belloni | 2016-01-17 03:23:13 [+0100]: >Hi Sebastian, Thomas, > Hi Alexandre, > 1/ After apply the preempt-rt patch, the kernel doesn't build anymore, > arm-at91-pit-remove-irq-handler-when-clock-is-unused.patch is not correct > anymore. Can you squash the following patch to solve this build issue? I folded most of the changes and should be part of -rt3. > 2/ This approach actually has more issues, in particular, request_irq() must > not be calls from interrupt disabled context. That only works because > might_sleep() is not active during early boot. > For more information, see the following discussion: > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/357607.html > > However, we can't remove those patches now because else we would suffer from > another issue: > The timer interrupt is shared with other devices, in particular the debug tty, > the rtc dans the pmc. When using preempt-rt, those interrupts become threaded > interrupts. But, the pit interrupt is requested with IRQF_TIMER and so has > IRQF_NO_THREAD. If the pit interrupt is not freed at early boot, all the other > devices will fail requesting their interrupt, for example: > >genirq: Flags mismatch irq 16. 00042080 (ttyS0) vs. 00015280 (at91_tick) >atmel_usart ffffee00.serial: atmel_startup - Can't get irq I assumed the pit is just temporary here for the bootstap. The pit irq is removed and the system switches to the TCB clocksource which runs at a higher rate. > I'd say that the proper solution would still be to implement the virtual > irqchip because this would still hit people not wanting to use the TCB as > their clock source. why wouldn't people not want that? For a virtual irqchip you would need a mask/unmask register in order to individual disable/enable the irq and you need something to figure out which one of the three is active. You don't have all those things, do you? > 3/ Finally, the kernel will crash when initializing the PMC driver. This is > solved by this series that will hopefully land in the mainline: > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-December/390954.html This is new, isn't it? So the series in currently in v3 and people seem happy with it. Please poke me once with the commit ids once it is merged on its way upstream and I will try cherry-pick them from next or so. All in all, care to forwarded the working pieces from -RT patch set upstream? I problem I have here is mostly that I can't the patches on actual hardware. Disabling the PIT and running on the other clocksource isn't that -RT specific after all :) Sebastian
[toc] | [prev] | [next] | [standalone]
| From | Alexandre Belloni <alexandre.belloni@free-electrons.com> |
|---|---|
| Date | 2016-01-18 20:30 +0100 |
| Message-ID | <qSnF0-566-19@gated-at.bofh.it> |
| In reply to | #1311722 |
Hi, On 18/01/2016 at 18:42:59 +0100, Sebastian Andrzej Siewior wrote : > > 1/ After apply the preempt-rt patch, the kernel doesn't build anymore, > > arm-at91-pit-remove-irq-handler-when-clock-is-unused.patch is not correct > > anymore. Can you squash the following patch to solve this build issue? > > I folded most of the changes and should be part of -rt3. > Thanks! > > 2/ This approach actually has more issues, in particular, request_irq() must > > not be calls from interrupt disabled context. That only works because > > might_sleep() is not active during early boot. > > For more information, see the following discussion: > > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-July/357607.html > > > > However, we can't remove those patches now because else we would suffer from > > another issue: > > The timer interrupt is shared with other devices, in particular the debug tty, > > the rtc dans the pmc. When using preempt-rt, those interrupts become threaded > > interrupts. But, the pit interrupt is requested with IRQF_TIMER and so has > > IRQF_NO_THREAD. If the pit interrupt is not freed at early boot, all the other > > devices will fail requesting their interrupt, for example: > > > >genirq: Flags mismatch irq 16. 00042080 (ttyS0) vs. 00015280 (at91_tick) > >atmel_usart ffffee00.serial: atmel_startup - Can't get irq > > I assumed the pit is just temporary here for the bootstap. The pit irq is > removed and the system switches to the TCB clocksource which runs at a > higher rate. > > > I'd say that the proper solution would still be to implement the virtual > > irqchip because this would still hit people not wanting to use the TCB as > > their clock source. > > why wouldn't people not want that? Because they may be using the TCBs for something else: PWM, frequency measure, quadrature decoder... > For a virtual irqchip you would need a mask/unmask register in order to > individual disable/enable the irq and you need something to figure out > which one of the three is active. You don't have all those things, do > you? > The proposed solution was software only. It mainly consisted in a simple irq demuxer. > > 3/ Finally, the kernel will crash when initializing the PMC driver. This is > > solved by this series that will hopefully land in the mainline: > > http://lists.infradead.org/pipermail/linux-arm-kernel/2015-December/390954.html > > This is new, isn't it? So the series in currently in v3 and people seem > happy with it. Please poke me once with the commit ids once it is merged > on its way upstream and I will try cherry-pick them from next or so. > I added that part mainly to inform people were to look to get preemt-rt working on at91. No action on your side for that one yet. > All in all, care to forwarded the working pieces from -RT patch set > upstream? I problem I have here is mostly that I can't the patches on > actual hardware. Disabling the PIT and running on the other clocksource > isn't that -RT specific after all :) I'd say that the only remaining part is the IRQ freeing/requesting but as I said, this can't land in mainline as is. I still plan to work on that later. I'd say that most people running linux on at91 are already using the tcb as the clocksource, this is already available in the mainline and is the default unless the TCBs are used for something else. If you are willing to test, I'm pretty sure we can convince Nicolas to send you a board. Unfortunately, the main issues appear on old products, not on sama5. -- Alexandre Belloni, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Sebastian Andrzej Siewior <bigeasy@linutronix.de> |
|---|---|
| Date | 2016-01-18 21:40 +0100 |
| Message-ID | <qSoKL-5M1-23@gated-at.bofh.it> |
| In reply to | #1311764 |
On 01/18/2016 08:23 PM, Alexandre Belloni wrote: > Hi, Hi, >>> I'd say that the proper solution would still be to implement the virtual >>> irqchip because this would still hit people not wanting to use the TCB as >>> their clock source. >> >> why wouldn't people not want that? > > Because they may be using the TCBs for something else: PWM, frequency > measure, quadrature decoder... Oh okay. >> For a virtual irqchip you would need a mask/unmask register in order to >> individual disable/enable the irq and you need something to figure out >> which one of the three is active. You don't have all those things, do >> you? >> > > The proposed solution was software only. It mainly consisted in a simple > irq demuxer. Well, if it works properly and does not lead to any new bugs or anything else then nobody will mind I guess. >> All in all, care to forwarded the working pieces from -RT patch set >> upstream? I problem I have here is mostly that I can't the patches on >> actual hardware. Disabling the PIT and running on the other clocksource >> isn't that -RT specific after all :) > > I'd say that the only remaining part is the IRQ freeing/requesting but > as I said, this can't land in mainline as is. I still plan to work on > that later. > I'd say that most people running linux on at91 are already using the tcb > as the clocksource, this is already available in the mainline and is the > default unless the TCBs are used for something else. Wasn't there one of the patches to increase the frequency of the TCB clocksource from the default to something higher? Sebastian
[toc] | [prev] | [next] | [standalone]
| From | Alexandre Belloni <alexandre.belloni@free-electrons.com> |
|---|---|
| Date | 2016-01-19 02:10 +0100 |
| Message-ID | <qSsY2-sr-13@gated-at.bofh.it> |
| In reply to | #1311800 |
On 18/01/2016 at 21:30:13 +0100, Sebastian Andrzej Siewior wrote : > Well, if it works properly and does not lead to any new bugs or > anything else then nobody will mind I guess. > Yeah, the DT guys were not happy about the patch set, I'll try to work around using DT ;) > >> All in all, care to forwarded the working pieces from -RT patch set > >> upstream? I problem I have here is mostly that I can't the patches on > >> actual hardware. Disabling the PIT and running on the other clocksource > >> isn't that -RT specific after all :) > > > > I'd say that the only remaining part is the IRQ freeing/requesting but > > as I said, this can't land in mainline as is. I still plan to work on > > that later. > > I'd say that most people running linux on at91 are already using the tcb > > as the clocksource, this is already available in the mainline and is the > > default unless the TCBs are used for something else. > > Wasn't there one of the patches to increase the frequency of the TCB > clocksource from the default to something higher? > Indeed, it may be worth mainlining that one. -- Alexandre Belloni, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web