Re: Attempt to get rid of -qrtems

2019-06-30 Thread Sebastian Huber
On 01/07/2019 02:41, Joel Sherrill wrote: On Sun, Jun 30, 2019, 7:09 PM Chris Johns > wrote: On 28/6/19 6:02 pm, Sebastian Huber wrote: > On 28/06/2019 01:37, Chris Johns wrote: >> On 27/6/19 10:08 pm, Sebastian Huber wrote: >>> I would like to get

Re: Attempt to get rid of -qrtems

2019-06-30 Thread Joel Sherrill
On Sun, Jun 30, 2019, 7:09 PM Chris Johns wrote: > On 28/6/19 6:02 pm, Sebastian Huber wrote: > > On 28/06/2019 01:37, Chris Johns wrote: > >> On 27/6/19 10:08 pm, Sebastian Huber wrote: > >>> I would like to get rid of the -qrtems command for normal RTEMS > applications. > >> I do not think you

Re: Attempt to get rid of -qrtems

2019-06-30 Thread Chris Johns
On 28/6/19 6:02 pm, Sebastian Huber wrote: > On 28/06/2019 01:37, Chris Johns wrote: >> On 27/6/19 10:08 pm, Sebastian Huber wrote: >>> I would like to get rid of the -qrtems command for normal RTEMS >>> applications. >> I do not think you can remove -qrtems as it will break all existing

Re: [PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 21:38, Vijay Kumar Banerjee wrote: > > > > On Mon, Jul 1, 2019 at 12:46 AM Christian Mauderer > wrote: > > On 30/06/2019 19:57, Vijay Kumar Banerjee wrote: > > > > On Sun, Jun 30, 2019 at 10:17 PM Christian Mauderer >

Re: [PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
On Mon, Jul 1, 2019 at 12:46 AM Christian Mauderer wrote: > On 30/06/2019 19:57, Vijay Kumar Banerjee wrote: > > > > On Sun, Jun 30, 2019 at 10:17 PM Christian Mauderer > > wrote: > > > > On 30/06/2019 18:29, Vijay Kumar Banerjee wrote: > > > > @@ -366,6

Re: [PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 19:57, Vijay Kumar Banerjee wrote: > > On Sun, Jun 30, 2019 at 10:17 PM Christian Mauderer > wrote: > > On 30/06/2019 18:29, Vijay Kumar Banerjee wrote: > >     > @@ -366,6 +374,9 @@ driver_t fbd_driver = { > >     >  devclass_t   

Re: [PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
On Sun, Jun 30, 2019 at 10:17 PM Christian Mauderer wrote: > On 30/06/2019 18:29, Vijay Kumar Banerjee wrote: > > > @@ -366,6 +374,9 @@ driver_t fbd_driver = { > > > devclass_t fbd_devclass; > > > > > > DRIVER_MODULE(fbd, fb, fbd_driver, fbd_devclass, 0, 0); > > > +#ifdef

Re: [PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 18:29, Vijay Kumar Banerjee wrote: > > @@ -366,6 +374,9 @@ driver_t fbd_driver = { > >  devclass_t   fbd_devclass; > >  > >  DRIVER_MODULE(fbd, fb, fbd_driver, fbd_devclass, 0, 0); > > +#ifdef __rtems__ > > +DRIVER_MODULE(fbd, am335x_lcd, fbd_driver,

Re: [PATCH 4/6] am335x display drivers: Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 18:26, Vijay Kumar Banerjee wrote: > > @@ -799,6 +799,14 @@ class display(builder.Module): > >                  'sys/dev/videomode/ediddevs.h', > >                  'sys/dev/videomode/ediddevs_data.h', > >                  'sys/dev/videomode/vesagtf.h', > > +     

Re: [PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
On Sun, Jun 30, 2019 at 9:35 PM Christian Mauderer wrote: > On 30/06/2019 17:29, Vijay Kumar Banerjee wrote: > > --- > > freebsd/sys/dev/fb/fbd.c | 11 ++ > > libbsd.py | 4 +++ > > rtemsbsd/include/bsp/nexus-devices.h | 1

Re: [PATCH 2/6] TDA19988 : Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 18:24, Vijay Kumar Banerjee wrote: > > > On Sun, Jun 30, 2019 at 9:18 PM Christian Mauderer > wrote: > > On 30/06/2019 17:29, Vijay Kumar Banerjee wrote: > > --- > >  Makefile.todo                                 | 27 ++ > > 

Re: [PATCH 4/6] am335x display drivers: Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
On Sun, Jun 30, 2019 at 9:21 PM Christian Mauderer wrote: > On 30/06/2019 17:29, Vijay Kumar Banerjee wrote: > > --- > > Makefile.todo | 13 ++ > > libbsd.py | 12 + > > rtemsbsd/include/bsp/nexus-devices.h |

Re: [PATCH 2/6] TDA19988 : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
On Sun, Jun 30, 2019 at 9:18 PM Christian Mauderer wrote: > On 30/06/2019 17:29, Vijay Kumar Banerjee wrote: > > --- > > Makefile.todo | 27 ++ > > buildset/default.ini | 1 + > > libbsd.py | 46

Re: BBB Framebuffer : Project status and what's next.

2019-06-30 Thread Christian Mauderer
On 30/06/2019 17:59, Vijay Kumar Banerjee wrote: > Hello everyone, > > I'm happy to state that with the following patchset, I now have > the Framebuffer device (/dev/fb0) created in Beaglebone Black > and I have tested it in the Hardware with BBB RevC. > > From here, the next steps would

Re: [PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 17:29, Vijay Kumar Banerjee wrote: > --- > freebsd/sys/dev/fb/fbd.c | 11 ++ > libbsd.py | 4 +++ > rtemsbsd/include/bsp/nexus-devices.h | 1 + > .../machine/rtems-bsd-kernel-namespace.h | 35

BBB Framebuffer : Project status and what's next.

2019-06-30 Thread Vijay Kumar Banerjee
Hello everyone, I'm happy to state that with the following patchset, I now have the Framebuffer device (/dev/fb0) created in Beaglebone Black and I have tested it in the Hardware with BBB RevC. >From here, the next steps would definitely be to find a way to write and read from the framebuffer

Re: [PATCH 4/6] am335x display drivers: Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 17:29, Vijay Kumar Banerjee wrote: > --- > Makefile.todo | 13 ++ > libbsd.py | 12 + > rtemsbsd/include/bsp/nexus-devices.h | 2 + > .../machine/rtems-bsd-kernel-namespace.h | 2 + >

Re: [PATCH 2/6] TDA19988 : Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 17:29, Vijay Kumar Banerjee wrote: > --- > Makefile.todo | 27 ++ > buildset/default.ini | 1 + > libbsd.py | 46 ++ > rtemsbsd/include/bsp/nexus-devices.h | 1 + >

Re: [PATCH 2/6] TDA19988 : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
On Sun, Jun 30, 2019 at 9:08 PM Christian Mauderer wrote: > On 30/06/2019 17:33, Vijay Kumar Banerjee wrote: > > The following patchset has only the port commits, the commits to import > > are pushed to Github and the links are as follows: > > [PATCH 1/6] > > : >

Re: [PATCH 2/6] TDA19988 : Port to RTEMS

2019-06-30 Thread Christian Mauderer
On 30/06/2019 17:33, Vijay Kumar Banerjee wrote: > The following patchset has only the port commits, the commits to import > are pushed to Github and the links are as follows: > [PATCH 1/6] > :  > https://github.com/thelunatic/rtems-libbsd/commit/fa8900b30f5b41611ddc16e5b386a6b8b443675a > [PATCH

Re: [PATCH 2/6] TDA19988 : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
The following patchset has only the port commits, the commits to import are pushed to Github and the links are as follows: [PATCH 1/6] : https://github.com/thelunatic/rtems-libbsd/commit/fa8900b30f5b41611ddc16e5b386a6b8b443675a [PATCH 3/6] :

[PATCH 4/6] am335x display drivers: Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
--- Makefile.todo | 13 ++ libbsd.py | 12 + rtemsbsd/include/bsp/nexus-devices.h | 2 + .../machine/rtems-bsd-kernel-namespace.h | 2 + rtemsbsd/include/rtems/bsd/local/fb_if.h | 45

[PATCH 6/6] fbd : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
--- freebsd/sys/dev/fb/fbd.c | 11 ++ libbsd.py | 4 +++ rtemsbsd/include/bsp/nexus-devices.h | 1 + .../machine/rtems-bsd-kernel-namespace.h | 35 +++ rtemsbsd/include/rtems/bsd/local/opt_fb.h | 0

[PATCH 2/6] TDA19988 : Port to RTEMS

2019-06-30 Thread Vijay Kumar Banerjee
--- Makefile.todo | 27 ++ buildset/default.ini | 1 + libbsd.py | 46 ++ rtemsbsd/include/bsp/nexus-devices.h | 1 + .../machine/rtems-bsd-kernel-namespace.h | 65