* [PATCH v3] OMAP4:hwmod: I2C : I2C context save
@ 2011-07-14 16:33 Shubhrajyoti D
[not found] ` <1310661218-3819-1-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
2011-07-15 14:28 ` How to get the handler of a device that has been open Zhang, Shijie
0 siblings, 2 replies; 3+ messages in thread
From: Shubhrajyoti D @ 2011-07-14 16:33 UTC (permalink / raw)
To: linux-omap-u79uwXL29TY76Z2rM5mHXA
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA, khilman-l0cyMroinI0,
Shubhrajyoti D
Restore of context is not done for OMAP4. This patch
adds the OMAP_I2C_FLAG_RESET_REGS_POSTIDLE in the OMAP4
hwmod data which activates the restore for OMAP4.
Currently the OMAP4 does not hit device off still the
driver may have support for it.
Signed-off-by: Shubhrajyoti D <shubhrajyoti-l0cyMroinI0@public.gmane.org>
---
Applies on top of patches from Andy Green
http://www.spinics.net/lists/linux-i2c/msg05632.html
Tested on OMAP4430
arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
index 0fe9556..5e2c748 100644
--- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
+++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
@@ -2130,7 +2130,8 @@ static struct omap_hwmod_class omap44xx_i2c_hwmod_class = {
};
static struct omap_i2c_dev_attr i2c_dev_attr = {
- .flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE,
+ .flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE |
+ OMAP_I2C_FLAG_RESET_REGS_POSTIDLE,
};
/* i2c1 */
--
1.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <1310661218-3819-1-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>]
* Re: [PATCH v3] OMAP4:hwmod: I2C : I2C context save
[not found] ` <1310661218-3819-1-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
@ 2011-07-14 16:36 ` Shubhrajyoti
0 siblings, 0 replies; 3+ messages in thread
From: Shubhrajyoti @ 2011-07-14 16:36 UTC (permalink / raw)
To: Shubhrajyoti D
Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA,
linux-i2c-u79uwXL29TY76Z2rM5mHXA, khilman-l0cyMroinI0
Please ignore the patch sent another one with correct sub line
On Thursday 14 July 2011 10:03 PM, Shubhrajyoti D wrote:
> Restore of context is not done for OMAP4. This patch
> adds the OMAP_I2C_FLAG_RESET_REGS_POSTIDLE in the OMAP4
> hwmod data which activates the restore for OMAP4.
> Currently the OMAP4 does not hit device off still the
> driver may have support for it.
>
> Signed-off-by: Shubhrajyoti D<shubhrajyoti-l0cyMroinI0@public.gmane.org>
> ---
> Applies on top of patches from Andy Green
> http://www.spinics.net/lists/linux-i2c/msg05632.html
> Tested on OMAP4430
>
> arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
> index 0fe9556..5e2c748 100644
> --- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
> +++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c
> @@ -2130,7 +2130,8 @@ static struct omap_hwmod_class omap44xx_i2c_hwmod_class = {
> };
>
> static struct omap_i2c_dev_attr i2c_dev_attr = {
> - .flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE,
> + .flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE |
> + OMAP_I2C_FLAG_RESET_REGS_POSTIDLE,
> };
>
> /* i2c1 */
^ permalink raw reply [flat|nested] 3+ messages in thread
* How to get the handler of a device that has been open
2011-07-14 16:33 [PATCH v3] OMAP4:hwmod: I2C : I2C context save Shubhrajyoti D
[not found] ` <1310661218-3819-1-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
@ 2011-07-15 14:28 ` Zhang, Shijie
1 sibling, 0 replies; 3+ messages in thread
From: Zhang, Shijie @ 2011-07-15 14:28 UTC (permalink / raw)
To: Shubhrajyoti D, linux-omap@vger.kernel.org
Cc: linux-i2c@vger.kernel.org, khilman@ti.com
Hi all:
I have got a problem while I want to open a mutex device, which has been opened by another process. such as /dev/apls9802als, which is opened while the system boot up. But I have to do some test to its read function in its driver provided to the user space. Is there a way that I can close the handler that has been opened and reopen it by the test program I write? Any hacking way for this? Thanks.
Best Regards
Shijie
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-07-15 14:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-14 16:33 [PATCH v3] OMAP4:hwmod: I2C : I2C context save Shubhrajyoti D
[not found] ` <1310661218-3819-1-git-send-email-shubhrajyoti-l0cyMroinI0@public.gmane.org>
2011-07-14 16:36 ` Shubhrajyoti
2011-07-15 14:28 ` How to get the handler of a device that has been open Zhang, Shijie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).