Re: [PATCH 1/3] inmates: lib: move pci defines and prototypes from x86 to common

2018-01-20 Thread jonas
Den tisdag 16 januari 2018 kl. 17:14:13 UTC+1 skrev Henning Schild: > Hi, > > these patches are an attempt to get the contributions from Jonas in a > shape that can be merged. This first version was tested on x86 and arm > 32, i want it to work on arm64 as well but still had some trouble there. >

Re: Jailhouse on 4.4.0-97-generic kerenl 0x86 platform not working

2018-01-20 Thread Ralf Ramsauer
Hi, On 01/17/2018 08:50 AM, Muneeswaran Rajendran wrote: > Hi Ralf, > > Thanks for your response. I did grub-mkconfig before reboot the system. > But the /proc/cmdline doesn't list out the additional boot argument. > > cat /proc/cmdline > BOOT_IMAGE=/boot/vmlinuz-4.4.0-97-generic.efi.signed >

[siemens/jailhouse] 8d7da7: Revert "core: Only park CPUs in cell_set_loadable ...

2018-01-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/siemens/jailhouse Commit: 8d7da7dd6ab0a365fadfd35690d217c95f4de3b4 https://github.com/siemens/jailhouse/commit/8d7da7dd6ab0a365fadfd35690d217c95f4de3b4 Author: Jan Kiszka Date: 2018-01-01 (Mon, 01 Jan

[siemens/jailhouse] 9f0974: inmates: Corrected GICD and GICC base address

2018-01-20 Thread GitHub
Branch: refs/heads/next Home: https://github.com/siemens/jailhouse Commit: 9f0974b322cd1cbf1a93bb86991d4a6909a554d5 https://github.com/siemens/jailhouse/commit/9f0974b322cd1cbf1a93bb86991d4a6909a554d5 Author: Jan von Wiarda Date: 2018-01-20 (Sat, 20

Re: [PATCH 0/4] Added improvements for emCON-RZ/G platform

2018-01-20 Thread Jan Kiszka
On 2018-01-15 13:59, jan.vonwia...@emtrion.com wrote: > From: Jan von Wiarda > > This patchset introduces some improvements for the emCON-RZ/G platform. > More notably we eliminate the need to patch the Linux inmate kernel. > Besides there are some minor configuration

Re: [PATCH 2/3] inmates: lib: add mmio based pci implementation for arm

2018-01-20 Thread Jan Kiszka
On 2018-01-16 17:04, Henning Schild wrote: > From: Jonas Weståker > Empty commit message. > Signed-off-by: Jonas Weståker > Signed-off-by: Henning Schild > --- > inmates/lib/arm-common/Makefile.lib | 1 + >

[siemens/jailhouse] 0def9f: FAQ: handling inmates that do not reply to request...

2018-01-20 Thread GitHub
Branch: refs/heads/coverity_scan Home: https://github.com/siemens/jailhouse Commit: 0def9fe93c25694add9f74fa25b198cbb4748542 https://github.com/siemens/jailhouse/commit/0def9fe93c25694add9f74fa25b198cbb4748542 Author: Claudio Scordino Date: 2018-01-07

Re: [PATCH v3 1/5] pci: change PCIe capability access flag to RW

2018-01-20 Thread Jan Kiszka
On 2018-01-18 00:00, Gustavo Lima Chaves wrote: > pci_cfg_write_moderate() was changed to allow writes to the PCIe > capability, while Jailhouse will in fact only do reads and fake that > writes happen. This is getting in so that Linux thinks it did OK at > pci_disable_pcie_error_reporting()

Re: [PATCH v3 3/5] pci: reset: follow more closely PCIe's spec for function-level reset

2018-01-20 Thread Jan Kiszka
On 2018-01-18 00:00, Gustavo Lima Chaves wrote: > Try our best to follow more closely what the specification mandates for > function-level reset (section 6.6.2 of PCI Express Base Specification, > Revision 3.0). The previous approach was writing blindly on the command > register (setting int.

Re: [PATCH v3 2/5] pci: suppress AER reporting for all functions on device handover

2018-01-20 Thread Jan Kiszka
On 2018-01-18 00:00, Gustavo Lima Chaves wrote: > Before Jailhouse claims devices, disable AER reporting altogether on > them, because otherwise they could hit their root complexes, which would > be in the root cell. When the hypervisor is disabled, turn back whatever > values where on those

Re: [PATCH v3 4/5] pci: reset: reduce the count of FLRs on a device

2018-01-20 Thread Jan Kiszka
On 2018-01-18 00:00, Gustavo Lima Chaves wrote: > Before this patch, that routine was being called too much on each new > partition setup. > > Now we just repeat in a row for cell creation. We do that because cell > resets after creation still need that. > > Signed-off-by: Gustavo Lima Chaves