// SPDX-License-Identifier: GPL-2.0+ /* * DPAA backplane driver for SerDes 28G. * Author: Florinel Iordache * * Copyright 2018 NXP * * Licensed under the GPL-2 or later. */ #include #include #include #include "fsl_backplane.h" #define BIN_M1_SEL 0x0000c000 #define BIN_Long_SEL 0x0000d000 #define CDR_SEL_MASK 0x0000f000 #define PRE_COE_SHIFT 16 #define POST_COE_SHIFT 8 #define ZERO_COE_SHIFT 24 #define TECR0_INIT 0x20808000 #define RESET_REQ_MASK 0x80000000 #define RECR3_SNP_START_MASK 0x80000000 #define RECR3_SNP_DONE_MASK 0x40000000 #define RECR4_SNP_DATA_MASK 0x000003ff #define RECR4_SNP_DATA_SHIFT 0 #define RECR4_EQ_SNPBIN_SIGN_MASK 0x200 #define RECR3_GAINK2_MASK 0x1f000000 #define RECR3_GAINK2_SHIFT 24 /* Required only for 1000BASE KX */ #define GCR1_REIDL_TH_MASK 0x00700000 #define GCR1_REIDL_EX_SEL_MASK 0x000c0000 #define GCR1_REIDL_ET_MAS_MASK 0x04000000 #define TECR0_AMP_RED_MASK 0x0000003f struct per_lane_ctrl_status { u32 gcr0; /* 0x.000 - General Control Register 0 */ u32 resv1; /* 0x.004 - Reserved */ u32 resv2; /* 0x.008 - Reserved */ u32 resv3; /* 0x.00C - Reserved */ u32 resv4; /* 0x.010 - Reserved */ u32 resv5; /* 0x.014 - Reserved */ u32 resv6; /* 0x.018 - Reserved */ u32 resv7; /* 0x.01C - Reserved */ u32 trstctl; /* 0x.020 - TX Reset Control Register */ u32 tgcr0; /* 0x.024 - TX General Control Register 0 */ u32 tgcr1; /* 0x.028 - TX General Control Register 1 */ u32 tgcr2; /* 0x.02C - TX General Control Register 2 */ u32 tecr0; /* 0x.030 - Transmit Equalization Control Register 0 */ u32 tecr1; /* 0x.034 - Transmit Equalization Control Register 1 */ u32 resv8; /* 0x.038 - Reserved */ u32 resv9; /* 0x.03C - Reserved */ u32 rrstctl; /* 0x.040 - RX Reset Control Register */ u32 rgcr0; /* 0x.044 - RX General Control Register 0 */ u32 rxgcr1; /* 0x.048 - RX General Control Register 1 */ u32 resv10; /* 0x.04C - Reserved */ u32 recr0; /* 0x.050 - RX Equalization Register 0 */ u32 recr1; /* 0x.054 - RX Equalization Register 1 */ u32 recr2; /* 0x.058 - RX Equalization Register 2 */ u32 recr3; /* 0x.05C - RX Equalization Register 3 */ u32 recr4; /* 0x.060 - RX Equalization Register 4 */ u32 resv11; /* 0x.064 - Reserved */ u32 rccr0; /* 0x.068 - RX Calibration Register 0 */ u32 rccr1; /* 0x.06C - RX Calibration Register 1 */ u32 rcpcr0; /* 0x.070 - RX Clock Path Register 0 */ u32 rsccr0; /* 0x.074 - RX Sampler Calibration Control Register 0 */ u32 rsccr1; /* 0x.078 - RX Sampler Calibration Control Register 1 */ u32 resv12; /* 0x.07C - Reserved */ u32 ttlcr0; /* 0x.080 - Transition Tracking Loop Register 0 */ u32 ttlcr1; /* 0x.084 - Transition Tracking Loop Register 1 */ u32 ttlcr2; /* 0x.088 - Transition Tracking Loop Register 2 */ u32 ttlcr3; /* 0x.08C - Transition Tracking Loop Register 3 */ u32 resv13; /* 0x.090 - Reserved */ u32 resv14; /* 0x.094 - Reserved */ u32 resv15; /* 0x.098 - Reserved */ u32 resv16; /* 0x.09C - Reserved */ u32 tcsr0; /* 0x.0A0 - Test Control/Status Register 0 */ u32 tcsr1; /* 0x.0A4 - Test Control/Status Register 1 */ u32 tcsr2; /* 0x.0A8 - Test Control/Status Register 2 */ u32 tcsr3; /* 0x.0AC - Test Control/Status Register 3 */ u32 tcsr4; /* 0x.0B0 - Test Control/Status Register 4 */ u32 resv17; /* 0x.0B4 - Reserved */ u32 resv18; /* 0x.0B8 - Reserved */ u32 resv19; /* 0x.0BC - Reserved */ u32 rxcb0; /* 0x.0C0 - RX Control Block Register 0 */ u32 rxcb1; /* 0x.0C4 - RX Control Block Register 1 */ u32 resv20; /* 0x.0C8 - Reserved */ u32 resv21; /* 0x.0CC - Reserved */ u32 rxss0; /* 0x.0D0 - RX Speed Switch Register 0 */ u32 rxss1; /* 0x.0D4 - RX Speed Switch Register 1 */ u32 rxss2; /* 0x.0D8 - RX Speed Switch Register 2 */ u32 resv22; /* 0x.0DC - Reserved */ u32 txcb0; /* 0x.0E0 - TX Control Block Register 0 */ u32 txcb1; /* 0x.0E4 - TX Control Block Register 1 */ u32 resv23; /* 0x.0E8 - Reserved */ u32 resv24; /* 0x.0EC - Reserved */ u32 txss0; /* 0x.0F0 - TX Speed Switch Register 0 */ u32 txss1; /* 0x.0F4 - TX Speed Switch Register 1 */ u32 txss2; /* 0x.0F8 - TX Speed Switch Register 2 */ u32 resv25; /* 0x.0FC - Reserved */ }; static struct serdes_access srds; static u32 get_lane_memmap_size(void) { return 0x100; } static void reset_lane(void *reg) { struct per_lane_ctrl_status *reg_base = reg; u32 val; unsigned long timeout; /* reset Tx lane: send reset request */ srds.iowrite32(srds.ioread32(®_base->trstctl) | RESET_REQ_MASK, ®_base->trstctl); udelay(1); timeout = 10; while (timeout--) { val = srds.ioread32(®_base->trstctl); if (!(val & RESET_REQ_MASK)) break; usleep_range(5, 20); } /* reset Rx lane: send reset request */ srds.iowrite32(srds.ioread32(®_base->rrstctl) | RESET_REQ_MASK, ®_base->rrstctl); udelay(1); timeout = 10; while (timeout--) { val = srds.ioread32(®_base->rrstctl); if (!(val & RESET_REQ_MASK)) break; usleep_range(5, 20); } /* wait for a while after reset */ timeout = jiffies + 10; while (time_before(jiffies, timeout)) { schedule(); usleep_range(5, 20); } } static void tune_tecr(void *reg, u32 ratio_preq, u32 ratio_pst1q, u32 adpt_eq, bool reset) { struct per_lane_ctrl_status *reg_base = reg; u32 val; if (reset) { /* reset lanes */ reset_lane(reg); } val = TECR0_INIT | ratio_preq << PRE_COE_SHIFT | ratio_pst1q << POST_COE_SHIFT; srds.iowrite32(val, ®_base->tecr0); val = adpt_eq << ZERO_COE_SHIFT; srds.iowrite32(val, ®_base->tecr1); udelay(1); } static void lane_set_1gkx(void *reg) { struct per_lane_ctrl_status *reg_base = reg; u32 val; /* reset lanes */ reset_lane(reg); /* set gcr1 for 1GKX */ val = srds.ioread32(®_base->rxgcr1); val &= ~(GCR1_REIDL_TH_MASK | GCR1_REIDL_EX_SEL_MASK | GCR1_REIDL_ET_MAS_MASK); srds.iowrite32(val, ®_base->rxgcr1); udelay(1); /* set tecr0 for 1GKX */ val = srds.ioread32(®_base->tecr0); val &= ~TECR0_AMP_RED_MASK; srds.iowrite32(val, ®_base->tecr0); udelay(1); } static int get_median_gaink2(u32 *reg) { int gaink2_snap_shot[BIN_SNAPSHOT_NUM]; u32 rx_eq_snp; struct per_lane_ctrl_status *reg_base; int timeout; int i, j, tmp, pos; reg_base = (struct per_lane_ctrl_status *)reg; for (i = 0; i < BIN_SNAPSHOT_NUM; i++) { /* wait RECR3_SNP_DONE_MASK has cleared */ timeout = 100; while (srds.ioread32(®_base->recr3) & RECR3_SNP_DONE_MASK) { udelay(1); timeout--; if (timeout == 0) break; } /* start snap shot */ srds.iowrite32((srds.ioread32(®_base->recr3) | RECR3_SNP_START_MASK), ®_base->recr3); /* wait for SNP done */ timeout = 100; while (!(srds.ioread32(®_base->recr3) & RECR3_SNP_DONE_MASK)) { udelay(1); timeout--; if (timeout == 0) break; } /* read and save the snap shot */ rx_eq_snp = srds.ioread32(®_base->recr3); gaink2_snap_shot[i] = (rx_eq_snp & RECR3_GAINK2_MASK) >> RECR3_GAINK2_SHIFT; /* terminate the snap shot by setting GCR1[REQ_CTL_SNP] */ srds.iowrite32((srds.ioread32(®_base->recr3) & ~RECR3_SNP_START_MASK), ®_base->recr3); } /* get median of the 5 snap shot */ for (i = 0; i < BIN_SNAPSHOT_NUM - 1; i++) { tmp = gaink2_snap_shot[i]; pos = i; for (j = i + 1; j < BIN_SNAPSHOT_NUM; j++) { if (gaink2_snap_shot[j] < tmp) { tmp = gaink2_snap_shot[j]; pos = j; } } gaink2_snap_shot[pos] = gaink2_snap_shot[i]; gaink2_snap_shot[i] = tmp; } return gaink2_snap_shot[2]; } static bool is_bin_early(int bin_sel, void *reg) { bool early = false; int bin_snap_shot[BIN_SNAPSHOT_NUM]; int i, negative_count = 0; struct per_lane_ctrl_status *reg_base = reg; int timeout; for (i = 0; i < BIN_SNAPSHOT_NUM; i++) { /* wait RECR3_SNP_DONE_MASK has cleared */ timeout = 100; while ((srds.ioread32(®_base->recr3) & RECR3_SNP_DONE_MASK)) { udelay(1); timeout--; if (timeout == 0) break; } /* set TCSR1[CDR_SEL] to BinM1/BinLong */ if (bin_sel == BIN_M1) { srds.iowrite32((srds.ioread32(®_base->recr4) & ~CDR_SEL_MASK) | BIN_M1_SEL, ®_base->recr4); } else { srds.iowrite32((srds.ioread32(®_base->recr4) & ~CDR_SEL_MASK) | BIN_Long_SEL, ®_base->recr4); } /* start snap shot */ srds.iowrite32(srds.ioread32(®_base->recr3) | RECR3_SNP_START_MASK, ®_base->recr3); /* wait for SNP done */ timeout = 100; while (!(srds.ioread32(®_base->recr3) & RECR3_SNP_DONE_MASK)) { udelay(1); timeout--; if (timeout == 0) break; } /* read and save the snap shot */ bin_snap_shot[i] = (srds.ioread32(®_base->recr4) & RECR4_SNP_DATA_MASK) >> RECR4_SNP_DATA_SHIFT; if (bin_snap_shot[i] & RECR4_EQ_SNPBIN_SIGN_MASK) negative_count++; /* terminate the snap shot by setting GCR1[REQ_CTL_SNP] */ srds.iowrite32(srds.ioread32(®_base->recr3) & ~RECR3_SNP_START_MASK, ®_base->recr3); } if (((bin_sel == BIN_M1) && (negative_count > BIN_M1_THRESHOLD)) || ((bin_sel == BIN_LONG && (negative_count > BIN_LONG_THRESHOLD)))) { early = true; } return early; } struct serdes_access* setup_serdes_access_28g(void) { srds.get_lane_memmap_size = get_lane_memmap_size; srds.tune_tecr = tune_tecr; srds.reset_lane = reset_lane; srds.lane_set_1gkx = lane_set_1gkx; srds.get_median_gaink2 = get_median_gaink2; srds.is_bin_early = is_bin_early; return &srds; }