public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Kevin Hilman <khilman@deeprootsystems.com>
To: "Pandita, Vikram" <vikram.pandita@ti.com>
Cc: "linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
	Erik Gilling <konkers@android.com>
Subject: Re: [PATCH v2 1/2] OMAP: Zoom2: Add DEBUG_LL interface using Quart
Date: Fri, 11 Sep 2009 15:28:45 -0700	[thread overview]
Message-ID: <4AAACF1D.9050002@deeprootsystems.com> (raw)
In-Reply-To: <FCCFB4CDC6E5564B9182F639FC35608702F9C311DB@dbde02.ent.ti.com>

Pandita, Vikram wrote:
> 
>> -----Original Message-----
>> From: Kevin Hilman [mailto:khilman@deeprootsystems.com]
>>
>>> This patch adds DEBUG_LL interface for Zoom2 board.
>>> The low level debug uart now points corrctly to External Quad uart
>>> controller on detachable debug board.
>>>
>>> The Quad uart is available over GPMC chip select with physical address
>>> 0x10000000.
>>>
>>> This physical address has been mapped to virtual address 0xFB000000
>>> as per static mapping.
>> I see you dropped the UPF_IOREMAP flag. Why do we need a static
>> mapping here?  The early access will be taken care of by the .phys_io
>> field of the mach_desc, no?
> 
> Step 1:
> The first early mapping happens with phys_io. Just for debug uart access.
> Step 2:
> This is over-written by mapping done by omap2_map_common_io -> iotable_init
> 
> I removed the flag UPF_IOREMAP for the serial 8250 driver.
> If UPF_IOREMAP flag is given, then serial driver will do yet one more mapping, 
> which is already done by step 2.
> 
> Hence the flag is no longer needed for serial port mapping.

OK, thanks for clarifying.  After reviewing your DEBUG_LL rework, I also 
notice that it requires a static mapping too.

Kevin

>> Kevin
>>
>>> This patch is adapted from a version by Erik Gilling:
>>> http://android.git.kernel.org/?p=kernel/omap.git;
>>> a=commit;h=e9d72efdd88877d2d6ea74a08983ace0dcc771d3
>>>
>>> Signed-off-by: Vikram Pandita <vikram.pandita@ti.com>
>>> Cc: Erik Gilling <konkers@android.com>
>>> ---
>>>  arch/arm/mach-omap2/board-zoom-debugboard.c |    5 +++--
>>>  arch/arm/mach-omap2/board-zoom2.c           |   19 +++++++++++++++++--
>>>  arch/arm/plat-omap/include/mach/io.h        |    6 ++++++
>>>  3 files changed, 26 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-
>> debugboard.c
>>> index 1f13e2a..70a4bba 100644
>>> --- a/arch/arm/mach-omap2/board-zoom-debugboard.c
>>> +++ b/arch/arm/mach-omap2/board-zoom-debugboard.c
>>> @@ -82,9 +82,10 @@ static inline void __init zoom2_init_smsc911x(void)
>>>
>>>  static struct plat_serial8250_port serial_platform_data[] = {
>>>  	{
>>> -		.mapbase	= 0x10000000,
>>> +		.membase	= IOMEM(ZOOM2_EXT_QUART_VIRT),
>>> +		.mapbase	= ZOOM2_EXT_QUART_PHYS,
>>>  		.irq		= OMAP_GPIO_IRQ(102),
>>> -		.flags		= UPF_BOOT_AUTOCONF|UPF_IOREMAP|UPF_SHARE_IRQ,
>>> +		.flags		= UPF_BOOT_AUTOCONF|UPF_SHARE_IRQ,
>>>  		.irqflags	= IRQF_SHARED | IRQF_TRIGGER_RISING,
>>>  		.iotype		= UPIO_MEM,
>>>  		.regshift	= 1,
>>> diff --git a/arch/arm/mach-omap2/board-zoom2.c b/arch/arm/mach-omap2/board-zoom2.c
>>> index 324009e..467e961 100644
>>> --- a/arch/arm/mach-omap2/board-zoom2.c
>>> +++ b/arch/arm/mach-omap2/board-zoom2.c
>>> @@ -19,10 +19,12 @@
>>>
>>>  #include <asm/mach-types.h>
>>>  #include <asm/mach/arch.h>
>>> +#include <asm/mach/map.h>
>>>
>>>  #include <mach/common.h>
>>>  #include <mach/usb.h>
>>>  #include <mach/keypad.h>
>>> +#include <mach/uncompress.h>
>>>
>>>  #include "mmc-twl4030.h"
>>>
>>> @@ -269,15 +271,28 @@ static void __init omap_zoom2_init(void)
>>>  	usb_musb_init();
>>>  }
>>>
>>> +static struct map_desc zoom2_io_desc[] __initdata = {
>>> +	{
>>> +		.virtual	= ZOOM2_EXT_QUART_VIRT,
>>> +		.pfn		= __phys_to_pfn(ZOOM2_EXT_QUART_PHYS),
>>> +		.length		= ZOOM2_EXT_QUART_SIZE,
>>> +		.type		= MT_DEVICE
>>> +	}
>>> +};
>>> +
>>>  static void __init omap_zoom2_map_io(void)
>>>  {
>>>  	omap2_set_globals_343x();
>>> +
>>> +	/* Map external quad UART virt to phy mapping */
>>> +	iotable_init(zoom2_io_desc, ARRAY_SIZE(zoom2_io_desc));
>>> +
>>>  	omap2_map_common_io();
>>>  }
>>>
>>>  MACHINE_START(OMAP_ZOOM2, "OMAP Zoom2 board")
>>> -	.phys_io	= 0x48000000,
>>> -	.io_pg_offst	= ((0xd8000000) >> 18) & 0xfffc,
>>> +	.phys_io	= ZOOM2_EXT_QUART_PHYS,
>>> +	.io_pg_offst	= ((ZOOM2_EXT_QUART_VIRT) >> 18) & 0xfffc,
>>>  	.boot_params	= 0x80000100,
>>>  	.map_io		= omap_zoom2_map_io,
>>>  	.init_irq	= omap_zoom2_init_irq,
>>> diff --git a/arch/arm/plat-omap/include/mach/io.h b/arch/arm/plat-omap/include/mach/io.h
>>> index 8d32df3..d67f06c 100644
>>> --- a/arch/arm/plat-omap/include/mach/io.h
>>> +++ b/arch/arm/plat-omap/include/mach/io.h
>>> @@ -169,6 +169,12 @@
>>>  #define DSP_MMU_34XX_VIRT	0xe2000000
>>>  #define DSP_MMU_34XX_SIZE	SZ_4K
>>>
>>> +/* Map External Quad UART for Zoom2 board */
>>> +#define ZOOM2_EXT_QUART_PHYS		0x10000000 /* PHY address if fixed */
>>> +#define ZOOM2_EXT_QUART_PHY_TO_VIRT_OFF	0xEB000000
>>> +#define ZOOM2_EXT_QUART_VIRT		0xFB000000
>>> +#define ZOOM2_EXT_QUART_SIZE		SZ_16
>>> +
>>>  /*
>>>   * ----------------------------------------------------------------------------
>>>   * Omap4 specific IO mapping
>>> --
>>> 1.6.3.3.334.g916e1
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


      reply	other threads:[~2009-09-11 22:28 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-11 17:57 [PATCH v2 1/2] OMAP: Zoom2: Add DEBUG_LL interface using Quart Vikram Pandita
2009-09-11 21:39 ` Kevin Hilman
2009-09-11 22:04   ` Pandita, Vikram
2009-09-11 22:28     ` Kevin Hilman [this message]

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=4AAACF1D.9050002@deeprootsystems.com \
    --to=khilman@deeprootsystems.com \
    --cc=konkers@android.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=vikram.pandita@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox