18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* drivers/atm/idt77105.h - IDT77105 (PHY) declarations */ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci/* Written 1999 by Greg Banks, NEC Australia <gnb@linuxfan.com>. Based on suni.h */ 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_ci#ifndef DRIVER_ATM_IDT77105_H 88c2ecf20Sopenharmony_ci#define DRIVER_ATM_IDT77105_H 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ci#include <linux/atmdev.h> 118c2ecf20Sopenharmony_ci#include <linux/atmioc.h> 128c2ecf20Sopenharmony_ci 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_ci/* IDT77105 registers */ 158c2ecf20Sopenharmony_ci 168c2ecf20Sopenharmony_ci#define IDT77105_MCR 0x0 /* Master Control Register */ 178c2ecf20Sopenharmony_ci#define IDT77105_ISTAT 0x1 /* Interrupt Status */ 188c2ecf20Sopenharmony_ci#define IDT77105_DIAG 0x2 /* Diagnostic Control */ 198c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC 0x3 /* LED Driver & HEC Status/Control */ 208c2ecf20Sopenharmony_ci#define IDT77105_CTRLO 0x4 /* Low Byte Counter Register */ 218c2ecf20Sopenharmony_ci#define IDT77105_CTRHI 0x5 /* High Byte Counter Register */ 228c2ecf20Sopenharmony_ci#define IDT77105_CTRSEL 0x6 /* Counter Register Read Select */ 238c2ecf20Sopenharmony_ci 248c2ecf20Sopenharmony_ci/* IDT77105 register values */ 258c2ecf20Sopenharmony_ci 268c2ecf20Sopenharmony_ci/* MCR */ 278c2ecf20Sopenharmony_ci#define IDT77105_MCR_UPLO 0x80 /* R/W, User Prog'le Output Latch */ 288c2ecf20Sopenharmony_ci#define IDT77105_MCR_DREC 0x40 /* R/W, Discard Receive Error Cells */ 298c2ecf20Sopenharmony_ci#define IDT77105_MCR_ECEIO 0x20 /* R/W, Enable Cell Error Interrupts 308c2ecf20Sopenharmony_ci * Only */ 318c2ecf20Sopenharmony_ci#define IDT77105_MCR_TDPC 0x10 /* R/W, Transmit Data Parity Check */ 328c2ecf20Sopenharmony_ci#define IDT77105_MCR_DRIC 0x08 /* R/W, Discard Received Idle Cells */ 338c2ecf20Sopenharmony_ci#define IDT77105_MCR_HALTTX 0x04 /* R/W, Halt Tx */ 348c2ecf20Sopenharmony_ci#define IDT77105_MCR_UMODE 0x02 /* R/W, Utopia (cell/byte) Mode */ 358c2ecf20Sopenharmony_ci#define IDT77105_MCR_EIP 0x01 /* R/W, Enable Interrupt Pin */ 368c2ecf20Sopenharmony_ci 378c2ecf20Sopenharmony_ci/* ISTAT */ 388c2ecf20Sopenharmony_ci#define IDT77105_ISTAT_GOODSIG 0x40 /* R, Good Signal Bit */ 398c2ecf20Sopenharmony_ci#define IDT77105_ISTAT_HECERR 0x20 /* sticky, HEC Error*/ 408c2ecf20Sopenharmony_ci#define IDT77105_ISTAT_SCR 0x10 /* sticky, Short Cell Received */ 418c2ecf20Sopenharmony_ci#define IDT77105_ISTAT_TPE 0x08 /* sticky, Transmit Parity Error */ 428c2ecf20Sopenharmony_ci#define IDT77105_ISTAT_RSCC 0x04 /* sticky, Rx Signal Condition Change */ 438c2ecf20Sopenharmony_ci#define IDT77105_ISTAT_RSE 0x02 /* sticky, Rx Symbol Error */ 448c2ecf20Sopenharmony_ci#define IDT77105_ISTAT_RFO 0x01 /* sticky, Rx FIFO Overrun */ 458c2ecf20Sopenharmony_ci 468c2ecf20Sopenharmony_ci/* DIAG */ 478c2ecf20Sopenharmony_ci#define IDT77105_DIAG_FTD 0x80 /* R/W, Force TxClav deassert */ 488c2ecf20Sopenharmony_ci#define IDT77105_DIAG_ROS 0x40 /* R/W, RxClav operation select */ 498c2ecf20Sopenharmony_ci#define IDT77105_DIAG_MPCS 0x20 /* R/W, Multi-PHY config'n select */ 508c2ecf20Sopenharmony_ci#define IDT77105_DIAG_RFLUSH 0x10 /* R/W, clear receive FIFO */ 518c2ecf20Sopenharmony_ci#define IDT77105_DIAG_ITPE 0x08 /* R/W, Insert Tx payload error */ 528c2ecf20Sopenharmony_ci#define IDT77105_DIAG_ITHE 0x04 /* R/W, Insert Tx HEC error */ 538c2ecf20Sopenharmony_ci#define IDT77105_DIAG_UMODE 0x02 /* R/W, Utopia (cell/byte) Mode */ 548c2ecf20Sopenharmony_ci#define IDT77105_DIAG_LCMASK 0x03 /* R/W, Loopback Control */ 558c2ecf20Sopenharmony_ci 568c2ecf20Sopenharmony_ci#define IDT77105_DIAG_LC_NORMAL 0x00 /* Receive from network */ 578c2ecf20Sopenharmony_ci#define IDT77105_DIAG_LC_PHY_LOOPBACK 0x02 588c2ecf20Sopenharmony_ci#define IDT77105_DIAG_LC_LINE_LOOPBACK 0x03 598c2ecf20Sopenharmony_ci 608c2ecf20Sopenharmony_ci/* LEDHEC */ 618c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_DRHC 0x40 /* R/W, Disable Rx HEC check */ 628c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_DTHC 0x20 /* R/W, Disable Tx HEC calculation */ 638c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_RPWMASK 0x18 /* R/W, RxRef pulse width select */ 648c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_TFS 0x04 /* R, Tx FIFO Status (1=empty) */ 658c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_TLS 0x02 /* R, Tx LED Status (1=lit) */ 668c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_RLS 0x01 /* R, Rx LED Status (1=lit) */ 678c2ecf20Sopenharmony_ci 688c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_RPW_1 0x00 /* RxRef active for 1 RxClk cycle */ 698c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_RPW_2 0x08 /* RxRef active for 2 RxClk cycle */ 708c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_RPW_4 0x10 /* RxRef active for 4 RxClk cycle */ 718c2ecf20Sopenharmony_ci#define IDT77105_LEDHEC_RPW_8 0x18 /* RxRef active for 8 RxClk cycle */ 728c2ecf20Sopenharmony_ci 738c2ecf20Sopenharmony_ci/* CTRSEL */ 748c2ecf20Sopenharmony_ci#define IDT77105_CTRSEL_SEC 0x08 /* W, Symbol Error Counter */ 758c2ecf20Sopenharmony_ci#define IDT77105_CTRSEL_TCC 0x04 /* W, Tx Cell Counter */ 768c2ecf20Sopenharmony_ci#define IDT77105_CTRSEL_RCC 0x02 /* W, Rx Cell Counter */ 778c2ecf20Sopenharmony_ci#define IDT77105_CTRSEL_RHEC 0x01 /* W, Rx HEC Error Counter */ 788c2ecf20Sopenharmony_ci 798c2ecf20Sopenharmony_ci#ifdef __KERNEL__ 808c2ecf20Sopenharmony_ciint idt77105_init(struct atm_dev *dev); 818c2ecf20Sopenharmony_ci#endif 828c2ecf20Sopenharmony_ci 838c2ecf20Sopenharmony_ci/* 848c2ecf20Sopenharmony_ci * Tunable parameters 858c2ecf20Sopenharmony_ci */ 868c2ecf20Sopenharmony_ci 878c2ecf20Sopenharmony_ci/* Time between samples of the hardware cell counters. Should be <= 1 sec */ 888c2ecf20Sopenharmony_ci#define IDT77105_STATS_TIMER_PERIOD (HZ) 898c2ecf20Sopenharmony_ci/* Time between checks to see if the signal has been found again */ 908c2ecf20Sopenharmony_ci#define IDT77105_RESTART_TIMER_PERIOD (5 * HZ) 918c2ecf20Sopenharmony_ci 928c2ecf20Sopenharmony_ci#endif 93