linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: b-cousson@ti.com (Cousson, Benoit)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 06/13] OMAP3: DMA: hwmod: add system DMA
Date: Thu, 04 Nov 2010 08:30:29 -0400	[thread overview]
Message-ID: <4CD2A765.404@ti.com> (raw)
In-Reply-To: <E0D41E29EB0DAC4E9F3FF173962E9E9402DC03B7B4@dbde02.ent.ti.com>

On 11/4/2010 3:01 AM, G, Manjunath Kondaiah wrote:
> Hi Benoit,
>
>> From: Cousson, Benoit
>> Sent: Thursday, November 04, 2010 9:59 AM
>>
>> Hi Manjunath,
>>
>> On 11/3/2010 8:59 AM, G, Manjunath Kondaiah wrote:
>>> Kevin/Benoit,
>>>
>>>> [mailto:linux-omap-owner at vger.kernel.org] On Behalf Of G,
>>>> Manjunath Kondaiah
>>>> Sent: Tuesday, October 26, 2010 6:55 PM
>>>>
>>>> Add OMAP3 DMA hwmod structures.
>>>>
>>>> Signed-off-by: G, Manjunath Kondaiah<manjugk@ti.com>
>>>> Cc: Benoit Cousson<b-cousson@ti.com>
>>>> Cc: Kevin Hilman<khilman@deeprootsystems.com>
>>>> Cc: Santosh Shilimkar<santosh.shilimkar@ti.com>
>>>> ---
>>>>    arch/arm/mach-omap2/omap_hwmod_3xxx_data.c |   93
>>>> ++++++++++++++++++++++++++++
>>>>    1 files changed, 93 insertions(+), 0 deletions(-)
>>>>
>>>> diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
>>>> b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
>>>> index ed6bf4a..4a5231c 100644
>>> [...]
>>>> +	.prcm = {
>>>> +		.omap2 = {
>>>> +			.prcm_reg_id		= 1,
>>>> +			.module_bit		=
>>>> OMAP3430_ST_SDMA_SHIFT,
>>>> +			.idlest_reg_id		= 1,
>>>> +			.idlest_idle_bit	=
>>>> OMAP3430_ST_SDMA_SHIFT,
>>>
>>> Looks like the .module_offs field is missing here. Since
>>> ST_SDMA bit belongs to CM_IDLEST1_CORE register, .module_offs should
>>> be CORE_MOD.
>>>
>>> But, it is observed that, using .module_offs results in warning dump
>>> during bootup. This is due to, ST_SDMA bit in standby mode. Since
>>> there is no fclk for DMA, this bit will never change till
>> DMA channel
>>> is requested for data transfer.
>>>
>>> We might have to bypass calling "omap2_cm_wait_module_ready" in
>>> "_wait_target_ready" in omap_hwmod.c
>>>
>>> With exising flags, we can use "HWMOD_NO_IDLEST" flag, but this
>>> flag has different meaning. How about using new flag like
>>> "HWMOD_NO_FCLK_OPCLK" and if it is set, return without calling
>>> "omap2_cm_wait_module_ready"
>>>
>>> Any better suggestion to handle this issue?
>>
>> Well, yes, use HWMOD_NO_IDLEST and remove idlest_reg_id&
>> idlest_idle_bit entries in the omap2 structure.
>>
>> ST_SDMA is the standby status of the SDMA, but there is no
>> idle status
>> on that IP, so you cannot do anything.
>> The standby will just reflect the activity of the master port of the
>> DMA, but it will give you no information about the slave port
>> and thus
>> we do not have any module ready information.
>
> Thanks for the feedback.
>
> This change is introduced as per kevin's review comment at:
> http://www.mail-archive.com/linux-omap at vger.kernel.org/msg34278.html

Well this register is confusing, because he uses the same naming 
convention but with a difference meaning:

ST_SDMA: System DMA standby status.
- 0x0: System DMA is active.
- 0x1: System DMA is in standby mode.

> I am ok to use "HWMOD_NO_IDLEST" if kevin also agrees

He will... Otherwise I will throw him into the New England Aquarium like 
Linus :-)

Benoit

  reply	other threads:[~2010-11-04 12:30 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-26 13:25 [PATCH v3 00/13] OMAP: DMA: hwmod and DMA as platform device G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 01/13] OMAP: DMA: Replace read/write macros with functions G, Manjunath Kondaiah
2010-10-26 14:48   ` Nishanth Menon
2010-10-27  3:54     ` G, Manjunath Kondaiah
2010-10-27 14:26       ` Menon, Nishanth
2010-10-29  8:15         ` G, Manjunath Kondaiah
2010-11-09 21:37   ` Kevin Hilman
2010-11-10 14:01     ` G, Manjunath Kondaiah
2010-11-10 16:03       ` Kevin Hilman
2010-11-10 17:16         ` G, Manjunath Kondaiah
2010-11-10 17:35           ` Kevin Hilman
2010-10-26 13:25 ` [PATCH v3 02/13] OMAP: DMA: Introduce errata handling feature G, Manjunath Kondaiah
2010-11-09 22:12   ` Kevin Hilman
2010-11-10 14:02     ` G, Manjunath Kondaiah
2010-11-10 16:26       ` Kevin Hilman
2010-11-10 17:39         ` G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 03/13] OMAP: DMA: Introduce DMA device attributes G, Manjunath Kondaiah
2010-11-09 21:46   ` Kevin Hilman
2010-10-26 13:25 ` [PATCH v3 04/13] OMAP2420: DMA: hwmod: add system DMA G, Manjunath Kondaiah
2010-11-09 23:13   ` Kevin Hilman
2010-11-11 23:04     ` Kevin Hilman
2010-10-26 13:25 ` [PATCH v3 05/13] OMAP2430: " G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 06/13] OMAP3: " G, Manjunath Kondaiah
2010-11-03 12:59   ` G, Manjunath Kondaiah
2010-11-04  4:29     ` Cousson, Benoit
2010-11-04  7:01       ` G, Manjunath Kondaiah
2010-11-04 12:30         ` Cousson, Benoit [this message]
2010-11-04 15:48           ` Kevin Hilman
2010-10-26 13:25 ` [PATCH v3 07/13] OMAP4: " G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 08/13] OMAP1: DMA: Introduce DMA driver as platform device G, Manjunath Kondaiah
2010-11-09 22:23   ` Kevin Hilman
2010-11-10 14:02     ` G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 09/13] OMAP2+: DMA: hwmod: Device registration G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 10/13] OMAP: DMA: Convert DMA library into DMA platform Driver G, Manjunath Kondaiah
2010-11-09 22:26   ` Kevin Hilman
2010-11-10 14:02     ` G, Manjunath Kondaiah
2010-11-10 16:24       ` Kevin Hilman
2010-11-10 17:23         ` G, Manjunath Kondaiah
2010-11-10 17:56           ` Kevin Hilman
2010-11-09 23:29   ` Kevin Hilman
2010-11-10 14:02     ` G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 11/13] OMAP: DMA: Use DMA device attributes G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 12/13] OMAP2+: DMA: descriptor autoloading feature G, Manjunath Kondaiah
2010-10-26 13:25 ` [PATCH v3 13/13] OMAP: PM: DMA: Enable runtime pm G, Manjunath Kondaiah
2010-11-09 22:48   ` Kevin Hilman
2010-11-10 14:02     ` G, Manjunath Kondaiah
2010-11-10 16:14       ` Kevin Hilman
2010-10-27  4:57 ` [PATCH v3 00/13] OMAP: DMA: hwmod and DMA as platform device G, Manjunath Kondaiah
2010-11-09 23:11 ` Kevin Hilman
2010-11-10 14:02   ` G, Manjunath Kondaiah

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CD2A765.404@ti.com \
    --to=b-cousson@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).