Re: [PATCH rtems 2/2] bsps/imxrt: Simplify linkcmds and make it flexible

2021-06-07 Thread Chris Johns
On 7/6/21 6:40 pm, Christian Mauderer wrote:> I think the Options don't need documentation changes because the options in the > waf based build system are now documented directly in the yaml files and > printed > if you generate the default config. Hmm I am not sure I agree with the premise the Y

Re: [PATCH v2 2/2] i386: Remove unneeded include header files

2021-06-07 Thread Chris Johns
I agree this is the way to solve this issue. Chris On 8/6/21 3:09 am, Gedare Bloom wrote: > This looks like a much better solution :) If no one complains by > Thursday go ahead and push it. > > On Mon, Jun 7, 2021 at 2:53 AM Jan Sommer wrote: >> >> --- >> .../sys/i386/include/machine/intr_mach

Re: Selection of ethernet peripheral by application

2021-06-07 Thread Chris Johns
On 7/6/21 10:05 pm, Kinsey Moore wrote: > On 6/6/2021 17:42, Chris Johns wrote: >> On 4/6/21 11:26 pm, Joel Sherrill wrote: >>> On Fri, Jun 4, 2021 at 7:59 AM Kinsey Moore >> > wrote: >>> >>> On 6/4/2021 02:32, Christian MAUDERER wrote: >>> > Am 02.06.21

Re: [PATCH v2] covoar: Store address-to-line info outside of DWARF

2021-06-07 Thread Chris Johns
On 8/6/21 1:44 am, Joel Sherrill wrote: > > > On Mon, Jun 7, 2021 at 7:00 AM Alex White > wrote: > > > On Wed, Jun 2, 2021 at 7:37 PM Chris Johns > wrote: > > > > Looking good with a single comment below ... > > >

Re: [PATCH v1] bsps/riscv: Give enough time for clock driver initialization

2021-06-07 Thread Joel Sherrill
On Mon, Jun 7, 2021 at 1:57 PM wrote: > > > > -Original Message- > > From: Gedare Bloom > > Sent: Monday, June 7, 2021 7:00 PM > > To: Sommer, Jan > > Cc: devel@rtems.org > > Subject: Re: [PATCH v1] bsps/riscv: Give enough time for clock driver > > initialization > > > > On Mon, Jun 7,

RE: [PATCH v1] bsps/riscv: Give enough time for clock driver initialization

2021-06-07 Thread Jan.Sommer
> -Original Message- > From: Gedare Bloom > Sent: Monday, June 7, 2021 7:00 PM > To: Sommer, Jan > Cc: devel@rtems.org > Subject: Re: [PATCH v1] bsps/riscv: Give enough time for clock driver > initialization > > On Mon, Jun 7, 2021 at 9:47 AM Jan Sommer wrote: > > > > - Clock driver

Re: [PATCH v2 2/2] i386: Remove unneeded include header files

2021-06-07 Thread Gedare Bloom
This looks like a much better solution :) If no one complains by Thursday go ahead and push it. On Mon, Jun 7, 2021 at 2:53 AM Jan Sommer wrote: > > --- > .../sys/i386/include/machine/intr_machdep.h |6 - > rtemsbsd/include/x86/bus.h| 1109 > rtemsbsd/i

Re: [PATCH v1] bsps/riscv: Give enough time for clock driver initialization

2021-06-07 Thread Gedare Bloom
On Mon, Jun 7, 2021 at 9:47 AM Jan Sommer wrote: > > - Clock driver initialization for secondary cores had to take less than > one tick > - If tick time is small (i.e. <= 1ms) setting up all cores could take > too long and a fatal error is thrown. > - Give at least 10 ms time for clock initializat

[PATCH v1] bsps/riscv: Give enough time for clock driver initialization

2021-06-07 Thread Jan Sommer
- Clock driver initialization for secondary cores had to take less than one tick - If tick time is small (i.e. <= 1ms) setting up all cores could take too long and a fatal error is thrown. - Give at least 10 ms time for clock initialization to avoid this error --- bsps/riscv/riscv/clock/clockdrv.c

Re: [PATCH v2] covoar: Store address-to-line info outside of DWARF

2021-06-07 Thread Joel Sherrill
On Mon, Jun 7, 2021 at 7:00 AM Alex White wrote: > > On Wed, Jun 2, 2021 at 7:37 PM Chris Johns wrote: > > > > Looking good with a single comment below ... > > > > On 3/6/21 6:08 am, Alex White wrote: > > > This adds the AddressToLineMapper class and supporting classes to > > > assume responsibi

Re: Selection of ethernet peripheral by application

2021-06-07 Thread Kinsey Moore
On 6/6/2021 17:42, Chris Johns wrote: On 4/6/21 11:26 pm, Joel Sherrill wrote: On Fri, Jun 4, 2021 at 7:59 AM Kinsey Moore mailto:kinsey.mo...@oarcorp.com>> wrote: On 6/4/2021 02:32, Christian MAUDERER wrote: > Am 02.06.21 um 20:37 schrieb Kinsey Moore: >> Hello, >> >>

Re: [PATCH v2] covoar: Store address-to-line info outside of DWARF

2021-06-07 Thread Alex White
On Wed, Jun 2, 2021 at 7:37 PM Chris Johns wrote: > > Looking good with a single comment below ... > > On 3/6/21 6:08 am, Alex White wrote: > > This adds the AddressToLineMapper class and supporting classes to > > assume responsibility of tracking address-to-line information. > > > > This allows

[PATCH v2 2/2] i386: Remove unneeded include header files

2021-06-07 Thread Jan Sommer
--- .../sys/i386/include/machine/intr_machdep.h |6 - rtemsbsd/include/x86/bus.h| 1109 rtemsbsd/include/x86/specialreg.h | 1143 - 3 files changed, 2258 deletions(-) delete mode 100644 freebsd/sys/i386/include/machine/intr_ma

[PATCH v2 1/2] waf_libbsd.py: Apply path-mappings to header-paths

2021-06-07 Thread Jan Sommer
--- libbsd.py | 2 +- waf_libbsd.py | 27 +-- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/libbsd.py b/libbsd.py index add91e5a..c9151901 100644 --- a/libbsd.py +++ b/libbsd.py @@ -144,6 +144,7 @@ _defaults = { ('freebsd/sys/dev/pci',

[PATCH v2 0/2] [libbsd] i386: Install correct machine include headers

2021-06-07 Thread Jan Sommer
Second version for fixing the include header problem for i386. This time not much changes for other BSPs. For i386 no functional header are needed in the rtemsbsd directory anymore. Only headers which redirect. It essentially adds the path mapping feature also to the header-paths of libbsd.py, to

Re: [PATCH rtems 2/2] bsps/imxrt: Simplify linkcmds and make it flexible

2021-06-07 Thread Christian Mauderer
Hello Gedare, I think the Options don't need documentation changes because the options in the waf based build system are now documented directly in the yaml files and printed if you generate the default config. But I think I should add a documentation for the ARM PLL. I'll send a patch as soon