* RFC: [PATCH 0/3] Base PCI and Cavium ThunderX PCI platform support
@ 2015-02-20 11:30 Manish Jaggi
2015-02-20 11:53 ` Julien Grall
0 siblings, 1 reply; 5+ messages in thread
From: Manish Jaggi @ 2015-02-20 11:30 UTC (permalink / raw)
To: xen-devel
Cc: Prasun.kapoor, Kumar, Vijaya, Julien Grall,
Stefano Stabellini (Stefano.Stabellini@citrix.com)
This patch series adds PCI support for XEN ARM.
- pci config read writes maps to xen-arm pci.c
- platform support includes parsing pci device tree node and callbacks
for reading writing from configuration space
- placeholder code is added which is necessary for compilation
Next RFC Patch set will include RFC PCI pass-through support
manish jaggi (3):
Enhance platform support for PCI
ThunderX platform support for PCI
XEN ARM PCI support
xen/arch/arm/Makefile | 1 +
xen/arch/arm/pci.c | 111 ++++++++++++++++++++++++++++++++++
xen/arch/arm/platform.c | 27 +++++++++
xen/arch/arm/platforms/thunderx.c | 124 ++++++++++++++++++++++++++++++++++++++
xen/arch/arm/setup.c | 3 +-
xen/drivers/passthrough/pci.c | 28 ++++++---
xen/include/asm-arm/device.h | 1 +
xen/include/asm-arm/domain.h | 3 +
xen/include/asm-arm/pci.h | 25 ++++++--
xen/include/asm-arm/platform.h | 18 +++++-
10 files changed, 327 insertions(+), 14 deletions(-)
create mode 100644 xen/arch/arm/pci.c
--
1.9.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RFC: [PATCH 0/3] Base PCI and Cavium ThunderX PCI platform support
2015-02-20 11:30 RFC: [PATCH 0/3] Base PCI and Cavium ThunderX PCI platform support Manish Jaggi
@ 2015-02-20 11:53 ` Julien Grall
2015-02-20 11:56 ` Manish Jaggi
0 siblings, 1 reply; 5+ messages in thread
From: Julien Grall @ 2015-02-20 11:53 UTC (permalink / raw)
To: Manish Jaggi, xen-devel
Cc: Prasun.kapoor, Kumar, Vijaya,
Stefano Stabellini (Stefano.Stabellini@citrix.com), Ian Campbell
Hello manish,
On 20/02/15 11:30, Manish Jaggi wrote:
> This patch series adds PCI support for XEN ARM.
> - pci config read writes maps to xen-arm pci.c
> - platform support includes parsing pci device tree node and callbacks
> for reading writing from configuration space
> - placeholder code is added which is necessary for compilation
>
> Next RFC Patch set will include RFC PCI pass-through support
You series is not threaded and every patches missing a Signed-off-by.
Please read http://wiki.xen.org/wiki/Submitting_Xen_Project_Patches to
know how to submit a patch series.
Regards,
> manish jaggi (3):
> Enhance platform support for PCI
> ThunderX platform support for PCI
> XEN ARM PCI support
>
> xen/arch/arm/Makefile | 1 +
> xen/arch/arm/pci.c | 111 ++++++++++++++++++++++++++++++++++
> xen/arch/arm/platform.c | 27 +++++++++
> xen/arch/arm/platforms/thunderx.c | 124
> ++++++++++++++++++++++++++++++++++++++
> xen/arch/arm/setup.c | 3 +-
> xen/drivers/passthrough/pci.c | 28 ++++++---
> xen/include/asm-arm/device.h | 1 +
> xen/include/asm-arm/domain.h | 3 +
> xen/include/asm-arm/pci.h | 25 ++++++--
> xen/include/asm-arm/platform.h | 18 +++++-
> 10 files changed, 327 insertions(+), 14 deletions(-)
> create mode 100644 xen/arch/arm/pci.c
>
--
Julien Grall
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RFC: [PATCH 0/3] Base PCI and Cavium ThunderX PCI platform support
2015-02-20 11:53 ` Julien Grall
@ 2015-02-20 11:56 ` Manish Jaggi
2015-02-20 11:58 ` Julien Grall
0 siblings, 1 reply; 5+ messages in thread
From: Manish Jaggi @ 2015-02-20 11:56 UTC (permalink / raw)
To: Julien Grall, xen-devel
Cc: Prasun.kapoor, Kumar, Vijaya,
Stefano Stabellini (Stefano.Stabellini@citrix.com), Ian Campbell
On 20/02/15 5:23 pm, Julien Grall wrote:
> Hello manish,
>
> On 20/02/15 11:30, Manish Jaggi wrote:
>> This patch series adds PCI support for XEN ARM.
>> - pci config read writes maps to xen-arm pci.c
>> - platform support includes parsing pci device tree node and callbacks
>> for reading writing from configuration space
>> - placeholder code is added which is necessary for compilation
>>
>> Next RFC Patch set will include RFC PCI pass-through support
> You series is not threaded and every patches missing a Signed-off-by.
>
> Please read http://wiki.xen.org/wiki/Submitting_Xen_Project_Patches to
> know how to submit a patch series.
Do we need to add Signoff in RFC patches ?
>
> Regards,
>
>
>> manish jaggi (3):
>> Enhance platform support for PCI
>> ThunderX platform support for PCI
>> XEN ARM PCI support
>>
>> xen/arch/arm/Makefile | 1 +
>> xen/arch/arm/pci.c | 111 ++++++++++++++++++++++++++++++++++
>> xen/arch/arm/platform.c | 27 +++++++++
>> xen/arch/arm/platforms/thunderx.c | 124
>> ++++++++++++++++++++++++++++++++++++++
>> xen/arch/arm/setup.c | 3 +-
>> xen/drivers/passthrough/pci.c | 28 ++++++---
>> xen/include/asm-arm/device.h | 1 +
>> xen/include/asm-arm/domain.h | 3 +
>> xen/include/asm-arm/pci.h | 25 ++++++--
>> xen/include/asm-arm/platform.h | 18 +++++-
>> 10 files changed, 327 insertions(+), 14 deletions(-)
>> create mode 100644 xen/arch/arm/pci.c
>>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RFC: [PATCH 0/3] Base PCI and Cavium ThunderX PCI platform support
2015-02-20 11:56 ` Manish Jaggi
@ 2015-02-20 11:58 ` Julien Grall
2015-02-20 12:02 ` Manish Jaggi
0 siblings, 1 reply; 5+ messages in thread
From: Julien Grall @ 2015-02-20 11:58 UTC (permalink / raw)
To: Manish Jaggi, xen-devel
Cc: Prasun.kapoor, Kumar, Vijaya,
Stefano Stabellini (Stefano.Stabellini@citrix.com), Ian Campbell
On 20/02/15 11:56, Manish Jaggi wrote:
>
> On 20/02/15 5:23 pm, Julien Grall wrote:
>> Hello manish,
>>
>> On 20/02/15 11:30, Manish Jaggi wrote:
>>> This patch series adds PCI support for XEN ARM.
>>> - pci config read writes maps to xen-arm pci.c
>>> - platform support includes parsing pci device tree node and callbacks
>>> for reading writing from configuration space
>>> - placeholder code is added which is necessary for compilation
>>>
>>> Next RFC Patch set will include RFC PCI pass-through support
>> You series is not threaded and every patches missing a Signed-off-by.
>>
>> Please read http://wiki.xen.org/wiki/Submitting_Xen_Project_Patches to
>> know how to submit a patch series.
> Do we need to add Signoff in RFC patches ?
Yes, an RFC is just a different kind of patch series... We need to know
who worked on it.
Regards,
--
Julien Grall
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RFC: [PATCH 0/3] Base PCI and Cavium ThunderX PCI platform support
2015-02-20 11:58 ` Julien Grall
@ 2015-02-20 12:02 ` Manish Jaggi
0 siblings, 0 replies; 5+ messages in thread
From: Manish Jaggi @ 2015-02-20 12:02 UTC (permalink / raw)
To: Julien Grall, xen-devel
Cc: Prasun.kapoor, Kumar, Vijaya,
Stefano Stabellini (Stefano.Stabellini@citrix.com), Ian Campbell
On 20/02/15 5:28 pm, Julien Grall wrote:
> On 20/02/15 11:56, Manish Jaggi wrote:
>> On 20/02/15 5:23 pm, Julien Grall wrote:
>>> Hello manish,
>>>
>>> On 20/02/15 11:30, Manish Jaggi wrote:
>>>> This patch series adds PCI support for XEN ARM.
>>>> - pci config read writes maps to xen-arm pci.c
>>>> - platform support includes parsing pci device tree node and callbacks
>>>> for reading writing from configuration space
>>>> - placeholder code is added which is necessary for compilation
>>>>
>>>> Next RFC Patch set will include RFC PCI pass-through support
>>> You series is not threaded and every patches missing a Signed-off-by.
>>>
>>> Please read http://wiki.xen.org/wiki/Submitting_Xen_Project_Patches to
>>> know how to submit a patch series.
>> Do we need to add Signoff in RFC patches ?
> Yes, an RFC is just a different kind of patch series... We need to know
> who worked on it.
ok, I will add it in next revision consolidated with other comments. I
hope it is ok.
>
> Regards,
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-02-20 12:02 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-20 11:30 RFC: [PATCH 0/3] Base PCI and Cavium ThunderX PCI platform support Manish Jaggi
2015-02-20 11:53 ` Julien Grall
2015-02-20 11:56 ` Manish Jaggi
2015-02-20 11:58 ` Julien Grall
2015-02-20 12:02 ` Manish Jaggi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.