162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * Copyright(c) 2008 - 2009 Atheros Corporation. All rights reserved. 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * Derived from Intel e1000 driver 662306a36Sopenharmony_ci * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved. 762306a36Sopenharmony_ci */ 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci#ifndef _ATL1C_HW_H_ 1062306a36Sopenharmony_ci#define _ATL1C_HW_H_ 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ci#include <linux/types.h> 1362306a36Sopenharmony_ci#include <linux/mii.h> 1462306a36Sopenharmony_ci 1562306a36Sopenharmony_ci#define FIELD_GETX(_x, _name) ((_x) >> (_name##_SHIFT) & (_name##_MASK)) 1662306a36Sopenharmony_ci#define FIELD_SETX(_x, _name, _v) \ 1762306a36Sopenharmony_ci(((_x) & ~((_name##_MASK) << (_name##_SHIFT))) |\ 1862306a36Sopenharmony_ci(((_v) & (_name##_MASK)) << (_name##_SHIFT))) 1962306a36Sopenharmony_ci#define FIELDX(_name, _v) (((_v) & (_name##_MASK)) << (_name##_SHIFT)) 2062306a36Sopenharmony_ci 2162306a36Sopenharmony_cistruct atl1c_adapter; 2262306a36Sopenharmony_cistruct atl1c_hw; 2362306a36Sopenharmony_ci 2462306a36Sopenharmony_ci/* function prototype */ 2562306a36Sopenharmony_civoid atl1c_phy_disable(struct atl1c_hw *hw); 2662306a36Sopenharmony_civoid atl1c_hw_set_mac_addr(struct atl1c_hw *hw, u8 *mac_addr); 2762306a36Sopenharmony_ciint atl1c_phy_reset(struct atl1c_hw *hw); 2862306a36Sopenharmony_ciint atl1c_read_mac_addr(struct atl1c_hw *hw); 2962306a36Sopenharmony_cibool atl1c_get_link_status(struct atl1c_hw *hw); 3062306a36Sopenharmony_ciint atl1c_get_speed_and_duplex(struct atl1c_hw *hw, u16 *speed, u16 *duplex); 3162306a36Sopenharmony_ciu32 atl1c_hash_mc_addr(struct atl1c_hw *hw, u8 *mc_addr); 3262306a36Sopenharmony_civoid atl1c_hash_set(struct atl1c_hw *hw, u32 hash_value); 3362306a36Sopenharmony_ciint atl1c_read_phy_reg(struct atl1c_hw *hw, u16 reg_addr, u16 *phy_data); 3462306a36Sopenharmony_ciint atl1c_write_phy_reg(struct atl1c_hw *hw, u32 reg_addr, u16 phy_data); 3562306a36Sopenharmony_cibool atl1c_read_eeprom(struct atl1c_hw *hw, u32 offset, u32 *p_value); 3662306a36Sopenharmony_ciint atl1c_phy_init(struct atl1c_hw *hw); 3762306a36Sopenharmony_ciint atl1c_check_eeprom_exist(struct atl1c_hw *hw); 3862306a36Sopenharmony_ciint atl1c_restart_autoneg(struct atl1c_hw *hw); 3962306a36Sopenharmony_ciint atl1c_phy_to_ps_link(struct atl1c_hw *hw); 4062306a36Sopenharmony_ciint atl1c_power_saving(struct atl1c_hw *hw, u32 wufc); 4162306a36Sopenharmony_cibool atl1c_wait_mdio_idle(struct atl1c_hw *hw); 4262306a36Sopenharmony_civoid atl1c_stop_phy_polling(struct atl1c_hw *hw); 4362306a36Sopenharmony_civoid atl1c_start_phy_polling(struct atl1c_hw *hw, u16 clk_sel); 4462306a36Sopenharmony_ciint atl1c_read_phy_core(struct atl1c_hw *hw, bool ext, u8 dev, 4562306a36Sopenharmony_ci u16 reg, u16 *phy_data); 4662306a36Sopenharmony_ciint atl1c_write_phy_core(struct atl1c_hw *hw, bool ext, u8 dev, 4762306a36Sopenharmony_ci u16 reg, u16 phy_data); 4862306a36Sopenharmony_ciint atl1c_read_phy_ext(struct atl1c_hw *hw, u8 dev_addr, 4962306a36Sopenharmony_ci u16 reg_addr, u16 *phy_data); 5062306a36Sopenharmony_ciint atl1c_write_phy_ext(struct atl1c_hw *hw, u8 dev_addr, 5162306a36Sopenharmony_ci u16 reg_addr, u16 phy_data); 5262306a36Sopenharmony_ciint atl1c_read_phy_dbg(struct atl1c_hw *hw, u16 reg_addr, u16 *phy_data); 5362306a36Sopenharmony_ciint atl1c_write_phy_dbg(struct atl1c_hw *hw, u16 reg_addr, u16 phy_data); 5462306a36Sopenharmony_civoid atl1c_post_phy_linkchg(struct atl1c_hw *hw, u16 link_speed); 5562306a36Sopenharmony_ci 5662306a36Sopenharmony_ci/* hw-ids */ 5762306a36Sopenharmony_ci#define PCI_DEVICE_ID_ATTANSIC_L2C 0x1062 5862306a36Sopenharmony_ci#define PCI_DEVICE_ID_ATTANSIC_L1C 0x1063 5962306a36Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L2C_B 0x2060 /* AR8152 v1.1 Fast 10/100 */ 6062306a36Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L2C_B2 0x2062 /* AR8152 v2.0 Fast 10/100 */ 6162306a36Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L1D 0x1073 /* AR8151 v1.0 Gigabit 1000 */ 6262306a36Sopenharmony_ci#define PCI_DEVICE_ID_ATHEROS_L1D_2_0 0x1083 /* AR8151 v2.0 Gigabit 1000 */ 6362306a36Sopenharmony_ci#define L2CB_V10 0xc0 6462306a36Sopenharmony_ci#define L2CB_V11 0xc1 6562306a36Sopenharmony_ci#define L2CB_V20 0xc0 6662306a36Sopenharmony_ci#define L2CB_V21 0xc1 6762306a36Sopenharmony_ci 6862306a36Sopenharmony_ci/* register definition */ 6962306a36Sopenharmony_ci#define REG_DEVICE_CAP 0x5C 7062306a36Sopenharmony_ci#define DEVICE_CAP_MAX_PAYLOAD_MASK 0x7 7162306a36Sopenharmony_ci#define DEVICE_CAP_MAX_PAYLOAD_SHIFT 0 7262306a36Sopenharmony_ci 7362306a36Sopenharmony_ci#define DEVICE_CTRL_MAXRRS_MIN 2 7462306a36Sopenharmony_ci 7562306a36Sopenharmony_ci#define REG_LINK_CTRL 0x68 7662306a36Sopenharmony_ci#define LINK_CTRL_L0S_EN 0x01 7762306a36Sopenharmony_ci#define LINK_CTRL_L1_EN 0x02 7862306a36Sopenharmony_ci#define LINK_CTRL_EXT_SYNC 0x80 7962306a36Sopenharmony_ci 8062306a36Sopenharmony_ci#define REG_PCIE_IND_ACC_ADDR 0x80 8162306a36Sopenharmony_ci#define REG_PCIE_IND_ACC_DATA 0x84 8262306a36Sopenharmony_ci 8362306a36Sopenharmony_ci#define REG_DEV_SERIALNUM_CTRL 0x200 8462306a36Sopenharmony_ci#define REG_DEV_MAC_SEL_MASK 0x0 /* 0:EUI; 1:MAC */ 8562306a36Sopenharmony_ci#define REG_DEV_MAC_SEL_SHIFT 0 8662306a36Sopenharmony_ci#define REG_DEV_SERIAL_NUM_EN_MASK 0x1 8762306a36Sopenharmony_ci#define REG_DEV_SERIAL_NUM_EN_SHIFT 1 8862306a36Sopenharmony_ci 8962306a36Sopenharmony_ci#define REG_TWSI_CTRL 0x218 9062306a36Sopenharmony_ci#define TWSI_CTLR_FREQ_MASK 0x3UL 9162306a36Sopenharmony_ci#define TWSI_CTRL_FREQ_SHIFT 24 9262306a36Sopenharmony_ci#define TWSI_CTRL_FREQ_100K 0 9362306a36Sopenharmony_ci#define TWSI_CTRL_FREQ_200K 1 9462306a36Sopenharmony_ci#define TWSI_CTRL_FREQ_300K 2 9562306a36Sopenharmony_ci#define TWSI_CTRL_FREQ_400K 3 9662306a36Sopenharmony_ci#define TWSI_CTRL_LD_EXIST BIT(23) 9762306a36Sopenharmony_ci#define TWSI_CTRL_HW_LDSTAT BIT(12) /* 0:finish,1:in progress */ 9862306a36Sopenharmony_ci#define TWSI_CTRL_SW_LDSTART BIT(11) 9962306a36Sopenharmony_ci#define TWSI_CTRL_LD_OFFSET_MASK 0xFF 10062306a36Sopenharmony_ci#define TWSI_CTRL_LD_OFFSET_SHIFT 0 10162306a36Sopenharmony_ci 10262306a36Sopenharmony_ci#define REG_PCIE_DEV_MISC_CTRL 0x21C 10362306a36Sopenharmony_ci#define PCIE_DEV_MISC_EXT_PIPE 0x2 10462306a36Sopenharmony_ci#define PCIE_DEV_MISC_RETRY_BUFDIS 0x1 10562306a36Sopenharmony_ci#define PCIE_DEV_MISC_SPIROM_EXIST 0x4 10662306a36Sopenharmony_ci#define PCIE_DEV_MISC_SERDES_ENDIAN 0x8 10762306a36Sopenharmony_ci#define PCIE_DEV_MISC_SERDES_SEL_DIN 0x10 10862306a36Sopenharmony_ci 10962306a36Sopenharmony_ci#define REG_PCIE_PHYMISC 0x1000 11062306a36Sopenharmony_ci#define PCIE_PHYMISC_FORCE_RCV_DET BIT(2) 11162306a36Sopenharmony_ci#define PCIE_PHYMISC_NFTS_MASK 0xFFUL 11262306a36Sopenharmony_ci#define PCIE_PHYMISC_NFTS_SHIFT 16 11362306a36Sopenharmony_ci 11462306a36Sopenharmony_ci#define REG_PCIE_PHYMISC2 0x1004 11562306a36Sopenharmony_ci#define PCIE_PHYMISC2_L0S_TH_MASK 0x3UL 11662306a36Sopenharmony_ci#define PCIE_PHYMISC2_L0S_TH_SHIFT 18 11762306a36Sopenharmony_ci#define L2CB1_PCIE_PHYMISC2_L0S_TH 3 11862306a36Sopenharmony_ci#define PCIE_PHYMISC2_CDR_BW_MASK 0x3UL 11962306a36Sopenharmony_ci#define PCIE_PHYMISC2_CDR_BW_SHIFT 16 12062306a36Sopenharmony_ci#define L2CB1_PCIE_PHYMISC2_CDR_BW 3 12162306a36Sopenharmony_ci 12262306a36Sopenharmony_ci#define REG_TWSI_DEBUG 0x1108 12362306a36Sopenharmony_ci#define TWSI_DEBUG_DEV_EXIST BIT(29) 12462306a36Sopenharmony_ci 12562306a36Sopenharmony_ci#define REG_DMA_DBG 0x1114 12662306a36Sopenharmony_ci#define DMA_DBG_VENDOR_MSG BIT(0) 12762306a36Sopenharmony_ci 12862306a36Sopenharmony_ci#define REG_EEPROM_CTRL 0x12C0 12962306a36Sopenharmony_ci#define EEPROM_CTRL_DATA_HI_MASK 0xFFFF 13062306a36Sopenharmony_ci#define EEPROM_CTRL_DATA_HI_SHIFT 0 13162306a36Sopenharmony_ci#define EEPROM_CTRL_ADDR_MASK 0x3FF 13262306a36Sopenharmony_ci#define EEPROM_CTRL_ADDR_SHIFT 16 13362306a36Sopenharmony_ci#define EEPROM_CTRL_ACK 0x40000000 13462306a36Sopenharmony_ci#define EEPROM_CTRL_RW 0x80000000 13562306a36Sopenharmony_ci 13662306a36Sopenharmony_ci#define REG_EEPROM_DATA_LO 0x12C4 13762306a36Sopenharmony_ci 13862306a36Sopenharmony_ci#define REG_OTP_CTRL 0x12F0 13962306a36Sopenharmony_ci#define OTP_CTRL_CLK_EN BIT(1) 14062306a36Sopenharmony_ci 14162306a36Sopenharmony_ci#define REG_PM_CTRL 0x12F8 14262306a36Sopenharmony_ci#define PM_CTRL_HOTRST BIT(31) 14362306a36Sopenharmony_ci#define PM_CTRL_MAC_ASPM_CHK BIT(30) /* L0s/L1 dis by MAC based on 14462306a36Sopenharmony_ci * thrghput(setting in 15A0) */ 14562306a36Sopenharmony_ci#define PM_CTRL_SA_DLY_EN BIT(29) 14662306a36Sopenharmony_ci#define PM_CTRL_L0S_BUFSRX_EN BIT(28) 14762306a36Sopenharmony_ci#define PM_CTRL_LCKDET_TIMER_MASK 0xFUL 14862306a36Sopenharmony_ci#define PM_CTRL_LCKDET_TIMER_SHIFT 24 14962306a36Sopenharmony_ci#define PM_CTRL_LCKDET_TIMER_DEF 0xC 15062306a36Sopenharmony_ci#define PM_CTRL_PM_REQ_TIMER_MASK 0xFUL 15162306a36Sopenharmony_ci#define PM_CTRL_PM_REQ_TIMER_SHIFT 20 /* pm_request_l1 time > @ 15262306a36Sopenharmony_ci * ->L0s not L1 */ 15362306a36Sopenharmony_ci#define PM_CTRL_PM_REQ_TO_DEF 0xF 15462306a36Sopenharmony_ci#define PMCTRL_TXL1_AFTER_L0S BIT(19) /* l1dv2.0+ */ 15562306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_MASK 7UL /* l1dv2.0+, 3bits */ 15662306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_SHIFT 16 15762306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_DIS 0 15862306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_2US 1 15962306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_4US 2 16062306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_8US 3 16162306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_16US 4 16262306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_24US 5 16362306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_32US 6 16462306a36Sopenharmony_ci#define L1D_PMCTRL_L1_ENTRY_TM_63US 7 16562306a36Sopenharmony_ci#define PM_CTRL_L1_ENTRY_TIMER_MASK 0xFUL /* l1C 4bits */ 16662306a36Sopenharmony_ci#define PM_CTRL_L1_ENTRY_TIMER_SHIFT 16 16762306a36Sopenharmony_ci#define L2CB1_PM_CTRL_L1_ENTRY_TM 7 16862306a36Sopenharmony_ci#define L1C_PM_CTRL_L1_ENTRY_TM 0xF 16962306a36Sopenharmony_ci#define PM_CTRL_RCVR_WT_TIMER BIT(15) /* 1:1us, 0:2ms */ 17062306a36Sopenharmony_ci#define PM_CTRL_CLK_PWM_VER1_1 BIT(14) /* 0:1.0a,1:1.1 */ 17162306a36Sopenharmony_ci#define PM_CTRL_CLK_SWH_L1 BIT(13) /* en pcie clk sw in L1 */ 17262306a36Sopenharmony_ci#define PM_CTRL_ASPM_L0S_EN BIT(12) 17362306a36Sopenharmony_ci#define PM_CTRL_RXL1_AFTER_L0S BIT(11) /* l1dv2.0+ */ 17462306a36Sopenharmony_ci#define L1D_PMCTRL_L0S_TIMER_MASK 7UL /* l1d2.0+, 3bits*/ 17562306a36Sopenharmony_ci#define L1D_PMCTRL_L0S_TIMER_SHIFT 8 17662306a36Sopenharmony_ci#define PM_CTRL_L0S_ENTRY_TIMER_MASK 0xFUL /* l1c, 4bits */ 17762306a36Sopenharmony_ci#define PM_CTRL_L0S_ENTRY_TIMER_SHIFT 8 17862306a36Sopenharmony_ci#define PM_CTRL_SERDES_BUFS_RX_L1_EN BIT(7) 17962306a36Sopenharmony_ci#define PM_CTRL_SERDES_PD_EX_L1 BIT(6) /* power down serdes rx */ 18062306a36Sopenharmony_ci#define PM_CTRL_SERDES_PLL_L1_EN BIT(5) 18162306a36Sopenharmony_ci#define PM_CTRL_SERDES_L1_EN BIT(4) 18262306a36Sopenharmony_ci#define PM_CTRL_ASPM_L1_EN BIT(3) 18362306a36Sopenharmony_ci#define PM_CTRL_CLK_REQ_EN BIT(2) 18462306a36Sopenharmony_ci#define PM_CTRL_RBER_EN BIT(1) 18562306a36Sopenharmony_ci#define PM_CTRL_SPRSDWER_EN BIT(0) 18662306a36Sopenharmony_ci 18762306a36Sopenharmony_ci#define REG_LTSSM_ID_CTRL 0x12FC 18862306a36Sopenharmony_ci#define LTSSM_ID_EN_WRO 0x1000 18962306a36Sopenharmony_ci 19062306a36Sopenharmony_ci 19162306a36Sopenharmony_ci/* Selene Master Control Register */ 19262306a36Sopenharmony_ci#define REG_MASTER_CTRL 0x1400 19362306a36Sopenharmony_ci#define MASTER_CTRL_OTP_SEL BIT(31) 19462306a36Sopenharmony_ci#define MASTER_DEV_NUM_MASK 0x7FUL 19562306a36Sopenharmony_ci#define MASTER_DEV_NUM_SHIFT 24 19662306a36Sopenharmony_ci#define MASTER_REV_NUM_MASK 0xFFUL 19762306a36Sopenharmony_ci#define MASTER_REV_NUM_SHIFT 16 19862306a36Sopenharmony_ci#define MASTER_CTRL_INT_RDCLR BIT(14) 19962306a36Sopenharmony_ci#define MASTER_CTRL_CLK_SEL_DIS BIT(12) /* 1:alwys sel pclk from 20062306a36Sopenharmony_ci * serdes, not sw to 25M */ 20162306a36Sopenharmony_ci#define MASTER_CTRL_RX_ITIMER_EN BIT(11) /* IRQ MODURATION FOR RX */ 20262306a36Sopenharmony_ci#define MASTER_CTRL_TX_ITIMER_EN BIT(10) /* MODURATION FOR TX/RX */ 20362306a36Sopenharmony_ci#define MASTER_CTRL_MANU_INT BIT(9) /* SOFT MANUAL INT */ 20462306a36Sopenharmony_ci#define MASTER_CTRL_MANUTIMER_EN BIT(8) 20562306a36Sopenharmony_ci#define MASTER_CTRL_SA_TIMER_EN BIT(7) /* SYS ALIVE TIMER EN */ 20662306a36Sopenharmony_ci#define MASTER_CTRL_OOB_DIS BIT(6) /* OUT OF BOX DIS */ 20762306a36Sopenharmony_ci#define MASTER_CTRL_WAKEN_25M BIT(5) /* WAKE WO. PCIE CLK */ 20862306a36Sopenharmony_ci#define MASTER_CTRL_BERT_START BIT(4) 20962306a36Sopenharmony_ci#define MASTER_PCIE_TSTMOD_MASK 3UL 21062306a36Sopenharmony_ci#define MASTER_PCIE_TSTMOD_SHIFT 2 21162306a36Sopenharmony_ci#define MASTER_PCIE_RST BIT(1) 21262306a36Sopenharmony_ci#define MASTER_CTRL_SOFT_RST BIT(0) /* RST MAC & DMA */ 21362306a36Sopenharmony_ci#define DMA_MAC_RST_TO 50 21462306a36Sopenharmony_ci 21562306a36Sopenharmony_ci/* Timer Initial Value Register */ 21662306a36Sopenharmony_ci#define REG_MANUAL_TIMER_INIT 0x1404 21762306a36Sopenharmony_ci 21862306a36Sopenharmony_ci/* IRQ ModeratorTimer Initial Value Register */ 21962306a36Sopenharmony_ci#define REG_IRQ_MODRT_TIMER_INIT 0x1408 22062306a36Sopenharmony_ci#define IRQ_MODRT_TIMER_MASK 0xffff 22162306a36Sopenharmony_ci#define IRQ_MODRT_TX_TIMER_SHIFT 0 22262306a36Sopenharmony_ci#define IRQ_MODRT_RX_TIMER_SHIFT 16 22362306a36Sopenharmony_ci 22462306a36Sopenharmony_ci#define REG_GPHY_CTRL 0x140C 22562306a36Sopenharmony_ci#define GPHY_CTRL_ADDR_MASK 0x1FUL 22662306a36Sopenharmony_ci#define GPHY_CTRL_ADDR_SHIFT 19 22762306a36Sopenharmony_ci#define GPHY_CTRL_BP_VLTGSW BIT(18) 22862306a36Sopenharmony_ci#define GPHY_CTRL_100AB_EN BIT(17) 22962306a36Sopenharmony_ci#define GPHY_CTRL_10AB_EN BIT(16) 23062306a36Sopenharmony_ci#define GPHY_CTRL_PHY_PLL_BYPASS BIT(15) 23162306a36Sopenharmony_ci#define GPHY_CTRL_PWDOWN_HW BIT(14) /* affect MAC&PHY, to low pw */ 23262306a36Sopenharmony_ci#define GPHY_CTRL_PHY_PLL_ON BIT(13) /* 1:pll always on, 0:can sw */ 23362306a36Sopenharmony_ci#define GPHY_CTRL_SEL_ANA_RST BIT(12) 23462306a36Sopenharmony_ci#define GPHY_CTRL_HIB_PULSE BIT(11) 23562306a36Sopenharmony_ci#define GPHY_CTRL_HIB_EN BIT(10) 23662306a36Sopenharmony_ci#define GPHY_CTRL_GIGA_DIS BIT(9) 23762306a36Sopenharmony_ci#define GPHY_CTRL_PHY_IDDQ_DIS BIT(8) /* pw on RST */ 23862306a36Sopenharmony_ci#define GPHY_CTRL_PHY_IDDQ BIT(7) /* bit8 affect bit7 while rb */ 23962306a36Sopenharmony_ci#define GPHY_CTRL_LPW_EXIT BIT(6) 24062306a36Sopenharmony_ci#define GPHY_CTRL_GATE_25M_EN BIT(5) 24162306a36Sopenharmony_ci#define GPHY_CTRL_REV_ANEG BIT(4) 24262306a36Sopenharmony_ci#define GPHY_CTRL_ANEG_NOW BIT(3) 24362306a36Sopenharmony_ci#define GPHY_CTRL_LED_MODE BIT(2) 24462306a36Sopenharmony_ci#define GPHY_CTRL_RTL_MODE BIT(1) 24562306a36Sopenharmony_ci#define GPHY_CTRL_EXT_RESET BIT(0) /* 1:out of DSP RST status */ 24662306a36Sopenharmony_ci#define GPHY_CTRL_EXT_RST_TO 80 /* 800us atmost */ 24762306a36Sopenharmony_ci#define GPHY_CTRL_CLS (\ 24862306a36Sopenharmony_ci GPHY_CTRL_LED_MODE |\ 24962306a36Sopenharmony_ci GPHY_CTRL_100AB_EN |\ 25062306a36Sopenharmony_ci GPHY_CTRL_PHY_PLL_ON) 25162306a36Sopenharmony_ci 25262306a36Sopenharmony_ci/* Block IDLE Status Register */ 25362306a36Sopenharmony_ci#define REG_IDLE_STATUS 0x1410 25462306a36Sopenharmony_ci#define IDLE_STATUS_SFORCE_MASK 0xFUL 25562306a36Sopenharmony_ci#define IDLE_STATUS_SFORCE_SHIFT 14 25662306a36Sopenharmony_ci#define IDLE_STATUS_CALIB_DONE BIT(13) 25762306a36Sopenharmony_ci#define IDLE_STATUS_CALIB_RES_MASK 0x1FUL 25862306a36Sopenharmony_ci#define IDLE_STATUS_CALIB_RES_SHIFT 8 25962306a36Sopenharmony_ci#define IDLE_STATUS_CALIBERR_MASK 0xFUL 26062306a36Sopenharmony_ci#define IDLE_STATUS_CALIBERR_SHIFT 4 26162306a36Sopenharmony_ci#define IDLE_STATUS_TXQ_BUSY BIT(3) 26262306a36Sopenharmony_ci#define IDLE_STATUS_RXQ_BUSY BIT(2) 26362306a36Sopenharmony_ci#define IDLE_STATUS_TXMAC_BUSY BIT(1) 26462306a36Sopenharmony_ci#define IDLE_STATUS_RXMAC_BUSY BIT(0) 26562306a36Sopenharmony_ci#define IDLE_STATUS_MASK (\ 26662306a36Sopenharmony_ci IDLE_STATUS_TXQ_BUSY |\ 26762306a36Sopenharmony_ci IDLE_STATUS_RXQ_BUSY |\ 26862306a36Sopenharmony_ci IDLE_STATUS_TXMAC_BUSY |\ 26962306a36Sopenharmony_ci IDLE_STATUS_RXMAC_BUSY) 27062306a36Sopenharmony_ci 27162306a36Sopenharmony_ci/* MDIO Control Register */ 27262306a36Sopenharmony_ci#define REG_MDIO_CTRL 0x1414 27362306a36Sopenharmony_ci#define MDIO_CTRL_MODE_EXT BIT(30) 27462306a36Sopenharmony_ci#define MDIO_CTRL_POST_READ BIT(29) 27562306a36Sopenharmony_ci#define MDIO_CTRL_AP_EN BIT(28) 27662306a36Sopenharmony_ci#define MDIO_CTRL_BUSY BIT(27) 27762306a36Sopenharmony_ci#define MDIO_CTRL_CLK_SEL_MASK 0x7UL 27862306a36Sopenharmony_ci#define MDIO_CTRL_CLK_SEL_SHIFT 24 27962306a36Sopenharmony_ci#define MDIO_CTRL_CLK_25_4 0 /* 25MHz divide 4 */ 28062306a36Sopenharmony_ci#define MDIO_CTRL_CLK_25_6 2 28162306a36Sopenharmony_ci#define MDIO_CTRL_CLK_25_8 3 28262306a36Sopenharmony_ci#define MDIO_CTRL_CLK_25_10 4 28362306a36Sopenharmony_ci#define MDIO_CTRL_CLK_25_32 5 28462306a36Sopenharmony_ci#define MDIO_CTRL_CLK_25_64 6 28562306a36Sopenharmony_ci#define MDIO_CTRL_CLK_25_128 7 28662306a36Sopenharmony_ci#define MDIO_CTRL_START BIT(23) 28762306a36Sopenharmony_ci#define MDIO_CTRL_SPRES_PRMBL BIT(22) 28862306a36Sopenharmony_ci#define MDIO_CTRL_OP_READ BIT(21) /* 1:read, 0:write */ 28962306a36Sopenharmony_ci#define MDIO_CTRL_REG_MASK 0x1FUL 29062306a36Sopenharmony_ci#define MDIO_CTRL_REG_SHIFT 16 29162306a36Sopenharmony_ci#define MDIO_CTRL_DATA_MASK 0xFFFFUL 29262306a36Sopenharmony_ci#define MDIO_CTRL_DATA_SHIFT 0 29362306a36Sopenharmony_ci#define MDIO_MAX_AC_TO 120 /* 1.2ms timeout for slow clk */ 29462306a36Sopenharmony_ci 29562306a36Sopenharmony_ci/* for extension reg access */ 29662306a36Sopenharmony_ci#define REG_MDIO_EXTN 0x1448 29762306a36Sopenharmony_ci#define MDIO_EXTN_PORTAD_MASK 0x1FUL 29862306a36Sopenharmony_ci#define MDIO_EXTN_PORTAD_SHIFT 21 29962306a36Sopenharmony_ci#define MDIO_EXTN_DEVAD_MASK 0x1FUL 30062306a36Sopenharmony_ci#define MDIO_EXTN_DEVAD_SHIFT 16 30162306a36Sopenharmony_ci#define MDIO_EXTN_REG_MASK 0xFFFFUL 30262306a36Sopenharmony_ci#define MDIO_EXTN_REG_SHIFT 0 30362306a36Sopenharmony_ci 30462306a36Sopenharmony_ci/* BIST Control and Status Register0 (for the Packet Memory) */ 30562306a36Sopenharmony_ci#define REG_BIST0_CTRL 0x141c 30662306a36Sopenharmony_ci#define BIST0_NOW 0x1 30762306a36Sopenharmony_ci#define BIST0_SRAM_FAIL 0x2 /* 1: The SRAM failure is 30862306a36Sopenharmony_ci * un-repairable because 30962306a36Sopenharmony_ci * it has address decoder 31062306a36Sopenharmony_ci * failure or more than 1 cell 31162306a36Sopenharmony_ci * stuck-to-x failure */ 31262306a36Sopenharmony_ci#define BIST0_FUSE_FLAG 0x4 31362306a36Sopenharmony_ci 31462306a36Sopenharmony_ci/* BIST Control and Status Register1(for the retry buffer of PCI Express) */ 31562306a36Sopenharmony_ci#define REG_BIST1_CTRL 0x1420 31662306a36Sopenharmony_ci#define BIST1_NOW 0x1 31762306a36Sopenharmony_ci#define BIST1_SRAM_FAIL 0x2 31862306a36Sopenharmony_ci#define BIST1_FUSE_FLAG 0x4 31962306a36Sopenharmony_ci 32062306a36Sopenharmony_ci/* SerDes Lock Detect Control and Status Register */ 32162306a36Sopenharmony_ci#define REG_SERDES 0x1424 32262306a36Sopenharmony_ci#define SERDES_PHY_CLK_SLOWDOWN BIT(18) 32362306a36Sopenharmony_ci#define SERDES_MAC_CLK_SLOWDOWN BIT(17) 32462306a36Sopenharmony_ci#define SERDES_SELFB_PLL_MASK 0x3UL 32562306a36Sopenharmony_ci#define SERDES_SELFB_PLL_SHIFT 14 32662306a36Sopenharmony_ci#define SERDES_PHYCLK_SEL_GTX BIT(13) /* 1:gtx_clk, 0:25M */ 32762306a36Sopenharmony_ci#define SERDES_PCIECLK_SEL_SRDS BIT(12) /* 1:serdes,0:25M */ 32862306a36Sopenharmony_ci#define SERDES_BUFS_RX_EN BIT(11) 32962306a36Sopenharmony_ci#define SERDES_PD_RX BIT(10) 33062306a36Sopenharmony_ci#define SERDES_PLL_EN BIT(9) 33162306a36Sopenharmony_ci#define SERDES_EN BIT(8) 33262306a36Sopenharmony_ci#define SERDES_SELFB_PLL_SEL_CSR BIT(6) /* 0:state-machine,1:csr */ 33362306a36Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_MASK 0x3UL 33462306a36Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_SHIFT 4 33562306a36Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_4 3 /* 4-12% OV-CLK */ 33662306a36Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_0 2 /* 0-4% OV-CLK */ 33762306a36Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_12 1 /* 12-18% OV-CLK */ 33862306a36Sopenharmony_ci#define SERDES_SELFB_PLL_CSR_18 0 /* 18-25% OV-CLK */ 33962306a36Sopenharmony_ci#define SERDES_VCO_SLOW BIT(3) 34062306a36Sopenharmony_ci#define SERDES_VCO_FAST BIT(2) 34162306a36Sopenharmony_ci#define SERDES_LOCK_DETECT_EN BIT(1) 34262306a36Sopenharmony_ci#define SERDES_LOCK_DETECT BIT(0) 34362306a36Sopenharmony_ci 34462306a36Sopenharmony_ci#define REG_LPI_DECISN_TIMER 0x143C 34562306a36Sopenharmony_ci#define L2CB_LPI_DESISN_TIMER 0x7D00 34662306a36Sopenharmony_ci 34762306a36Sopenharmony_ci#define REG_LPI_CTRL 0x1440 34862306a36Sopenharmony_ci#define LPI_CTRL_CHK_DA BIT(31) 34962306a36Sopenharmony_ci#define LPI_CTRL_ENH_TO_MASK 0x1FFFUL 35062306a36Sopenharmony_ci#define LPI_CTRL_ENH_TO_SHIFT 12 35162306a36Sopenharmony_ci#define LPI_CTRL_ENH_TH_MASK 0x1FUL 35262306a36Sopenharmony_ci#define LPI_CTRL_ENH_TH_SHIFT 6 35362306a36Sopenharmony_ci#define LPI_CTRL_ENH_EN BIT(5) 35462306a36Sopenharmony_ci#define LPI_CTRL_CHK_RX BIT(4) 35562306a36Sopenharmony_ci#define LPI_CTRL_CHK_STATE BIT(3) 35662306a36Sopenharmony_ci#define LPI_CTRL_GMII BIT(2) 35762306a36Sopenharmony_ci#define LPI_CTRL_TO_PHY BIT(1) 35862306a36Sopenharmony_ci#define LPI_CTRL_EN BIT(0) 35962306a36Sopenharmony_ci 36062306a36Sopenharmony_ci#define REG_LPI_WAIT 0x1444 36162306a36Sopenharmony_ci#define LPI_WAIT_TIMER_MASK 0xFFFFUL 36262306a36Sopenharmony_ci#define LPI_WAIT_TIMER_SHIFT 0 36362306a36Sopenharmony_ci 36462306a36Sopenharmony_ci/* MAC Control Register */ 36562306a36Sopenharmony_ci#define REG_MAC_CTRL 0x1480 36662306a36Sopenharmony_ci#define MAC_CTRL_SPEED_MODE_SW BIT(30) /* 0:phy,1:sw */ 36762306a36Sopenharmony_ci#define MAC_CTRL_HASH_ALG_CRC32 BIT(29) /* 1:legacy,0:lw_5b */ 36862306a36Sopenharmony_ci#define MAC_CTRL_SINGLE_PAUSE_EN BIT(28) 36962306a36Sopenharmony_ci#define MAC_CTRL_DBG BIT(27) 37062306a36Sopenharmony_ci#define MAC_CTRL_BC_EN BIT(26) 37162306a36Sopenharmony_ci#define MAC_CTRL_MC_ALL_EN BIT(25) 37262306a36Sopenharmony_ci#define MAC_CTRL_RX_CHKSUM_EN BIT(24) 37362306a36Sopenharmony_ci#define MAC_CTRL_TX_HUGE BIT(23) 37462306a36Sopenharmony_ci#define MAC_CTRL_DBG_TX_BKPRESURE BIT(22) 37562306a36Sopenharmony_ci#define MAC_CTRL_SPEED_MASK 3UL 37662306a36Sopenharmony_ci#define MAC_CTRL_SPEED_SHIFT 20 37762306a36Sopenharmony_ci#define MAC_CTRL_SPEED_10_100 1 37862306a36Sopenharmony_ci#define MAC_CTRL_SPEED_1000 2 37962306a36Sopenharmony_ci#define MAC_CTRL_TX_SIMURST BIT(19) 38062306a36Sopenharmony_ci#define MAC_CTRL_SCNT BIT(17) 38162306a36Sopenharmony_ci#define MAC_CTRL_TX_PAUSE BIT(16) 38262306a36Sopenharmony_ci#define MAC_CTRL_PROMIS_EN BIT(15) 38362306a36Sopenharmony_ci#define MAC_CTRL_RMV_VLAN BIT(14) 38462306a36Sopenharmony_ci#define MAC_CTRL_PRMLEN_MASK 0xFUL 38562306a36Sopenharmony_ci#define MAC_CTRL_PRMLEN_SHIFT 10 38662306a36Sopenharmony_ci#define MAC_CTRL_HUGE_EN BIT(9) 38762306a36Sopenharmony_ci#define MAC_CTRL_LENCHK BIT(8) 38862306a36Sopenharmony_ci#define MAC_CTRL_PAD BIT(7) 38962306a36Sopenharmony_ci#define MAC_CTRL_ADD_CRC BIT(6) 39062306a36Sopenharmony_ci#define MAC_CTRL_DUPLX BIT(5) 39162306a36Sopenharmony_ci#define MAC_CTRL_LOOPBACK BIT(4) 39262306a36Sopenharmony_ci#define MAC_CTRL_RX_FLOW BIT(3) 39362306a36Sopenharmony_ci#define MAC_CTRL_TX_FLOW BIT(2) 39462306a36Sopenharmony_ci#define MAC_CTRL_RX_EN BIT(1) 39562306a36Sopenharmony_ci#define MAC_CTRL_TX_EN BIT(0) 39662306a36Sopenharmony_ci 39762306a36Sopenharmony_ci/* MAC IPG/IFG Control Register */ 39862306a36Sopenharmony_ci#define REG_MAC_IPG_IFG 0x1484 39962306a36Sopenharmony_ci#define MAC_IPG_IFG_IPGT_SHIFT 0 /* Desired back to back 40062306a36Sopenharmony_ci * inter-packet gap. The 40162306a36Sopenharmony_ci * default is 96-bit time */ 40262306a36Sopenharmony_ci#define MAC_IPG_IFG_IPGT_MASK 0x7f 40362306a36Sopenharmony_ci#define MAC_IPG_IFG_MIFG_SHIFT 8 /* Minimum number of IFG to 40462306a36Sopenharmony_ci * enforce in between RX frames */ 40562306a36Sopenharmony_ci#define MAC_IPG_IFG_MIFG_MASK 0xff /* Frame gap below such IFP is dropped */ 40662306a36Sopenharmony_ci#define MAC_IPG_IFG_IPGR1_SHIFT 16 /* 64bit Carrier-Sense window */ 40762306a36Sopenharmony_ci#define MAC_IPG_IFG_IPGR1_MASK 0x7f 40862306a36Sopenharmony_ci#define MAC_IPG_IFG_IPGR2_SHIFT 24 /* 96-bit IPG window */ 40962306a36Sopenharmony_ci#define MAC_IPG_IFG_IPGR2_MASK 0x7f 41062306a36Sopenharmony_ci 41162306a36Sopenharmony_ci/* MAC STATION ADDRESS */ 41262306a36Sopenharmony_ci#define REG_MAC_STA_ADDR 0x1488 41362306a36Sopenharmony_ci 41462306a36Sopenharmony_ci/* Hash table for multicast address */ 41562306a36Sopenharmony_ci#define REG_RX_HASH_TABLE 0x1490 41662306a36Sopenharmony_ci 41762306a36Sopenharmony_ci/* MAC Half-Duplex Control Register */ 41862306a36Sopenharmony_ci#define REG_MAC_HALF_DUPLX_CTRL 0x1498 41962306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_LCOL_SHIFT 0 /* Collision Window */ 42062306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_LCOL_MASK 0x3ff 42162306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_RETRY_SHIFT 12 42262306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_RETRY_MASK 0xf 42362306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_EXC_DEF_EN 0x10000 42462306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_NO_BACK_C 0x20000 42562306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_NO_BACK_P 0x40000 /* No back-off on backpressure, 42662306a36Sopenharmony_ci * immediately start the 42762306a36Sopenharmony_ci * transmission after back pressure */ 42862306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_ABEBE 0x80000 /* 1: Alternative Binary Exponential Back-off Enabled */ 42962306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_ABEBT_SHIFT 20 /* Maximum binary exponential number */ 43062306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_ABEBT_MASK 0xf 43162306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_JAMIPG_SHIFT 24 /* IPG to start JAM for collision based flow control in half-duplex */ 43262306a36Sopenharmony_ci#define MAC_HALF_DUPLX_CTRL_JAMIPG_MASK 0xf /* mode. In unit of 8-bit time */ 43362306a36Sopenharmony_ci 43462306a36Sopenharmony_ci/* Maximum Frame Length Control Register */ 43562306a36Sopenharmony_ci#define REG_MTU 0x149c 43662306a36Sopenharmony_ci 43762306a36Sopenharmony_ci/* Wake-On-Lan control register */ 43862306a36Sopenharmony_ci#define REG_WOL_CTRL 0x14a0 43962306a36Sopenharmony_ci#define WOL_PT7_MATCH BIT(31) 44062306a36Sopenharmony_ci#define WOL_PT6_MATCH BIT(30) 44162306a36Sopenharmony_ci#define WOL_PT5_MATCH BIT(29) 44262306a36Sopenharmony_ci#define WOL_PT4_MATCH BIT(28) 44362306a36Sopenharmony_ci#define WOL_PT3_MATCH BIT(27) 44462306a36Sopenharmony_ci#define WOL_PT2_MATCH BIT(26) 44562306a36Sopenharmony_ci#define WOL_PT1_MATCH BIT(25) 44662306a36Sopenharmony_ci#define WOL_PT0_MATCH BIT(24) 44762306a36Sopenharmony_ci#define WOL_PT7_EN BIT(23) 44862306a36Sopenharmony_ci#define WOL_PT6_EN BIT(22) 44962306a36Sopenharmony_ci#define WOL_PT5_EN BIT(21) 45062306a36Sopenharmony_ci#define WOL_PT4_EN BIT(20) 45162306a36Sopenharmony_ci#define WOL_PT3_EN BIT(19) 45262306a36Sopenharmony_ci#define WOL_PT2_EN BIT(18) 45362306a36Sopenharmony_ci#define WOL_PT1_EN BIT(17) 45462306a36Sopenharmony_ci#define WOL_PT0_EN BIT(16) 45562306a36Sopenharmony_ci#define WOL_LNKCHG_ST BIT(10) 45662306a36Sopenharmony_ci#define WOL_MAGIC_ST BIT(9) 45762306a36Sopenharmony_ci#define WOL_PATTERN_ST BIT(8) 45862306a36Sopenharmony_ci#define WOL_OOB_EN BIT(6) 45962306a36Sopenharmony_ci#define WOL_LINK_CHG_PME_EN BIT(5) 46062306a36Sopenharmony_ci#define WOL_LINK_CHG_EN BIT(4) 46162306a36Sopenharmony_ci#define WOL_MAGIC_PME_EN BIT(3) 46262306a36Sopenharmony_ci#define WOL_MAGIC_EN BIT(2) 46362306a36Sopenharmony_ci#define WOL_PATTERN_PME_EN BIT(1) 46462306a36Sopenharmony_ci#define WOL_PATTERN_EN BIT(0) 46562306a36Sopenharmony_ci 46662306a36Sopenharmony_ci/* WOL Length ( 2 DWORD ) */ 46762306a36Sopenharmony_ci#define REG_WOL_PTLEN1 0x14A4 46862306a36Sopenharmony_ci#define WOL_PTLEN1_3_MASK 0xFFUL 46962306a36Sopenharmony_ci#define WOL_PTLEN1_3_SHIFT 24 47062306a36Sopenharmony_ci#define WOL_PTLEN1_2_MASK 0xFFUL 47162306a36Sopenharmony_ci#define WOL_PTLEN1_2_SHIFT 16 47262306a36Sopenharmony_ci#define WOL_PTLEN1_1_MASK 0xFFUL 47362306a36Sopenharmony_ci#define WOL_PTLEN1_1_SHIFT 8 47462306a36Sopenharmony_ci#define WOL_PTLEN1_0_MASK 0xFFUL 47562306a36Sopenharmony_ci#define WOL_PTLEN1_0_SHIFT 0 47662306a36Sopenharmony_ci 47762306a36Sopenharmony_ci#define REG_WOL_PTLEN2 0x14A8 47862306a36Sopenharmony_ci#define WOL_PTLEN2_7_MASK 0xFFUL 47962306a36Sopenharmony_ci#define WOL_PTLEN2_7_SHIFT 24 48062306a36Sopenharmony_ci#define WOL_PTLEN2_6_MASK 0xFFUL 48162306a36Sopenharmony_ci#define WOL_PTLEN2_6_SHIFT 16 48262306a36Sopenharmony_ci#define WOL_PTLEN2_5_MASK 0xFFUL 48362306a36Sopenharmony_ci#define WOL_PTLEN2_5_SHIFT 8 48462306a36Sopenharmony_ci#define WOL_PTLEN2_4_MASK 0xFFUL 48562306a36Sopenharmony_ci#define WOL_PTLEN2_4_SHIFT 0 48662306a36Sopenharmony_ci 48762306a36Sopenharmony_ci/* Internal SRAM Partition Register */ 48862306a36Sopenharmony_ci#define RFDX_HEAD_ADDR_MASK 0x03FF 48962306a36Sopenharmony_ci#define RFDX_HARD_ADDR_SHIFT 0 49062306a36Sopenharmony_ci#define RFDX_TAIL_ADDR_MASK 0x03FF 49162306a36Sopenharmony_ci#define RFDX_TAIL_ADDR_SHIFT 16 49262306a36Sopenharmony_ci 49362306a36Sopenharmony_ci#define REG_SRAM_RFD0_INFO 0x1500 49462306a36Sopenharmony_ci#define REG_SRAM_RFD1_INFO 0x1504 49562306a36Sopenharmony_ci#define REG_SRAM_RFD2_INFO 0x1508 49662306a36Sopenharmony_ci#define REG_SRAM_RFD3_INFO 0x150C 49762306a36Sopenharmony_ci 49862306a36Sopenharmony_ci#define REG_RFD_NIC_LEN 0x1510 /* In 8-bytes */ 49962306a36Sopenharmony_ci#define RFD_NIC_LEN_MASK 0x03FF 50062306a36Sopenharmony_ci 50162306a36Sopenharmony_ci#define REG_SRAM_TRD_ADDR 0x1518 50262306a36Sopenharmony_ci#define TPD_HEAD_ADDR_MASK 0x03FF 50362306a36Sopenharmony_ci#define TPD_HEAD_ADDR_SHIFT 0 50462306a36Sopenharmony_ci#define TPD_TAIL_ADDR_MASK 0x03FF 50562306a36Sopenharmony_ci#define TPD_TAIL_ADDR_SHIFT 16 50662306a36Sopenharmony_ci 50762306a36Sopenharmony_ci#define REG_SRAM_TRD_LEN 0x151C /* In 8-bytes */ 50862306a36Sopenharmony_ci#define TPD_NIC_LEN_MASK 0x03FF 50962306a36Sopenharmony_ci 51062306a36Sopenharmony_ci#define REG_SRAM_RXF_ADDR 0x1520 51162306a36Sopenharmony_ci#define REG_SRAM_RXF_LEN 0x1524 51262306a36Sopenharmony_ci#define REG_SRAM_TXF_ADDR 0x1528 51362306a36Sopenharmony_ci#define REG_SRAM_TXF_LEN 0x152C 51462306a36Sopenharmony_ci#define REG_SRAM_TCPH_ADDR 0x1530 51562306a36Sopenharmony_ci#define REG_SRAM_PKTH_ADDR 0x1532 51662306a36Sopenharmony_ci 51762306a36Sopenharmony_ci/* 51862306a36Sopenharmony_ci * Load Ptr Register 51962306a36Sopenharmony_ci * Software sets this bit after the initialization of the head and tail */ 52062306a36Sopenharmony_ci#define REG_LOAD_PTR 0x1534 52162306a36Sopenharmony_ci 52262306a36Sopenharmony_ci/* 52362306a36Sopenharmony_ci * addresses of all descriptors, as well as the following descriptor 52462306a36Sopenharmony_ci * control register, which triggers each function block to load the head 52562306a36Sopenharmony_ci * pointer to prepare for the operation. This bit is then self-cleared 52662306a36Sopenharmony_ci * after one cycle. 52762306a36Sopenharmony_ci */ 52862306a36Sopenharmony_ci#define REG_RX_BASE_ADDR_HI 0x1540 52962306a36Sopenharmony_ci#define REG_TX_BASE_ADDR_HI 0x1544 53062306a36Sopenharmony_ci#define REG_RFD0_HEAD_ADDR_LO 0x1550 53162306a36Sopenharmony_ci#define REG_RFD1_HEAD_ADDR_LO 0x1554 53262306a36Sopenharmony_ci#define REG_RFD2_HEAD_ADDR_LO 0x1558 53362306a36Sopenharmony_ci#define REG_RFD3_HEAD_ADDR_LO 0x155C 53462306a36Sopenharmony_ci#define REG_RFD_RING_SIZE 0x1560 53562306a36Sopenharmony_ci#define RFD_RING_SIZE_MASK 0x0FFF 53662306a36Sopenharmony_ci#define REG_RX_BUF_SIZE 0x1564 53762306a36Sopenharmony_ci#define RX_BUF_SIZE_MASK 0xFFFF 53862306a36Sopenharmony_ci#define REG_RRD0_HEAD_ADDR_LO 0x1568 53962306a36Sopenharmony_ci#define REG_RRD1_HEAD_ADDR_LO 0x156C 54062306a36Sopenharmony_ci#define REG_RRD2_HEAD_ADDR_LO 0x1570 54162306a36Sopenharmony_ci#define REG_RRD3_HEAD_ADDR_LO 0x1574 54262306a36Sopenharmony_ci#define REG_RRD_RING_SIZE 0x1578 54362306a36Sopenharmony_ci#define RRD_RING_SIZE_MASK 0x0FFF 54462306a36Sopenharmony_ci#define REG_TPD_PRI1_ADDR_LO 0x157C 54562306a36Sopenharmony_ci#define REG_TPD_PRI0_ADDR_LO 0x1580 54662306a36Sopenharmony_ci#define REG_TPD_PRI2_ADDR_LO 0x1F10 54762306a36Sopenharmony_ci#define REG_TPD_PRI3_ADDR_LO 0x1F14 54862306a36Sopenharmony_ci 54962306a36Sopenharmony_ci#define REG_TPD_RING_SIZE 0x1584 55062306a36Sopenharmony_ci#define TPD_RING_SIZE_MASK 0xFFFF 55162306a36Sopenharmony_ci 55262306a36Sopenharmony_ci/* TXQ Control Register */ 55362306a36Sopenharmony_ci#define REG_TXQ_CTRL 0x1590 55462306a36Sopenharmony_ci#define TXQ_TXF_BURST_NUM_MASK 0xFFFFUL 55562306a36Sopenharmony_ci#define TXQ_TXF_BURST_NUM_SHIFT 16 55662306a36Sopenharmony_ci#define L1C_TXQ_TXF_BURST_PREF 0x200 55762306a36Sopenharmony_ci#define L2CB_TXQ_TXF_BURST_PREF 0x40 55862306a36Sopenharmony_ci#define TXQ_CTRL_PEDING_CLR BIT(8) 55962306a36Sopenharmony_ci#define TXQ_CTRL_LS_8023_EN BIT(7) 56062306a36Sopenharmony_ci#define TXQ_CTRL_ENH_MODE BIT(6) 56162306a36Sopenharmony_ci#define TXQ_CTRL_EN BIT(5) 56262306a36Sopenharmony_ci#define TXQ_CTRL_IP_OPTION_EN BIT(4) 56362306a36Sopenharmony_ci#define TXQ_NUM_TPD_BURST_MASK 0xFUL 56462306a36Sopenharmony_ci#define TXQ_NUM_TPD_BURST_SHIFT 0 56562306a36Sopenharmony_ci#define TXQ_NUM_TPD_BURST_DEF 5 56662306a36Sopenharmony_ci#define TXQ_CFGV (\ 56762306a36Sopenharmony_ci FIELDX(TXQ_NUM_TPD_BURST, TXQ_NUM_TPD_BURST_DEF) |\ 56862306a36Sopenharmony_ci TXQ_CTRL_ENH_MODE |\ 56962306a36Sopenharmony_ci TXQ_CTRL_LS_8023_EN |\ 57062306a36Sopenharmony_ci TXQ_CTRL_IP_OPTION_EN) 57162306a36Sopenharmony_ci#define L1C_TXQ_CFGV (\ 57262306a36Sopenharmony_ci TXQ_CFGV |\ 57362306a36Sopenharmony_ci FIELDX(TXQ_TXF_BURST_NUM, L1C_TXQ_TXF_BURST_PREF)) 57462306a36Sopenharmony_ci#define L2CB_TXQ_CFGV (\ 57562306a36Sopenharmony_ci TXQ_CFGV |\ 57662306a36Sopenharmony_ci FIELDX(TXQ_TXF_BURST_NUM, L2CB_TXQ_TXF_BURST_PREF)) 57762306a36Sopenharmony_ci 57862306a36Sopenharmony_ci 57962306a36Sopenharmony_ci/* Jumbo packet Threshold for task offload */ 58062306a36Sopenharmony_ci#define REG_TX_TSO_OFFLOAD_THRESH 0x1594 /* In 8-bytes */ 58162306a36Sopenharmony_ci#define TX_TSO_OFFLOAD_THRESH_MASK 0x07FF 58262306a36Sopenharmony_ci#define MAX_TSO_FRAME_SIZE (7*1024) 58362306a36Sopenharmony_ci 58462306a36Sopenharmony_ci#define REG_TXF_WATER_MARK 0x1598 /* In 8-bytes */ 58562306a36Sopenharmony_ci#define TXF_WATER_MARK_MASK 0x0FFF 58662306a36Sopenharmony_ci#define TXF_LOW_WATER_MARK_SHIFT 0 58762306a36Sopenharmony_ci#define TXF_HIGH_WATER_MARK_SHIFT 16 58862306a36Sopenharmony_ci#define TXQ_CTRL_BURST_MODE_EN 0x80000000 58962306a36Sopenharmony_ci 59062306a36Sopenharmony_ci#define REG_THRUPUT_MON_CTRL 0x159C 59162306a36Sopenharmony_ci#define THRUPUT_MON_RATE_MASK 0x3 59262306a36Sopenharmony_ci#define THRUPUT_MON_RATE_SHIFT 0 59362306a36Sopenharmony_ci#define THRUPUT_MON_EN 0x80 59462306a36Sopenharmony_ci 59562306a36Sopenharmony_ci/* RXQ Control Register */ 59662306a36Sopenharmony_ci#define REG_RXQ_CTRL 0x15A0 59762306a36Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_MASK 0x3 59862306a36Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_SHIFT 0 59962306a36Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_NO 0x00 60062306a36Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_1M 0x01 60162306a36Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_10M 0x02 60262306a36Sopenharmony_ci#define ASPM_THRUPUT_LIMIT_100M 0x03 60362306a36Sopenharmony_ci#define IPV6_CHKSUM_CTRL_EN BIT(7) 60462306a36Sopenharmony_ci#define RXQ_RFD_BURST_NUM_MASK 0x003F 60562306a36Sopenharmony_ci#define RXQ_RFD_BURST_NUM_SHIFT 20 60662306a36Sopenharmony_ci#define RXQ_NUM_RFD_PREF_DEF 8 60762306a36Sopenharmony_ci#define RSS_MODE_MASK 3UL 60862306a36Sopenharmony_ci#define RSS_MODE_SHIFT 26 60962306a36Sopenharmony_ci#define RSS_MODE_DIS 0 61062306a36Sopenharmony_ci#define RSS_MODE_SQSI 1 61162306a36Sopenharmony_ci#define RSS_MODE_MQSI 2 61262306a36Sopenharmony_ci#define RSS_MODE_MQMI 3 61362306a36Sopenharmony_ci#define RSS_NIP_QUEUE_SEL BIT(28) /* 0:q0, 1:table */ 61462306a36Sopenharmony_ci#define RRS_HASH_CTRL_EN BIT(29) 61562306a36Sopenharmony_ci#define RX_CUT_THRU_EN BIT(30) 61662306a36Sopenharmony_ci#define RXQ_CTRL_EN BIT(31) 61762306a36Sopenharmony_ci 61862306a36Sopenharmony_ci#define REG_RFD_FREE_THRESH 0x15A4 61962306a36Sopenharmony_ci#define RFD_FREE_THRESH_MASK 0x003F 62062306a36Sopenharmony_ci#define RFD_FREE_HI_THRESH_SHIFT 0 62162306a36Sopenharmony_ci#define RFD_FREE_LO_THRESH_SHIFT 6 62262306a36Sopenharmony_ci 62362306a36Sopenharmony_ci/* RXF flow control register */ 62462306a36Sopenharmony_ci#define REG_RXQ_RXF_PAUSE_THRESH 0x15A8 62562306a36Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_HI_SHIFT 0 62662306a36Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_HI_MASK 0x0FFF 62762306a36Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_LO_SHIFT 16 62862306a36Sopenharmony_ci#define RXQ_RXF_PAUSE_TH_LO_MASK 0x0FFF 62962306a36Sopenharmony_ci 63062306a36Sopenharmony_ci#define REG_RXD_DMA_CTRL 0x15AC 63162306a36Sopenharmony_ci#define RXD_DMA_THRESH_MASK 0x0FFF /* In 8-bytes */ 63262306a36Sopenharmony_ci#define RXD_DMA_THRESH_SHIFT 0 63362306a36Sopenharmony_ci#define RXD_DMA_DOWN_TIMER_MASK 0xFFFF 63462306a36Sopenharmony_ci#define RXD_DMA_DOWN_TIMER_SHIFT 16 63562306a36Sopenharmony_ci 63662306a36Sopenharmony_ci/* DMA Engine Control Register */ 63762306a36Sopenharmony_ci#define REG_DMA_CTRL 0x15C0 63862306a36Sopenharmony_ci#define DMA_CTRL_SMB_NOW BIT(31) 63962306a36Sopenharmony_ci#define DMA_CTRL_WPEND_CLR BIT(30) 64062306a36Sopenharmony_ci#define DMA_CTRL_RPEND_CLR BIT(29) 64162306a36Sopenharmony_ci#define DMA_CTRL_WDLY_CNT_MASK 0xFUL 64262306a36Sopenharmony_ci#define DMA_CTRL_WDLY_CNT_SHIFT 16 64362306a36Sopenharmony_ci#define DMA_CTRL_WDLY_CNT_DEF 4 64462306a36Sopenharmony_ci#define DMA_CTRL_RDLY_CNT_MASK 0x1FUL 64562306a36Sopenharmony_ci#define DMA_CTRL_RDLY_CNT_SHIFT 11 64662306a36Sopenharmony_ci#define DMA_CTRL_RDLY_CNT_DEF 15 64762306a36Sopenharmony_ci#define DMA_CTRL_RREQ_PRI_DATA BIT(10) /* 0:tpd, 1:data */ 64862306a36Sopenharmony_ci#define DMA_CTRL_WREQ_BLEN_MASK 7UL 64962306a36Sopenharmony_ci#define DMA_CTRL_WREQ_BLEN_SHIFT 7 65062306a36Sopenharmony_ci#define DMA_CTRL_RREQ_BLEN_MASK 7UL 65162306a36Sopenharmony_ci#define DMA_CTRL_RREQ_BLEN_SHIFT 4 65262306a36Sopenharmony_ci#define L1C_CTRL_DMA_RCB_LEN128 BIT(3) /* 0:64bytes,1:128bytes */ 65362306a36Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_MASK 7UL 65462306a36Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_SHIFT 0 65562306a36Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_OUT 4 65662306a36Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_ENHANCE 2 65762306a36Sopenharmony_ci#define DMA_CTRL_RORDER_MODE_IN 1 65862306a36Sopenharmony_ci 65962306a36Sopenharmony_ci/* INT-triggle/SMB Control Register */ 66062306a36Sopenharmony_ci#define REG_SMB_STAT_TIMER 0x15C4 /* 2us resolution */ 66162306a36Sopenharmony_ci#define SMB_STAT_TIMER_MASK 0xFFFFFF 66262306a36Sopenharmony_ci#define REG_TINT_TPD_THRESH 0x15C8 /* tpd th to trig intrrupt */ 66362306a36Sopenharmony_ci 66462306a36Sopenharmony_ci/* Mail box */ 66562306a36Sopenharmony_ci#define MB_RFDX_PROD_IDX_MASK 0xFFFF 66662306a36Sopenharmony_ci#define REG_MB_RFD0_PROD_IDX 0x15E0 66762306a36Sopenharmony_ci#define REG_MB_RFD1_PROD_IDX 0x15E4 66862306a36Sopenharmony_ci#define REG_MB_RFD2_PROD_IDX 0x15E8 66962306a36Sopenharmony_ci#define REG_MB_RFD3_PROD_IDX 0x15EC 67062306a36Sopenharmony_ci 67162306a36Sopenharmony_ci#define REG_TPD_PRI1_PIDX 0x15F0 /* 16bit,hi-tpd producer idx */ 67262306a36Sopenharmony_ci#define REG_TPD_PRI0_PIDX 0x15F2 /* 16bit,lo-tpd producer idx */ 67362306a36Sopenharmony_ci#define REG_TPD_PRI1_CIDX 0x15F4 /* 16bit,hi-tpd consumer idx */ 67462306a36Sopenharmony_ci#define REG_TPD_PRI0_CIDX 0x15F6 /* 16bit,lo-tpd consumer idx */ 67562306a36Sopenharmony_ci#define REG_TPD_PRI3_PIDX 0x1F18 67662306a36Sopenharmony_ci#define REG_TPD_PRI2_PIDX 0x1F1A 67762306a36Sopenharmony_ci#define REG_TPD_PRI3_CIDX 0x1F1C 67862306a36Sopenharmony_ci#define REG_TPD_PRI2_CIDX 0x1F1E 67962306a36Sopenharmony_ci 68062306a36Sopenharmony_ci 68162306a36Sopenharmony_ci#define REG_MB_RFD01_CONS_IDX 0x15F8 68262306a36Sopenharmony_ci#define MB_RFD0_CONS_IDX_MASK 0x0000FFFF 68362306a36Sopenharmony_ci#define MB_RFD1_CONS_IDX_MASK 0xFFFF0000 68462306a36Sopenharmony_ci#define REG_MB_RFD23_CONS_IDX 0x15FC 68562306a36Sopenharmony_ci#define MB_RFD2_CONS_IDX_MASK 0x0000FFFF 68662306a36Sopenharmony_ci#define MB_RFD3_CONS_IDX_MASK 0xFFFF0000 68762306a36Sopenharmony_ci 68862306a36Sopenharmony_ci/* Interrupt Status Register */ 68962306a36Sopenharmony_ci#define REG_ISR 0x1600 69062306a36Sopenharmony_ci#define ISR_SMB 0x00000001 69162306a36Sopenharmony_ci#define ISR_TIMER 0x00000002 69262306a36Sopenharmony_ci/* 69362306a36Sopenharmony_ci * Software manual interrupt, for debug. Set when SW_MAN_INT_EN is set 69462306a36Sopenharmony_ci * in Table 51 Selene Master Control Register (Offset 0x1400). 69562306a36Sopenharmony_ci */ 69662306a36Sopenharmony_ci#define ISR_MANUAL 0x00000004 69762306a36Sopenharmony_ci#define ISR_HW_RXF_OV 0x00000008 /* RXF overflow interrupt */ 69862306a36Sopenharmony_ci#define ISR_RFD0_UR 0x00000010 /* RFD0 under run */ 69962306a36Sopenharmony_ci#define ISR_RFD1_UR 0x00000020 70062306a36Sopenharmony_ci#define ISR_RFD2_UR 0x00000040 70162306a36Sopenharmony_ci#define ISR_RFD3_UR 0x00000080 70262306a36Sopenharmony_ci#define ISR_TXF_UR 0x00000100 70362306a36Sopenharmony_ci#define ISR_DMAR_TO_RST 0x00000200 70462306a36Sopenharmony_ci#define ISR_DMAW_TO_RST 0x00000400 70562306a36Sopenharmony_ci#define ISR_TX_CREDIT 0x00000800 70662306a36Sopenharmony_ci#define ISR_GPHY 0x00001000 70762306a36Sopenharmony_ci/* GPHY low power state interrupt */ 70862306a36Sopenharmony_ci#define ISR_GPHY_LPW 0x00002000 70962306a36Sopenharmony_ci#define ISR_TXQ_TO_RST 0x00004000 71062306a36Sopenharmony_ci#define ISR_TX_PKT_0 0x00008000 71162306a36Sopenharmony_ci#define ISR_RX_PKT_0 0x00010000 71262306a36Sopenharmony_ci#define ISR_RX_PKT_1 0x00020000 71362306a36Sopenharmony_ci#define ISR_RX_PKT_2 0x00040000 71462306a36Sopenharmony_ci#define ISR_RX_PKT_3 0x00080000 71562306a36Sopenharmony_ci#define ISR_MAC_RX 0x00100000 71662306a36Sopenharmony_ci#define ISR_MAC_TX 0x00200000 71762306a36Sopenharmony_ci#define ISR_UR_DETECTED 0x00400000 71862306a36Sopenharmony_ci#define ISR_FERR_DETECTED 0x00800000 71962306a36Sopenharmony_ci#define ISR_NFERR_DETECTED 0x01000000 72062306a36Sopenharmony_ci#define ISR_CERR_DETECTED 0x02000000 72162306a36Sopenharmony_ci#define ISR_PHY_LINKDOWN 0x04000000 72262306a36Sopenharmony_ci#define ISR_TX_PKT_1 0x10000000 72362306a36Sopenharmony_ci#define ISR_TX_PKT_2 0x20000000 72462306a36Sopenharmony_ci#define ISR_TX_PKT_3 0x40000000 72562306a36Sopenharmony_ci#define ISR_DIS_INT 0x80000000 72662306a36Sopenharmony_ci 72762306a36Sopenharmony_ci/* Interrupt Mask Register */ 72862306a36Sopenharmony_ci#define REG_IMR 0x1604 72962306a36Sopenharmony_ci 73062306a36Sopenharmony_ci#define IMR_NORMAL_MASK (\ 73162306a36Sopenharmony_ci ISR_MANUAL |\ 73262306a36Sopenharmony_ci ISR_HW_RXF_OV |\ 73362306a36Sopenharmony_ci ISR_RFD0_UR |\ 73462306a36Sopenharmony_ci ISR_TXF_UR |\ 73562306a36Sopenharmony_ci ISR_DMAR_TO_RST |\ 73662306a36Sopenharmony_ci ISR_TXQ_TO_RST |\ 73762306a36Sopenharmony_ci ISR_DMAW_TO_RST |\ 73862306a36Sopenharmony_ci ISR_GPHY |\ 73962306a36Sopenharmony_ci ISR_GPHY_LPW |\ 74062306a36Sopenharmony_ci ISR_PHY_LINKDOWN) 74162306a36Sopenharmony_ci 74262306a36Sopenharmony_ci#define ISR_TX_PKT ( \ 74362306a36Sopenharmony_ci ISR_TX_PKT_0 | \ 74462306a36Sopenharmony_ci ISR_TX_PKT_1 | \ 74562306a36Sopenharmony_ci ISR_TX_PKT_2 | \ 74662306a36Sopenharmony_ci ISR_TX_PKT_3) 74762306a36Sopenharmony_ci 74862306a36Sopenharmony_ci#define ISR_RX_PKT (\ 74962306a36Sopenharmony_ci ISR_RX_PKT_0 |\ 75062306a36Sopenharmony_ci ISR_RX_PKT_1 |\ 75162306a36Sopenharmony_ci ISR_RX_PKT_2 |\ 75262306a36Sopenharmony_ci ISR_RX_PKT_3) 75362306a36Sopenharmony_ci 75462306a36Sopenharmony_ci#define ISR_OVER (\ 75562306a36Sopenharmony_ci ISR_RFD0_UR |\ 75662306a36Sopenharmony_ci ISR_RFD1_UR |\ 75762306a36Sopenharmony_ci ISR_RFD2_UR |\ 75862306a36Sopenharmony_ci ISR_RFD3_UR |\ 75962306a36Sopenharmony_ci ISR_HW_RXF_OV |\ 76062306a36Sopenharmony_ci ISR_TXF_UR) 76162306a36Sopenharmony_ci 76262306a36Sopenharmony_ci#define ISR_ERROR (\ 76362306a36Sopenharmony_ci ISR_DMAR_TO_RST |\ 76462306a36Sopenharmony_ci ISR_TXQ_TO_RST |\ 76562306a36Sopenharmony_ci ISR_DMAW_TO_RST |\ 76662306a36Sopenharmony_ci ISR_PHY_LINKDOWN) 76762306a36Sopenharmony_ci 76862306a36Sopenharmony_ci#define REG_INT_RETRIG_TIMER 0x1608 76962306a36Sopenharmony_ci#define INT_RETRIG_TIMER_MASK 0xFFFF 77062306a36Sopenharmony_ci 77162306a36Sopenharmony_ci#define REG_MAC_RX_STATUS_BIN 0x1700 77262306a36Sopenharmony_ci#define REG_MAC_RX_STATUS_END 0x175c 77362306a36Sopenharmony_ci#define REG_MAC_TX_STATUS_BIN 0x1760 77462306a36Sopenharmony_ci#define REG_MAC_TX_STATUS_END 0x17c0 77562306a36Sopenharmony_ci 77662306a36Sopenharmony_ci#define REG_CLK_GATING_CTRL 0x1814 77762306a36Sopenharmony_ci#define CLK_GATING_DMAW_EN 0x0001 77862306a36Sopenharmony_ci#define CLK_GATING_DMAR_EN 0x0002 77962306a36Sopenharmony_ci#define CLK_GATING_TXQ_EN 0x0004 78062306a36Sopenharmony_ci#define CLK_GATING_RXQ_EN 0x0008 78162306a36Sopenharmony_ci#define CLK_GATING_TXMAC_EN 0x0010 78262306a36Sopenharmony_ci#define CLK_GATING_RXMAC_EN 0x0020 78362306a36Sopenharmony_ci 78462306a36Sopenharmony_ci#define CLK_GATING_EN_ALL (CLK_GATING_DMAW_EN |\ 78562306a36Sopenharmony_ci CLK_GATING_DMAR_EN |\ 78662306a36Sopenharmony_ci CLK_GATING_TXQ_EN |\ 78762306a36Sopenharmony_ci CLK_GATING_RXQ_EN |\ 78862306a36Sopenharmony_ci CLK_GATING_TXMAC_EN|\ 78962306a36Sopenharmony_ci CLK_GATING_RXMAC_EN) 79062306a36Sopenharmony_ci 79162306a36Sopenharmony_ci/* DEBUG ADDR */ 79262306a36Sopenharmony_ci#define REG_DEBUG_DATA0 0x1900 79362306a36Sopenharmony_ci#define REG_DEBUG_DATA1 0x1904 79462306a36Sopenharmony_ci 79562306a36Sopenharmony_ci#define REG_MT_MAGIC 0x1F00 79662306a36Sopenharmony_ci#define REG_MT_MODE 0x1F04 79762306a36Sopenharmony_ci#define REG_MT_SPEED 0x1F08 79862306a36Sopenharmony_ci#define REG_MT_VERSION 0x1F0C 79962306a36Sopenharmony_ci 80062306a36Sopenharmony_ci#define MT_MAGIC 0xaabb1234 80162306a36Sopenharmony_ci#define MT_MODE_4Q BIT(0) 80262306a36Sopenharmony_ci 80362306a36Sopenharmony_ci#define L1D_MPW_PHYID1 0xD01C /* V7 */ 80462306a36Sopenharmony_ci#define L1D_MPW_PHYID2 0xD01D /* V1-V6 */ 80562306a36Sopenharmony_ci#define L1D_MPW_PHYID3 0xD01E /* V8 */ 80662306a36Sopenharmony_ci 80762306a36Sopenharmony_ci 80862306a36Sopenharmony_ci/* Autoneg Advertisement Register */ 80962306a36Sopenharmony_ci#define ADVERTISE_DEFAULT_CAP \ 81062306a36Sopenharmony_ci (ADVERTISE_ALL | ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM) 81162306a36Sopenharmony_ci 81262306a36Sopenharmony_ci/* 1000BASE-T Control Register */ 81362306a36Sopenharmony_ci#define GIGA_CR_1000T_REPEATER_DTE 0x0400 /* 1=Repeater/switch device port 0=DTE device */ 81462306a36Sopenharmony_ci 81562306a36Sopenharmony_ci#define GIGA_CR_1000T_MS_VALUE 0x0800 /* 1=Configure PHY as Master 0=Configure PHY as Slave */ 81662306a36Sopenharmony_ci#define GIGA_CR_1000T_MS_ENABLE 0x1000 /* 1=Master/Slave manual config value 0=Automatic Master/Slave config */ 81762306a36Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_NORMAL 0x0000 /* Normal Operation */ 81862306a36Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_1 0x2000 /* Transmit Waveform test */ 81962306a36Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_2 0x4000 /* Master Transmit Jitter test */ 82062306a36Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_3 0x6000 /* Slave Transmit Jitter test */ 82162306a36Sopenharmony_ci#define GIGA_CR_1000T_TEST_MODE_4 0x8000 /* Transmitter Distortion test */ 82262306a36Sopenharmony_ci#define GIGA_CR_1000T_SPEED_MASK 0x0300 82362306a36Sopenharmony_ci#define GIGA_CR_1000T_DEFAULT_CAP 0x0300 82462306a36Sopenharmony_ci 82562306a36Sopenharmony_ci/* PHY Specific Status Register */ 82662306a36Sopenharmony_ci#define MII_GIGA_PSSR 0x11 82762306a36Sopenharmony_ci#define GIGA_PSSR_SPD_DPLX_RESOLVED 0x0800 /* 1=Speed & Duplex resolved */ 82862306a36Sopenharmony_ci#define GIGA_PSSR_DPLX 0x2000 /* 1=Duplex 0=Half Duplex */ 82962306a36Sopenharmony_ci#define GIGA_PSSR_SPEED 0xC000 /* Speed, bits 14:15 */ 83062306a36Sopenharmony_ci#define GIGA_PSSR_10MBS 0x0000 /* 00=10Mbs */ 83162306a36Sopenharmony_ci#define GIGA_PSSR_100MBS 0x4000 /* 01=100Mbs */ 83262306a36Sopenharmony_ci#define GIGA_PSSR_1000MBS 0x8000 /* 10=1000Mbs */ 83362306a36Sopenharmony_ci 83462306a36Sopenharmony_ci/* PHY Interrupt Enable Register */ 83562306a36Sopenharmony_ci#define MII_IER 0x12 83662306a36Sopenharmony_ci#define IER_LINK_UP 0x0400 83762306a36Sopenharmony_ci#define IER_LINK_DOWN 0x0800 83862306a36Sopenharmony_ci 83962306a36Sopenharmony_ci/* PHY Interrupt Status Register */ 84062306a36Sopenharmony_ci#define MII_ISR 0x13 84162306a36Sopenharmony_ci#define ISR_LINK_UP 0x0400 84262306a36Sopenharmony_ci#define ISR_LINK_DOWN 0x0800 84362306a36Sopenharmony_ci 84462306a36Sopenharmony_ci/* Cable-Detect-Test Control Register */ 84562306a36Sopenharmony_ci#define MII_CDTC 0x16 84662306a36Sopenharmony_ci#define CDTC_EN_OFF 0 /* sc */ 84762306a36Sopenharmony_ci#define CDTC_EN_BITS 1 84862306a36Sopenharmony_ci#define CDTC_PAIR_OFF 8 84962306a36Sopenharmony_ci#define CDTC_PAIR_BIT 2 85062306a36Sopenharmony_ci 85162306a36Sopenharmony_ci/* Cable-Detect-Test Status Register */ 85262306a36Sopenharmony_ci#define MII_CDTS 0x1C 85362306a36Sopenharmony_ci#define CDTS_STATUS_OFF 8 85462306a36Sopenharmony_ci#define CDTS_STATUS_BITS 2 85562306a36Sopenharmony_ci#define CDTS_STATUS_NORMAL 0 85662306a36Sopenharmony_ci#define CDTS_STATUS_SHORT 1 85762306a36Sopenharmony_ci#define CDTS_STATUS_OPEN 2 85862306a36Sopenharmony_ci#define CDTS_STATUS_INVALID 3 85962306a36Sopenharmony_ci 86062306a36Sopenharmony_ci#define MII_DBG_ADDR 0x1D 86162306a36Sopenharmony_ci#define MII_DBG_DATA 0x1E 86262306a36Sopenharmony_ci 86362306a36Sopenharmony_ci/***************************** debug port *************************************/ 86462306a36Sopenharmony_ci 86562306a36Sopenharmony_ci#define MIIDBG_ANACTRL 0x00 86662306a36Sopenharmony_ci#define ANACTRL_CLK125M_DELAY_EN 0x8000 86762306a36Sopenharmony_ci#define ANACTRL_VCO_FAST 0x4000 86862306a36Sopenharmony_ci#define ANACTRL_VCO_SLOW 0x2000 86962306a36Sopenharmony_ci#define ANACTRL_AFE_MODE_EN 0x1000 87062306a36Sopenharmony_ci#define ANACTRL_LCKDET_PHY 0x800 87162306a36Sopenharmony_ci#define ANACTRL_LCKDET_EN 0x400 87262306a36Sopenharmony_ci#define ANACTRL_OEN_125M 0x200 87362306a36Sopenharmony_ci#define ANACTRL_HBIAS_EN 0x100 87462306a36Sopenharmony_ci#define ANACTRL_HB_EN 0x80 87562306a36Sopenharmony_ci#define ANACTRL_SEL_HSP 0x40 87662306a36Sopenharmony_ci#define ANACTRL_CLASSA_EN 0x20 87762306a36Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_MASK 3U 87862306a36Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_SHIFT 2 87962306a36Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_2V 0 88062306a36Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_1P9V 1 88162306a36Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_1P8V 2 88262306a36Sopenharmony_ci#define ANACTRL_MANUSWON_SWR_1P7V 3 88362306a36Sopenharmony_ci#define ANACTRL_MANUSWON_BW3_4M 0x2 88462306a36Sopenharmony_ci#define ANACTRL_RESTART_CAL 0x1 88562306a36Sopenharmony_ci#define ANACTRL_DEF 0x02EF 88662306a36Sopenharmony_ci 88762306a36Sopenharmony_ci#define MIIDBG_SYSMODCTRL 0x04 88862306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PFMH_PHY 0x8000 88962306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIASGEN 0x4000 89062306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PFML_PHY 0x2000 89162306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_MASK 3U 89262306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_SHIFT 10 89362306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_40 3 89462306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_20 2 89562306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_PS_0 1 89662306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_10BT_100MV 0x40 /* 1:100mv, 0:200mv */ 89762306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_HLFAP_MASK 3U 89862306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_HLFAP_SHIFT 4 89962306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDFULBW 0x8 90062306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDBIASHLF 0x4 90162306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDAMPHLF 0x2 90262306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VDLANSW 0x1 90362306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_DEF 0x88BB /* ???? */ 90462306a36Sopenharmony_ci 90562306a36Sopenharmony_ci/* for l1d & l2cb */ 90662306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_CUR_ADD 0x8000 90762306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_CUR_MASK 7U 90862306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_CUR_SHIFT 12 90962306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_MASK 0xFU 91062306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_SHIFT 8 91162306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_17ALL 3 91262306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_100M15 1 91362306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_VOL_10M17 0 91462306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS1_MASK 0xFU 91562306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS1_SHIFT 4 91662306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS2_MASK 0xFU 91762306a36Sopenharmony_ci#define SYSMODCTRL_IECHOADJ_BIAS2_SHIFT 0 91862306a36Sopenharmony_ci#define L1D_SYSMODCTRL_IECHOADJ_DEF 0x4FBB 91962306a36Sopenharmony_ci 92062306a36Sopenharmony_ci#define MIIDBG_SRDSYSMOD 0x05 92162306a36Sopenharmony_ci#define SRDSYSMOD_LCKDET_EN 0x2000 92262306a36Sopenharmony_ci#define SRDSYSMOD_PLL_EN 0x800 92362306a36Sopenharmony_ci#define SRDSYSMOD_SEL_HSP 0x400 92462306a36Sopenharmony_ci#define SRDSYSMOD_HLFTXDR 0x200 92562306a36Sopenharmony_ci#define SRDSYSMOD_TXCLK_DELAY_EN 0x100 92662306a36Sopenharmony_ci#define SRDSYSMOD_TXELECIDLE 0x80 92762306a36Sopenharmony_ci#define SRDSYSMOD_DEEMP_EN 0x40 92862306a36Sopenharmony_ci#define SRDSYSMOD_MS_PAD 0x4 92962306a36Sopenharmony_ci#define SRDSYSMOD_CDR_ADC_VLTG 0x2 93062306a36Sopenharmony_ci#define SRDSYSMOD_CDR_DAC_1MA 0x1 93162306a36Sopenharmony_ci#define SRDSYSMOD_DEF 0x2C46 93262306a36Sopenharmony_ci 93362306a36Sopenharmony_ci#define MIIDBG_CFGLPSPD 0x0A 93462306a36Sopenharmony_ci#define CFGLPSPD_RSTCNT_MASK 3U 93562306a36Sopenharmony_ci#define CFGLPSPD_RSTCNT_SHIFT 14 93662306a36Sopenharmony_ci#define CFGLPSPD_RSTCNT_CLK125SW 0x2000 93762306a36Sopenharmony_ci 93862306a36Sopenharmony_ci#define MIIDBG_HIBNEG 0x0B 93962306a36Sopenharmony_ci#define HIBNEG_PSHIB_EN 0x8000 94062306a36Sopenharmony_ci#define HIBNEG_WAKE_BOTH 0x4000 94162306a36Sopenharmony_ci#define HIBNEG_ONOFF_ANACHG_SUDEN 0x2000 94262306a36Sopenharmony_ci#define HIBNEG_HIB_PULSE 0x1000 94362306a36Sopenharmony_ci#define HIBNEG_GATE_25M_EN 0x800 94462306a36Sopenharmony_ci#define HIBNEG_RST_80U 0x400 94562306a36Sopenharmony_ci#define HIBNEG_RST_TIMER_MASK 3U 94662306a36Sopenharmony_ci#define HIBNEG_RST_TIMER_SHIFT 8 94762306a36Sopenharmony_ci#define HIBNEG_GTX_CLK_DELAY_MASK 3U 94862306a36Sopenharmony_ci#define HIBNEG_GTX_CLK_DELAY_SHIFT 5 94962306a36Sopenharmony_ci#define HIBNEG_BYPSS_BRKTIMER 0x10 95062306a36Sopenharmony_ci#define HIBNEG_DEF 0xBC40 95162306a36Sopenharmony_ci 95262306a36Sopenharmony_ci#define MIIDBG_TST10BTCFG 0x12 95362306a36Sopenharmony_ci#define TST10BTCFG_INTV_TIMER_MASK 3U 95462306a36Sopenharmony_ci#define TST10BTCFG_INTV_TIMER_SHIFT 14 95562306a36Sopenharmony_ci#define TST10BTCFG_TRIGER_TIMER_MASK 3U 95662306a36Sopenharmony_ci#define TST10BTCFG_TRIGER_TIMER_SHIFT 12 95762306a36Sopenharmony_ci#define TST10BTCFG_DIV_MAN_MLT3_EN 0x800 95862306a36Sopenharmony_ci#define TST10BTCFG_OFF_DAC_IDLE 0x400 95962306a36Sopenharmony_ci#define TST10BTCFG_LPBK_DEEP 0x4 /* 1:deep,0:shallow */ 96062306a36Sopenharmony_ci#define TST10BTCFG_DEF 0x4C04 96162306a36Sopenharmony_ci 96262306a36Sopenharmony_ci#define MIIDBG_AZ_ANADECT 0x15 96362306a36Sopenharmony_ci#define AZ_ANADECT_10BTRX_TH 0x8000 96462306a36Sopenharmony_ci#define AZ_ANADECT_BOTH_01CHNL 0x4000 96562306a36Sopenharmony_ci#define AZ_ANADECT_INTV_MASK 0x3FU 96662306a36Sopenharmony_ci#define AZ_ANADECT_INTV_SHIFT 8 96762306a36Sopenharmony_ci#define AZ_ANADECT_THRESH_MASK 0xFU 96862306a36Sopenharmony_ci#define AZ_ANADECT_THRESH_SHIFT 4 96962306a36Sopenharmony_ci#define AZ_ANADECT_CHNL_MASK 0xFU 97062306a36Sopenharmony_ci#define AZ_ANADECT_CHNL_SHIFT 0 97162306a36Sopenharmony_ci#define AZ_ANADECT_DEF 0x3220 97262306a36Sopenharmony_ci#define AZ_ANADECT_LONG 0xb210 97362306a36Sopenharmony_ci 97462306a36Sopenharmony_ci#define MIIDBG_MSE16DB 0x18 /* l1d */ 97562306a36Sopenharmony_ci#define L1D_MSE16DB_UP 0x05EA 97662306a36Sopenharmony_ci#define L1D_MSE16DB_DOWN 0x02EA 97762306a36Sopenharmony_ci 97862306a36Sopenharmony_ci#define MIIDBG_LEGCYPS 0x29 97962306a36Sopenharmony_ci#define LEGCYPS_EN 0x8000 98062306a36Sopenharmony_ci#define LEGCYPS_DAC_AMP1000_MASK 7U 98162306a36Sopenharmony_ci#define LEGCYPS_DAC_AMP1000_SHIFT 12 98262306a36Sopenharmony_ci#define LEGCYPS_DAC_AMP100_MASK 7U 98362306a36Sopenharmony_ci#define LEGCYPS_DAC_AMP100_SHIFT 9 98462306a36Sopenharmony_ci#define LEGCYPS_DAC_AMP10_MASK 7U 98562306a36Sopenharmony_ci#define LEGCYPS_DAC_AMP10_SHIFT 6 98662306a36Sopenharmony_ci#define LEGCYPS_UNPLUG_TIMER_MASK 7U 98762306a36Sopenharmony_ci#define LEGCYPS_UNPLUG_TIMER_SHIFT 3 98862306a36Sopenharmony_ci#define LEGCYPS_UNPLUG_DECT_EN 0x4 98962306a36Sopenharmony_ci#define LEGCYPS_ECNC_PS_EN 0x1 99062306a36Sopenharmony_ci#define L1D_LEGCYPS_DEF 0x129D 99162306a36Sopenharmony_ci#define L1C_LEGCYPS_DEF 0x36DD 99262306a36Sopenharmony_ci 99362306a36Sopenharmony_ci#define MIIDBG_TST100BTCFG 0x36 99462306a36Sopenharmony_ci#define TST100BTCFG_NORMAL_BW_EN 0x8000 99562306a36Sopenharmony_ci#define TST100BTCFG_BADLNK_BYPASS 0x4000 99662306a36Sopenharmony_ci#define TST100BTCFG_SHORTCABL_TH_MASK 0x3FU 99762306a36Sopenharmony_ci#define TST100BTCFG_SHORTCABL_TH_SHIFT 8 99862306a36Sopenharmony_ci#define TST100BTCFG_LITCH_EN 0x80 99962306a36Sopenharmony_ci#define TST100BTCFG_VLT_SW 0x40 100062306a36Sopenharmony_ci#define TST100BTCFG_LONGCABL_TH_MASK 0x3FU 100162306a36Sopenharmony_ci#define TST100BTCFG_LONGCABL_TH_SHIFT 0 100262306a36Sopenharmony_ci#define TST100BTCFG_DEF 0xE12C 100362306a36Sopenharmony_ci 100462306a36Sopenharmony_ci#define MIIDBG_VOLT_CTRL 0x3B /* only for l2cb 1 & 2 */ 100562306a36Sopenharmony_ci#define VOLT_CTRL_CABLE1TH_MASK 0x1FFU 100662306a36Sopenharmony_ci#define VOLT_CTRL_CABLE1TH_SHIFT 7 100762306a36Sopenharmony_ci#define VOLT_CTRL_AMPCTRL_MASK 3U 100862306a36Sopenharmony_ci#define VOLT_CTRL_AMPCTRL_SHIFT 5 100962306a36Sopenharmony_ci#define VOLT_CTRL_SW_BYPASS 0x10 101062306a36Sopenharmony_ci#define VOLT_CTRL_SWLOWEST 0x8 101162306a36Sopenharmony_ci#define VOLT_CTRL_DACAMP10_MASK 7U 101262306a36Sopenharmony_ci#define VOLT_CTRL_DACAMP10_SHIFT 0 101362306a36Sopenharmony_ci 101462306a36Sopenharmony_ci#define MIIDBG_CABLE1TH_DET 0x3E 101562306a36Sopenharmony_ci#define CABLE1TH_DET_EN 0x8000 101662306a36Sopenharmony_ci 101762306a36Sopenharmony_ci 101862306a36Sopenharmony_ci/******* dev 3 *********/ 101962306a36Sopenharmony_ci#define MIIEXT_PCS 3 102062306a36Sopenharmony_ci 102162306a36Sopenharmony_ci#define MIIEXT_CLDCTRL3 0x8003 102262306a36Sopenharmony_ci#define CLDCTRL3_BP_CABLE1TH_DET_GT 0x8000 102362306a36Sopenharmony_ci#define CLDCTRL3_AZ_DISAMP 0x1000 102462306a36Sopenharmony_ci#define L2CB_CLDCTRL3 0x4D19 102562306a36Sopenharmony_ci#define L1D_CLDCTRL3 0xDD19 102662306a36Sopenharmony_ci 102762306a36Sopenharmony_ci#define MIIEXT_CLDCTRL6 0x8006 102862306a36Sopenharmony_ci#define CLDCTRL6_CAB_LEN_MASK 0x1FFU 102962306a36Sopenharmony_ci#define CLDCTRL6_CAB_LEN_SHIFT 0 103062306a36Sopenharmony_ci#define CLDCTRL6_CAB_LEN_SHORT 0x50 103162306a36Sopenharmony_ci 103262306a36Sopenharmony_ci/********* dev 7 **********/ 103362306a36Sopenharmony_ci#define MIIEXT_ANEG 7 103462306a36Sopenharmony_ci 103562306a36Sopenharmony_ci#define MIIEXT_LOCAL_EEEADV 0x3C 103662306a36Sopenharmony_ci#define LOCAL_EEEADV_1000BT 0x4 103762306a36Sopenharmony_ci#define LOCAL_EEEADV_100BT 0x2 103862306a36Sopenharmony_ci 103962306a36Sopenharmony_ci#define MIIEXT_REMOTE_EEEADV 0x3D 104062306a36Sopenharmony_ci#define REMOTE_EEEADV_1000BT 0x4 104162306a36Sopenharmony_ci#define REMOTE_EEEADV_100BT 0x2 104262306a36Sopenharmony_ci 104362306a36Sopenharmony_ci#define MIIEXT_EEE_ANEG 0x8000 104462306a36Sopenharmony_ci#define EEE_ANEG_1000M 0x4 104562306a36Sopenharmony_ci#define EEE_ANEG_100M 0x2 104662306a36Sopenharmony_ci 104762306a36Sopenharmony_ci#endif /*_ATL1C_HW_H_*/ 1048