Tap adapter and whpx accelerator in Windows host makes network issues

2023-10-10 Thread Mohamed Amine KARMANI
the accelerator whpx and tap adapter working together? Thank you in advance for your support. Best regards, Mohamed Amine

[PATCH 3/8] tiva c gpio implementation

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/gpio/tm4c123_gpio.c | 372 + hw/gpio/trace-events | 4 + include/hw/gpio/tm4c123_gpio.h | 127 +++ 3 files changed, 503 insertions(+) create mode 100644 hw/gpio/tm4c123_gpio.c create mode 100644

[PATCH 8/8] adding tiva c to the qemu build system and adding my info to the maintainers list

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- MAINTAINERS | 9 + configs/devices/arm-softmmu/default.mak | 1 + hw/arm/Kconfig | 13 + hw/arm/meson.build | 3 +++ hw/char/Kconfig | 3

[PATCH 4/8] tiva c sysctl implementation

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/misc/tm4c123_sysctl.c | 989 +++ hw/misc/trace-events | 5 + include/hw/misc/tm4c123_sysctl.h | 307 ++ 3 files changed, 1301 insertions(+) create mode 100644 hw/misc/tm4c123_sysctl.c create mode

[PATCH 7/8] tiva c board documentation

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- docs/system/arm/tivac.rst | 47 +++ 1 file changed, 47 insertions(+) create mode 100644 docs/system/arm/tivac.rst diff --git a/docs/system/arm/tivac.rst b/docs/system/arm/tivac.rst new file mode 100644 index 00

[PATCH 6/8] tiva c general purpose timers implementation

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/timer/tm4c123_gptm.c | 495 hw/timer/trace-events | 5 + include/hw/timer/tm4c123_gptm.h | 131 + 3 files changed, 631 insertions(+) create mode 100644 hw/timer/tm4c123_gptm.c create mode 100644

[PATCH 2/8] tiva c usart module implementation

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/char/tm4c123_usart.c | 381 hw/char/trace-events| 4 + include/hw/char/tm4c123_usart.h | 124 +++ 3 files changed, 509 insertions(+) create mode 100644 hw/char/tm4c123_usart.c create mode

[PATCH 1/8] The tivac board initial machine definition

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/arm/tivac.c| 56 ++ hw/arm/tm4c123gh6pm_soc.c | 275 ++ include/hw/arm/tm4c123gh6pm_soc.h | 71 3 files changed, 402 insertions(+) create mode 100644 hw/arm/tivac.c create mode 100644

[PATCH 0/8] Tiva C Implementation

2023-05-17 Thread Mohamed ElSayed
This contribution aims to add the Tiva C support into QEMU. The code could be found at https://github.com/moesay/qemu_TivaC Mohamed ElSayed (8): The tivac board initial machine definition tiva c usart module implementation tiva c gpio implementation tiva c sysctl implementation tiva c

[PATCH 5/8] tiva c watchdog timers implementation

2023-05-17 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/watchdog/tm4c123_watchdog.c | 297 + hw/watchdog/trace-events | 3 + include/hw/watchdog/tm4c123_watchdog.h | 97 3 files changed, 397 insertions(+) create mode 100644 hw/watchdog/tm4c123_watchdog.c

[PULL 3/8] tivac gpio module implementation

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/gpio/tm4c123_gpio.c | 372 + include/hw/gpio/tm4c123_gpio.h | 127 +++ 2 files changed, 499 insertions(+) create mode 100644 hw/gpio/tm4c123_gpio.c create mode 100644 include/hw/gpio/tm4c123_gpio.h diff

[PULL 5/8] tivac general purpose timers implementation

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/timer/tm4c123_gptm.c | 529 include/hw/timer/tm4c123_gptm.h | 131 2 files changed, 660 insertions(+) create mode 100644 hw/timer/tm4c123_gptm.c create mode 100644 include/hw/timer/tm4c123_gptm.h diff

[PULL 8/8] code style fixes

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/arm/tm4c123gh6pm_soc.c | 14 ++-- hw/char/tm4c123_usart.c| 28 +++ hw/misc/tm4c123_sysctl.c | 6 +- hw/timer/tm4c123_gptm.c| 134 - hw/watchdog/tm4c123_watchdog.c | 25 +++--- 5 files

[PULL 2/8] tivac usart module implementation

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/char/tm4c123_usart.c | 387 include/hw/char/tm4c123_usart.h | 124 ++ 2 files changed, 511 insertions(+) create mode 100644 hw/char/tm4c123_usart.c create mode 100644 include/hw/char/tm4c123_usart.h diff

[PULL 7/8] editing the meson and KConfig files to add tivac to qemu build system

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- .gitignore | 1 + README.rst | 150 ++-- configs/devices/arm-softmmu/default.mak | 1 + hw/arm/Kconfig | 13 ++ hw/arm/meson.build

[PULL 6/8] tivac watchdog timers implementation

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/watchdog/tm4c123_watchdog.c | 298 + include/hw/watchdog/tm4c123_watchdog.h | 97 2 files changed, 395 insertions(+) create mode 100644 hw/watchdog/tm4c123_watchdog.c create mode 100644 include/hw/watchdog

[PULL 4/8] tivac system control implementation

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/misc/tm4c123_sysctl.c | 989 +++ include/hw/misc/tm4c123_sysctl.h | 307 ++ 2 files changed, 1296 insertions(+) create mode 100644 hw/misc/tm4c123_sysctl.c create mode 100644 include/hw/misc/tm4c123_sysctl.h

[PULL 1/8] the tivac machine def init commit

2023-05-16 Thread Mohamed ElSayed
Signed-off-by: Mohamed ElSayed --- hw/arm/tivac.c| 56 ++ hw/arm/tm4c123gh6pm_soc.c | 274 ++ include/hw/arm/tm4c123gh6pm_soc.h | 71 3 files changed, 401 insertions(+) create mode 100644 hw/arm/tivac.c create mode 100644

[PULL SUBSYSTEM arm 0/8] TivaC Implementation

2023-05-16 Thread Mohamed ElSayed
*** This is an implementation for the TivaC board. For now it models the system control block, the general purpose I/O, the general purpose timers, the watchdog timers and the usart module. The code is available at https://github.com/moesay/qemu_TivaC.git *** Mohamed ElSayed (8): the tivac

Development request

2021-09-26 Thread Mohamed Atef
Hello there, We are 6 students from Egypt and now We are in our last year and We need to build a project as a graduation project. And We are interested in the area of runtime systems, operating systems and compilers. We are going to work 40-60 hrs a week Can We help with some tools you need as a

[Bug 1921280] [NEW] OpenIndiana stuck in boot loop when using hvf

2021-03-24 Thread Mohamed
Public bug reported: I'm using QEMU version 5.2.0 on macOS, and running the "OpenIndiana Hipster 2020.10 Text Install DVD (64-bit x86)" ISO: qemu-system-x86_64 -cdrom ~/Downloads/OI-hipster-text-20201031.iso -m 2048 -accel hvf -cpu host It gets to "Booting...", stays there for a bit, and then

Questions regarding the usage of the QIO API

2020-07-02 Thread Karaoui mohamed lamine
of this queues? How does the "watch" work. Is there a thread in the background handling these operations? Regards, Mohamed