Re: Acessing PL devices of Xilinx Zedboard

2020-11-18 Thread Jonathan Brandmeyer
elease version of RTEMS 5.0. But hopefully this points you in the right direction. In particular, I know that some work has been done to support 4kB pages, but I don't know if the entry point arm_cp15_start_setup_translation_table_and_enable_mmu_and_cache currently uses that s

Re: libquadmath or mpfr support

2020-07-27 Thread Jonathan Brandmeyer
On Sat, Jul 25, 2020 at 10:18 AM Gedare Bloom wrote: > On Tue, Jun 9, 2020 at 8:00 AM Jonathan Brandmeyer > wrote: > > > > In our project we have a use case that justifies using double-double > arithmetic. Is it possible to get the RTEMS toolchain to include > li

libquadmath or mpfr support

2020-06-09 Thread Jonathan Brandmeyer
In our project we have a use case that justifies using double-double arithmetic. Is it possible to get the RTEMS toolchain to include libquadmath.a in the build? Alternatively, does anyone have experience getting mpfr installed and running under RTEMS? Thanks, -- Jonathan Brandmeyer PlanetiQ

Re: FW: zc706 bsp does not work with maximum processors as 2

2020-04-02 Thread Jonathan Brandmeyer
not the hardware rather the xsdb software. You may need to tell it > to use the second core and what it needs to do. I know with OpenOCD you > need to tell it you have both cores running. > > Chris > ___ > users mailing list > users@rtems.

exit(3) and the RTEMS Shell

2020-01-30 Thread Jonathan Brandmeyer
g the zynq BSP, anchored to master as of a few months ago. Thanks, -- Jonathan Brandmeyer PlanetiQ ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: Newbie question: Building Apps

2020-01-29 Thread Jonathan Brandmeyer
bout. > > > > > Is there a script I need to run to set those up? > > > > The examples also use waf. The waf README provides some help .. > > > > https://git.rtems.org/rtems-examples/tree/README.waf > > > > The RTEMS waf support uses the rtems_waf.git repo and this lets you &g

Re: Using the EDF scheduler

2020-01-17 Thread Jonathan Brandmeyer
nterrupt_server? At least in my case, the task really is rate-monotonic, but the timing source is both asynchronous with respect to the kernel tick and much finer. -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: Using the EDF scheduler

2020-01-17 Thread Jonathan Brandmeyer
The SMP EDF scheduler only supports pinning (single core) and not > affinity sets so the clustered scheduling may be the more optimal > alternative. > Its a 2-core system, so I don't need the flexibility afforded by using clustered scheduling instead of affinity. Thanks, -- Jona

Using the EDF scheduler

2020-01-17 Thread Jonathan Brandmeyer
notonic tasks? If I restrict rate-monotonic tasks to just one core with the affinity API, then it sounds like the other core will always be free to schedule event-triggered tasks + the remainder of the rate-monotonic core. What other tools are available for this purpose? Thanks, -- Jonathan Brand

Re: shell output

2019-11-01 Thread Jonathan Brandmeyer
*Mathew Benson* > CEO | Chief Engineer > Windhover Labs, LLC > 832-640-4018 > > > www.windhoverlabs.com > > _______ > users mailing list > users@rtems.org > http://lists.rtems.org/mailman/listinfo/users -- Jonathan Brandmeyer

Re: Help request for potentially new host dependencies

2019-10-07 Thread Jonathan Brandmeyer
stem. In particular, the python virtualenv that I need to build and test RTEMS will be completely independent of the virtualenv that I need for my own project's dependencies. Sincerely, -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: jtag access for zybo zynq board

2019-09-27 Thread Jonathan Brandmeyer
DR are all set up. Load the application program into # DDR. load_image arm-rtems5/bin/microzed-rtems.elf # Force ARM core state in case the halt was in Thumb mode. arm core_state arm resume 0x104040 ``` HTH, -- Jonathan Brandmeyer PlanetiQ ___

Re: Prerequisites for chdir at Init() time.

2019-08-21 Thread Jonathan Brandmeyer
On Wed, Aug 21, 2019 at 2:01 PM Joel Sherrill wrote: > Without involving the shell, do you have a simple test case for this? > > --joel > It seems like libtests/tar01 should be exercising this behavior already. Would using POSIX_Init() have any effect? -- Jonatha

Prerequisites for chdir at Init() time.

2019-08-21 Thread Jonathan Brandmeyer
s to have the right side-effects on creat() and open() calls. What's up with that? Is it intentional? Or is the shell's chroot() covering up some deficiency in the way that the `rtems_global_user_env` is getting initialized when the IMFS rootfs is set up? Thanks, -- Jonathan Brandme

Re: No console output on Custom Zynq Board

2019-08-19 Thread Jonathan Brandmeyer
n authorised representative of its contents. No > guarantee is implied that this message or any attachment is virus free or has > not been intercepted and amended. > > ___ > users mailing list > users@rte

Re: RTEMS GCC BIG ENDIAN SUPPORT

2019-08-02 Thread Jonathan Brandmeyer
e the FPU, you'll want `-mfloat-abi=soft`. The arguments `-mfpu=vfpv3-d16 -mfloat-abi=hard` ask the compiler to emit floating-point instructions. See also https://gcc.gnu.org/onlinedocs/gcc-7.4.0/gcc/ARM-Options.html#ARM-Options HTH, -- Jonathan Brandmeyer ___

Re: RTEMS / Zynq (microZed) - Writing data to a file on removable media (SD card)

2019-07-19 Thread Jonathan Brandmeyer
ake a look at nexus-devices.h to get a better idea of which BSP's support which features. The Other Leading Brand (Intel nee Altera Cyclone V) has better RTEMS support right now. -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: RTEMS / Zynq (microZed) - Writing data to a file on removable media (SD card)

2019-07-19 Thread Jonathan Brandmeyer
msbsp/include/bsp/nexus-devices.h is one of the entry points I use when source-diving into rtems-libbsd. HTH, Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: GSoC 2019 Project Description

2019-05-10 Thread Jonathan Brandmeyer
data in Common Trace Format(CTF). > > Thanks > > On Thu, May 9, 2019 at 3:29 PM Sebastian Huber > wrote: >> >> Hello Ravindra, >> >> welcome on board. >> >> Jonathan Brandmeyer reported a libbsd performance issue some days ago: >> >&g

Re: libbsd network stack optimization tips & tricks

2019-05-07 Thread Jonathan Brandmeyer
if I can avoid it. There are two IRQS tasks active. Its not obvious which core ends up with which GEM's interrupts. -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

libbsd network stack optimization tips & tricks

2019-04-24 Thread Jonathan Brandmeyer
ufs` are nonzero after a benchmark run. But if the test is CPU limited, then I wouldn't expect throwing buffers at the problem to help. Thanks, -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: Booting another ELF from RTEMS

2019-04-19 Thread Jonathan Brandmeyer
ext 6 months, where "likely" is measured by things like "we are making it a priority" and/or "we have funding to do so"? Not trying to make any demands of your team; I'm just trying to make an informed decision. Thanks, -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Booting another ELF from RTEMS

2019-04-16 Thread Jonathan Brandmeyer
7;d rather not go through the process of porting and embedding YAFFS into the FSBL if I can avoid it. Thanks, -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: RTEMS scheduler bug ?

2019-04-04 Thread Jonathan Brandmeyer
ssic API manual: - Looking at the 23.2.12 fatal error extension, I'm a little confused about how to safely install my own fatal error hook in such a way that the BSP's fatal error hook still gets called. - Document the irq-extension.h interface. -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: Sqlite building failure using rtems-source-builder

2019-03-29 Thread Jonathan Brandmeyer
RTEMS. Regarding your memory leak, don't forget to sqlite3_close() the database. This must be done even if sqlite3_open() fails. HTH, -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

Re: Sqlite building failure using rtems-source-builder

2019-03-26 Thread Jonathan Brandmeyer
it should not rely on mmap at runtime, though. Hope that helps, -- Jonathan Brandmeyer ___ users mailing list users@rtems.org http://lists.rtems.org/mailman/listinfo/users

RTEMS and link-time optimization

2019-03-08 Thread Jonathan Brandmeyer
o a symbol, but works just fine when you pass the symbol's address as an argument to the assembly template. With that in mind, does RTEMS support (is regularly tested with) LTO? Thanks, Jonathan Brandmeyer ___ users mailing list users@rtems.org ht

Re: Waf's dependency on Python3

2019-02-26 Thread Jonathan Brandmeyer
On Tue, Feb 26, 2019 at 10:52 AM Christian Mauderer wrote: > also I don't know a solution, the problem sounds quite similar to the > (unsolved) one here: > > https://lists.rtems.org/pipermail/users/2019-January/032920.html > > Differences: In your case it has been an "h" instead of a "o" I suspe

Re: Waf's dependency on Python3

2019-02-26 Thread Jonathan Brandmeyer
https://devel.rtems.org/ticket/3709 On Mon, Feb 25, 2019 at 5:32 PM Chris Johns wrote: > > On 26/2/19 10:18 am, Jonathan Brandmeyer wrote: > > I attempted to follow the directions in rtems-libbsd's README.md and > > run into the following error: "Could not create th

Waf's dependency on Python3

2019-02-25 Thread Jonathan Brandmeyer
I attempted to follow the directions in rtems-libbsd's README.md and run into the following error: "Could not create the directory ///h", right after configuring the build. On a wild guess I tried again using python3 as the interpreter explicitly and that succeeded. My host is Debian Stretch, AMD