All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: "Shilimkar, Santosh" <santosh.shilimkar@ti.com>
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>
Subject: Re: [PATCH 0/3] Allow late mdesc detection, v3
Date: Tue, 3 Aug 2010 15:56:52 +0300	[thread overview]
Message-ID: <20100803125652.GA5450@atomide.com> (raw)
In-Reply-To: <EAF47CD23C76F840A9E7FCE10091EFAB02C6381053@dbde02.ent.ti.com>

* Shilimkar, Santosh <santosh.shilimkar@ti.com> [100731 15:38]:
> Jeremy,
> > -----Original Message-----
> > From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
> > owner@vger.kernel.org] On Behalf Of Russell King - ARM Linux
> > Sent: Saturday, July 31, 2010 2:55 PM
> > To: linux-arm-kernel@lists.infradead.org; linux-omap@vger.kernel.org; Tony
> > Lindgren
> > Subject: Fwd: [PATCH 0/3] Allow late mdesc detection, v3
> > 
> > Forwarding for OMAP people - as there's outstanding questions about this
> > change for their platforms.
> > 
> > ----- Forwarded message from Jeremy Kerr <jeremy.kerr@canonical.com> -----
> > 
> > Date: Fri, 30 Jul 2010 17:22:11 +0800
> > From: Jeremy Kerr <jeremy.kerr@canonical.com>
> > To: linux-arm-kernel@lists.infradead.org
> > Subject: [PATCH 0/3] Allow late mdesc detection, v3
> > Delivery-date: Sat, 31 Jul 2010 01:25:58 +0100
> > 
> > Hi all,
> > 
> > Currently, we probe for a mdesc early in boot. At this early stage, the
> > only thing we use the mdesc for is to determine the debug page mapping.
> > 
> > However, the debug addresses (phys and virt) need to be coded into the
> > addruart macro anyway; the dynamic probing is only going to tell us what
> > we already know.
> > 
> > These changes allow us to use the addruart macros to find the debug
> > mapping addresses, rather than pulling them out of the mdesc. This means
> > that the addresses are only kept in the one place, and that we don't
> > need the mdesc nearly as early.
> > 
> > The first change updates all of the addruart macros to return both
> > physical and virtual addresses. I've used 'rp' and 'rv' as the macro
> > arguments to indicate which address goes where
> > 
> > The second change updates the debug setup routine to use the addruart
> > macro to establish the debug mapping, now that we can invoke the macro
> > to find the phyical and virtual addresses.
> > 
> > This allows us to delay the requirement to have a mdesc available until
> > much later. For example, we can parse one from the device tree once
> > we've reached C code.
> > 
> > May break OMAP1/2, as the addruart macros are more complex on these
> > platforms. I'd appreciate input from OMAP folks who may well tell me
> > that this isn't possible.
> > 
> Just tried this on OMAP4, and indeed it breaks OMAP2PLUS low level debug
> support.
> 
> Tony recently revamped the complete debug code, so that we can dynamically
> set correct debug port based on machine ID passed by boot-loaders. Based
> on this , the debug code determines the the correct debug port based on
> this using a scratch pad register.
> 
> Tony can comment better on this issue.

Looks like the fix suggested by Jason Wang <jason77.wang@gmail.com>
is needed to make the mdesc series to work on omaps. An updated
version for the mdesc series is here:

http://marc.info/?l=linux-arm-kernel&m=128083927030188&w=2

So with the patch at the link above, the mdesc series

Tested-by: Tony Lindgren <tony@atomide.com>

Regards,

Tony

WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/3] Allow late mdesc detection, v3
Date: Tue, 3 Aug 2010 15:56:52 +0300	[thread overview]
Message-ID: <20100803125652.GA5450@atomide.com> (raw)
In-Reply-To: <EAF47CD23C76F840A9E7FCE10091EFAB02C6381053@dbde02.ent.ti.com>

* Shilimkar, Santosh <santosh.shilimkar@ti.com> [100731 15:38]:
> Jeremy,
> > -----Original Message-----
> > From: linux-omap-owner at vger.kernel.org [mailto:linux-omap-
> > owner at vger.kernel.org] On Behalf Of Russell King - ARM Linux
> > Sent: Saturday, July 31, 2010 2:55 PM
> > To: linux-arm-kernel at lists.infradead.org; linux-omap at vger.kernel.org; Tony
> > Lindgren
> > Subject: Fwd: [PATCH 0/3] Allow late mdesc detection, v3
> > 
> > Forwarding for OMAP people - as there's outstanding questions about this
> > change for their platforms.
> > 
> > ----- Forwarded message from Jeremy Kerr <jeremy.kerr@canonical.com> -----
> > 
> > Date: Fri, 30 Jul 2010 17:22:11 +0800
> > From: Jeremy Kerr <jeremy.kerr@canonical.com>
> > To: linux-arm-kernel at lists.infradead.org
> > Subject: [PATCH 0/3] Allow late mdesc detection, v3
> > Delivery-date: Sat, 31 Jul 2010 01:25:58 +0100
> > 
> > Hi all,
> > 
> > Currently, we probe for a mdesc early in boot. At this early stage, the
> > only thing we use the mdesc for is to determine the debug page mapping.
> > 
> > However, the debug addresses (phys and virt) need to be coded into the
> > addruart macro anyway; the dynamic probing is only going to tell us what
> > we already know.
> > 
> > These changes allow us to use the addruart macros to find the debug
> > mapping addresses, rather than pulling them out of the mdesc. This means
> > that the addresses are only kept in the one place, and that we don't
> > need the mdesc nearly as early.
> > 
> > The first change updates all of the addruart macros to return both
> > physical and virtual addresses. I've used 'rp' and 'rv' as the macro
> > arguments to indicate which address goes where
> > 
> > The second change updates the debug setup routine to use the addruart
> > macro to establish the debug mapping, now that we can invoke the macro
> > to find the phyical and virtual addresses.
> > 
> > This allows us to delay the requirement to have a mdesc available until
> > much later. For example, we can parse one from the device tree once
> > we've reached C code.
> > 
> > May break OMAP1/2, as the addruart macros are more complex on these
> > platforms. I'd appreciate input from OMAP folks who may well tell me
> > that this isn't possible.
> > 
> Just tried this on OMAP4, and indeed it breaks OMAP2PLUS low level debug
> support.
> 
> Tony recently revamped the complete debug code, so that we can dynamically
> set correct debug port based on machine ID passed by boot-loaders. Based
> on this , the debug code determines the the correct debug port based on
> this using a scratch pad register.
> 
> Tony can comment better on this issue.

Looks like the fix suggested by Jason Wang <jason77.wang@gmail.com>
is needed to make the mdesc series to work on omaps. An updated
version for the mdesc series is here:

http://marc.info/?l=linux-arm-kernel&m=128083927030188&w=2

So with the patch at the link above, the mdesc series

Tested-by: Tony Lindgren <tony@atomide.com>

Regards,

Tony

  reply	other threads:[~2010-08-03 12:56 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-31  9:25 Fwd: [PATCH 0/3] Allow late mdesc detection, v3 Russell King - ARM Linux
2010-07-31  9:25 ` Russell King - ARM Linux
2010-07-31 12:45 ` Shilimkar, Santosh
2010-07-31 12:45   ` Shilimkar, Santosh
2010-08-03 12:56   ` Tony Lindgren [this message]
2010-08-03 12:56     ` Tony Lindgren
  -- strict thread matches above, loose matches on Subject: below --
2010-07-30  9:22 Jeremy Kerr

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=20100803125652.GA5450@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=santosh.shilimkar@ti.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.