All,
I just sent out an invitation for this Friday at 10am US Eastern time
(New York etc).
I think that should still be 3pm UK/UTC time.
Google cal link:
https://calendar.google.com/event?action=TEMPLATE&tmeid=M2R0a2licjhhNDdybXU…
This is a special meeting to discuss
https://github.com/OpenAMP/open-amp/pull/246https://github.com/OpenAMP/open-amp/pull/238https://github.com/OpenAMP/open-amp/pull/160https://github.com/OpenAMP/open-amp/pull/155
The above are all pull requests from Xiang Xiao and most involve changes
to the protocol between two processors.
We need to make sure we do such changes carefully and:
* maintain back compatibility when the other processor is running older
code, fallback gracefully
* implementation is possible for both Linux kernel and baremetal/RTOS
* is general purpose and will server a wide range of use cases
In general I think everyone wants to see changes like this we just need
to find the right form.
Anyone in this list may join but the meeting is focused on the people in
the to: list.
Thanks,
Bill
--
Bill Mills
Principal Technical Consultant, Linaro
+1-240-643-0836
TZ: US Eastern
Work Schedule: Tues/Wed/Thur
All,
I have canceled tomorrows call due to conflicts.
Matthieu and Ed have said there is not a ton to talk about anyway.
Heads up that we are trying to schedule a special call next week at an
earlier time than usual (better for China) so we can discuss the idea of
EP connect / disconnect notification.
I will update the list when we nail down a time.
Thanks,
Bill
--
Bill Mills
Principal Technical Consultant, Linaro
+1-240-643-0836
TZ: US Eastern
Work Schedule: Tues/Wed/Thur
Hi!
I am a PhD student and I am using OpenAMP for a research work. I am trying
to compare latencies between a FreeRTOS application in R5 with OpenAMP and
a FreeRTOS application in A53 with Xen hypervisor. I am using a zynq ZCU102
platform.
I have just started the PhD, so I am not completely sure of what I am going
to do for the thesis. I wanted to relate this (OpenAMP, hypervisors...)
with the FPGA, but I don't know how. Now my intention is to do a paper (my
first article) about the latencies with OpenAMP and Xen. If someone has any
advice for me, I'd be glad to listen to it. Also, when I get stuck at
something (I am new using OpenAMP) I wolud like to ask you for support if
you agree.
Thank you very much!
Sara
Hi!
I am a PhD student and I am using OpenAMP for a research work. I am
trying to compare latencies between a FreeRTOS application in R5 with
OpenAMP and a FreeRTOS application in A53 with Xen hypervisor. I am
using a zynq ZCU102 platform.
I have just started the PhD, so I am not completely sure of what I am
going to do for the thesis. I wanted to relate this (OpenAMP,
hypervisors...) with the FPGA, but I don't know how. Now my intention
is to do a paper (my first article) about the latencies with OpenAMP
and Xen. If someone has any advice for me, I'd be glad to listen to it.
Also, when I get stuck at something (I am new using OpenAMP) I wolud
like to ask you for support if you agree.
Thank you very much!
Sara
Hello all,
There is a meeting today at the normal time: 4 PM GMT, 11 AM US Eastern
We are still using the same zoom meeting number.
(I will switch after this call.)
Thanks,
Bill
--
Bill Mills
Principal Technical Consultant, Linaro
+1-240-643-0836
TZ: US Eastern
Work Schedule: Tues/Wed/Thur
All,
We have our normal OpenAMP meeting today (Jan 14) in 1 hour: 11 AM US
Eastern, 4PM GMT
Thanks,
Bill
--
Bill Mills
Principal Technical Consultant, Linaro
+1-240-643-0836
TZ: US Eastern
Work Schedule: Tues/Wed/Thur
Branch: refs/heads/master
Home: https://github.com/OpenAMP/libmetal
Commit: f252f0e007fbfb8b3a52b1d5901250ddac96baad
https://github.com/OpenAMP/libmetal/commit/f252f0e007fbfb8b3a52b1d5901250dd…
Author: Ed Mooring <ed.mooring(a)linaro.org>
Date: 2021-01-11 (Mon, 11 Jan 2021)
Changed paths:
M lib/system/freertos/sleep.h
Log Message:
-----------
FreeRTOS: Allow tick rates greater than 1000 for metal_sleep_usec().
metal_sleep_usec() used portTICK_PERIOD_MS to determine how long to
sleep. If the FreeRTOS tick rate is set to greater than 1000, this will
be 0, resulting in a divide by zero error at run time. This changes it
to use pdMS_TO_TICKS(), which can accomodate higher tick rates.
Signed-off-by: Ed Mooring <ed.mooring(a)linaro.org>
Branch: refs/heads/master
Home: https://github.com/OpenAMP/open-amp
Commit: c7757cf52c3a13404c50860f08cd2252d2e2edec
https://github.com/OpenAMP/open-amp/commit/c7757cf52c3a13404c50860f08cd2252…
Author: Xiang Xiao <xiaoxiang(a)xiaomi.com>
Date: 2021-01-04 (Mon, 04 Jan 2021)
Changed paths:
M lib/include/openamp/remoteproc.h
M lib/remoteproc/remoteproc.c
Log Message:
-----------
remoteproc: add get_mem callback to remoteproc_ops
Since the mapping info is normally managed inside the porting
layer, the new callback could avoid the mapping duplication.
Signed-off-by: Xiang Xiao <xiaoxiang(a)xiaomi.com>