Re: [Qemu-devel] [PATCH v4] PPC: E500: Add FSL I2C controller and integrate RTC with it

2015-03-10 Thread Amit Tomar
mode 100644 index 000..91528a3 --- /dev/null +++ b/hw/i2c/mpc_i2c.c @@ -0,0 +1,359 @@ +/* + * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved. + * + * Author: Amit Tomar, + * + * Description: + * This file is derived from IMX I2C controller, + * by Jean-Christophe D

[Qemu-devel] [PATCH v4] PPC: E500: Add FSL I2C controller and integrate RTC with it

2015-01-21 Thread Amit Tomar
/null +++ b/hw/i2c/mpc_i2c.c @@ -0,0 +1,359 @@ +/* + * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved. + * + * Author: Amit Tomar, + * + * Description: + * This file is derived from IMX I2C controller, + * by Jean-Christophe DUBOIS . + * + * Thanks to Scott Wood and Alexander

[Qemu-devel] [PATCH v3] PPC: E500: Add FSL i2c controller and integrate RTC with it

2015-01-14 Thread Amit Tomar
@@ +/* + * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved. + * + * Author: Amit Tomar, + * + * Description: + * This file is derived from IMX I2C controller, + * by Jean-Christophe DUBOIS . + * + * Thanks to Scott Wood and Alexander Graf for their kind help on this. + * + * This program is free

[Qemu-devel] PPC: E500 [PATCH v2 ]: Add FSL i2c controller and integrate RTC with it.

2014-12-29 Thread Amit Tomar
obj-$(CONFIG_OMAP) += omap_i2c.o diff --git a/hw/i2c/mpc_i2c.c b/hw/i2c/mpc_i2c.c new file mode 100644 index 000..84d13dd --- /dev/null +++ b/hw/i2c/mpc_i2c.c @@ -0,0 +1,364 @@ +/* + * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved. + * + * Author: Amit Tomar

[Qemu-devel] [PATCH] PPC: e500: Fix GPIO controller interrupt number

2014-12-19 Thread Amit Tomar
This patch sets the GPIO controller interrupt number to 47,not 43 (and the Device tree agrees). Signed-off-by: Amit Singh Tomar --- hw/ppc/e500.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c index 2832fc0..2cd69a9 100644 --- a/hw/ppc/e500

Re: [Qemu-devel] [PATCH v1] [Review Request] RTC Support in e500

2014-12-18 Thread Amit Tomar
.@suse.de] Sent: Tuesday, December 16, 2014 6:03 PM To: Tomar Amit-B51888; qemu-devel@nongnu.org; qemu-...@nongnu.org Subject: Re: [PATCH v1] [Review Request] RTC Support in e500 On 08.12.14 15:19, Amit Tomar wrote: > I am new to QEMU and tried to provide support for RTC in e500. > > P

[Qemu-devel] [PATCH] hw/ppc/e500.c : Fix GPIO IRQ Number.

2014-12-18 Thread Amit Tomar
...@suse.de] Sent: Wednesday, December 17, 2014 2:52 PM To: Tomar Amit-B51888; qemu-devel@nongnu.org; qemu-...@nongnu.org Subject: Re: [PATCH] QEMU:Change the IRQ number for GPIO Controller On 17.12.14 10:18, Amit Tomar wrote: > Ping :) > > -Original Message- > From: Tomar

Re: [Qemu-devel] [PATCH] QEMU:Change the IRQ number for GPIO Controller

2014-12-17 Thread Amit Tomar
Ping :) -Original Message- From: Tomar Amit-B51888 Sent: Monday, December 08, 2014 3:03 PM To: 'qemu-devel@nongnu.org'; 'qemu-...@nongnu.org' Cc: 'ag...@suse.de' Subject: [PATCH] QEMU:Change the IRQ number for GPIO Controller As per RM and following links IRQ 43 is for I2C controller and

[Qemu-devel] [PATCH v1] [Review Request] RTC Support in e500

2014-12-08 Thread Amit Tomar
000..c739d07 --- /dev/null +++ b/hw/i2c/mpc_i2c.c @@ -0,0 +1,361 @@ +/* + * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved. + * + * Author: Amit Tomar, + * + * Description: + * This file is derived from IMX I2C controller, + * by Jean-Christophe DUBOIS . + * + * Thanks to

[Qemu-devel] [PATCH] QEMU:Change the IRQ number for GPIO Controller

2014-12-08 Thread Amit Tomar
As per RM and following links IRQ 43 is for I2C controller and IRQ 47 is for GPIO controller. https://lists.ozlabs.org/pipermail/linuxppc-dev/2011-January/087924.html http://lxr.free-electrons.com/source/arch/powerpc/boot/dts/fsl/pq3-gpio-0.dtsi?v=3.4 Signed-off-by: Amit Singh Tomar --- hw/pp