Re: [Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-07-05 Thread Parth Dixit
+shannon On 25 May 2015 at 17:08, Parth Dixit wrote: > On 25 May 2015 at 15:30, Julien Grall wrote: >> Hi Parth, >> >> On 25/05/2015 07:58, Parth Dixit wrote: >>> >>> On 24 May 2015 at 13:10, Julien Grall wrote: On 24/05/2015 08:06, Parth Dixit wrote: > > > > +struct

Re: [Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-05-25 Thread Parth Dixit
On 25 May 2015 at 15:30, Julien Grall wrote: > Hi Parth, > > On 25/05/2015 07:58, Parth Dixit wrote: >> >> On 24 May 2015 at 13:10, Julien Grall wrote: >>> >>> On 24/05/2015 08:06, Parth Dixit wrote: > +struct acpi_device_desc { > +/* Device name */

Re: [Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-05-25 Thread Julien Grall
Hi Parth, On 25/05/2015 07:58, Parth Dixit wrote: On 24 May 2015 at 13:10, Julien Grall wrote: On 24/05/2015 08:06, Parth Dixit wrote: > +struct acpi_device_desc { > +/* Device name */ > +const char *name; > +/* Device class */ > +enum device_cla

Re: [Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-05-24 Thread Parth Dixit
On 24 May 2015 at 13:10, Julien Grall wrote: > Hi Parth, > > > On 24/05/2015 08:06, Parth Dixit wrote: >> >> > +struct acpi_device_desc { >> > +/* Device name */ >> > +const char *name; >> > +/* Device class */ >> > +enum device_class class; >> > +

Re: [Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-05-24 Thread Julien Grall
Hi Parth, On 24/05/2015 08:06, Parth Dixit wrote: > +struct acpi_device_desc { > +/* Device name */ > +const char *name; > +/* Device class */ > +enum device_class class; > +/* type of device supported by the driver */ > +const int class

Re: [Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-05-24 Thread Parth Dixit
On 21 May 2015 at 16:49, Julien Grall wrote: > Hi Parth, > > On 17/05/15 21:03, Parth Dixit wrote: > > add generic way to use device from acpi similar to > > the way it is supported in device tree. > > > > Signed-off-by: Parth Dixit > > --- > > xen/arch/arm/device.c| 19

Re: [Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-05-21 Thread Julien Grall
Hi Parth, On 17/05/15 21:03, Parth Dixit wrote: > add generic way to use device from acpi similar to > the way it is supported in device tree. > > Signed-off-by: Parth Dixit > --- > xen/arch/arm/device.c| 19 +++ > xen/arch/arm/xen.lds.S | 7 +++ > xen/include

[Xen-devel] [PATCH v2 18/41] arm: Introduce a generic way to use a device from acpi

2015-05-17 Thread Parth Dixit
add generic way to use device from acpi similar to the way it is supported in device tree. Signed-off-by: Parth Dixit --- xen/arch/arm/device.c| 19 +++ xen/arch/arm/xen.lds.S | 7 +++ xen/include/asm-arm/device.h | 30 ++ 3 files ch