From: Roger Quadros <rogerq@ti.com>
To: Tony Lindgren <tony@atomide.com>,
Robert ABEL <rabel@cit-ec.uni-bielefeld.de>
Cc: balbi@ti.com, linux-omap@vger.kernel.org,
linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
linux@arm.linux.org.uk
Subject: Re: [PATCH 0/8 v4] ARM OMAP2+ GPMC: fixes and bus children
Date: Fri, 6 Mar 2015 14:15:01 +0200 [thread overview]
Message-ID: <54F99A45.2020409@ti.com> (raw)
In-Reply-To: <20150306005813.GF13510@atomide.com>
On 06/03/15 02:58, Tony Lindgren wrote:
> * Robert ABEL <rabel@cit-ec.uni-bielefeld.de> [150227 08:00]:
>> These are the changes I proposed in these patch series: [1], [2], [3], [4]
>> rebased to 3.19 as well as new changes for little bugs I noticed while
>> preparing this patch series as well as changes introduced via comments.
>>
>> 1. DEBUG was undefined in source code --> remove offending lines
>> 2. add capability to have busses as children of the GPMC and multiple
>> devices on a bus. See [2] for an example DTS syntax.
>> 3. debug output was unaligned --> align it
>> 4. output for copy-pasting to DTS had erroneous timing outputs and
>> made it hard to copy-paste --> correct timing values, add comments
>> as DTS comments.
>> 5. WAITMONITORINGTIME is expressed as GPMC_CLK cycles for all accesses.
>> GPMCFCLKDIVIDER is used as a divider, so it must always be programmed.
>> 6. GPMCFCLKDIVIDER is calculated according to WAITMONITORINGTIME for
>> asynchronous accesses inside the driver --> asynchronous accesses now
>> completely decoupled from gpmc,sync-clk-ps.
>> 7. WAITMONITORINGTIME was being programmed/shown in GPMC_FCLK cycles instead
>> of GPMC_CLK cycles --> add clock domain information where necessary.
>> 8. Calculated values for WAITMONITORINGTIME and CLKACTIVATIONTIME that were
>> outside the defined range would not raise an error.
>> DEVICESIZE, ATTACHEDDEVICEPAGELENGTH, WAITMONITORINGTIME and
>> CLKACTIVATIONTIME would not be marked as incorrect on DTS output.
>> --> Fix all of these.
>
> Thanks for fixing all these issues:
>
> Acked-by: Tony Lindgren <tony@atomide.com>
Thanks. Patches are added to my git tree at
git@github.com:rogerq/linux.git
in the branch
for-v4.1/gpmc-omap
cheers,
-roger
>
>
>> [1]: https://lkml.org/lkml/2015/2/12/495
>> [2]: https://lkml.org/lkml/2015/2/16/337
>> [3]: https://lkml.org/lkml/2015/2/24/609
>> [4]: https://lkml.org/lkml/2015/2/26/387
>>
>> Robert ABEL (9):
>> ARM OMAP2+ GPMC: don't undef DEBUG
>> ARM OMAP2+ GPMC: add bus children
>> ARM OMAP2+ GPMC: fix debug output alignment
>> ARM OMAP2+ GPMC: change get_gpmc_timing_reg output for DTS
>> ARM OMAP2+ GPMC: always program GPMCFCLKDIVIDER
>> ARM OMAP2+ GPMC: calculate GPMCFCLKDIVIDER based on WAITMONITORINGTIME
>> ARM OMAP2+ GPMC: fix WAITMONITORINGTIME divider bug
>> ARM OMAP2+ GPMC: fix programming/showing reserved timing parameters
>>
>> arch/arm/mach-omap2/gpmc-nand.c | 17 +-
>> arch/arm/mach-omap2/gpmc-onenand.c | 4 +-
>> arch/arm/mach-omap2/usb-tusb6010.c | 4 +-
>> drivers/memory/Makefile | 2 +
>> drivers/memory/omap-gpmc.c | 313 +++++++++++++++++++++++++++++--------
>> include/linux/omap-gpmc.h | 2 +-
>> 6 files changed, 265 insertions(+), 77 deletions(-)
>>
>> --
>> 2.3.0
>>
WARNING: multiple messages have this Message-ID (diff)
From: Roger Quadros <rogerq@ti.com>
To: Tony Lindgren <tony@atomide.com>,
Robert ABEL <rabel@cit-ec.uni-bielefeld.de>
Cc: <balbi@ti.com>, <linux-omap@vger.kernel.org>,
<linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux@arm.linux.org.uk>
Subject: Re: [PATCH 0/8 v4] ARM OMAP2+ GPMC: fixes and bus children
Date: Fri, 6 Mar 2015 14:15:01 +0200 [thread overview]
Message-ID: <54F99A45.2020409@ti.com> (raw)
In-Reply-To: <20150306005813.GF13510@atomide.com>
On 06/03/15 02:58, Tony Lindgren wrote:
> * Robert ABEL <rabel@cit-ec.uni-bielefeld.de> [150227 08:00]:
>> These are the changes I proposed in these patch series: [1], [2], [3], [4]
>> rebased to 3.19 as well as new changes for little bugs I noticed while
>> preparing this patch series as well as changes introduced via comments.
>>
>> 1. DEBUG was undefined in source code --> remove offending lines
>> 2. add capability to have busses as children of the GPMC and multiple
>> devices on a bus. See [2] for an example DTS syntax.
>> 3. debug output was unaligned --> align it
>> 4. output for copy-pasting to DTS had erroneous timing outputs and
>> made it hard to copy-paste --> correct timing values, add comments
>> as DTS comments.
>> 5. WAITMONITORINGTIME is expressed as GPMC_CLK cycles for all accesses.
>> GPMCFCLKDIVIDER is used as a divider, so it must always be programmed.
>> 6. GPMCFCLKDIVIDER is calculated according to WAITMONITORINGTIME for
>> asynchronous accesses inside the driver --> asynchronous accesses now
>> completely decoupled from gpmc,sync-clk-ps.
>> 7. WAITMONITORINGTIME was being programmed/shown in GPMC_FCLK cycles instead
>> of GPMC_CLK cycles --> add clock domain information where necessary.
>> 8. Calculated values for WAITMONITORINGTIME and CLKACTIVATIONTIME that were
>> outside the defined range would not raise an error.
>> DEVICESIZE, ATTACHEDDEVICEPAGELENGTH, WAITMONITORINGTIME and
>> CLKACTIVATIONTIME would not be marked as incorrect on DTS output.
>> --> Fix all of these.
>
> Thanks for fixing all these issues:
>
> Acked-by: Tony Lindgren <tony@atomide.com>
Thanks. Patches are added to my git tree at
git@github.com:rogerq/linux.git
in the branch
for-v4.1/gpmc-omap
cheers,
-roger
>
>
>> [1]: https://lkml.org/lkml/2015/2/12/495
>> [2]: https://lkml.org/lkml/2015/2/16/337
>> [3]: https://lkml.org/lkml/2015/2/24/609
>> [4]: https://lkml.org/lkml/2015/2/26/387
>>
>> Robert ABEL (9):
>> ARM OMAP2+ GPMC: don't undef DEBUG
>> ARM OMAP2+ GPMC: add bus children
>> ARM OMAP2+ GPMC: fix debug output alignment
>> ARM OMAP2+ GPMC: change get_gpmc_timing_reg output for DTS
>> ARM OMAP2+ GPMC: always program GPMCFCLKDIVIDER
>> ARM OMAP2+ GPMC: calculate GPMCFCLKDIVIDER based on WAITMONITORINGTIME
>> ARM OMAP2+ GPMC: fix WAITMONITORINGTIME divider bug
>> ARM OMAP2+ GPMC: fix programming/showing reserved timing parameters
>>
>> arch/arm/mach-omap2/gpmc-nand.c | 17 +-
>> arch/arm/mach-omap2/gpmc-onenand.c | 4 +-
>> arch/arm/mach-omap2/usb-tusb6010.c | 4 +-
>> drivers/memory/Makefile | 2 +
>> drivers/memory/omap-gpmc.c | 313 +++++++++++++++++++++++++++++--------
>> include/linux/omap-gpmc.h | 2 +-
>> 6 files changed, 265 insertions(+), 77 deletions(-)
>>
>> --
>> 2.3.0
>>
next prev parent reply other threads:[~2015-03-06 12:15 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-27 15:56 [PATCH 0/8 v4] ARM OMAP2+ GPMC: fixes and bus children Robert ABEL
2015-02-27 15:56 ` [PATCH 1/8 v4] ARM OMAP2+ GPMC: don't undef DEBUG Robert ABEL
2015-02-27 15:56 ` [PATCH 2/8 v4] ARM OMAP2+ GPMC: add bus children Robert ABEL
2015-02-27 15:56 ` [PATCH 3/8 v4] ARM OMAP2+ GPMC: fix debug output alignment Robert ABEL
2015-02-27 15:56 ` [PATCH 4/8 v4] ARM OMAP2+ GPMC: change get_gpmc_timing_reg output for DTS Robert ABEL
2015-02-27 15:56 ` [PATCH 5/8 v4] ARM OMAP2+ GPMC: always program GPMCFCLKDIVIDER Robert ABEL
2015-02-27 15:56 ` [PATCH 6/8 v4] ARM OMAP2+ GPMC: calculate GPMCFCLKDIVIDER based on WAITMONITORINGTIME Robert ABEL
2015-02-27 15:56 ` [PATCH 7/8 v4] ARM OMAP2+ GPMC: fix WAITMONITORINGTIME divider bug Robert ABEL
2015-02-27 15:56 ` [PATCH 8/8 v4] ARM OMAP2+ GPMC: fix programming/showing reserved timing parameters Robert ABEL
2015-03-06 0:58 ` [PATCH 0/8 v4] ARM OMAP2+ GPMC: fixes and bus children Tony Lindgren
2015-03-06 12:15 ` Roger Quadros [this message]
2015-03-06 12:15 ` Roger Quadros
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=54F99A45.2020409@ti.com \
--to=rogerq@ti.com \
--cc=balbi@ti.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=rabel@cit-ec.uni-bielefeld.de \
--cc=tony@atomide.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.