All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kevin Hilman <khilman@deeprootsystems.com>
To: Cyril Chemparathy <cyril@ti.com>
Cc: netdev@vger.kernel.org,
	davinci-linux-open-source@linux.davincidsp.com,
	linux-omap@vger.kernel.org, michael.williamson@criticallink.com,
	caglarakyuz@gmail.com, bparrot@ti.com
Subject: Re: [PATCH 0/9] post cpdma/mdio refactoring fixes
Date: Tue, 14 Sep 2010 11:50:39 -0700	[thread overview]
Message-ID: <87hbhsnoqo.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1284401251-8846-1-git-send-email-cyril@ti.com> (Cyril Chemparathy's message of "Mon, 13 Sep 2010 14:07:22 -0400")

Cyril Chemparathy <cyril@ti.com> writes:

> This series consists of fixes for issues found during broader testing of the
> davinci cpdma/mdio separation series.
>
> The fixes included here are:
>
>   1. Ability to force 100/full rather than auto-detect phy.  This is necessary
>      for the external switch on the da830 evm platform
>
>   2. Fix end-of-queue requeue to include checks at submission time (in
>      addition to pre-existing completion time checks).
>
>   3. Cleanups to rx path error handling.  This prevents unnecessary stack
>      dumps for perfectly legal situations.
>
>   4. Work around for emac-soft-reset tie-up to mdio controller.  This affects
>      all da8xx family devices (and possibly am35xx as well).
>
>   5. Reworked hard-coded scan-time estimate to use a more accurate calculated
>      number instead.
>
>   6. Code to generate cpdma register dumps, useful during debug.
>
>
> Many thanks to Mike and Caglar for patiently working with me through these
> issues

Thanks for working with them to resolve these issues.

> I've taken the liberty of adding their sign offs.

A sign-off is only for those on the delivery path of the patch.  Can you
update changing those to Tested-By  tags?

If you prefer, you can respin the original series with these fixes
included instead of creating a separate series.  I will then just drop
the original, and queue the new one.

Thanks,

Kevin

> Cyril Chemparathy (9):
>   net: davinci_emac: allow forced 100/full via phy_id
>   davinci: specify phy_id rather than auto-detect
>   net: davinci_cpdma: requeue on early end-of-queue
>   net: davinci_emac: fix rx error handling
>   net: davinci_mdio: separate out controller reset
>   net: davinci_mdio: use calculated bus access times
>   net: davinci_mdio: work around emac soft-reset during i/o
>   net: davinci_cpdma: add register dump routines
>   net: davinci_emac: extended register dumps on tx timeout
>
>  arch/arm/mach-davinci/board-da830-evm.c    |    2 +
>  arch/arm/mach-davinci/board-da850-evm.c    |    3 +
>  arch/arm/mach-davinci/board-dm365-evm.c    |    4 +
>  arch/arm/mach-davinci/board-dm644x-evm.c   |    3 +
>  arch/arm/mach-davinci/board-dm646x-evm.c   |    5 +
>  arch/arm/mach-davinci/board-mityomapl138.c |    3 +
>  arch/arm/mach-davinci/board-neuros-osd2.c  |    4 +
>  arch/arm/mach-davinci/board-sffsdr.c       |    4 +
>  drivers/net/davinci_cpdma.c                |  132 ++++++++++++++++++-
>  drivers/net/davinci_cpdma.h                |    3 +
>  drivers/net/davinci_emac.c                 |   31 ++++-
>  drivers/net/davinci_mdio.c                 |  195 ++++++++++++++++++++--------
>  include/linux/davinci_emac.h               |    7 +
>  13 files changed, 334 insertions(+), 62 deletions(-)
>
> --
> 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

      parent reply	other threads:[~2010-09-14 18:50 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-13 18:07 [PATCH 0/9] post cpdma/mdio refactoring fixes Cyril Chemparathy
     [not found] ` <1284401251-8846-1-git-send-email-cyril-l0cyMroinI0@public.gmane.org>
2010-09-13 18:07   ` [PATCH 1/9] net: davinci_emac: allow forced 100/full via phy_id Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 2/9] davinci: specify phy_id rather than auto-detect Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 3/9] net: davinci_cpdma: requeue on early end-of-queue Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 4/9] net: davinci_emac: fix rx error handling Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 5/9] net: davinci_mdio: separate out controller reset Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 6/9] net: davinci_mdio: use calculated bus access times Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 7/9] net: davinci_mdio: work around emac soft-reset during i/o Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 8/9] net: davinci_cpdma: add register dump routines Cyril Chemparathy
2010-09-13 18:07 ` [PATCH 9/9] net: davinci_emac: extended register dumps on tx timeout Cyril Chemparathy
2010-09-14 18:50 ` 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=87hbhsnoqo.fsf@deeprootsystems.com \
    --to=khilman@deeprootsystems.com \
    --cc=bparrot@ti.com \
    --cc=caglarakyuz@gmail.com \
    --cc=cyril@ti.com \
    --cc=davinci-linux-open-source@linux.davincidsp.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=michael.williamson@criticallink.com \
    --cc=netdev@vger.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 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.