-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net: dsa: ocelot: felix: utilize shared mscc-miim driver for indirect…
… MDIO access Switch to a shared MDIO access implementation by way of the mdio-mscc-miim driver. Signed-off-by: Colin Foster <colin.foster@in-advantage.com> Tested-by: Vladimir Oltean <vladimir.oltean@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Colin Foster
authored and
David S. Miller
committed
Nov 29, 2021
1 parent
5186c4a
commit b996584
Showing
4 changed files
with
56 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ | ||
/* | ||
* Driver for the MDIO interface of Microsemi network switches. | ||
* | ||
* Author: Colin Foster <colin.foster@in-advantage.com> | ||
* Copyright (C) 2021 Innovative Advantage | ||
*/ | ||
#ifndef MDIO_MSCC_MIIM_H | ||
#define MDIO_MSCC_MIIM_H | ||
|
||
#include <linux/device.h> | ||
#include <linux/phy.h> | ||
#include <linux/regmap.h> | ||
|
||
int mscc_miim_setup(struct device *device, struct mii_bus **bus, | ||
const char *name, struct regmap *mii_regmap, | ||
int status_offset); | ||
|
||
#endif |