Re: SMP support for Raspberry Pi 2

2015-07-19 Thread Sebastian Huber
On 19/07/15 09:52, Rohini Kulkarni wrote: Do I have to just run the smp tests executables bare metal? You should run the SMP tests like all the other tests. RTEMS kernel image runs fine, but the smp01 executable that I tried produces no output at all. In case for example ticker.exe runs,

[PATCH 1/2] score: Introduce Thread_queue_Queue

2015-07-19 Thread Sebastian Huber
Separate the thread queue heads and lock from the operations. This enables the support for light weight objects which only support one queueing discipline. --- cpukit/posix/src/killinfo.c| 2 +- cpukit/posix/src/sigtimedwait.c| 3 +- cpukit/score/include/rt

[PATCH 2/2] score: Introduce Thread_queue_Heads

2015-07-19 Thread Sebastian Huber
Move the storage for the thread queue heads to the threads. Each thread provides a set of thread queue heads allocated from a dedicated memory pool. In case a thread blocks on a queue, then it lends its heads to the queue. In case the thread unblocks, then it takes a free set of threads from the

Re: [rtems-source-builder commit] rtems4.11: OpenMP support for ARM, PowerPC, SPARC

2015-07-19 Thread Sebastian Huber
On 19/07/15 01:57, Chris Johns wrote: On 18/07/2015 11:38 pm, Sebastian Huber wrote: - Chris Johns schrieb: On 18/07/2015 1:20 am, Joel Sherril wrote: diff --git a/rtems/config/4.11/rtems-arm.bset b/rtems/config/4.11/rtems-arm.bset index 1e06796..c0bd04a 100644 --- a/rtems/config/4.11/r

Re: [RSB] port graphic libraries into rsb

2015-07-19 Thread Chris Johns
On 20/07/2015 6:55 am, QIAO YANG wrote: > > I've ported the graphic libraries into rsb so that we can build them > much easier. All Build passed, tested on arm with raspberrypi and i386 > with pc386. > Fantastic and thank you. > the libraries can be built with the command like: > > ../source

[RSB] port graphic libraries into rsb

2015-07-19 Thread QIAO YANG
Hi, I've ported the graphic libraries into rsb so that we can build them much easier. All Build passed, tested on arm with raspberrypi and i386 with pc386. the libraries can be built with the command like: ../source-builder/sb-set-builder \ --log=graphic-build-log.txt \ --prefix=$HOME/d

[PATCH 6/6] RSB: add nxlib bset

2015-07-19 Thread QIAO YANG
--- rtems/config/4.11/graphics/nxlib.bset | 20 ++ rtems/config/graphics/nxlib-0.47-dev-1.cfg | 19 + source-builder/config/nxlib-1.cfg | 62 ++ 3 files changed, 101 insertions(+) create mode 100644 rtems/config/4.11/graphics/nxlib.bset create

[PATCH 5/6] RSB: add nanoX bset

2015-07-19 Thread QIAO YANG
--- rtems/config/4.11/graphics/microwindows.bset | 20 +++ rtems/config/graphics/microwindows-0.93-dev-1.cfg | 19 ++ source-builder/config/microwindows-1.cfg | 71 +++ 3 files changed, 110 insertions(+) create mode 100644 rtems/config/4.11/graphics/microwind

[PATCH 4/6] RSB: add t1lib bset (patch url should be changed after it is merged into rtems git server)

2015-07-19 Thread QIAO YANG
--- rtems/config/4.11/graphics/t1lib.bset | 20 ++ rtems/config/graphics/t1lib-5.1.2-1.cfg | 21 ++ source-builder/config/t1lib-1.cfg | 69 + 3 files changed, 110 insertions(+) create mode 100644 rtems/config/4.11/graphics/t1lib.bset create mode

[PATCH 3/6] RSB: add freetype2 bset

2015-07-19 Thread QIAO YANG
--- rtems/config/4.11/graphics/freetype2.bset | 20 ++ rtems/config/graphics/freetype-2.4.10-1.cfg | 21 ++ source-builder/config/freetype-1.cfg| 62 + 3 files changed, 103 insertions(+) create mode 100644 rtems/config/4.11/graphics/freetype2.bset

[PATCH 2/6] RSB: add tiff-4.0.2 bset

2015-07-19 Thread QIAO YANG
 --- rtems/config/4.11/graphics/libtiff.bset | 20 ++ rtems/config/graphics/libtiff-4.0.2-1.cfg | 21 +++ source-builder/config/libtiff-1.cfg | 62 +++ 3 files changed, 103 insertions(+) create mode 100644 rtems/config/4.11/graphics/libtiff.bset cr

[PATCH 1/6] RSB : add libpng bset

2015-07-19 Thread QIAO YANG
rtems/config/4.11/graphics/libpng.bset| 20 ++ rtems/config/graphics/libpng-1.5.22-1.cfg | 22 +++ source-builder/config/libpng-1.cfg| 63 +++ 3 files changed, 105 insertions(+) create mode 100644 rtems/config/4.11/graphics/libpng.bset create m

Re: RTEMS GPIO API interrupt handling

2015-07-19 Thread Joel Sherrill
On July 19, 2015 5:24:25 AM CDT, "André Marques" wrote: >On 18-07-2015 20:04, Joel Sherrill wrote: >> On July 18, 2015 1:23:13 PM CDT, "André >Marques" wrote: >>> Hello all, >>> >>> as previously pointed by Gedare, the interrupt handling code in the >>> RTEMS GPIO API can benefit with the use

Re: RTEMS GPIO API interrupt handling

2015-07-19 Thread André Marques
On 18-07-2015 20:04, Joel Sherrill wrote: On July 18, 2015 1:23:13 PM CDT, "André Marques" wrote: Hello all, as previously pointed by Gedare, the interrupt handling code in the RTEMS GPIO API can benefit with the use of a rtems interrupt server. The current design and implementation details o