From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Viresh Kumar <vireshk@kernel.org>,
dmaengine@vger.kernel.org, Vinod Koul <vkoul@kernel.org>
Cc: stable@vger.kernel.org
Subject: Re: [PATCH v1 1/5] dmaengine: dw: Fix FIFO size for Intel Merrifield
Date: Tue, 4 Dec 2018 19:03:07 +0200 [thread overview]
Message-ID: <20181204170307.GF10650@smile.fi.intel.com> (raw)
In-Reply-To: <20181130203646.68615-1-andriy.shevchenko@linux.intel.com>
On Fri, Nov 30, 2018 at 10:36:42PM +0200, Andy Shevchenko wrote:
> Intel Merrifield has a reduced size of FIFO used in iDMA 32-bit controller,
> i.e. 512 bytes instead of 1024.
>
> Fix this by partitioning it as 64 bytes per channel.
>
> Note, in the future we might switch to 'fifo-size' property instead of
> hard coded value.
v2 of the series is coming soon this week, so, don't consider this one.
>
> Fixes: 199244d69458 ("dmaengine: dw: add support of iDMA 32-bit hardware")
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Cc: stable@vger.kernel.org
> ---
> drivers/dma/dw/core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/dma/dw/core.c b/drivers/dma/dw/core.c
> index d0c3e50b39fb..e85b078fc207 100644
> --- a/drivers/dma/dw/core.c
> +++ b/drivers/dma/dw/core.c
> @@ -1059,12 +1059,12 @@ static void dwc_issue_pending(struct dma_chan *chan)
> /*
> * Program FIFO size of channels.
> *
> - * By default full FIFO (1024 bytes) is assigned to channel 0. Here we
> + * By default full FIFO (512 bytes) is assigned to channel 0. Here we
> * slice FIFO on equal parts between channels.
> */
> static void idma32_fifo_partition(struct dw_dma *dw)
> {
> - u64 value = IDMA32C_FP_PSIZE_CH0(128) | IDMA32C_FP_PSIZE_CH1(128) |
> + u64 value = IDMA32C_FP_PSIZE_CH0(64) | IDMA32C_FP_PSIZE_CH1(64) |
> IDMA32C_FP_UPDATE;
> u64 fifo_partition = 0;
>
> --
> 2.19.2
>
--
With Best Regards,
Andy Shevchenko
prev parent reply other threads:[~2018-12-04 17:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-30 20:36 [PATCH v1 1/5] dmaengine: dw: Fix FIFO size for Intel Merrifield Andy Shevchenko
2018-11-30 20:36 ` [PATCH v1 2/5] dmaengine: dw: Add missed multi-block support for iDMA 32-bit Andy Shevchenko
2018-12-04 17:03 ` Andy Shevchenko [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=20181204170307.GF10650@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=dmaengine@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=vireshk@kernel.org \
--cc=vkoul@kernel.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).