18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright(c) 2008 - 2009 Atheros Corporation. All rights reserved. 48c2ecf20Sopenharmony_ci * 58c2ecf20Sopenharmony_ci * Derived from Intel e1000 driver 68c2ecf20Sopenharmony_ci * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved. 78c2ecf20Sopenharmony_ci */ 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_ci#ifndef _ATL1C_HW_H_ 108c2ecf20Sopenharmony_ci#define _ATL1C_HW_H_ 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ci#include <linux/types.h> 138c2ecf20Sopenharmony_ci#include <linux/mii.h> 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ci#define FIELD_GETX(_x, _name) ((_x) >> (_name##_SHIFT) & (_name##_MASK)) 168c2ecf20Sopenharmony_ci#define FIELD_SETX(_x, _name, _v) \ 178c2ecf20Sopenharmony_ci(((_x) & ~((_name##_MASK) << (_name##_SHIFT))) |\ 188c2ecf20Sopenharmony_ci(((_v) & (_name##_MASK)) << (_name##_SHIFT))) 198c2ecf20Sopenharmony_ci#define FIELDX(_name, _v) (((_v) & (_name##_MASK)) << (_name##_SHIFT)) 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_cistruct atl1c_adapter; 228c2ecf20Sopenharmony_cistruct atl1c_hw; 238c2ecf20Sopenharmony_ci 248c2ecf20Sopenharmony_ci/* function prototype */ 258c2ecf20Sopenharmony_civoid atl1c_phy_disable(struct atl1c_hw *hw); 268c2ecf20Sopenharmony_civoid atl1c_hw_set_mac_addr(struct atl1c_hw *hw, u8 *mac_addr); 278c2ecf20Sopenharmony_ciint atl1c_phy_reset(struct atl1c_hw *hw); 288c2ecf20Sopenharmony_ciint atl1c_read_mac_addr(struct atl1c_hw *hw); 298c2ecf20Sopenharmony_ciint atl1c_get_speed_and_duplex(struct atl1c_hw *hw, u16 *speed, u16 *duplex); 308c2ecf20Sopenharmony_ciu32 atl1c_hash_mc_addr(struct atl1c_hw *hw, u8 *mc_addr); 318c2ecf20Sopenharmony_civoid atl1c_hash_set(struct atl1c_hw *hw, u32 hash_value); 328c2ecf20Sopenharmony_ciint atl1c_read_phy_reg(struct atl1c_hw *hw, u16 reg_addr, u16 *phy_data); 338c2ecf20Sopenharmony_ciint atl1c_write_phy_reg(struct atl1c_hw *hw, u32 reg_addr, u16 phy_data); 348c2ecf20Sopenharmony_cibool atl1c_read_eeprom(struct atl1c_hw *hw, u32 offset, u32 *p_value); 358c2ecf20Sopenharmony_ciint atl1c_phy_init(struct atl1c_hw *hw); 368c2ecf20Sopenharmony_ciint atl1c_check_eeprom_exist(struct atl1c_hw *hw); 378c2ecf20Sopenharmony_ciint atl1c_restart_autoneg(struct atl1c_hw *hw); 388c2ecf20Sopenharmony_ciint atl1c_phy_to_ps_link(struct atl1c_hw *hw); 398c2ecf20Sopenharmony_ciint atl1c_power_saving(struct atl1c_hw *hw, u32 wufc); 408c2ecf20Sopenharmony_cibool atl1c_wait_mdio_idle(struct atl1c_hw *hw); 418c2ecf20Sopenharmony_civoid atl1c_stop_phy_polling(struct atl1c_hw *hw); 428c2ecf20Sopenharmony_civoid atl1c_start_phy_polling(struct atl1c_hw *hw, u16 clk_sel); 438c2ecf20Sopenharmony_ciint atl1c_read_phy_core(struct atl1c_hw *hw, bool ext, u8 dev, 448c2ecf20Sopenharmony_ci u16 reg, u16 *phy_data); 458c2ecf20Sopenharmony_ciint atl1c_write_phy_core(struct atl1c_hw *hw, bool ext, u8 dev, 468c2ecf20Sopenharmony_ci u16 reg, u16 phy_data); 478c2ecf20Sopenharmony_ciint atl1c_read_phy_ext(struct atl1c_hw *hw, u8 dev_addr, 488c2ecf20Sopenharmony_ci u16 reg_addr, u16 *phy_data); 498c2ecf20Sopenharmony_ciint atl1c_write_phy_ext(struct atl1c_hw *hw, u8 dev_addr, 508c2ecf20Sopenharmony_ci u16 reg_addr, u16 phy_data); 518c2ecf20Sopenharmony_ciint atl1c_read_phy_dbg(struct atl1c_hw *hw, u16 reg_addr, u16 *phy_data); 528c2ecf20Sopenharmony_ciint atl1c_write_phy_dbg(struct atl1c_hw *hw, u16 reg_addr, u16 phy_data); 538c2ecf20Sopenharmony_civoid atl1c_post_phy_linkchg(struct atl1c_hw *hw, u16 link_speed); 548c2ecf20Sopenharmony_ci 558c2ecf20Sopenharmony_ci/* hw-ids */ 568c2ecf20Sopenharmony_ci#define PCI_DEVICE_ID_ATTANSIC_L2C 0x1062 578c2ecf20Sopenharmony_ci#define PCI_DEVICE_ID_ATTANSIC_L1C 0x1063 588c2ecf20Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L2C_B 0x2060 /* AR8152 v1.1 Fast 10/100 */ 598c2ecf20Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L2C_B2 0x2062 /* AR8152 v2.0 Fast 10/100 */ 608c2ecf20Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L1D 0x1073 /* AR8151 v1.0 Gigabit 1000 */ 618c2ecf20Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L1D_2_0 0x1083 /* AR8151 v2.0 Gigabit 1000 */ 628c2ecf20Sopenharmony_ci#define L2CB_V10 0xc0 638c2ecf20Sopenharmony_ci#define L2CB_V11 0xc1 648c2ecf20Sopenharmony_ci#define L2CB_V20 0xc0 658c2ecf20Sopenharmony_ci#define L2CB_V21 0xc1 668c2ecf20Sopenharmony_ci 678c2ecf20Sopenharmony_ci/* register definition */ 688c2ecf20Sopenharmony_ci#define REG_DEVICE_CAP 0x5C 698c2ecf20Sopenharmony_ci#define DEVICE_CAP_MAX_PAYLOAD_MASK 0x7 708c2ecf20Sopenharmony_ci#define DEVICE_CAP_MAX_PAYLOAD_SHIFT 0 718c2ecf20Sopenharmony_ci 728c2ecf20Sopenharmony_ci#define DEVICE_CTRL_MAXRRS_MIN 2 738c2ecf20Sopenharmony_ci 748c2ecf20Sopenharmony_ci#define REG_LINK_CTRL 0x68 758c2ecf20Sopenharmony_ci#define LINK_CTRL_L0S_EN 0x01 768c2ecf20Sopenharmony_ci#define LINK_CTRL_L1_EN 0x02 778c2ecf20Sopenharmony_ci#define LINK_CTRL_EXT_SYNC 0x80 788c2ecf20Sopenharmony_ci 798c2ecf20Sopenharmony_ci#define REG_PCIE_IND_ACC_ADDR 0x80 808c2ecf20Sopenharmony_ci#define REG_PCIE_IND_ACC_DATA 0x84 818c2ecf20Sopenharmony_ci 828c2ecf20Sopenharmony_ci#define REG_DEV_SERIALNUM_CTRL 0x200 838c2ecf20Sopenharmony_ci#define REG_DEV_MAC_SEL_MASK 0x0 /* 0:EUI; 1:MAC */ 848c2ecf20Sopenharmony_ci#define REG_DEV_MAC_SEL_SHIFT 0 858c2ecf20Sopenharmony_ci#define REG_DEV_SERIAL_NUM_EN_MASK 0x1 868c2ecf20Sopenharmony_ci#define REG_DEV_SERIAL_NUM_EN_SHIFT 1 878c2ecf20Sopenharmony_ci 888c2ecf20Sopenharmony_ci#define REG_TWSI_CTRL 0x218 898c2ecf20Sopenharmony_ci#define TWSI_CTLR_FREQ_MASK 0x3UL 908c2ecf20Sopenharmony_ci#define TWSI_CTRL_FREQ_SHIFT 24 918c2ecf20Sopenharmony_ci#define TWSI_CTRL_FREQ_100K 0 928c2ecf20Sopenharmony_ci#define TWSI_CTRL_FREQ_200K 1 938c2ecf20Sopenharmony_ci#define TWSI_CTRL_FREQ_300K 2 948c2ecf20Sopenharmony_ci#define TWSI_CTRL_FREQ_400K 3 958c2ecf20Sopenharmony_ci#define TWSI_CTRL_LD_EXIST BIT(23) 968c2ecf20Sopenharmony_ci#define TWSI_CTRL_HW_LDSTAT BIT(12) /* 0:finish,1:in progress */ 978c2ecf20Sopenharmony_ci#define TWSI_CTRL_SW_LDSTART BIT(11) 988c2ecf20Sopenharmony_ci#define TWSI_CTRL_LD_OFFSET_MASK 0xFF 998c2ecf20Sopenharmony_ci#define TWSI_CTRL_LD_OFFSET_SHIFT 0 1008c2ecf20Sopenharmony_ci 1018c2ecf20Sopenharmony_ci#define REG_PCIE_DEV_MISC_CTRL 0x21C 1028c2ecf20Sopenharmony_ci#define PCIE_DEV_MISC_EXT_PIPE 0x2 1038c2ecf20Sopenharmony_ci#define PCIE_DEV_MISC_RETRY_BUFDIS 0x1 1048c2ecf20Sopenharmony_ci#define PCIE_DEV_MISC_SPIROM_EXIST 0x4 1058c2ecf20Sopenharmony_ci#define PCIE_DEV_MISC_SERDES_ENDIAN 0x8 1068c2ecf20Sopenharmony_ci#define PCIE_DEV_MISC_SERDES_SEL_DIN 0x10 1078c2ecf20Sopenharmony_ci 1088c2ecf20Sopenharmony_ci#define REG_PCIE_PHYMISC 0x1000 1098c2ecf20Sopenharmony_ci#define PCIE_PHYMISC_FORCE_RCV_DET BIT(2) 1108c2ecf20Sopenharmony_ci#define PCIE_PHYMISC_NFTS_MASK 0xFFUL 1118c2ecf20Sopenharmony_ci#define PCIE_PHYMISC_NFTS_SHIFT 16 1128c2ecf20Sopenharmony_ci 1138c2ecf20Sopenharmony_ci#define REG_PCIE_PHYMISC2 0x1004 1148c2ecf20Sopenharmony_ci#define PCIE_PHYMISC2_L0S_TH_MASK 0x3UL 1158c2ecf20Sopenharmony_ci#define PCIE_PHYMISC2_L0S_TH_SHIFT 18 1168c2ecf20Sopenharmony_ci#define L2CB1_PCIE_PHYMISC2_L0S_TH 3 1178c2ecf20Sopenharmony_ci#define PCIE_PHYMISC2_CDR_BW_MASK 0x3UL 1188c2ecf20Sopenharmony_ci#define PCIE_PHYMISC2_CDR_BW_SHIFT 16 1198c2ecf20Sopenharmony_ci#define L2CB1_PCIE_PHYMISC2_CDR_BW 3 1208c2ecf20Sopenharmony_ci 1218c2ecf20Sopenharmony_ci#define REG_TWSI_DEBUG 0x1108 1228c2ecf20Sopenharmony_ci#define TWSI_DEBUG_DEV_EXIST BIT(29) 1238c2ecf20Sopenharmony_ci 1248c2ecf20Sopenharmony_ci#define REG_DMA_DBG 0x1114 1258c2ecf20Sopenharmony_ci#define DMA_DBG_VENDOR_MSG BIT(0) 1268c2ecf20Sopenharmony_ci 1278c2ecf20Sopenharmony_ci#define REG_EEPROM_CTRL 0x12C0 1288c2ecf20Sopenharmony_ci#define EEPROM_CTRL_DATA_HI_MASK 0xFFFF 1298c2ecf20Sopenharmony_ci#define EEPROM_CTRL_DATA_HI_SHIFT 0 1308c2ecf20Sopenharmony_ci#define EEPROM_CTRL_ADDR_MASK 0x3FF 1318c2ecf20Sopenharmony_ci#define EEPROM_CTRL_ADDR_SHIFT 16 1328c2ecf20Sopenharmony_ci#define EEPROM_CTRL_ACK 0x40000000 1338c2ecf20Sopenharmony_ci#define EEPROM_CTRL_RW 0x80000000 1348c2ecf20Sopenharmony_ci 1358c2ecf20Sopenharmony_ci#define REG_EEPROM_DATA_LO 0x12C4 1368c2ecf20Sopenharmony_ci 1378c2ecf20Sopenharmony_ci#define REG_OTP_CTRL 0x12F0 1388c2ecf20Sopenharmony_ci#define OTP_CTRL_CLK_EN BIT(1) 1398c2ecf20Sopenharmony_ci 1408c2ecf20Sopenharmony_ci#define REG_PM_CTRL 0x12F8 1418c2ecf20Sopenharmony_ci#define PM_CTRL_HOTRST BIT(31) 1428c2ecf20Sopenharmony_ci#define PM_CTRL_MAC_ASPM_CHK BIT(30) /* L0s/L1 dis by MAC based on 1438c2ecf20Sopenharmony_ci * thrghput(setting in 15A0) */ 1448c2ecf20Sopenharmony_ci#define PM_CTRL_SA_DLY_EN BIT(29) 1458c2ecf20Sopenharmony_ci#define PM_CTRL_L0S_BUFSRX_EN BIT(28) 1468c2ecf20Sopenharmony_ci#define PM_CTRL_LCKDET_TIMER_MASK 0xFUL 1478c2ecf20Sopenharmony_ci#define PM_CTRL_LCKDET_TIMER_SHIFT 24 1488c2ecf20Sopenharmony_ci#define PM_CTRL_LCKDET_TIMER_DEF 0xC 1498c2ecf20Sopenharmony_ci#define PM_CTRL_PM_REQ_TIMER_MASK 0xFUL 1508c2ecf20Sopenharmony_ci#define PM_CTRL_PM_REQ_TIMER_SHIFT 20 /* pm_request_l1 time > @ 1518c2ecf20Sopenharmony_ci * ->L0s not L1 */ 1528c2ecf20Sopenharmony_ci#define PM_CTRL_PM_REQ_TO_DEF 0xF 1538c2ecf20Sopenharmony_ci#define PMCTRL_TXL1_AFTER_L0S BIT(19) /* l1dv2.0+ */ 1548c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_MASK 7UL /* l1dv2.0+, 3bits */ 1558c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_SHIFT 16 1568c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_DIS 0 1578c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_2US 1 1588c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_4US 2 1598c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_8US 3 1608c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_16US 4 1618c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_24US 5 1628c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_32US 6 1638c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_63US 7 1648c2ecf20Sopenharmony_ci#define PM_CTRL_L1_ENTRY_TIMER_MASK 0xFUL /* l1C 4bits */ 1658c2ecf20Sopenharmony_ci#define PM_CTRL_L1_ENTRY_TIMER_SHIFT 16 1668c2ecf20Sopenharmony_ci#define L2CB1_PM_CTRL_L1_ENTRY_TM 7 1678c2ecf20Sopenharmony_ci#define L1C_PM_CTRL_L1_ENTRY_TM 0xF 1688c2ecf20Sopenharmony_ci#define PM_CTRL_RCVR_WT_TIMER BIT(15) /* 1:1us, 0:2ms */ 1698c2ecf20Sopenharmony_ci#define PM_CTRL_CLK_PWM_VER1_1 BIT(14) /* 0:1.0a,1:1.1 */ 1708c2ecf20Sopenharmony_ci#define PM_CTRL_CLK_SWH_L1 BIT(13) /* en pcie clk sw in L1 */ 1718c2ecf20Sopenharmony_ci#define PM_CTRL_ASPM_L0S_EN BIT(12) 1728c2ecf20Sopenharmony_ci#define PM_CTRL_RXL1_AFTER_L0S BIT(11) /* l1dv2.0+ */ 1738c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L0S_TIMER_MASK 7UL /* l1d2.0+, 3bits*/ 1748c2ecf20Sopenharmony_ci#define L1D_PMCTRL_L0S_TIMER_SHIFT 8 1758c2ecf20Sopenharmony_ci#define PM_CTRL_L0S_ENTRY_TIMER_MASK 0xFUL /* l1c, 4bits */ 1768c2ecf20Sopenharmony_ci#define PM_CTRL_L0S_ENTRY_TIMER_SHIFT 8 1778c2ecf20Sopenharmony_ci#define PM_CTRL_SERDES_BUFS_RX_L1_EN BIT(7) 1788c2ecf20Sopenharmony_ci#define PM_CTRL_SERDES_PD_EX_L1 BIT(6) /* power down serdes rx */ 1798c2ecf20Sopenharmony_ci#define PM_CTRL_SERDES_PLL_L1_EN BIT(5) 1808c2ecf20Sopenharmony_ci#define PM_CTRL_SERDES_L1_EN BIT(4) 1818c2ecf20Sopenharmony_ci#define PM_CTRL_ASPM_L1_EN BIT(3) 1828c2ecf20Sopenharmony_ci#define PM_CTRL_CLK_REQ_EN BIT(2) 1838c2ecf20Sopenharmony_ci#define PM_CTRL_RBER_EN BIT(1) 1848c2ecf20Sopenharmony_ci#define PM_CTRL_SPRSDWER_EN BIT(0) 1858c2ecf20Sopenharmony_ci 1868c2ecf20Sopenharmony_ci#define REG_LTSSM_ID_CTRL 0x12FC 1878c2ecf20Sopenharmony_ci#define LTSSM_ID_EN_WRO 0x1000 1888c2ecf20Sopenharmony_ci 1898c2ecf20Sopenharmony_ci 1908c2ecf20Sopenharmony_ci/* Selene Master Control Register */ 1918c2ecf20Sopenharmony_ci#define REG_MASTER_CTRL 0x1400 1928c2ecf20Sopenharmony_ci#define MASTER_CTRL_OTP_SEL BIT(31) 1938c2ecf20Sopenharmony_ci#define MASTER_DEV_NUM_MASK 0x7FUL 1948c2ecf20Sopenharmony_ci#define MASTER_DEV_NUM_SHIFT 24 1958c2ecf20Sopenharmony_ci#define MASTER_REV_NUM_MASK 0xFFUL 1968c2ecf20Sopenharmony_ci#define MASTER_REV_NUM_SHIFT 16 1978c2ecf20Sopenharmony_ci#define MASTER_CTRL_INT_RDCLR BIT(14) 1988c2ecf20Sopenharmony_ci#define MASTER_CTRL_CLK_SEL_DIS BIT(12) /* 1:alwys sel pclk from 1998c2ecf20Sopenharmony_ci * serdes, not sw to 25M */ 2008c2ecf20Sopenharmony_ci#define MASTER_CTRL_RX_ITIMER_EN BIT(11) /* IRQ MODURATION FOR RX */ 2018c2ecf20Sopenharmony_ci#define MASTER_CTRL_TX_ITIMER_EN BIT(10) /* MODURATION FOR TX/RX */ 2028c2ecf20Sopenharmony_ci#define MASTER_CTRL_MANU_INT BIT(9) /* SOFT MANUAL INT */ 2038c2ecf20Sopenharmony_ci#define MASTER_CTRL_MANUTIMER_EN BIT(8) 2048c2ecf20Sopenharmony_ci#define MASTER_CTRL_SA_TIMER_EN BIT(7) /* SYS ALIVE TIMER EN */ 2058c2ecf20Sopenharmony_ci#define MASTER_CTRL_OOB_DIS BIT(6) /* OUT OF BOX DIS */ 2068c2ecf20Sopenharmony_ci#define MASTER_CTRL_WAKEN_25M BIT(5) /* WAKE WO. PCIE CLK */ 2078c2ecf20Sopenharmony_ci#define MASTER_CTRL_BERT_START BIT(4) 2088c2ecf20Sopenharmony_ci#define MASTER_PCIE_TSTMOD_MASK 3UL 2098c2ecf20Sopenharmony_ci#define MASTER_PCIE_TSTMOD_SHIFT 2 2108c2ecf20Sopenharmony_ci#define MASTER_PCIE_RST BIT(1) 2118c2ecf20Sopenharmony_ci#define MASTER_CTRL_SOFT_RST BIT(0) /* RST MAC & DMA */ 2128c2ecf20Sopenharmony_ci#define DMA_MAC_RST_TO 50 2138c2ecf20Sopenharmony_ci 2148c2ecf20Sopenharmony_ci/* Timer Initial Value Register */ 2158c2ecf20Sopenharmony_ci#define REG_MANUAL_TIMER_INIT 0x1404 2168c2ecf20Sopenharmony_ci 2178c2ecf20Sopenharmony_ci/* IRQ ModeratorTimer Initial Value Register */ 2188c2ecf20Sopenharmony_ci#define REG_IRQ_MODRT_TIMER_INIT 0x1408 2198c2ecf20Sopenharmony_ci#define IRQ_MODRT_TIMER_MASK 0xffff 2208c2ecf20Sopenharmony_ci#define IRQ_MODRT_TX_TIMER_SHIFT 0 2218c2ecf20Sopenharmony_ci#define IRQ_MODRT_RX_TIMER_SHIFT 16 2228c2ecf20Sopenharmony_ci 2238c2ecf20Sopenharmony_ci#define REG_GPHY_CTRL 0x140C 2248c2ecf20Sopenharmony_ci#define GPHY_CTRL_ADDR_MASK 0x1FUL 2258c2ecf20Sopenharmony_ci#define GPHY_CTRL_ADDR_SHIFT 19 2268c2ecf20Sopenharmony_ci#define GPHY_CTRL_BP_VLTGSW BIT(18) 2278c2ecf20Sopenharmony_ci#define GPHY_CTRL_100AB_EN BIT(17) 2288c2ecf20Sopenharmony_ci#define GPHY_CTRL_10AB_EN BIT(16) 2298c2ecf20Sopenharmony_ci#define GPHY_CTRL_PHY_PLL_BYPASS BIT(15) 2308c2ecf20Sopenharmony_ci#define GPHY_CTRL_PWDOWN_HW BIT(14) /* affect MAC&PHY, to low pw */ 2318c2ecf20Sopenharmony_ci#define GPHY_CTRL_PHY_PLL_ON BIT(13) /* 1:pll always on, 0:can sw */ 2328c2ecf20Sopenharmony_ci#define GPHY_CTRL_SEL_ANA_RST BIT(12) 2338c2ecf20Sopenharmony_ci#define GPHY_CTRL_HIB_PULSE BIT(11) 2348c2ecf20Sopenharmony_ci#define GPHY_CTRL_HIB_EN BIT(10) 2358c2ecf20Sopenharmony_ci#define GPHY_CTRL_GIGA_DIS BIT(9) 2368c2ecf20Sopenharmony_ci#define GPHY_CTRL_PHY_IDDQ_DIS BIT(8) /* pw on RST */ 2378c2ecf20Sopenharmony_ci#define GPHY_CTRL_PHY_IDDQ BIT(7) /* bit8 affect bit7 while rb */ 2388c2ecf20Sopenharmony_ci#define GPHY_CTRL_LPW_EXIT BIT(6) 2398c2ecf20Sopenharmony_ci#define GPHY_CTRL_GATE_25M_EN BIT(5) 2408c2ecf20Sopenharmony_ci#define GPHY_CTRL_REV_ANEG BIT(4) 2418c2ecf20Sopenharmony_ci#define GPHY_CTRL_ANEG_NOW BIT(3) 2428c2ecf20Sopenharmony_ci#define GPHY_CTRL_LED_MODE BIT(2) 2438c2ecf20Sopenharmony_ci#define GPHY_CTRL_RTL_MODE BIT(1) 2448c2ecf20Sopenharmony_ci#define GPHY_CTRL_EXT_RESET BIT(0) /* 1:out of DSP RST status */ 2458c2ecf20Sopenharmony_ci#define GPHY_CTRL_EXT_RST_TO 80 /* 800us atmost */ 2468c2ecf20Sopenharmony_ci#define GPHY_CTRL_CLS (\ 2478c2ecf20Sopenharmony_ci GPHY_CTRL_LED_MODE |\ 2488c2ecf20Sopenharmony_ci GPHY_CTRL_100AB_EN |\ 2498c2ecf20Sopenharmony_ci GPHY_CTRL_PHY_PLL_ON) 2508c2ecf20Sopenharmony_ci 2518c2ecf20Sopenharmony_ci/* Block IDLE Status Register */ 2528c2ecf20Sopenharmony_ci#define REG_IDLE_STATUS 0x1410 2538c2ecf20Sopenharmony_ci#define IDLE_STATUS_SFORCE_MASK 0xFUL 2548c2ecf20Sopenharmony_ci#define IDLE_STATUS_SFORCE_SHIFT 14 2558c2ecf20Sopenharmony_ci#define IDLE_STATUS_CALIB_DONE BIT(13) 2568c2ecf20Sopenharmony_ci#define IDLE_STATUS_CALIB_RES_MASK 0x1FUL 2578c2ecf20Sopenharmony_ci#define IDLE_STATUS_CALIB_RES_SHIFT 8 2588c2ecf20Sopenharmony_ci#define IDLE_STATUS_CALIBERR_MASK 0xFUL 2598c2ecf20Sopenharmony_ci#define IDLE_STATUS_CALIBERR_SHIFT 4 2608c2ecf20Sopenharmony_ci#define IDLE_STATUS_TXQ_BUSY BIT(3) 2618c2ecf20Sopenharmony_ci#define IDLE_STATUS_RXQ_BUSY BIT(2) 2628c2ecf20Sopenharmony_ci#define IDLE_STATUS_TXMAC_BUSY BIT(1) 2638c2ecf20Sopenharmony_ci#define IDLE_STATUS_RXMAC_BUSY BIT(0) 2648c2ecf20Sopenharmony_ci#define IDLE_STATUS_MASK (\ 2658c2ecf20Sopenharmony_ci IDLE_STATUS_TXQ_BUSY |\ 2668c2ecf20Sopenharmony_ci IDLE_STATUS_RXQ_BUSY |\ 2678c2ecf20Sopenharmony_ci IDLE_STATUS_TXMAC_BUSY |\ 2688c2ecf20Sopenharmony_ci IDLE_STATUS_RXMAC_BUSY) 2698c2ecf20Sopenharmony_ci 2708c2ecf20Sopenharmony_ci/* MDIO Control Register */ 2718c2ecf20Sopenharmony_ci#define REG_MDIO_CTRL 0x1414 2728c2ecf20Sopenharmony_ci#define MDIO_CTRL_MODE_EXT BIT(30) 2738c2ecf20Sopenharmony_ci#define MDIO_CTRL_POST_READ BIT(29) 2748c2ecf20Sopenharmony_ci#define MDIO_CTRL_AP_EN BIT(28) 2758c2ecf20Sopenharmony_ci#define MDIO_CTRL_BUSY BIT(27) 2768c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_SEL_MASK 0x7UL 2778c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_SEL_SHIFT 24 2788c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_25_4 0 /* 25MHz divide 4 */ 2798c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_25_6 2 2808c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_25_8 3 2818c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_25_10 4 2828c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_25_32 5 2838c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_25_64 6 2848c2ecf20Sopenharmony_ci#define MDIO_CTRL_CLK_25_128 7 2858c2ecf20Sopenharmony_ci#define MDIO_CTRL_START BIT(23) 2868c2ecf20Sopenharmony_ci#define MDIO_CTRL_SPRES_PRMBL BIT(22) 2878c2ecf20Sopenharmony_ci#define MDIO_CTRL_OP_READ BIT(21) /* 1:read, 0:write */ 2888c2ecf20Sopenharmony_ci#define MDIO_CTRL_REG_MASK 0x1FUL 2898c2ecf20Sopenharmony_ci#define MDIO_CTRL_REG_SHIFT 16 2908c2ecf20Sopenharmony_ci#define MDIO_CTRL_DATA_MASK 0xFFFFUL 2918c2ecf20Sopenharmony_ci#define MDIO_CTRL_DATA_SHIFT 0 2928c2ecf20Sopenharmony_ci#define MDIO_MAX_AC_TO 120 /* 1.2ms timeout for slow clk */ 2938c2ecf20Sopenharmony_ci 2948c2ecf20Sopenharmony_ci/* for extension reg access */ 2958c2ecf20Sopenharmony_ci#define REG_MDIO_EXTN 0x1448 2968c2ecf20Sopenharmony_ci#define MDIO_EXTN_PORTAD_MASK 0x1FUL 2978c2ecf20Sopenharmony_ci#define MDIO_EXTN_PORTAD_SHIFT 21 2988c2ecf20Sopenharmony_ci#define MDIO_EXTN_DEVAD_MASK 0x1FUL 2998c2ecf20Sopenharmony_ci#define MDIO_EXTN_DEVAD_SHIFT 16 3008c2ecf20Sopenharmony_ci#define MDIO_EXTN_REG_MASK 0xFFFFUL 3018c2ecf20Sopenharmony_ci#define MDIO_EXTN_REG_SHIFT 0 3028c2ecf20Sopenharmony_ci 3038c2ecf20Sopenharmony_ci/* BIST Control and Status Register0 (for the Packet Memory) */ 3048c2ecf20Sopenharmony_ci#define REG_BIST0_CTRL 0x141c 3058c2ecf20Sopenharmony_ci#define BIST0_NOW 0x1 3068c2ecf20Sopenharmony_ci#define BIST0_SRAM_FAIL 0x2 /* 1: The SRAM failure is 3078c2ecf20Sopenharmony_ci * un-repairable because 3088c2ecf20Sopenharmony_ci * it has address decoder 3098c2ecf20Sopenharmony_ci * failure or more than 1 cell 3108c2ecf20Sopenharmony_ci * stuck-to-x failure */ 3118c2ecf20Sopenharmony_ci#define BIST0_FUSE_FLAG 0x4 3128c2ecf20Sopenharmony_ci 3138c2ecf20Sopenharmony_ci/* BIST Control and Status Register1(for the retry buffer of PCI Express) */ 3148c2ecf20Sopenharmony_ci#define REG_BIST1_CTRL 0x1420 3158c2ecf20Sopenharmony_ci#define BIST1_NOW 0x1 3168c2ecf20Sopenharmony_ci#define BIST1_SRAM_FAIL 0x2 3178c2ecf20Sopenharmony_ci#define BIST1_FUSE_FLAG 0x4 3188c2ecf20Sopenharmony_ci 3198c2ecf20Sopenharmony_ci/* SerDes Lock Detect Control and Status Register */ 3208c2ecf20Sopenharmony_ci#define REG_SERDES 0x1424 3218c2ecf20Sopenharmony_ci#define SERDES_PHY_CLK_SLOWDOWN BIT(18) 3228c2ecf20Sopenharmony_ci#define SERDES_MAC_CLK_SLOWDOWN BIT(17) 3238c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_MASK 0x3UL 3248c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_SHIFT 14 3258c2ecf20Sopenharmony_ci#define SERDES_PHYCLK_SEL_GTX BIT(13) /* 1:gtx_clk, 0:25M */ 3268c2ecf20Sopenharmony_ci#define SERDES_PCIECLK_SEL_SRDS BIT(12) /* 1:serdes,0:25M */ 3278c2ecf20Sopenharmony_ci#define SERDES_BUFS_RX_EN BIT(11) 3288c2ecf20Sopenharmony_ci#define SERDES_PD_RX BIT(10) 3298c2ecf20Sopenharmony_ci#define SERDES_PLL_EN BIT(9) 3308c2ecf20Sopenharmony_ci#define SERDES_EN BIT(8) 3318c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_SEL_CSR BIT(6) /* 0:state-machine,1:csr */ 3328c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_MASK 0x3UL 3338c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_SHIFT 4 3348c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_4 3 /* 4-12% OV-CLK */ 3358c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_0 2 /* 0-4% OV-CLK */ 3368c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_12 1 /* 12-18% OV-CLK */ 3378c2ecf20Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_18 0 /* 18-25% OV-CLK */ 3388c2ecf20Sopenharmony_ci#define SERDES_VCO_SLOW BIT(3) 3398c2ecf20Sopenharmony_ci#define SERDES_VCO_FAST BIT(2) 3408c2ecf20Sopenharmony_ci#define SERDES_LOCK_DETECT_EN BIT(1) 3418c2ecf20Sopenharmony_ci#define SERDES_LOCK_DETECT BIT(0) 3428c2ecf20Sopenharmony_ci 3438c2ecf20Sopenharmony_ci#define REG_LPI_DECISN_TIMER 0x143C 3448c2ecf20Sopenharmony_ci#define L2CB_LPI_DESISN_TIMER 0x7D00 3458c2ecf20Sopenharmony_ci 3468c2ecf20Sopenharmony_ci#define REG_LPI_CTRL 0x1440 3478c2ecf20Sopenharmony_ci#define LPI_CTRL_CHK_DA BIT(31) 3488c2ecf20Sopenharmony_ci#define LPI_CTRL_ENH_TO_MASK 0x1FFFUL 3498c2ecf20Sopenharmony_ci#define LPI_CTRL_ENH_TO_SHIFT 12 3508c2ecf20Sopenharmony_ci#define LPI_CTRL_ENH_TH_MASK 0x1FUL 3518c2ecf20Sopenharmony_ci#define LPI_CTRL_ENH_TH_SHIFT 6 3528c2ecf20Sopenharmony_ci#define LPI_CTRL_ENH_EN BIT(5) 3538c2ecf20Sopenharmony_ci#define LPI_CTRL_CHK_RX BIT(4) 3548c2ecf20Sopenharmony_ci#define LPI_CTRL_CHK_STATE BIT(3) 3558c2ecf20Sopenharmony_ci#define LPI_CTRL_GMII BIT(2) 3568c2ecf20Sopenharmony_ci#define LPI_CTRL_TO_PHY BIT(1) 3578c2ecf20Sopenharmony_ci#define LPI_CTRL_EN BIT(0) 3588c2ecf20Sopenharmony_ci 3598c2ecf20Sopenharmony_ci#define REG_LPI_WAIT 0x1444 3608c2ecf20Sopenharmony_ci#define LPI_WAIT_TIMER_MASK 0xFFFFUL 3618c2ecf20Sopenharmony_ci#define LPI_WAIT_TIMER_SHIFT 0 3628c2ecf20Sopenharmony_ci 3638c2ecf20Sopenharmony_ci/* MAC Control Register */ 3648c2ecf20Sopenharmony_ci#define REG_MAC_CTRL 0x1480 3658c2ecf20Sopenharmony_ci#define MAC_CTRL_SPEED_MODE_SW BIT(30) /* 0:phy,1:sw */ 3668c2ecf20Sopenharmony_ci#define MAC_CTRL_HASH_ALG_CRC32 BIT(29) /* 1:legacy,0:lw_5b */ 3678c2ecf20Sopenharmony_ci#define MAC_CTRL_SINGLE_PAUSE_EN BIT(28) 3688c2ecf20Sopenharmony_ci#define MAC_CTRL_DBG BIT(27) 3698c2ecf20Sopenharmony_ci#define MAC_CTRL_BC_EN BIT(26) 3708c2ecf20Sopenharmony_ci#define MAC_CTRL_MC_ALL_EN BIT(25) 3718c2ecf20Sopenharmony_ci#define MAC_CTRL_RX_CHKSUM_EN BIT(24) 3728c2ecf20Sopenharmony_ci#define MAC_CTRL_TX_HUGE BIT(23) 3738c2ecf20Sopenharmony_ci#define MAC_CTRL_DBG_TX_BKPRESURE BIT(22) 3748c2ecf20Sopenharmony_ci#define MAC_CTRL_SPEED_MASK 3UL 3758c2ecf20Sopenharmony_ci#define MAC_CTRL_SPEED_SHIFT 20 3768c2ecf20Sopenharmony_ci#define MAC_CTRL_SPEED_10_100 1 3778c2ecf20Sopenharmony_ci#define MAC_CTRL_SPEED_1000 2 3788c2ecf20Sopenharmony_ci#define MAC_CTRL_TX_SIMURST BIT(19) 3798c2ecf20Sopenharmony_ci#define MAC_CTRL_SCNT BIT(17) 3808c2ecf20Sopenharmony_ci#define MAC_CTRL_TX_PAUSE BIT(16) 3818c2ecf20Sopenharmony_ci#define MAC_CTRL_PROMIS_EN BIT(15) 3828c2ecf20Sopenharmony_ci#define MAC_CTRL_RMV_VLAN BIT(14) 3838c2ecf20Sopenharmony_ci#define MAC_CTRL_PRMLEN_MASK 0xFUL 3848c2ecf20Sopenharmony_ci#define MAC_CTRL_PRMLEN_SHIFT 10 3858c2ecf20Sopenharmony_ci#define MAC_CTRL_HUGE_EN BIT(9) 3868c2ecf20Sopenharmony_ci#define MAC_CTRL_LENCHK BIT(8) 3878c2ecf20Sopenharmony_ci#define MAC_CTRL_PAD BIT(7) 3888c2ecf20Sopenharmony_ci#define MAC_CTRL_ADD_CRC BIT(6) 3898c2ecf20Sopenharmony_ci#define MAC_CTRL_DUPLX BIT(5) 3908c2ecf20Sopenharmony_ci#define MAC_CTRL_LOOPBACK BIT(4) 3918c2ecf20Sopenharmony_ci#define MAC_CTRL_RX_FLOW BIT(3) 3928c2ecf20Sopenharmony_ci#define MAC_CTRL_TX_FLOW BIT(2) 3938c2ecf20Sopenharmony_ci#define MAC_CTRL_RX_EN BIT(1) 3948c2ecf20Sopenharmony_ci#define MAC_CTRL_TX_EN BIT(0) 3958c2ecf20Sopenharmony_ci 3968c2ecf20Sopenharmony_ci/* MAC IPG/IFG Control Register */ 3978c2ecf20Sopenharmony_ci#define REG_MAC_IPG_IFG 0x1484 3988c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_IPGT_SHIFT 0 /* Desired back to back 3998c2ecf20Sopenharmony_ci * inter-packet gap. The 4008c2ecf20Sopenharmony_ci * default is 96-bit time */ 4018c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_IPGT_MASK 0x7f 4028c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_MIFG_SHIFT 8 /* Minimum number of IFG to 4038c2ecf20Sopenharmony_ci * enforce in between RX frames */ 4048c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_MIFG_MASK 0xff /* Frame gap below such IFP is dropped */ 4058c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_IPGR1_SHIFT 16 /* 64bit Carrier-Sense window */ 4068c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_IPGR1_MASK 0x7f 4078c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_IPGR2_SHIFT 24 /* 96-bit IPG window */ 4088c2ecf20Sopenharmony_ci#define MAC_IPG_IFG_IPGR2_MASK 0x7f 4098c2ecf20Sopenharmony_ci 4108c2ecf20Sopenharmony_ci/* MAC STATION ADDRESS */ 4118c2ecf20Sopenharmony_ci#define REG_MAC_STA_ADDR 0x1488 4128c2ecf20Sopenharmony_ci 4138c2ecf20Sopenharmony_ci/* Hash table for multicast address */ 4148c2ecf20Sopenharmony_ci#define REG_RX_HASH_TABLE 0x1490 4158c2ecf20Sopenharmony_ci 4168c2ecf20Sopenharmony_ci/* MAC Half-Duplex Control Register */ 4178c2ecf20Sopenharmony_ci#define REG_MAC_HALF_DUPLX_CTRL 0x1498 4188c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_LCOL_SHIFT 0 /* Collision Window */ 4198c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_LCOL_MASK 0x3ff 4208c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_RETRY_SHIFT 12 4218c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_RETRY_MASK 0xf 4228c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_EXC_DEF_EN 0x10000 4238c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_NO_BACK_C 0x20000 4248c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_NO_BACK_P 0x40000 /* No back-off on backpressure, 4258c2ecf20Sopenharmony_ci * immediately start the 4268c2ecf20Sopenharmony_ci * transmission after back pressure */ 4278c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_ABEBE 0x80000 /* 1: Alternative Binary Exponential Back-off Enabled */ 4288c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_ABEBT_SHIFT 20 /* Maximum binary exponential number */ 4298c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_ABEBT_MASK 0xf 4308c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_JAMIPG_SHIFT 24 /* IPG to start JAM for collision based flow control in half-duplex */ 4318c2ecf20Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_JAMIPG_MASK 0xf /* mode. In unit of 8-bit time */ 4328c2ecf20Sopenharmony_ci 4338c2ecf20Sopenharmony_ci/* Maximum Frame Length Control Register */ 4348c2ecf20Sopenharmony_ci#define REG_MTU 0x149c 4358c2ecf20Sopenharmony_ci 4368c2ecf20Sopenharmony_ci/* Wake-On-Lan control register */ 4378c2ecf20Sopenharmony_ci#define REG_WOL_CTRL 0x14a0 4388c2ecf20Sopenharmony_ci#define WOL_PT7_MATCH BIT(31) 4398c2ecf20Sopenharmony_ci#define WOL_PT6_MATCH BIT(30) 4408c2ecf20Sopenharmony_ci#define WOL_PT5_MATCH BIT(29) 4418c2ecf20Sopenharmony_ci#define WOL_PT4_MATCH BIT(28) 4428c2ecf20Sopenharmony_ci#define WOL_PT3_MATCH BIT(27) 4438c2ecf20Sopenharmony_ci#define WOL_PT2_MATCH BIT(26) 4448c2ecf20Sopenharmony_ci#define WOL_PT1_MATCH BIT(25) 4458c2ecf20Sopenharmony_ci#define WOL_PT0_MATCH BIT(24) 4468c2ecf20Sopenharmony_ci#define WOL_PT7_EN BIT(23) 4478c2ecf20Sopenharmony_ci#define WOL_PT6_EN BIT(22) 4488c2ecf20Sopenharmony_ci#define WOL_PT5_EN BIT(21) 4498c2ecf20Sopenharmony_ci#define WOL_PT4_EN BIT(20) 4508c2ecf20Sopenharmony_ci#define WOL_PT3_EN BIT(19) 4518c2ecf20Sopenharmony_ci#define WOL_PT2_EN BIT(18) 4528c2ecf20Sopenharmony_ci#define WOL_PT1_EN BIT(17) 4538c2ecf20Sopenharmony_ci#define WOL_PT0_EN BIT(16) 4548c2ecf20Sopenharmony_ci#define WOL_LNKCHG_ST BIT(10) 4558c2ecf20Sopenharmony_ci#define WOL_MAGIC_ST BIT(9) 4568c2ecf20Sopenharmony_ci#define WOL_PATTERN_ST BIT(8) 4578c2ecf20Sopenharmony_ci#define WOL_OOB_EN BIT(6) 4588c2ecf20Sopenharmony_ci#define WOL_LINK_CHG_PME_EN BIT(5) 4598c2ecf20Sopenharmony_ci#define WOL_LINK_CHG_EN BIT(4) 4608c2ecf20Sopenharmony_ci#define WOL_MAGIC_PME_EN BIT(3) 4618c2ecf20Sopenharmony_ci#define WOL_MAGIC_EN BIT(2) 4628c2ecf20Sopenharmony_ci#define WOL_PATTERN_PME_EN BIT(1) 4638c2ecf20Sopenharmony_ci#define WOL_PATTERN_EN BIT(0) 4648c2ecf20Sopenharmony_ci 4658c2ecf20Sopenharmony_ci/* WOL Length ( 2 DWORD ) */ 4668c2ecf20Sopenharmony_ci#define REG_WOL_PTLEN1 0x14A4 4678c2ecf20Sopenharmony_ci#define WOL_PTLEN1_3_MASK 0xFFUL 4688c2ecf20Sopenharmony_ci#define WOL_PTLEN1_3_SHIFT 24 4698c2ecf20Sopenharmony_ci#define WOL_PTLEN1_2_MASK 0xFFUL 4708c2ecf20Sopenharmony_ci#define WOL_PTLEN1_2_SHIFT 16 4718c2ecf20Sopenharmony_ci#define WOL_PTLEN1_1_MASK 0xFFUL 4728c2ecf20Sopenharmony_ci#define WOL_PTLEN1_1_SHIFT 8 4738c2ecf20Sopenharmony_ci#define WOL_PTLEN1_0_MASK 0xFFUL 4748c2ecf20Sopenharmony_ci#define WOL_PTLEN1_0_SHIFT 0 4758c2ecf20Sopenharmony_ci 4768c2ecf20Sopenharmony_ci#define REG_WOL_PTLEN2 0x14A8 4778c2ecf20Sopenharmony_ci#define WOL_PTLEN2_7_MASK 0xFFUL 4788c2ecf20Sopenharmony_ci#define WOL_PTLEN2_7_SHIFT 24 4798c2ecf20Sopenharmony_ci#define WOL_PTLEN2_6_MASK 0xFFUL 4808c2ecf20Sopenharmony_ci#define WOL_PTLEN2_6_SHIFT 16 4818c2ecf20Sopenharmony_ci#define WOL_PTLEN2_5_MASK 0xFFUL 4828c2ecf20Sopenharmony_ci#define WOL_PTLEN2_5_SHIFT 8 4838c2ecf20Sopenharmony_ci#define WOL_PTLEN2_4_MASK 0xFFUL 4848c2ecf20Sopenharmony_ci#define WOL_PTLEN2_4_SHIFT 0 4858c2ecf20Sopenharmony_ci 4868c2ecf20Sopenharmony_ci/* Internal SRAM Partition Register */ 4878c2ecf20Sopenharmony_ci#define RFDX_HEAD_ADDR_MASK 0x03FF 4888c2ecf20Sopenharmony_ci#define RFDX_HARD_ADDR_SHIFT 0 4898c2ecf20Sopenharmony_ci#define RFDX_TAIL_ADDR_MASK 0x03FF 4908c2ecf20Sopenharmony_ci#define RFDX_TAIL_ADDR_SHIFT 16 4918c2ecf20Sopenharmony_ci 4928c2ecf20Sopenharmony_ci#define REG_SRAM_RFD0_INFO 0x1500 4938c2ecf20Sopenharmony_ci#define REG_SRAM_RFD1_INFO 0x1504 4948c2ecf20Sopenharmony_ci#define REG_SRAM_RFD2_INFO 0x1508 4958c2ecf20Sopenharmony_ci#define REG_SRAM_RFD3_INFO 0x150C 4968c2ecf20Sopenharmony_ci 4978c2ecf20Sopenharmony_ci#define REG_RFD_NIC_LEN 0x1510 /* In 8-bytes */ 4988c2ecf20Sopenharmony_ci#define RFD_NIC_LEN_MASK 0x03FF 4998c2ecf20Sopenharmony_ci 5008c2ecf20Sopenharmony_ci#define REG_SRAM_TRD_ADDR 0x1518 5018c2ecf20Sopenharmony_ci#define TPD_HEAD_ADDR_MASK 0x03FF 5028c2ecf20Sopenharmony_ci#define TPD_HEAD_ADDR_SHIFT 0 5038c2ecf20Sopenharmony_ci#define TPD_TAIL_ADDR_MASK 0x03FF 5048c2ecf20Sopenharmony_ci#define TPD_TAIL_ADDR_SHIFT 16 5058c2ecf20Sopenharmony_ci 5068c2ecf20Sopenharmony_ci#define REG_SRAM_TRD_LEN 0x151C /* In 8-bytes */ 5078c2ecf20Sopenharmony_ci#define TPD_NIC_LEN_MASK 0x03FF 5088c2ecf20Sopenharmony_ci 5098c2ecf20Sopenharmony_ci#define REG_SRAM_RXF_ADDR 0x1520 5108c2ecf20Sopenharmony_ci#define REG_SRAM_RXF_LEN 0x1524 5118c2ecf20Sopenharmony_ci#define REG_SRAM_TXF_ADDR 0x1528 5128c2ecf20Sopenharmony_ci#define REG_SRAM_TXF_LEN 0x152C 5138c2ecf20Sopenharmony_ci#define REG_SRAM_TCPH_ADDR 0x1530 5148c2ecf20Sopenharmony_ci#define REG_SRAM_PKTH_ADDR 0x1532 5158c2ecf20Sopenharmony_ci 5168c2ecf20Sopenharmony_ci/* 5178c2ecf20Sopenharmony_ci * Load Ptr Register 5188c2ecf20Sopenharmony_ci * Software sets this bit after the initialization of the head and tail */ 5198c2ecf20Sopenharmony_ci#define REG_LOAD_PTR 0x1534 5208c2ecf20Sopenharmony_ci 5218c2ecf20Sopenharmony_ci/* 5228c2ecf20Sopenharmony_ci * addresses of all descriptors, as well as the following descriptor 5238c2ecf20Sopenharmony_ci * control register, which triggers each function block to load the head 5248c2ecf20Sopenharmony_ci * pointer to prepare for the operation. This bit is then self-cleared 5258c2ecf20Sopenharmony_ci * after one cycle. 5268c2ecf20Sopenharmony_ci */ 5278c2ecf20Sopenharmony_ci#define REG_RX_BASE_ADDR_HI 0x1540 5288c2ecf20Sopenharmony_ci#define REG_TX_BASE_ADDR_HI 0x1544 5298c2ecf20Sopenharmony_ci#define REG_RFD0_HEAD_ADDR_LO 0x1550 5308c2ecf20Sopenharmony_ci#define REG_RFD_RING_SIZE 0x1560 5318c2ecf20Sopenharmony_ci#define RFD_RING_SIZE_MASK 0x0FFF 5328c2ecf20Sopenharmony_ci#define REG_RX_BUF_SIZE 0x1564 5338c2ecf20Sopenharmony_ci#define RX_BUF_SIZE_MASK 0xFFFF 5348c2ecf20Sopenharmony_ci#define REG_RRD0_HEAD_ADDR_LO 0x1568 5358c2ecf20Sopenharmony_ci#define REG_RRD_RING_SIZE 0x1578 5368c2ecf20Sopenharmony_ci#define RRD_RING_SIZE_MASK 0x0FFF 5378c2ecf20Sopenharmony_ci#define REG_TPD_PRI1_ADDR_LO 0x157C 5388c2ecf20Sopenharmony_ci#define REG_TPD_PRI0_ADDR_LO 0x1580 5398c2ecf20Sopenharmony_ci#define REG_TPD_RING_SIZE 0x1584 5408c2ecf20Sopenharmony_ci#define TPD_RING_SIZE_MASK 0xFFFF 5418c2ecf20Sopenharmony_ci 5428c2ecf20Sopenharmony_ci/* TXQ Control Register */ 5438c2ecf20Sopenharmony_ci#define REG_TXQ_CTRL 0x1590 5448c2ecf20Sopenharmony_ci#define TXQ_TXF_BURST_NUM_MASK 0xFFFFUL 5458c2ecf20Sopenharmony_ci#define TXQ_TXF_BURST_NUM_SHIFT 16 5468c2ecf20Sopenharmony_ci#define L1C_TXQ_TXF_BURST_PREF 0x200 5478c2ecf20Sopenharmony_ci#define L2CB_TXQ_TXF_BURST_PREF 0x40 5488c2ecf20Sopenharmony_ci#define TXQ_CTRL_PEDING_CLR BIT(8) 5498c2ecf20Sopenharmony_ci#define TXQ_CTRL_LS_8023_EN BIT(7) 5508c2ecf20Sopenharmony_ci#define TXQ_CTRL_ENH_MODE BIT(6) 5518c2ecf20Sopenharmony_ci#define TXQ_CTRL_EN BIT(5) 5528c2ecf20Sopenharmony_ci#define TXQ_CTRL_IP_OPTION_EN BIT(4) 5538c2ecf20Sopenharmony_ci#define TXQ_NUM_TPD_BURST_MASK 0xFUL 5548c2ecf20Sopenharmony_ci#define TXQ_NUM_TPD_BURST_SHIFT 0 5558c2ecf20Sopenharmony_ci#define TXQ_NUM_TPD_BURST_DEF 5 5568c2ecf20Sopenharmony_ci#define TXQ_CFGV (\ 5578c2ecf20Sopenharmony_ci FIELDX(TXQ_NUM_TPD_BURST, TXQ_NUM_TPD_BURST_DEF) |\ 5588c2ecf20Sopenharmony_ci TXQ_CTRL_ENH_MODE |\ 5598c2ecf20Sopenharmony_ci TXQ_CTRL_LS_8023_EN |\ 5608c2ecf20Sopenharmony_ci TXQ_CTRL_IP_OPTION_EN) 5618c2ecf20Sopenharmony_ci#define L1C_TXQ_CFGV (\ 5628c2ecf20Sopenharmony_ci TXQ_CFGV |\ 5638c2ecf20Sopenharmony_ci FIELDX(TXQ_TXF_BURST_NUM, L1C_TXQ_TXF_BURST_PREF)) 5648c2ecf20Sopenharmony_ci#define L2CB_TXQ_CFGV (\ 5658c2ecf20Sopenharmony_ci TXQ_CFGV |\ 5668c2ecf20Sopenharmony_ci FIELDX(TXQ_TXF_BURST_NUM, L2CB_TXQ_TXF_BURST_PREF)) 5678c2ecf20Sopenharmony_ci 5688c2ecf20Sopenharmony_ci 5698c2ecf20Sopenharmony_ci/* Jumbo packet Threshold for task offload */ 5708c2ecf20Sopenharmony_ci#define REG_TX_TSO_OFFLOAD_THRESH 0x1594 /* In 8-bytes */ 5718c2ecf20Sopenharmony_ci#define TX_TSO_OFFLOAD_THRESH_MASK 0x07FF 5728c2ecf20Sopenharmony_ci#define MAX_TSO_FRAME_SIZE (7*1024) 5738c2ecf20Sopenharmony_ci 5748c2ecf20Sopenharmony_ci#define REG_TXF_WATER_MARK 0x1598 /* In 8-bytes */ 5758c2ecf20Sopenharmony_ci#define TXF_WATER_MARK_MASK 0x0FFF 5768c2ecf20Sopenharmony_ci#define TXF_LOW_WATER_MARK_SHIFT 0 5778c2ecf20Sopenharmony_ci#define TXF_HIGH_WATER_MARK_SHIFT 16 5788c2ecf20Sopenharmony_ci#define TXQ_CTRL_BURST_MODE_EN 0x80000000 5798c2ecf20Sopenharmony_ci 5808c2ecf20Sopenharmony_ci#define REG_THRUPUT_MON_CTRL 0x159C 5818c2ecf20Sopenharmony_ci#define THRUPUT_MON_RATE_MASK 0x3 5828c2ecf20Sopenharmony_ci#define THRUPUT_MON_RATE_SHIFT 0 5838c2ecf20Sopenharmony_ci#define THRUPUT_MON_EN 0x80 5848c2ecf20Sopenharmony_ci 5858c2ecf20Sopenharmony_ci/* RXQ Control Register */ 5868c2ecf20Sopenharmony_ci#define REG_RXQ_CTRL 0x15A0 5878c2ecf20Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_MASK 0x3 5888c2ecf20Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_SHIFT 0 5898c2ecf20Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_NO 0x00 5908c2ecf20Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_1M 0x01 5918c2ecf20Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_10M 0x02 5928c2ecf20Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_100M 0x03 5938c2ecf20Sopenharmony_ci#define IPV6_CHKSUM_CTRL_EN BIT(7) 5948c2ecf20Sopenharmony_ci#define RXQ_RFD_BURST_NUM_MASK 0x003F 5958c2ecf20Sopenharmony_ci#define RXQ_RFD_BURST_NUM_SHIFT 20 5968c2ecf20Sopenharmony_ci#define RXQ_NUM_RFD_PREF_DEF 8 5978c2ecf20Sopenharmony_ci#define RSS_MODE_MASK 3UL 5988c2ecf20Sopenharmony_ci#define RSS_MODE_SHIFT 26 5998c2ecf20Sopenharmony_ci#define RSS_MODE_DIS 0 6008c2ecf20Sopenharmony_ci#define RSS_MODE_SQSI 1 6018c2ecf20Sopenharmony_ci#define RSS_MODE_MQSI 2 6028c2ecf20Sopenharmony_ci#define RSS_MODE_MQMI 3 6038c2ecf20Sopenharmony_ci#define RSS_NIP_QUEUE_SEL BIT(28) /* 0:q0, 1:table */ 6048c2ecf20Sopenharmony_ci#define RRS_HASH_CTRL_EN BIT(29) 6058c2ecf20Sopenharmony_ci#define RX_CUT_THRU_EN BIT(30) 6068c2ecf20Sopenharmony_ci#define RXQ_CTRL_EN BIT(31) 6078c2ecf20Sopenharmony_ci 6088c2ecf20Sopenharmony_ci#define REG_RFD_FREE_THRESH 0x15A4 6098c2ecf20Sopenharmony_ci#define RFD_FREE_THRESH_MASK 0x003F 6108c2ecf20Sopenharmony_ci#define RFD_FREE_HI_THRESH_SHIFT 0 6118c2ecf20Sopenharmony_ci#define RFD_FREE_LO_THRESH_SHIFT 6 6128c2ecf20Sopenharmony_ci 6138c2ecf20Sopenharmony_ci/* RXF flow control register */ 6148c2ecf20Sopenharmony_ci#define REG_RXQ_RXF_PAUSE_THRESH 0x15A8 6158c2ecf20Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_HI_SHIFT 0 6168c2ecf20Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_HI_MASK 0x0FFF 6178c2ecf20Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_LO_SHIFT 16 6188c2ecf20Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_LO_MASK 0x0FFF 6198c2ecf20Sopenharmony_ci 6208c2ecf20Sopenharmony_ci#define REG_RXD_DMA_CTRL 0x15AC 6218c2ecf20Sopenharmony_ci#define RXD_DMA_THRESH_MASK 0x0FFF /* In 8-bytes */ 6228c2ecf20Sopenharmony_ci#define RXD_DMA_THRESH_SHIFT 0 6238c2ecf20Sopenharmony_ci#define RXD_DMA_DOWN_TIMER_MASK 0xFFFF 6248c2ecf20Sopenharmony_ci#define RXD_DMA_DOWN_TIMER_SHIFT 16 6258c2ecf20Sopenharmony_ci 6268c2ecf20Sopenharmony_ci/* DMA Engine Control Register */ 6278c2ecf20Sopenharmony_ci#define REG_DMA_CTRL 0x15C0 6288c2ecf20Sopenharmony_ci#define DMA_CTRL_SMB_NOW BIT(31) 6298c2ecf20Sopenharmony_ci#define DMA_CTRL_WPEND_CLR BIT(30) 6308c2ecf20Sopenharmony_ci#define DMA_CTRL_RPEND_CLR BIT(29) 6318c2ecf20Sopenharmony_ci#define DMA_CTRL_WDLY_CNT_MASK 0xFUL 6328c2ecf20Sopenharmony_ci#define DMA_CTRL_WDLY_CNT_SHIFT 16 6338c2ecf20Sopenharmony_ci#define DMA_CTRL_WDLY_CNT_DEF 4 6348c2ecf20Sopenharmony_ci#define DMA_CTRL_RDLY_CNT_MASK 0x1FUL 6358c2ecf20Sopenharmony_ci#define DMA_CTRL_RDLY_CNT_SHIFT 11 6368c2ecf20Sopenharmony_ci#define DMA_CTRL_RDLY_CNT_DEF 15 6378c2ecf20Sopenharmony_ci#define DMA_CTRL_RREQ_PRI_DATA BIT(10) /* 0:tpd, 1:data */ 6388c2ecf20Sopenharmony_ci#define DMA_CTRL_WREQ_BLEN_MASK 7UL 6398c2ecf20Sopenharmony_ci#define DMA_CTRL_WREQ_BLEN_SHIFT 7 6408c2ecf20Sopenharmony_ci#define DMA_CTRL_RREQ_BLEN_MASK 7UL 6418c2ecf20Sopenharmony_ci#define DMA_CTRL_RREQ_BLEN_SHIFT 4 6428c2ecf20Sopenharmony_ci#define L1C_CTRL_DMA_RCB_LEN128 BIT(3) /* 0:64bytes,1:128bytes */ 6438c2ecf20Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_MASK 7UL 6448c2ecf20Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_SHIFT 0 6458c2ecf20Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_OUT 4 6468c2ecf20Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_ENHANCE 2 6478c2ecf20Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_IN 1 6488c2ecf20Sopenharmony_ci 6498c2ecf20Sopenharmony_ci/* INT-triggle/SMB Control Register */ 6508c2ecf20Sopenharmony_ci#define REG_SMB_STAT_TIMER 0x15C4 /* 2us resolution */ 6518c2ecf20Sopenharmony_ci#define SMB_STAT_TIMER_MASK 0xFFFFFF 6528c2ecf20Sopenharmony_ci#define REG_TINT_TPD_THRESH 0x15C8 /* tpd th to trig intrrupt */ 6538c2ecf20Sopenharmony_ci 6548c2ecf20Sopenharmony_ci/* Mail box */ 6558c2ecf20Sopenharmony_ci#define MB_RFDX_PROD_IDX_MASK 0xFFFF 6568c2ecf20Sopenharmony_ci#define REG_MB_RFD0_PROD_IDX 0x15E0 6578c2ecf20Sopenharmony_ci 6588c2ecf20Sopenharmony_ci#define REG_TPD_PRI1_PIDX 0x15F0 /* 16bit,hi-tpd producer idx */ 6598c2ecf20Sopenharmony_ci#define REG_TPD_PRI0_PIDX 0x15F2 /* 16bit,lo-tpd producer idx */ 6608c2ecf20Sopenharmony_ci#define REG_TPD_PRI1_CIDX 0x15F4 /* 16bit,hi-tpd consumer idx */ 6618c2ecf20Sopenharmony_ci#define REG_TPD_PRI0_CIDX 0x15F6 /* 16bit,lo-tpd consumer idx */ 6628c2ecf20Sopenharmony_ci 6638c2ecf20Sopenharmony_ci#define REG_MB_RFD01_CONS_IDX 0x15F8 6648c2ecf20Sopenharmony_ci#define MB_RFD0_CONS_IDX_MASK 0x0000FFFF 6658c2ecf20Sopenharmony_ci#define MB_RFD1_CONS_IDX_MASK 0xFFFF0000 6668c2ecf20Sopenharmony_ci 6678c2ecf20Sopenharmony_ci/* Interrupt Status Register */ 6688c2ecf20Sopenharmony_ci#define REG_ISR 0x1600 6698c2ecf20Sopenharmony_ci#define ISR_SMB 0x00000001 6708c2ecf20Sopenharmony_ci#define ISR_TIMER 0x00000002 6718c2ecf20Sopenharmony_ci/* 6728c2ecf20Sopenharmony_ci * Software manual interrupt, for debug. Set when SW_MAN_INT_EN is set 6738c2ecf20Sopenharmony_ci * in Table 51 Selene Master Control Register (Offset 0x1400). 6748c2ecf20Sopenharmony_ci */ 6758c2ecf20Sopenharmony_ci#define ISR_MANUAL 0x00000004 6768c2ecf20Sopenharmony_ci#define ISR_HW_RXF_OV 0x00000008 /* RXF overflow interrupt */ 6778c2ecf20Sopenharmony_ci#define ISR_RFD0_UR 0x00000010 /* RFD0 under run */ 6788c2ecf20Sopenharmony_ci#define ISR_RFD1_UR 0x00000020 6798c2ecf20Sopenharmony_ci#define ISR_RFD2_UR 0x00000040 6808c2ecf20Sopenharmony_ci#define ISR_RFD3_UR 0x00000080 6818c2ecf20Sopenharmony_ci#define ISR_TXF_UR 0x00000100 6828c2ecf20Sopenharmony_ci#define ISR_DMAR_TO_RST 0x00000200 6838c2ecf20Sopenharmony_ci#define ISR_DMAW_TO_RST 0x00000400 6848c2ecf20Sopenharmony_ci#define ISR_TX_CREDIT 0x00000800 6858c2ecf20Sopenharmony_ci#define ISR_GPHY 0x00001000 6868c2ecf20Sopenharmony_ci/* GPHY low power state interrupt */ 6878c2ecf20Sopenharmony_ci#define ISR_GPHY_LPW 0x00002000 6888c2ecf20Sopenharmony_ci#define ISR_TXQ_TO_RST 0x00004000 6898c2ecf20Sopenharmony_ci#define ISR_TX_PKT 0x00008000 6908c2ecf20Sopenharmony_ci#define ISR_RX_PKT_0 0x00010000 6918c2ecf20Sopenharmony_ci#define ISR_RX_PKT_1 0x00020000 6928c2ecf20Sopenharmony_ci#define ISR_RX_PKT_2 0x00040000 6938c2ecf20Sopenharmony_ci#define ISR_RX_PKT_3 0x00080000 6948c2ecf20Sopenharmony_ci#define ISR_MAC_RX 0x00100000 6958c2ecf20Sopenharmony_ci#define ISR_MAC_TX 0x00200000 6968c2ecf20Sopenharmony_ci#define ISR_UR_DETECTED 0x00400000 6978c2ecf20Sopenharmony_ci#define ISR_FERR_DETECTED 0x00800000 6988c2ecf20Sopenharmony_ci#define ISR_NFERR_DETECTED 0x01000000 6998c2ecf20Sopenharmony_ci#define ISR_CERR_DETECTED 0x02000000 7008c2ecf20Sopenharmony_ci#define ISR_PHY_LINKDOWN 0x04000000 7018c2ecf20Sopenharmony_ci#define ISR_DIS_INT 0x80000000 7028c2ecf20Sopenharmony_ci 7038c2ecf20Sopenharmony_ci/* Interrupt Mask Register */ 7048c2ecf20Sopenharmony_ci#define REG_IMR 0x1604 7058c2ecf20Sopenharmony_ci 7068c2ecf20Sopenharmony_ci#define IMR_NORMAL_MASK (\ 7078c2ecf20Sopenharmony_ci ISR_MANUAL |\ 7088c2ecf20Sopenharmony_ci ISR_HW_RXF_OV |\ 7098c2ecf20Sopenharmony_ci ISR_RFD0_UR |\ 7108c2ecf20Sopenharmony_ci ISR_TXF_UR |\ 7118c2ecf20Sopenharmony_ci ISR_DMAR_TO_RST |\ 7128c2ecf20Sopenharmony_ci ISR_TXQ_TO_RST |\ 7138c2ecf20Sopenharmony_ci ISR_DMAW_TO_RST |\ 7148c2ecf20Sopenharmony_ci ISR_GPHY |\ 7158c2ecf20Sopenharmony_ci ISR_TX_PKT |\ 7168c2ecf20Sopenharmony_ci ISR_RX_PKT_0 |\ 7178c2ecf20Sopenharmony_ci ISR_GPHY_LPW |\ 7188c2ecf20Sopenharmony_ci ISR_PHY_LINKDOWN) 7198c2ecf20Sopenharmony_ci 7208c2ecf20Sopenharmony_ci#define ISR_RX_PKT (\ 7218c2ecf20Sopenharmony_ci ISR_RX_PKT_0 |\ 7228c2ecf20Sopenharmony_ci ISR_RX_PKT_1 |\ 7238c2ecf20Sopenharmony_ci ISR_RX_PKT_2 |\ 7248c2ecf20Sopenharmony_ci ISR_RX_PKT_3) 7258c2ecf20Sopenharmony_ci 7268c2ecf20Sopenharmony_ci#define ISR_OVER (\ 7278c2ecf20Sopenharmony_ci ISR_RFD0_UR |\ 7288c2ecf20Sopenharmony_ci ISR_RFD1_UR |\ 7298c2ecf20Sopenharmony_ci ISR_RFD2_UR |\ 7308c2ecf20Sopenharmony_ci ISR_RFD3_UR |\ 7318c2ecf20Sopenharmony_ci ISR_HW_RXF_OV |\ 7328c2ecf20Sopenharmony_ci ISR_TXF_UR) 7338c2ecf20Sopenharmony_ci 7348c2ecf20Sopenharmony_ci#define ISR_ERROR (\ 7358c2ecf20Sopenharmony_ci ISR_DMAR_TO_RST |\ 7368c2ecf20Sopenharmony_ci ISR_TXQ_TO_RST |\ 7378c2ecf20Sopenharmony_ci ISR_DMAW_TO_RST |\ 7388c2ecf20Sopenharmony_ci ISR_PHY_LINKDOWN) 7398c2ecf20Sopenharmony_ci 7408c2ecf20Sopenharmony_ci#define REG_INT_RETRIG_TIMER 0x1608 7418c2ecf20Sopenharmony_ci#define INT_RETRIG_TIMER_MASK 0xFFFF 7428c2ecf20Sopenharmony_ci 7438c2ecf20Sopenharmony_ci#define REG_MAC_RX_STATUS_BIN 0x1700 7448c2ecf20Sopenharmony_ci#define REG_MAC_RX_STATUS_END 0x175c 7458c2ecf20Sopenharmony_ci#define REG_MAC_TX_STATUS_BIN 0x1760 7468c2ecf20Sopenharmony_ci#define REG_MAC_TX_STATUS_END 0x17c0 7478c2ecf20Sopenharmony_ci 7488c2ecf20Sopenharmony_ci#define REG_CLK_GATING_CTRL 0x1814 7498c2ecf20Sopenharmony_ci#define CLK_GATING_DMAW_EN 0x0001 7508c2ecf20Sopenharmony_ci#define CLK_GATING_DMAR_EN 0x0002 7518c2ecf20Sopenharmony_ci#define CLK_GATING_TXQ_EN 0x0004 7528c2ecf20Sopenharmony_ci#define CLK_GATING_RXQ_EN 0x0008 7538c2ecf20Sopenharmony_ci#define CLK_GATING_TXMAC_EN 0x0010 7548c2ecf20Sopenharmony_ci#define CLK_GATING_RXMAC_EN 0x0020 7558c2ecf20Sopenharmony_ci 7568c2ecf20Sopenharmony_ci#define CLK_GATING_EN_ALL (CLK_GATING_DMAW_EN |\ 7578c2ecf20Sopenharmony_ci CLK_GATING_DMAR_EN |\ 7588c2ecf20Sopenharmony_ci CLK_GATING_TXQ_EN |\ 7598c2ecf20Sopenharmony_ci CLK_GATING_RXQ_EN |\ 7608c2ecf20Sopenharmony_ci CLK_GATING_TXMAC_EN|\ 7618c2ecf20Sopenharmony_ci CLK_GATING_RXMAC_EN) 7628c2ecf20Sopenharmony_ci 7638c2ecf20Sopenharmony_ci/* DEBUG ADDR */ 7648c2ecf20Sopenharmony_ci#define REG_DEBUG_DATA0 0x1900 7658c2ecf20Sopenharmony_ci#define REG_DEBUG_DATA1 0x1904 7668c2ecf20Sopenharmony_ci 7678c2ecf20Sopenharmony_ci#define L1D_MPW_PHYID1 0xD01C /* V7 */ 7688c2ecf20Sopenharmony_ci#define L1D_MPW_PHYID2 0xD01D /* V1-V6 */ 7698c2ecf20Sopenharmony_ci#define L1D_MPW_PHYID3 0xD01E /* V8 */ 7708c2ecf20Sopenharmony_ci 7718c2ecf20Sopenharmony_ci 7728c2ecf20Sopenharmony_ci/* Autoneg Advertisement Register */ 7738c2ecf20Sopenharmony_ci#define ADVERTISE_DEFAULT_CAP \ 7748c2ecf20Sopenharmony_ci (ADVERTISE_ALL | ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM) 7758c2ecf20Sopenharmony_ci 7768c2ecf20Sopenharmony_ci/* 1000BASE-T Control Register */ 7778c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_REPEATER_DTE 0x0400 /* 1=Repeater/switch device port 0=DTE device */ 7788c2ecf20Sopenharmony_ci 7798c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_MS_VALUE 0x0800 /* 1=Configure PHY as Master 0=Configure PHY as Slave */ 7808c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_MS_ENABLE 0x1000 /* 1=Master/Slave manual config value 0=Automatic Master/Slave config */ 7818c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_NORMAL 0x0000 /* Normal Operation */ 7828c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_1 0x2000 /* Transmit Waveform test */ 7838c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_2 0x4000 /* Master Transmit Jitter test */ 7848c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_3 0x6000 /* Slave Transmit Jitter test */ 7858c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_4 0x8000 /* Transmitter Distortion test */ 7868c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_SPEED_MASK 0x0300 7878c2ecf20Sopenharmony_ci#define GIGA_CR_1000T_DEFAULT_CAP 0x0300 7888c2ecf20Sopenharmony_ci 7898c2ecf20Sopenharmony_ci/* PHY Specific Status Register */ 7908c2ecf20Sopenharmony_ci#define MII_GIGA_PSSR 0x11 7918c2ecf20Sopenharmony_ci#define GIGA_PSSR_SPD_DPLX_RESOLVED 0x0800 /* 1=Speed & Duplex resolved */ 7928c2ecf20Sopenharmony_ci#define GIGA_PSSR_DPLX 0x2000 /* 1=Duplex 0=Half Duplex */ 7938c2ecf20Sopenharmony_ci#define GIGA_PSSR_SPEED 0xC000 /* Speed, bits 14:15 */ 7948c2ecf20Sopenharmony_ci#define GIGA_PSSR_10MBS 0x0000 /* 00=10Mbs */ 7958c2ecf20Sopenharmony_ci#define GIGA_PSSR_100MBS 0x4000 /* 01=100Mbs */ 7968c2ecf20Sopenharmony_ci#define GIGA_PSSR_1000MBS 0x8000 /* 10=1000Mbs */ 7978c2ecf20Sopenharmony_ci 7988c2ecf20Sopenharmony_ci/* PHY Interrupt Enable Register */ 7998c2ecf20Sopenharmony_ci#define MII_IER 0x12 8008c2ecf20Sopenharmony_ci#define IER_LINK_UP 0x0400 8018c2ecf20Sopenharmony_ci#define IER_LINK_DOWN 0x0800 8028c2ecf20Sopenharmony_ci 8038c2ecf20Sopenharmony_ci/* PHY Interrupt Status Register */ 8048c2ecf20Sopenharmony_ci#define MII_ISR 0x13 8058c2ecf20Sopenharmony_ci#define ISR_LINK_UP 0x0400 8068c2ecf20Sopenharmony_ci#define ISR_LINK_DOWN 0x0800 8078c2ecf20Sopenharmony_ci 8088c2ecf20Sopenharmony_ci/* Cable-Detect-Test Control Register */ 8098c2ecf20Sopenharmony_ci#define MII_CDTC 0x16 8108c2ecf20Sopenharmony_ci#define CDTC_EN_OFF 0 /* sc */ 8118c2ecf20Sopenharmony_ci#define CDTC_EN_BITS 1 8128c2ecf20Sopenharmony_ci#define CDTC_PAIR_OFF 8 8138c2ecf20Sopenharmony_ci#define CDTC_PAIR_BIT 2 8148c2ecf20Sopenharmony_ci 8158c2ecf20Sopenharmony_ci/* Cable-Detect-Test Status Register */ 8168c2ecf20Sopenharmony_ci#define MII_CDTS 0x1C 8178c2ecf20Sopenharmony_ci#define CDTS_STATUS_OFF 8 8188c2ecf20Sopenharmony_ci#define CDTS_STATUS_BITS 2 8198c2ecf20Sopenharmony_ci#define CDTS_STATUS_NORMAL 0 8208c2ecf20Sopenharmony_ci#define CDTS_STATUS_SHORT 1 8218c2ecf20Sopenharmony_ci#define CDTS_STATUS_OPEN 2 8228c2ecf20Sopenharmony_ci#define CDTS_STATUS_INVALID 3 8238c2ecf20Sopenharmony_ci 8248c2ecf20Sopenharmony_ci#define MII_DBG_ADDR 0x1D 8258c2ecf20Sopenharmony_ci#define MII_DBG_DATA 0x1E 8268c2ecf20Sopenharmony_ci 8278c2ecf20Sopenharmony_ci/***************************** debug port *************************************/ 8288c2ecf20Sopenharmony_ci 8298c2ecf20Sopenharmony_ci#define MIIDBG_ANACTRL 0x00 8308c2ecf20Sopenharmony_ci#define ANACTRL_CLK125M_DELAY_EN 0x8000 8318c2ecf20Sopenharmony_ci#define ANACTRL_VCO_FAST 0x4000 8328c2ecf20Sopenharmony_ci#define ANACTRL_VCO_SLOW 0x2000 8338c2ecf20Sopenharmony_ci#define ANACTRL_AFE_MODE_EN 0x1000 8348c2ecf20Sopenharmony_ci#define ANACTRL_LCKDET_PHY 0x800 8358c2ecf20Sopenharmony_ci#define ANACTRL_LCKDET_EN 0x400 8368c2ecf20Sopenharmony_ci#define ANACTRL_OEN_125M 0x200 8378c2ecf20Sopenharmony_ci#define ANACTRL_HBIAS_EN 0x100 8388c2ecf20Sopenharmony_ci#define ANACTRL_HB_EN 0x80 8398c2ecf20Sopenharmony_ci#define ANACTRL_SEL_HSP 0x40 8408c2ecf20Sopenharmony_ci#define ANACTRL_CLASSA_EN 0x20 8418c2ecf20Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_MASK 3U 8428c2ecf20Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_SHIFT 2 8438c2ecf20Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_2V 0 8448c2ecf20Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_1P9V 1 8458c2ecf20Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_1P8V 2 8468c2ecf20Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_1P7V 3 8478c2ecf20Sopenharmony_ci#define ANACTRL_MANUSWON_BW3_4M 0x2 8488c2ecf20Sopenharmony_ci#define ANACTRL_RESTART_CAL 0x1 8498c2ecf20Sopenharmony_ci#define ANACTRL_DEF 0x02EF 8508c2ecf20Sopenharmony_ci 8518c2ecf20Sopenharmony_ci#define MIIDBG_SYSMODCTRL 0x04 8528c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PFMH_PHY 0x8000 8538c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIASGEN 0x4000 8548c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PFML_PHY 0x2000 8558c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_MASK 3U 8568c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_SHIFT 10 8578c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_40 3 8588c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_20 2 8598c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_0 1 8608c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_10BT_100MV 0x40 /* 1:100mv, 0:200mv */ 8618c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_HLFAP_MASK 3U 8628c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_HLFAP_SHIFT 4 8638c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDFULBW 0x8 8648c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDBIASHLF 0x4 8658c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDAMPHLF 0x2 8668c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDLANSW 0x1 8678c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_DEF 0x88BB /* ???? */ 8688c2ecf20Sopenharmony_ci 8698c2ecf20Sopenharmony_ci/* for l1d & l2cb */ 8708c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_CUR_ADD 0x8000 8718c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_CUR_MASK 7U 8728c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_CUR_SHIFT 12 8738c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_MASK 0xFU 8748c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_SHIFT 8 8758c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_17ALL 3 8768c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_100M15 1 8778c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_10M17 0 8788c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS1_MASK 0xFU 8798c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS1_SHIFT 4 8808c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS2_MASK 0xFU 8818c2ecf20Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS2_SHIFT 0 8828c2ecf20Sopenharmony_ci#define L1D_SYSMODCTRL_IECHOADJ_DEF 0x4FBB 8838c2ecf20Sopenharmony_ci 8848c2ecf20Sopenharmony_ci#define MIIDBG_SRDSYSMOD 0x05 8858c2ecf20Sopenharmony_ci#define SRDSYSMOD_LCKDET_EN 0x2000 8868c2ecf20Sopenharmony_ci#define SRDSYSMOD_PLL_EN 0x800 8878c2ecf20Sopenharmony_ci#define SRDSYSMOD_SEL_HSP 0x400 8888c2ecf20Sopenharmony_ci#define SRDSYSMOD_HLFTXDR 0x200 8898c2ecf20Sopenharmony_ci#define SRDSYSMOD_TXCLK_DELAY_EN 0x100 8908c2ecf20Sopenharmony_ci#define SRDSYSMOD_TXELECIDLE 0x80 8918c2ecf20Sopenharmony_ci#define SRDSYSMOD_DEEMP_EN 0x40 8928c2ecf20Sopenharmony_ci#define SRDSYSMOD_MS_PAD 0x4 8938c2ecf20Sopenharmony_ci#define SRDSYSMOD_CDR_ADC_VLTG 0x2 8948c2ecf20Sopenharmony_ci#define SRDSYSMOD_CDR_DAC_1MA 0x1 8958c2ecf20Sopenharmony_ci#define SRDSYSMOD_DEF 0x2C46 8968c2ecf20Sopenharmony_ci 8978c2ecf20Sopenharmony_ci#define MIIDBG_CFGLPSPD 0x0A 8988c2ecf20Sopenharmony_ci#define CFGLPSPD_RSTCNT_MASK 3U 8998c2ecf20Sopenharmony_ci#define CFGLPSPD_RSTCNT_SHIFT 14 9008c2ecf20Sopenharmony_ci#define CFGLPSPD_RSTCNT_CLK125SW 0x2000 9018c2ecf20Sopenharmony_ci 9028c2ecf20Sopenharmony_ci#define MIIDBG_HIBNEG 0x0B 9038c2ecf20Sopenharmony_ci#define HIBNEG_PSHIB_EN 0x8000 9048c2ecf20Sopenharmony_ci#define HIBNEG_WAKE_BOTH 0x4000 9058c2ecf20Sopenharmony_ci#define HIBNEG_ONOFF_ANACHG_SUDEN 0x2000 9068c2ecf20Sopenharmony_ci#define HIBNEG_HIB_PULSE 0x1000 9078c2ecf20Sopenharmony_ci#define HIBNEG_GATE_25M_EN 0x800 9088c2ecf20Sopenharmony_ci#define HIBNEG_RST_80U 0x400 9098c2ecf20Sopenharmony_ci#define HIBNEG_RST_TIMER_MASK 3U 9108c2ecf20Sopenharmony_ci#define HIBNEG_RST_TIMER_SHIFT 8 9118c2ecf20Sopenharmony_ci#define HIBNEG_GTX_CLK_DELAY_MASK 3U 9128c2ecf20Sopenharmony_ci#define HIBNEG_GTX_CLK_DELAY_SHIFT 5 9138c2ecf20Sopenharmony_ci#define HIBNEG_BYPSS_BRKTIMER 0x10 9148c2ecf20Sopenharmony_ci#define HIBNEG_DEF 0xBC40 9158c2ecf20Sopenharmony_ci 9168c2ecf20Sopenharmony_ci#define MIIDBG_TST10BTCFG 0x12 9178c2ecf20Sopenharmony_ci#define TST10BTCFG_INTV_TIMER_MASK 3U 9188c2ecf20Sopenharmony_ci#define TST10BTCFG_INTV_TIMER_SHIFT 14 9198c2ecf20Sopenharmony_ci#define TST10BTCFG_TRIGER_TIMER_MASK 3U 9208c2ecf20Sopenharmony_ci#define TST10BTCFG_TRIGER_TIMER_SHIFT 12 9218c2ecf20Sopenharmony_ci#define TST10BTCFG_DIV_MAN_MLT3_EN 0x800 9228c2ecf20Sopenharmony_ci#define TST10BTCFG_OFF_DAC_IDLE 0x400 9238c2ecf20Sopenharmony_ci#define TST10BTCFG_LPBK_DEEP 0x4 /* 1:deep,0:shallow */ 9248c2ecf20Sopenharmony_ci#define TST10BTCFG_DEF 0x4C04 9258c2ecf20Sopenharmony_ci 9268c2ecf20Sopenharmony_ci#define MIIDBG_AZ_ANADECT 0x15 9278c2ecf20Sopenharmony_ci#define AZ_ANADECT_10BTRX_TH 0x8000 9288c2ecf20Sopenharmony_ci#define AZ_ANADECT_BOTH_01CHNL 0x4000 9298c2ecf20Sopenharmony_ci#define AZ_ANADECT_INTV_MASK 0x3FU 9308c2ecf20Sopenharmony_ci#define AZ_ANADECT_INTV_SHIFT 8 9318c2ecf20Sopenharmony_ci#define AZ_ANADECT_THRESH_MASK 0xFU 9328c2ecf20Sopenharmony_ci#define AZ_ANADECT_THRESH_SHIFT 4 9338c2ecf20Sopenharmony_ci#define AZ_ANADECT_CHNL_MASK 0xFU 9348c2ecf20Sopenharmony_ci#define AZ_ANADECT_CHNL_SHIFT 0 9358c2ecf20Sopenharmony_ci#define AZ_ANADECT_DEF 0x3220 9368c2ecf20Sopenharmony_ci#define AZ_ANADECT_LONG 0xb210 9378c2ecf20Sopenharmony_ci 9388c2ecf20Sopenharmony_ci#define MIIDBG_MSE16DB 0x18 /* l1d */ 9398c2ecf20Sopenharmony_ci#define L1D_MSE16DB_UP 0x05EA 9408c2ecf20Sopenharmony_ci#define L1D_MSE16DB_DOWN 0x02EA 9418c2ecf20Sopenharmony_ci 9428c2ecf20Sopenharmony_ci#define MIIDBG_LEGCYPS 0x29 9438c2ecf20Sopenharmony_ci#define LEGCYPS_EN 0x8000 9448c2ecf20Sopenharmony_ci#define LEGCYPS_DAC_AMP1000_MASK 7U 9458c2ecf20Sopenharmony_ci#define LEGCYPS_DAC_AMP1000_SHIFT 12 9468c2ecf20Sopenharmony_ci#define LEGCYPS_DAC_AMP100_MASK 7U 9478c2ecf20Sopenharmony_ci#define LEGCYPS_DAC_AMP100_SHIFT 9 9488c2ecf20Sopenharmony_ci#define LEGCYPS_DAC_AMP10_MASK 7U 9498c2ecf20Sopenharmony_ci#define LEGCYPS_DAC_AMP10_SHIFT 6 9508c2ecf20Sopenharmony_ci#define LEGCYPS_UNPLUG_TIMER_MASK 7U 9518c2ecf20Sopenharmony_ci#define LEGCYPS_UNPLUG_TIMER_SHIFT 3 9528c2ecf20Sopenharmony_ci#define LEGCYPS_UNPLUG_DECT_EN 0x4 9538c2ecf20Sopenharmony_ci#define LEGCYPS_ECNC_PS_EN 0x1 9548c2ecf20Sopenharmony_ci#define L1D_LEGCYPS_DEF 0x129D 9558c2ecf20Sopenharmony_ci#define L1C_LEGCYPS_DEF 0x36DD 9568c2ecf20Sopenharmony_ci 9578c2ecf20Sopenharmony_ci#define MIIDBG_TST100BTCFG 0x36 9588c2ecf20Sopenharmony_ci#define TST100BTCFG_NORMAL_BW_EN 0x8000 9598c2ecf20Sopenharmony_ci#define TST100BTCFG_BADLNK_BYPASS 0x4000 9608c2ecf20Sopenharmony_ci#define TST100BTCFG_SHORTCABL_TH_MASK 0x3FU 9618c2ecf20Sopenharmony_ci#define TST100BTCFG_SHORTCABL_TH_SHIFT 8 9628c2ecf20Sopenharmony_ci#define TST100BTCFG_LITCH_EN 0x80 9638c2ecf20Sopenharmony_ci#define TST100BTCFG_VLT_SW 0x40 9648c2ecf20Sopenharmony_ci#define TST100BTCFG_LONGCABL_TH_MASK 0x3FU 9658c2ecf20Sopenharmony_ci#define TST100BTCFG_LONGCABL_TH_SHIFT 0 9668c2ecf20Sopenharmony_ci#define TST100BTCFG_DEF 0xE12C 9678c2ecf20Sopenharmony_ci 9688c2ecf20Sopenharmony_ci#define MIIDBG_VOLT_CTRL 0x3B /* only for l2cb 1 & 2 */ 9698c2ecf20Sopenharmony_ci#define VOLT_CTRL_CABLE1TH_MASK 0x1FFU 9708c2ecf20Sopenharmony_ci#define VOLT_CTRL_CABLE1TH_SHIFT 7 9718c2ecf20Sopenharmony_ci#define VOLT_CTRL_AMPCTRL_MASK 3U 9728c2ecf20Sopenharmony_ci#define VOLT_CTRL_AMPCTRL_SHIFT 5 9738c2ecf20Sopenharmony_ci#define VOLT_CTRL_SW_BYPASS 0x10 9748c2ecf20Sopenharmony_ci#define VOLT_CTRL_SWLOWEST 0x8 9758c2ecf20Sopenharmony_ci#define VOLT_CTRL_DACAMP10_MASK 7U 9768c2ecf20Sopenharmony_ci#define VOLT_CTRL_DACAMP10_SHIFT 0 9778c2ecf20Sopenharmony_ci 9788c2ecf20Sopenharmony_ci#define MIIDBG_CABLE1TH_DET 0x3E 9798c2ecf20Sopenharmony_ci#define CABLE1TH_DET_EN 0x8000 9808c2ecf20Sopenharmony_ci 9818c2ecf20Sopenharmony_ci 9828c2ecf20Sopenharmony_ci/******* dev 3 *********/ 9838c2ecf20Sopenharmony_ci#define MIIEXT_PCS 3 9848c2ecf20Sopenharmony_ci 9858c2ecf20Sopenharmony_ci#define MIIEXT_CLDCTRL3 0x8003 9868c2ecf20Sopenharmony_ci#define CLDCTRL3_BP_CABLE1TH_DET_GT 0x8000 9878c2ecf20Sopenharmony_ci#define CLDCTRL3_AZ_DISAMP 0x1000 9888c2ecf20Sopenharmony_ci#define L2CB_CLDCTRL3 0x4D19 9898c2ecf20Sopenharmony_ci#define L1D_CLDCTRL3 0xDD19 9908c2ecf20Sopenharmony_ci 9918c2ecf20Sopenharmony_ci#define MIIEXT_CLDCTRL6 0x8006 9928c2ecf20Sopenharmony_ci#define CLDCTRL6_CAB_LEN_MASK 0x1FFU 9938c2ecf20Sopenharmony_ci#define CLDCTRL6_CAB_LEN_SHIFT 0 9948c2ecf20Sopenharmony_ci#define CLDCTRL6_CAB_LEN_SHORT 0x50 9958c2ecf20Sopenharmony_ci 9968c2ecf20Sopenharmony_ci/********* dev 7 **********/ 9978c2ecf20Sopenharmony_ci#define MIIEXT_ANEG 7 9988c2ecf20Sopenharmony_ci 9998c2ecf20Sopenharmony_ci#define MIIEXT_LOCAL_EEEADV 0x3C 10008c2ecf20Sopenharmony_ci#define LOCAL_EEEADV_1000BT 0x4 10018c2ecf20Sopenharmony_ci#define LOCAL_EEEADV_100BT 0x2 10028c2ecf20Sopenharmony_ci 10038c2ecf20Sopenharmony_ci#define MIIEXT_REMOTE_EEEADV 0x3D 10048c2ecf20Sopenharmony_ci#define REMOTE_EEEADV_1000BT 0x4 10058c2ecf20Sopenharmony_ci#define REMOTE_EEEADV_100BT 0x2 10068c2ecf20Sopenharmony_ci 10078c2ecf20Sopenharmony_ci#define MIIEXT_EEE_ANEG 0x8000 10088c2ecf20Sopenharmony_ci#define EEE_ANEG_1000M 0x4 10098c2ecf20Sopenharmony_ci#define EEE_ANEG_100M 0x2 10108c2ecf20Sopenharmony_ci 10118c2ecf20Sopenharmony_ci#endif /*_ATL1C_HW_H_*/ 1012