blob: bab467e0cef6cd78ac682acde45f9faeb0f3e195 [file] [log] [blame]
/*
* Copyright (c) 2014 Qualcomm Atheros, Inc.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 program is distributed in the hope that 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.
*
* 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., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#ifndef _HORNET_H
#define _HORNET_H
/*
* GE0 AR8021 phy address
*/
#define GE0_AR8021_PHY_ADDR 0x0
/*
* Ethernet config registers
*/
#define AG7240_ETH_CFG 0x18070000
#define AG7240_ETH_CFG_RGMII_GE0 (1<<0)
#define AG7240_ETH_CFG_MII_GE0 (1<<1)
#define AG7240_ETH_CFG_GMII_GE0 (1<<2)
#define AG7240_ETH_CFG_MII_GE0_MASTER (1<<3)
#define AG7240_ETH_CFG_MII_GE0_SLAVE (1<<4)
#define AG7240_ETH_CFG_GE0_ERR_EN (1<<5)
#define AG7240_ETH_CFG_SW_ONLY_MODE (1<<6)
#define AG7240_ETH_CFG_SW_PHY_SWAP (1<<7)
#define AG7240_ETH_CFG_SW_PHY_ADDR_SWAP (1<<8)
/* Phy Specific status fields */
#define ATHER_STATUS_LINK_MASK 0xC000
#define ATHER_STATUS_LINK_SHIFT 14
#define ATHER_STATUS_FULL_DEPLEX 0x2000
#define ATHR_STATUS_LINK_PASS 0x0400
#define ATHR_LATCH_LINK_PASS 0x0004
#ifndef ag7240_unit2name
#define ag7240_unit2name(_unit) _unit ? "eth1" : "eth0"
#endif
#endif