Re: Fwd: [PATCH 1/2] score: Add and use Watchdog_Clock for clock types.

2016-06-20 Thread Sebastian Huber
On 16/06/16 08:09, Sebastian Huber wrote: diff --git a/cpukit/score/include/rtems/score/threadqimpl.h b/cpukit/score/include/rtems/score/threadqimpl.h index 73d4de2..f59a334 100644 --- a/cpukit/score/include/rtems/score/threadqimpl.h +++ b/cpukit/score/include/rtems/score/threadqimpl.h @@ -349,

Re: ARM SMP Clock driver errors

2016-06-20 Thread Sebastian Huber
On 20/06/16 15:40, Darshit Shah wrote: Hi, Last week the clock driver for SMP ARM BSPs was fixed which allowed me to start executing the SMP tests for my GSoC project. However, today I seem to be stuck with a clock driver issue again. When I try to execute SMP tests, the tests exit with no

Re: LibBSD nexus bus IRQ unique or shared?

2016-06-20 Thread Sebastian Huber
On 21/06/16 03:43, Chris Johns wrote: Hi, Currently the LibBSD nexus bus passes the unique option to the interrupt server when attaching a fast interrupt and I have a PC (Beckhoff CX2030) where sharing interrupts gets me past a configuration where NIC irqs are the same. Is there any reason

Re: [PATCH v2 0/4] TMS570 pinmux support and pin definitions update

2016-06-20 Thread Gedare Bloom
Looks reasonable to me. On Mon, Jun 20, 2016 at 3:52 PM, wrote: > From: Pavel Pisa > > These enhancements are laying already for long term in TMS570 > development branch for RTEMS 4.11 and they should be > available for mainline as well. > > https://github.com/AoLaD/rtems/tree/tms570-bsp-with

LibBSD nexus bus IRQ unique or shared?

2016-06-20 Thread Chris Johns
Hi, Currently the LibBSD nexus bus passes the unique option to the interrupt server when attaching a fast interrupt and I have a PC (Beckhoff CX2030) where sharing interrupts gets me past a configuration where NIC irqs are the same. Is there any reason unique is being used? Can this be chang

[PATCH] Adding functionalities to Mailbox RPi

2016-06-20 Thread Mudit Jain
From: muditj Added functions for retrieving firmware revision, board model and board revision. --- c/src/lib/libbsp/arm/raspberrypi/include/vc.h | 19 +++ c/src/lib/libbsp/arm/raspberrypi/misc/vc.c | 60 ++ c/src/lib/libbsp/arm/raspberrypi/misc/vc_defines.h |

[PATCH v2 1/4] bsp/tms570: include package balls and PINMMR registers mapping for TMS570LS3135ZWT chip.

2016-06-20 Thread pisa
From: Pavel Pisa --- c/src/lib/libbsp/arm/tms570/include/tms570-pins.h | 10 + .../arm/tms570/include/tms570ls3137zwt-pins.h | 690 + 2 files changed, 700 insertions(+) create mode 100644 c/src/lib/libbsp/arm/tms570/include/tms570-pins.h create mode 100644 c/src/lib/

[PATCH v2 2/4] bsp/tms570: update pinmux to provide support for initialization lists and clear of alt outputs.

2016-06-20 Thread pisa
From: Pavel Pisa --- c/src/lib/libbsp/arm/tms570/Makefile.am| 3 + .../lib/libbsp/arm/tms570/include/tms570-pinmux.h | 136 +++-- c/src/lib/libbsp/arm/tms570/include/tms570.h | 3 + c/src/lib/libbsp/arm/tms570/pinmux/pinmux.c| 123 ++

[PATCH v2 4/4] bsp/tms570: regenerate preinstall makefile by bootstrap -p.

2016-06-20 Thread pisa
From: Pavel Pisa --- c/src/lib/libbsp/arm/tms570/preinstall.am | 8 1 file changed, 8 insertions(+) diff --git a/c/src/lib/libbsp/arm/tms570/preinstall.am b/c/src/lib/libbsp/arm/tms570/preinstall.am index 2fddba8..be8e42e 100644 --- a/c/src/lib/libbsp/arm/tms570/preinstall.am +++ b/c/

[PATCH v2 0/4] TMS570 pinmux support and pin definitions update

2016-06-20 Thread pisa
From: Pavel Pisa These enhancements are laying already for long term in TMS570 development branch for RTEMS 4.11 and they should be available for mainline as well. https://github.com/AoLaD/rtems/tree/tms570-bsp-with-hwinit The main purpose of these changes is attempt to archive small but requ

[PATCH v2 3/4] bsp/tms570: include complete peripheral initialization to SCI driver.

2016-06-20 Thread pisa
From: Pavel Pisa Signed-off-by: Pavel Pisa --- c/src/lib/libbsp/arm/tms570/console/tms570-sci.c | 38 ++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/c/src/lib/libbsp/arm/tms570/console/tms570-sci.c b/c/src/lib/libbsp/arm/tms570/console/tms570-sci.c inde

Re: [PATCH 07/16] posix: Make POSIX API aware of scheduler instances

2016-06-20 Thread Gedare Bloom
On Fri, Jun 17, 2016 at 6:51 AM, Sebastian Huber wrote: > --- > cpukit/posix/include/rtems/posix/priorityimpl.h | 82 > ++--- > cpukit/posix/src/mutexgetprioceiling.c | 1 + > cpukit/posix/src/mutexinit.c| 5 +- > cpukit/posix/src/mutexsetprioce

Re: Adding functionalities to Mailbox RPi

2016-06-20 Thread Pavel Pisa
Hello Mudit, On Monday 20 of June 2016 15:59:16 Mudit Jain wrote: > Hi, > > I have added functionality to retrieve the firmware version, board model > number and board revision to the mail box code. This was one of the > deliverables of my project. > > Github Link : > https://github.com/spark1729/

Re: testing pc386 with qemu?

2016-06-20 Thread Gedare Bloom
Thanks Pavel. The following minimally seems to work: qemu-system-i386 -kernel hello.exe -append "--console=/dev/com1" -serial stdio On Sun, Jun 19, 2016 at 8:34 PM, Pavel Pisa wrote: > Hello Chris, > > On Monday 20 of June 2016 01:58:09 Chris Johns wrote: >> On 20/06/2016 09:08, Joel Sherrill w

Adding functionalities to Mailbox RPi

2016-06-20 Thread Mudit Jain
Hi, I have added functionality to retrieve the firmware version, board model number and board revision to the mail box code. This was one of the deliverables of my project. Github Link : https://github.com/spark1729/rtems/commit/796231efc7b0f6dd1adce67f21615689a1b0224b This is in accordance with

ARM SMP Clock driver errors

2016-06-20 Thread Darshit Shah
Hi, Last week the clock driver for SMP ARM BSPs was fixed which allowed me to start executing the SMP tests for my GSoC project. However, today I seem to be stuck with a clock driver issue again. When I try to execute SMP tests, the tests exit with no output and a exit code of 0. On trying t

Re: Raspberry pi not working with latest compiler and rtems-git

2016-06-20 Thread Alan Cudmore
Hi Pavel, Thanks for the updates. I will give your branch a try. Regards, Alan On Sun, Jun 19, 2016 at 11:08 AM, Pavel Pisa wrote: > Hello Alan, > > On Friday 17 of June 2016 19:04:58 Alan Cudmore wrote: > > I refreshed my RSB build and pulled the latest rtems git changes. ( as of > > today )

New class "RTEMS Application Development" in Munich/Germany, 18.-20. October 2016

2016-06-20 Thread Thomas Doerfler
Hello, we are currently planning an open RTEMS class "RTEMS Application Development" in Munich/Germany to start on October 18th, 2016. This class has is main focus on application development based on the RTEMS kernel. Maybe you or some of your colleagues like to join in? See our