Merge branch 'libphy_mmd'
authorDavid S. Miller <davem@davemloft.net>
Thu, 31 Jul 2014 03:00:27 +0000 (20:00 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 31 Jul 2014 03:00:27 +0000 (20:00 -0700)
commit989e9ad0c40862003a6bd85b4a3db45d49246e09
treef1b7d87f00ab699c665418eee323acced26ac83f
parent9e6492ec99c24b88a7c57623e5664d389261bf4e
parent49193a66f00148443288a83c6ac377a641b10bd5
Merge branch 'libphy_mmd'

Vince Bridgers says:

====================
net: libphy: Add phy specific functions to access mmd regs

This set of patches addresses a problem found with the Micrel ksz9021 phy and
libphy, where the ksz9021 phy does not support mmd extended register access
per the IEEE specification as assumed by libphy. The first patch adds a
framework for phy specific support to specify their own function to access
extended phy registers, return a failure code if not supported, or to default
to libphy's IEEE defined method for accessing the mmd extended phy registers.

This issue was found by using the Synopsys EMAC and a Micrel ksz9021 phy on the
Altera Cyclone 5 SOC development kit. This patch was tested on the same system
in both positive and negative test cases.

V5: Revert name of mmd register access functions, check for phy specific
    driver override functions in mmd register access functions per
    Florian's comments to minimize source code changes
V4: Correct error when formatting V3 patch - erroneous text cut from code
V3: Correct formatting of function arguments, remove return statement from
    NULL functions, and add patch for PHY driver documentation per review
    comments.
V2: Split the original patch submission into seperate patches for the libphy
    framework required for the modification and for the Micrel Phy.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>