18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Definitions for the new Marvell Yukon 2 driver. 48c2ecf20Sopenharmony_ci */ 58c2ecf20Sopenharmony_ci#ifndef _SKY2_H 68c2ecf20Sopenharmony_ci#define _SKY2_H 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci#define ETH_JUMBO_MTU 9000 /* Maximum MTU supported */ 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci/* PCI config registers */ 118c2ecf20Sopenharmony_cienum { 128c2ecf20Sopenharmony_ci PCI_DEV_REG1 = 0x40, 138c2ecf20Sopenharmony_ci PCI_DEV_REG2 = 0x44, 148c2ecf20Sopenharmony_ci PCI_DEV_STATUS = 0x7c, 158c2ecf20Sopenharmony_ci PCI_DEV_REG3 = 0x80, 168c2ecf20Sopenharmony_ci PCI_DEV_REG4 = 0x84, 178c2ecf20Sopenharmony_ci PCI_DEV_REG5 = 0x88, 188c2ecf20Sopenharmony_ci PCI_CFG_REG_0 = 0x90, 198c2ecf20Sopenharmony_ci PCI_CFG_REG_1 = 0x94, 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ci PSM_CONFIG_REG0 = 0x98, 228c2ecf20Sopenharmony_ci PSM_CONFIG_REG1 = 0x9C, 238c2ecf20Sopenharmony_ci PSM_CONFIG_REG2 = 0x160, 248c2ecf20Sopenharmony_ci PSM_CONFIG_REG3 = 0x164, 258c2ecf20Sopenharmony_ci PSM_CONFIG_REG4 = 0x168, 268c2ecf20Sopenharmony_ci 278c2ecf20Sopenharmony_ci PCI_LDO_CTRL = 0xbc, 288c2ecf20Sopenharmony_ci}; 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_ci/* Yukon-2 */ 318c2ecf20Sopenharmony_cienum pci_dev_reg_1 { 328c2ecf20Sopenharmony_ci PCI_Y2_PIG_ENA = 1<<31, /* Enable Plug-in-Go (YUKON-2) */ 338c2ecf20Sopenharmony_ci PCI_Y2_DLL_DIS = 1<<30, /* Disable PCI DLL (YUKON-2) */ 348c2ecf20Sopenharmony_ci PCI_SW_PWR_ON_RST= 1<<30, /* SW Power on Reset (Yukon-EX) */ 358c2ecf20Sopenharmony_ci PCI_Y2_PHY2_COMA = 1<<29, /* Set PHY 2 to Coma Mode (YUKON-2) */ 368c2ecf20Sopenharmony_ci PCI_Y2_PHY1_COMA = 1<<28, /* Set PHY 1 to Coma Mode (YUKON-2) */ 378c2ecf20Sopenharmony_ci PCI_Y2_PHY2_POWD = 1<<27, /* Set PHY 2 to Power Down (YUKON-2) */ 388c2ecf20Sopenharmony_ci PCI_Y2_PHY1_POWD = 1<<26, /* Set PHY 1 to Power Down (YUKON-2) */ 398c2ecf20Sopenharmony_ci PCI_Y2_PME_LEGACY= 1<<15, /* PCI Express legacy power management mode */ 408c2ecf20Sopenharmony_ci 418c2ecf20Sopenharmony_ci PCI_PHY_LNK_TIM_MSK= 3L<<8,/* Bit 9.. 8: GPHY Link Trigger Timer */ 428c2ecf20Sopenharmony_ci PCI_ENA_L1_EVENT = 1<<7, /* Enable PEX L1 Event */ 438c2ecf20Sopenharmony_ci PCI_ENA_GPHY_LNK = 1<<6, /* Enable PEX L1 on GPHY Link down */ 448c2ecf20Sopenharmony_ci PCI_FORCE_PEX_L1 = 1<<5, /* Force to PEX L1 */ 458c2ecf20Sopenharmony_ci}; 468c2ecf20Sopenharmony_ci 478c2ecf20Sopenharmony_cienum pci_dev_reg_2 { 488c2ecf20Sopenharmony_ci PCI_VPD_WR_THR = 0xffL<<24, /* Bit 31..24: VPD Write Threshold */ 498c2ecf20Sopenharmony_ci PCI_DEV_SEL = 0x7fL<<17, /* Bit 23..17: EEPROM Device Select */ 508c2ecf20Sopenharmony_ci PCI_VPD_ROM_SZ = 7L<<14, /* Bit 16..14: VPD ROM Size */ 518c2ecf20Sopenharmony_ci 528c2ecf20Sopenharmony_ci PCI_PATCH_DIR = 0xfL<<8, /* Bit 11.. 8: Ext Patches dir 3..0 */ 538c2ecf20Sopenharmony_ci PCI_EXT_PATCHS = 0xfL<<4, /* Bit 7.. 4: Extended Patches 3..0 */ 548c2ecf20Sopenharmony_ci PCI_EN_DUMMY_RD = 1<<3, /* Enable Dummy Read */ 558c2ecf20Sopenharmony_ci PCI_REV_DESC = 1<<2, /* Reverse Desc. Bytes */ 568c2ecf20Sopenharmony_ci 578c2ecf20Sopenharmony_ci PCI_USEDATA64 = 1<<0, /* Use 64Bit Data bus ext */ 588c2ecf20Sopenharmony_ci}; 598c2ecf20Sopenharmony_ci 608c2ecf20Sopenharmony_ci/* PCI_OUR_REG_3 32 bit Our Register 3 (Yukon-ECU only) */ 618c2ecf20Sopenharmony_cienum pci_dev_reg_3 { 628c2ecf20Sopenharmony_ci P_CLK_ASF_REGS_DIS = 1<<18,/* Disable Clock ASF (Yukon-Ext.) */ 638c2ecf20Sopenharmony_ci P_CLK_COR_REGS_D0_DIS = 1<<17,/* Disable Clock Core Regs D0 */ 648c2ecf20Sopenharmony_ci P_CLK_MACSEC_DIS = 1<<17,/* Disable Clock MACSec (Yukon-Ext.) */ 658c2ecf20Sopenharmony_ci P_CLK_PCI_REGS_D0_DIS = 1<<16,/* Disable Clock PCI Regs D0 */ 668c2ecf20Sopenharmony_ci P_CLK_COR_YTB_ARB_DIS = 1<<15,/* Disable Clock YTB Arbiter */ 678c2ecf20Sopenharmony_ci P_CLK_MAC_LNK1_D3_DIS = 1<<14,/* Disable Clock MAC Link1 D3 */ 688c2ecf20Sopenharmony_ci P_CLK_COR_LNK1_D0_DIS = 1<<13,/* Disable Clock Core Link1 D0 */ 698c2ecf20Sopenharmony_ci P_CLK_MAC_LNK1_D0_DIS = 1<<12,/* Disable Clock MAC Link1 D0 */ 708c2ecf20Sopenharmony_ci P_CLK_COR_LNK1_D3_DIS = 1<<11,/* Disable Clock Core Link1 D3 */ 718c2ecf20Sopenharmony_ci P_CLK_PCI_MST_ARB_DIS = 1<<10,/* Disable Clock PCI Master Arb. */ 728c2ecf20Sopenharmony_ci P_CLK_COR_REGS_D3_DIS = 1<<9, /* Disable Clock Core Regs D3 */ 738c2ecf20Sopenharmony_ci P_CLK_PCI_REGS_D3_DIS = 1<<8, /* Disable Clock PCI Regs D3 */ 748c2ecf20Sopenharmony_ci P_CLK_REF_LNK1_GM_DIS = 1<<7, /* Disable Clock Ref. Link1 GMAC */ 758c2ecf20Sopenharmony_ci P_CLK_COR_LNK1_GM_DIS = 1<<6, /* Disable Clock Core Link1 GMAC */ 768c2ecf20Sopenharmony_ci P_CLK_PCI_COMMON_DIS = 1<<5, /* Disable Clock PCI Common */ 778c2ecf20Sopenharmony_ci P_CLK_COR_COMMON_DIS = 1<<4, /* Disable Clock Core Common */ 788c2ecf20Sopenharmony_ci P_CLK_PCI_LNK1_BMU_DIS = 1<<3, /* Disable Clock PCI Link1 BMU */ 798c2ecf20Sopenharmony_ci P_CLK_COR_LNK1_BMU_DIS = 1<<2, /* Disable Clock Core Link1 BMU */ 808c2ecf20Sopenharmony_ci P_CLK_PCI_LNK1_BIU_DIS = 1<<1, /* Disable Clock PCI Link1 BIU */ 818c2ecf20Sopenharmony_ci P_CLK_COR_LNK1_BIU_DIS = 1<<0, /* Disable Clock Core Link1 BIU */ 828c2ecf20Sopenharmony_ci PCIE_OUR3_WOL_D3_COLD_SET = P_CLK_ASF_REGS_DIS | 838c2ecf20Sopenharmony_ci P_CLK_COR_REGS_D0_DIS | 848c2ecf20Sopenharmony_ci P_CLK_COR_LNK1_D0_DIS | 858c2ecf20Sopenharmony_ci P_CLK_MAC_LNK1_D0_DIS | 868c2ecf20Sopenharmony_ci P_CLK_PCI_MST_ARB_DIS | 878c2ecf20Sopenharmony_ci P_CLK_COR_COMMON_DIS | 888c2ecf20Sopenharmony_ci P_CLK_COR_LNK1_BMU_DIS, 898c2ecf20Sopenharmony_ci}; 908c2ecf20Sopenharmony_ci 918c2ecf20Sopenharmony_ci/* PCI_OUR_REG_4 32 bit Our Register 4 (Yukon-ECU only) */ 928c2ecf20Sopenharmony_cienum pci_dev_reg_4 { 938c2ecf20Sopenharmony_ci /* (Link Training & Status State Machine) */ 948c2ecf20Sopenharmony_ci P_PEX_LTSSM_STAT_MSK = 0x7fL<<25, /* Bit 31..25: PEX LTSSM Mask */ 958c2ecf20Sopenharmony_ci#define P_PEX_LTSSM_STAT(x) ((x << 25) & P_PEX_LTSSM_STAT_MSK) 968c2ecf20Sopenharmony_ci P_PEX_LTSSM_L1_STAT = 0x34, 978c2ecf20Sopenharmony_ci P_PEX_LTSSM_DET_STAT = 0x01, 988c2ecf20Sopenharmony_ci P_TIMER_VALUE_MSK = 0xffL<<16, /* Bit 23..16: Timer Value Mask */ 998c2ecf20Sopenharmony_ci /* (Active State Power Management) */ 1008c2ecf20Sopenharmony_ci P_FORCE_ASPM_REQUEST = 1<<15, /* Force ASPM Request (A1 only) */ 1018c2ecf20Sopenharmony_ci P_ASPM_GPHY_LINK_DOWN = 1<<14, /* GPHY Link Down (A1 only) */ 1028c2ecf20Sopenharmony_ci P_ASPM_INT_FIFO_EMPTY = 1<<13, /* Internal FIFO Empty (A1 only) */ 1038c2ecf20Sopenharmony_ci P_ASPM_CLKRUN_REQUEST = 1<<12, /* CLKRUN Request (A1 only) */ 1048c2ecf20Sopenharmony_ci 1058c2ecf20Sopenharmony_ci P_ASPM_FORCE_CLKREQ_ENA = 1<<4, /* Force CLKREQ Enable (A1b only) */ 1068c2ecf20Sopenharmony_ci P_ASPM_CLKREQ_PAD_CTL = 1<<3, /* CLKREQ PAD Control (A1 only) */ 1078c2ecf20Sopenharmony_ci P_ASPM_A1_MODE_SELECT = 1<<2, /* A1 Mode Select (A1 only) */ 1088c2ecf20Sopenharmony_ci P_CLK_GATE_PEX_UNIT_ENA = 1<<1, /* Enable Gate PEX Unit Clock */ 1098c2ecf20Sopenharmony_ci P_CLK_GATE_ROOT_COR_ENA = 1<<0, /* Enable Gate Root Core Clock */ 1108c2ecf20Sopenharmony_ci P_ASPM_CONTROL_MSK = P_FORCE_ASPM_REQUEST | P_ASPM_GPHY_LINK_DOWN 1118c2ecf20Sopenharmony_ci | P_ASPM_CLKRUN_REQUEST | P_ASPM_INT_FIFO_EMPTY, 1128c2ecf20Sopenharmony_ci}; 1138c2ecf20Sopenharmony_ci 1148c2ecf20Sopenharmony_ci/* PCI_OUR_REG_5 32 bit Our Register 5 (Yukon-ECU only) */ 1158c2ecf20Sopenharmony_cienum pci_dev_reg_5 { 1168c2ecf20Sopenharmony_ci /* Bit 31..27: for A3 & later */ 1178c2ecf20Sopenharmony_ci P_CTL_DIV_CORE_CLK_ENA = 1<<31, /* Divide Core Clock Enable */ 1188c2ecf20Sopenharmony_ci P_CTL_SRESET_VMAIN_AV = 1<<30, /* Soft Reset for Vmain_av De-Glitch */ 1198c2ecf20Sopenharmony_ci P_CTL_BYPASS_VMAIN_AV = 1<<29, /* Bypass En. for Vmain_av De-Glitch */ 1208c2ecf20Sopenharmony_ci P_CTL_TIM_VMAIN_AV_MSK = 3<<27, /* Bit 28..27: Timer Vmain_av Mask */ 1218c2ecf20Sopenharmony_ci /* Bit 26..16: Release Clock on Event */ 1228c2ecf20Sopenharmony_ci P_REL_PCIE_RST_DE_ASS = 1<<26, /* PCIe Reset De-Asserted */ 1238c2ecf20Sopenharmony_ci P_REL_GPHY_REC_PACKET = 1<<25, /* GPHY Received Packet */ 1248c2ecf20Sopenharmony_ci P_REL_INT_FIFO_N_EMPTY = 1<<24, /* Internal FIFO Not Empty */ 1258c2ecf20Sopenharmony_ci P_REL_MAIN_PWR_AVAIL = 1<<23, /* Main Power Available */ 1268c2ecf20Sopenharmony_ci P_REL_CLKRUN_REQ_REL = 1<<22, /* CLKRUN Request Release */ 1278c2ecf20Sopenharmony_ci P_REL_PCIE_RESET_ASS = 1<<21, /* PCIe Reset Asserted */ 1288c2ecf20Sopenharmony_ci P_REL_PME_ASSERTED = 1<<20, /* PME Asserted */ 1298c2ecf20Sopenharmony_ci P_REL_PCIE_EXIT_L1_ST = 1<<19, /* PCIe Exit L1 State */ 1308c2ecf20Sopenharmony_ci P_REL_LOADER_NOT_FIN = 1<<18, /* EPROM Loader Not Finished */ 1318c2ecf20Sopenharmony_ci P_REL_PCIE_RX_EX_IDLE = 1<<17, /* PCIe Rx Exit Electrical Idle State */ 1328c2ecf20Sopenharmony_ci P_REL_GPHY_LINK_UP = 1<<16, /* GPHY Link Up */ 1338c2ecf20Sopenharmony_ci 1348c2ecf20Sopenharmony_ci /* Bit 10.. 0: Mask for Gate Clock */ 1358c2ecf20Sopenharmony_ci P_GAT_PCIE_RST_ASSERTED = 1<<10,/* PCIe Reset Asserted */ 1368c2ecf20Sopenharmony_ci P_GAT_GPHY_N_REC_PACKET = 1<<9, /* GPHY Not Received Packet */ 1378c2ecf20Sopenharmony_ci P_GAT_INT_FIFO_EMPTY = 1<<8, /* Internal FIFO Empty */ 1388c2ecf20Sopenharmony_ci P_GAT_MAIN_PWR_N_AVAIL = 1<<7, /* Main Power Not Available */ 1398c2ecf20Sopenharmony_ci P_GAT_CLKRUN_REQ_REL = 1<<6, /* CLKRUN Not Requested */ 1408c2ecf20Sopenharmony_ci P_GAT_PCIE_RESET_ASS = 1<<5, /* PCIe Reset Asserted */ 1418c2ecf20Sopenharmony_ci P_GAT_PME_DE_ASSERTED = 1<<4, /* PME De-Asserted */ 1428c2ecf20Sopenharmony_ci P_GAT_PCIE_ENTER_L1_ST = 1<<3, /* PCIe Enter L1 State */ 1438c2ecf20Sopenharmony_ci P_GAT_LOADER_FINISHED = 1<<2, /* EPROM Loader Finished */ 1448c2ecf20Sopenharmony_ci P_GAT_PCIE_RX_EL_IDLE = 1<<1, /* PCIe Rx Electrical Idle State */ 1458c2ecf20Sopenharmony_ci P_GAT_GPHY_LINK_DOWN = 1<<0, /* GPHY Link Down */ 1468c2ecf20Sopenharmony_ci 1478c2ecf20Sopenharmony_ci PCIE_OUR5_EVENT_CLK_D3_SET = P_REL_GPHY_REC_PACKET | 1488c2ecf20Sopenharmony_ci P_REL_INT_FIFO_N_EMPTY | 1498c2ecf20Sopenharmony_ci P_REL_PCIE_EXIT_L1_ST | 1508c2ecf20Sopenharmony_ci P_REL_PCIE_RX_EX_IDLE | 1518c2ecf20Sopenharmony_ci P_GAT_GPHY_N_REC_PACKET | 1528c2ecf20Sopenharmony_ci P_GAT_INT_FIFO_EMPTY | 1538c2ecf20Sopenharmony_ci P_GAT_PCIE_ENTER_L1_ST | 1548c2ecf20Sopenharmony_ci P_GAT_PCIE_RX_EL_IDLE, 1558c2ecf20Sopenharmony_ci}; 1568c2ecf20Sopenharmony_ci 1578c2ecf20Sopenharmony_ci/* PCI_CFG_REG_1 32 bit Config Register 1 (Yukon-Ext only) */ 1588c2ecf20Sopenharmony_cienum pci_cfg_reg1 { 1598c2ecf20Sopenharmony_ci P_CF1_DIS_REL_EVT_RST = 1<<24, /* Dis. Rel. Event during PCIE reset */ 1608c2ecf20Sopenharmony_ci /* Bit 23..21: Release Clock on Event */ 1618c2ecf20Sopenharmony_ci P_CF1_REL_LDR_NOT_FIN = 1<<23, /* EEPROM Loader Not Finished */ 1628c2ecf20Sopenharmony_ci P_CF1_REL_VMAIN_AVLBL = 1<<22, /* Vmain available */ 1638c2ecf20Sopenharmony_ci P_CF1_REL_PCIE_RESET = 1<<21, /* PCI-E reset */ 1648c2ecf20Sopenharmony_ci /* Bit 20..18: Gate Clock on Event */ 1658c2ecf20Sopenharmony_ci P_CF1_GAT_LDR_NOT_FIN = 1<<20, /* EEPROM Loader Finished */ 1668c2ecf20Sopenharmony_ci P_CF1_GAT_PCIE_RX_IDLE = 1<<19, /* PCI-E Rx Electrical idle */ 1678c2ecf20Sopenharmony_ci P_CF1_GAT_PCIE_RESET = 1<<18, /* PCI-E Reset */ 1688c2ecf20Sopenharmony_ci P_CF1_PRST_PHY_CLKREQ = 1<<17, /* Enable PCI-E rst & PM2PHY gen. CLKREQ */ 1698c2ecf20Sopenharmony_ci P_CF1_PCIE_RST_CLKREQ = 1<<16, /* Enable PCI-E rst generate CLKREQ */ 1708c2ecf20Sopenharmony_ci 1718c2ecf20Sopenharmony_ci P_CF1_ENA_CFG_LDR_DONE = 1<<8, /* Enable core level Config loader done */ 1728c2ecf20Sopenharmony_ci 1738c2ecf20Sopenharmony_ci P_CF1_ENA_TXBMU_RD_IDLE = 1<<1, /* Enable TX BMU Read IDLE for ASPM */ 1748c2ecf20Sopenharmony_ci P_CF1_ENA_TXBMU_WR_IDLE = 1<<0, /* Enable TX BMU Write IDLE for ASPM */ 1758c2ecf20Sopenharmony_ci 1768c2ecf20Sopenharmony_ci PCIE_CFG1_EVENT_CLK_D3_SET = P_CF1_DIS_REL_EVT_RST | 1778c2ecf20Sopenharmony_ci P_CF1_REL_LDR_NOT_FIN | 1788c2ecf20Sopenharmony_ci P_CF1_REL_VMAIN_AVLBL | 1798c2ecf20Sopenharmony_ci P_CF1_REL_PCIE_RESET | 1808c2ecf20Sopenharmony_ci P_CF1_GAT_LDR_NOT_FIN | 1818c2ecf20Sopenharmony_ci P_CF1_GAT_PCIE_RESET | 1828c2ecf20Sopenharmony_ci P_CF1_PRST_PHY_CLKREQ | 1838c2ecf20Sopenharmony_ci P_CF1_ENA_CFG_LDR_DONE | 1848c2ecf20Sopenharmony_ci P_CF1_ENA_TXBMU_RD_IDLE | 1858c2ecf20Sopenharmony_ci P_CF1_ENA_TXBMU_WR_IDLE, 1868c2ecf20Sopenharmony_ci}; 1878c2ecf20Sopenharmony_ci 1888c2ecf20Sopenharmony_ci/* Yukon-Optima */ 1898c2ecf20Sopenharmony_cienum { 1908c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_AC_PRESENT_STATUS = 1<<31, /* AC Present Status */ 1918c2ecf20Sopenharmony_ci 1928c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_PTP_CLK_SEL = 1<<29, /* PTP Clock Select */ 1938c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_PTP_MODE = 1<<28, /* PTP Mode */ 1948c2ecf20Sopenharmony_ci 1958c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_MUX_PHY_LINK = 1<<27, /* PHY Energy Detect Event */ 1968c2ecf20Sopenharmony_ci 1978c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_PIN63_AC_PRESENT = 1<<26, /* Enable LED_DUPLEX for ac_present */ 1988c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_PCIE_TIMER = 1<<25, /* Enable PCIe Timer */ 1998c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_SPU_TIMER = 1<<24, /* Enable SPU Timer */ 2008c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_POLARITY_AC_PRESENT = 1<<23, /* AC Present Polarity */ 2018c2ecf20Sopenharmony_ci 2028c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_AC_PRESENT = 1<<21, /* Enable AC Present */ 2038c2ecf20Sopenharmony_ci 2048c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_GPHY_INT_PSM = 1<<20, /* Enable GPHY INT for PSM */ 2058c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_DIS_PSM_TIMER = 1<<19, /* Disable PSM Timer */ 2068c2ecf20Sopenharmony_ci}; 2078c2ecf20Sopenharmony_ci 2088c2ecf20Sopenharmony_ci/* Yukon-Supreme */ 2098c2ecf20Sopenharmony_cienum { 2108c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_GPHY_ENERGY_STS = 1<<31, /* GPHY Energy Detect Status */ 2118c2ecf20Sopenharmony_ci 2128c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_UART_MODE_MSK = 3<<29, /* UART_Mode */ 2138c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_CLK_RUN_ASF = 1<<28, /* Enable Clock Free Running for ASF Subsystem */ 2148c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_UART_CLK_DISABLE= 1<<27, /* Disable UART clock */ 2158c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_VAUX_ONE = 1<<26, /* Tie internal Vaux to 1'b1 */ 2168c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_UART_FC_RI_VAL = 1<<25, /* Default value for UART_RI_n */ 2178c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_UART_FC_DCD_VAL = 1<<24, /* Default value for UART_DCD_n */ 2188c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_UART_FC_DSR_VAL = 1<<23, /* Default value for UART_DSR_n */ 2198c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_UART_FC_CTS_VAL = 1<<22, /* Default value for UART_CTS_n */ 2208c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_LATCH_VAUX = 1<<21, /* Enable Latch current Vaux_avlbl */ 2218c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_FORCE_TESTMODE_INPUT= 1<<20, /* Force Testmode pin as input PAD */ 2228c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_UART_RST = 1<<19, /* UART_RST */ 2238c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_PSM_PCIE_L1_POL = 1<<18, /* PCIE L1 Event Polarity for PSM */ 2248c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_TIMER_STAT = 1<<17, /* PSM Timer Status */ 2258c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_GPHY_INT = 1<<16, /* GPHY INT Status */ 2268c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_FORCE_TESTMODE_ZERO= 1<<15, /* Force internal Testmode as 1'b0 */ 2278c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_INT_ASPM_CLKREQ = 1<<14, /* ENABLE INT for CLKRUN on ASPM and CLKREQ */ 2288c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_SND_TASK_ASPM_CLKREQ = 1<<13, /* ENABLE Snd_task for CLKRUN on ASPM and CLKREQ */ 2298c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_DIS_CLK_GATE_SND_TASK = 1<<12, /* Disable CLK_GATE control snd_task */ 2308c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_DIS_FF_CHIAN_SND_INTA = 1<<11, /* Disable flip-flop chain for sndmsg_inta */ 2318c2ecf20Sopenharmony_ci 2328c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_DIS_LOADER = 1<<9, /* Disable Loader SM after PSM Goes back to IDLE */ 2338c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_DO_PWDN = 1<<8, /* Do Power Down, Start PSM Scheme */ 2348c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_DIS_PIG = 1<<7, /* Disable Plug-in-Go SM after PSM Goes back to IDLE */ 2358c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_DIS_PERST = 1<<6, /* Disable Internal PCIe Reset after PSM Goes back to IDLE */ 2368c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_REG18_PD = 1<<5, /* Enable REG18 Power Down for PSM */ 2378c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_PSM_LOAD = 1<<4, /* Disable EEPROM Loader after PSM Goes back to IDLE */ 2388c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_PSM_HOT_RST = 1<<3, /* Enable PCIe Hot Reset for PSM */ 2398c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_PSM_PERST = 1<<2, /* Enable PCIe Reset Event for PSM */ 2408c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_PSM_PCIE_L1 = 1<<1, /* Enable PCIe L1 Event for PSM */ 2418c2ecf20Sopenharmony_ci PSM_CONFIG_REG1_EN_PSM = 1<<0, /* Enable PSM Scheme */ 2428c2ecf20Sopenharmony_ci}; 2438c2ecf20Sopenharmony_ci 2448c2ecf20Sopenharmony_ci/* PSM_CONFIG_REG4 0x0168 PSM Config Register 4 */ 2458c2ecf20Sopenharmony_cienum { 2468c2ecf20Sopenharmony_ci /* PHY Link Detect Timer */ 2478c2ecf20Sopenharmony_ci PSM_CONFIG_REG4_TIMER_PHY_LINK_DETECT_MSK = 0xf<<4, 2488c2ecf20Sopenharmony_ci PSM_CONFIG_REG4_TIMER_PHY_LINK_DETECT_BASE = 4, 2498c2ecf20Sopenharmony_ci 2508c2ecf20Sopenharmony_ci PSM_CONFIG_REG4_DEBUG_TIMER = 1<<1, /* Debug Timer */ 2518c2ecf20Sopenharmony_ci PSM_CONFIG_REG4_RST_PHY_LINK_DETECT = 1<<0, /* Reset GPHY Link Detect */ 2528c2ecf20Sopenharmony_ci}; 2538c2ecf20Sopenharmony_ci 2548c2ecf20Sopenharmony_ci 2558c2ecf20Sopenharmony_cienum csr_regs { 2568c2ecf20Sopenharmony_ci B0_RAP = 0x0000, 2578c2ecf20Sopenharmony_ci B0_CTST = 0x0004, 2588c2ecf20Sopenharmony_ci 2598c2ecf20Sopenharmony_ci B0_POWER_CTRL = 0x0007, 2608c2ecf20Sopenharmony_ci B0_ISRC = 0x0008, 2618c2ecf20Sopenharmony_ci B0_IMSK = 0x000c, 2628c2ecf20Sopenharmony_ci B0_HWE_ISRC = 0x0010, 2638c2ecf20Sopenharmony_ci B0_HWE_IMSK = 0x0014, 2648c2ecf20Sopenharmony_ci 2658c2ecf20Sopenharmony_ci /* Special ISR registers (Yukon-2 only) */ 2668c2ecf20Sopenharmony_ci B0_Y2_SP_ISRC2 = 0x001c, 2678c2ecf20Sopenharmony_ci B0_Y2_SP_ISRC3 = 0x0020, 2688c2ecf20Sopenharmony_ci B0_Y2_SP_EISR = 0x0024, 2698c2ecf20Sopenharmony_ci B0_Y2_SP_LISR = 0x0028, 2708c2ecf20Sopenharmony_ci B0_Y2_SP_ICR = 0x002c, 2718c2ecf20Sopenharmony_ci 2728c2ecf20Sopenharmony_ci B2_MAC_1 = 0x0100, 2738c2ecf20Sopenharmony_ci B2_MAC_2 = 0x0108, 2748c2ecf20Sopenharmony_ci B2_MAC_3 = 0x0110, 2758c2ecf20Sopenharmony_ci B2_CONN_TYP = 0x0118, 2768c2ecf20Sopenharmony_ci B2_PMD_TYP = 0x0119, 2778c2ecf20Sopenharmony_ci B2_MAC_CFG = 0x011a, 2788c2ecf20Sopenharmony_ci B2_CHIP_ID = 0x011b, 2798c2ecf20Sopenharmony_ci B2_E_0 = 0x011c, 2808c2ecf20Sopenharmony_ci 2818c2ecf20Sopenharmony_ci B2_Y2_CLK_GATE = 0x011d, 2828c2ecf20Sopenharmony_ci B2_Y2_HW_RES = 0x011e, 2838c2ecf20Sopenharmony_ci B2_E_3 = 0x011f, 2848c2ecf20Sopenharmony_ci B2_Y2_CLK_CTRL = 0x0120, 2858c2ecf20Sopenharmony_ci 2868c2ecf20Sopenharmony_ci B2_TI_INI = 0x0130, 2878c2ecf20Sopenharmony_ci B2_TI_VAL = 0x0134, 2888c2ecf20Sopenharmony_ci B2_TI_CTRL = 0x0138, 2898c2ecf20Sopenharmony_ci B2_TI_TEST = 0x0139, 2908c2ecf20Sopenharmony_ci 2918c2ecf20Sopenharmony_ci B2_TST_CTRL1 = 0x0158, 2928c2ecf20Sopenharmony_ci B2_TST_CTRL2 = 0x0159, 2938c2ecf20Sopenharmony_ci B2_GP_IO = 0x015c, 2948c2ecf20Sopenharmony_ci 2958c2ecf20Sopenharmony_ci B2_I2C_CTRL = 0x0160, 2968c2ecf20Sopenharmony_ci B2_I2C_DATA = 0x0164, 2978c2ecf20Sopenharmony_ci B2_I2C_IRQ = 0x0168, 2988c2ecf20Sopenharmony_ci B2_I2C_SW = 0x016c, 2998c2ecf20Sopenharmony_ci 3008c2ecf20Sopenharmony_ci Y2_PEX_PHY_DATA = 0x0170, 3018c2ecf20Sopenharmony_ci Y2_PEX_PHY_ADDR = 0x0172, 3028c2ecf20Sopenharmony_ci 3038c2ecf20Sopenharmony_ci B3_RAM_ADDR = 0x0180, 3048c2ecf20Sopenharmony_ci B3_RAM_DATA_LO = 0x0184, 3058c2ecf20Sopenharmony_ci B3_RAM_DATA_HI = 0x0188, 3068c2ecf20Sopenharmony_ci 3078c2ecf20Sopenharmony_ci/* RAM Interface Registers */ 3088c2ecf20Sopenharmony_ci/* Yukon-2: use RAM_BUFFER() to access the RAM buffer */ 3098c2ecf20Sopenharmony_ci/* 3108c2ecf20Sopenharmony_ci * The HW-Spec. calls this registers Timeout Value 0..11. But this names are 3118c2ecf20Sopenharmony_ci * not usable in SW. Please notice these are NOT real timeouts, these are 3128c2ecf20Sopenharmony_ci * the number of qWords transferred continuously. 3138c2ecf20Sopenharmony_ci */ 3148c2ecf20Sopenharmony_ci#define RAM_BUFFER(port, reg) (reg | (port <<6)) 3158c2ecf20Sopenharmony_ci 3168c2ecf20Sopenharmony_ci B3_RI_WTO_R1 = 0x0190, 3178c2ecf20Sopenharmony_ci B3_RI_WTO_XA1 = 0x0191, 3188c2ecf20Sopenharmony_ci B3_RI_WTO_XS1 = 0x0192, 3198c2ecf20Sopenharmony_ci B3_RI_RTO_R1 = 0x0193, 3208c2ecf20Sopenharmony_ci B3_RI_RTO_XA1 = 0x0194, 3218c2ecf20Sopenharmony_ci B3_RI_RTO_XS1 = 0x0195, 3228c2ecf20Sopenharmony_ci B3_RI_WTO_R2 = 0x0196, 3238c2ecf20Sopenharmony_ci B3_RI_WTO_XA2 = 0x0197, 3248c2ecf20Sopenharmony_ci B3_RI_WTO_XS2 = 0x0198, 3258c2ecf20Sopenharmony_ci B3_RI_RTO_R2 = 0x0199, 3268c2ecf20Sopenharmony_ci B3_RI_RTO_XA2 = 0x019a, 3278c2ecf20Sopenharmony_ci B3_RI_RTO_XS2 = 0x019b, 3288c2ecf20Sopenharmony_ci B3_RI_TO_VAL = 0x019c, 3298c2ecf20Sopenharmony_ci B3_RI_CTRL = 0x01a0, 3308c2ecf20Sopenharmony_ci B3_RI_TEST = 0x01a2, 3318c2ecf20Sopenharmony_ci B3_MA_TOINI_RX1 = 0x01b0, 3328c2ecf20Sopenharmony_ci B3_MA_TOINI_RX2 = 0x01b1, 3338c2ecf20Sopenharmony_ci B3_MA_TOINI_TX1 = 0x01b2, 3348c2ecf20Sopenharmony_ci B3_MA_TOINI_TX2 = 0x01b3, 3358c2ecf20Sopenharmony_ci B3_MA_TOVAL_RX1 = 0x01b4, 3368c2ecf20Sopenharmony_ci B3_MA_TOVAL_RX2 = 0x01b5, 3378c2ecf20Sopenharmony_ci B3_MA_TOVAL_TX1 = 0x01b6, 3388c2ecf20Sopenharmony_ci B3_MA_TOVAL_TX2 = 0x01b7, 3398c2ecf20Sopenharmony_ci B3_MA_TO_CTRL = 0x01b8, 3408c2ecf20Sopenharmony_ci B3_MA_TO_TEST = 0x01ba, 3418c2ecf20Sopenharmony_ci B3_MA_RCINI_RX1 = 0x01c0, 3428c2ecf20Sopenharmony_ci B3_MA_RCINI_RX2 = 0x01c1, 3438c2ecf20Sopenharmony_ci B3_MA_RCINI_TX1 = 0x01c2, 3448c2ecf20Sopenharmony_ci B3_MA_RCINI_TX2 = 0x01c3, 3458c2ecf20Sopenharmony_ci B3_MA_RCVAL_RX1 = 0x01c4, 3468c2ecf20Sopenharmony_ci B3_MA_RCVAL_RX2 = 0x01c5, 3478c2ecf20Sopenharmony_ci B3_MA_RCVAL_TX1 = 0x01c6, 3488c2ecf20Sopenharmony_ci B3_MA_RCVAL_TX2 = 0x01c7, 3498c2ecf20Sopenharmony_ci B3_MA_RC_CTRL = 0x01c8, 3508c2ecf20Sopenharmony_ci B3_MA_RC_TEST = 0x01ca, 3518c2ecf20Sopenharmony_ci B3_PA_TOINI_RX1 = 0x01d0, 3528c2ecf20Sopenharmony_ci B3_PA_TOINI_RX2 = 0x01d4, 3538c2ecf20Sopenharmony_ci B3_PA_TOINI_TX1 = 0x01d8, 3548c2ecf20Sopenharmony_ci B3_PA_TOINI_TX2 = 0x01dc, 3558c2ecf20Sopenharmony_ci B3_PA_TOVAL_RX1 = 0x01e0, 3568c2ecf20Sopenharmony_ci B3_PA_TOVAL_RX2 = 0x01e4, 3578c2ecf20Sopenharmony_ci B3_PA_TOVAL_TX1 = 0x01e8, 3588c2ecf20Sopenharmony_ci B3_PA_TOVAL_TX2 = 0x01ec, 3598c2ecf20Sopenharmony_ci B3_PA_CTRL = 0x01f0, 3608c2ecf20Sopenharmony_ci B3_PA_TEST = 0x01f2, 3618c2ecf20Sopenharmony_ci 3628c2ecf20Sopenharmony_ci Y2_CFG_SPC = 0x1c00, /* PCI config space region */ 3638c2ecf20Sopenharmony_ci Y2_CFG_AER = 0x1d00, /* PCI Advanced Error Report region */ 3648c2ecf20Sopenharmony_ci}; 3658c2ecf20Sopenharmony_ci 3668c2ecf20Sopenharmony_ci/* B0_CTST 24 bit Control/Status register */ 3678c2ecf20Sopenharmony_cienum { 3688c2ecf20Sopenharmony_ci Y2_VMAIN_AVAIL = 1<<17,/* VMAIN available (YUKON-2 only) */ 3698c2ecf20Sopenharmony_ci Y2_VAUX_AVAIL = 1<<16,/* VAUX available (YUKON-2 only) */ 3708c2ecf20Sopenharmony_ci Y2_HW_WOL_ON = 1<<15,/* HW WOL On (Yukon-EC Ultra A1 only) */ 3718c2ecf20Sopenharmony_ci Y2_HW_WOL_OFF = 1<<14,/* HW WOL On (Yukon-EC Ultra A1 only) */ 3728c2ecf20Sopenharmony_ci Y2_ASF_ENABLE = 1<<13,/* ASF Unit Enable (YUKON-2 only) */ 3738c2ecf20Sopenharmony_ci Y2_ASF_DISABLE = 1<<12,/* ASF Unit Disable (YUKON-2 only) */ 3748c2ecf20Sopenharmony_ci Y2_CLK_RUN_ENA = 1<<11,/* CLK_RUN Enable (YUKON-2 only) */ 3758c2ecf20Sopenharmony_ci Y2_CLK_RUN_DIS = 1<<10,/* CLK_RUN Disable (YUKON-2 only) */ 3768c2ecf20Sopenharmony_ci Y2_LED_STAT_ON = 1<<9, /* Status LED On (YUKON-2 only) */ 3778c2ecf20Sopenharmony_ci Y2_LED_STAT_OFF = 1<<8, /* Status LED Off (YUKON-2 only) */ 3788c2ecf20Sopenharmony_ci 3798c2ecf20Sopenharmony_ci CS_ST_SW_IRQ = 1<<7, /* Set IRQ SW Request */ 3808c2ecf20Sopenharmony_ci CS_CL_SW_IRQ = 1<<6, /* Clear IRQ SW Request */ 3818c2ecf20Sopenharmony_ci CS_STOP_DONE = 1<<5, /* Stop Master is finished */ 3828c2ecf20Sopenharmony_ci CS_STOP_MAST = 1<<4, /* Command Bit to stop the master */ 3838c2ecf20Sopenharmony_ci CS_MRST_CLR = 1<<3, /* Clear Master reset */ 3848c2ecf20Sopenharmony_ci CS_MRST_SET = 1<<2, /* Set Master reset */ 3858c2ecf20Sopenharmony_ci CS_RST_CLR = 1<<1, /* Clear Software reset */ 3868c2ecf20Sopenharmony_ci CS_RST_SET = 1, /* Set Software reset */ 3878c2ecf20Sopenharmony_ci}; 3888c2ecf20Sopenharmony_ci 3898c2ecf20Sopenharmony_ci/* B0_POWER_CTRL 8 Bit Power Control reg (YUKON only) */ 3908c2ecf20Sopenharmony_cienum { 3918c2ecf20Sopenharmony_ci PC_VAUX_ENA = 1<<7, /* Switch VAUX Enable */ 3928c2ecf20Sopenharmony_ci PC_VAUX_DIS = 1<<6, /* Switch VAUX Disable */ 3938c2ecf20Sopenharmony_ci PC_VCC_ENA = 1<<5, /* Switch VCC Enable */ 3948c2ecf20Sopenharmony_ci PC_VCC_DIS = 1<<4, /* Switch VCC Disable */ 3958c2ecf20Sopenharmony_ci PC_VAUX_ON = 1<<3, /* Switch VAUX On */ 3968c2ecf20Sopenharmony_ci PC_VAUX_OFF = 1<<2, /* Switch VAUX Off */ 3978c2ecf20Sopenharmony_ci PC_VCC_ON = 1<<1, /* Switch VCC On */ 3988c2ecf20Sopenharmony_ci PC_VCC_OFF = 1<<0, /* Switch VCC Off */ 3998c2ecf20Sopenharmony_ci}; 4008c2ecf20Sopenharmony_ci 4018c2ecf20Sopenharmony_ci/* B2_IRQM_MSK 32 bit IRQ Moderation Mask */ 4028c2ecf20Sopenharmony_ci 4038c2ecf20Sopenharmony_ci/* B0_Y2_SP_ISRC2 32 bit Special Interrupt Source Reg 2 */ 4048c2ecf20Sopenharmony_ci/* B0_Y2_SP_ISRC3 32 bit Special Interrupt Source Reg 3 */ 4058c2ecf20Sopenharmony_ci/* B0_Y2_SP_EISR 32 bit Enter ISR Reg */ 4068c2ecf20Sopenharmony_ci/* B0_Y2_SP_LISR 32 bit Leave ISR Reg */ 4078c2ecf20Sopenharmony_cienum { 4088c2ecf20Sopenharmony_ci Y2_IS_HW_ERR = 1<<31, /* Interrupt HW Error */ 4098c2ecf20Sopenharmony_ci Y2_IS_STAT_BMU = 1<<30, /* Status BMU Interrupt */ 4108c2ecf20Sopenharmony_ci Y2_IS_ASF = 1<<29, /* ASF subsystem Interrupt */ 4118c2ecf20Sopenharmony_ci Y2_IS_CPU_TO = 1<<28, /* CPU Timeout */ 4128c2ecf20Sopenharmony_ci Y2_IS_POLL_CHK = 1<<27, /* Check IRQ from polling unit */ 4138c2ecf20Sopenharmony_ci Y2_IS_TWSI_RDY = 1<<26, /* IRQ on end of TWSI Tx */ 4148c2ecf20Sopenharmony_ci Y2_IS_IRQ_SW = 1<<25, /* SW forced IRQ */ 4158c2ecf20Sopenharmony_ci Y2_IS_TIMINT = 1<<24, /* IRQ from Timer */ 4168c2ecf20Sopenharmony_ci 4178c2ecf20Sopenharmony_ci Y2_IS_IRQ_PHY2 = 1<<12, /* Interrupt from PHY 2 */ 4188c2ecf20Sopenharmony_ci Y2_IS_IRQ_MAC2 = 1<<11, /* Interrupt from MAC 2 */ 4198c2ecf20Sopenharmony_ci Y2_IS_CHK_RX2 = 1<<10, /* Descriptor error Rx 2 */ 4208c2ecf20Sopenharmony_ci Y2_IS_CHK_TXS2 = 1<<9, /* Descriptor error TXS 2 */ 4218c2ecf20Sopenharmony_ci Y2_IS_CHK_TXA2 = 1<<8, /* Descriptor error TXA 2 */ 4228c2ecf20Sopenharmony_ci 4238c2ecf20Sopenharmony_ci Y2_IS_PSM_ACK = 1<<7, /* PSM Acknowledge (Yukon-Optima only) */ 4248c2ecf20Sopenharmony_ci Y2_IS_PTP_TIST = 1<<6, /* PTP Time Stamp (Yukon-Optima only) */ 4258c2ecf20Sopenharmony_ci Y2_IS_PHY_QLNK = 1<<5, /* PHY Quick Link (Yukon-Optima only) */ 4268c2ecf20Sopenharmony_ci 4278c2ecf20Sopenharmony_ci Y2_IS_IRQ_PHY1 = 1<<4, /* Interrupt from PHY 1 */ 4288c2ecf20Sopenharmony_ci Y2_IS_IRQ_MAC1 = 1<<3, /* Interrupt from MAC 1 */ 4298c2ecf20Sopenharmony_ci Y2_IS_CHK_RX1 = 1<<2, /* Descriptor error Rx 1 */ 4308c2ecf20Sopenharmony_ci Y2_IS_CHK_TXS1 = 1<<1, /* Descriptor error TXS 1 */ 4318c2ecf20Sopenharmony_ci Y2_IS_CHK_TXA1 = 1<<0, /* Descriptor error TXA 1 */ 4328c2ecf20Sopenharmony_ci 4338c2ecf20Sopenharmony_ci Y2_IS_BASE = Y2_IS_HW_ERR | Y2_IS_STAT_BMU, 4348c2ecf20Sopenharmony_ci Y2_IS_PORT_1 = Y2_IS_IRQ_PHY1 | Y2_IS_IRQ_MAC1 4358c2ecf20Sopenharmony_ci | Y2_IS_CHK_TXA1 | Y2_IS_CHK_RX1, 4368c2ecf20Sopenharmony_ci Y2_IS_PORT_2 = Y2_IS_IRQ_PHY2 | Y2_IS_IRQ_MAC2 4378c2ecf20Sopenharmony_ci | Y2_IS_CHK_TXA2 | Y2_IS_CHK_RX2, 4388c2ecf20Sopenharmony_ci Y2_IS_ERROR = Y2_IS_HW_ERR | 4398c2ecf20Sopenharmony_ci Y2_IS_IRQ_MAC1 | Y2_IS_CHK_TXA1 | Y2_IS_CHK_RX1 | 4408c2ecf20Sopenharmony_ci Y2_IS_IRQ_MAC2 | Y2_IS_CHK_TXA2 | Y2_IS_CHK_RX2, 4418c2ecf20Sopenharmony_ci}; 4428c2ecf20Sopenharmony_ci 4438c2ecf20Sopenharmony_ci/* B2_IRQM_HWE_MSK 32 bit IRQ Moderation HW Error Mask */ 4448c2ecf20Sopenharmony_cienum { 4458c2ecf20Sopenharmony_ci IS_ERR_MSK = 0x00003fff,/* All Error bits */ 4468c2ecf20Sopenharmony_ci 4478c2ecf20Sopenharmony_ci IS_IRQ_TIST_OV = 1<<13, /* Time Stamp Timer Overflow (YUKON only) */ 4488c2ecf20Sopenharmony_ci IS_IRQ_SENSOR = 1<<12, /* IRQ from Sensor (YUKON only) */ 4498c2ecf20Sopenharmony_ci IS_IRQ_MST_ERR = 1<<11, /* IRQ master error detected */ 4508c2ecf20Sopenharmony_ci IS_IRQ_STAT = 1<<10, /* IRQ status exception */ 4518c2ecf20Sopenharmony_ci IS_NO_STAT_M1 = 1<<9, /* No Rx Status from MAC 1 */ 4528c2ecf20Sopenharmony_ci IS_NO_STAT_M2 = 1<<8, /* No Rx Status from MAC 2 */ 4538c2ecf20Sopenharmony_ci IS_NO_TIST_M1 = 1<<7, /* No Time Stamp from MAC 1 */ 4548c2ecf20Sopenharmony_ci IS_NO_TIST_M2 = 1<<6, /* No Time Stamp from MAC 2 */ 4558c2ecf20Sopenharmony_ci IS_RAM_RD_PAR = 1<<5, /* RAM Read Parity Error */ 4568c2ecf20Sopenharmony_ci IS_RAM_WR_PAR = 1<<4, /* RAM Write Parity Error */ 4578c2ecf20Sopenharmony_ci IS_M1_PAR_ERR = 1<<3, /* MAC 1 Parity Error */ 4588c2ecf20Sopenharmony_ci IS_M2_PAR_ERR = 1<<2, /* MAC 2 Parity Error */ 4598c2ecf20Sopenharmony_ci IS_R1_PAR_ERR = 1<<1, /* Queue R1 Parity Error */ 4608c2ecf20Sopenharmony_ci IS_R2_PAR_ERR = 1<<0, /* Queue R2 Parity Error */ 4618c2ecf20Sopenharmony_ci}; 4628c2ecf20Sopenharmony_ci 4638c2ecf20Sopenharmony_ci/* Hardware error interrupt mask for Yukon 2 */ 4648c2ecf20Sopenharmony_cienum { 4658c2ecf20Sopenharmony_ci Y2_IS_TIST_OV = 1<<29,/* Time Stamp Timer overflow interrupt */ 4668c2ecf20Sopenharmony_ci Y2_IS_SENSOR = 1<<28, /* Sensor interrupt */ 4678c2ecf20Sopenharmony_ci Y2_IS_MST_ERR = 1<<27, /* Master error interrupt */ 4688c2ecf20Sopenharmony_ci Y2_IS_IRQ_STAT = 1<<26, /* Status exception interrupt */ 4698c2ecf20Sopenharmony_ci Y2_IS_PCI_EXP = 1<<25, /* PCI-Express interrupt */ 4708c2ecf20Sopenharmony_ci Y2_IS_PCI_NEXP = 1<<24, /* PCI-Express error similar to PCI error */ 4718c2ecf20Sopenharmony_ci /* Link 2 */ 4728c2ecf20Sopenharmony_ci Y2_IS_PAR_RD2 = 1<<13, /* Read RAM parity error interrupt */ 4738c2ecf20Sopenharmony_ci Y2_IS_PAR_WR2 = 1<<12, /* Write RAM parity error interrupt */ 4748c2ecf20Sopenharmony_ci Y2_IS_PAR_MAC2 = 1<<11, /* MAC hardware fault interrupt */ 4758c2ecf20Sopenharmony_ci Y2_IS_PAR_RX2 = 1<<10, /* Parity Error Rx Queue 2 */ 4768c2ecf20Sopenharmony_ci Y2_IS_TCP_TXS2 = 1<<9, /* TCP length mismatch sync Tx queue IRQ */ 4778c2ecf20Sopenharmony_ci Y2_IS_TCP_TXA2 = 1<<8, /* TCP length mismatch async Tx queue IRQ */ 4788c2ecf20Sopenharmony_ci /* Link 1 */ 4798c2ecf20Sopenharmony_ci Y2_IS_PAR_RD1 = 1<<5, /* Read RAM parity error interrupt */ 4808c2ecf20Sopenharmony_ci Y2_IS_PAR_WR1 = 1<<4, /* Write RAM parity error interrupt */ 4818c2ecf20Sopenharmony_ci Y2_IS_PAR_MAC1 = 1<<3, /* MAC hardware fault interrupt */ 4828c2ecf20Sopenharmony_ci Y2_IS_PAR_RX1 = 1<<2, /* Parity Error Rx Queue 1 */ 4838c2ecf20Sopenharmony_ci Y2_IS_TCP_TXS1 = 1<<1, /* TCP length mismatch sync Tx queue IRQ */ 4848c2ecf20Sopenharmony_ci Y2_IS_TCP_TXA1 = 1<<0, /* TCP length mismatch async Tx queue IRQ */ 4858c2ecf20Sopenharmony_ci 4868c2ecf20Sopenharmony_ci Y2_HWE_L1_MASK = Y2_IS_PAR_RD1 | Y2_IS_PAR_WR1 | Y2_IS_PAR_MAC1 | 4878c2ecf20Sopenharmony_ci Y2_IS_PAR_RX1 | Y2_IS_TCP_TXS1| Y2_IS_TCP_TXA1, 4888c2ecf20Sopenharmony_ci Y2_HWE_L2_MASK = Y2_IS_PAR_RD2 | Y2_IS_PAR_WR2 | Y2_IS_PAR_MAC2 | 4898c2ecf20Sopenharmony_ci Y2_IS_PAR_RX2 | Y2_IS_TCP_TXS2| Y2_IS_TCP_TXA2, 4908c2ecf20Sopenharmony_ci 4918c2ecf20Sopenharmony_ci Y2_HWE_ALL_MASK = Y2_IS_TIST_OV | Y2_IS_MST_ERR | Y2_IS_IRQ_STAT | 4928c2ecf20Sopenharmony_ci Y2_HWE_L1_MASK | Y2_HWE_L2_MASK, 4938c2ecf20Sopenharmony_ci}; 4948c2ecf20Sopenharmony_ci 4958c2ecf20Sopenharmony_ci/* B28_DPT_CTRL 8 bit Descriptor Poll Timer Ctrl Reg */ 4968c2ecf20Sopenharmony_cienum { 4978c2ecf20Sopenharmony_ci DPT_START = 1<<1, 4988c2ecf20Sopenharmony_ci DPT_STOP = 1<<0, 4998c2ecf20Sopenharmony_ci}; 5008c2ecf20Sopenharmony_ci 5018c2ecf20Sopenharmony_ci/* B2_TST_CTRL1 8 bit Test Control Register 1 */ 5028c2ecf20Sopenharmony_cienum { 5038c2ecf20Sopenharmony_ci TST_FRC_DPERR_MR = 1<<7, /* force DATAPERR on MST RD */ 5048c2ecf20Sopenharmony_ci TST_FRC_DPERR_MW = 1<<6, /* force DATAPERR on MST WR */ 5058c2ecf20Sopenharmony_ci TST_FRC_DPERR_TR = 1<<5, /* force DATAPERR on TRG RD */ 5068c2ecf20Sopenharmony_ci TST_FRC_DPERR_TW = 1<<4, /* force DATAPERR on TRG WR */ 5078c2ecf20Sopenharmony_ci TST_FRC_APERR_M = 1<<3, /* force ADDRPERR on MST */ 5088c2ecf20Sopenharmony_ci TST_FRC_APERR_T = 1<<2, /* force ADDRPERR on TRG */ 5098c2ecf20Sopenharmony_ci TST_CFG_WRITE_ON = 1<<1, /* Enable Config Reg WR */ 5108c2ecf20Sopenharmony_ci TST_CFG_WRITE_OFF= 1<<0, /* Disable Config Reg WR */ 5118c2ecf20Sopenharmony_ci}; 5128c2ecf20Sopenharmony_ci 5138c2ecf20Sopenharmony_ci/* B2_GPIO */ 5148c2ecf20Sopenharmony_cienum { 5158c2ecf20Sopenharmony_ci GLB_GPIO_CLK_DEB_ENA = 1<<31, /* Clock Debug Enable */ 5168c2ecf20Sopenharmony_ci GLB_GPIO_CLK_DBG_MSK = 0xf<<26, /* Clock Debug */ 5178c2ecf20Sopenharmony_ci 5188c2ecf20Sopenharmony_ci GLB_GPIO_INT_RST_D3_DIS = 1<<15, /* Disable Internal Reset After D3 to D0 */ 5198c2ecf20Sopenharmony_ci GLB_GPIO_LED_PAD_SPEED_UP = 1<<14, /* LED PAD Speed Up */ 5208c2ecf20Sopenharmony_ci GLB_GPIO_STAT_RACE_DIS = 1<<13, /* Status Race Disable */ 5218c2ecf20Sopenharmony_ci GLB_GPIO_TEST_SEL_MSK = 3<<11, /* Testmode Select */ 5228c2ecf20Sopenharmony_ci GLB_GPIO_TEST_SEL_BASE = 1<<11, 5238c2ecf20Sopenharmony_ci GLB_GPIO_RAND_ENA = 1<<10, /* Random Enable */ 5248c2ecf20Sopenharmony_ci GLB_GPIO_RAND_BIT_1 = 1<<9, /* Random Bit 1 */ 5258c2ecf20Sopenharmony_ci}; 5268c2ecf20Sopenharmony_ci 5278c2ecf20Sopenharmony_ci/* B2_MAC_CFG 8 bit MAC Configuration / Chip Revision */ 5288c2ecf20Sopenharmony_cienum { 5298c2ecf20Sopenharmony_ci CFG_CHIP_R_MSK = 0xf<<4, /* Bit 7.. 4: Chip Revision */ 5308c2ecf20Sopenharmony_ci /* Bit 3.. 2: reserved */ 5318c2ecf20Sopenharmony_ci CFG_DIS_M2_CLK = 1<<1, /* Disable Clock for 2nd MAC */ 5328c2ecf20Sopenharmony_ci CFG_SNG_MAC = 1<<0, /* MAC Config: 0=2 MACs / 1=1 MAC*/ 5338c2ecf20Sopenharmony_ci}; 5348c2ecf20Sopenharmony_ci 5358c2ecf20Sopenharmony_ci/* B2_CHIP_ID 8 bit Chip Identification Number */ 5368c2ecf20Sopenharmony_cienum { 5378c2ecf20Sopenharmony_ci CHIP_ID_YUKON_XL = 0xb3, /* YUKON-2 XL */ 5388c2ecf20Sopenharmony_ci CHIP_ID_YUKON_EC_U = 0xb4, /* YUKON-2 EC Ultra */ 5398c2ecf20Sopenharmony_ci CHIP_ID_YUKON_EX = 0xb5, /* YUKON-2 Extreme */ 5408c2ecf20Sopenharmony_ci CHIP_ID_YUKON_EC = 0xb6, /* YUKON-2 EC */ 5418c2ecf20Sopenharmony_ci CHIP_ID_YUKON_FE = 0xb7, /* YUKON-2 FE */ 5428c2ecf20Sopenharmony_ci CHIP_ID_YUKON_FE_P = 0xb8, /* YUKON-2 FE+ */ 5438c2ecf20Sopenharmony_ci CHIP_ID_YUKON_SUPR = 0xb9, /* YUKON-2 Supreme */ 5448c2ecf20Sopenharmony_ci CHIP_ID_YUKON_UL_2 = 0xba, /* YUKON-2 Ultra 2 */ 5458c2ecf20Sopenharmony_ci CHIP_ID_YUKON_OPT = 0xbc, /* YUKON-2 Optima */ 5468c2ecf20Sopenharmony_ci CHIP_ID_YUKON_PRM = 0xbd, /* YUKON-2 Optima Prime */ 5478c2ecf20Sopenharmony_ci CHIP_ID_YUKON_OP_2 = 0xbe, /* YUKON-2 Optima 2 */ 5488c2ecf20Sopenharmony_ci}; 5498c2ecf20Sopenharmony_ci 5508c2ecf20Sopenharmony_cienum yukon_xl_rev { 5518c2ecf20Sopenharmony_ci CHIP_REV_YU_XL_A0 = 0, 5528c2ecf20Sopenharmony_ci CHIP_REV_YU_XL_A1 = 1, 5538c2ecf20Sopenharmony_ci CHIP_REV_YU_XL_A2 = 2, 5548c2ecf20Sopenharmony_ci CHIP_REV_YU_XL_A3 = 3, 5558c2ecf20Sopenharmony_ci}; 5568c2ecf20Sopenharmony_ci 5578c2ecf20Sopenharmony_cienum yukon_ec_rev { 5588c2ecf20Sopenharmony_ci CHIP_REV_YU_EC_A1 = 0, /* Chip Rev. for Yukon-EC A1/A0 */ 5598c2ecf20Sopenharmony_ci CHIP_REV_YU_EC_A2 = 1, /* Chip Rev. for Yukon-EC A2 */ 5608c2ecf20Sopenharmony_ci CHIP_REV_YU_EC_A3 = 2, /* Chip Rev. for Yukon-EC A3 */ 5618c2ecf20Sopenharmony_ci}; 5628c2ecf20Sopenharmony_cienum yukon_ec_u_rev { 5638c2ecf20Sopenharmony_ci CHIP_REV_YU_EC_U_A0 = 1, 5648c2ecf20Sopenharmony_ci CHIP_REV_YU_EC_U_A1 = 2, 5658c2ecf20Sopenharmony_ci CHIP_REV_YU_EC_U_B0 = 3, 5668c2ecf20Sopenharmony_ci CHIP_REV_YU_EC_U_B1 = 5, 5678c2ecf20Sopenharmony_ci}; 5688c2ecf20Sopenharmony_cienum yukon_fe_rev { 5698c2ecf20Sopenharmony_ci CHIP_REV_YU_FE_A1 = 1, 5708c2ecf20Sopenharmony_ci CHIP_REV_YU_FE_A2 = 2, 5718c2ecf20Sopenharmony_ci}; 5728c2ecf20Sopenharmony_cienum yukon_fe_p_rev { 5738c2ecf20Sopenharmony_ci CHIP_REV_YU_FE2_A0 = 0, 5748c2ecf20Sopenharmony_ci}; 5758c2ecf20Sopenharmony_cienum yukon_ex_rev { 5768c2ecf20Sopenharmony_ci CHIP_REV_YU_EX_A0 = 1, 5778c2ecf20Sopenharmony_ci CHIP_REV_YU_EX_B0 = 2, 5788c2ecf20Sopenharmony_ci}; 5798c2ecf20Sopenharmony_cienum yukon_supr_rev { 5808c2ecf20Sopenharmony_ci CHIP_REV_YU_SU_A0 = 0, 5818c2ecf20Sopenharmony_ci CHIP_REV_YU_SU_B0 = 1, 5828c2ecf20Sopenharmony_ci CHIP_REV_YU_SU_B1 = 3, 5838c2ecf20Sopenharmony_ci}; 5848c2ecf20Sopenharmony_ci 5858c2ecf20Sopenharmony_cienum yukon_prm_rev { 5868c2ecf20Sopenharmony_ci CHIP_REV_YU_PRM_Z1 = 1, 5878c2ecf20Sopenharmony_ci CHIP_REV_YU_PRM_A0 = 2, 5888c2ecf20Sopenharmony_ci}; 5898c2ecf20Sopenharmony_ci 5908c2ecf20Sopenharmony_ci/* B2_Y2_CLK_GATE 8 bit Clock Gating (Yukon-2 only) */ 5918c2ecf20Sopenharmony_cienum { 5928c2ecf20Sopenharmony_ci Y2_STATUS_LNK2_INAC = 1<<7, /* Status Link 2 inactive (0 = active) */ 5938c2ecf20Sopenharmony_ci Y2_CLK_GAT_LNK2_DIS = 1<<6, /* Disable clock gating Link 2 */ 5948c2ecf20Sopenharmony_ci Y2_COR_CLK_LNK2_DIS = 1<<5, /* Disable Core clock Link 2 */ 5958c2ecf20Sopenharmony_ci Y2_PCI_CLK_LNK2_DIS = 1<<4, /* Disable PCI clock Link 2 */ 5968c2ecf20Sopenharmony_ci Y2_STATUS_LNK1_INAC = 1<<3, /* Status Link 1 inactive (0 = active) */ 5978c2ecf20Sopenharmony_ci Y2_CLK_GAT_LNK1_DIS = 1<<2, /* Disable clock gating Link 1 */ 5988c2ecf20Sopenharmony_ci Y2_COR_CLK_LNK1_DIS = 1<<1, /* Disable Core clock Link 1 */ 5998c2ecf20Sopenharmony_ci Y2_PCI_CLK_LNK1_DIS = 1<<0, /* Disable PCI clock Link 1 */ 6008c2ecf20Sopenharmony_ci}; 6018c2ecf20Sopenharmony_ci 6028c2ecf20Sopenharmony_ci/* B2_Y2_HW_RES 8 bit HW Resources (Yukon-2 only) */ 6038c2ecf20Sopenharmony_cienum { 6048c2ecf20Sopenharmony_ci CFG_LED_MODE_MSK = 7<<2, /* Bit 4.. 2: LED Mode Mask */ 6058c2ecf20Sopenharmony_ci CFG_LINK_2_AVAIL = 1<<1, /* Link 2 available */ 6068c2ecf20Sopenharmony_ci CFG_LINK_1_AVAIL = 1<<0, /* Link 1 available */ 6078c2ecf20Sopenharmony_ci}; 6088c2ecf20Sopenharmony_ci#define CFG_LED_MODE(x) (((x) & CFG_LED_MODE_MSK) >> 2) 6098c2ecf20Sopenharmony_ci#define CFG_DUAL_MAC_MSK (CFG_LINK_2_AVAIL | CFG_LINK_1_AVAIL) 6108c2ecf20Sopenharmony_ci 6118c2ecf20Sopenharmony_ci 6128c2ecf20Sopenharmony_ci/* B2_Y2_CLK_CTRL 32 bit Clock Frequency Control Register (Yukon-2/EC) */ 6138c2ecf20Sopenharmony_cienum { 6148c2ecf20Sopenharmony_ci Y2_CLK_DIV_VAL_MSK = 0xff<<16,/* Bit 23..16: Clock Divisor Value */ 6158c2ecf20Sopenharmony_ci#define Y2_CLK_DIV_VAL(x) (((x)<<16) & Y2_CLK_DIV_VAL_MSK) 6168c2ecf20Sopenharmony_ci Y2_CLK_DIV_VAL2_MSK = 7<<21, /* Bit 23..21: Clock Divisor Value */ 6178c2ecf20Sopenharmony_ci Y2_CLK_SELECT2_MSK = 0x1f<<16,/* Bit 20..16: Clock Select */ 6188c2ecf20Sopenharmony_ci#define Y2_CLK_DIV_VAL_2(x) (((x)<<21) & Y2_CLK_DIV_VAL2_MSK) 6198c2ecf20Sopenharmony_ci#define Y2_CLK_SEL_VAL_2(x) (((x)<<16) & Y2_CLK_SELECT2_MSK) 6208c2ecf20Sopenharmony_ci Y2_CLK_DIV_ENA = 1<<1, /* Enable Core Clock Division */ 6218c2ecf20Sopenharmony_ci Y2_CLK_DIV_DIS = 1<<0, /* Disable Core Clock Division */ 6228c2ecf20Sopenharmony_ci}; 6238c2ecf20Sopenharmony_ci 6248c2ecf20Sopenharmony_ci/* B2_TI_CTRL 8 bit Timer control */ 6258c2ecf20Sopenharmony_ci/* B2_IRQM_CTRL 8 bit IRQ Moderation Timer Control */ 6268c2ecf20Sopenharmony_cienum { 6278c2ecf20Sopenharmony_ci TIM_START = 1<<2, /* Start Timer */ 6288c2ecf20Sopenharmony_ci TIM_STOP = 1<<1, /* Stop Timer */ 6298c2ecf20Sopenharmony_ci TIM_CLR_IRQ = 1<<0, /* Clear Timer IRQ (!IRQM) */ 6308c2ecf20Sopenharmony_ci}; 6318c2ecf20Sopenharmony_ci 6328c2ecf20Sopenharmony_ci/* B2_TI_TEST 8 Bit Timer Test */ 6338c2ecf20Sopenharmony_ci/* B2_IRQM_TEST 8 bit IRQ Moderation Timer Test */ 6348c2ecf20Sopenharmony_ci/* B28_DPT_TST 8 bit Descriptor Poll Timer Test Reg */ 6358c2ecf20Sopenharmony_cienum { 6368c2ecf20Sopenharmony_ci TIM_T_ON = 1<<2, /* Test mode on */ 6378c2ecf20Sopenharmony_ci TIM_T_OFF = 1<<1, /* Test mode off */ 6388c2ecf20Sopenharmony_ci TIM_T_STEP = 1<<0, /* Test step */ 6398c2ecf20Sopenharmony_ci}; 6408c2ecf20Sopenharmony_ci 6418c2ecf20Sopenharmony_ci/* Y2_PEX_PHY_ADDR/DATA PEX PHY address and data reg (Yukon-2 only) */ 6428c2ecf20Sopenharmony_cienum { 6438c2ecf20Sopenharmony_ci PEX_RD_ACCESS = 1<<31, /* Access Mode Read = 1, Write = 0 */ 6448c2ecf20Sopenharmony_ci PEX_DB_ACCESS = 1<<30, /* Access to debug register */ 6458c2ecf20Sopenharmony_ci}; 6468c2ecf20Sopenharmony_ci 6478c2ecf20Sopenharmony_ci/* B3_RAM_ADDR 32 bit RAM Address, to read or write */ 6488c2ecf20Sopenharmony_ci /* Bit 31..19: reserved */ 6498c2ecf20Sopenharmony_ci#define RAM_ADR_RAN 0x0007ffffL /* Bit 18.. 0: RAM Address Range */ 6508c2ecf20Sopenharmony_ci/* RAM Interface Registers */ 6518c2ecf20Sopenharmony_ci 6528c2ecf20Sopenharmony_ci/* B3_RI_CTRL 16 bit RAM Interface Control Register */ 6538c2ecf20Sopenharmony_cienum { 6548c2ecf20Sopenharmony_ci RI_CLR_RD_PERR = 1<<9, /* Clear IRQ RAM Read Parity Err */ 6558c2ecf20Sopenharmony_ci RI_CLR_WR_PERR = 1<<8, /* Clear IRQ RAM Write Parity Err*/ 6568c2ecf20Sopenharmony_ci 6578c2ecf20Sopenharmony_ci RI_RST_CLR = 1<<1, /* Clear RAM Interface Reset */ 6588c2ecf20Sopenharmony_ci RI_RST_SET = 1<<0, /* Set RAM Interface Reset */ 6598c2ecf20Sopenharmony_ci}; 6608c2ecf20Sopenharmony_ci 6618c2ecf20Sopenharmony_ci#define SK_RI_TO_53 36 /* RAM interface timeout */ 6628c2ecf20Sopenharmony_ci 6638c2ecf20Sopenharmony_ci 6648c2ecf20Sopenharmony_ci/* Port related registers FIFO, and Arbiter */ 6658c2ecf20Sopenharmony_ci#define SK_REG(port,reg) (((port)<<7)+(reg)) 6668c2ecf20Sopenharmony_ci 6678c2ecf20Sopenharmony_ci/* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */ 6688c2ecf20Sopenharmony_ci/* TXA_ITI_INI 32 bit Tx Arb Interval Timer Init Val */ 6698c2ecf20Sopenharmony_ci/* TXA_ITI_VAL 32 bit Tx Arb Interval Timer Value */ 6708c2ecf20Sopenharmony_ci/* TXA_LIM_INI 32 bit Tx Arb Limit Counter Init Val */ 6718c2ecf20Sopenharmony_ci/* TXA_LIM_VAL 32 bit Tx Arb Limit Counter Value */ 6728c2ecf20Sopenharmony_ci 6738c2ecf20Sopenharmony_ci#define TXA_MAX_VAL 0x00ffffffUL /* Bit 23.. 0: Max TXA Timer/Cnt Val */ 6748c2ecf20Sopenharmony_ci 6758c2ecf20Sopenharmony_ci/* TXA_CTRL 8 bit Tx Arbiter Control Register */ 6768c2ecf20Sopenharmony_cienum { 6778c2ecf20Sopenharmony_ci TXA_ENA_FSYNC = 1<<7, /* Enable force of sync Tx queue */ 6788c2ecf20Sopenharmony_ci TXA_DIS_FSYNC = 1<<6, /* Disable force of sync Tx queue */ 6798c2ecf20Sopenharmony_ci TXA_ENA_ALLOC = 1<<5, /* Enable alloc of free bandwidth */ 6808c2ecf20Sopenharmony_ci TXA_DIS_ALLOC = 1<<4, /* Disable alloc of free bandwidth */ 6818c2ecf20Sopenharmony_ci TXA_START_RC = 1<<3, /* Start sync Rate Control */ 6828c2ecf20Sopenharmony_ci TXA_STOP_RC = 1<<2, /* Stop sync Rate Control */ 6838c2ecf20Sopenharmony_ci TXA_ENA_ARB = 1<<1, /* Enable Tx Arbiter */ 6848c2ecf20Sopenharmony_ci TXA_DIS_ARB = 1<<0, /* Disable Tx Arbiter */ 6858c2ecf20Sopenharmony_ci}; 6868c2ecf20Sopenharmony_ci 6878c2ecf20Sopenharmony_ci/* 6888c2ecf20Sopenharmony_ci * Bank 4 - 5 6898c2ecf20Sopenharmony_ci */ 6908c2ecf20Sopenharmony_ci/* Transmit Arbiter Registers MAC 1 and 2, use SK_REG() to access */ 6918c2ecf20Sopenharmony_cienum { 6928c2ecf20Sopenharmony_ci TXA_ITI_INI = 0x0200,/* 32 bit Tx Arb Interval Timer Init Val*/ 6938c2ecf20Sopenharmony_ci TXA_ITI_VAL = 0x0204,/* 32 bit Tx Arb Interval Timer Value */ 6948c2ecf20Sopenharmony_ci TXA_LIM_INI = 0x0208,/* 32 bit Tx Arb Limit Counter Init Val */ 6958c2ecf20Sopenharmony_ci TXA_LIM_VAL = 0x020c,/* 32 bit Tx Arb Limit Counter Value */ 6968c2ecf20Sopenharmony_ci TXA_CTRL = 0x0210,/* 8 bit Tx Arbiter Control Register */ 6978c2ecf20Sopenharmony_ci TXA_TEST = 0x0211,/* 8 bit Tx Arbiter Test Register */ 6988c2ecf20Sopenharmony_ci TXA_STAT = 0x0212,/* 8 bit Tx Arbiter Status Register */ 6998c2ecf20Sopenharmony_ci 7008c2ecf20Sopenharmony_ci RSS_KEY = 0x0220, /* RSS Key setup */ 7018c2ecf20Sopenharmony_ci RSS_CFG = 0x0248, /* RSS Configuration */ 7028c2ecf20Sopenharmony_ci}; 7038c2ecf20Sopenharmony_ci 7048c2ecf20Sopenharmony_cienum { 7058c2ecf20Sopenharmony_ci HASH_TCP_IPV6_EX_CTRL = 1<<5, 7068c2ecf20Sopenharmony_ci HASH_IPV6_EX_CTRL = 1<<4, 7078c2ecf20Sopenharmony_ci HASH_TCP_IPV6_CTRL = 1<<3, 7088c2ecf20Sopenharmony_ci HASH_IPV6_CTRL = 1<<2, 7098c2ecf20Sopenharmony_ci HASH_TCP_IPV4_CTRL = 1<<1, 7108c2ecf20Sopenharmony_ci HASH_IPV4_CTRL = 1<<0, 7118c2ecf20Sopenharmony_ci 7128c2ecf20Sopenharmony_ci HASH_ALL = 0x3f, 7138c2ecf20Sopenharmony_ci}; 7148c2ecf20Sopenharmony_ci 7158c2ecf20Sopenharmony_cienum { 7168c2ecf20Sopenharmony_ci B6_EXT_REG = 0x0300,/* External registers (GENESIS only) */ 7178c2ecf20Sopenharmony_ci B7_CFG_SPC = 0x0380,/* copy of the Configuration register */ 7188c2ecf20Sopenharmony_ci B8_RQ1_REGS = 0x0400,/* Receive Queue 1 */ 7198c2ecf20Sopenharmony_ci B8_RQ2_REGS = 0x0480,/* Receive Queue 2 */ 7208c2ecf20Sopenharmony_ci B8_TS1_REGS = 0x0600,/* Transmit sync queue 1 */ 7218c2ecf20Sopenharmony_ci B8_TA1_REGS = 0x0680,/* Transmit async queue 1 */ 7228c2ecf20Sopenharmony_ci B8_TS2_REGS = 0x0700,/* Transmit sync queue 2 */ 7238c2ecf20Sopenharmony_ci B8_TA2_REGS = 0x0780,/* Transmit sync queue 2 */ 7248c2ecf20Sopenharmony_ci B16_RAM_REGS = 0x0800,/* RAM Buffer Registers */ 7258c2ecf20Sopenharmony_ci}; 7268c2ecf20Sopenharmony_ci 7278c2ecf20Sopenharmony_ci/* Queue Register Offsets, use Q_ADDR() to access */ 7288c2ecf20Sopenharmony_cienum { 7298c2ecf20Sopenharmony_ci B8_Q_REGS = 0x0400, /* base of Queue registers */ 7308c2ecf20Sopenharmony_ci Q_D = 0x00, /* 8*32 bit Current Descriptor */ 7318c2ecf20Sopenharmony_ci Q_VLAN = 0x20, /* 16 bit Current VLAN Tag */ 7328c2ecf20Sopenharmony_ci Q_DONE = 0x24, /* 16 bit Done Index */ 7338c2ecf20Sopenharmony_ci Q_AC_L = 0x28, /* 32 bit Current Address Counter Low dWord */ 7348c2ecf20Sopenharmony_ci Q_AC_H = 0x2c, /* 32 bit Current Address Counter High dWord */ 7358c2ecf20Sopenharmony_ci Q_BC = 0x30, /* 32 bit Current Byte Counter */ 7368c2ecf20Sopenharmony_ci Q_CSR = 0x34, /* 32 bit BMU Control/Status Register */ 7378c2ecf20Sopenharmony_ci Q_TEST = 0x38, /* 32 bit Test/Control Register */ 7388c2ecf20Sopenharmony_ci 7398c2ecf20Sopenharmony_ci/* Yukon-2 */ 7408c2ecf20Sopenharmony_ci Q_WM = 0x40, /* 16 bit FIFO Watermark */ 7418c2ecf20Sopenharmony_ci Q_AL = 0x42, /* 8 bit FIFO Alignment */ 7428c2ecf20Sopenharmony_ci Q_RSP = 0x44, /* 16 bit FIFO Read Shadow Pointer */ 7438c2ecf20Sopenharmony_ci Q_RSL = 0x46, /* 8 bit FIFO Read Shadow Level */ 7448c2ecf20Sopenharmony_ci Q_RP = 0x48, /* 8 bit FIFO Read Pointer */ 7458c2ecf20Sopenharmony_ci Q_RL = 0x4a, /* 8 bit FIFO Read Level */ 7468c2ecf20Sopenharmony_ci Q_WP = 0x4c, /* 8 bit FIFO Write Pointer */ 7478c2ecf20Sopenharmony_ci Q_WSP = 0x4d, /* 8 bit FIFO Write Shadow Pointer */ 7488c2ecf20Sopenharmony_ci Q_WL = 0x4e, /* 8 bit FIFO Write Level */ 7498c2ecf20Sopenharmony_ci Q_WSL = 0x4f, /* 8 bit FIFO Write Shadow Level */ 7508c2ecf20Sopenharmony_ci}; 7518c2ecf20Sopenharmony_ci#define Q_ADDR(reg, offs) (B8_Q_REGS + (reg) + (offs)) 7528c2ecf20Sopenharmony_ci 7538c2ecf20Sopenharmony_ci/* Q_TEST 32 bit Test Register */ 7548c2ecf20Sopenharmony_cienum { 7558c2ecf20Sopenharmony_ci /* Transmit */ 7568c2ecf20Sopenharmony_ci F_TX_CHK_AUTO_OFF = 1<<31, /* Tx checksum auto calc off (Yukon EX) */ 7578c2ecf20Sopenharmony_ci F_TX_CHK_AUTO_ON = 1<<30, /* Tx checksum auto calc off (Yukon EX) */ 7588c2ecf20Sopenharmony_ci 7598c2ecf20Sopenharmony_ci /* Receive */ 7608c2ecf20Sopenharmony_ci F_M_RX_RAM_DIS = 1<<24, /* MAC Rx RAM Read Port disable */ 7618c2ecf20Sopenharmony_ci 7628c2ecf20Sopenharmony_ci /* Hardware testbits not used */ 7638c2ecf20Sopenharmony_ci}; 7648c2ecf20Sopenharmony_ci 7658c2ecf20Sopenharmony_ci/* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/ 7668c2ecf20Sopenharmony_cienum { 7678c2ecf20Sopenharmony_ci Y2_B8_PREF_REGS = 0x0450, 7688c2ecf20Sopenharmony_ci 7698c2ecf20Sopenharmony_ci PREF_UNIT_CTRL = 0x00, /* 32 bit Control register */ 7708c2ecf20Sopenharmony_ci PREF_UNIT_LAST_IDX = 0x04, /* 16 bit Last Index */ 7718c2ecf20Sopenharmony_ci PREF_UNIT_ADDR_LO = 0x08, /* 32 bit List start addr, low part */ 7728c2ecf20Sopenharmony_ci PREF_UNIT_ADDR_HI = 0x0c, /* 32 bit List start addr, high part*/ 7738c2ecf20Sopenharmony_ci PREF_UNIT_GET_IDX = 0x10, /* 16 bit Get Index */ 7748c2ecf20Sopenharmony_ci PREF_UNIT_PUT_IDX = 0x14, /* 16 bit Put Index */ 7758c2ecf20Sopenharmony_ci PREF_UNIT_FIFO_WP = 0x20, /* 8 bit FIFO write pointer */ 7768c2ecf20Sopenharmony_ci PREF_UNIT_FIFO_RP = 0x24, /* 8 bit FIFO read pointer */ 7778c2ecf20Sopenharmony_ci PREF_UNIT_FIFO_WM = 0x28, /* 8 bit FIFO watermark */ 7788c2ecf20Sopenharmony_ci PREF_UNIT_FIFO_LEV = 0x2c, /* 8 bit FIFO level */ 7798c2ecf20Sopenharmony_ci 7808c2ecf20Sopenharmony_ci PREF_UNIT_MASK_IDX = 0x0fff, 7818c2ecf20Sopenharmony_ci}; 7828c2ecf20Sopenharmony_ci#define Y2_QADDR(q,reg) (Y2_B8_PREF_REGS + (q) + (reg)) 7838c2ecf20Sopenharmony_ci 7848c2ecf20Sopenharmony_ci/* RAM Buffer Register Offsets */ 7858c2ecf20Sopenharmony_cienum { 7868c2ecf20Sopenharmony_ci 7878c2ecf20Sopenharmony_ci RB_START = 0x00,/* 32 bit RAM Buffer Start Address */ 7888c2ecf20Sopenharmony_ci RB_END = 0x04,/* 32 bit RAM Buffer End Address */ 7898c2ecf20Sopenharmony_ci RB_WP = 0x08,/* 32 bit RAM Buffer Write Pointer */ 7908c2ecf20Sopenharmony_ci RB_RP = 0x0c,/* 32 bit RAM Buffer Read Pointer */ 7918c2ecf20Sopenharmony_ci RB_RX_UTPP = 0x10,/* 32 bit Rx Upper Threshold, Pause Packet */ 7928c2ecf20Sopenharmony_ci RB_RX_LTPP = 0x14,/* 32 bit Rx Lower Threshold, Pause Packet */ 7938c2ecf20Sopenharmony_ci RB_RX_UTHP = 0x18,/* 32 bit Rx Upper Threshold, High Prio */ 7948c2ecf20Sopenharmony_ci RB_RX_LTHP = 0x1c,/* 32 bit Rx Lower Threshold, High Prio */ 7958c2ecf20Sopenharmony_ci /* 0x10 - 0x1f: reserved at Tx RAM Buffer Registers */ 7968c2ecf20Sopenharmony_ci RB_PC = 0x20,/* 32 bit RAM Buffer Packet Counter */ 7978c2ecf20Sopenharmony_ci RB_LEV = 0x24,/* 32 bit RAM Buffer Level Register */ 7988c2ecf20Sopenharmony_ci RB_CTRL = 0x28,/* 32 bit RAM Buffer Control Register */ 7998c2ecf20Sopenharmony_ci RB_TST1 = 0x29,/* 8 bit RAM Buffer Test Register 1 */ 8008c2ecf20Sopenharmony_ci RB_TST2 = 0x2a,/* 8 bit RAM Buffer Test Register 2 */ 8018c2ecf20Sopenharmony_ci}; 8028c2ecf20Sopenharmony_ci 8038c2ecf20Sopenharmony_ci/* Receive and Transmit Queues */ 8048c2ecf20Sopenharmony_cienum { 8058c2ecf20Sopenharmony_ci Q_R1 = 0x0000, /* Receive Queue 1 */ 8068c2ecf20Sopenharmony_ci Q_R2 = 0x0080, /* Receive Queue 2 */ 8078c2ecf20Sopenharmony_ci Q_XS1 = 0x0200, /* Synchronous Transmit Queue 1 */ 8088c2ecf20Sopenharmony_ci Q_XA1 = 0x0280, /* Asynchronous Transmit Queue 1 */ 8098c2ecf20Sopenharmony_ci Q_XS2 = 0x0300, /* Synchronous Transmit Queue 2 */ 8108c2ecf20Sopenharmony_ci Q_XA2 = 0x0380, /* Asynchronous Transmit Queue 2 */ 8118c2ecf20Sopenharmony_ci}; 8128c2ecf20Sopenharmony_ci 8138c2ecf20Sopenharmony_ci/* Different PHY Types */ 8148c2ecf20Sopenharmony_cienum { 8158c2ecf20Sopenharmony_ci PHY_ADDR_MARV = 0, 8168c2ecf20Sopenharmony_ci}; 8178c2ecf20Sopenharmony_ci 8188c2ecf20Sopenharmony_ci#define RB_ADDR(offs, queue) ((u16) B16_RAM_REGS + (queue) + (offs)) 8198c2ecf20Sopenharmony_ci 8208c2ecf20Sopenharmony_ci 8218c2ecf20Sopenharmony_cienum { 8228c2ecf20Sopenharmony_ci LNK_SYNC_INI = 0x0c30,/* 32 bit Link Sync Cnt Init Value */ 8238c2ecf20Sopenharmony_ci LNK_SYNC_VAL = 0x0c34,/* 32 bit Link Sync Cnt Current Value */ 8248c2ecf20Sopenharmony_ci LNK_SYNC_CTRL = 0x0c38,/* 8 bit Link Sync Cnt Control Register */ 8258c2ecf20Sopenharmony_ci LNK_SYNC_TST = 0x0c39,/* 8 bit Link Sync Cnt Test Register */ 8268c2ecf20Sopenharmony_ci 8278c2ecf20Sopenharmony_ci LNK_LED_REG = 0x0c3c,/* 8 bit Link LED Register */ 8288c2ecf20Sopenharmony_ci 8298c2ecf20Sopenharmony_ci/* Receive GMAC FIFO (YUKON and Yukon-2) */ 8308c2ecf20Sopenharmony_ci 8318c2ecf20Sopenharmony_ci RX_GMF_EA = 0x0c40,/* 32 bit Rx GMAC FIFO End Address */ 8328c2ecf20Sopenharmony_ci RX_GMF_AF_THR = 0x0c44,/* 32 bit Rx GMAC FIFO Almost Full Thresh. */ 8338c2ecf20Sopenharmony_ci RX_GMF_CTRL_T = 0x0c48,/* 32 bit Rx GMAC FIFO Control/Test */ 8348c2ecf20Sopenharmony_ci RX_GMF_FL_MSK = 0x0c4c,/* 32 bit Rx GMAC FIFO Flush Mask */ 8358c2ecf20Sopenharmony_ci RX_GMF_FL_THR = 0x0c50,/* 16 bit Rx GMAC FIFO Flush Threshold */ 8368c2ecf20Sopenharmony_ci RX_GMF_FL_CTRL = 0x0c52,/* 16 bit Rx GMAC FIFO Flush Control */ 8378c2ecf20Sopenharmony_ci RX_GMF_TR_THR = 0x0c54,/* 32 bit Rx Truncation Threshold (Yukon-2) */ 8388c2ecf20Sopenharmony_ci RX_GMF_UP_THR = 0x0c58,/* 16 bit Rx Upper Pause Thr (Yukon-EC_U) */ 8398c2ecf20Sopenharmony_ci RX_GMF_LP_THR = 0x0c5a,/* 16 bit Rx Lower Pause Thr (Yukon-EC_U) */ 8408c2ecf20Sopenharmony_ci RX_GMF_VLAN = 0x0c5c,/* 32 bit Rx VLAN Type Register (Yukon-2) */ 8418c2ecf20Sopenharmony_ci RX_GMF_WP = 0x0c60,/* 32 bit Rx GMAC FIFO Write Pointer */ 8428c2ecf20Sopenharmony_ci 8438c2ecf20Sopenharmony_ci RX_GMF_WLEV = 0x0c68,/* 32 bit Rx GMAC FIFO Write Level */ 8448c2ecf20Sopenharmony_ci 8458c2ecf20Sopenharmony_ci RX_GMF_RP = 0x0c70,/* 32 bit Rx GMAC FIFO Read Pointer */ 8468c2ecf20Sopenharmony_ci 8478c2ecf20Sopenharmony_ci RX_GMF_RLEV = 0x0c78,/* 32 bit Rx GMAC FIFO Read Level */ 8488c2ecf20Sopenharmony_ci}; 8498c2ecf20Sopenharmony_ci 8508c2ecf20Sopenharmony_ci 8518c2ecf20Sopenharmony_ci/* Q_BC 32 bit Current Byte Counter */ 8528c2ecf20Sopenharmony_ci 8538c2ecf20Sopenharmony_ci/* BMU Control Status Registers */ 8548c2ecf20Sopenharmony_ci/* B0_R1_CSR 32 bit BMU Ctrl/Stat Rx Queue 1 */ 8558c2ecf20Sopenharmony_ci/* B0_R2_CSR 32 bit BMU Ctrl/Stat Rx Queue 2 */ 8568c2ecf20Sopenharmony_ci/* B0_XA1_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 1 */ 8578c2ecf20Sopenharmony_ci/* B0_XS1_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 1 */ 8588c2ecf20Sopenharmony_ci/* B0_XA2_CSR 32 bit BMU Ctrl/Stat Sync Tx Queue 2 */ 8598c2ecf20Sopenharmony_ci/* B0_XS2_CSR 32 bit BMU Ctrl/Stat Async Tx Queue 2 */ 8608c2ecf20Sopenharmony_ci/* Q_CSR 32 bit BMU Control/Status Register */ 8618c2ecf20Sopenharmony_ci 8628c2ecf20Sopenharmony_ci/* Rx BMU Control / Status Registers (Yukon-2) */ 8638c2ecf20Sopenharmony_cienum { 8648c2ecf20Sopenharmony_ci BMU_IDLE = 1<<31, /* BMU Idle State */ 8658c2ecf20Sopenharmony_ci BMU_RX_TCP_PKT = 1<<30, /* Rx TCP Packet (when RSS Hash enabled) */ 8668c2ecf20Sopenharmony_ci BMU_RX_IP_PKT = 1<<29, /* Rx IP Packet (when RSS Hash enabled) */ 8678c2ecf20Sopenharmony_ci 8688c2ecf20Sopenharmony_ci BMU_ENA_RX_RSS_HASH = 1<<15, /* Enable Rx RSS Hash */ 8698c2ecf20Sopenharmony_ci BMU_DIS_RX_RSS_HASH = 1<<14, /* Disable Rx RSS Hash */ 8708c2ecf20Sopenharmony_ci BMU_ENA_RX_CHKSUM = 1<<13, /* Enable Rx TCP/IP Checksum Check */ 8718c2ecf20Sopenharmony_ci BMU_DIS_RX_CHKSUM = 1<<12, /* Disable Rx TCP/IP Checksum Check */ 8728c2ecf20Sopenharmony_ci BMU_CLR_IRQ_PAR = 1<<11, /* Clear IRQ on Parity errors (Rx) */ 8738c2ecf20Sopenharmony_ci BMU_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment. error (Tx) */ 8748c2ecf20Sopenharmony_ci BMU_CLR_IRQ_CHK = 1<<10, /* Clear IRQ Check */ 8758c2ecf20Sopenharmony_ci BMU_STOP = 1<<9, /* Stop Rx/Tx Queue */ 8768c2ecf20Sopenharmony_ci BMU_START = 1<<8, /* Start Rx/Tx Queue */ 8778c2ecf20Sopenharmony_ci BMU_FIFO_OP_ON = 1<<7, /* FIFO Operational On */ 8788c2ecf20Sopenharmony_ci BMU_FIFO_OP_OFF = 1<<6, /* FIFO Operational Off */ 8798c2ecf20Sopenharmony_ci BMU_FIFO_ENA = 1<<5, /* Enable FIFO */ 8808c2ecf20Sopenharmony_ci BMU_FIFO_RST = 1<<4, /* Reset FIFO */ 8818c2ecf20Sopenharmony_ci BMU_OP_ON = 1<<3, /* BMU Operational On */ 8828c2ecf20Sopenharmony_ci BMU_OP_OFF = 1<<2, /* BMU Operational Off */ 8838c2ecf20Sopenharmony_ci BMU_RST_CLR = 1<<1, /* Clear BMU Reset (Enable) */ 8848c2ecf20Sopenharmony_ci BMU_RST_SET = 1<<0, /* Set BMU Reset */ 8858c2ecf20Sopenharmony_ci 8868c2ecf20Sopenharmony_ci BMU_CLR_RESET = BMU_FIFO_RST | BMU_OP_OFF | BMU_RST_CLR, 8878c2ecf20Sopenharmony_ci BMU_OPER_INIT = BMU_CLR_IRQ_PAR | BMU_CLR_IRQ_CHK | BMU_START | 8888c2ecf20Sopenharmony_ci BMU_FIFO_ENA | BMU_OP_ON, 8898c2ecf20Sopenharmony_ci 8908c2ecf20Sopenharmony_ci BMU_WM_DEFAULT = 0x600, 8918c2ecf20Sopenharmony_ci BMU_WM_PEX = 0x80, 8928c2ecf20Sopenharmony_ci}; 8938c2ecf20Sopenharmony_ci 8948c2ecf20Sopenharmony_ci/* Tx BMU Control / Status Registers (Yukon-2) */ 8958c2ecf20Sopenharmony_ci /* Bit 31: same as for Rx */ 8968c2ecf20Sopenharmony_cienum { 8978c2ecf20Sopenharmony_ci BMU_TX_IPIDINCR_ON = 1<<13, /* Enable IP ID Increment */ 8988c2ecf20Sopenharmony_ci BMU_TX_IPIDINCR_OFF = 1<<12, /* Disable IP ID Increment */ 8998c2ecf20Sopenharmony_ci BMU_TX_CLR_IRQ_TCP = 1<<11, /* Clear IRQ on TCP segment length mismatch */ 9008c2ecf20Sopenharmony_ci}; 9018c2ecf20Sopenharmony_ci 9028c2ecf20Sopenharmony_ci/* TBMU_TEST 0x06B8 Transmit BMU Test Register */ 9038c2ecf20Sopenharmony_cienum { 9048c2ecf20Sopenharmony_ci TBMU_TEST_BMU_TX_CHK_AUTO_OFF = 1<<31, /* BMU Tx Checksum Auto Calculation Disable */ 9058c2ecf20Sopenharmony_ci TBMU_TEST_BMU_TX_CHK_AUTO_ON = 1<<30, /* BMU Tx Checksum Auto Calculation Enable */ 9068c2ecf20Sopenharmony_ci TBMU_TEST_HOME_ADD_PAD_FIX1_EN = 1<<29, /* Home Address Paddiing FIX1 Enable */ 9078c2ecf20Sopenharmony_ci TBMU_TEST_HOME_ADD_PAD_FIX1_DIS = 1<<28, /* Home Address Paddiing FIX1 Disable */ 9088c2ecf20Sopenharmony_ci TBMU_TEST_ROUTING_ADD_FIX_EN = 1<<27, /* Routing Address Fix Enable */ 9098c2ecf20Sopenharmony_ci TBMU_TEST_ROUTING_ADD_FIX_DIS = 1<<26, /* Routing Address Fix Disable */ 9108c2ecf20Sopenharmony_ci TBMU_TEST_HOME_ADD_FIX_EN = 1<<25, /* Home address checksum fix enable */ 9118c2ecf20Sopenharmony_ci TBMU_TEST_HOME_ADD_FIX_DIS = 1<<24, /* Home address checksum fix disable */ 9128c2ecf20Sopenharmony_ci 9138c2ecf20Sopenharmony_ci TBMU_TEST_TEST_RSPTR_ON = 1<<22, /* Testmode Shadow Read Ptr On */ 9148c2ecf20Sopenharmony_ci TBMU_TEST_TEST_RSPTR_OFF = 1<<21, /* Testmode Shadow Read Ptr Off */ 9158c2ecf20Sopenharmony_ci TBMU_TEST_TESTSTEP_RSPTR = 1<<20, /* Teststep Shadow Read Ptr */ 9168c2ecf20Sopenharmony_ci 9178c2ecf20Sopenharmony_ci TBMU_TEST_TEST_RPTR_ON = 1<<18, /* Testmode Read Ptr On */ 9188c2ecf20Sopenharmony_ci TBMU_TEST_TEST_RPTR_OFF = 1<<17, /* Testmode Read Ptr Off */ 9198c2ecf20Sopenharmony_ci TBMU_TEST_TESTSTEP_RPTR = 1<<16, /* Teststep Read Ptr */ 9208c2ecf20Sopenharmony_ci 9218c2ecf20Sopenharmony_ci TBMU_TEST_TEST_WSPTR_ON = 1<<14, /* Testmode Shadow Write Ptr On */ 9228c2ecf20Sopenharmony_ci TBMU_TEST_TEST_WSPTR_OFF = 1<<13, /* Testmode Shadow Write Ptr Off */ 9238c2ecf20Sopenharmony_ci TBMU_TEST_TESTSTEP_WSPTR = 1<<12, /* Teststep Shadow Write Ptr */ 9248c2ecf20Sopenharmony_ci 9258c2ecf20Sopenharmony_ci TBMU_TEST_TEST_WPTR_ON = 1<<10, /* Testmode Write Ptr On */ 9268c2ecf20Sopenharmony_ci TBMU_TEST_TEST_WPTR_OFF = 1<<9, /* Testmode Write Ptr Off */ 9278c2ecf20Sopenharmony_ci TBMU_TEST_TESTSTEP_WPTR = 1<<8, /* Teststep Write Ptr */ 9288c2ecf20Sopenharmony_ci 9298c2ecf20Sopenharmony_ci TBMU_TEST_TEST_REQ_NB_ON = 1<<6, /* Testmode Req Nbytes/Addr On */ 9308c2ecf20Sopenharmony_ci TBMU_TEST_TEST_REQ_NB_OFF = 1<<5, /* Testmode Req Nbytes/Addr Off */ 9318c2ecf20Sopenharmony_ci TBMU_TEST_TESTSTEP_REQ_NB = 1<<4, /* Teststep Req Nbytes/Addr */ 9328c2ecf20Sopenharmony_ci 9338c2ecf20Sopenharmony_ci TBMU_TEST_TEST_DONE_IDX_ON = 1<<2, /* Testmode Done Index On */ 9348c2ecf20Sopenharmony_ci TBMU_TEST_TEST_DONE_IDX_OFF = 1<<1, /* Testmode Done Index Off */ 9358c2ecf20Sopenharmony_ci TBMU_TEST_TESTSTEP_DONE_IDX = 1<<0, /* Teststep Done Index */ 9368c2ecf20Sopenharmony_ci}; 9378c2ecf20Sopenharmony_ci 9388c2ecf20Sopenharmony_ci/* Queue Prefetch Unit Offsets, use Y2_QADDR() to address (Yukon-2 only)*/ 9398c2ecf20Sopenharmony_ci/* PREF_UNIT_CTRL 32 bit Prefetch Control register */ 9408c2ecf20Sopenharmony_cienum { 9418c2ecf20Sopenharmony_ci PREF_UNIT_OP_ON = 1<<3, /* prefetch unit operational */ 9428c2ecf20Sopenharmony_ci PREF_UNIT_OP_OFF = 1<<2, /* prefetch unit not operational */ 9438c2ecf20Sopenharmony_ci PREF_UNIT_RST_CLR = 1<<1, /* Clear Prefetch Unit Reset */ 9448c2ecf20Sopenharmony_ci PREF_UNIT_RST_SET = 1<<0, /* Set Prefetch Unit Reset */ 9458c2ecf20Sopenharmony_ci}; 9468c2ecf20Sopenharmony_ci 9478c2ecf20Sopenharmony_ci/* RAM Buffer Register Offsets, use RB_ADDR(Queue, Offs) to access */ 9488c2ecf20Sopenharmony_ci/* RB_START 32 bit RAM Buffer Start Address */ 9498c2ecf20Sopenharmony_ci/* RB_END 32 bit RAM Buffer End Address */ 9508c2ecf20Sopenharmony_ci/* RB_WP 32 bit RAM Buffer Write Pointer */ 9518c2ecf20Sopenharmony_ci/* RB_RP 32 bit RAM Buffer Read Pointer */ 9528c2ecf20Sopenharmony_ci/* RB_RX_UTPP 32 bit Rx Upper Threshold, Pause Pack */ 9538c2ecf20Sopenharmony_ci/* RB_RX_LTPP 32 bit Rx Lower Threshold, Pause Pack */ 9548c2ecf20Sopenharmony_ci/* RB_RX_UTHP 32 bit Rx Upper Threshold, High Prio */ 9558c2ecf20Sopenharmony_ci/* RB_RX_LTHP 32 bit Rx Lower Threshold, High Prio */ 9568c2ecf20Sopenharmony_ci/* RB_PC 32 bit RAM Buffer Packet Counter */ 9578c2ecf20Sopenharmony_ci/* RB_LEV 32 bit RAM Buffer Level Register */ 9588c2ecf20Sopenharmony_ci 9598c2ecf20Sopenharmony_ci#define RB_MSK 0x0007ffff /* Bit 18.. 0: RAM Buffer Pointer Bits */ 9608c2ecf20Sopenharmony_ci/* RB_TST2 8 bit RAM Buffer Test Register 2 */ 9618c2ecf20Sopenharmony_ci/* RB_TST1 8 bit RAM Buffer Test Register 1 */ 9628c2ecf20Sopenharmony_ci 9638c2ecf20Sopenharmony_ci/* RB_CTRL 8 bit RAM Buffer Control Register */ 9648c2ecf20Sopenharmony_cienum { 9658c2ecf20Sopenharmony_ci RB_ENA_STFWD = 1<<5, /* Enable Store & Forward */ 9668c2ecf20Sopenharmony_ci RB_DIS_STFWD = 1<<4, /* Disable Store & Forward */ 9678c2ecf20Sopenharmony_ci RB_ENA_OP_MD = 1<<3, /* Enable Operation Mode */ 9688c2ecf20Sopenharmony_ci RB_DIS_OP_MD = 1<<2, /* Disable Operation Mode */ 9698c2ecf20Sopenharmony_ci RB_RST_CLR = 1<<1, /* Clear RAM Buf STM Reset */ 9708c2ecf20Sopenharmony_ci RB_RST_SET = 1<<0, /* Set RAM Buf STM Reset */ 9718c2ecf20Sopenharmony_ci}; 9728c2ecf20Sopenharmony_ci 9738c2ecf20Sopenharmony_ci 9748c2ecf20Sopenharmony_ci/* Transmit GMAC FIFO (YUKON only) */ 9758c2ecf20Sopenharmony_cienum { 9768c2ecf20Sopenharmony_ci TX_GMF_EA = 0x0d40,/* 32 bit Tx GMAC FIFO End Address */ 9778c2ecf20Sopenharmony_ci TX_GMF_AE_THR = 0x0d44,/* 32 bit Tx GMAC FIFO Almost Empty Thresh.*/ 9788c2ecf20Sopenharmony_ci TX_GMF_CTRL_T = 0x0d48,/* 32 bit Tx GMAC FIFO Control/Test */ 9798c2ecf20Sopenharmony_ci 9808c2ecf20Sopenharmony_ci TX_GMF_WP = 0x0d60,/* 32 bit Tx GMAC FIFO Write Pointer */ 9818c2ecf20Sopenharmony_ci TX_GMF_WSP = 0x0d64,/* 32 bit Tx GMAC FIFO Write Shadow Ptr. */ 9828c2ecf20Sopenharmony_ci TX_GMF_WLEV = 0x0d68,/* 32 bit Tx GMAC FIFO Write Level */ 9838c2ecf20Sopenharmony_ci 9848c2ecf20Sopenharmony_ci TX_GMF_RP = 0x0d70,/* 32 bit Tx GMAC FIFO Read Pointer */ 9858c2ecf20Sopenharmony_ci TX_GMF_RSTP = 0x0d74,/* 32 bit Tx GMAC FIFO Restart Pointer */ 9868c2ecf20Sopenharmony_ci TX_GMF_RLEV = 0x0d78,/* 32 bit Tx GMAC FIFO Read Level */ 9878c2ecf20Sopenharmony_ci 9888c2ecf20Sopenharmony_ci /* Threshold values for Yukon-EC Ultra and Extreme */ 9898c2ecf20Sopenharmony_ci ECU_AE_THR = 0x0070, /* Almost Empty Threshold */ 9908c2ecf20Sopenharmony_ci ECU_TXFF_LEV = 0x01a0, /* Tx BMU FIFO Level */ 9918c2ecf20Sopenharmony_ci ECU_JUMBO_WM = 0x0080, /* Jumbo Mode Watermark */ 9928c2ecf20Sopenharmony_ci}; 9938c2ecf20Sopenharmony_ci 9948c2ecf20Sopenharmony_ci/* Descriptor Poll Timer Registers */ 9958c2ecf20Sopenharmony_cienum { 9968c2ecf20Sopenharmony_ci B28_DPT_INI = 0x0e00,/* 24 bit Descriptor Poll Timer Init Val */ 9978c2ecf20Sopenharmony_ci B28_DPT_VAL = 0x0e04,/* 24 bit Descriptor Poll Timer Curr Val */ 9988c2ecf20Sopenharmony_ci B28_DPT_CTRL = 0x0e08,/* 8 bit Descriptor Poll Timer Ctrl Reg */ 9998c2ecf20Sopenharmony_ci 10008c2ecf20Sopenharmony_ci B28_DPT_TST = 0x0e0a,/* 8 bit Descriptor Poll Timer Test Reg */ 10018c2ecf20Sopenharmony_ci}; 10028c2ecf20Sopenharmony_ci 10038c2ecf20Sopenharmony_ci/* Time Stamp Timer Registers (YUKON only) */ 10048c2ecf20Sopenharmony_cienum { 10058c2ecf20Sopenharmony_ci GMAC_TI_ST_VAL = 0x0e14,/* 32 bit Time Stamp Timer Curr Val */ 10068c2ecf20Sopenharmony_ci GMAC_TI_ST_CTRL = 0x0e18,/* 8 bit Time Stamp Timer Ctrl Reg */ 10078c2ecf20Sopenharmony_ci GMAC_TI_ST_TST = 0x0e1a,/* 8 bit Time Stamp Timer Test Reg */ 10088c2ecf20Sopenharmony_ci}; 10098c2ecf20Sopenharmony_ci 10108c2ecf20Sopenharmony_ci/* Polling Unit Registers (Yukon-2 only) */ 10118c2ecf20Sopenharmony_cienum { 10128c2ecf20Sopenharmony_ci POLL_CTRL = 0x0e20, /* 32 bit Polling Unit Control Reg */ 10138c2ecf20Sopenharmony_ci POLL_LAST_IDX = 0x0e24,/* 16 bit Polling Unit List Last Index */ 10148c2ecf20Sopenharmony_ci 10158c2ecf20Sopenharmony_ci POLL_LIST_ADDR_LO= 0x0e28,/* 32 bit Poll. List Start Addr (low) */ 10168c2ecf20Sopenharmony_ci POLL_LIST_ADDR_HI= 0x0e2c,/* 32 bit Poll. List Start Addr (high) */ 10178c2ecf20Sopenharmony_ci}; 10188c2ecf20Sopenharmony_ci 10198c2ecf20Sopenharmony_cienum { 10208c2ecf20Sopenharmony_ci SMB_CFG = 0x0e40, /* 32 bit SMBus Config Register */ 10218c2ecf20Sopenharmony_ci SMB_CSR = 0x0e44, /* 32 bit SMBus Control/Status Register */ 10228c2ecf20Sopenharmony_ci}; 10238c2ecf20Sopenharmony_ci 10248c2ecf20Sopenharmony_cienum { 10258c2ecf20Sopenharmony_ci CPU_WDOG = 0x0e48, /* 32 bit Watchdog Register */ 10268c2ecf20Sopenharmony_ci CPU_CNTR = 0x0e4C, /* 32 bit Counter Register */ 10278c2ecf20Sopenharmony_ci CPU_TIM = 0x0e50,/* 32 bit Timer Compare Register */ 10288c2ecf20Sopenharmony_ci CPU_AHB_ADDR = 0x0e54, /* 32 bit CPU AHB Debug Register */ 10298c2ecf20Sopenharmony_ci CPU_AHB_WDATA = 0x0e58, /* 32 bit CPU AHB Debug Register */ 10308c2ecf20Sopenharmony_ci CPU_AHB_RDATA = 0x0e5C, /* 32 bit CPU AHB Debug Register */ 10318c2ecf20Sopenharmony_ci HCU_MAP_BASE = 0x0e60, /* 32 bit Reset Mapping Base */ 10328c2ecf20Sopenharmony_ci CPU_AHB_CTRL = 0x0e64, /* 32 bit CPU AHB Debug Register */ 10338c2ecf20Sopenharmony_ci HCU_CCSR = 0x0e68, /* 32 bit CPU Control and Status Register */ 10348c2ecf20Sopenharmony_ci HCU_HCSR = 0x0e6C, /* 32 bit Host Control and Status Register */ 10358c2ecf20Sopenharmony_ci}; 10368c2ecf20Sopenharmony_ci 10378c2ecf20Sopenharmony_ci/* ASF Subsystem Registers (Yukon-2 only) */ 10388c2ecf20Sopenharmony_cienum { 10398c2ecf20Sopenharmony_ci B28_Y2_SMB_CONFIG = 0x0e40,/* 32 bit ASF SMBus Config Register */ 10408c2ecf20Sopenharmony_ci B28_Y2_SMB_CSD_REG = 0x0e44,/* 32 bit ASF SMB Control/Status/Data */ 10418c2ecf20Sopenharmony_ci B28_Y2_ASF_IRQ_V_BASE=0x0e60,/* 32 bit ASF IRQ Vector Base */ 10428c2ecf20Sopenharmony_ci 10438c2ecf20Sopenharmony_ci B28_Y2_ASF_STAT_CMD= 0x0e68,/* 32 bit ASF Status and Command Reg */ 10448c2ecf20Sopenharmony_ci B28_Y2_ASF_HOST_COM= 0x0e6c,/* 32 bit ASF Host Communication Reg */ 10458c2ecf20Sopenharmony_ci B28_Y2_DATA_REG_1 = 0x0e70,/* 32 bit ASF/Host Data Register 1 */ 10468c2ecf20Sopenharmony_ci B28_Y2_DATA_REG_2 = 0x0e74,/* 32 bit ASF/Host Data Register 2 */ 10478c2ecf20Sopenharmony_ci B28_Y2_DATA_REG_3 = 0x0e78,/* 32 bit ASF/Host Data Register 3 */ 10488c2ecf20Sopenharmony_ci B28_Y2_DATA_REG_4 = 0x0e7c,/* 32 bit ASF/Host Data Register 4 */ 10498c2ecf20Sopenharmony_ci}; 10508c2ecf20Sopenharmony_ci 10518c2ecf20Sopenharmony_ci/* Status BMU Registers (Yukon-2 only)*/ 10528c2ecf20Sopenharmony_cienum { 10538c2ecf20Sopenharmony_ci STAT_CTRL = 0x0e80,/* 32 bit Status BMU Control Reg */ 10548c2ecf20Sopenharmony_ci STAT_LAST_IDX = 0x0e84,/* 16 bit Status BMU Last Index */ 10558c2ecf20Sopenharmony_ci 10568c2ecf20Sopenharmony_ci STAT_LIST_ADDR_LO= 0x0e88,/* 32 bit Status List Start Addr (low) */ 10578c2ecf20Sopenharmony_ci STAT_LIST_ADDR_HI= 0x0e8c,/* 32 bit Status List Start Addr (high) */ 10588c2ecf20Sopenharmony_ci STAT_TXA1_RIDX = 0x0e90,/* 16 bit Status TxA1 Report Index Reg */ 10598c2ecf20Sopenharmony_ci STAT_TXS1_RIDX = 0x0e92,/* 16 bit Status TxS1 Report Index Reg */ 10608c2ecf20Sopenharmony_ci STAT_TXA2_RIDX = 0x0e94,/* 16 bit Status TxA2 Report Index Reg */ 10618c2ecf20Sopenharmony_ci STAT_TXS2_RIDX = 0x0e96,/* 16 bit Status TxS2 Report Index Reg */ 10628c2ecf20Sopenharmony_ci STAT_TX_IDX_TH = 0x0e98,/* 16 bit Status Tx Index Threshold Reg */ 10638c2ecf20Sopenharmony_ci STAT_PUT_IDX = 0x0e9c,/* 16 bit Status Put Index Reg */ 10648c2ecf20Sopenharmony_ci 10658c2ecf20Sopenharmony_ci/* FIFO Control/Status Registers (Yukon-2 only)*/ 10668c2ecf20Sopenharmony_ci STAT_FIFO_WP = 0x0ea0,/* 8 bit Status FIFO Write Pointer Reg */ 10678c2ecf20Sopenharmony_ci STAT_FIFO_RP = 0x0ea4,/* 8 bit Status FIFO Read Pointer Reg */ 10688c2ecf20Sopenharmony_ci STAT_FIFO_RSP = 0x0ea6,/* 8 bit Status FIFO Read Shadow Ptr */ 10698c2ecf20Sopenharmony_ci STAT_FIFO_LEVEL = 0x0ea8,/* 8 bit Status FIFO Level Reg */ 10708c2ecf20Sopenharmony_ci STAT_FIFO_SHLVL = 0x0eaa,/* 8 bit Status FIFO Shadow Level Reg */ 10718c2ecf20Sopenharmony_ci STAT_FIFO_WM = 0x0eac,/* 8 bit Status FIFO Watermark Reg */ 10728c2ecf20Sopenharmony_ci STAT_FIFO_ISR_WM= 0x0ead,/* 8 bit Status FIFO ISR Watermark Reg */ 10738c2ecf20Sopenharmony_ci 10748c2ecf20Sopenharmony_ci/* Level and ISR Timer Registers (Yukon-2 only)*/ 10758c2ecf20Sopenharmony_ci STAT_LEV_TIMER_INI= 0x0eb0,/* 32 bit Level Timer Init. Value Reg */ 10768c2ecf20Sopenharmony_ci STAT_LEV_TIMER_CNT= 0x0eb4,/* 32 bit Level Timer Counter Reg */ 10778c2ecf20Sopenharmony_ci STAT_LEV_TIMER_CTRL= 0x0eb8,/* 8 bit Level Timer Control Reg */ 10788c2ecf20Sopenharmony_ci STAT_LEV_TIMER_TEST= 0x0eb9,/* 8 bit Level Timer Test Reg */ 10798c2ecf20Sopenharmony_ci STAT_TX_TIMER_INI = 0x0ec0,/* 32 bit Tx Timer Init. Value Reg */ 10808c2ecf20Sopenharmony_ci STAT_TX_TIMER_CNT = 0x0ec4,/* 32 bit Tx Timer Counter Reg */ 10818c2ecf20Sopenharmony_ci STAT_TX_TIMER_CTRL = 0x0ec8,/* 8 bit Tx Timer Control Reg */ 10828c2ecf20Sopenharmony_ci STAT_TX_TIMER_TEST = 0x0ec9,/* 8 bit Tx Timer Test Reg */ 10838c2ecf20Sopenharmony_ci STAT_ISR_TIMER_INI = 0x0ed0,/* 32 bit ISR Timer Init. Value Reg */ 10848c2ecf20Sopenharmony_ci STAT_ISR_TIMER_CNT = 0x0ed4,/* 32 bit ISR Timer Counter Reg */ 10858c2ecf20Sopenharmony_ci STAT_ISR_TIMER_CTRL= 0x0ed8,/* 8 bit ISR Timer Control Reg */ 10868c2ecf20Sopenharmony_ci STAT_ISR_TIMER_TEST= 0x0ed9,/* 8 bit ISR Timer Test Reg */ 10878c2ecf20Sopenharmony_ci}; 10888c2ecf20Sopenharmony_ci 10898c2ecf20Sopenharmony_cienum { 10908c2ecf20Sopenharmony_ci LINKLED_OFF = 0x01, 10918c2ecf20Sopenharmony_ci LINKLED_ON = 0x02, 10928c2ecf20Sopenharmony_ci LINKLED_LINKSYNC_OFF = 0x04, 10938c2ecf20Sopenharmony_ci LINKLED_LINKSYNC_ON = 0x08, 10948c2ecf20Sopenharmony_ci LINKLED_BLINK_OFF = 0x10, 10958c2ecf20Sopenharmony_ci LINKLED_BLINK_ON = 0x20, 10968c2ecf20Sopenharmony_ci}; 10978c2ecf20Sopenharmony_ci 10988c2ecf20Sopenharmony_ci/* GMAC and GPHY Control Registers (YUKON only) */ 10998c2ecf20Sopenharmony_cienum { 11008c2ecf20Sopenharmony_ci GMAC_CTRL = 0x0f00,/* 32 bit GMAC Control Reg */ 11018c2ecf20Sopenharmony_ci GPHY_CTRL = 0x0f04,/* 32 bit GPHY Control Reg */ 11028c2ecf20Sopenharmony_ci GMAC_IRQ_SRC = 0x0f08,/* 8 bit GMAC Interrupt Source Reg */ 11038c2ecf20Sopenharmony_ci GMAC_IRQ_MSK = 0x0f0c,/* 8 bit GMAC Interrupt Mask Reg */ 11048c2ecf20Sopenharmony_ci GMAC_LINK_CTRL = 0x0f10,/* 16 bit Link Control Reg */ 11058c2ecf20Sopenharmony_ci 11068c2ecf20Sopenharmony_ci/* Wake-up Frame Pattern Match Control Registers (YUKON only) */ 11078c2ecf20Sopenharmony_ci WOL_CTRL_STAT = 0x0f20,/* 16 bit WOL Control/Status Reg */ 11088c2ecf20Sopenharmony_ci WOL_MATCH_CTL = 0x0f22,/* 8 bit WOL Match Control Reg */ 11098c2ecf20Sopenharmony_ci WOL_MATCH_RES = 0x0f23,/* 8 bit WOL Match Result Reg */ 11108c2ecf20Sopenharmony_ci WOL_MAC_ADDR = 0x0f24,/* 32 bit WOL MAC Address */ 11118c2ecf20Sopenharmony_ci WOL_PATT_RPTR = 0x0f2c,/* 8 bit WOL Pattern Read Pointer */ 11128c2ecf20Sopenharmony_ci 11138c2ecf20Sopenharmony_ci/* WOL Pattern Length Registers (YUKON only) */ 11148c2ecf20Sopenharmony_ci WOL_PATT_LEN_LO = 0x0f30,/* 32 bit WOL Pattern Length 3..0 */ 11158c2ecf20Sopenharmony_ci WOL_PATT_LEN_HI = 0x0f34,/* 24 bit WOL Pattern Length 6..4 */ 11168c2ecf20Sopenharmony_ci 11178c2ecf20Sopenharmony_ci/* WOL Pattern Counter Registers (YUKON only) */ 11188c2ecf20Sopenharmony_ci WOL_PATT_CNT_0 = 0x0f38,/* 32 bit WOL Pattern Counter 3..0 */ 11198c2ecf20Sopenharmony_ci WOL_PATT_CNT_4 = 0x0f3c,/* 24 bit WOL Pattern Counter 6..4 */ 11208c2ecf20Sopenharmony_ci}; 11218c2ecf20Sopenharmony_ci#define WOL_REGS(port, x) (x + (port)*0x80) 11228c2ecf20Sopenharmony_ci 11238c2ecf20Sopenharmony_cienum { 11248c2ecf20Sopenharmony_ci WOL_PATT_RAM_1 = 0x1000,/* WOL Pattern RAM Link 1 */ 11258c2ecf20Sopenharmony_ci WOL_PATT_RAM_2 = 0x1400,/* WOL Pattern RAM Link 2 */ 11268c2ecf20Sopenharmony_ci}; 11278c2ecf20Sopenharmony_ci#define WOL_PATT_RAM_BASE(port) (WOL_PATT_RAM_1 + (port)*0x400) 11288c2ecf20Sopenharmony_ci 11298c2ecf20Sopenharmony_cienum { 11308c2ecf20Sopenharmony_ci BASE_GMAC_1 = 0x2800,/* GMAC 1 registers */ 11318c2ecf20Sopenharmony_ci BASE_GMAC_2 = 0x3800,/* GMAC 2 registers */ 11328c2ecf20Sopenharmony_ci}; 11338c2ecf20Sopenharmony_ci 11348c2ecf20Sopenharmony_ci/* 11358c2ecf20Sopenharmony_ci * Marvel-PHY Registers, indirect addressed over GMAC 11368c2ecf20Sopenharmony_ci */ 11378c2ecf20Sopenharmony_cienum { 11388c2ecf20Sopenharmony_ci PHY_MARV_CTRL = 0x00,/* 16 bit r/w PHY Control Register */ 11398c2ecf20Sopenharmony_ci PHY_MARV_STAT = 0x01,/* 16 bit r/o PHY Status Register */ 11408c2ecf20Sopenharmony_ci PHY_MARV_ID0 = 0x02,/* 16 bit r/o PHY ID0 Register */ 11418c2ecf20Sopenharmony_ci PHY_MARV_ID1 = 0x03,/* 16 bit r/o PHY ID1 Register */ 11428c2ecf20Sopenharmony_ci PHY_MARV_AUNE_ADV = 0x04,/* 16 bit r/w Auto-Neg. Advertisement */ 11438c2ecf20Sopenharmony_ci PHY_MARV_AUNE_LP = 0x05,/* 16 bit r/o Link Part Ability Reg */ 11448c2ecf20Sopenharmony_ci PHY_MARV_AUNE_EXP = 0x06,/* 16 bit r/o Auto-Neg. Expansion Reg */ 11458c2ecf20Sopenharmony_ci PHY_MARV_NEPG = 0x07,/* 16 bit r/w Next Page Register */ 11468c2ecf20Sopenharmony_ci PHY_MARV_NEPG_LP = 0x08,/* 16 bit r/o Next Page Link Partner */ 11478c2ecf20Sopenharmony_ci /* Marvel-specific registers */ 11488c2ecf20Sopenharmony_ci PHY_MARV_1000T_CTRL = 0x09,/* 16 bit r/w 1000Base-T Control Reg */ 11498c2ecf20Sopenharmony_ci PHY_MARV_1000T_STAT = 0x0a,/* 16 bit r/o 1000Base-T Status Reg */ 11508c2ecf20Sopenharmony_ci PHY_MARV_EXT_STAT = 0x0f,/* 16 bit r/o Extended Status Reg */ 11518c2ecf20Sopenharmony_ci PHY_MARV_PHY_CTRL = 0x10,/* 16 bit r/w PHY Specific Ctrl Reg */ 11528c2ecf20Sopenharmony_ci PHY_MARV_PHY_STAT = 0x11,/* 16 bit r/o PHY Specific Stat Reg */ 11538c2ecf20Sopenharmony_ci PHY_MARV_INT_MASK = 0x12,/* 16 bit r/w Interrupt Mask Reg */ 11548c2ecf20Sopenharmony_ci PHY_MARV_INT_STAT = 0x13,/* 16 bit r/o Interrupt Status Reg */ 11558c2ecf20Sopenharmony_ci PHY_MARV_EXT_CTRL = 0x14,/* 16 bit r/w Ext. PHY Specific Ctrl */ 11568c2ecf20Sopenharmony_ci PHY_MARV_RXE_CNT = 0x15,/* 16 bit r/w Receive Error Counter */ 11578c2ecf20Sopenharmony_ci PHY_MARV_EXT_ADR = 0x16,/* 16 bit r/w Ext. Ad. for Cable Diag. */ 11588c2ecf20Sopenharmony_ci PHY_MARV_PORT_IRQ = 0x17,/* 16 bit r/o Port 0 IRQ (88E1111 only) */ 11598c2ecf20Sopenharmony_ci PHY_MARV_LED_CTRL = 0x18,/* 16 bit r/w LED Control Reg */ 11608c2ecf20Sopenharmony_ci PHY_MARV_LED_OVER = 0x19,/* 16 bit r/w Manual LED Override Reg */ 11618c2ecf20Sopenharmony_ci PHY_MARV_EXT_CTRL_2 = 0x1a,/* 16 bit r/w Ext. PHY Specific Ctrl 2 */ 11628c2ecf20Sopenharmony_ci PHY_MARV_EXT_P_STAT = 0x1b,/* 16 bit r/w Ext. PHY Spec. Stat Reg */ 11638c2ecf20Sopenharmony_ci PHY_MARV_CABLE_DIAG = 0x1c,/* 16 bit r/o Cable Diagnostic Reg */ 11648c2ecf20Sopenharmony_ci PHY_MARV_PAGE_ADDR = 0x1d,/* 16 bit r/w Extended Page Address Reg */ 11658c2ecf20Sopenharmony_ci PHY_MARV_PAGE_DATA = 0x1e,/* 16 bit r/w Extended Page Data Reg */ 11668c2ecf20Sopenharmony_ci 11678c2ecf20Sopenharmony_ci/* for 10/100 Fast Ethernet PHY (88E3082 only) */ 11688c2ecf20Sopenharmony_ci PHY_MARV_FE_LED_PAR = 0x16,/* 16 bit r/w LED Parallel Select Reg. */ 11698c2ecf20Sopenharmony_ci PHY_MARV_FE_LED_SER = 0x17,/* 16 bit r/w LED Stream Select S. LED */ 11708c2ecf20Sopenharmony_ci PHY_MARV_FE_VCT_TX = 0x1a,/* 16 bit r/w VCT Reg. for TXP/N Pins */ 11718c2ecf20Sopenharmony_ci PHY_MARV_FE_VCT_RX = 0x1b,/* 16 bit r/o VCT Reg. for RXP/N Pins */ 11728c2ecf20Sopenharmony_ci PHY_MARV_FE_SPEC_2 = 0x1c,/* 16 bit r/w Specific Control Reg. 2 */ 11738c2ecf20Sopenharmony_ci}; 11748c2ecf20Sopenharmony_ci 11758c2ecf20Sopenharmony_cienum { 11768c2ecf20Sopenharmony_ci PHY_CT_RESET = 1<<15, /* Bit 15: (sc) clear all PHY related regs */ 11778c2ecf20Sopenharmony_ci PHY_CT_LOOP = 1<<14, /* Bit 14: enable Loopback over PHY */ 11788c2ecf20Sopenharmony_ci PHY_CT_SPS_LSB = 1<<13, /* Bit 13: Speed select, lower bit */ 11798c2ecf20Sopenharmony_ci PHY_CT_ANE = 1<<12, /* Bit 12: Auto-Negotiation Enabled */ 11808c2ecf20Sopenharmony_ci PHY_CT_PDOWN = 1<<11, /* Bit 11: Power Down Mode */ 11818c2ecf20Sopenharmony_ci PHY_CT_ISOL = 1<<10, /* Bit 10: Isolate Mode */ 11828c2ecf20Sopenharmony_ci PHY_CT_RE_CFG = 1<<9, /* Bit 9: (sc) Restart Auto-Negotiation */ 11838c2ecf20Sopenharmony_ci PHY_CT_DUP_MD = 1<<8, /* Bit 8: Duplex Mode */ 11848c2ecf20Sopenharmony_ci PHY_CT_COL_TST = 1<<7, /* Bit 7: Collision Test enabled */ 11858c2ecf20Sopenharmony_ci PHY_CT_SPS_MSB = 1<<6, /* Bit 6: Speed select, upper bit */ 11868c2ecf20Sopenharmony_ci}; 11878c2ecf20Sopenharmony_ci 11888c2ecf20Sopenharmony_cienum { 11898c2ecf20Sopenharmony_ci PHY_CT_SP1000 = PHY_CT_SPS_MSB, /* enable speed of 1000 Mbps */ 11908c2ecf20Sopenharmony_ci PHY_CT_SP100 = PHY_CT_SPS_LSB, /* enable speed of 100 Mbps */ 11918c2ecf20Sopenharmony_ci PHY_CT_SP10 = 0, /* enable speed of 10 Mbps */ 11928c2ecf20Sopenharmony_ci}; 11938c2ecf20Sopenharmony_ci 11948c2ecf20Sopenharmony_cienum { 11958c2ecf20Sopenharmony_ci PHY_ST_EXT_ST = 1<<8, /* Bit 8: Extended Status Present */ 11968c2ecf20Sopenharmony_ci 11978c2ecf20Sopenharmony_ci PHY_ST_PRE_SUP = 1<<6, /* Bit 6: Preamble Suppression */ 11988c2ecf20Sopenharmony_ci PHY_ST_AN_OVER = 1<<5, /* Bit 5: Auto-Negotiation Over */ 11998c2ecf20Sopenharmony_ci PHY_ST_REM_FLT = 1<<4, /* Bit 4: Remote Fault Condition Occurred */ 12008c2ecf20Sopenharmony_ci PHY_ST_AN_CAP = 1<<3, /* Bit 3: Auto-Negotiation Capability */ 12018c2ecf20Sopenharmony_ci PHY_ST_LSYNC = 1<<2, /* Bit 2: Link Synchronized */ 12028c2ecf20Sopenharmony_ci PHY_ST_JAB_DET = 1<<1, /* Bit 1: Jabber Detected */ 12038c2ecf20Sopenharmony_ci PHY_ST_EXT_REG = 1<<0, /* Bit 0: Extended Register available */ 12048c2ecf20Sopenharmony_ci}; 12058c2ecf20Sopenharmony_ci 12068c2ecf20Sopenharmony_cienum { 12078c2ecf20Sopenharmony_ci PHY_I1_OUI_MSK = 0x3f<<10, /* Bit 15..10: Organization Unique ID */ 12088c2ecf20Sopenharmony_ci PHY_I1_MOD_NUM = 0x3f<<4, /* Bit 9.. 4: Model Number */ 12098c2ecf20Sopenharmony_ci PHY_I1_REV_MSK = 0xf, /* Bit 3.. 0: Revision Number */ 12108c2ecf20Sopenharmony_ci}; 12118c2ecf20Sopenharmony_ci 12128c2ecf20Sopenharmony_ci/* different Marvell PHY Ids */ 12138c2ecf20Sopenharmony_cienum { 12148c2ecf20Sopenharmony_ci PHY_MARV_ID0_VAL= 0x0141, /* Marvell Unique Identifier */ 12158c2ecf20Sopenharmony_ci 12168c2ecf20Sopenharmony_ci PHY_BCOM_ID1_A1 = 0x6041, 12178c2ecf20Sopenharmony_ci PHY_BCOM_ID1_B2 = 0x6043, 12188c2ecf20Sopenharmony_ci PHY_BCOM_ID1_C0 = 0x6044, 12198c2ecf20Sopenharmony_ci PHY_BCOM_ID1_C5 = 0x6047, 12208c2ecf20Sopenharmony_ci 12218c2ecf20Sopenharmony_ci PHY_MARV_ID1_B0 = 0x0C23, /* Yukon (PHY 88E1011) */ 12228c2ecf20Sopenharmony_ci PHY_MARV_ID1_B2 = 0x0C25, /* Yukon-Plus (PHY 88E1011) */ 12238c2ecf20Sopenharmony_ci PHY_MARV_ID1_C2 = 0x0CC2, /* Yukon-EC (PHY 88E1111) */ 12248c2ecf20Sopenharmony_ci PHY_MARV_ID1_Y2 = 0x0C91, /* Yukon-2 (PHY 88E1112) */ 12258c2ecf20Sopenharmony_ci PHY_MARV_ID1_FE = 0x0C83, /* Yukon-FE (PHY 88E3082 Rev.A1) */ 12268c2ecf20Sopenharmony_ci PHY_MARV_ID1_ECU= 0x0CB0, /* Yukon-ECU (PHY 88E1149 Rev.B2?) */ 12278c2ecf20Sopenharmony_ci}; 12288c2ecf20Sopenharmony_ci 12298c2ecf20Sopenharmony_ci/* Advertisement register bits */ 12308c2ecf20Sopenharmony_cienum { 12318c2ecf20Sopenharmony_ci PHY_AN_NXT_PG = 1<<15, /* Bit 15: Request Next Page */ 12328c2ecf20Sopenharmony_ci PHY_AN_ACK = 1<<14, /* Bit 14: (ro) Acknowledge Received */ 12338c2ecf20Sopenharmony_ci PHY_AN_RF = 1<<13, /* Bit 13: Remote Fault Bits */ 12348c2ecf20Sopenharmony_ci 12358c2ecf20Sopenharmony_ci PHY_AN_PAUSE_ASYM = 1<<11,/* Bit 11: Try for asymmetric */ 12368c2ecf20Sopenharmony_ci PHY_AN_PAUSE_CAP = 1<<10, /* Bit 10: Try for pause */ 12378c2ecf20Sopenharmony_ci PHY_AN_100BASE4 = 1<<9, /* Bit 9: Try for 100mbps 4k packets */ 12388c2ecf20Sopenharmony_ci PHY_AN_100FULL = 1<<8, /* Bit 8: Try for 100mbps full-duplex */ 12398c2ecf20Sopenharmony_ci PHY_AN_100HALF = 1<<7, /* Bit 7: Try for 100mbps half-duplex */ 12408c2ecf20Sopenharmony_ci PHY_AN_10FULL = 1<<6, /* Bit 6: Try for 10mbps full-duplex */ 12418c2ecf20Sopenharmony_ci PHY_AN_10HALF = 1<<5, /* Bit 5: Try for 10mbps half-duplex */ 12428c2ecf20Sopenharmony_ci PHY_AN_CSMA = 1<<0, /* Bit 0: Only selector supported */ 12438c2ecf20Sopenharmony_ci PHY_AN_SEL = 0x1f, /* Bit 4..0: Selector Field, 00001=Ethernet*/ 12448c2ecf20Sopenharmony_ci PHY_AN_FULL = PHY_AN_100FULL | PHY_AN_10FULL | PHY_AN_CSMA, 12458c2ecf20Sopenharmony_ci PHY_AN_ALL = PHY_AN_10HALF | PHY_AN_10FULL | 12468c2ecf20Sopenharmony_ci PHY_AN_100HALF | PHY_AN_100FULL, 12478c2ecf20Sopenharmony_ci}; 12488c2ecf20Sopenharmony_ci 12498c2ecf20Sopenharmony_ci/***** PHY_BCOM_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/ 12508c2ecf20Sopenharmony_ci/***** PHY_MARV_1000T_STAT 16 bit r/o 1000Base-T Status Reg *****/ 12518c2ecf20Sopenharmony_cienum { 12528c2ecf20Sopenharmony_ci PHY_B_1000S_MSF = 1<<15, /* Bit 15: Master/Slave Fault */ 12538c2ecf20Sopenharmony_ci PHY_B_1000S_MSR = 1<<14, /* Bit 14: Master/Slave Result */ 12548c2ecf20Sopenharmony_ci PHY_B_1000S_LRS = 1<<13, /* Bit 13: Local Receiver Status */ 12558c2ecf20Sopenharmony_ci PHY_B_1000S_RRS = 1<<12, /* Bit 12: Remote Receiver Status */ 12568c2ecf20Sopenharmony_ci PHY_B_1000S_LP_FD = 1<<11, /* Bit 11: Link Partner can FD */ 12578c2ecf20Sopenharmony_ci PHY_B_1000S_LP_HD = 1<<10, /* Bit 10: Link Partner can HD */ 12588c2ecf20Sopenharmony_ci /* Bit 9..8: reserved */ 12598c2ecf20Sopenharmony_ci PHY_B_1000S_IEC = 0xff, /* Bit 7..0: Idle Error Count */ 12608c2ecf20Sopenharmony_ci}; 12618c2ecf20Sopenharmony_ci 12628c2ecf20Sopenharmony_ci/** Marvell-Specific */ 12638c2ecf20Sopenharmony_cienum { 12648c2ecf20Sopenharmony_ci PHY_M_AN_NXT_PG = 1<<15, /* Request Next Page */ 12658c2ecf20Sopenharmony_ci PHY_M_AN_ACK = 1<<14, /* (ro) Acknowledge Received */ 12668c2ecf20Sopenharmony_ci PHY_M_AN_RF = 1<<13, /* Remote Fault */ 12678c2ecf20Sopenharmony_ci 12688c2ecf20Sopenharmony_ci PHY_M_AN_ASP = 1<<11, /* Asymmetric Pause */ 12698c2ecf20Sopenharmony_ci PHY_M_AN_PC = 1<<10, /* MAC Pause implemented */ 12708c2ecf20Sopenharmony_ci PHY_M_AN_100_T4 = 1<<9, /* Not cap. 100Base-T4 (always 0) */ 12718c2ecf20Sopenharmony_ci PHY_M_AN_100_FD = 1<<8, /* Advertise 100Base-TX Full Duplex */ 12728c2ecf20Sopenharmony_ci PHY_M_AN_100_HD = 1<<7, /* Advertise 100Base-TX Half Duplex */ 12738c2ecf20Sopenharmony_ci PHY_M_AN_10_FD = 1<<6, /* Advertise 10Base-TX Full Duplex */ 12748c2ecf20Sopenharmony_ci PHY_M_AN_10_HD = 1<<5, /* Advertise 10Base-TX Half Duplex */ 12758c2ecf20Sopenharmony_ci PHY_M_AN_SEL_MSK =0x1f<<4, /* Bit 4.. 0: Selector Field Mask */ 12768c2ecf20Sopenharmony_ci}; 12778c2ecf20Sopenharmony_ci 12788c2ecf20Sopenharmony_ci/* special defines for FIBER (88E1011S only) */ 12798c2ecf20Sopenharmony_cienum { 12808c2ecf20Sopenharmony_ci PHY_M_AN_ASP_X = 1<<8, /* Asymmetric Pause */ 12818c2ecf20Sopenharmony_ci PHY_M_AN_PC_X = 1<<7, /* MAC Pause implemented */ 12828c2ecf20Sopenharmony_ci PHY_M_AN_1000X_AHD = 1<<6, /* Advertise 10000Base-X Half Duplex */ 12838c2ecf20Sopenharmony_ci PHY_M_AN_1000X_AFD = 1<<5, /* Advertise 10000Base-X Full Duplex */ 12848c2ecf20Sopenharmony_ci}; 12858c2ecf20Sopenharmony_ci 12868c2ecf20Sopenharmony_ci/* Pause Bits (PHY_M_AN_ASP_X and PHY_M_AN_PC_X) encoding */ 12878c2ecf20Sopenharmony_cienum { 12888c2ecf20Sopenharmony_ci PHY_M_P_NO_PAUSE_X = 0<<7,/* Bit 8.. 7: no Pause Mode */ 12898c2ecf20Sopenharmony_ci PHY_M_P_SYM_MD_X = 1<<7, /* Bit 8.. 7: symmetric Pause Mode */ 12908c2ecf20Sopenharmony_ci PHY_M_P_ASYM_MD_X = 2<<7,/* Bit 8.. 7: asymmetric Pause Mode */ 12918c2ecf20Sopenharmony_ci PHY_M_P_BOTH_MD_X = 3<<7,/* Bit 8.. 7: both Pause Mode */ 12928c2ecf20Sopenharmony_ci}; 12938c2ecf20Sopenharmony_ci 12948c2ecf20Sopenharmony_ci/***** PHY_MARV_1000T_CTRL 16 bit r/w 1000Base-T Control Reg *****/ 12958c2ecf20Sopenharmony_cienum { 12968c2ecf20Sopenharmony_ci PHY_M_1000C_TEST = 7<<13,/* Bit 15..13: Test Modes */ 12978c2ecf20Sopenharmony_ci PHY_M_1000C_MSE = 1<<12, /* Manual Master/Slave Enable */ 12988c2ecf20Sopenharmony_ci PHY_M_1000C_MSC = 1<<11, /* M/S Configuration (1=Master) */ 12998c2ecf20Sopenharmony_ci PHY_M_1000C_MPD = 1<<10, /* Multi-Port Device */ 13008c2ecf20Sopenharmony_ci PHY_M_1000C_AFD = 1<<9, /* Advertise Full Duplex */ 13018c2ecf20Sopenharmony_ci PHY_M_1000C_AHD = 1<<8, /* Advertise Half Duplex */ 13028c2ecf20Sopenharmony_ci}; 13038c2ecf20Sopenharmony_ci 13048c2ecf20Sopenharmony_ci/***** PHY_MARV_PHY_CTRL 16 bit r/w PHY Specific Ctrl Reg *****/ 13058c2ecf20Sopenharmony_cienum { 13068c2ecf20Sopenharmony_ci PHY_M_PC_TX_FFD_MSK = 3<<14,/* Bit 15..14: Tx FIFO Depth Mask */ 13078c2ecf20Sopenharmony_ci PHY_M_PC_RX_FFD_MSK = 3<<12,/* Bit 13..12: Rx FIFO Depth Mask */ 13088c2ecf20Sopenharmony_ci PHY_M_PC_ASS_CRS_TX = 1<<11, /* Assert CRS on Transmit */ 13098c2ecf20Sopenharmony_ci PHY_M_PC_FL_GOOD = 1<<10, /* Force Link Good */ 13108c2ecf20Sopenharmony_ci PHY_M_PC_EN_DET_MSK = 3<<8,/* Bit 9.. 8: Energy Detect Mask */ 13118c2ecf20Sopenharmony_ci PHY_M_PC_ENA_EXT_D = 1<<7, /* Enable Ext. Distance (10BT) */ 13128c2ecf20Sopenharmony_ci PHY_M_PC_MDIX_MSK = 3<<5,/* Bit 6.. 5: MDI/MDIX Config. Mask */ 13138c2ecf20Sopenharmony_ci PHY_M_PC_DIS_125CLK = 1<<4, /* Disable 125 CLK */ 13148c2ecf20Sopenharmony_ci PHY_M_PC_MAC_POW_UP = 1<<3, /* MAC Power up */ 13158c2ecf20Sopenharmony_ci PHY_M_PC_SQE_T_ENA = 1<<2, /* SQE Test Enabled */ 13168c2ecf20Sopenharmony_ci PHY_M_PC_POL_R_DIS = 1<<1, /* Polarity Reversal Disabled */ 13178c2ecf20Sopenharmony_ci PHY_M_PC_DIS_JABBER = 1<<0, /* Disable Jabber */ 13188c2ecf20Sopenharmony_ci}; 13198c2ecf20Sopenharmony_ci 13208c2ecf20Sopenharmony_cienum { 13218c2ecf20Sopenharmony_ci PHY_M_PC_EN_DET = 2<<8, /* Energy Detect (Mode 1) */ 13228c2ecf20Sopenharmony_ci PHY_M_PC_EN_DET_PLUS = 3<<8, /* Energy Detect Plus (Mode 2) */ 13238c2ecf20Sopenharmony_ci}; 13248c2ecf20Sopenharmony_ci 13258c2ecf20Sopenharmony_ci#define PHY_M_PC_MDI_XMODE(x) (((u16)(x)<<5) & PHY_M_PC_MDIX_MSK) 13268c2ecf20Sopenharmony_ci 13278c2ecf20Sopenharmony_cienum { 13288c2ecf20Sopenharmony_ci PHY_M_PC_MAN_MDI = 0, /* 00 = Manual MDI configuration */ 13298c2ecf20Sopenharmony_ci PHY_M_PC_MAN_MDIX = 1, /* 01 = Manual MDIX configuration */ 13308c2ecf20Sopenharmony_ci PHY_M_PC_ENA_AUTO = 3, /* 11 = Enable Automatic Crossover */ 13318c2ecf20Sopenharmony_ci}; 13328c2ecf20Sopenharmony_ci 13338c2ecf20Sopenharmony_ci/* for Yukon-EC Ultra Gigabit Ethernet PHY (88E1149 only) */ 13348c2ecf20Sopenharmony_cienum { 13358c2ecf20Sopenharmony_ci PHY_M_PC_COP_TX_DIS = 1<<3, /* Copper Transmitter Disable */ 13368c2ecf20Sopenharmony_ci PHY_M_PC_POW_D_ENA = 1<<2, /* Power Down Enable */ 13378c2ecf20Sopenharmony_ci}; 13388c2ecf20Sopenharmony_ci 13398c2ecf20Sopenharmony_ci/* for 10/100 Fast Ethernet PHY (88E3082 only) */ 13408c2ecf20Sopenharmony_cienum { 13418c2ecf20Sopenharmony_ci PHY_M_PC_ENA_DTE_DT = 1<<15, /* Enable Data Terminal Equ. (DTE) Detect */ 13428c2ecf20Sopenharmony_ci PHY_M_PC_ENA_ENE_DT = 1<<14, /* Enable Energy Detect (sense & pulse) */ 13438c2ecf20Sopenharmony_ci PHY_M_PC_DIS_NLP_CK = 1<<13, /* Disable Normal Link Puls (NLP) Check */ 13448c2ecf20Sopenharmony_ci PHY_M_PC_ENA_LIP_NP = 1<<12, /* Enable Link Partner Next Page Reg. */ 13458c2ecf20Sopenharmony_ci PHY_M_PC_DIS_NLP_GN = 1<<11, /* Disable Normal Link Puls Generation */ 13468c2ecf20Sopenharmony_ci 13478c2ecf20Sopenharmony_ci PHY_M_PC_DIS_SCRAMB = 1<<9, /* Disable Scrambler */ 13488c2ecf20Sopenharmony_ci PHY_M_PC_DIS_FEFI = 1<<8, /* Disable Far End Fault Indic. (FEFI) */ 13498c2ecf20Sopenharmony_ci 13508c2ecf20Sopenharmony_ci PHY_M_PC_SH_TP_SEL = 1<<6, /* Shielded Twisted Pair Select */ 13518c2ecf20Sopenharmony_ci PHY_M_PC_RX_FD_MSK = 3<<2,/* Bit 3.. 2: Rx FIFO Depth Mask */ 13528c2ecf20Sopenharmony_ci}; 13538c2ecf20Sopenharmony_ci 13548c2ecf20Sopenharmony_ci/***** PHY_MARV_PHY_STAT 16 bit r/o PHY Specific Status Reg *****/ 13558c2ecf20Sopenharmony_cienum { 13568c2ecf20Sopenharmony_ci PHY_M_PS_SPEED_MSK = 3<<14, /* Bit 15..14: Speed Mask */ 13578c2ecf20Sopenharmony_ci PHY_M_PS_SPEED_1000 = 1<<15, /* 10 = 1000 Mbps */ 13588c2ecf20Sopenharmony_ci PHY_M_PS_SPEED_100 = 1<<14, /* 01 = 100 Mbps */ 13598c2ecf20Sopenharmony_ci PHY_M_PS_SPEED_10 = 0, /* 00 = 10 Mbps */ 13608c2ecf20Sopenharmony_ci PHY_M_PS_FULL_DUP = 1<<13, /* Full Duplex */ 13618c2ecf20Sopenharmony_ci PHY_M_PS_PAGE_REC = 1<<12, /* Page Received */ 13628c2ecf20Sopenharmony_ci PHY_M_PS_SPDUP_RES = 1<<11, /* Speed & Duplex Resolved */ 13638c2ecf20Sopenharmony_ci PHY_M_PS_LINK_UP = 1<<10, /* Link Up */ 13648c2ecf20Sopenharmony_ci PHY_M_PS_CABLE_MSK = 7<<7, /* Bit 9.. 7: Cable Length Mask */ 13658c2ecf20Sopenharmony_ci PHY_M_PS_MDI_X_STAT = 1<<6, /* MDI Crossover Stat (1=MDIX) */ 13668c2ecf20Sopenharmony_ci PHY_M_PS_DOWNS_STAT = 1<<5, /* Downshift Status (1=downsh.) */ 13678c2ecf20Sopenharmony_ci PHY_M_PS_ENDET_STAT = 1<<4, /* Energy Detect Status (1=act) */ 13688c2ecf20Sopenharmony_ci PHY_M_PS_TX_P_EN = 1<<3, /* Tx Pause Enabled */ 13698c2ecf20Sopenharmony_ci PHY_M_PS_RX_P_EN = 1<<2, /* Rx Pause Enabled */ 13708c2ecf20Sopenharmony_ci PHY_M_PS_POL_REV = 1<<1, /* Polarity Reversed */ 13718c2ecf20Sopenharmony_ci PHY_M_PS_JABBER = 1<<0, /* Jabber */ 13728c2ecf20Sopenharmony_ci}; 13738c2ecf20Sopenharmony_ci 13748c2ecf20Sopenharmony_ci#define PHY_M_PS_PAUSE_MSK (PHY_M_PS_TX_P_EN | PHY_M_PS_RX_P_EN) 13758c2ecf20Sopenharmony_ci 13768c2ecf20Sopenharmony_ci/* for 10/100 Fast Ethernet PHY (88E3082 only) */ 13778c2ecf20Sopenharmony_cienum { 13788c2ecf20Sopenharmony_ci PHY_M_PS_DTE_DETECT = 1<<15, /* Data Terminal Equipment (DTE) Detected */ 13798c2ecf20Sopenharmony_ci PHY_M_PS_RES_SPEED = 1<<14, /* Resolved Speed (1=100 Mbps, 0=10 Mbps */ 13808c2ecf20Sopenharmony_ci}; 13818c2ecf20Sopenharmony_ci 13828c2ecf20Sopenharmony_cienum { 13838c2ecf20Sopenharmony_ci PHY_M_IS_AN_ERROR = 1<<15, /* Auto-Negotiation Error */ 13848c2ecf20Sopenharmony_ci PHY_M_IS_LSP_CHANGE = 1<<14, /* Link Speed Changed */ 13858c2ecf20Sopenharmony_ci PHY_M_IS_DUP_CHANGE = 1<<13, /* Duplex Mode Changed */ 13868c2ecf20Sopenharmony_ci PHY_M_IS_AN_PR = 1<<12, /* Page Received */ 13878c2ecf20Sopenharmony_ci PHY_M_IS_AN_COMPL = 1<<11, /* Auto-Negotiation Completed */ 13888c2ecf20Sopenharmony_ci PHY_M_IS_LST_CHANGE = 1<<10, /* Link Status Changed */ 13898c2ecf20Sopenharmony_ci PHY_M_IS_SYMB_ERROR = 1<<9, /* Symbol Error */ 13908c2ecf20Sopenharmony_ci PHY_M_IS_FALSE_CARR = 1<<8, /* False Carrier */ 13918c2ecf20Sopenharmony_ci PHY_M_IS_FIFO_ERROR = 1<<7, /* FIFO Overflow/Underrun Error */ 13928c2ecf20Sopenharmony_ci PHY_M_IS_MDI_CHANGE = 1<<6, /* MDI Crossover Changed */ 13938c2ecf20Sopenharmony_ci PHY_M_IS_DOWNSH_DET = 1<<5, /* Downshift Detected */ 13948c2ecf20Sopenharmony_ci PHY_M_IS_END_CHANGE = 1<<4, /* Energy Detect Changed */ 13958c2ecf20Sopenharmony_ci 13968c2ecf20Sopenharmony_ci PHY_M_IS_DTE_CHANGE = 1<<2, /* DTE Power Det. Status Changed */ 13978c2ecf20Sopenharmony_ci PHY_M_IS_POL_CHANGE = 1<<1, /* Polarity Changed */ 13988c2ecf20Sopenharmony_ci PHY_M_IS_JABBER = 1<<0, /* Jabber */ 13998c2ecf20Sopenharmony_ci 14008c2ecf20Sopenharmony_ci PHY_M_DEF_MSK = PHY_M_IS_LSP_CHANGE | PHY_M_IS_LST_CHANGE 14018c2ecf20Sopenharmony_ci | PHY_M_IS_DUP_CHANGE, 14028c2ecf20Sopenharmony_ci PHY_M_AN_MSK = PHY_M_IS_AN_ERROR | PHY_M_IS_AN_COMPL, 14038c2ecf20Sopenharmony_ci}; 14048c2ecf20Sopenharmony_ci 14058c2ecf20Sopenharmony_ci 14068c2ecf20Sopenharmony_ci/***** PHY_MARV_EXT_CTRL 16 bit r/w Ext. PHY Specific Ctrl *****/ 14078c2ecf20Sopenharmony_cienum { 14088c2ecf20Sopenharmony_ci PHY_M_EC_ENA_BC_EXT = 1<<15, /* Enable Block Carr. Ext. (88E1111 only) */ 14098c2ecf20Sopenharmony_ci PHY_M_EC_ENA_LIN_LB = 1<<14, /* Enable Line Loopback (88E1111 only) */ 14108c2ecf20Sopenharmony_ci 14118c2ecf20Sopenharmony_ci PHY_M_EC_DIS_LINK_P = 1<<12, /* Disable Link Pulses (88E1111 only) */ 14128c2ecf20Sopenharmony_ci PHY_M_EC_M_DSC_MSK = 3<<10, /* Bit 11..10: Master Downshift Counter */ 14138c2ecf20Sopenharmony_ci /* (88E1011 only) */ 14148c2ecf20Sopenharmony_ci PHY_M_EC_S_DSC_MSK = 3<<8,/* Bit 9.. 8: Slave Downshift Counter */ 14158c2ecf20Sopenharmony_ci /* (88E1011 only) */ 14168c2ecf20Sopenharmony_ci PHY_M_EC_M_DSC_MSK2 = 7<<9,/* Bit 11.. 9: Master Downshift Counter */ 14178c2ecf20Sopenharmony_ci /* (88E1111 only) */ 14188c2ecf20Sopenharmony_ci PHY_M_EC_DOWN_S_ENA = 1<<8, /* Downshift Enable (88E1111 only) */ 14198c2ecf20Sopenharmony_ci /* !!! Errata in spec. (1 = disable) */ 14208c2ecf20Sopenharmony_ci PHY_M_EC_RX_TIM_CT = 1<<7, /* RGMII Rx Timing Control*/ 14218c2ecf20Sopenharmony_ci PHY_M_EC_MAC_S_MSK = 7<<4,/* Bit 6.. 4: Def. MAC interface speed */ 14228c2ecf20Sopenharmony_ci PHY_M_EC_FIB_AN_ENA = 1<<3, /* Fiber Auto-Neg. Enable (88E1011S only) */ 14238c2ecf20Sopenharmony_ci PHY_M_EC_DTE_D_ENA = 1<<2, /* DTE Detect Enable (88E1111 only) */ 14248c2ecf20Sopenharmony_ci PHY_M_EC_TX_TIM_CT = 1<<1, /* RGMII Tx Timing Control */ 14258c2ecf20Sopenharmony_ci PHY_M_EC_TRANS_DIS = 1<<0, /* Transmitter Disable (88E1111 only) */ 14268c2ecf20Sopenharmony_ci 14278c2ecf20Sopenharmony_ci PHY_M_10B_TE_ENABLE = 1<<7, /* 10Base-Te Enable (88E8079 and above) */ 14288c2ecf20Sopenharmony_ci}; 14298c2ecf20Sopenharmony_ci#define PHY_M_EC_M_DSC(x) ((u16)(x)<<10 & PHY_M_EC_M_DSC_MSK) 14308c2ecf20Sopenharmony_ci /* 00=1x; 01=2x; 10=3x; 11=4x */ 14318c2ecf20Sopenharmony_ci#define PHY_M_EC_S_DSC(x) ((u16)(x)<<8 & PHY_M_EC_S_DSC_MSK) 14328c2ecf20Sopenharmony_ci /* 00=dis; 01=1x; 10=2x; 11=3x */ 14338c2ecf20Sopenharmony_ci#define PHY_M_EC_DSC_2(x) ((u16)(x)<<9 & PHY_M_EC_M_DSC_MSK2) 14348c2ecf20Sopenharmony_ci /* 000=1x; 001=2x; 010=3x; 011=4x */ 14358c2ecf20Sopenharmony_ci#define PHY_M_EC_MAC_S(x) ((u16)(x)<<4 & PHY_M_EC_MAC_S_MSK) 14368c2ecf20Sopenharmony_ci /* 01X=0; 110=2.5; 111=25 (MHz) */ 14378c2ecf20Sopenharmony_ci 14388c2ecf20Sopenharmony_ci/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */ 14398c2ecf20Sopenharmony_cienum { 14408c2ecf20Sopenharmony_ci PHY_M_PC_DIS_LINK_Pa = 1<<15,/* Disable Link Pulses */ 14418c2ecf20Sopenharmony_ci PHY_M_PC_DSC_MSK = 7<<12,/* Bit 14..12: Downshift Counter */ 14428c2ecf20Sopenharmony_ci PHY_M_PC_DOWN_S_ENA = 1<<11,/* Downshift Enable */ 14438c2ecf20Sopenharmony_ci}; 14448c2ecf20Sopenharmony_ci/* !!! Errata in spec. (1 = disable) */ 14458c2ecf20Sopenharmony_ci 14468c2ecf20Sopenharmony_ci#define PHY_M_PC_DSC(x) (((u16)(x)<<12) & PHY_M_PC_DSC_MSK) 14478c2ecf20Sopenharmony_ci /* 100=5x; 101=6x; 110=7x; 111=8x */ 14488c2ecf20Sopenharmony_cienum { 14498c2ecf20Sopenharmony_ci MAC_TX_CLK_0_MHZ = 2, 14508c2ecf20Sopenharmony_ci MAC_TX_CLK_2_5_MHZ = 6, 14518c2ecf20Sopenharmony_ci MAC_TX_CLK_25_MHZ = 7, 14528c2ecf20Sopenharmony_ci}; 14538c2ecf20Sopenharmony_ci 14548c2ecf20Sopenharmony_ci/***** PHY_MARV_LED_CTRL 16 bit r/w LED Control Reg *****/ 14558c2ecf20Sopenharmony_cienum { 14568c2ecf20Sopenharmony_ci PHY_M_LEDC_DIS_LED = 1<<15, /* Disable LED */ 14578c2ecf20Sopenharmony_ci PHY_M_LEDC_PULS_MSK = 7<<12,/* Bit 14..12: Pulse Stretch Mask */ 14588c2ecf20Sopenharmony_ci PHY_M_LEDC_F_INT = 1<<11, /* Force Interrupt */ 14598c2ecf20Sopenharmony_ci PHY_M_LEDC_BL_R_MSK = 7<<8,/* Bit 10.. 8: Blink Rate Mask */ 14608c2ecf20Sopenharmony_ci PHY_M_LEDC_DP_C_LSB = 1<<7, /* Duplex Control (LSB, 88E1111 only) */ 14618c2ecf20Sopenharmony_ci PHY_M_LEDC_TX_C_LSB = 1<<6, /* Tx Control (LSB, 88E1111 only) */ 14628c2ecf20Sopenharmony_ci PHY_M_LEDC_LK_C_MSK = 7<<3,/* Bit 5.. 3: Link Control Mask */ 14638c2ecf20Sopenharmony_ci /* (88E1111 only) */ 14648c2ecf20Sopenharmony_ci}; 14658c2ecf20Sopenharmony_ci 14668c2ecf20Sopenharmony_cienum { 14678c2ecf20Sopenharmony_ci PHY_M_LEDC_LINK_MSK = 3<<3,/* Bit 4.. 3: Link Control Mask */ 14688c2ecf20Sopenharmony_ci /* (88E1011 only) */ 14698c2ecf20Sopenharmony_ci PHY_M_LEDC_DP_CTRL = 1<<2, /* Duplex Control */ 14708c2ecf20Sopenharmony_ci PHY_M_LEDC_DP_C_MSB = 1<<2, /* Duplex Control (MSB, 88E1111 only) */ 14718c2ecf20Sopenharmony_ci PHY_M_LEDC_RX_CTRL = 1<<1, /* Rx Activity / Link */ 14728c2ecf20Sopenharmony_ci PHY_M_LEDC_TX_CTRL = 1<<0, /* Tx Activity / Link */ 14738c2ecf20Sopenharmony_ci PHY_M_LEDC_TX_C_MSB = 1<<0, /* Tx Control (MSB, 88E1111 only) */ 14748c2ecf20Sopenharmony_ci}; 14758c2ecf20Sopenharmony_ci 14768c2ecf20Sopenharmony_ci#define PHY_M_LED_PULS_DUR(x) (((u16)(x)<<12) & PHY_M_LEDC_PULS_MSK) 14778c2ecf20Sopenharmony_ci 14788c2ecf20Sopenharmony_ci/***** PHY_MARV_PHY_STAT (page 3)16 bit r/w Polarity Control Reg. *****/ 14798c2ecf20Sopenharmony_cienum { 14808c2ecf20Sopenharmony_ci PHY_M_POLC_LS1M_MSK = 0xf<<12, /* Bit 15..12: LOS,STAT1 Mix % Mask */ 14818c2ecf20Sopenharmony_ci PHY_M_POLC_IS0M_MSK = 0xf<<8, /* Bit 11.. 8: INIT,STAT0 Mix % Mask */ 14828c2ecf20Sopenharmony_ci PHY_M_POLC_LOS_MSK = 0x3<<6, /* Bit 7.. 6: LOS Pol. Ctrl. Mask */ 14838c2ecf20Sopenharmony_ci PHY_M_POLC_INIT_MSK = 0x3<<4, /* Bit 5.. 4: INIT Pol. Ctrl. Mask */ 14848c2ecf20Sopenharmony_ci PHY_M_POLC_STA1_MSK = 0x3<<2, /* Bit 3.. 2: STAT1 Pol. Ctrl. Mask */ 14858c2ecf20Sopenharmony_ci PHY_M_POLC_STA0_MSK = 0x3, /* Bit 1.. 0: STAT0 Pol. Ctrl. Mask */ 14868c2ecf20Sopenharmony_ci}; 14878c2ecf20Sopenharmony_ci 14888c2ecf20Sopenharmony_ci#define PHY_M_POLC_LS1_P_MIX(x) (((x)<<12) & PHY_M_POLC_LS1M_MSK) 14898c2ecf20Sopenharmony_ci#define PHY_M_POLC_IS0_P_MIX(x) (((x)<<8) & PHY_M_POLC_IS0M_MSK) 14908c2ecf20Sopenharmony_ci#define PHY_M_POLC_LOS_CTRL(x) (((x)<<6) & PHY_M_POLC_LOS_MSK) 14918c2ecf20Sopenharmony_ci#define PHY_M_POLC_INIT_CTRL(x) (((x)<<4) & PHY_M_POLC_INIT_MSK) 14928c2ecf20Sopenharmony_ci#define PHY_M_POLC_STA1_CTRL(x) (((x)<<2) & PHY_M_POLC_STA1_MSK) 14938c2ecf20Sopenharmony_ci#define PHY_M_POLC_STA0_CTRL(x) (((x)<<0) & PHY_M_POLC_STA0_MSK) 14948c2ecf20Sopenharmony_ci 14958c2ecf20Sopenharmony_cienum { 14968c2ecf20Sopenharmony_ci PULS_NO_STR = 0,/* no pulse stretching */ 14978c2ecf20Sopenharmony_ci PULS_21MS = 1,/* 21 ms to 42 ms */ 14988c2ecf20Sopenharmony_ci PULS_42MS = 2,/* 42 ms to 84 ms */ 14998c2ecf20Sopenharmony_ci PULS_84MS = 3,/* 84 ms to 170 ms */ 15008c2ecf20Sopenharmony_ci PULS_170MS = 4,/* 170 ms to 340 ms */ 15018c2ecf20Sopenharmony_ci PULS_340MS = 5,/* 340 ms to 670 ms */ 15028c2ecf20Sopenharmony_ci PULS_670MS = 6,/* 670 ms to 1.3 s */ 15038c2ecf20Sopenharmony_ci PULS_1300MS = 7,/* 1.3 s to 2.7 s */ 15048c2ecf20Sopenharmony_ci}; 15058c2ecf20Sopenharmony_ci 15068c2ecf20Sopenharmony_ci#define PHY_M_LED_BLINK_RT(x) (((u16)(x)<<8) & PHY_M_LEDC_BL_R_MSK) 15078c2ecf20Sopenharmony_ci 15088c2ecf20Sopenharmony_cienum { 15098c2ecf20Sopenharmony_ci BLINK_42MS = 0,/* 42 ms */ 15108c2ecf20Sopenharmony_ci BLINK_84MS = 1,/* 84 ms */ 15118c2ecf20Sopenharmony_ci BLINK_170MS = 2,/* 170 ms */ 15128c2ecf20Sopenharmony_ci BLINK_340MS = 3,/* 340 ms */ 15138c2ecf20Sopenharmony_ci BLINK_670MS = 4,/* 670 ms */ 15148c2ecf20Sopenharmony_ci}; 15158c2ecf20Sopenharmony_ci 15168c2ecf20Sopenharmony_ci/***** PHY_MARV_LED_OVER 16 bit r/w Manual LED Override Reg *****/ 15178c2ecf20Sopenharmony_ci#define PHY_M_LED_MO_SGMII(x) ((x)<<14) /* Bit 15..14: SGMII AN Timer */ 15188c2ecf20Sopenharmony_ci 15198c2ecf20Sopenharmony_ci#define PHY_M_LED_MO_DUP(x) ((x)<<10) /* Bit 11..10: Duplex */ 15208c2ecf20Sopenharmony_ci#define PHY_M_LED_MO_10(x) ((x)<<8) /* Bit 9.. 8: Link 10 */ 15218c2ecf20Sopenharmony_ci#define PHY_M_LED_MO_100(x) ((x)<<6) /* Bit 7.. 6: Link 100 */ 15228c2ecf20Sopenharmony_ci#define PHY_M_LED_MO_1000(x) ((x)<<4) /* Bit 5.. 4: Link 1000 */ 15238c2ecf20Sopenharmony_ci#define PHY_M_LED_MO_RX(x) ((x)<<2) /* Bit 3.. 2: Rx */ 15248c2ecf20Sopenharmony_ci#define PHY_M_LED_MO_TX(x) ((x)<<0) /* Bit 1.. 0: Tx */ 15258c2ecf20Sopenharmony_ci 15268c2ecf20Sopenharmony_cienum led_mode { 15278c2ecf20Sopenharmony_ci MO_LED_NORM = 0, 15288c2ecf20Sopenharmony_ci MO_LED_BLINK = 1, 15298c2ecf20Sopenharmony_ci MO_LED_OFF = 2, 15308c2ecf20Sopenharmony_ci MO_LED_ON = 3, 15318c2ecf20Sopenharmony_ci}; 15328c2ecf20Sopenharmony_ci 15338c2ecf20Sopenharmony_ci/***** PHY_MARV_EXT_CTRL_2 16 bit r/w Ext. PHY Specific Ctrl 2 *****/ 15348c2ecf20Sopenharmony_cienum { 15358c2ecf20Sopenharmony_ci PHY_M_EC2_FI_IMPED = 1<<6, /* Fiber Input Impedance */ 15368c2ecf20Sopenharmony_ci PHY_M_EC2_FO_IMPED = 1<<5, /* Fiber Output Impedance */ 15378c2ecf20Sopenharmony_ci PHY_M_EC2_FO_M_CLK = 1<<4, /* Fiber Mode Clock Enable */ 15388c2ecf20Sopenharmony_ci PHY_M_EC2_FO_BOOST = 1<<3, /* Fiber Output Boost */ 15398c2ecf20Sopenharmony_ci PHY_M_EC2_FO_AM_MSK = 7,/* Bit 2.. 0: Fiber Output Amplitude */ 15408c2ecf20Sopenharmony_ci}; 15418c2ecf20Sopenharmony_ci 15428c2ecf20Sopenharmony_ci/***** PHY_MARV_EXT_P_STAT 16 bit r/w Ext. PHY Specific Status *****/ 15438c2ecf20Sopenharmony_cienum { 15448c2ecf20Sopenharmony_ci PHY_M_FC_AUTO_SEL = 1<<15, /* Fiber/Copper Auto Sel. Dis. */ 15458c2ecf20Sopenharmony_ci PHY_M_FC_AN_REG_ACC = 1<<14, /* Fiber/Copper AN Reg. Access */ 15468c2ecf20Sopenharmony_ci PHY_M_FC_RESOLUTION = 1<<13, /* Fiber/Copper Resolution */ 15478c2ecf20Sopenharmony_ci PHY_M_SER_IF_AN_BP = 1<<12, /* Ser. IF AN Bypass Enable */ 15488c2ecf20Sopenharmony_ci PHY_M_SER_IF_BP_ST = 1<<11, /* Ser. IF AN Bypass Status */ 15498c2ecf20Sopenharmony_ci PHY_M_IRQ_POLARITY = 1<<10, /* IRQ polarity */ 15508c2ecf20Sopenharmony_ci PHY_M_DIS_AUT_MED = 1<<9, /* Disable Aut. Medium Reg. Selection */ 15518c2ecf20Sopenharmony_ci /* (88E1111 only) */ 15528c2ecf20Sopenharmony_ci 15538c2ecf20Sopenharmony_ci PHY_M_UNDOC1 = 1<<7, /* undocumented bit !! */ 15548c2ecf20Sopenharmony_ci PHY_M_DTE_POW_STAT = 1<<4, /* DTE Power Status (88E1111 only) */ 15558c2ecf20Sopenharmony_ci PHY_M_MODE_MASK = 0xf, /* Bit 3.. 0: copy of HWCFG MODE[3:0] */ 15568c2ecf20Sopenharmony_ci}; 15578c2ecf20Sopenharmony_ci 15588c2ecf20Sopenharmony_ci/* for 10/100 Fast Ethernet PHY (88E3082 only) */ 15598c2ecf20Sopenharmony_ci/***** PHY_MARV_FE_LED_PAR 16 bit r/w LED Parallel Select Reg. *****/ 15608c2ecf20Sopenharmony_ci /* Bit 15..12: reserved (used internally) */ 15618c2ecf20Sopenharmony_cienum { 15628c2ecf20Sopenharmony_ci PHY_M_FELP_LED2_MSK = 0xf<<8, /* Bit 11.. 8: LED2 Mask (LINK) */ 15638c2ecf20Sopenharmony_ci PHY_M_FELP_LED1_MSK = 0xf<<4, /* Bit 7.. 4: LED1 Mask (ACT) */ 15648c2ecf20Sopenharmony_ci PHY_M_FELP_LED0_MSK = 0xf, /* Bit 3.. 0: LED0 Mask (SPEED) */ 15658c2ecf20Sopenharmony_ci}; 15668c2ecf20Sopenharmony_ci 15678c2ecf20Sopenharmony_ci#define PHY_M_FELP_LED2_CTRL(x) (((u16)(x)<<8) & PHY_M_FELP_LED2_MSK) 15688c2ecf20Sopenharmony_ci#define PHY_M_FELP_LED1_CTRL(x) (((u16)(x)<<4) & PHY_M_FELP_LED1_MSK) 15698c2ecf20Sopenharmony_ci#define PHY_M_FELP_LED0_CTRL(x) (((u16)(x)<<0) & PHY_M_FELP_LED0_MSK) 15708c2ecf20Sopenharmony_ci 15718c2ecf20Sopenharmony_cienum { 15728c2ecf20Sopenharmony_ci LED_PAR_CTRL_COLX = 0x00, 15738c2ecf20Sopenharmony_ci LED_PAR_CTRL_ERROR = 0x01, 15748c2ecf20Sopenharmony_ci LED_PAR_CTRL_DUPLEX = 0x02, 15758c2ecf20Sopenharmony_ci LED_PAR_CTRL_DP_COL = 0x03, 15768c2ecf20Sopenharmony_ci LED_PAR_CTRL_SPEED = 0x04, 15778c2ecf20Sopenharmony_ci LED_PAR_CTRL_LINK = 0x05, 15788c2ecf20Sopenharmony_ci LED_PAR_CTRL_TX = 0x06, 15798c2ecf20Sopenharmony_ci LED_PAR_CTRL_RX = 0x07, 15808c2ecf20Sopenharmony_ci LED_PAR_CTRL_ACT = 0x08, 15818c2ecf20Sopenharmony_ci LED_PAR_CTRL_LNK_RX = 0x09, 15828c2ecf20Sopenharmony_ci LED_PAR_CTRL_LNK_AC = 0x0a, 15838c2ecf20Sopenharmony_ci LED_PAR_CTRL_ACT_BL = 0x0b, 15848c2ecf20Sopenharmony_ci LED_PAR_CTRL_TX_BL = 0x0c, 15858c2ecf20Sopenharmony_ci LED_PAR_CTRL_RX_BL = 0x0d, 15868c2ecf20Sopenharmony_ci LED_PAR_CTRL_COL_BL = 0x0e, 15878c2ecf20Sopenharmony_ci LED_PAR_CTRL_INACT = 0x0f 15888c2ecf20Sopenharmony_ci}; 15898c2ecf20Sopenharmony_ci 15908c2ecf20Sopenharmony_ci/*****,PHY_MARV_FE_SPEC_2 16 bit r/w Specific Control Reg. 2 *****/ 15918c2ecf20Sopenharmony_cienum { 15928c2ecf20Sopenharmony_ci PHY_M_FESC_DIS_WAIT = 1<<2, /* Disable TDR Waiting Period */ 15938c2ecf20Sopenharmony_ci PHY_M_FESC_ENA_MCLK = 1<<1, /* Enable MAC Rx Clock in sleep mode */ 15948c2ecf20Sopenharmony_ci PHY_M_FESC_SEL_CL_A = 1<<0, /* Select Class A driver (100B-TX) */ 15958c2ecf20Sopenharmony_ci}; 15968c2ecf20Sopenharmony_ci 15978c2ecf20Sopenharmony_ci/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */ 15988c2ecf20Sopenharmony_ci/***** PHY_MARV_PHY_CTRL (page 1) 16 bit r/w Fiber Specific Ctrl *****/ 15998c2ecf20Sopenharmony_cienum { 16008c2ecf20Sopenharmony_ci PHY_M_FIB_FORCE_LNK = 1<<10,/* Force Link Good */ 16018c2ecf20Sopenharmony_ci PHY_M_FIB_SIGD_POL = 1<<9, /* SIGDET Polarity */ 16028c2ecf20Sopenharmony_ci PHY_M_FIB_TX_DIS = 1<<3, /* Transmitter Disable */ 16038c2ecf20Sopenharmony_ci}; 16048c2ecf20Sopenharmony_ci 16058c2ecf20Sopenharmony_ci/* for Yukon-2 Gigabit Ethernet PHY (88E1112 only) */ 16068c2ecf20Sopenharmony_ci/***** PHY_MARV_PHY_CTRL (page 2) 16 bit r/w MAC Specific Ctrl *****/ 16078c2ecf20Sopenharmony_cienum { 16088c2ecf20Sopenharmony_ci PHY_M_MAC_MD_MSK = 7<<7, /* Bit 9.. 7: Mode Select Mask */ 16098c2ecf20Sopenharmony_ci PHY_M_MAC_GMIF_PUP = 1<<3, /* GMII Power Up (88E1149 only) */ 16108c2ecf20Sopenharmony_ci PHY_M_MAC_MD_AUTO = 3,/* Auto Copper/1000Base-X */ 16118c2ecf20Sopenharmony_ci PHY_M_MAC_MD_COPPER = 5,/* Copper only */ 16128c2ecf20Sopenharmony_ci PHY_M_MAC_MD_1000BX = 7,/* 1000Base-X only */ 16138c2ecf20Sopenharmony_ci}; 16148c2ecf20Sopenharmony_ci#define PHY_M_MAC_MODE_SEL(x) (((x)<<7) & PHY_M_MAC_MD_MSK) 16158c2ecf20Sopenharmony_ci 16168c2ecf20Sopenharmony_ci/***** PHY_MARV_PHY_CTRL (page 3) 16 bit r/w LED Control Reg. *****/ 16178c2ecf20Sopenharmony_cienum { 16188c2ecf20Sopenharmony_ci PHY_M_LEDC_LOS_MSK = 0xf<<12,/* Bit 15..12: LOS LED Ctrl. Mask */ 16198c2ecf20Sopenharmony_ci PHY_M_LEDC_INIT_MSK = 0xf<<8, /* Bit 11.. 8: INIT LED Ctrl. Mask */ 16208c2ecf20Sopenharmony_ci PHY_M_LEDC_STA1_MSK = 0xf<<4,/* Bit 7.. 4: STAT1 LED Ctrl. Mask */ 16218c2ecf20Sopenharmony_ci PHY_M_LEDC_STA0_MSK = 0xf, /* Bit 3.. 0: STAT0 LED Ctrl. Mask */ 16228c2ecf20Sopenharmony_ci}; 16238c2ecf20Sopenharmony_ci 16248c2ecf20Sopenharmony_ci#define PHY_M_LEDC_LOS_CTRL(x) (((x)<<12) & PHY_M_LEDC_LOS_MSK) 16258c2ecf20Sopenharmony_ci#define PHY_M_LEDC_INIT_CTRL(x) (((x)<<8) & PHY_M_LEDC_INIT_MSK) 16268c2ecf20Sopenharmony_ci#define PHY_M_LEDC_STA1_CTRL(x) (((x)<<4) & PHY_M_LEDC_STA1_MSK) 16278c2ecf20Sopenharmony_ci#define PHY_M_LEDC_STA0_CTRL(x) (((x)<<0) & PHY_M_LEDC_STA0_MSK) 16288c2ecf20Sopenharmony_ci 16298c2ecf20Sopenharmony_ci/* GMAC registers */ 16308c2ecf20Sopenharmony_ci/* Port Registers */ 16318c2ecf20Sopenharmony_cienum { 16328c2ecf20Sopenharmony_ci GM_GP_STAT = 0x0000, /* 16 bit r/o General Purpose Status */ 16338c2ecf20Sopenharmony_ci GM_GP_CTRL = 0x0004, /* 16 bit r/w General Purpose Control */ 16348c2ecf20Sopenharmony_ci GM_TX_CTRL = 0x0008, /* 16 bit r/w Transmit Control Reg. */ 16358c2ecf20Sopenharmony_ci GM_RX_CTRL = 0x000c, /* 16 bit r/w Receive Control Reg. */ 16368c2ecf20Sopenharmony_ci GM_TX_FLOW_CTRL = 0x0010, /* 16 bit r/w Transmit Flow-Control */ 16378c2ecf20Sopenharmony_ci GM_TX_PARAM = 0x0014, /* 16 bit r/w Transmit Parameter Reg. */ 16388c2ecf20Sopenharmony_ci GM_SERIAL_MODE = 0x0018, /* 16 bit r/w Serial Mode Register */ 16398c2ecf20Sopenharmony_ci/* Source Address Registers */ 16408c2ecf20Sopenharmony_ci GM_SRC_ADDR_1L = 0x001c, /* 16 bit r/w Source Address 1 (low) */ 16418c2ecf20Sopenharmony_ci GM_SRC_ADDR_1M = 0x0020, /* 16 bit r/w Source Address 1 (middle) */ 16428c2ecf20Sopenharmony_ci GM_SRC_ADDR_1H = 0x0024, /* 16 bit r/w Source Address 1 (high) */ 16438c2ecf20Sopenharmony_ci GM_SRC_ADDR_2L = 0x0028, /* 16 bit r/w Source Address 2 (low) */ 16448c2ecf20Sopenharmony_ci GM_SRC_ADDR_2M = 0x002c, /* 16 bit r/w Source Address 2 (middle) */ 16458c2ecf20Sopenharmony_ci GM_SRC_ADDR_2H = 0x0030, /* 16 bit r/w Source Address 2 (high) */ 16468c2ecf20Sopenharmony_ci 16478c2ecf20Sopenharmony_ci/* Multicast Address Hash Registers */ 16488c2ecf20Sopenharmony_ci GM_MC_ADDR_H1 = 0x0034, /* 16 bit r/w Multicast Address Hash 1 */ 16498c2ecf20Sopenharmony_ci GM_MC_ADDR_H2 = 0x0038, /* 16 bit r/w Multicast Address Hash 2 */ 16508c2ecf20Sopenharmony_ci GM_MC_ADDR_H3 = 0x003c, /* 16 bit r/w Multicast Address Hash 3 */ 16518c2ecf20Sopenharmony_ci GM_MC_ADDR_H4 = 0x0040, /* 16 bit r/w Multicast Address Hash 4 */ 16528c2ecf20Sopenharmony_ci 16538c2ecf20Sopenharmony_ci/* Interrupt Source Registers */ 16548c2ecf20Sopenharmony_ci GM_TX_IRQ_SRC = 0x0044, /* 16 bit r/o Tx Overflow IRQ Source */ 16558c2ecf20Sopenharmony_ci GM_RX_IRQ_SRC = 0x0048, /* 16 bit r/o Rx Overflow IRQ Source */ 16568c2ecf20Sopenharmony_ci GM_TR_IRQ_SRC = 0x004c, /* 16 bit r/o Tx/Rx Over. IRQ Source */ 16578c2ecf20Sopenharmony_ci 16588c2ecf20Sopenharmony_ci/* Interrupt Mask Registers */ 16598c2ecf20Sopenharmony_ci GM_TX_IRQ_MSK = 0x0050, /* 16 bit r/w Tx Overflow IRQ Mask */ 16608c2ecf20Sopenharmony_ci GM_RX_IRQ_MSK = 0x0054, /* 16 bit r/w Rx Overflow IRQ Mask */ 16618c2ecf20Sopenharmony_ci GM_TR_IRQ_MSK = 0x0058, /* 16 bit r/w Tx/Rx Over. IRQ Mask */ 16628c2ecf20Sopenharmony_ci 16638c2ecf20Sopenharmony_ci/* Serial Management Interface (SMI) Registers */ 16648c2ecf20Sopenharmony_ci GM_SMI_CTRL = 0x0080, /* 16 bit r/w SMI Control Register */ 16658c2ecf20Sopenharmony_ci GM_SMI_DATA = 0x0084, /* 16 bit r/w SMI Data Register */ 16668c2ecf20Sopenharmony_ci GM_PHY_ADDR = 0x0088, /* 16 bit r/w GPHY Address Register */ 16678c2ecf20Sopenharmony_ci/* MIB Counters */ 16688c2ecf20Sopenharmony_ci GM_MIB_CNT_BASE = 0x0100, /* Base Address of MIB Counters */ 16698c2ecf20Sopenharmony_ci GM_MIB_CNT_END = 0x025C, /* Last MIB counter */ 16708c2ecf20Sopenharmony_ci}; 16718c2ecf20Sopenharmony_ci 16728c2ecf20Sopenharmony_ci 16738c2ecf20Sopenharmony_ci/* 16748c2ecf20Sopenharmony_ci * MIB Counters base address definitions (low word) - 16758c2ecf20Sopenharmony_ci * use offset 4 for access to high word (32 bit r/o) 16768c2ecf20Sopenharmony_ci */ 16778c2ecf20Sopenharmony_cienum { 16788c2ecf20Sopenharmony_ci GM_RXF_UC_OK = GM_MIB_CNT_BASE + 0, /* Unicast Frames Received OK */ 16798c2ecf20Sopenharmony_ci GM_RXF_BC_OK = GM_MIB_CNT_BASE + 8, /* Broadcast Frames Received OK */ 16808c2ecf20Sopenharmony_ci GM_RXF_MPAUSE = GM_MIB_CNT_BASE + 16, /* Pause MAC Ctrl Frames Received */ 16818c2ecf20Sopenharmony_ci GM_RXF_MC_OK = GM_MIB_CNT_BASE + 24, /* Multicast Frames Received OK */ 16828c2ecf20Sopenharmony_ci GM_RXF_FCS_ERR = GM_MIB_CNT_BASE + 32, /* Rx Frame Check Seq. Error */ 16838c2ecf20Sopenharmony_ci 16848c2ecf20Sopenharmony_ci GM_RXO_OK_LO = GM_MIB_CNT_BASE + 48, /* Octets Received OK Low */ 16858c2ecf20Sopenharmony_ci GM_RXO_OK_HI = GM_MIB_CNT_BASE + 56, /* Octets Received OK High */ 16868c2ecf20Sopenharmony_ci GM_RXO_ERR_LO = GM_MIB_CNT_BASE + 64, /* Octets Received Invalid Low */ 16878c2ecf20Sopenharmony_ci GM_RXO_ERR_HI = GM_MIB_CNT_BASE + 72, /* Octets Received Invalid High */ 16888c2ecf20Sopenharmony_ci GM_RXF_SHT = GM_MIB_CNT_BASE + 80, /* Frames <64 Byte Received OK */ 16898c2ecf20Sopenharmony_ci GM_RXE_FRAG = GM_MIB_CNT_BASE + 88, /* Frames <64 Byte Received with FCS Err */ 16908c2ecf20Sopenharmony_ci GM_RXF_64B = GM_MIB_CNT_BASE + 96, /* 64 Byte Rx Frame */ 16918c2ecf20Sopenharmony_ci GM_RXF_127B = GM_MIB_CNT_BASE + 104,/* 65-127 Byte Rx Frame */ 16928c2ecf20Sopenharmony_ci GM_RXF_255B = GM_MIB_CNT_BASE + 112,/* 128-255 Byte Rx Frame */ 16938c2ecf20Sopenharmony_ci GM_RXF_511B = GM_MIB_CNT_BASE + 120,/* 256-511 Byte Rx Frame */ 16948c2ecf20Sopenharmony_ci GM_RXF_1023B = GM_MIB_CNT_BASE + 128,/* 512-1023 Byte Rx Frame */ 16958c2ecf20Sopenharmony_ci GM_RXF_1518B = GM_MIB_CNT_BASE + 136,/* 1024-1518 Byte Rx Frame */ 16968c2ecf20Sopenharmony_ci GM_RXF_MAX_SZ = GM_MIB_CNT_BASE + 144,/* 1519-MaxSize Byte Rx Frame */ 16978c2ecf20Sopenharmony_ci GM_RXF_LNG_ERR = GM_MIB_CNT_BASE + 152,/* Rx Frame too Long Error */ 16988c2ecf20Sopenharmony_ci GM_RXF_JAB_PKT = GM_MIB_CNT_BASE + 160,/* Rx Jabber Packet Frame */ 16998c2ecf20Sopenharmony_ci 17008c2ecf20Sopenharmony_ci GM_RXE_FIFO_OV = GM_MIB_CNT_BASE + 176,/* Rx FIFO overflow Event */ 17018c2ecf20Sopenharmony_ci GM_TXF_UC_OK = GM_MIB_CNT_BASE + 192,/* Unicast Frames Xmitted OK */ 17028c2ecf20Sopenharmony_ci GM_TXF_BC_OK = GM_MIB_CNT_BASE + 200,/* Broadcast Frames Xmitted OK */ 17038c2ecf20Sopenharmony_ci GM_TXF_MPAUSE = GM_MIB_CNT_BASE + 208,/* Pause MAC Ctrl Frames Xmitted */ 17048c2ecf20Sopenharmony_ci GM_TXF_MC_OK = GM_MIB_CNT_BASE + 216,/* Multicast Frames Xmitted OK */ 17058c2ecf20Sopenharmony_ci GM_TXO_OK_LO = GM_MIB_CNT_BASE + 224,/* Octets Transmitted OK Low */ 17068c2ecf20Sopenharmony_ci GM_TXO_OK_HI = GM_MIB_CNT_BASE + 232,/* Octets Transmitted OK High */ 17078c2ecf20Sopenharmony_ci GM_TXF_64B = GM_MIB_CNT_BASE + 240,/* 64 Byte Tx Frame */ 17088c2ecf20Sopenharmony_ci GM_TXF_127B = GM_MIB_CNT_BASE + 248,/* 65-127 Byte Tx Frame */ 17098c2ecf20Sopenharmony_ci GM_TXF_255B = GM_MIB_CNT_BASE + 256,/* 128-255 Byte Tx Frame */ 17108c2ecf20Sopenharmony_ci GM_TXF_511B = GM_MIB_CNT_BASE + 264,/* 256-511 Byte Tx Frame */ 17118c2ecf20Sopenharmony_ci GM_TXF_1023B = GM_MIB_CNT_BASE + 272,/* 512-1023 Byte Tx Frame */ 17128c2ecf20Sopenharmony_ci GM_TXF_1518B = GM_MIB_CNT_BASE + 280,/* 1024-1518 Byte Tx Frame */ 17138c2ecf20Sopenharmony_ci GM_TXF_MAX_SZ = GM_MIB_CNT_BASE + 288,/* 1519-MaxSize Byte Tx Frame */ 17148c2ecf20Sopenharmony_ci 17158c2ecf20Sopenharmony_ci GM_TXF_COL = GM_MIB_CNT_BASE + 304,/* Tx Collision */ 17168c2ecf20Sopenharmony_ci GM_TXF_LAT_COL = GM_MIB_CNT_BASE + 312,/* Tx Late Collision */ 17178c2ecf20Sopenharmony_ci GM_TXF_ABO_COL = GM_MIB_CNT_BASE + 320,/* Tx aborted due to Exces. Col. */ 17188c2ecf20Sopenharmony_ci GM_TXF_MUL_COL = GM_MIB_CNT_BASE + 328,/* Tx Multiple Collision */ 17198c2ecf20Sopenharmony_ci GM_TXF_SNG_COL = GM_MIB_CNT_BASE + 336,/* Tx Single Collision */ 17208c2ecf20Sopenharmony_ci GM_TXE_FIFO_UR = GM_MIB_CNT_BASE + 344,/* Tx FIFO Underrun Event */ 17218c2ecf20Sopenharmony_ci}; 17228c2ecf20Sopenharmony_ci 17238c2ecf20Sopenharmony_ci/* GMAC Bit Definitions */ 17248c2ecf20Sopenharmony_ci/* GM_GP_STAT 16 bit r/o General Purpose Status Register */ 17258c2ecf20Sopenharmony_cienum { 17268c2ecf20Sopenharmony_ci GM_GPSR_SPEED = 1<<15, /* Bit 15: Port Speed (1 = 100 Mbps) */ 17278c2ecf20Sopenharmony_ci GM_GPSR_DUPLEX = 1<<14, /* Bit 14: Duplex Mode (1 = Full) */ 17288c2ecf20Sopenharmony_ci GM_GPSR_FC_TX_DIS = 1<<13, /* Bit 13: Tx Flow-Control Mode Disabled */ 17298c2ecf20Sopenharmony_ci GM_GPSR_LINK_UP = 1<<12, /* Bit 12: Link Up Status */ 17308c2ecf20Sopenharmony_ci GM_GPSR_PAUSE = 1<<11, /* Bit 11: Pause State */ 17318c2ecf20Sopenharmony_ci GM_GPSR_TX_ACTIVE = 1<<10, /* Bit 10: Tx in Progress */ 17328c2ecf20Sopenharmony_ci GM_GPSR_EXC_COL = 1<<9, /* Bit 9: Excessive Collisions Occurred */ 17338c2ecf20Sopenharmony_ci GM_GPSR_LAT_COL = 1<<8, /* Bit 8: Late Collisions Occurred */ 17348c2ecf20Sopenharmony_ci 17358c2ecf20Sopenharmony_ci GM_GPSR_PHY_ST_CH = 1<<5, /* Bit 5: PHY Status Change */ 17368c2ecf20Sopenharmony_ci GM_GPSR_GIG_SPEED = 1<<4, /* Bit 4: Gigabit Speed (1 = 1000 Mbps) */ 17378c2ecf20Sopenharmony_ci GM_GPSR_PART_MODE = 1<<3, /* Bit 3: Partition mode */ 17388c2ecf20Sopenharmony_ci GM_GPSR_FC_RX_DIS = 1<<2, /* Bit 2: Rx Flow-Control Mode Disabled */ 17398c2ecf20Sopenharmony_ci GM_GPSR_PROM_EN = 1<<1, /* Bit 1: Promiscuous Mode Enabled */ 17408c2ecf20Sopenharmony_ci}; 17418c2ecf20Sopenharmony_ci 17428c2ecf20Sopenharmony_ci/* GM_GP_CTRL 16 bit r/w General Purpose Control Register */ 17438c2ecf20Sopenharmony_cienum { 17448c2ecf20Sopenharmony_ci GM_GPCR_PROM_ENA = 1<<14, /* Bit 14: Enable Promiscuous Mode */ 17458c2ecf20Sopenharmony_ci GM_GPCR_FC_TX_DIS = 1<<13, /* Bit 13: Disable Tx Flow-Control Mode */ 17468c2ecf20Sopenharmony_ci GM_GPCR_TX_ENA = 1<<12, /* Bit 12: Enable Transmit */ 17478c2ecf20Sopenharmony_ci GM_GPCR_RX_ENA = 1<<11, /* Bit 11: Enable Receive */ 17488c2ecf20Sopenharmony_ci GM_GPCR_BURST_ENA = 1<<10, /* Bit 10: Enable Burst Mode */ 17498c2ecf20Sopenharmony_ci GM_GPCR_LOOP_ENA = 1<<9, /* Bit 9: Enable MAC Loopback Mode */ 17508c2ecf20Sopenharmony_ci GM_GPCR_PART_ENA = 1<<8, /* Bit 8: Enable Partition Mode */ 17518c2ecf20Sopenharmony_ci GM_GPCR_GIGS_ENA = 1<<7, /* Bit 7: Gigabit Speed (1000 Mbps) */ 17528c2ecf20Sopenharmony_ci GM_GPCR_FL_PASS = 1<<6, /* Bit 6: Force Link Pass */ 17538c2ecf20Sopenharmony_ci GM_GPCR_DUP_FULL = 1<<5, /* Bit 5: Full Duplex Mode */ 17548c2ecf20Sopenharmony_ci GM_GPCR_FC_RX_DIS = 1<<4, /* Bit 4: Disable Rx Flow-Control Mode */ 17558c2ecf20Sopenharmony_ci GM_GPCR_SPEED_100 = 1<<3, /* Bit 3: Port Speed 100 Mbps */ 17568c2ecf20Sopenharmony_ci GM_GPCR_AU_DUP_DIS = 1<<2, /* Bit 2: Disable Auto-Update Duplex */ 17578c2ecf20Sopenharmony_ci GM_GPCR_AU_FCT_DIS = 1<<1, /* Bit 1: Disable Auto-Update Flow-C. */ 17588c2ecf20Sopenharmony_ci GM_GPCR_AU_SPD_DIS = 1<<0, /* Bit 0: Disable Auto-Update Speed */ 17598c2ecf20Sopenharmony_ci}; 17608c2ecf20Sopenharmony_ci 17618c2ecf20Sopenharmony_ci#define GM_GPCR_SPEED_1000 (GM_GPCR_GIGS_ENA | GM_GPCR_SPEED_100) 17628c2ecf20Sopenharmony_ci 17638c2ecf20Sopenharmony_ci/* GM_TX_CTRL 16 bit r/w Transmit Control Register */ 17648c2ecf20Sopenharmony_cienum { 17658c2ecf20Sopenharmony_ci GM_TXCR_FORCE_JAM = 1<<15, /* Bit 15: Force Jam / Flow-Control */ 17668c2ecf20Sopenharmony_ci GM_TXCR_CRC_DIS = 1<<14, /* Bit 14: Disable insertion of CRC */ 17678c2ecf20Sopenharmony_ci GM_TXCR_PAD_DIS = 1<<13, /* Bit 13: Disable padding of packets */ 17688c2ecf20Sopenharmony_ci GM_TXCR_COL_THR_MSK = 7<<10, /* Bit 12..10: Collision Threshold */ 17698c2ecf20Sopenharmony_ci}; 17708c2ecf20Sopenharmony_ci 17718c2ecf20Sopenharmony_ci#define TX_COL_THR(x) (((x)<<10) & GM_TXCR_COL_THR_MSK) 17728c2ecf20Sopenharmony_ci#define TX_COL_DEF 0x04 17738c2ecf20Sopenharmony_ci 17748c2ecf20Sopenharmony_ci/* GM_RX_CTRL 16 bit r/w Receive Control Register */ 17758c2ecf20Sopenharmony_cienum { 17768c2ecf20Sopenharmony_ci GM_RXCR_UCF_ENA = 1<<15, /* Bit 15: Enable Unicast filtering */ 17778c2ecf20Sopenharmony_ci GM_RXCR_MCF_ENA = 1<<14, /* Bit 14: Enable Multicast filtering */ 17788c2ecf20Sopenharmony_ci GM_RXCR_CRC_DIS = 1<<13, /* Bit 13: Remove 4-byte CRC */ 17798c2ecf20Sopenharmony_ci GM_RXCR_PASS_FC = 1<<12, /* Bit 12: Pass FC packets to FIFO */ 17808c2ecf20Sopenharmony_ci}; 17818c2ecf20Sopenharmony_ci 17828c2ecf20Sopenharmony_ci/* GM_TX_PARAM 16 bit r/w Transmit Parameter Register */ 17838c2ecf20Sopenharmony_cienum { 17848c2ecf20Sopenharmony_ci GM_TXPA_JAMLEN_MSK = 0x03<<14, /* Bit 15..14: Jam Length */ 17858c2ecf20Sopenharmony_ci GM_TXPA_JAMIPG_MSK = 0x1f<<9, /* Bit 13..9: Jam IPG */ 17868c2ecf20Sopenharmony_ci GM_TXPA_JAMDAT_MSK = 0x1f<<4, /* Bit 8..4: IPG Jam to Data */ 17878c2ecf20Sopenharmony_ci GM_TXPA_BO_LIM_MSK = 0x0f, /* Bit 3.. 0: Backoff Limit Mask */ 17888c2ecf20Sopenharmony_ci 17898c2ecf20Sopenharmony_ci TX_JAM_LEN_DEF = 0x03, 17908c2ecf20Sopenharmony_ci TX_JAM_IPG_DEF = 0x0b, 17918c2ecf20Sopenharmony_ci TX_IPG_JAM_DEF = 0x1c, 17928c2ecf20Sopenharmony_ci TX_BOF_LIM_DEF = 0x04, 17938c2ecf20Sopenharmony_ci}; 17948c2ecf20Sopenharmony_ci 17958c2ecf20Sopenharmony_ci#define TX_JAM_LEN_VAL(x) (((x)<<14) & GM_TXPA_JAMLEN_MSK) 17968c2ecf20Sopenharmony_ci#define TX_JAM_IPG_VAL(x) (((x)<<9) & GM_TXPA_JAMIPG_MSK) 17978c2ecf20Sopenharmony_ci#define TX_IPG_JAM_DATA(x) (((x)<<4) & GM_TXPA_JAMDAT_MSK) 17988c2ecf20Sopenharmony_ci#define TX_BACK_OFF_LIM(x) ((x) & GM_TXPA_BO_LIM_MSK) 17998c2ecf20Sopenharmony_ci 18008c2ecf20Sopenharmony_ci 18018c2ecf20Sopenharmony_ci/* GM_SERIAL_MODE 16 bit r/w Serial Mode Register */ 18028c2ecf20Sopenharmony_cienum { 18038c2ecf20Sopenharmony_ci GM_SMOD_DATABL_MSK = 0x1f<<11, /* Bit 15..11: Data Blinder (r/o) */ 18048c2ecf20Sopenharmony_ci GM_SMOD_LIMIT_4 = 1<<10, /* 4 consecutive Tx trials */ 18058c2ecf20Sopenharmony_ci GM_SMOD_VLAN_ENA = 1<<9, /* Enable VLAN (Max. Frame Len) */ 18068c2ecf20Sopenharmony_ci GM_SMOD_JUMBO_ENA = 1<<8, /* Enable Jumbo (Max. Frame Len) */ 18078c2ecf20Sopenharmony_ci 18088c2ecf20Sopenharmony_ci GM_NEW_FLOW_CTRL = 1<<6, /* Enable New Flow-Control */ 18098c2ecf20Sopenharmony_ci 18108c2ecf20Sopenharmony_ci GM_SMOD_IPG_MSK = 0x1f /* Bit 4..0: Inter-Packet Gap (IPG) */ 18118c2ecf20Sopenharmony_ci}; 18128c2ecf20Sopenharmony_ci 18138c2ecf20Sopenharmony_ci#define DATA_BLIND_VAL(x) (((x)<<11) & GM_SMOD_DATABL_MSK) 18148c2ecf20Sopenharmony_ci#define IPG_DATA_VAL(x) (x & GM_SMOD_IPG_MSK) 18158c2ecf20Sopenharmony_ci 18168c2ecf20Sopenharmony_ci#define DATA_BLIND_DEF 0x04 18178c2ecf20Sopenharmony_ci#define IPG_DATA_DEF_1000 0x1e 18188c2ecf20Sopenharmony_ci#define IPG_DATA_DEF_10_100 0x18 18198c2ecf20Sopenharmony_ci 18208c2ecf20Sopenharmony_ci/* GM_SMI_CTRL 16 bit r/w SMI Control Register */ 18218c2ecf20Sopenharmony_cienum { 18228c2ecf20Sopenharmony_ci GM_SMI_CT_PHY_A_MSK = 0x1f<<11,/* Bit 15..11: PHY Device Address */ 18238c2ecf20Sopenharmony_ci GM_SMI_CT_REG_A_MSK = 0x1f<<6,/* Bit 10.. 6: PHY Register Address */ 18248c2ecf20Sopenharmony_ci GM_SMI_CT_OP_RD = 1<<5, /* Bit 5: OpCode Read (0=Write)*/ 18258c2ecf20Sopenharmony_ci GM_SMI_CT_RD_VAL = 1<<4, /* Bit 4: Read Valid (Read completed) */ 18268c2ecf20Sopenharmony_ci GM_SMI_CT_BUSY = 1<<3, /* Bit 3: Busy (Operation in progress) */ 18278c2ecf20Sopenharmony_ci}; 18288c2ecf20Sopenharmony_ci 18298c2ecf20Sopenharmony_ci#define GM_SMI_CT_PHY_AD(x) (((u16)(x)<<11) & GM_SMI_CT_PHY_A_MSK) 18308c2ecf20Sopenharmony_ci#define GM_SMI_CT_REG_AD(x) (((u16)(x)<<6) & GM_SMI_CT_REG_A_MSK) 18318c2ecf20Sopenharmony_ci 18328c2ecf20Sopenharmony_ci/* GM_PHY_ADDR 16 bit r/w GPHY Address Register */ 18338c2ecf20Sopenharmony_cienum { 18348c2ecf20Sopenharmony_ci GM_PAR_MIB_CLR = 1<<5, /* Bit 5: Set MIB Clear Counter Mode */ 18358c2ecf20Sopenharmony_ci GM_PAR_MIB_TST = 1<<4, /* Bit 4: MIB Load Counter (Test Mode) */ 18368c2ecf20Sopenharmony_ci}; 18378c2ecf20Sopenharmony_ci 18388c2ecf20Sopenharmony_ci/* Receive Frame Status Encoding */ 18398c2ecf20Sopenharmony_cienum { 18408c2ecf20Sopenharmony_ci GMR_FS_LEN = 0x7fff<<16, /* Bit 30..16: Rx Frame Length */ 18418c2ecf20Sopenharmony_ci GMR_FS_VLAN = 1<<13, /* VLAN Packet */ 18428c2ecf20Sopenharmony_ci GMR_FS_JABBER = 1<<12, /* Jabber Packet */ 18438c2ecf20Sopenharmony_ci GMR_FS_UN_SIZE = 1<<11, /* Undersize Packet */ 18448c2ecf20Sopenharmony_ci GMR_FS_MC = 1<<10, /* Multicast Packet */ 18458c2ecf20Sopenharmony_ci GMR_FS_BC = 1<<9, /* Broadcast Packet */ 18468c2ecf20Sopenharmony_ci GMR_FS_RX_OK = 1<<8, /* Receive OK (Good Packet) */ 18478c2ecf20Sopenharmony_ci GMR_FS_GOOD_FC = 1<<7, /* Good Flow-Control Packet */ 18488c2ecf20Sopenharmony_ci GMR_FS_BAD_FC = 1<<6, /* Bad Flow-Control Packet */ 18498c2ecf20Sopenharmony_ci GMR_FS_MII_ERR = 1<<5, /* MII Error */ 18508c2ecf20Sopenharmony_ci GMR_FS_LONG_ERR = 1<<4, /* Too Long Packet */ 18518c2ecf20Sopenharmony_ci GMR_FS_FRAGMENT = 1<<3, /* Fragment */ 18528c2ecf20Sopenharmony_ci 18538c2ecf20Sopenharmony_ci GMR_FS_CRC_ERR = 1<<1, /* CRC Error */ 18548c2ecf20Sopenharmony_ci GMR_FS_RX_FF_OV = 1<<0, /* Rx FIFO Overflow */ 18558c2ecf20Sopenharmony_ci 18568c2ecf20Sopenharmony_ci GMR_FS_ANY_ERR = GMR_FS_RX_FF_OV | GMR_FS_CRC_ERR | 18578c2ecf20Sopenharmony_ci GMR_FS_FRAGMENT | GMR_FS_LONG_ERR | 18588c2ecf20Sopenharmony_ci GMR_FS_MII_ERR | GMR_FS_BAD_FC | 18598c2ecf20Sopenharmony_ci GMR_FS_UN_SIZE | GMR_FS_JABBER, 18608c2ecf20Sopenharmony_ci}; 18618c2ecf20Sopenharmony_ci 18628c2ecf20Sopenharmony_ci/* RX_GMF_CTRL_T 32 bit Rx GMAC FIFO Control/Test */ 18638c2ecf20Sopenharmony_cienum { 18648c2ecf20Sopenharmony_ci RX_GCLKMAC_ENA = 1<<31, /* RX MAC Clock Gating Enable */ 18658c2ecf20Sopenharmony_ci RX_GCLKMAC_OFF = 1<<30, 18668c2ecf20Sopenharmony_ci 18678c2ecf20Sopenharmony_ci RX_STFW_DIS = 1<<29, /* RX Store and Forward Enable */ 18688c2ecf20Sopenharmony_ci RX_STFW_ENA = 1<<28, 18698c2ecf20Sopenharmony_ci 18708c2ecf20Sopenharmony_ci RX_TRUNC_ON = 1<<27, /* enable packet truncation */ 18718c2ecf20Sopenharmony_ci RX_TRUNC_OFF = 1<<26, /* disable packet truncation */ 18728c2ecf20Sopenharmony_ci RX_VLAN_STRIP_ON = 1<<25, /* enable VLAN stripping */ 18738c2ecf20Sopenharmony_ci RX_VLAN_STRIP_OFF = 1<<24, /* disable VLAN stripping */ 18748c2ecf20Sopenharmony_ci 18758c2ecf20Sopenharmony_ci RX_MACSEC_FLUSH_ON = 1<<23, 18768c2ecf20Sopenharmony_ci RX_MACSEC_FLUSH_OFF = 1<<22, 18778c2ecf20Sopenharmony_ci RX_MACSEC_ASF_FLUSH_ON = 1<<21, 18788c2ecf20Sopenharmony_ci RX_MACSEC_ASF_FLUSH_OFF = 1<<20, 18798c2ecf20Sopenharmony_ci 18808c2ecf20Sopenharmony_ci GMF_RX_OVER_ON = 1<<19, /* enable flushing on receive overrun */ 18818c2ecf20Sopenharmony_ci GMF_RX_OVER_OFF = 1<<18, /* disable flushing on receive overrun */ 18828c2ecf20Sopenharmony_ci GMF_ASF_RX_OVER_ON = 1<<17, /* enable flushing of ASF when overrun */ 18838c2ecf20Sopenharmony_ci GMF_ASF_RX_OVER_OFF = 1<<16, /* disable flushing of ASF when overrun */ 18848c2ecf20Sopenharmony_ci 18858c2ecf20Sopenharmony_ci GMF_WP_TST_ON = 1<<14, /* Write Pointer Test On */ 18868c2ecf20Sopenharmony_ci GMF_WP_TST_OFF = 1<<13, /* Write Pointer Test Off */ 18878c2ecf20Sopenharmony_ci GMF_WP_STEP = 1<<12, /* Write Pointer Step/Increment */ 18888c2ecf20Sopenharmony_ci 18898c2ecf20Sopenharmony_ci GMF_RP_TST_ON = 1<<10, /* Read Pointer Test On */ 18908c2ecf20Sopenharmony_ci GMF_RP_TST_OFF = 1<<9, /* Read Pointer Test Off */ 18918c2ecf20Sopenharmony_ci GMF_RP_STEP = 1<<8, /* Read Pointer Step/Increment */ 18928c2ecf20Sopenharmony_ci GMF_RX_F_FL_ON = 1<<7, /* Rx FIFO Flush Mode On */ 18938c2ecf20Sopenharmony_ci GMF_RX_F_FL_OFF = 1<<6, /* Rx FIFO Flush Mode Off */ 18948c2ecf20Sopenharmony_ci GMF_CLI_RX_FO = 1<<5, /* Clear IRQ Rx FIFO Overrun */ 18958c2ecf20Sopenharmony_ci GMF_CLI_RX_C = 1<<4, /* Clear IRQ Rx Frame Complete */ 18968c2ecf20Sopenharmony_ci 18978c2ecf20Sopenharmony_ci GMF_OPER_ON = 1<<3, /* Operational Mode On */ 18988c2ecf20Sopenharmony_ci GMF_OPER_OFF = 1<<2, /* Operational Mode Off */ 18998c2ecf20Sopenharmony_ci GMF_RST_CLR = 1<<1, /* Clear GMAC FIFO Reset */ 19008c2ecf20Sopenharmony_ci GMF_RST_SET = 1<<0, /* Set GMAC FIFO Reset */ 19018c2ecf20Sopenharmony_ci 19028c2ecf20Sopenharmony_ci RX_GMF_FL_THR_DEF = 0xa, /* flush threshold (default) */ 19038c2ecf20Sopenharmony_ci 19048c2ecf20Sopenharmony_ci GMF_RX_CTRL_DEF = GMF_OPER_ON | GMF_RX_F_FL_ON, 19058c2ecf20Sopenharmony_ci}; 19068c2ecf20Sopenharmony_ci 19078c2ecf20Sopenharmony_ci/* RX_GMF_FL_CTRL 16 bit Rx GMAC FIFO Flush Control (Yukon-Supreme) */ 19088c2ecf20Sopenharmony_cienum { 19098c2ecf20Sopenharmony_ci RX_IPV6_SA_MOB_ENA = 1<<9, /* IPv6 SA Mobility Support Enable */ 19108c2ecf20Sopenharmony_ci RX_IPV6_SA_MOB_DIS = 1<<8, /* IPv6 SA Mobility Support Disable */ 19118c2ecf20Sopenharmony_ci RX_IPV6_DA_MOB_ENA = 1<<7, /* IPv6 DA Mobility Support Enable */ 19128c2ecf20Sopenharmony_ci RX_IPV6_DA_MOB_DIS = 1<<6, /* IPv6 DA Mobility Support Disable */ 19138c2ecf20Sopenharmony_ci RX_PTR_SYNCDLY_ENA = 1<<5, /* Pointers Delay Synch Enable */ 19148c2ecf20Sopenharmony_ci RX_PTR_SYNCDLY_DIS = 1<<4, /* Pointers Delay Synch Disable */ 19158c2ecf20Sopenharmony_ci RX_ASF_NEWFLAG_ENA = 1<<3, /* RX ASF Flag New Logic Enable */ 19168c2ecf20Sopenharmony_ci RX_ASF_NEWFLAG_DIS = 1<<2, /* RX ASF Flag New Logic Disable */ 19178c2ecf20Sopenharmony_ci RX_FLSH_MISSPKT_ENA = 1<<1, /* RX Flush Miss-Packet Enable */ 19188c2ecf20Sopenharmony_ci RX_FLSH_MISSPKT_DIS = 1<<0, /* RX Flush Miss-Packet Disable */ 19198c2ecf20Sopenharmony_ci}; 19208c2ecf20Sopenharmony_ci 19218c2ecf20Sopenharmony_ci/* TX_GMF_EA 32 bit Tx GMAC FIFO End Address */ 19228c2ecf20Sopenharmony_cienum { 19238c2ecf20Sopenharmony_ci TX_DYN_WM_ENA = 3, /* Yukon-FE+ specific */ 19248c2ecf20Sopenharmony_ci}; 19258c2ecf20Sopenharmony_ci 19268c2ecf20Sopenharmony_ci/* TX_GMF_CTRL_T 32 bit Tx GMAC FIFO Control/Test */ 19278c2ecf20Sopenharmony_cienum { 19288c2ecf20Sopenharmony_ci TX_STFW_DIS = 1<<31,/* Disable Store & Forward */ 19298c2ecf20Sopenharmony_ci TX_STFW_ENA = 1<<30,/* Enable Store & Forward */ 19308c2ecf20Sopenharmony_ci 19318c2ecf20Sopenharmony_ci TX_VLAN_TAG_ON = 1<<25,/* enable VLAN tagging */ 19328c2ecf20Sopenharmony_ci TX_VLAN_TAG_OFF = 1<<24,/* disable VLAN tagging */ 19338c2ecf20Sopenharmony_ci 19348c2ecf20Sopenharmony_ci TX_PCI_JUM_ENA = 1<<23,/* PCI Jumbo Mode enable */ 19358c2ecf20Sopenharmony_ci TX_PCI_JUM_DIS = 1<<22,/* PCI Jumbo Mode enable */ 19368c2ecf20Sopenharmony_ci 19378c2ecf20Sopenharmony_ci GMF_WSP_TST_ON = 1<<18,/* Write Shadow Pointer Test On */ 19388c2ecf20Sopenharmony_ci GMF_WSP_TST_OFF = 1<<17,/* Write Shadow Pointer Test Off */ 19398c2ecf20Sopenharmony_ci GMF_WSP_STEP = 1<<16,/* Write Shadow Pointer Step/Increment */ 19408c2ecf20Sopenharmony_ci 19418c2ecf20Sopenharmony_ci GMF_CLI_TX_FU = 1<<6, /* Clear IRQ Tx FIFO Underrun */ 19428c2ecf20Sopenharmony_ci GMF_CLI_TX_FC = 1<<5, /* Clear IRQ Tx Frame Complete */ 19438c2ecf20Sopenharmony_ci GMF_CLI_TX_PE = 1<<4, /* Clear IRQ Tx Parity Error */ 19448c2ecf20Sopenharmony_ci}; 19458c2ecf20Sopenharmony_ci 19468c2ecf20Sopenharmony_ci/* GMAC_TI_ST_CTRL 8 bit Time Stamp Timer Ctrl Reg (YUKON only) */ 19478c2ecf20Sopenharmony_cienum { 19488c2ecf20Sopenharmony_ci GMT_ST_START = 1<<2, /* Start Time Stamp Timer */ 19498c2ecf20Sopenharmony_ci GMT_ST_STOP = 1<<1, /* Stop Time Stamp Timer */ 19508c2ecf20Sopenharmony_ci GMT_ST_CLR_IRQ = 1<<0, /* Clear Time Stamp Timer IRQ */ 19518c2ecf20Sopenharmony_ci}; 19528c2ecf20Sopenharmony_ci 19538c2ecf20Sopenharmony_ci/* B28_Y2_ASF_STAT_CMD 32 bit ASF Status and Command Reg */ 19548c2ecf20Sopenharmony_cienum { 19558c2ecf20Sopenharmony_ci Y2_ASF_OS_PRES = 1<<4, /* ASF operation system present */ 19568c2ecf20Sopenharmony_ci Y2_ASF_RESET = 1<<3, /* ASF system in reset state */ 19578c2ecf20Sopenharmony_ci Y2_ASF_RUNNING = 1<<2, /* ASF system operational */ 19588c2ecf20Sopenharmony_ci Y2_ASF_CLR_HSTI = 1<<1, /* Clear ASF IRQ */ 19598c2ecf20Sopenharmony_ci Y2_ASF_IRQ = 1<<0, /* Issue an IRQ to ASF system */ 19608c2ecf20Sopenharmony_ci 19618c2ecf20Sopenharmony_ci Y2_ASF_UC_STATE = 3<<2, /* ASF uC State */ 19628c2ecf20Sopenharmony_ci Y2_ASF_CLK_HALT = 0, /* ASF system clock stopped */ 19638c2ecf20Sopenharmony_ci}; 19648c2ecf20Sopenharmony_ci 19658c2ecf20Sopenharmony_ci/* B28_Y2_ASF_HOST_COM 32 bit ASF Host Communication Reg */ 19668c2ecf20Sopenharmony_cienum { 19678c2ecf20Sopenharmony_ci Y2_ASF_CLR_ASFI = 1<<1, /* Clear host IRQ */ 19688c2ecf20Sopenharmony_ci Y2_ASF_HOST_IRQ = 1<<0, /* Issue an IRQ to HOST system */ 19698c2ecf20Sopenharmony_ci}; 19708c2ecf20Sopenharmony_ci/* HCU_CCSR CPU Control and Status Register */ 19718c2ecf20Sopenharmony_cienum { 19728c2ecf20Sopenharmony_ci HCU_CCSR_SMBALERT_MONITOR= 1<<27, /* SMBALERT pin monitor */ 19738c2ecf20Sopenharmony_ci HCU_CCSR_CPU_SLEEP = 1<<26, /* CPU sleep status */ 19748c2ecf20Sopenharmony_ci /* Clock Stretching Timeout */ 19758c2ecf20Sopenharmony_ci HCU_CCSR_CS_TO = 1<<25, 19768c2ecf20Sopenharmony_ci HCU_CCSR_WDOG = 1<<24, /* Watchdog Reset */ 19778c2ecf20Sopenharmony_ci 19788c2ecf20Sopenharmony_ci HCU_CCSR_CLR_IRQ_HOST = 1<<17, /* Clear IRQ_HOST */ 19798c2ecf20Sopenharmony_ci HCU_CCSR_SET_IRQ_HCU = 1<<16, /* Set IRQ_HCU */ 19808c2ecf20Sopenharmony_ci 19818c2ecf20Sopenharmony_ci HCU_CCSR_AHB_RST = 1<<9, /* Reset AHB bridge */ 19828c2ecf20Sopenharmony_ci HCU_CCSR_CPU_RST_MODE = 1<<8, /* CPU Reset Mode */ 19838c2ecf20Sopenharmony_ci 19848c2ecf20Sopenharmony_ci HCU_CCSR_SET_SYNC_CPU = 1<<5, 19858c2ecf20Sopenharmony_ci HCU_CCSR_CPU_CLK_DIVIDE_MSK = 3<<3,/* CPU Clock Divide */ 19868c2ecf20Sopenharmony_ci HCU_CCSR_CPU_CLK_DIVIDE_BASE= 1<<3, 19878c2ecf20Sopenharmony_ci HCU_CCSR_OS_PRSNT = 1<<2, /* ASF OS Present */ 19888c2ecf20Sopenharmony_ci/* Microcontroller State */ 19898c2ecf20Sopenharmony_ci HCU_CCSR_UC_STATE_MSK = 3, 19908c2ecf20Sopenharmony_ci HCU_CCSR_UC_STATE_BASE = 1<<0, 19918c2ecf20Sopenharmony_ci HCU_CCSR_ASF_RESET = 0, 19928c2ecf20Sopenharmony_ci HCU_CCSR_ASF_HALTED = 1<<1, 19938c2ecf20Sopenharmony_ci HCU_CCSR_ASF_RUNNING = 1<<0, 19948c2ecf20Sopenharmony_ci}; 19958c2ecf20Sopenharmony_ci 19968c2ecf20Sopenharmony_ci/* HCU_HCSR Host Control and Status Register */ 19978c2ecf20Sopenharmony_cienum { 19988c2ecf20Sopenharmony_ci HCU_HCSR_SET_IRQ_CPU = 1<<16, /* Set IRQ_CPU */ 19998c2ecf20Sopenharmony_ci 20008c2ecf20Sopenharmony_ci HCU_HCSR_CLR_IRQ_HCU = 1<<1, /* Clear IRQ_HCU */ 20018c2ecf20Sopenharmony_ci HCU_HCSR_SET_IRQ_HOST = 1<<0, /* Set IRQ_HOST */ 20028c2ecf20Sopenharmony_ci}; 20038c2ecf20Sopenharmony_ci 20048c2ecf20Sopenharmony_ci/* STAT_CTRL 32 bit Status BMU control register (Yukon-2 only) */ 20058c2ecf20Sopenharmony_cienum { 20068c2ecf20Sopenharmony_ci SC_STAT_CLR_IRQ = 1<<4, /* Status Burst IRQ clear */ 20078c2ecf20Sopenharmony_ci SC_STAT_OP_ON = 1<<3, /* Operational Mode On */ 20088c2ecf20Sopenharmony_ci SC_STAT_OP_OFF = 1<<2, /* Operational Mode Off */ 20098c2ecf20Sopenharmony_ci SC_STAT_RST_CLR = 1<<1, /* Clear Status Unit Reset (Enable) */ 20108c2ecf20Sopenharmony_ci SC_STAT_RST_SET = 1<<0, /* Set Status Unit Reset */ 20118c2ecf20Sopenharmony_ci}; 20128c2ecf20Sopenharmony_ci 20138c2ecf20Sopenharmony_ci/* GMAC_CTRL 32 bit GMAC Control Reg (YUKON only) */ 20148c2ecf20Sopenharmony_cienum { 20158c2ecf20Sopenharmony_ci GMC_SET_RST = 1<<15,/* MAC SEC RST */ 20168c2ecf20Sopenharmony_ci GMC_SEC_RST_OFF = 1<<14,/* MAC SEC RSt OFF */ 20178c2ecf20Sopenharmony_ci GMC_BYP_MACSECRX_ON = 1<<13,/* Bypass macsec RX */ 20188c2ecf20Sopenharmony_ci GMC_BYP_MACSECRX_OFF= 1<<12,/* Bypass macsec RX off */ 20198c2ecf20Sopenharmony_ci GMC_BYP_MACSECTX_ON = 1<<11,/* Bypass macsec TX */ 20208c2ecf20Sopenharmony_ci GMC_BYP_MACSECTX_OFF= 1<<10,/* Bypass macsec TX off*/ 20218c2ecf20Sopenharmony_ci GMC_BYP_RETR_ON = 1<<9, /* Bypass retransmit FIFO On */ 20228c2ecf20Sopenharmony_ci GMC_BYP_RETR_OFF= 1<<8, /* Bypass retransmit FIFO Off */ 20238c2ecf20Sopenharmony_ci 20248c2ecf20Sopenharmony_ci GMC_H_BURST_ON = 1<<7, /* Half Duplex Burst Mode On */ 20258c2ecf20Sopenharmony_ci GMC_H_BURST_OFF = 1<<6, /* Half Duplex Burst Mode Off */ 20268c2ecf20Sopenharmony_ci GMC_F_LOOPB_ON = 1<<5, /* FIFO Loopback On */ 20278c2ecf20Sopenharmony_ci GMC_F_LOOPB_OFF = 1<<4, /* FIFO Loopback Off */ 20288c2ecf20Sopenharmony_ci GMC_PAUSE_ON = 1<<3, /* Pause On */ 20298c2ecf20Sopenharmony_ci GMC_PAUSE_OFF = 1<<2, /* Pause Off */ 20308c2ecf20Sopenharmony_ci GMC_RST_CLR = 1<<1, /* Clear GMAC Reset */ 20318c2ecf20Sopenharmony_ci GMC_RST_SET = 1<<0, /* Set GMAC Reset */ 20328c2ecf20Sopenharmony_ci}; 20338c2ecf20Sopenharmony_ci 20348c2ecf20Sopenharmony_ci/* GPHY_CTRL 32 bit GPHY Control Reg (YUKON only) */ 20358c2ecf20Sopenharmony_cienum { 20368c2ecf20Sopenharmony_ci GPC_TX_PAUSE = 1<<30, /* Tx pause enabled (ro) */ 20378c2ecf20Sopenharmony_ci GPC_RX_PAUSE = 1<<29, /* Rx pause enabled (ro) */ 20388c2ecf20Sopenharmony_ci GPC_SPEED = 3<<27, /* PHY speed (ro) */ 20398c2ecf20Sopenharmony_ci GPC_LINK = 1<<26, /* Link up (ro) */ 20408c2ecf20Sopenharmony_ci GPC_DUPLEX = 1<<25, /* Duplex (ro) */ 20418c2ecf20Sopenharmony_ci GPC_CLOCK = 1<<24, /* 125Mhz clock stable (ro) */ 20428c2ecf20Sopenharmony_ci 20438c2ecf20Sopenharmony_ci GPC_PDOWN = 1<<23, /* Internal regulator 2.5 power down */ 20448c2ecf20Sopenharmony_ci GPC_TSTMODE = 1<<22, /* Test mode */ 20458c2ecf20Sopenharmony_ci GPC_REG18 = 1<<21, /* Reg18 Power down */ 20468c2ecf20Sopenharmony_ci GPC_REG12SEL = 3<<19, /* Reg12 power setting */ 20478c2ecf20Sopenharmony_ci GPC_REG18SEL = 3<<17, /* Reg18 power setting */ 20488c2ecf20Sopenharmony_ci GPC_SPILOCK = 1<<16, /* SPI lock (ASF) */ 20498c2ecf20Sopenharmony_ci 20508c2ecf20Sopenharmony_ci GPC_LEDMUX = 3<<14, /* LED Mux */ 20518c2ecf20Sopenharmony_ci GPC_INTPOL = 1<<13, /* Interrupt polarity */ 20528c2ecf20Sopenharmony_ci GPC_DETECT = 1<<12, /* Energy detect */ 20538c2ecf20Sopenharmony_ci GPC_1000HD = 1<<11, /* Enable 1000Mbit HD */ 20548c2ecf20Sopenharmony_ci GPC_SLAVE = 1<<10, /* Slave mode */ 20558c2ecf20Sopenharmony_ci GPC_PAUSE = 1<<9, /* Pause enable */ 20568c2ecf20Sopenharmony_ci GPC_LEDCTL = 3<<6, /* GPHY Leds */ 20578c2ecf20Sopenharmony_ci 20588c2ecf20Sopenharmony_ci GPC_RST_CLR = 1<<1, /* Clear GPHY Reset */ 20598c2ecf20Sopenharmony_ci GPC_RST_SET = 1<<0, /* Set GPHY Reset */ 20608c2ecf20Sopenharmony_ci}; 20618c2ecf20Sopenharmony_ci 20628c2ecf20Sopenharmony_ci/* GMAC_IRQ_SRC 8 bit GMAC Interrupt Source Reg (YUKON only) */ 20638c2ecf20Sopenharmony_ci/* GMAC_IRQ_MSK 8 bit GMAC Interrupt Mask Reg (YUKON only) */ 20648c2ecf20Sopenharmony_cienum { 20658c2ecf20Sopenharmony_ci GM_IS_TX_CO_OV = 1<<5, /* Transmit Counter Overflow IRQ */ 20668c2ecf20Sopenharmony_ci GM_IS_RX_CO_OV = 1<<4, /* Receive Counter Overflow IRQ */ 20678c2ecf20Sopenharmony_ci GM_IS_TX_FF_UR = 1<<3, /* Transmit FIFO Underrun */ 20688c2ecf20Sopenharmony_ci GM_IS_TX_COMPL = 1<<2, /* Frame Transmission Complete */ 20698c2ecf20Sopenharmony_ci GM_IS_RX_FF_OR = 1<<1, /* Receive FIFO Overrun */ 20708c2ecf20Sopenharmony_ci GM_IS_RX_COMPL = 1<<0, /* Frame Reception Complete */ 20718c2ecf20Sopenharmony_ci 20728c2ecf20Sopenharmony_ci#define GMAC_DEF_MSK (GM_IS_TX_FF_UR | GM_IS_RX_FF_OR) 20738c2ecf20Sopenharmony_ci}; 20748c2ecf20Sopenharmony_ci 20758c2ecf20Sopenharmony_ci/* GMAC_LINK_CTRL 16 bit GMAC Link Control Reg (YUKON only) */ 20768c2ecf20Sopenharmony_cienum { /* Bits 15.. 2: reserved */ 20778c2ecf20Sopenharmony_ci GMLC_RST_CLR = 1<<1, /* Clear GMAC Link Reset */ 20788c2ecf20Sopenharmony_ci GMLC_RST_SET = 1<<0, /* Set GMAC Link Reset */ 20798c2ecf20Sopenharmony_ci}; 20808c2ecf20Sopenharmony_ci 20818c2ecf20Sopenharmony_ci 20828c2ecf20Sopenharmony_ci/* WOL_CTRL_STAT 16 bit WOL Control/Status Reg */ 20838c2ecf20Sopenharmony_cienum { 20848c2ecf20Sopenharmony_ci WOL_CTL_LINK_CHG_OCC = 1<<15, 20858c2ecf20Sopenharmony_ci WOL_CTL_MAGIC_PKT_OCC = 1<<14, 20868c2ecf20Sopenharmony_ci WOL_CTL_PATTERN_OCC = 1<<13, 20878c2ecf20Sopenharmony_ci WOL_CTL_CLEAR_RESULT = 1<<12, 20888c2ecf20Sopenharmony_ci WOL_CTL_ENA_PME_ON_LINK_CHG = 1<<11, 20898c2ecf20Sopenharmony_ci WOL_CTL_DIS_PME_ON_LINK_CHG = 1<<10, 20908c2ecf20Sopenharmony_ci WOL_CTL_ENA_PME_ON_MAGIC_PKT = 1<<9, 20918c2ecf20Sopenharmony_ci WOL_CTL_DIS_PME_ON_MAGIC_PKT = 1<<8, 20928c2ecf20Sopenharmony_ci WOL_CTL_ENA_PME_ON_PATTERN = 1<<7, 20938c2ecf20Sopenharmony_ci WOL_CTL_DIS_PME_ON_PATTERN = 1<<6, 20948c2ecf20Sopenharmony_ci WOL_CTL_ENA_LINK_CHG_UNIT = 1<<5, 20958c2ecf20Sopenharmony_ci WOL_CTL_DIS_LINK_CHG_UNIT = 1<<4, 20968c2ecf20Sopenharmony_ci WOL_CTL_ENA_MAGIC_PKT_UNIT = 1<<3, 20978c2ecf20Sopenharmony_ci WOL_CTL_DIS_MAGIC_PKT_UNIT = 1<<2, 20988c2ecf20Sopenharmony_ci WOL_CTL_ENA_PATTERN_UNIT = 1<<1, 20998c2ecf20Sopenharmony_ci WOL_CTL_DIS_PATTERN_UNIT = 1<<0, 21008c2ecf20Sopenharmony_ci}; 21018c2ecf20Sopenharmony_ci 21028c2ecf20Sopenharmony_ci 21038c2ecf20Sopenharmony_ci/* Control flags */ 21048c2ecf20Sopenharmony_cienum { 21058c2ecf20Sopenharmony_ci UDPTCP = 1<<0, 21068c2ecf20Sopenharmony_ci CALSUM = 1<<1, 21078c2ecf20Sopenharmony_ci WR_SUM = 1<<2, 21088c2ecf20Sopenharmony_ci INIT_SUM= 1<<3, 21098c2ecf20Sopenharmony_ci LOCK_SUM= 1<<4, 21108c2ecf20Sopenharmony_ci INS_VLAN= 1<<5, 21118c2ecf20Sopenharmony_ci EOP = 1<<7, 21128c2ecf20Sopenharmony_ci}; 21138c2ecf20Sopenharmony_ci 21148c2ecf20Sopenharmony_cienum { 21158c2ecf20Sopenharmony_ci HW_OWNER = 1<<7, 21168c2ecf20Sopenharmony_ci OP_TCPWRITE = 0x11, 21178c2ecf20Sopenharmony_ci OP_TCPSTART = 0x12, 21188c2ecf20Sopenharmony_ci OP_TCPINIT = 0x14, 21198c2ecf20Sopenharmony_ci OP_TCPLCK = 0x18, 21208c2ecf20Sopenharmony_ci OP_TCPCHKSUM = OP_TCPSTART, 21218c2ecf20Sopenharmony_ci OP_TCPIS = OP_TCPINIT | OP_TCPSTART, 21228c2ecf20Sopenharmony_ci OP_TCPLW = OP_TCPLCK | OP_TCPWRITE, 21238c2ecf20Sopenharmony_ci OP_TCPLSW = OP_TCPLCK | OP_TCPSTART | OP_TCPWRITE, 21248c2ecf20Sopenharmony_ci OP_TCPLISW = OP_TCPLCK | OP_TCPINIT | OP_TCPSTART | OP_TCPWRITE, 21258c2ecf20Sopenharmony_ci 21268c2ecf20Sopenharmony_ci OP_ADDR64 = 0x21, 21278c2ecf20Sopenharmony_ci OP_VLAN = 0x22, 21288c2ecf20Sopenharmony_ci OP_ADDR64VLAN = OP_ADDR64 | OP_VLAN, 21298c2ecf20Sopenharmony_ci OP_LRGLEN = 0x24, 21308c2ecf20Sopenharmony_ci OP_LRGLENVLAN = OP_LRGLEN | OP_VLAN, 21318c2ecf20Sopenharmony_ci OP_MSS = 0x28, 21328c2ecf20Sopenharmony_ci OP_MSSVLAN = OP_MSS | OP_VLAN, 21338c2ecf20Sopenharmony_ci 21348c2ecf20Sopenharmony_ci OP_BUFFER = 0x40, 21358c2ecf20Sopenharmony_ci OP_PACKET = 0x41, 21368c2ecf20Sopenharmony_ci OP_LARGESEND = 0x43, 21378c2ecf20Sopenharmony_ci OP_LSOV2 = 0x45, 21388c2ecf20Sopenharmony_ci 21398c2ecf20Sopenharmony_ci/* YUKON-2 STATUS opcodes defines */ 21408c2ecf20Sopenharmony_ci OP_RXSTAT = 0x60, 21418c2ecf20Sopenharmony_ci OP_RXTIMESTAMP = 0x61, 21428c2ecf20Sopenharmony_ci OP_RXVLAN = 0x62, 21438c2ecf20Sopenharmony_ci OP_RXCHKS = 0x64, 21448c2ecf20Sopenharmony_ci OP_RXCHKSVLAN = OP_RXCHKS | OP_RXVLAN, 21458c2ecf20Sopenharmony_ci OP_RXTIMEVLAN = OP_RXTIMESTAMP | OP_RXVLAN, 21468c2ecf20Sopenharmony_ci OP_RSS_HASH = 0x65, 21478c2ecf20Sopenharmony_ci OP_TXINDEXLE = 0x68, 21488c2ecf20Sopenharmony_ci OP_MACSEC = 0x6c, 21498c2ecf20Sopenharmony_ci OP_PUTIDX = 0x70, 21508c2ecf20Sopenharmony_ci}; 21518c2ecf20Sopenharmony_ci 21528c2ecf20Sopenharmony_cienum status_css { 21538c2ecf20Sopenharmony_ci CSS_TCPUDPCSOK = 1<<7, /* TCP / UDP checksum is ok */ 21548c2ecf20Sopenharmony_ci CSS_ISUDP = 1<<6, /* packet is a UDP packet */ 21558c2ecf20Sopenharmony_ci CSS_ISTCP = 1<<5, /* packet is a TCP packet */ 21568c2ecf20Sopenharmony_ci CSS_ISIPFRAG = 1<<4, /* packet is a TCP/UDP frag, CS calc not done */ 21578c2ecf20Sopenharmony_ci CSS_ISIPV6 = 1<<3, /* packet is a IPv6 packet */ 21588c2ecf20Sopenharmony_ci CSS_IPV4CSUMOK = 1<<2, /* IP v4: TCP header checksum is ok */ 21598c2ecf20Sopenharmony_ci CSS_ISIPV4 = 1<<1, /* packet is a IPv4 packet */ 21608c2ecf20Sopenharmony_ci CSS_LINK_BIT = 1<<0, /* port number (legacy) */ 21618c2ecf20Sopenharmony_ci}; 21628c2ecf20Sopenharmony_ci 21638c2ecf20Sopenharmony_ci/* Yukon 2 hardware interface */ 21648c2ecf20Sopenharmony_cistruct sky2_tx_le { 21658c2ecf20Sopenharmony_ci __le32 addr; 21668c2ecf20Sopenharmony_ci __le16 length; /* also vlan tag or checksum start */ 21678c2ecf20Sopenharmony_ci u8 ctrl; 21688c2ecf20Sopenharmony_ci u8 opcode; 21698c2ecf20Sopenharmony_ci} __packed; 21708c2ecf20Sopenharmony_ci 21718c2ecf20Sopenharmony_cistruct sky2_rx_le { 21728c2ecf20Sopenharmony_ci __le32 addr; 21738c2ecf20Sopenharmony_ci __le16 length; 21748c2ecf20Sopenharmony_ci u8 ctrl; 21758c2ecf20Sopenharmony_ci u8 opcode; 21768c2ecf20Sopenharmony_ci} __packed; 21778c2ecf20Sopenharmony_ci 21788c2ecf20Sopenharmony_cistruct sky2_status_le { 21798c2ecf20Sopenharmony_ci __le32 status; /* also checksum */ 21808c2ecf20Sopenharmony_ci __le16 length; /* also vlan tag */ 21818c2ecf20Sopenharmony_ci u8 css; 21828c2ecf20Sopenharmony_ci u8 opcode; 21838c2ecf20Sopenharmony_ci} __packed; 21848c2ecf20Sopenharmony_ci 21858c2ecf20Sopenharmony_cistruct tx_ring_info { 21868c2ecf20Sopenharmony_ci struct sk_buff *skb; 21878c2ecf20Sopenharmony_ci unsigned long flags; 21888c2ecf20Sopenharmony_ci#define TX_MAP_SINGLE 0x0001 21898c2ecf20Sopenharmony_ci#define TX_MAP_PAGE 0x0002 21908c2ecf20Sopenharmony_ci DEFINE_DMA_UNMAP_ADDR(mapaddr); 21918c2ecf20Sopenharmony_ci DEFINE_DMA_UNMAP_LEN(maplen); 21928c2ecf20Sopenharmony_ci}; 21938c2ecf20Sopenharmony_ci 21948c2ecf20Sopenharmony_cistruct rx_ring_info { 21958c2ecf20Sopenharmony_ci struct sk_buff *skb; 21968c2ecf20Sopenharmony_ci dma_addr_t data_addr; 21978c2ecf20Sopenharmony_ci DEFINE_DMA_UNMAP_LEN(data_size); 21988c2ecf20Sopenharmony_ci dma_addr_t frag_addr[ETH_JUMBO_MTU >> PAGE_SHIFT ?: 1]; 21998c2ecf20Sopenharmony_ci}; 22008c2ecf20Sopenharmony_ci 22018c2ecf20Sopenharmony_cienum flow_control { 22028c2ecf20Sopenharmony_ci FC_NONE = 0, 22038c2ecf20Sopenharmony_ci FC_TX = 1, 22048c2ecf20Sopenharmony_ci FC_RX = 2, 22058c2ecf20Sopenharmony_ci FC_BOTH = 3, 22068c2ecf20Sopenharmony_ci}; 22078c2ecf20Sopenharmony_ci 22088c2ecf20Sopenharmony_cistruct sky2_stats { 22098c2ecf20Sopenharmony_ci struct u64_stats_sync syncp; 22108c2ecf20Sopenharmony_ci u64 packets; 22118c2ecf20Sopenharmony_ci u64 bytes; 22128c2ecf20Sopenharmony_ci}; 22138c2ecf20Sopenharmony_ci 22148c2ecf20Sopenharmony_cistruct sky2_port { 22158c2ecf20Sopenharmony_ci struct sky2_hw *hw; 22168c2ecf20Sopenharmony_ci struct net_device *netdev; 22178c2ecf20Sopenharmony_ci unsigned port; 22188c2ecf20Sopenharmony_ci u32 msg_enable; 22198c2ecf20Sopenharmony_ci spinlock_t phy_lock; 22208c2ecf20Sopenharmony_ci 22218c2ecf20Sopenharmony_ci struct tx_ring_info *tx_ring; 22228c2ecf20Sopenharmony_ci struct sky2_tx_le *tx_le; 22238c2ecf20Sopenharmony_ci struct sky2_stats tx_stats; 22248c2ecf20Sopenharmony_ci 22258c2ecf20Sopenharmony_ci u16 tx_ring_size; 22268c2ecf20Sopenharmony_ci u16 tx_cons; /* next le to check */ 22278c2ecf20Sopenharmony_ci u16 tx_prod; /* next le to use */ 22288c2ecf20Sopenharmony_ci u16 tx_next; /* debug only */ 22298c2ecf20Sopenharmony_ci 22308c2ecf20Sopenharmony_ci u16 tx_pending; 22318c2ecf20Sopenharmony_ci u16 tx_last_mss; 22328c2ecf20Sopenharmony_ci u32 tx_last_upper; 22338c2ecf20Sopenharmony_ci u32 tx_tcpsum; 22348c2ecf20Sopenharmony_ci 22358c2ecf20Sopenharmony_ci struct rx_ring_info *rx_ring ____cacheline_aligned_in_smp; 22368c2ecf20Sopenharmony_ci struct sky2_rx_le *rx_le; 22378c2ecf20Sopenharmony_ci struct sky2_stats rx_stats; 22388c2ecf20Sopenharmony_ci 22398c2ecf20Sopenharmony_ci u16 rx_next; /* next re to check */ 22408c2ecf20Sopenharmony_ci u16 rx_put; /* next le index to use */ 22418c2ecf20Sopenharmony_ci u16 rx_pending; 22428c2ecf20Sopenharmony_ci u16 rx_data_size; 22438c2ecf20Sopenharmony_ci u16 rx_nfrags; 22448c2ecf20Sopenharmony_ci 22458c2ecf20Sopenharmony_ci unsigned long last_rx; 22468c2ecf20Sopenharmony_ci struct { 22478c2ecf20Sopenharmony_ci unsigned long last; 22488c2ecf20Sopenharmony_ci u32 mac_rp; 22498c2ecf20Sopenharmony_ci u8 mac_lev; 22508c2ecf20Sopenharmony_ci u8 fifo_rp; 22518c2ecf20Sopenharmony_ci u8 fifo_lev; 22528c2ecf20Sopenharmony_ci } check; 22538c2ecf20Sopenharmony_ci 22548c2ecf20Sopenharmony_ci dma_addr_t rx_le_map; 22558c2ecf20Sopenharmony_ci dma_addr_t tx_le_map; 22568c2ecf20Sopenharmony_ci 22578c2ecf20Sopenharmony_ci u16 advertising; /* ADVERTISED_ bits */ 22588c2ecf20Sopenharmony_ci u16 speed; /* SPEED_1000, SPEED_100, ... */ 22598c2ecf20Sopenharmony_ci u8 wol; /* WAKE_ bits */ 22608c2ecf20Sopenharmony_ci u8 duplex; /* DUPLEX_HALF, DUPLEX_FULL */ 22618c2ecf20Sopenharmony_ci u16 flags; 22628c2ecf20Sopenharmony_ci#define SKY2_FLAG_AUTO_SPEED 0x0002 22638c2ecf20Sopenharmony_ci#define SKY2_FLAG_AUTO_PAUSE 0x0004 22648c2ecf20Sopenharmony_ci 22658c2ecf20Sopenharmony_ci enum flow_control flow_mode; 22668c2ecf20Sopenharmony_ci enum flow_control flow_status; 22678c2ecf20Sopenharmony_ci 22688c2ecf20Sopenharmony_ci#ifdef CONFIG_SKY2_DEBUG 22698c2ecf20Sopenharmony_ci struct dentry *debugfs; 22708c2ecf20Sopenharmony_ci#endif 22718c2ecf20Sopenharmony_ci}; 22728c2ecf20Sopenharmony_ci 22738c2ecf20Sopenharmony_cistruct sky2_hw { 22748c2ecf20Sopenharmony_ci void __iomem *regs; 22758c2ecf20Sopenharmony_ci struct pci_dev *pdev; 22768c2ecf20Sopenharmony_ci struct napi_struct napi; 22778c2ecf20Sopenharmony_ci struct net_device *dev[2]; 22788c2ecf20Sopenharmony_ci unsigned long flags; 22798c2ecf20Sopenharmony_ci#define SKY2_HW_USE_MSI 0x00000001 22808c2ecf20Sopenharmony_ci#define SKY2_HW_FIBRE_PHY 0x00000002 22818c2ecf20Sopenharmony_ci#define SKY2_HW_GIGABIT 0x00000004 22828c2ecf20Sopenharmony_ci#define SKY2_HW_NEWER_PHY 0x00000008 22838c2ecf20Sopenharmony_ci#define SKY2_HW_RAM_BUFFER 0x00000010 22848c2ecf20Sopenharmony_ci#define SKY2_HW_NEW_LE 0x00000020 /* new LSOv2 format */ 22858c2ecf20Sopenharmony_ci#define SKY2_HW_AUTO_TX_SUM 0x00000040 /* new IP decode for Tx */ 22868c2ecf20Sopenharmony_ci#define SKY2_HW_ADV_POWER_CTL 0x00000080 /* additional PHY power regs */ 22878c2ecf20Sopenharmony_ci#define SKY2_HW_RSS_BROKEN 0x00000100 22888c2ecf20Sopenharmony_ci#define SKY2_HW_VLAN_BROKEN 0x00000200 22898c2ecf20Sopenharmony_ci#define SKY2_HW_RSS_CHKSUM 0x00000400 /* RSS requires chksum */ 22908c2ecf20Sopenharmony_ci#define SKY2_HW_IRQ_SETUP 0x00000800 22918c2ecf20Sopenharmony_ci 22928c2ecf20Sopenharmony_ci u8 chip_id; 22938c2ecf20Sopenharmony_ci u8 chip_rev; 22948c2ecf20Sopenharmony_ci u8 pmd_type; 22958c2ecf20Sopenharmony_ci u8 ports; 22968c2ecf20Sopenharmony_ci 22978c2ecf20Sopenharmony_ci struct sky2_status_le *st_le; 22988c2ecf20Sopenharmony_ci u32 st_size; 22998c2ecf20Sopenharmony_ci u32 st_idx; 23008c2ecf20Sopenharmony_ci dma_addr_t st_dma; 23018c2ecf20Sopenharmony_ci 23028c2ecf20Sopenharmony_ci struct timer_list watchdog_timer; 23038c2ecf20Sopenharmony_ci struct work_struct restart_work; 23048c2ecf20Sopenharmony_ci wait_queue_head_t msi_wait; 23058c2ecf20Sopenharmony_ci 23068c2ecf20Sopenharmony_ci char irq_name[]; 23078c2ecf20Sopenharmony_ci}; 23088c2ecf20Sopenharmony_ci 23098c2ecf20Sopenharmony_cistatic inline int sky2_is_copper(const struct sky2_hw *hw) 23108c2ecf20Sopenharmony_ci{ 23118c2ecf20Sopenharmony_ci return !(hw->flags & SKY2_HW_FIBRE_PHY); 23128c2ecf20Sopenharmony_ci} 23138c2ecf20Sopenharmony_ci 23148c2ecf20Sopenharmony_ci/* Register accessor for memory mapped device */ 23158c2ecf20Sopenharmony_cistatic inline u32 sky2_read32(const struct sky2_hw *hw, unsigned reg) 23168c2ecf20Sopenharmony_ci{ 23178c2ecf20Sopenharmony_ci return readl(hw->regs + reg); 23188c2ecf20Sopenharmony_ci} 23198c2ecf20Sopenharmony_ci 23208c2ecf20Sopenharmony_cistatic inline u16 sky2_read16(const struct sky2_hw *hw, unsigned reg) 23218c2ecf20Sopenharmony_ci{ 23228c2ecf20Sopenharmony_ci return readw(hw->regs + reg); 23238c2ecf20Sopenharmony_ci} 23248c2ecf20Sopenharmony_ci 23258c2ecf20Sopenharmony_cistatic inline u8 sky2_read8(const struct sky2_hw *hw, unsigned reg) 23268c2ecf20Sopenharmony_ci{ 23278c2ecf20Sopenharmony_ci return readb(hw->regs + reg); 23288c2ecf20Sopenharmony_ci} 23298c2ecf20Sopenharmony_ci 23308c2ecf20Sopenharmony_cistatic inline void sky2_write32(const struct sky2_hw *hw, unsigned reg, u32 val) 23318c2ecf20Sopenharmony_ci{ 23328c2ecf20Sopenharmony_ci writel(val, hw->regs + reg); 23338c2ecf20Sopenharmony_ci} 23348c2ecf20Sopenharmony_ci 23358c2ecf20Sopenharmony_cistatic inline void sky2_write16(const struct sky2_hw *hw, unsigned reg, u16 val) 23368c2ecf20Sopenharmony_ci{ 23378c2ecf20Sopenharmony_ci writew(val, hw->regs + reg); 23388c2ecf20Sopenharmony_ci} 23398c2ecf20Sopenharmony_ci 23408c2ecf20Sopenharmony_cistatic inline void sky2_write8(const struct sky2_hw *hw, unsigned reg, u8 val) 23418c2ecf20Sopenharmony_ci{ 23428c2ecf20Sopenharmony_ci writeb(val, hw->regs + reg); 23438c2ecf20Sopenharmony_ci} 23448c2ecf20Sopenharmony_ci 23458c2ecf20Sopenharmony_ci/* Yukon PHY related registers */ 23468c2ecf20Sopenharmony_ci#define SK_GMAC_REG(port,reg) \ 23478c2ecf20Sopenharmony_ci (BASE_GMAC_1 + (port) * (BASE_GMAC_2-BASE_GMAC_1) + (reg)) 23488c2ecf20Sopenharmony_ci#define GM_PHY_RETRIES 100 23498c2ecf20Sopenharmony_ci 23508c2ecf20Sopenharmony_cistatic inline u16 gma_read16(const struct sky2_hw *hw, unsigned port, unsigned reg) 23518c2ecf20Sopenharmony_ci{ 23528c2ecf20Sopenharmony_ci return sky2_read16(hw, SK_GMAC_REG(port,reg)); 23538c2ecf20Sopenharmony_ci} 23548c2ecf20Sopenharmony_ci 23558c2ecf20Sopenharmony_cistatic inline u32 gma_read32(struct sky2_hw *hw, unsigned port, unsigned reg) 23568c2ecf20Sopenharmony_ci{ 23578c2ecf20Sopenharmony_ci unsigned base = SK_GMAC_REG(port, reg); 23588c2ecf20Sopenharmony_ci return (u32) sky2_read16(hw, base) 23598c2ecf20Sopenharmony_ci | (u32) sky2_read16(hw, base+4) << 16; 23608c2ecf20Sopenharmony_ci} 23618c2ecf20Sopenharmony_ci 23628c2ecf20Sopenharmony_cistatic inline u64 gma_read64(struct sky2_hw *hw, unsigned port, unsigned reg) 23638c2ecf20Sopenharmony_ci{ 23648c2ecf20Sopenharmony_ci unsigned base = SK_GMAC_REG(port, reg); 23658c2ecf20Sopenharmony_ci 23668c2ecf20Sopenharmony_ci return (u64) sky2_read16(hw, base) 23678c2ecf20Sopenharmony_ci | (u64) sky2_read16(hw, base+4) << 16 23688c2ecf20Sopenharmony_ci | (u64) sky2_read16(hw, base+8) << 32 23698c2ecf20Sopenharmony_ci | (u64) sky2_read16(hw, base+12) << 48; 23708c2ecf20Sopenharmony_ci} 23718c2ecf20Sopenharmony_ci 23728c2ecf20Sopenharmony_ci/* There is no way to atomically read32 bit values from PHY, so retry */ 23738c2ecf20Sopenharmony_cistatic inline u32 get_stats32(struct sky2_hw *hw, unsigned port, unsigned reg) 23748c2ecf20Sopenharmony_ci{ 23758c2ecf20Sopenharmony_ci u32 val; 23768c2ecf20Sopenharmony_ci 23778c2ecf20Sopenharmony_ci do { 23788c2ecf20Sopenharmony_ci val = gma_read32(hw, port, reg); 23798c2ecf20Sopenharmony_ci } while (gma_read32(hw, port, reg) != val); 23808c2ecf20Sopenharmony_ci 23818c2ecf20Sopenharmony_ci return val; 23828c2ecf20Sopenharmony_ci} 23838c2ecf20Sopenharmony_ci 23848c2ecf20Sopenharmony_cistatic inline u64 get_stats64(struct sky2_hw *hw, unsigned port, unsigned reg) 23858c2ecf20Sopenharmony_ci{ 23868c2ecf20Sopenharmony_ci u64 val; 23878c2ecf20Sopenharmony_ci 23888c2ecf20Sopenharmony_ci do { 23898c2ecf20Sopenharmony_ci val = gma_read64(hw, port, reg); 23908c2ecf20Sopenharmony_ci } while (gma_read64(hw, port, reg) != val); 23918c2ecf20Sopenharmony_ci 23928c2ecf20Sopenharmony_ci return val; 23938c2ecf20Sopenharmony_ci} 23948c2ecf20Sopenharmony_ci 23958c2ecf20Sopenharmony_cistatic inline void gma_write16(const struct sky2_hw *hw, unsigned port, int r, u16 v) 23968c2ecf20Sopenharmony_ci{ 23978c2ecf20Sopenharmony_ci sky2_write16(hw, SK_GMAC_REG(port,r), v); 23988c2ecf20Sopenharmony_ci} 23998c2ecf20Sopenharmony_ci 24008c2ecf20Sopenharmony_cistatic inline void gma_set_addr(struct sky2_hw *hw, unsigned port, unsigned reg, 24018c2ecf20Sopenharmony_ci const u8 *addr) 24028c2ecf20Sopenharmony_ci{ 24038c2ecf20Sopenharmony_ci gma_write16(hw, port, reg, (u16) addr[0] | ((u16) addr[1] << 8)); 24048c2ecf20Sopenharmony_ci gma_write16(hw, port, reg+4,(u16) addr[2] | ((u16) addr[3] << 8)); 24058c2ecf20Sopenharmony_ci gma_write16(hw, port, reg+8,(u16) addr[4] | ((u16) addr[5] << 8)); 24068c2ecf20Sopenharmony_ci} 24078c2ecf20Sopenharmony_ci 24088c2ecf20Sopenharmony_ci/* PCI config space access */ 24098c2ecf20Sopenharmony_cistatic inline u32 sky2_pci_read32(const struct sky2_hw *hw, unsigned reg) 24108c2ecf20Sopenharmony_ci{ 24118c2ecf20Sopenharmony_ci return sky2_read32(hw, Y2_CFG_SPC + reg); 24128c2ecf20Sopenharmony_ci} 24138c2ecf20Sopenharmony_ci 24148c2ecf20Sopenharmony_cistatic inline u16 sky2_pci_read16(const struct sky2_hw *hw, unsigned reg) 24158c2ecf20Sopenharmony_ci{ 24168c2ecf20Sopenharmony_ci return sky2_read16(hw, Y2_CFG_SPC + reg); 24178c2ecf20Sopenharmony_ci} 24188c2ecf20Sopenharmony_ci 24198c2ecf20Sopenharmony_cistatic inline void sky2_pci_write32(struct sky2_hw *hw, unsigned reg, u32 val) 24208c2ecf20Sopenharmony_ci{ 24218c2ecf20Sopenharmony_ci sky2_write32(hw, Y2_CFG_SPC + reg, val); 24228c2ecf20Sopenharmony_ci} 24238c2ecf20Sopenharmony_ci 24248c2ecf20Sopenharmony_cistatic inline void sky2_pci_write16(struct sky2_hw *hw, unsigned reg, u16 val) 24258c2ecf20Sopenharmony_ci{ 24268c2ecf20Sopenharmony_ci sky2_write16(hw, Y2_CFG_SPC + reg, val); 24278c2ecf20Sopenharmony_ci} 24288c2ecf20Sopenharmony_ci#endif 2429