Commit 37448f7d authored by Eugene Surovegin's avatar Eugene Surovegin Committed by Jeff Garzik

[PATCH] New PowerPC 4xx on-chip ethernet controller driver

This patch replaces current PowerPC 4xx EMAC driver with
new, re-written from the scratch version. This patch is quite big
(~234K) because there is virtualy 0% of common code between old and
new version.

New driver uses NAPI, it solves stability problems under heavy packet
load and low memory, corrects chip register access and fixes numerous
small bugs I don't even remember now.

This patch has been tested on all supported in 2.6 PPC 4xx boards.
It's been used in production for almost a year now on custom
4xx hardware. PPC32 specific parts are already upstream.

Patch was acked by the current EMAC driver maintainer (Matt Porter). I
will be maintaining this new version.
Signed-off-by: default avatarEugene Surovegin <ebs@ebshome.net>
--

 Kconfig                   |   72
 ibm_emac/Makefile         |   13
 ibm_emac/ibm_emac.h       |  418 +++--
 ibm_emac/ibm_emac_core.c  | 3414 ++++++++++++++++++++++++----------------------
 ibm_emac/ibm_emac_core.h  |  313 ++--
 ibm_emac/ibm_emac_debug.c |  377 ++---
 ibm_emac/ibm_emac_debug.h |   63
 ibm_emac/ibm_emac_mal.c   |  674 +++++----
 ibm_emac/ibm_emac_mal.h   |  336 +++-
 ibm_emac/ibm_emac_phy.c   |  335 ++--
 ibm_emac/ibm_emac_phy.h   |  105 -
 ibm_emac/ibm_emac_rgmii.c |  201 ++
 ibm_emac/ibm_emac_rgmii.h |   68
 ibm_emac/ibm_emac_tah.c   |  111 +
 ibm_emac/ibm_emac_tah.h   |   96 -
 ibm_emac/ibm_emac_zmii.c  |  255 +++
 ibm_emac/ibm_emac_zmii.h  |  114 -
 17 files changed, 4114 insertions(+), 2851 deletions(-)
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent b71b95ef
...@@ -1163,38 +1163,74 @@ config IBMVETH ...@@ -1163,38 +1163,74 @@ config IBMVETH
be called ibmveth. be called ibmveth.
config IBM_EMAC config IBM_EMAC
bool "IBM PPC4xx EMAC driver support" tristate "PowerPC 4xx on-chip Ethernet support"
depends on 4xx depends on 4xx
select CRC32 help
---help--- This driver supports the PowerPC 4xx EMAC family of on-chip
This driver supports the IBM PPC4xx EMAC family of on-chip Ethernet controllers.
Ethernet controllers.
config IBM_EMAC_ERRMSG
bool "Verbose error messages"
depends on IBM_EMAC && BROKEN
config IBM_EMAC_RXB config IBM_EMAC_RXB
int "Number of receive buffers" int "Number of receive buffers"
depends on IBM_EMAC depends on IBM_EMAC
default "128" if IBM_EMAC4 default "128"
default "64"
config IBM_EMAC_TXB config IBM_EMAC_TXB
int "Number of transmit buffers" int "Number of transmit buffers"
depends on IBM_EMAC depends on IBM_EMAC
default "128" if IBM_EMAC4 default "64"
default "8"
config IBM_EMAC_POLL_WEIGHT
int "MAL NAPI polling weight"
depends on IBM_EMAC
default "32"
config IBM_EMAC_FGAP config IBM_EMAC_RX_COPY_THRESHOLD
int "Frame gap" int "RX skb copy threshold (bytes)"
depends on IBM_EMAC depends on IBM_EMAC
default "8" default "256"
config IBM_EMAC_SKBRES config IBM_EMAC_RX_SKB_HEADROOM
int "Skb reserve amount" int "Additional RX skb headroom (bytes)"
depends on IBM_EMAC depends on IBM_EMAC
default "0" default "0"
help
Additional receive skb headroom. Note, that driver
will always reserve at least 2 bytes to make IP header
aligned, so usualy there is no need to add any additional
headroom.
If unsure, set to 0.
config IBM_EMAC_PHY_RX_CLK_FIX
bool "PHY Rx clock workaround"
depends on IBM_EMAC && (405EP || 440GX || 440EP)
help
Enable this if EMAC attached to a PHY which doesn't generate
RX clock if there is no link, if this is the case, you will
see "TX disable timeout" or "RX disable timeout" in the system
log.
If unsure, say N.
config IBM_EMAC_DEBUG
bool "Debugging"
depends on IBM_EMAC
default n
config IBM_EMAC_ZMII
bool
depends on IBM_EMAC && (NP405H || NP405L || 44x)
default y
config IBM_EMAC_RGMII
bool
depends on IBM_EMAC && 440GX
default y
config IBM_EMAC_TAH
bool
depends on IBM_EMAC && 440GX
default y
config NET_PCI config NET_PCI
bool "EISA, VLB, PCI and on board controllers" bool "EISA, VLB, PCI and on board controllers"
......
# #
# Makefile for the IBM PPC4xx EMAC controllers # Makefile for the PowerPC 4xx on-chip ethernet driver
# #
obj-$(CONFIG_IBM_EMAC) += ibm_emac.o obj-$(CONFIG_IBM_EMAC) += ibm_emac.o
ibm_emac-objs := ibm_emac_mal.o ibm_emac_core.o ibm_emac_phy.o ibm_emac-objs := ibm_emac_mal.o ibm_emac_core.o ibm_emac_phy.o
ibm_emac-$(CONFIG_IBM_EMAC_ZMII) += ibm_emac_zmii.o
# Only need this if you want to see additional debug messages ibm_emac-$(CONFIG_IBM_EMAC_RGMII) += ibm_emac_rgmii.o
ifeq ($(CONFIG_IBM_EMAC_ERRMSG), y) ibm_emac-$(CONFIG_IBM_EMAC_TAH) += ibm_emac_tah.o
ibm_emac-objs += ibm_emac_debug.o ibm_emac-$(CONFIG_IBM_EMAC_DEBUG) += ibm_emac_debug.o
endif
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
/* /*
* ibm_emac_core.h * drivers/net/ibm_emac/ibm_emac_core.h
* *
* Ethernet driver for the built in ethernet on the IBM 405 PowerPC * Driver for PowerPC 4xx on-chip ethernet controller.
* processor.
* *
* Armin Kuster akuster@mvista.com * Copyright (c) 2004, 2005 Zultys Technologies.
* Sept, 2001 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
* *
* Orignial driver * Based on original work by
* Johnnie Peters * Armin Kuster <akuster@mvista.com>
* jpeters@mvista.com * Johnnie Peters <jpeters@mvista.com>
* * Copyright 2000, 2001 MontaVista Softare Inc.
* Copyright 2000 MontaVista Softare Inc.
* *
* This program is free software; you can redistribute it and/or modify it * This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the * under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your * Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. * option) any later version.
*
*/ */
#ifndef __IBM_EMAC_CORE_H_
#define __IBM_EMAC_CORE_H_
#ifndef _IBM_EMAC_CORE_H_ #include <linux/config.h>
#define _IBM_EMAC_CORE_H_
#include <linux/netdevice.h> #include <linux/netdevice.h>
#include <linux/dma-mapping.h>
#include <asm/ocp.h> #include <asm/ocp.h>
#include <asm/mmu.h> /* For phys_addr_t */
#include "ibm_emac.h" #include "ibm_emac.h"
#include "ibm_emac_phy.h" #include "ibm_emac_phy.h"
#include "ibm_emac_rgmii.h"
#include "ibm_emac_zmii.h" #include "ibm_emac_zmii.h"
#include "ibm_emac_rgmii.h"
#include "ibm_emac_mal.h" #include "ibm_emac_mal.h"
#include "ibm_emac_tah.h" #include "ibm_emac_tah.h"
#ifndef CONFIG_IBM_EMAC_TXB #define NUM_TX_BUFF CONFIG_IBM_EMAC_TXB
#define NUM_TX_BUFF 64 #define NUM_RX_BUFF CONFIG_IBM_EMAC_RXB
#define NUM_RX_BUFF 64
#else
#define NUM_TX_BUFF CONFIG_IBM_EMAC_TXB
#define NUM_RX_BUFF CONFIG_IBM_EMAC_RXB
#endif
/* This does 16 byte alignment, exactly what we need. /* Simple sanity check */
* The packet length includes FCS, but we don't want to #if NUM_TX_BUFF > 256 || NUM_RX_BUFF > 256
* include that when passing upstream as it messes up #error Invalid number of buffer descriptors (greater than 256)
* bridging applications.
*/
#ifndef CONFIG_IBM_EMAC_SKBRES
#define SKB_RES 2
#else
#define SKB_RES CONFIG_IBM_EMAC_SKBRES
#endif #endif
/* Note about alignement. alloc_skb() returns a cache line // XXX
* aligned buffer. However, dev_alloc_skb() will add 16 more #define EMAC_MIN_MTU 46
* bytes and "reserve" them, so our buffer will actually end #define EMAC_MAX_MTU 9000
* on a half cache line. What we do is to use directly
* alloc_skb, allocate 16 more bytes to match the total amount /* Maximum L2 header length (VLAN tagged, no FCS) */
* allocated by dev_alloc_skb(), but we don't reserve. #define EMAC_MTU_OVERHEAD (6 * 2 + 2 + 4)
/* RX BD size for the given MTU */
static inline int emac_rx_size(int mtu)
{
if (mtu > ETH_DATA_LEN)
return MAL_MAX_RX_SIZE;
else
return mal_rx_size(ETH_DATA_LEN + EMAC_MTU_OVERHEAD);
}
#define EMAC_DMA_ALIGN(x) ALIGN((x), dma_get_cache_alignment())
#define EMAC_RX_SKB_HEADROOM \
EMAC_DMA_ALIGN(CONFIG_IBM_EMAC_RX_SKB_HEADROOM)
/* Size of RX skb for the given MTU */
static inline int emac_rx_skb_size(int mtu)
{
int size = max(mtu + EMAC_MTU_OVERHEAD, emac_rx_size(mtu));
return EMAC_DMA_ALIGN(size + 2) + EMAC_RX_SKB_HEADROOM;
}
/* RX DMA sync size */
static inline int emac_rx_sync_size(int mtu)
{
return EMAC_DMA_ALIGN(emac_rx_size(mtu) + 2);
}
/* Driver statistcs is split into two parts to make it more cache friendly:
* - normal statistics (packet count, etc)
* - error statistics
*
* When statistics is requested by ethtool, these parts are concatenated,
* normal one goes first.
*
* Please, keep these structures in sync with emac_stats_keys.
*/ */
#define MAX_NUM_BUF_DESC 255
#define DESC_BUF_SIZE 4080 /* max 4096-16 */ /* Normal TX/RX Statistics */
#define DESC_BUF_SIZE_REG (DESC_BUF_SIZE / 16) struct ibm_emac_stats {
u64 rx_packets;
/* Transmitter timeout. */ u64 rx_bytes;
#define TX_TIMEOUT (2*HZ) u64 tx_packets;
u64 tx_bytes;
/* MDIO latency delay */ u64 rx_packets_csum;
#define MDIO_DELAY 250 u64 tx_packets_csum;
};
/* Power managment shift registers */
#define IBM_CPM_EMMII 0 /* Shift value for MII */ /* Error statistics */
#define IBM_CPM_EMRX 1 /* Shift value for recv */ struct ibm_emac_error_stats {
#define IBM_CPM_EMTX 2 /* Shift value for MAC */ u64 tx_undo;
#define IBM_CPM_EMAC(x) (((x)>>IBM_CPM_EMMII) | ((x)>>IBM_CPM_EMRX) | ((x)>>IBM_CPM_EMTX))
/* Software RX Errors */
#define ENET_HEADER_SIZE 14 u64 rx_dropped_stack;
#define ENET_FCS_SIZE 4 u64 rx_dropped_oom;
#define ENET_DEF_MTU_SIZE 1500 u64 rx_dropped_error;
#define ENET_DEF_BUF_SIZE (ENET_DEF_MTU_SIZE + ENET_HEADER_SIZE + ENET_FCS_SIZE) u64 rx_dropped_resize;
#define EMAC_MIN_FRAME 64 u64 rx_dropped_mtu;
#define EMAC_MAX_FRAME 9018 u64 rx_stopped;
#define EMAC_MIN_MTU (EMAC_MIN_FRAME - ENET_HEADER_SIZE - ENET_FCS_SIZE) /* BD reported RX errors */
#define EMAC_MAX_MTU (EMAC_MAX_FRAME - ENET_HEADER_SIZE - ENET_FCS_SIZE) u64 rx_bd_errors;
u64 rx_bd_overrun;
#ifdef CONFIG_IBM_EMAC_ERRMSG u64 rx_bd_bad_packet;
void emac_serr_dump_0(struct net_device *dev); u64 rx_bd_runt_packet;
void emac_serr_dump_1(struct net_device *dev); u64 rx_bd_short_event;
void emac_err_dump(struct net_device *dev, int em0isr); u64 rx_bd_alignment_error;
void emac_phy_dump(struct net_device *); u64 rx_bd_bad_fcs;
void emac_desc_dump(struct net_device *); u64 rx_bd_packet_too_long;
void emac_mac_dump(struct net_device *); u64 rx_bd_out_of_range;
void emac_mal_dump(struct net_device *); u64 rx_bd_in_range;
#else /* EMAC IRQ reported RX errors */
#define emac_serr_dump_0(dev) do { } while (0) u64 rx_parity;
#define emac_serr_dump_1(dev) do { } while (0) u64 rx_fifo_overrun;
#define emac_err_dump(dev,x) do { } while (0) u64 rx_overrun;
#define emac_phy_dump(dev) do { } while (0) u64 rx_bad_packet;
#define emac_desc_dump(dev) do { } while (0) u64 rx_runt_packet;
#define emac_mac_dump(dev) do { } while (0) u64 rx_short_event;
#define emac_mal_dump(dev) do { } while (0) u64 rx_alignment_error;
#endif u64 rx_bad_fcs;
u64 rx_packet_too_long;
u64 rx_out_of_range;
u64 rx_in_range;
/* Software TX Errors */
u64 tx_dropped;
/* BD reported TX errors */
u64 tx_bd_errors;
u64 tx_bd_bad_fcs;
u64 tx_bd_carrier_loss;
u64 tx_bd_excessive_deferral;
u64 tx_bd_excessive_collisions;
u64 tx_bd_late_collision;
u64 tx_bd_multple_collisions;
u64 tx_bd_single_collision;
u64 tx_bd_underrun;
u64 tx_bd_sqe;
/* EMAC IRQ reported TX errors */
u64 tx_parity;
u64 tx_underrun;
u64 tx_sqe;
u64 tx_errors;
};
#define EMAC_ETHTOOL_STATS_COUNT ((sizeof(struct ibm_emac_stats) + \
sizeof(struct ibm_emac_error_stats)) \
/ sizeof(u64))
struct ocp_enet_private { struct ocp_enet_private {
struct sk_buff *tx_skb[NUM_TX_BUFF]; struct net_device *ndev; /* 0 */
struct sk_buff *rx_skb[NUM_RX_BUFF]; struct emac_regs *emacp;
struct mal_descriptor *tx_desc;
struct mal_descriptor *rx_desc; struct mal_descriptor *tx_desc;
struct mal_descriptor *rx_dirty; int tx_cnt;
struct net_device_stats stats; int tx_slot;
int tx_cnt; int ack_slot;
int rx_slot;
int dirty_rx; struct mal_descriptor *rx_desc;
int tx_slot; int rx_slot;
int ack_slot; struct sk_buff *rx_sg_skb; /* 1 */
int rx_buffer_size; int rx_skb_size;
int rx_sync_size;
struct mii_phy phy_mii;
int mii_phy_addr; struct ibm_emac_stats stats;
int want_autoneg; struct ocp_device *tah_dev;
int timer_ticks;
struct timer_list link_timer; struct ibm_ocp_mal *mal;
struct net_device *mdio_dev; struct mal_commac commac;
struct ocp_device *rgmii_dev; struct sk_buff *tx_skb[NUM_TX_BUFF];
int rgmii_input; struct sk_buff *rx_skb[NUM_RX_BUFF];
struct ocp_device *zmii_dev; struct ocp_device *zmii_dev;
int zmii_input; int zmii_input;
struct ocp_enet_private *mdio_dev;
struct ibm_ocp_mal *mal; struct ocp_device *rgmii_dev;
int mal_tx_chan, mal_rx_chan; int rgmii_input;
struct mal_commac commac;
struct ocp_def *def;
struct ocp_device *tah_dev;
struct mii_phy phy;
int opened; struct timer_list link_timer;
int going_away; int reset_failed;
int wol_irq;
emac_t *emacp; struct ibm_emac_error_stats estats;
struct ocp_device *ocpdev; struct net_device_stats nstats;
struct net_device *ndev;
spinlock_t lock; struct device* ldev;
}; };
#endif /* _IBM_EMAC_CORE_H_ */
/* Ethtool get_regs complex data.
* We want to get not just EMAC registers, but also MAL, ZMII, RGMII, TAH
* when available.
*
* Returned BLOB consists of the ibm_emac_ethtool_regs_hdr,
* MAL registers, EMAC registers and optional ZMII, RGMII, TAH registers.
* Each register component is preceded with emac_ethtool_regs_subhdr.
* Order of the optional headers follows their relative bit posititions
* in emac_ethtool_regs_hdr.components
*/
#define EMAC_ETHTOOL_REGS_ZMII 0x00000001
#define EMAC_ETHTOOL_REGS_RGMII 0x00000002
#define EMAC_ETHTOOL_REGS_TAH 0x00000004
struct emac_ethtool_regs_hdr {
u32 components;
};
struct emac_ethtool_regs_subhdr {
u32 version;
u32 index;
};
#endif /* __IBM_EMAC_CORE_H_ */
This diff is collapsed.
/*
* drivers/net/ibm_emac/ibm_ocp_debug.h
*
* Driver for PowerPC 4xx on-chip ethernet controller, debug print routines.
*
* Copyright (c) 2004, 2005 Zultys Technologies
* Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
*/
#ifndef __IBM_EMAC_DEBUG_H_
#define __IBM_EMAC_DEBUG_H_
#include <linux/config.h>
#include <linux/init.h>
#include "ibm_emac_core.h"
#include "ibm_emac_mal.h"
#if defined(CONFIG_IBM_EMAC_DEBUG)
void emac_dbg_register(int idx, struct ocp_enet_private *dev);
void mal_dbg_register(int idx, struct ibm_ocp_mal *mal);
int emac_init_debug(void) __init;
void emac_fini_debug(void) __exit;
void emac_dbg_dump_all(void);
# define DBG_LEVEL 1
#else
# define emac_dbg_register(x,y) ((void)0)
# define mal_dbg_register(x,y) ((void)0)
# define emac_init_debug() ((void)0)
# define emac_fini_debug() ((void)0)
# define emac_dbg_dump_all() ((void)0)
# define DBG_LEVEL 0
#endif
#if DBG_LEVEL > 0
# define DBG(f,x...) printk("emac" f, ##x)
# define MAL_DBG(f,x...) printk("mal" f, ##x)
# define ZMII_DBG(f,x...) printk("zmii" f, ##x)
# define RGMII_DBG(f,x...) printk("rgmii" f, ##x)
# define NL "\n"
#else
# define DBG(f,x...) ((void)0)
# define MAL_DBG(f,x...) ((void)0)
# define ZMII_DBG(f,x...) ((void)0)
# define RGMII_DBG(f,x...) ((void)0)
#endif
#if DBG_LEVEL > 1
# define DBG2(f,x...) DBG(f, ##x)
# define MAL_DBG2(f,x...) MAL_DBG(f, ##x)
# define ZMII_DBG2(f,x...) ZMII_DBG(f, ##x)
# define RGMII_DBG2(f,x...) RGMII_DBG(f, ##x)
#else
# define DBG2(f,x...) ((void)0)
# define MAL_DBG2(f,x...) ((void)0)
# define ZMII_DBG2(f,x...) ((void)0)
# define RGMII_DBG2(f,x...) ((void)0)
#endif
#endif /* __IBM_EMAC_DEBUG_H_ */
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
/* /*
* ibm_emac_phy.h * drivers/net/ibm_emac/ibm_emac_phy.h
*
* *
* Benjamin Herrenschmidt <benh@kernel.crashing.org> * Driver for PowerPC 4xx on-chip ethernet controller, PHY support
* February 2003
* *
* This program is free software; you can redistribute it and/or modify it * Benjamin Herrenschmidt <benh@kernel.crashing.org>
* under the terms of the GNU General Public License as published by the * February 2003
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
* *
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * Minor additions by Eugene Surovegin <ebs@ebshome.net>, 2004
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA.
* *
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
* *
* This file basically duplicates sungem_phy.{c,h} with different PHYs * This file basically duplicates sungem_phy.{c,h} with different PHYs
* supported. I'm looking into merging that in a single mii layer more * supported. I'm looking into merging that in a single mii layer more
* flexible than mii.c * flexible than mii.c
*/ */
#ifndef _IBM_EMAC_PHY_H_ #ifndef _IBM_OCP_PHY_H_
#define _IBM_EMAC_PHY_H_ #define _IBM_OCP_PHY_H_
/*
* PHY mode settings
* Used for multi-mode capable PHYs
*/
#define PHY_MODE_NA 0
#define PHY_MODE_MII 1
#define PHY_MODE_RMII 2
#define PHY_MODE_SMII 3
#define PHY_MODE_RGMII 4
#define PHY_MODE_TBI 5
#define PHY_MODE_GMII 6
#define PHY_MODE_RTBI 7
#define PHY_MODE_SGMII 8
/*
* PHY specific registers/values
*/
/* CIS8201 */
#define MII_CIS8201_EPCR 0x17
#define EPCR_MODE_MASK 0x3000
#define EPCR_GMII_MODE 0x0000
#define EPCR_RGMII_MODE 0x1000
#define EPCR_TBI_MODE 0x2000
#define EPCR_RTBI_MODE 0x3000
struct mii_phy; struct mii_phy;
...@@ -77,7 +37,8 @@ struct mii_phy_ops { ...@@ -77,7 +37,8 @@ struct mii_phy_ops {
struct mii_phy_def { struct mii_phy_def {
u32 phy_id; /* Concatenated ID1 << 16 | ID2 */ u32 phy_id; /* Concatenated ID1 << 16 | ID2 */
u32 phy_id_mask; /* Significant bits */ u32 phy_id_mask; /* Significant bits */
u32 features; /* Ethtool SUPPORTED_* defines */ u32 features; /* Ethtool SUPPORTED_* defines or
0 for autodetect */
int magic_aneg; /* Autoneg does all speed test for us */ int magic_aneg; /* Autoneg does all speed test for us */
const char *name; const char *name;
const struct mii_phy_ops *ops; const struct mii_phy_ops *ops;
...@@ -86,8 +47,11 @@ struct mii_phy_def { ...@@ -86,8 +47,11 @@ struct mii_phy_def {
/* An instance of a PHY, partially borrowed from mii_if_info */ /* An instance of a PHY, partially borrowed from mii_if_info */
struct mii_phy { struct mii_phy {
struct mii_phy_def *def; struct mii_phy_def *def;
int advertising; u32 advertising; /* Ethtool ADVERTISED_* defines */
int mii_id; u32 features; /* Copied from mii_phy_def.features
or determined automaticaly */
int address; /* PHY address */
int mode; /* PHY mode */
/* 1: autoneg enabled, 0: disabled */ /* 1: autoneg enabled, 0: disabled */
int autoneg; int autoneg;
...@@ -98,40 +62,19 @@ struct mii_phy { ...@@ -98,40 +62,19 @@ struct mii_phy {
int speed; int speed;
int duplex; int duplex;
int pause; int pause;
int asym_pause;
/* PHY mode - if needed */
int mode;
/* Provided by host chip */ /* Provided by host chip */
struct net_device *dev; struct net_device *dev;
int (*mdio_read) (struct net_device * dev, int mii_id, int reg); int (*mdio_read) (struct net_device * dev, int addr, int reg);
void (*mdio_write) (struct net_device * dev, int mii_id, int reg, void (*mdio_write) (struct net_device * dev, int addr, int reg,
int val); int val);
}; };
/* Pass in a struct mii_phy with dev, mdio_read and mdio_write /* Pass in a struct mii_phy with dev, mdio_read and mdio_write
* filled, the remaining fields will be filled on return * filled, the remaining fields will be filled on return
*/ */
extern int mii_phy_probe(struct mii_phy *phy, int mii_id); int mii_phy_probe(struct mii_phy *phy, int address);
int mii_reset_phy(struct mii_phy *phy);
static inline int __phy_read(struct mii_phy *phy, int id, int reg)
{
return phy->mdio_read(phy->dev, id, reg);
}
static inline void __phy_write(struct mii_phy *phy, int id, int reg, int val)
{
phy->mdio_write(phy->dev, id, reg, val);
}
static inline int phy_read(struct mii_phy *phy, int reg)
{
return phy->mdio_read(phy->dev, phy->mii_id, reg);
}
static inline void phy_write(struct mii_phy *phy, int reg, int val)
{
phy->mdio_write(phy->dev, phy->mii_id, reg, val);
}
#endif /* _IBM_EMAC_PHY_H_ */ #endif /* _IBM_OCP_PHY_H_ */
/*
* drivers/net/ibm_emac/ibm_emac_rgmii.c
*
* Driver for PowerPC 4xx on-chip ethernet controller, RGMII bridge support.
*
* Copyright (c) 2004, 2005 Zultys Technologies.
* Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
*
* Based on original work by
* Matt Porter <mporter@kernel.crashing.org>
* Copyright 2004 MontaVista Software, Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
*/
#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/ethtool.h>
#include <asm/io.h>
#include "ibm_emac_core.h"
#include "ibm_emac_debug.h"
/* RGMIIx_FER */
#define RGMII_FER_MASK(idx) (0x7 << ((idx) * 4))
#define RGMII_FER_RTBI(idx) (0x4 << ((idx) * 4))
#define RGMII_FER_RGMII(idx) (0x5 << ((idx) * 4))
#define RGMII_FER_TBI(idx) (0x6 << ((idx) * 4))
#define RGMII_FER_GMII(idx) (0x7 << ((idx) * 4))
/* RGMIIx_SSR */
#define RGMII_SSR_MASK(idx) (0x7 << ((idx) * 8))
#define RGMII_SSR_100(idx) (0x2 << ((idx) * 8))
#define RGMII_SSR_1000(idx) (0x4 << ((idx) * 8))
/* RGMII bridge supports only GMII/TBI and RGMII/RTBI PHYs */
static inline int rgmii_valid_mode(int phy_mode)
{
return phy_mode == PHY_MODE_GMII ||
phy_mode == PHY_MODE_RGMII ||
phy_mode == PHY_MODE_TBI ||
phy_mode == PHY_MODE_RTBI;
}
static inline const char *rgmii_mode_name(int mode)
{
switch (mode) {
case PHY_MODE_RGMII:
return "RGMII";
case PHY_MODE_TBI:
return "TBI";
case PHY_MODE_GMII:
return "GMII";
case PHY_MODE_RTBI:
return "RTBI";
default:
BUG();
}
}
static inline u32 rgmii_mode_mask(int mode, int input)
{
switch (mode) {
case PHY_MODE_RGMII:
return RGMII_FER_RGMII(input);
case PHY_MODE_TBI:
return RGMII_FER_TBI(input);
case PHY_MODE_GMII:
return RGMII_FER_GMII(input);
case PHY_MODE_RTBI:
return RGMII_FER_RTBI(input);
default:
BUG();
}
}
static int __init rgmii_init(struct ocp_device *ocpdev, int input, int mode)
{
struct ibm_ocp_rgmii *dev = ocp_get_drvdata(ocpdev);
struct rgmii_regs *p;
RGMII_DBG("%d: init(%d, %d)" NL, ocpdev->def->index, input, mode);
if (!dev) {
dev = kzalloc(sizeof(struct ibm_ocp_rgmii), GFP_KERNEL);
if (!dev) {
printk(KERN_ERR
"rgmii%d: couldn't allocate device structure!\n",
ocpdev->def->index);
return -ENOMEM;
}
p = (struct rgmii_regs *)ioremap(ocpdev->def->paddr,
sizeof(struct rgmii_regs));
if (!p) {
printk(KERN_ERR
"rgmii%d: could not ioremap device registers!\n",
ocpdev->def->index);
kfree(dev);
return -ENOMEM;
}
dev->base = p;
ocp_set_drvdata(ocpdev, dev);
/* Disable all inputs by default */
out_be32(&p->fer, 0);
} else
p = dev->base;
/* Enable this input */
out_be32(&p->fer, in_be32(&p->fer) | rgmii_mode_mask(mode, input));
printk(KERN_NOTICE "rgmii%d: input %d in %s mode\n",
ocpdev->def->index, input, rgmii_mode_name(mode));
++dev->users;
return 0;
}
int __init rgmii_attach(void *emac)
{
struct ocp_enet_private *dev = emac;
struct ocp_func_emac_data *emacdata = dev->def->additions;
/* Check if we need to attach to a RGMII */
if (emacdata->rgmii_idx >= 0 && rgmii_valid_mode(emacdata->phy_mode)) {
dev->rgmii_input = emacdata->rgmii_mux;
dev->rgmii_dev =
ocp_find_device(OCP_VENDOR_IBM, OCP_FUNC_RGMII,
emacdata->rgmii_idx);
if (!dev->rgmii_dev) {
printk(KERN_ERR "emac%d: unknown rgmii%d!\n",
dev->def->index, emacdata->rgmii_idx);
return -ENODEV;
}
if (rgmii_init
(dev->rgmii_dev, dev->rgmii_input, emacdata->phy_mode)) {
printk(KERN_ERR
"emac%d: rgmii%d initialization failed!\n",
dev->def->index, emacdata->rgmii_idx);
return -ENODEV;
}
}
return 0;
}
void rgmii_set_speed(struct ocp_device *ocpdev, int input, int speed)
{
struct ibm_ocp_rgmii *dev = ocp_get_drvdata(ocpdev);
u32 ssr = in_be32(&dev->base->ssr) & ~RGMII_SSR_MASK(input);
RGMII_DBG("%d: speed(%d, %d)" NL, ocpdev->def->index, input, speed);
if (speed == SPEED_1000)
ssr |= RGMII_SSR_1000(input);
else if (speed == SPEED_100)
ssr |= RGMII_SSR_100(input);
out_be32(&dev->base->ssr, ssr);
}
void __exit __rgmii_fini(struct ocp_device *ocpdev, int input)
{
struct ibm_ocp_rgmii *dev = ocp_get_drvdata(ocpdev);
BUG_ON(!dev || dev->users == 0);
RGMII_DBG("%d: fini(%d)" NL, ocpdev->def->index, input);
/* Disable this input */
out_be32(&dev->base->fer,
in_be32(&dev->base->fer) & ~RGMII_FER_MASK(input));
if (!--dev->users) {
/* Free everything if this is the last user */
ocp_set_drvdata(ocpdev, NULL);
iounmap((void *)dev->base);
kfree(dev);
}
}
int __rgmii_get_regs_len(struct ocp_device *ocpdev)
{
return sizeof(struct emac_ethtool_regs_subhdr) +
sizeof(struct rgmii_regs);
}
void *rgmii_dump_regs(struct ocp_device *ocpdev, void *buf)
{
struct ibm_ocp_rgmii *dev = ocp_get_drvdata(ocpdev);
struct emac_ethtool_regs_subhdr *hdr = buf;
struct rgmii_regs *regs = (struct rgmii_regs *)(hdr + 1);
hdr->version = 0;
hdr->index = ocpdev->def->index;
memcpy_fromio(regs, dev->base, sizeof(struct rgmii_regs));
return regs + 1;
}
/* /*
* Defines for the IBM RGMII bridge * drivers/net/ibm_emac/ibm_emac_rgmii.c
*
* Driver for PowerPC 4xx on-chip ethernet controller, RGMII bridge support.
* *
* Based on ocp_zmii.h/ibm_emac_zmii.h * Based on ocp_zmii.h/ibm_emac_zmii.h
* Armin Kuster akuster@mvista.com * Armin Kuster akuster@mvista.com
...@@ -7,6 +9,9 @@ ...@@ -7,6 +9,9 @@
* Copyright 2004 MontaVista Software, Inc. * Copyright 2004 MontaVista Software, Inc.
* Matt Porter <mporter@kernel.crashing.org> * Matt Porter <mporter@kernel.crashing.org>
* *
* Copyright (c) 2004, 2005 Zultys Technologies.
* Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
*
* This program is free software; you can redistribute it and/or modify it * This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the * under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your * Free Software Foundation; either version 2 of the License, or (at your
...@@ -19,47 +24,42 @@ ...@@ -19,47 +24,42 @@
#include <linux/config.h> #include <linux/config.h>
/* RGMII bridge */ /* RGMII bridge */
typedef struct rgmii_regs { struct rgmii_regs {
u32 fer; /* Function enable register */ u32 fer; /* Function enable register */
u32 ssr; /* Speed select register */ u32 ssr; /* Speed select register */
} rgmii_t; };
#define RGMII_INPUTS 4
/* RGMII device */ /* RGMII device */
struct ibm_ocp_rgmii { struct ibm_ocp_rgmii {
struct rgmii_regs *base; struct rgmii_regs *base;
int mode[RGMII_INPUTS];
int users; /* number of EMACs using this RGMII bridge */ int users; /* number of EMACs using this RGMII bridge */
}; };
/* Fuctional Enable Reg */ #ifdef CONFIG_IBM_EMAC_RGMII
#define RGMII_FER_MASK(x) (0x00000007 << (4*x)) int rgmii_attach(void *emac) __init;
#define RGMII_RTBI 0x00000004
#define RGMII_RGMII 0x00000005
#define RGMII_TBI 0x00000006
#define RGMII_GMII 0x00000007
/* Speed Selection reg */
#define RGMII_SP2_100 0x00000002 void __rgmii_fini(struct ocp_device *ocpdev, int input) __exit;
#define RGMII_SP2_1000 0x00000004 static inline void rgmii_fini(struct ocp_device *ocpdev, int input)
#define RGMII_SP3_100 0x00000200 {
#define RGMII_SP3_1000 0x00000400 if (ocpdev)
__rgmii_fini(ocpdev, input);
}
#define RGMII_MII2_SPDMASK 0x00000007 void rgmii_set_speed(struct ocp_device *ocpdev, int input, int speed);
#define RGMII_MII3_SPDMASK 0x00000700
#define RGMII_MII2_100MB RGMII_SP2_100 & ~RGMII_SP2_1000 int __rgmii_get_regs_len(struct ocp_device *ocpdev);
#define RGMII_MII2_1000MB RGMII_SP2_1000 & ~RGMII_SP2_100 static inline int rgmii_get_regs_len(struct ocp_device *ocpdev)
#define RGMII_MII2_10MB ~(RGMII_SP2_100 | RGMII_SP2_1000) {
#define RGMII_MII3_100MB RGMII_SP3_100 & ~RGMII_SP3_1000 return ocpdev ? __rgmii_get_regs_len(ocpdev) : 0;
#define RGMII_MII3_1000MB RGMII_SP3_1000 & ~RGMII_SP3_100 }
#define RGMII_MII3_10MB ~(RGMII_SP3_100 | RGMII_SP3_1000)
#define RTBI 0 void *rgmii_dump_regs(struct ocp_device *ocpdev, void *buf);
#define RGMII 1 #else
#define TBI 2 # define rgmii_attach(x) 0
#define GMII 3 # define rgmii_fini(x,y) ((void)0)
# define rgmii_set_speed(x,y,z) ((void)0)
# define rgmii_get_regs_len(x) 0
# define rgmii_dump_regs(x,buf) (buf)
#endif /* !CONFIG_IBM_EMAC_RGMII */
#endif /* _IBM_EMAC_RGMII_H_ */ #endif /* _IBM_EMAC_RGMII_H_ */
/*
* drivers/net/ibm_emac/ibm_emac_tah.c
*
* Driver for PowerPC 4xx on-chip ethernet controller, TAH support.
*
* Copyright 2004 MontaVista Software, Inc.
* Matt Porter <mporter@kernel.crashing.org>
*
* Copyright (c) 2005 Eugene Surovegin <ebs@ebshome.net>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*/
#include <linux/config.h>
#include <asm/io.h>
#include "ibm_emac_core.h"
static int __init tah_init(struct ocp_device *ocpdev)
{
struct tah_regs *p;
if (ocp_get_drvdata(ocpdev)) {
printk(KERN_ERR "tah%d: already in use!\n", ocpdev->def->index);
return -EBUSY;
}
/* Initialize TAH and enable IPv4 checksum verification, no TSO yet */
p = (struct tah_regs *)ioremap(ocpdev->def->paddr, sizeof(*p));
if (!p) {
printk(KERN_ERR "tah%d: could not ioremap device registers!\n",
ocpdev->def->index);
return -ENOMEM;
}
ocp_set_drvdata(ocpdev, p);
__tah_reset(ocpdev);
return 0;
}
int __init tah_attach(void *emac)
{
struct ocp_enet_private *dev = emac;
struct ocp_func_emac_data *emacdata = dev->def->additions;
/* Check if we need to attach to a TAH */
if (emacdata->tah_idx >= 0) {
dev->tah_dev = ocp_find_device(OCP_ANY_ID, OCP_FUNC_TAH,
emacdata->tah_idx);
if (!dev->tah_dev) {
printk(KERN_ERR "emac%d: unknown tah%d!\n",
dev->def->index, emacdata->tah_idx);
return -ENODEV;
}
if (tah_init(dev->tah_dev)) {
printk(KERN_ERR
"emac%d: tah%d initialization failed!\n",
dev->def->index, emacdata->tah_idx);
return -ENODEV;
}
}
return 0;
}
void __exit __tah_fini(struct ocp_device *ocpdev)
{
struct tah_regs *p = ocp_get_drvdata(ocpdev);
BUG_ON(!p);
ocp_set_drvdata(ocpdev, NULL);
iounmap((void *)p);
}
void __tah_reset(struct ocp_device *ocpdev)
{
struct tah_regs *p = ocp_get_drvdata(ocpdev);
int n;
/* Reset TAH */
out_be32(&p->mr, TAH_MR_SR);
n = 100;
while ((in_be32(&p->mr) & TAH_MR_SR) && n)
--n;
if (unlikely(!n))
printk(KERN_ERR "tah%d: reset timeout\n", ocpdev->def->index);
/* 10KB TAH TX FIFO accomodates the max MTU of 9000 */
out_be32(&p->mr,
TAH_MR_CVR | TAH_MR_ST_768 | TAH_MR_TFS_10KB | TAH_MR_DTFP |
TAH_MR_DIG);
}
int __tah_get_regs_len(struct ocp_device *ocpdev)
{
return sizeof(struct emac_ethtool_regs_subhdr) +
sizeof(struct tah_regs);
}
void *tah_dump_regs(struct ocp_device *ocpdev, void *buf)
{
struct tah_regs *dev = ocp_get_drvdata(ocpdev);
struct emac_ethtool_regs_subhdr *hdr = buf;
struct tah_regs *regs = (struct tah_regs *)(hdr + 1);
hdr->version = 0;
hdr->index = ocpdev->def->index;
memcpy_fromio(regs, dev, sizeof(struct tah_regs));
return regs + 1;
}
/* /*
* Defines for the IBM TAH * drivers/net/ibm_emac/ibm_emac_tah.h
*
* Driver for PowerPC 4xx on-chip ethernet controller, TAH support.
* *
* Copyright 2004 MontaVista Software, Inc. * Copyright 2004 MontaVista Software, Inc.
* Matt Porter <mporter@kernel.crashing.org> * Matt Porter <mporter@kernel.crashing.org>
* *
* Copyright (c) 2005 Eugene Surovegin <ebs@ebshome.net>
*
* This program is free software; you can redistribute it and/or modify it * This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the * under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your * Free Software Foundation; either version 2 of the License, or (at your
...@@ -13,36 +17,72 @@ ...@@ -13,36 +17,72 @@
#ifndef _IBM_EMAC_TAH_H #ifndef _IBM_EMAC_TAH_H
#define _IBM_EMAC_TAH_H #define _IBM_EMAC_TAH_H
#include <linux/config.h>
#include <linux/init.h>
#include <asm/ocp.h>
/* TAH */ /* TAH */
typedef struct tah_regs { struct tah_regs {
u32 tah_revid; u32 revid;
u32 pad[3]; u32 pad[3];
u32 tah_mr; u32 mr;
u32 tah_ssr0; u32 ssr0;
u32 tah_ssr1; u32 ssr1;
u32 tah_ssr2; u32 ssr2;
u32 tah_ssr3; u32 ssr3;
u32 tah_ssr4; u32 ssr4;
u32 tah_ssr5; u32 ssr5;
u32 tah_tsr; u32 tsr;
} tah_t; };
/* TAH engine */ /* TAH engine */
#define TAH_MR_CVR 0x80000000 #define TAH_MR_CVR 0x80000000
#define TAH_MR_SR 0x40000000 #define TAH_MR_SR 0x40000000
#define TAH_MR_ST_256 0x01000000 #define TAH_MR_ST_256 0x01000000
#define TAH_MR_ST_512 0x02000000 #define TAH_MR_ST_512 0x02000000
#define TAH_MR_ST_768 0x03000000 #define TAH_MR_ST_768 0x03000000
#define TAH_MR_ST_1024 0x04000000 #define TAH_MR_ST_1024 0x04000000
#define TAH_MR_ST_1280 0x05000000 #define TAH_MR_ST_1280 0x05000000
#define TAH_MR_ST_1536 0x06000000 #define TAH_MR_ST_1536 0x06000000
#define TAH_MR_TFS_16KB 0x00000000 #define TAH_MR_TFS_16KB 0x00000000
#define TAH_MR_TFS_2KB 0x00200000 #define TAH_MR_TFS_2KB 0x00200000
#define TAH_MR_TFS_4KB 0x00400000 #define TAH_MR_TFS_4KB 0x00400000
#define TAH_MR_TFS_6KB 0x00600000 #define TAH_MR_TFS_6KB 0x00600000
#define TAH_MR_TFS_8KB 0x00800000 #define TAH_MR_TFS_8KB 0x00800000
#define TAH_MR_TFS_10KB 0x00a00000 #define TAH_MR_TFS_10KB 0x00a00000
#define TAH_MR_DTFP 0x00100000 #define TAH_MR_DTFP 0x00100000
#define TAH_MR_DIG 0x00080000 #define TAH_MR_DIG 0x00080000
#ifdef CONFIG_IBM_EMAC_TAH
int tah_attach(void *emac) __init;
void __tah_fini(struct ocp_device *ocpdev) __exit;
static inline void tah_fini(struct ocp_device *ocpdev)
{
if (ocpdev)
__tah_fini(ocpdev);
}
void __tah_reset(struct ocp_device *ocpdev);
static inline void tah_reset(struct ocp_device *ocpdev)
{
if (ocpdev)
__tah_reset(ocpdev);
}
int __tah_get_regs_len(struct ocp_device *ocpdev);
static inline int tah_get_regs_len(struct ocp_device *ocpdev)
{
return ocpdev ? __tah_get_regs_len(ocpdev) : 0;
}
void *tah_dump_regs(struct ocp_device *ocpdev, void *buf);
#else
# define tah_attach(x) 0
# define tah_fini(x) ((void)0)
# define tah_reset(x) ((void)0)
# define tah_get_regs_len(x) 0
# define tah_dump_regs(x,buf) (buf)
#endif /* !CONFIG_IBM_EMAC_TAH */
#endif /* _IBM_EMAC_TAH_H */ #endif /* _IBM_EMAC_TAH_H */
/*
* drivers/net/ibm_emac/ibm_emac_zmii.c
*
* Driver for PowerPC 4xx on-chip ethernet controller, ZMII bridge support.
*
* Copyright (c) 2004, 2005 Zultys Technologies.
* Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
*
* Based on original work by
* Armin Kuster <akuster@mvista.com>
* Copyright 2001 MontaVista Softare Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
*/
#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/ethtool.h>
#include <asm/io.h>
#include "ibm_emac_core.h"
#include "ibm_emac_debug.h"
/* ZMIIx_FER */
#define ZMII_FER_MDI(idx) (0x80000000 >> ((idx) * 4))
#define ZMII_FER_MDI_ALL (ZMII_FER_MDI(0) | ZMII_FER_MDI(1) | \
ZMII_FER_MDI(2) | ZMII_FER_MDI(3))
#define ZMII_FER_SMII(idx) (0x40000000 >> ((idx) * 4))
#define ZMII_FER_RMII(idx) (0x20000000 >> ((idx) * 4))
#define ZMII_FER_MII(idx) (0x10000000 >> ((idx) * 4))
/* ZMIIx_SSR */
#define ZMII_SSR_SCI(idx) (0x40000000 >> ((idx) * 4))
#define ZMII_SSR_FSS(idx) (0x20000000 >> ((idx) * 4))
#define ZMII_SSR_SP(idx) (0x10000000 >> ((idx) * 4))
/* ZMII only supports MII, RMII and SMII
* we also support autodetection for backward compatibility
*/
static inline int zmii_valid_mode(int mode)
{
return mode == PHY_MODE_MII ||
mode == PHY_MODE_RMII ||
mode == PHY_MODE_SMII ||
mode == PHY_MODE_NA;
}
static inline const char *zmii_mode_name(int mode)
{
switch (mode) {
case PHY_MODE_MII:
return "MII";
case PHY_MODE_RMII:
return "RMII";
case PHY_MODE_SMII:
return "SMII";
default:
BUG();
}
}
static inline u32 zmii_mode_mask(int mode, int input)
{
switch (mode) {
case PHY_MODE_MII:
return ZMII_FER_MII(input);
case PHY_MODE_RMII:
return ZMII_FER_RMII(input);
case PHY_MODE_SMII:
return ZMII_FER_SMII(input);
default:
return 0;
}
}
static int __init zmii_init(struct ocp_device *ocpdev, int input, int *mode)
{
struct ibm_ocp_zmii *dev = ocp_get_drvdata(ocpdev);
struct zmii_regs *p;
ZMII_DBG("%d: init(%d, %d)" NL, ocpdev->def->index, input, *mode);
if (!dev) {
dev = kzalloc(sizeof(struct ibm_ocp_zmii), GFP_KERNEL);
if (!dev) {
printk(KERN_ERR
"zmii%d: couldn't allocate device structure!\n",
ocpdev->def->index);
return -ENOMEM;
}
dev->mode = PHY_MODE_NA;
p = (struct zmii_regs *)ioremap(ocpdev->def->paddr,
sizeof(struct zmii_regs));
if (!p) {
printk(KERN_ERR
"zmii%d: could not ioremap device registers!\n",
ocpdev->def->index);
kfree(dev);
return -ENOMEM;
}
dev->base = p;
ocp_set_drvdata(ocpdev, dev);
/* We may need FER value for autodetection later */
dev->fer_save = in_be32(&p->fer);
/* Disable all inputs by default */
out_be32(&p->fer, 0);
} else
p = dev->base;
if (!zmii_valid_mode(*mode)) {
/* Probably an EMAC connected to RGMII,
* but it still may need ZMII for MDIO
*/
goto out;
}
/* Autodetect ZMII mode if not specified.
* This is only for backward compatibility with the old driver.
* Please, always specify PHY mode in your board port to avoid
* any surprises.
*/
if (dev->mode == PHY_MODE_NA) {
if (*mode == PHY_MODE_NA) {
u32 r = dev->fer_save;
ZMII_DBG("%d: autodetecting mode, FER = 0x%08x" NL,
ocpdev->def->index, r);
if (r & (ZMII_FER_MII(0) | ZMII_FER_MII(1)))
dev->mode = PHY_MODE_MII;
else if (r & (ZMII_FER_RMII(0) | ZMII_FER_RMII(1)))
dev->mode = PHY_MODE_RMII;
else
dev->mode = PHY_MODE_SMII;
} else
dev->mode = *mode;
printk(KERN_NOTICE "zmii%d: bridge in %s mode\n",
ocpdev->def->index, zmii_mode_name(dev->mode));
} else {
/* All inputs must use the same mode */
if (*mode != PHY_MODE_NA && *mode != dev->mode) {
printk(KERN_ERR
"zmii%d: invalid mode %d specified for input %d\n",
ocpdev->def->index, *mode, input);
return -EINVAL;
}
}
/* Report back correct PHY mode,
* it may be used during PHY initialization.
*/
*mode = dev->mode;
/* Enable this input */
out_be32(&p->fer, in_be32(&p->fer) | zmii_mode_mask(dev->mode, input));
out:
++dev->users;
return 0;
}
int __init zmii_attach(void *emac)
{
struct ocp_enet_private *dev = emac;
struct ocp_func_emac_data *emacdata = dev->def->additions;
if (emacdata->zmii_idx >= 0) {
dev->zmii_input = emacdata->zmii_mux;
dev->zmii_dev =
ocp_find_device(OCP_VENDOR_IBM, OCP_FUNC_ZMII,
emacdata->zmii_idx);
if (!dev->zmii_dev) {
printk(KERN_ERR "emac%d: unknown zmii%d!\n",
dev->def->index, emacdata->zmii_idx);
return -ENODEV;
}
if (zmii_init
(dev->zmii_dev, dev->zmii_input, &emacdata->phy_mode)) {
printk(KERN_ERR
"emac%d: zmii%d initialization failed!\n",
dev->def->index, emacdata->zmii_idx);
return -ENODEV;
}
}
return 0;
}
void __zmii_enable_mdio(struct ocp_device *ocpdev, int input)
{
struct ibm_ocp_zmii *dev = ocp_get_drvdata(ocpdev);
u32 fer = in_be32(&dev->base->fer) & ~ZMII_FER_MDI_ALL;
ZMII_DBG2("%d: mdio(%d)" NL, ocpdev->def->index, input);
out_be32(&dev->base->fer, fer | ZMII_FER_MDI(input));
}
void __zmii_set_speed(struct ocp_device *ocpdev, int input, int speed)
{
struct ibm_ocp_zmii *dev = ocp_get_drvdata(ocpdev);
u32 ssr = in_be32(&dev->base->ssr);
ZMII_DBG("%d: speed(%d, %d)" NL, ocpdev->def->index, input, speed);
if (speed == SPEED_100)
ssr |= ZMII_SSR_SP(input);
else
ssr &= ~ZMII_SSR_SP(input);
out_be32(&dev->base->ssr, ssr);
}
void __exit __zmii_fini(struct ocp_device *ocpdev, int input)
{
struct ibm_ocp_zmii *dev = ocp_get_drvdata(ocpdev);
BUG_ON(!dev || dev->users == 0);
ZMII_DBG("%d: fini(%d)" NL, ocpdev->def->index, input);
/* Disable this input */
out_be32(&dev->base->fer,
in_be32(&dev->base->fer) & ~zmii_mode_mask(dev->mode, input));
if (!--dev->users) {
/* Free everything if this is the last user */
ocp_set_drvdata(ocpdev, NULL);
iounmap((void *)dev->base);
kfree(dev);
}
}
int __zmii_get_regs_len(struct ocp_device *ocpdev)
{
return sizeof(struct emac_ethtool_regs_subhdr) +
sizeof(struct zmii_regs);
}
void *zmii_dump_regs(struct ocp_device *ocpdev, void *buf)
{
struct ibm_ocp_zmii *dev = ocp_get_drvdata(ocpdev);
struct emac_ethtool_regs_subhdr *hdr = buf;
struct zmii_regs *regs = (struct zmii_regs *)(hdr + 1);
hdr->version = 0;
hdr->index = ocpdev->def->index;
memcpy_fromio(regs, dev->base, sizeof(struct zmii_regs));
return regs + 1;
}
/* /*
* ocp_zmii.h * drivers/net/ibm_emac/ibm_emac_zmii.h
* *
* Defines for the IBM ZMII bridge * Driver for PowerPC 4xx on-chip ethernet controller, ZMII bridge support.
* *
* Armin Kuster akuster@mvista.com * Copyright (c) 2004, 2005 Zultys Technologies.
* Dec, 2001 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
* *
* Copyright 2001 MontaVista Softare Inc. * Based on original work by
* Armin Kuster <akuster@mvista.com>
* Copyright 2001 MontaVista Softare Inc.
* *
* This program is free software; you can redistribute it and/or modify it * This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the * under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your * Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. * option) any later version.
*
*/ */
#ifndef _IBM_EMAC_ZMII_H_ #ifndef _IBM_EMAC_ZMII_H_
#define _IBM_EMAC_ZMII_H_ #define _IBM_EMAC_ZMII_H_
#include <linux/config.h> #include <linux/config.h>
#include <linux/init.h>
#include <asm/ocp.h>
/* ZMII bridge registers */ /* ZMII bridge registers */
struct zmii_regs { struct zmii_regs {
...@@ -26,68 +30,54 @@ struct zmii_regs { ...@@ -26,68 +30,54 @@ struct zmii_regs {
u32 smiirs; /* SMII status reg */ u32 smiirs; /* SMII status reg */
}; };
#define ZMII_INPUTS 4
/* ZMII device */ /* ZMII device */
struct ibm_ocp_zmii { struct ibm_ocp_zmii {
struct zmii_regs *base; struct zmii_regs *base;
int mode[ZMII_INPUTS]; int mode; /* subset of PHY_MODE_XXXX */
int users; /* number of EMACs using this ZMII bridge */ int users; /* number of EMACs using this ZMII bridge */
u32 fer_save; /* FER value left by firmware */
}; };
/* Fuctional Enable Reg */ #ifdef CONFIG_IBM_EMAC_ZMII
int zmii_attach(void *emac) __init;
#define ZMII_FER_MASK(x) (0xf0000000 >> (4*x))
#define ZMII_MDI0 0x80000000
#define ZMII_SMII0 0x40000000
#define ZMII_RMII0 0x20000000
#define ZMII_MII0 0x10000000
#define ZMII_MDI1 0x08000000
#define ZMII_SMII1 0x04000000
#define ZMII_RMII1 0x02000000
#define ZMII_MII1 0x01000000
#define ZMII_MDI2 0x00800000
#define ZMII_SMII2 0x00400000
#define ZMII_RMII2 0x00200000
#define ZMII_MII2 0x00100000
#define ZMII_MDI3 0x00080000
#define ZMII_SMII3 0x00040000
#define ZMII_RMII3 0x00020000
#define ZMII_MII3 0x00010000
/* Speed Selection reg */ void __zmii_fini(struct ocp_device *ocpdev, int input) __exit;
static inline void zmii_fini(struct ocp_device *ocpdev, int input)
{
if (ocpdev)
__zmii_fini(ocpdev, input);
}
#define ZMII_SCI0 0x40000000 void __zmii_enable_mdio(struct ocp_device *ocpdev, int input);
#define ZMII_FSS0 0x20000000 static inline void zmii_enable_mdio(struct ocp_device *ocpdev, int input)
#define ZMII_SP0 0x10000000 {
#define ZMII_SCI1 0x04000000 if (ocpdev)
#define ZMII_FSS1 0x02000000 __zmii_enable_mdio(ocpdev, input);
#define ZMII_SP1 0x01000000 }
#define ZMII_SCI2 0x00400000
#define ZMII_FSS2 0x00200000
#define ZMII_SP2 0x00100000
#define ZMII_SCI3 0x00040000
#define ZMII_FSS3 0x00020000
#define ZMII_SP3 0x00010000
#define ZMII_MII0_100MB ZMII_SP0 void __zmii_set_speed(struct ocp_device *ocpdev, int input, int speed);
#define ZMII_MII0_10MB ~ZMII_SP0 static inline void zmii_set_speed(struct ocp_device *ocpdev, int input,
#define ZMII_MII1_100MB ZMII_SP1 int speed)
#define ZMII_MII1_10MB ~ZMII_SP1 {
#define ZMII_MII2_100MB ZMII_SP2 if (ocpdev)
#define ZMII_MII2_10MB ~ZMII_SP2 __zmii_set_speed(ocpdev, input, speed);
#define ZMII_MII3_100MB ZMII_SP3 }
#define ZMII_MII3_10MB ~ZMII_SP3
/* SMII Status reg */ int __zmii_get_regs_len(struct ocp_device *ocpdev);
static inline int zmii_get_regs_len(struct ocp_device *ocpdev)
{
return ocpdev ? __zmii_get_regs_len(ocpdev) : 0;
}
#define ZMII_STS0 0xFF000000 /* EMAC0 smii status mask */ void *zmii_dump_regs(struct ocp_device *ocpdev, void *buf);
#define ZMII_STS1 0x00FF0000 /* EMAC1 smii status mask */
#define SMII 0 #else
#define RMII 1 # define zmii_attach(x) 0
#define MII 2 # define zmii_fini(x,y) ((void)0)
#define MDI 3 # define zmii_enable_mdio(x,y) ((void)0)
# define zmii_set_speed(x,y,z) ((void)0)
# define zmii_get_regs_len(x) 0
# define zmii_dump_regs(x,buf) (buf)
#endif /* !CONFIG_IBM_EMAC_ZMII */
#endif /* _IBM_EMAC_ZMII_H_ */ #endif /* _IBM_EMAC_ZMII_H_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment