mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 10:26:09 +00:00
ravb: Factorise ravb_emac_init function
The E-MAC IP on the R-Car AVB module has different initialization parameters for RX frame size, duplex settings, different offset for transfer speed setting and has magic packet detection support compared to E-MAC on RZ/G2L Gigabit Ethernet module. Factorise the ravb_emac_init function to support the later SoC. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
eb4fd12744
commit
511d74d9d8
@ -987,6 +987,7 @@ struct ravb_hw_info {
|
||||
void (*set_rate)(struct net_device *ndev);
|
||||
int (*set_rx_csum_feature)(struct net_device *ndev, netdev_features_t features);
|
||||
void (*dmac_init)(struct net_device *ndev);
|
||||
void (*emac_init)(struct net_device *ndev);
|
||||
const char (*gstrings_stats)[ETH_GSTRING_LEN];
|
||||
size_t gstrings_size;
|
||||
netdev_features_t net_hw_features;
|
||||
|
@ -425,8 +425,7 @@ error:
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
/* E-MAC init function */
|
||||
static void ravb_emac_init(struct net_device *ndev)
|
||||
static void ravb_rcar_emac_init(struct net_device *ndev)
|
||||
{
|
||||
/* Receive frame limit set register */
|
||||
ravb_write(ndev, ndev->mtu + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN, RFLR);
|
||||
@ -452,6 +451,15 @@ static void ravb_emac_init(struct net_device *ndev)
|
||||
ravb_write(ndev, ECSIPR_ICDIP | ECSIPR_MPDIP | ECSIPR_LCHNGIP, ECSIPR);
|
||||
}
|
||||
|
||||
/* E-MAC init function */
|
||||
static void ravb_emac_init(struct net_device *ndev)
|
||||
{
|
||||
struct ravb_private *priv = netdev_priv(ndev);
|
||||
const struct ravb_hw_info *info = priv->info;
|
||||
|
||||
info->emac_init(ndev);
|
||||
}
|
||||
|
||||
static void ravb_rcar_dmac_init(struct net_device *ndev)
|
||||
{
|
||||
struct ravb_private *priv = netdev_priv(ndev);
|
||||
@ -1999,6 +2007,7 @@ static const struct ravb_hw_info ravb_gen3_hw_info = {
|
||||
.set_rate = ravb_set_rate,
|
||||
.set_rx_csum_feature = ravb_set_features_rx_csum,
|
||||
.dmac_init = ravb_rcar_dmac_init,
|
||||
.emac_init = ravb_rcar_emac_init,
|
||||
.gstrings_stats = ravb_gstrings_stats,
|
||||
.gstrings_size = sizeof(ravb_gstrings_stats),
|
||||
.net_hw_features = NETIF_F_RXCSUM,
|
||||
@ -2019,6 +2028,7 @@ static const struct ravb_hw_info ravb_gen2_hw_info = {
|
||||
.set_rate = ravb_set_rate,
|
||||
.set_rx_csum_feature = ravb_set_features_rx_csum,
|
||||
.dmac_init = ravb_rcar_dmac_init,
|
||||
.emac_init = ravb_rcar_emac_init,
|
||||
.gstrings_stats = ravb_gstrings_stats,
|
||||
.gstrings_size = sizeof(ravb_gstrings_stats),
|
||||
.net_hw_features = NETIF_F_RXCSUM,
|
||||
|
Loading…
x
Reference in New Issue
Block a user