cregit-Linux how code gets into the kernel

Release 4.11 drivers/net/ethernet/stmicro/stmmac/dwmac100_core.c

/*******************************************************************************
  This is the driver for the MAC 10/100 on-chip Ethernet controller
  currently tested on all the ST boards based on STb7109 and stx7200 SoCs.

  DWC Ether MAC 10/100 Universal version 4.0 has been used for developing
  this code.

  This only implements the mac core functions for this chip.

  Copyright (C) 2007-2009  STMicroelectronics Ltd

  This program is free software; you can redistribute it and/or modify it
  under the terms and conditions of the GNU General Public License,
  version 2, as published by the Free Software Foundation.

  This program is distributed in the hope it will be useful, but WITHOUT
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  more details.

  The full GNU General Public License is included in this distribution in
  the file called "COPYING".

  Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
*******************************************************************************/

#include <linux/crc32.h>
#include <asm/io.h>
#include "dwmac100.h"


static void dwmac100_core_init(struct mac_device_info *hw, int mtu) { void __iomem *ioaddr = hw->pcsr; u32 value = readl(ioaddr + MAC_CONTROL); writel((value | MAC_CORE_INIT), ioaddr + MAC_CONTROL); #ifdef STMMAC_VLAN_TAG_USED writel(ETH_P_8021Q, ioaddr + MAC_VLAN1); #endif }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro4575.00%250.00%
Vince Bridgers1525.00%250.00%
Total60100.00%4100.00%


static void dwmac100_dump_mac_regs(struct mac_device_info *hw, u32 *reg_space) { void __iomem *ioaddr = hw->pcsr; reg_space[MAC_CONTROL / 4] = readl(ioaddr + MAC_CONTROL); reg_space[MAC_ADDR_HIGH / 4] = readl(ioaddr + MAC_ADDR_HIGH); reg_space[MAC_ADDR_LOW / 4] = readl(ioaddr + MAC_ADDR_LOW); reg_space[MAC_HASH_HIGH / 4] = readl(ioaddr + MAC_HASH_HIGH); reg_space[MAC_HASH_LOW / 4] = readl(ioaddr + MAC_HASH_LOW); reg_space[MAC_FLOW_CTRL / 4] = readl(ioaddr + MAC_FLOW_CTRL); reg_space[MAC_VLAN1 / 4] = readl(ioaddr + MAC_VLAN1); reg_space[MAC_VLAN2 / 4] = readl(ioaddr + MAC_VLAN2); }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro7353.68%250.00%
Corentin Labbe5238.24%125.00%
Vince Bridgers118.09%125.00%
Total136100.00%4100.00%


static int dwmac100_rx_ipc_enable(struct mac_device_info *hw) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Deepak Sikri1178.57%150.00%
Vince Bridgers321.43%150.00%
Total14100.00%2100.00%


static int dwmac100_irq_status(struct mac_device_info *hw, struct stmmac_extra_stats *x) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro1684.21%480.00%
Vince Bridgers315.79%120.00%
Total19100.00%5100.00%


static void dwmac100_set_umac_addr(struct mac_device_info *hw, unsigned char *addr, unsigned int reg_n) { void __iomem *ioaddr = hw->pcsr; stmmac_set_mac_addr(ioaddr, addr, MAC_ADDR_HIGH, MAC_ADDR_LOW); }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro2870.00%266.67%
Vince Bridgers1230.00%133.33%
Total40100.00%3100.00%


static void dwmac100_get_umac_addr(struct mac_device_info *hw, unsigned char *addr, unsigned int reg_n) { void __iomem *ioaddr = hw->pcsr; stmmac_get_mac_addr(ioaddr, addr, MAC_ADDR_HIGH, MAC_ADDR_LOW); }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro2870.00%266.67%
Vince Bridgers1230.00%133.33%
Total40100.00%3100.00%


static void dwmac100_set_filter(struct mac_device_info *hw, struct net_device *dev) { void __iomem *ioaddr = (void __iomem *)dev->base_addr; u32 value = readl(ioaddr + MAC_CONTROL); if (dev->flags & IFF_PROMISC) { value |= MAC_CONTROL_PR; value &= ~(MAC_CONTROL_PM | MAC_CONTROL_IF | MAC_CONTROL_HO | MAC_CONTROL_HP); } else if ((netdev_mc_count(dev) > HASH_TABLE_SIZE) || (dev->flags & IFF_ALLMULTI)) { value |= MAC_CONTROL_PM; value &= ~(MAC_CONTROL_PR | MAC_CONTROL_IF | MAC_CONTROL_HO); writel(0xffffffff, ioaddr + MAC_HASH_HIGH); writel(0xffffffff, ioaddr + MAC_HASH_LOW); } else if (netdev_mc_empty(dev)) { /* no multicast */ value &= ~(MAC_CONTROL_PM | MAC_CONTROL_PR | MAC_CONTROL_IF | MAC_CONTROL_HO | MAC_CONTROL_HP); } else { u32 mc_filter[2]; struct netdev_hw_addr *ha; /* Perfect filter mode for physical address and Hash * filter for multicast */ value |= MAC_CONTROL_HP; value &= ~(MAC_CONTROL_PM | MAC_CONTROL_PR | MAC_CONTROL_IF | MAC_CONTROL_HO); memset(mc_filter, 0, sizeof(mc_filter)); netdev_for_each_mc_addr(ha, dev) { /* The upper 6 bits of the calculated CRC are used to * index the contens of the hash table */ int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26; /* The most significant bit determines the register to * use (H/L) while the other 5 bits determine the bit * within the register. */ mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31); } writel(mc_filter[0], ioaddr + MAC_HASH_LOW); writel(mc_filter[1], ioaddr + MAC_HASH_HIGH); } writel(value, ioaddr + MAC_CONTROL); }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro25998.11%375.00%
Vince Bridgers51.89%125.00%
Total264100.00%4100.00%


static void dwmac100_flow_ctrl(struct mac_device_info *hw, unsigned int duplex, unsigned int fc, unsigned int pause_time) { void __iomem *ioaddr = hw->pcsr; unsigned int flow = MAC_FLOW_CTRL_ENABLE; if (duplex) flow |= (pause_time << MAC_FLOW_CTRL_PT_SHIFT); writel(flow, ioaddr + MAC_FLOW_CTRL); }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro4779.66%266.67%
Vince Bridgers1220.34%133.33%
Total59100.00%3100.00%

/* No PMT module supported on ST boards with this Eth chip. */
static void dwmac100_pmt(struct mac_device_info *hw, unsigned long mode) { return; }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro1381.25%266.67%
Vince Bridgers318.75%133.33%
Total16100.00%3100.00%

static const struct stmmac_ops dwmac100_ops = { .core_init = dwmac100_core_init, .rx_ipc = dwmac100_rx_ipc_enable, .dump_regs = dwmac100_dump_mac_regs, .host_irq_status = dwmac100_irq_status, .set_filter = dwmac100_set_filter, .flow_ctrl = dwmac100_flow_ctrl, .pmt = dwmac100_pmt, .set_umac_addr = dwmac100_set_umac_addr, .get_umac_addr = dwmac100_get_umac_addr, };
struct mac_device_info *dwmac100_setup(void __iomem *ioaddr, int *synopsys_id) { struct mac_device_info *mac; mac = kzalloc(sizeof(const struct mac_device_info), GFP_KERNEL); if (!mac) return NULL; pr_info("\tDWMAC100\n"); mac->pcsr = ioaddr; mac->mac = &dwmac100_ops; mac->dma = &dwmac100_dma_ops; mac->link.port = MAC_CONTROL_PS; mac->link.duplex = MAC_CONTROL_F; mac->link.speed = 0; mac->mii.addr = MAC_MII_ADDR; mac->mii.data = MAC_MII_DATA; mac->mii.addr_shift = 11; mac->mii.addr_mask = 0x0000F800; mac->mii.reg_shift = 6; mac->mii.reg_mask = 0x000007C0; mac->mii.clk_csr_shift = 2; mac->mii.clk_csr_mask = GENMASK(5, 2); /* Synopsys Id is not available on old chips */ *synopsys_id = 0; return mac; }

Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro9656.47%337.50%
Corentin Labbe4727.65%112.50%
Dan Carpenter84.71%112.50%
Alexandre Torgue74.12%112.50%
Vince Bridgers63.53%112.50%
Joao Pinto63.53%112.50%
Total170100.00%8100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Giuseppe Cavallaro66174.94%736.84%
Corentin Labbe10011.34%315.79%
Vince Bridgers829.30%315.79%
Deepak Sikri131.47%15.26%
Dan Carpenter80.91%15.26%
Alexandre Torgue70.79%15.26%
Joao Pinto60.68%15.26%
Alexey Dobriyan30.34%15.26%
Stephen Hemminger20.23%15.26%
Total882100.00%19100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.