From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vijay Kilari Subject: Re: [PATCH v5 05/22] xen/arm: ITS: Port ITS driver to Xen Date: Fri, 31 Jul 2015 15:58:50 +0530 Message-ID: References: <1437995524-19772-1-git-send-email-vijay.kilari@gmail.com> <1437995524-19772-6-git-send-email-vijay.kilari@gmail.com> <55B7B1E4.1070207@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <55B7B1E4.1070207@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Julien Grall Cc: Ian Campbell , Stefano Stabellini , Prasun Kapoor , manish.jaggi@caviumnetworks.com, Tim Deegan , "xen-devel@lists.xen.org" , Stefano Stabellini , Vijaya Kumar K List-Id: xen-devel@lists.xenproject.org On Tue, Jul 28, 2015 at 10:16 PM, Julien Grall wrote: > Hi Vijay, > > On 27/07/15 12:11, vijay.kilari@gmail.com wrote: >> From: Vijaya Kumar K >> >> The linux driver is based on 4.1 with below commit id >> >> 3ad2a5f57656a14d964b673a5a0e4ab0e583c870 > > This doesn't include commit 591e5bec13f15feb13fc445b6c9c59954711c4ac > "irqchip/gicv3-its: Fix mapping of LPIs to collections". > > On the version 4 of this series, Ian [1] said that it would be very nice > to have a similar approach in Xen. I would like to see it too. By storing col_id in msi_desc as below, I am already taking care of the above commit in this series struct msi_desc { #ifdef HAS_GICV3 unsigned int eventID; struct its_device *dev; u16 col_id; #endif }; Regards Vijay