Re: About Beaglebone Black device tree

2020-02-10 Thread Christian Mauderer
On 09/02/2020 23:56, Chris Johns wrote: > On 9/2/20 9:33 pm, Christian Mauderer wrote: >> On 07/02/2020 18:23, Vijay Kumar Banerjee wrote: >> On Mon, Feb 3, 2020 at 7:21 PM Christian Mauderer >>> >> > wrote: >>> On 02/02/2020 18:34, Vijay Kumar Bane

Re: About Beaglebone Black device tree

2020-02-10 Thread Chris Johns
On 2020-02-10 19:18, Christian Mauderer wrote: Hello Chris, thanks for your input. I'm still not entirely happy with the location too. But I also don't know a better one. Currently I know of the following necessary cases: - Build a dtb from FreeBSD sources (or some other source). - Build an o

[PATCH] c-user: Document CONFIGURE_DIRTY_MEMORY

2020-02-10 Thread Sebastian Huber
Close #3843. --- c-user/configuring_a_system.rst | 36 +++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/c-user/configuring_a_system.rst b/c-user/configuring_a_system.rst index 81bc9bb..00584c1 100644 --- a/c-user/configuring_a_system.rst +++ b/c-us

[PATCH 4/7] bsp/imx: Use muxed mode for serials.

2020-02-10 Thread Christian Mauderer
Update #3869. --- bsps/arm/imx/console/console-config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bsps/arm/imx/console/console-config.c b/bsps/arm/imx/console/console-config.c index 04bec993ae..caebc6bc39 100644 --- a/bsps/arm/imx/console/console-config.c +++ b/bsps/arm/imx/console/cons

[PATCH 7/7] bsp/imx: Parse fdt pinctrl values and setup iomux

2020-02-10 Thread Christian Mauderer
Update #3869. --- bsps/arm/imx/start/imx_iomux.c | 44 ++ 1 file changed, 44 insertions(+) diff --git a/bsps/arm/imx/start/imx_iomux.c b/bsps/arm/imx/start/imx_iomux.c index f6235d3cf4..d97e35deef 100644 --- a/bsps/arm/imx/start/imx_iomux.c +++ b/bsps/arm/i

[PATCH 1/7] bsp/imx: Avoid hard-coded GIC base address

2020-02-10 Thread Christian Mauderer
From: Sebastian Huber Update #3869. --- bsps/arm/imx/include/bsp.h| 6 -- bsps/arm/imx/start/bspstart.c | 11 +++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/bsps/arm/imx/include/bsp.h b/bsps/arm/imx/include/bsp.h index 4ed35c68fe..134b3fd858 100644 --- a/bsp

[PATCH 0/7] bsp/imx: Add support for i.MX6UL

2020-02-10 Thread Christian Mauderer
Hello, this is a first patch set to allow the imx-BSP to support i.MX6UL as well as i.MX7. Note that the support isn't complete yet. But Peter want's to work on the BSP too and therefore I try to commit them early so that we don't have double work and merge conflicts. Best regards Christian ___

[PATCH 6/7] bsp/imx: Support imx6ul iomux.

2020-02-10 Thread Christian Mauderer
Update #3869. --- bsps/arm/imx/start/imx_iomux.c | 4 1 file changed, 4 insertions(+) diff --git a/bsps/arm/imx/start/imx_iomux.c b/bsps/arm/imx/start/imx_iomux.c index cd4591fa6f..f6235d3cf4 100644 --- a/bsps/arm/imx/start/imx_iomux.c +++ b/bsps/arm/imx/start/imx_iomux.c @@ -118,6 +118,10 @

[PATCH 2/7] bsp/imx: Allow GIC in different device tree node.

2020-02-10 Thread Christian Mauderer
Update #3869. --- bsps/arm/imx/start/bspstart.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsps/arm/imx/start/bspstart.c b/bsps/arm/imx/start/bspstart.c index 3a87c437d2..36f62993a6 100644 --- a/bsps/arm/imx/start/bspstart.c +++ b/bsps/arm/imx/start/bspstart.c @@ -89,6 +89,9 @@ static

[PATCH 5/7] bsp/imx: Allow gapless SPI transfers.

2020-02-10 Thread Christian Mauderer
This uses the tx-threshold to reduce gaps in SPI transmissions. Update #3869. --- bsps/arm/imx/spi/imx-ecspi.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bsps/arm/imx/spi/imx-ecspi.c b/bsps/arm/imx/spi/imx-ecspi.c index 9a232c53e9..4c4978cdac 100644 --- a/bsps/arm/i

[PATCH 3/7] bsp/imx: Increase device memory area

2020-02-10 Thread Christian Mauderer
From: Sebastian Huber The new area is used by the i.MX 6UltraLite for example. Update #3869. --- bsps/arm/imx/start/bspstarthooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsps/arm/imx/start/bspstarthooks.c b/bsps/arm/imx/start/bspstarthooks.c index 868da5a192..d353

Re: About Beaglebone Black device tree

2020-02-10 Thread Christian Mauderer
On 10/02/2020 10:24, Chris Johns wrote: > On 2020-02-10 19:18, Christian Mauderer wrote: >> >> Hello Chris, >> >> thanks for your input. I'm still not entirely happy with the location >> too. But I also don't know a better one. Currently I know of the >> following necessary cases: >> >> - Build a d

Re: [PATCH v3 0/3] [rtems-libbsd] Fix compilation fo i386

2020-02-10 Thread Sebastian Huber
Hello Jan, thanks for the patch set. I checked it in with some white space corrections. It is important to not change white space in the original FreeBSD code to avoid merge conflicts during updates. ___ devel mailing list devel@rtems.org http://lis

Re: About Beaglebone Black device tree

2020-02-10 Thread Vijay Kumar Banerjee
On Sun, Feb 9, 2020 at 4:03 PM Christian Mauderer wrote: > > > Hi! > > > > I looked into it in more detail, the issue isn't with the overlay, I > > verified it > > using u-boot fdt tool as well. Looks like the base dts file is producing > > a lot > > of "target-module" and during startup, the dri

Re: About Beaglebone Black device tree

2020-02-10 Thread Christian Mauderer
On 10/02/2020 10:58, Vijay Kumar Banerjee wrote: > On Sun, Feb 9, 2020 at 4:03 PM Christian Mauderer > wrote: > > > > Hi! > > > > I looked into it in more detail, the issue isn't with the overlay, I > > verified it > > using u-boot fdt tool as well.

Re: Watch Solar Orbiter Launch

2020-02-10 Thread Gedare Bloom
Maybe ask on users@ On Sun, Feb 9, 2020 at 9:44 PM Joel Sherrill wrote: > > And it looks like the launch went well. Let's keep an eye on the mission. > > Still hoping for more information on it. > > --joel > > On Sun, Feb 9, 2020, 9:17 PM Vaibhav Gupta wrote: >> >> This is very exciting! >> >> -

Re: [PATCH 0/7] bsp/imx: Add support for i.MX6UL

2020-02-10 Thread dufault
> On Feb 10, 2020, at 04:35 , Christian Mauderer > wrote: > > Hello, > > this is a first patch set to allow the imx-BSP to support i.MX6UL as > well as i.MX7. Note that the support isn't complete yet. But Peter > want's to work on the BSP too and therefore I try to commit them early > so tha

Re: [PATCH] c-user: Document CONFIGURE_DIRTY_MEMORY

2020-02-10 Thread Gedare Bloom
Looks good, thank you On Mon, Feb 10, 2020 at 2:32 AM Sebastian Huber wrote: > > Close #3843. > --- > c-user/configuring_a_system.rst | 36 +++- > 1 file changed, 35 insertions(+), 1 deletion(-) > > diff --git a/c-user/configuring_a_system.rst b/c-user/configuring

Re: [PATCH 1/2] eng: Document test framework formatted output

2020-02-10 Thread Gedare Bloom
On Sun, Feb 9, 2020 at 3:20 AM Sebastian Huber wrote: > > Update #3199. > --- > eng/test-framework.rst | 30 +++--- > 1 file changed, 23 insertions(+), 7 deletions(-) > > diff --git a/eng/test-framework.rst b/eng/test-framework.rst > index 50745df..6380f7e 100644 > --- a/e

Re: [PATCH 0/7] bsp/imx: Add support for i.MX6UL

2020-02-10 Thread Gedare Bloom
It's all in bsps*imx. Go ahead. On Mon, Feb 10, 2020 at 2:35 AM Christian Mauderer wrote: > > Hello, > > this is a first patch set to allow the imx-BSP to support i.MX6UL as > well as i.MX7. Note that the support isn't complete yet. But Peter > want's to work on the BSP too and therefore I try to

Re: [PATCH 1/2] eng: Document test framework formatted output

2020-02-10 Thread Sebastian Huber
Hello Gedare, On 10/02/2020 13:39, Gedare Bloom wrote: +In contrast to the corresponding standard C library functions, floating-point +and exotic formats may be not supported. On some architectures supported by Minor English grammar: "may not be" is the correct way to express the possibility s

Re: About Beaglebone Black device tree

2020-02-10 Thread Vijay Kumar Banerjee
On Mon, Feb 10, 2020 at 5:21 PM Christian Mauderer < christian.maude...@embedded-brains.de> wrote: > On 10/02/2020 10:58, Vijay Kumar Banerjee wrote: > > On Sun, Feb 9, 2020 at 4:03 PM Christian Mauderer > > wrote: > > > > > > > Hi! > > > > > > I looked into

Re: About Beaglebone Black device tree

2020-02-10 Thread Vijay Kumar Banerjee
On Mon, Feb 10, 2020 at 9:43 PM Vijay Kumar Banerjee < vijaykumar9...@gmail.com> wrote: > > > On Mon, Feb 10, 2020 at 5:21 PM Christian Mauderer < > christian.maude...@embedded-brains.de> wrote: > >> On 10/02/2020 10:58, Vijay Kumar Banerjee wrote: >> > On Sun, Feb 9, 2020 at 4:03 PM Christian Mau

Re: [rtems-docs PATCH v2] user/testing: Add coverage analysis instructions

2020-02-10 Thread Christian Mauderer
On 07/02/2020 18:29, Vijay Kumar Banerjee wrote: > > > > On Tue, Feb 4, 2020 at 5:41 AM Chris Johns > wrote: > > On 4/2/20 10:26 am, Gedare Bloom wrote: > > looks OK to me. > > +1 from me. > > Thanks > Chris > > > Thanks for the reviews! Can you

[PATCH 1/2] rtems/5: Update to gdb-9.1

2020-02-10 Thread chrisj
From: Chris Johns - This version fixes build issues on Windows (MinGW64) --- rtems/config/5/rtems-default.bset | 2 +- rtems/config/tools/rtems-gdb-9.1-1.cfg | 12 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 rtems/config/tools/rtems-gdb-9.1-1.cfg diff

[PATCH 2/2] windows: Use GNU tar to unpack source

2020-02-10 Thread chrisj
From: Chris Johns - The bsdtar command does not handle symlinks cleanly, GNU tar does Closes #3868 --- source-builder/sb/windows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source-builder/sb/windows.py b/source-builder/sb/windows.py index 199a6b8..1eb51a0 100644 --- a

Re: [PATCH 0/7] bsp/imx: Add support for i.MX6UL

2020-02-10 Thread Chris Johns
On 10/2/20 11:45 pm, Gedare Bloom wrote: > It's all in bsps*imx. Go ahead. +1 > > On Mon, Feb 10, 2020 at 2:35 AM Christian Mauderer > wrote: >> >> Hello, >> >> this is a first patch set to allow the imx-BSP to support i.MX6UL as >> well as i.MX7. Note that the support isn't complete yet. But P

Re: [PATCH] c-user: Document CONFIGURE_DIRTY_MEMORY

2020-02-10 Thread Chris Johns
On 10/2/20 8:32 pm, Sebastian Huber wrote: > Close #3843. > --- > c-user/configuring_a_system.rst | 36 +++- > 1 file changed, 35 insertions(+), 1 deletion(-) > > diff --git a/c-user/configuring_a_system.rst b/c-user/configuring_a_system.rst > index 81bc9bb..005

Re: [PATCH] c-user: Document CONFIGURE_DIRTY_MEMORY

2020-02-10 Thread Gedare Bloom
On Mon, Feb 10, 2020 at 2:14 PM Chris Johns wrote: > > > > On 10/2/20 8:32 pm, Sebastian Huber wrote: > > Close #3843. > > --- > > c-user/configuring_a_system.rst | 36 +++- > > 1 file changed, 35 insertions(+), 1 deletion(-) > > > > diff --git a/c-user/configuring

Re: [PATCH] c-user: Document CONFIGURE_DIRTY_MEMORY

2020-02-10 Thread Sebastian Huber
On 10/02/2020 22:30, Gedare Bloom wrote: On Mon, Feb 10, 2020 at 2:14 PM Chris Johns wrote: On 10/2/20 8:32 pm, Sebastian Huber wrote: Close #3843. --- c-user/configuring_a_system.rst | 36 +++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a

Re: [PATCH] c-user: Document CONFIGURE_DIRTY_MEMORY

2020-02-10 Thread Chris Johns
On 11/2/20 4:57 pm, Sebastian Huber wrote: > On 10/02/2020 22:30, Gedare Bloom wrote: > >> On Mon, Feb 10, 2020 at 2:14 PM Chris Johns wrote: >>> >>> >>> On 10/2/20 8:32 pm, Sebastian Huber wrote: Close #3843. ---   c-user/configuring_a_system.rst | 36 +

Re: [PATCH] c-user: Document CONFIGURE_DIRTY_MEMORY

2020-02-10 Thread Sebastian Huber
On 11/02/2020 07:12, Chris Johns wrote: +NOTES: +    Dirtying memory can add significantly to system boot time.  It may assist +    in finding code that assumes memory starts set to zero.  In case .. "assumes memory starts set to zero" does not look right to me? At first I disagreed, but then

Re: [PATCH] bsp/raspberrypi: Fix linker command file

2020-02-10 Thread Sebastian Huber
Hello, I guess that after all the Raspberry Pi changes this patch can be discarded? On 20/12/2019 07:32, Sebastian Huber wrote: The RTEMS entry point must be at 0x8000. Update #3774. --- bsps/arm/raspberrypi/start/linkcmds.in | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(