/Linux-v5.10/drivers/net/ethernet/qlogic/qede/ |
D | qede_ptp.c | 40 struct qede_ptp *ptp = container_of(info, struct qede_ptp, clock_info); in qede_ptp_adjfreq() local 41 struct qede_dev *edev = ptp->edev; in qede_ptp_adjfreq() 46 spin_lock_bh(&ptp->lock); in qede_ptp_adjfreq() 47 rc = ptp->ops->adjfreq(edev->cdev, ppb); in qede_ptp_adjfreq() 48 spin_unlock_bh(&ptp->lock); in qede_ptp_adjfreq() 61 struct qede_ptp *ptp; in qede_ptp_adjtime() local 63 ptp = container_of(info, struct qede_ptp, clock_info); in qede_ptp_adjtime() 64 edev = ptp->edev; in qede_ptp_adjtime() 69 spin_lock_bh(&ptp->lock); in qede_ptp_adjtime() 70 timecounter_adjtime(&ptp->tc, delta); in qede_ptp_adjtime() [all …]
|
/Linux-v5.10/drivers/ptp/ |
D | ptp_clock.c | 98 struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock); in ptp_clock_settime() local 100 return ptp->info->settime64(ptp->info, tp); in ptp_clock_settime() 105 struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock); in ptp_clock_gettime() local 108 if (ptp->info->gettimex64) in ptp_clock_gettime() 109 err = ptp->info->gettimex64(ptp->info, tp, NULL); in ptp_clock_gettime() 111 err = ptp->info->gettime64(ptp->info, tp); in ptp_clock_gettime() 117 struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock); in ptp_clock_adjtime() local 121 ops = ptp->info; in ptp_clock_adjtime() 148 ptp->dialed_frequency = tx->freq; in ptp_clock_adjtime() 159 tx->freq = ptp->dialed_frequency; in ptp_clock_adjtime() [all …]
|
D | ptp_sysfs.c | 15 struct ptp_clock *ptp = dev_get_drvdata(dev); in clock_name_show() local 16 return snprintf(page, PAGE_SIZE-1, "%s\n", ptp->info->name); in clock_name_show() 24 struct ptp_clock *ptp = dev_get_drvdata(dev); \ 25 return snprintf(page, PAGE_SIZE-1, "%d\n", ptp->info->var); \ 40 struct ptp_clock *ptp = dev_get_drvdata(dev); in extts_enable_store() local 41 struct ptp_clock_info *ops = ptp->info; in extts_enable_store() 65 struct ptp_clock *ptp = dev_get_drvdata(dev); in extts_fifo_show() local 66 struct timestamp_event_queue *queue = &ptp->tsevq; in extts_fifo_show() 74 if (mutex_lock_interruptible(&ptp->tsevq_mux)) in extts_fifo_show() 91 mutex_unlock(&ptp->tsevq_mux); in extts_fifo_show() [all …]
|
D | ptp_chardev.c | 48 int ptp_set_pinfunc(struct ptp_clock *ptp, unsigned int pin, in ptp_set_pinfunc() argument 51 struct ptp_clock_info *info = ptp->info; in ptp_set_pinfunc() 111 struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock); in ptp_ioctl() local 115 struct ptp_clock_info *ops = ptp->info; in ptp_ioctl() 132 caps.max_adj = ptp->info->max_adj; in ptp_ioctl() 133 caps.n_alarm = ptp->info->n_alarm; in ptp_ioctl() 134 caps.n_ext_ts = ptp->info->n_ext_ts; in ptp_ioctl() 135 caps.n_per_out = ptp->info->n_per_out; in ptp_ioctl() 136 caps.pps = ptp->info->pps; in ptp_ioctl() 137 caps.n_pins = ptp->info->n_pins; in ptp_ioctl() [all …]
|
D | Makefile | 6 ptp-y := ptp_clock.o ptp_chardev.o ptp_sysfs.o 7 obj-$(CONFIG_PTP_1588_CLOCK) += ptp.o 12 obj-$(CONFIG_PTP_1588_CLOCK_QORIQ) += ptp-qoriq.o 13 ptp-qoriq-y += ptp_qoriq.o 14 ptp-qoriq-$(CONFIG_DEBUG_FS) += ptp_qoriq_debugfs.o
|
/Linux-v5.10/drivers/net/ethernet/microchip/ |
D | lan743x_ptp.c | 69 struct lan743x_ptp *ptp = &adapter->ptp; in lan743x_ptp_tx_ts_enqueue_ts() local 71 spin_lock_bh(&ptp->tx_ts_lock); in lan743x_ptp_tx_ts_enqueue_ts() 72 if (ptp->tx_ts_queue_size < LAN743X_PTP_NUMBER_OF_TX_TIMESTAMPS) { in lan743x_ptp_tx_ts_enqueue_ts() 73 ptp->tx_ts_seconds_queue[ptp->tx_ts_queue_size] = seconds; in lan743x_ptp_tx_ts_enqueue_ts() 74 ptp->tx_ts_nseconds_queue[ptp->tx_ts_queue_size] = nano_seconds; in lan743x_ptp_tx_ts_enqueue_ts() 75 ptp->tx_ts_header_queue[ptp->tx_ts_queue_size] = header; in lan743x_ptp_tx_ts_enqueue_ts() 76 ptp->tx_ts_queue_size++; in lan743x_ptp_tx_ts_enqueue_ts() 81 spin_unlock_bh(&ptp->tx_ts_lock); in lan743x_ptp_tx_ts_enqueue_ts() 86 struct lan743x_ptp *ptp = &adapter->ptp; in lan743x_ptp_tx_ts_complete() local 93 spin_lock_bh(&ptp->tx_ts_lock); in lan743x_ptp_tx_ts_complete() [all …]
|
/Linux-v5.10/drivers/net/ethernet/marvell/octeontx2/af/ |
D | ptp.c | 72 struct ptp *ptp_get(void) in ptp_get() 75 struct ptp *ptp; in ptp_get() local 86 ptp = pci_get_drvdata(pdev); in ptp_get() 87 if (!ptp) in ptp_get() 88 ptp = ERR_PTR(-EPROBE_DEFER); in ptp_get() 89 if (IS_ERR(ptp)) in ptp_get() 92 return ptp; in ptp_get() 95 void ptp_put(struct ptp *ptp) in ptp_put() argument 97 if (!ptp) in ptp_put() 100 pci_dev_put(ptp->pdev); in ptp_put() [all …]
|
D | ptp.h | 14 struct ptp { struct 20 struct ptp *ptp_get(void); argument 21 void ptp_put(struct ptp *ptp);
|
/Linux-v5.10/drivers/net/ethernet/sfc/ |
D | ptp.c | 350 static int efx_phc_adjfreq(struct ptp_clock_info *ptp, s32 delta); 351 static int efx_phc_adjtime(struct ptp_clock_info *ptp, s64 delta); 352 static int efx_phc_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts); 353 static int efx_phc_settime(struct ptp_clock_info *ptp, 355 static int efx_phc_enable(struct ptp_clock_info *ptp, 559 struct efx_ptp_data *ptp, in efx_ptp_mac_nic_to_ktime_correction() argument 603 kt = ptp->nic_to_kernel_time(nic_major, nic_minor, in efx_ptp_mac_nic_to_ktime_correction() 612 struct efx_ptp_data *ptp = efx->ptp_data; in efx_ptp_nic_to_kernel_time() local 616 kt = efx_ptp_mac_nic_to_ktime_correction(efx, ptp, in efx_ptp_nic_to_kernel_time() 619 ptp->ts_corrections.general_tx); in efx_ptp_nic_to_kernel_time() [all …]
|
/Linux-v5.10/include/linux/ |
D | ptp_clock_kernel.h | 132 int (*adjfine)(struct ptp_clock_info *ptp, long scaled_ppm); 133 int (*adjfreq)(struct ptp_clock_info *ptp, s32 delta); 134 int (*adjphase)(struct ptp_clock_info *ptp, s32 phase); 135 int (*adjtime)(struct ptp_clock_info *ptp, s64 delta); 136 int (*gettime64)(struct ptp_clock_info *ptp, struct timespec64 *ts); 137 int (*gettimex64)(struct ptp_clock_info *ptp, struct timespec64 *ts, 139 int (*getcrosststamp)(struct ptp_clock_info *ptp, 142 int (*enable)(struct ptp_clock_info *ptp, 144 int (*verify)(struct ptp_clock_info *ptp, unsigned int pin, 146 long (*do_aux_work)(struct ptp_clock_info *ptp); [all …]
|
/Linux-v5.10/drivers/net/ethernet/marvell/octeontx2/nic/ |
D | otx2_ptp.c | 12 struct otx2_ptp *ptp = container_of(ptp_info, struct otx2_ptp, in otx2_ptp_adjfine() local 17 if (!ptp->nic) in otx2_ptp_adjfine() 20 req = otx2_mbox_alloc_msg_ptp_op(&ptp->nic->mbox); in otx2_ptp_adjfine() 27 err = otx2_sync_mbox_msg(&ptp->nic->mbox); in otx2_ptp_adjfine() 36 struct otx2_ptp *ptp = container_of(cc, struct otx2_ptp, cycle_counter); in ptp_cc_read() local 41 if (!ptp->nic) in ptp_cc_read() 44 req = otx2_mbox_alloc_msg_ptp_op(&ptp->nic->mbox); in ptp_cc_read() 50 err = otx2_sync_mbox_msg(&ptp->nic->mbox); in ptp_cc_read() 54 rsp = (struct ptp_rsp *)otx2_mbox_get_rsp(&ptp->nic->mbox.mbox, 0, in ptp_cc_read() 64 struct otx2_ptp *ptp = container_of(ptp_info, struct otx2_ptp, in otx2_ptp_adjtime() local [all …]
|
/Linux-v5.10/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
D | base.c | 44 const int slot = pt->base >> pt->ptp->shift; in nvkm_mmu_ptp_put() 45 struct nvkm_mmu_ptp *ptp = pt->ptp; in nvkm_mmu_ptp_put() local 50 if (!ptp->free) in nvkm_mmu_ptp_put() 51 list_add(&ptp->head, &mmu->ptp.list); in nvkm_mmu_ptp_put() 52 ptp->free |= BIT(slot); in nvkm_mmu_ptp_put() 55 if (ptp->free == ptp->mask) { in nvkm_mmu_ptp_put() 56 nvkm_mmu_ptc_put(mmu, force, &ptp->pt); in nvkm_mmu_ptp_put() 57 list_del(&ptp->head); in nvkm_mmu_ptp_put() 58 kfree(ptp); in nvkm_mmu_ptp_put() 68 struct nvkm_mmu_ptp *ptp; in nvkm_mmu_ptp_get() local [all …]
|
/Linux-v5.10/drivers/net/ethernet/renesas/ |
D | ravb_ptp.c | 73 u32 gti_ns_plus_1 = (priv->ptp.current_addend >> 20) + 1; in ravb_ptp_update_compare() 91 static int ravb_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb) in ravb_ptp_adjfreq() argument 93 struct ravb_private *priv = container_of(ptp, struct ravb_private, in ravb_ptp_adjfreq() 94 ptp.info); in ravb_ptp_adjfreq() 105 addend = priv->ptp.default_addend; in ravb_ptp_adjfreq() 112 priv->ptp.current_addend = addend; in ravb_ptp_adjfreq() 127 static int ravb_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta) in ravb_ptp_adjtime() argument 129 struct ravb_private *priv = container_of(ptp, struct ravb_private, in ravb_ptp_adjtime() 130 ptp.info); in ravb_ptp_adjtime() 148 static int ravb_ptp_gettime64(struct ptp_clock_info *ptp, struct timespec64 *ts) in ravb_ptp_gettime64() argument [all …]
|
/Linux-v5.10/drivers/net/ethernet/cavium/common/ |
D | cavium_ptp.h | 30 void cavium_ptp_put(struct cavium_ptp *ptp); 32 static inline u64 cavium_ptp_tstamp2time(struct cavium_ptp *ptp, u64 tstamp) in cavium_ptp_tstamp2time() argument 37 spin_lock_irqsave(&ptp->spin_lock, flags); in cavium_ptp_tstamp2time() 38 ret = timecounter_cyc2time(&ptp->time_counter, tstamp); in cavium_ptp_tstamp2time() 39 spin_unlock_irqrestore(&ptp->spin_lock, flags); in cavium_ptp_tstamp2time() 56 static inline void cavium_ptp_put(struct cavium_ptp *ptp) {} in cavium_ptp_put() argument 58 static inline u64 cavium_ptp_tstamp2time(struct cavium_ptp *ptp, u64 tstamp) in cavium_ptp_tstamp2time() argument
|
/Linux-v5.10/drivers/net/phy/mscc/ |
D | mscc_ptp.c | 428 static void vsc85xx_dequeue_skb(struct vsc85xx_ptp *ptp) in vsc85xx_dequeue_skb() argument 440 reg = vsc85xx_ts_read_csr(ptp->phydev, PROCESSOR, in vsc85xx_dequeue_skb() 450 reg = vsc85xx_ts_read_csr(ptp->phydev, PROCESSOR, in vsc85xx_dequeue_skb() 458 len = skb_queue_len(&ptp->tx_queue); in vsc85xx_dequeue_skb() 463 skb = __skb_dequeue(&ptp->tx_queue); in vsc85xx_dequeue_skb() 488 __skb_queue_tail(&ptp->tx_queue, skb); in vsc85xx_dequeue_skb() 492 static void vsc85xx_get_tx_ts(struct vsc85xx_ptp *ptp) in vsc85xx_get_tx_ts() argument 497 vsc85xx_dequeue_skb(ptp); in vsc85xx_get_tx_ts() 500 reg = vsc85xx_ts_read_csr(ptp->phydev, PROCESSOR, in vsc85xx_get_tx_ts() 612 struct vsc85xx_ptp *ptp = container_of(info, struct vsc85xx_ptp, caps); in vsc85xx_adjfine() local [all …]
|
/Linux-v5.10/include/soc/mscc/ |
D | ocelot_ptp.h | 47 int ocelot_ptp_gettime64(struct ptp_clock_info *ptp, struct timespec64 *ts); 48 int ocelot_ptp_settime64(struct ptp_clock_info *ptp, 50 int ocelot_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta); 51 int ocelot_ptp_adjfine(struct ptp_clock_info *ptp, long scaled_ppm); 52 int ocelot_ptp_verify(struct ptp_clock_info *ptp, unsigned int pin, 54 int ocelot_ptp_enable(struct ptp_clock_info *ptp,
|
/Linux-v5.10/Documentation/devicetree/bindings/ptp/ |
D | brcm,ptp-dte.txt | 9 "brcm,ptp-dte" 11 "brcm,iproc-ptp-dte" - for iproc based SoC's 16 ptp: ptp-dte@180af650 { 17 compatible = "brcm,iproc-ptp-dte", "brcm,ptp-dte";
|
/Linux-v5.10/drivers/net/ethernet/mellanox/mlx5/core/lib/ |
D | clock.c | 166 static int mlx5_ptp_settime(struct ptp_clock_info *ptp, const struct timespec64 *ts) in mlx5_ptp_settime() argument 168 struct mlx5_clock *clock = container_of(ptp, struct mlx5_clock, ptp_info); in mlx5_ptp_settime() 182 static int mlx5_ptp_gettimex(struct ptp_clock_info *ptp, struct timespec64 *ts, in mlx5_ptp_gettimex() argument 185 struct mlx5_clock *clock = container_of(ptp, struct mlx5_clock, ptp_info); in mlx5_ptp_gettimex() 201 static int mlx5_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta) in mlx5_ptp_adjtime() argument 203 struct mlx5_clock *clock = container_of(ptp, struct mlx5_clock, ptp_info); in mlx5_ptp_adjtime() 216 static int mlx5_ptp_adjfreq(struct ptp_clock_info *ptp, s32 delta) in mlx5_ptp_adjfreq() argument 218 struct mlx5_clock *clock = container_of(ptp, struct mlx5_clock, ptp_info); in mlx5_ptp_adjfreq() 246 static int mlx5_extts_configure(struct ptp_clock_info *ptp, in mlx5_extts_configure() argument 251 container_of(ptp, struct mlx5_clock, ptp_info); in mlx5_extts_configure() [all …]
|
/Linux-v5.10/drivers/net/ethernet/intel/e1000e/ |
D | ptp.c | 25 static int e1000e_phc_adjfreq(struct ptp_clock_info *ptp, s32 delta) in e1000e_phc_adjfreq() argument 27 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter, in e1000e_phc_adjfreq() 36 if ((delta > ptp->max_adj) || (delta <= -1000000000)) in e1000e_phc_adjfreq() 78 static int e1000e_phc_adjtime(struct ptp_clock_info *ptp, s64 delta) in e1000e_phc_adjtime() argument 80 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter, in e1000e_phc_adjtime() 152 static int e1000e_phc_getcrosststamp(struct ptp_clock_info *ptp, in e1000e_phc_getcrosststamp() argument 155 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter, in e1000e_phc_getcrosststamp() 173 static int e1000e_phc_gettimex(struct ptp_clock_info *ptp, in e1000e_phc_gettimex() argument 177 struct e1000_adapter *adapter = container_of(ptp, struct e1000_adapter, in e1000e_phc_gettimex() 203 static int e1000e_phc_settime(struct ptp_clock_info *ptp, in e1000e_phc_settime() argument [all …]
|
/Linux-v5.10/drivers/net/ethernet/stmicro/stmmac/ |
D | stmmac_ptp.c | 21 static int stmmac_adjust_freq(struct ptp_clock_info *ptp, s32 ppb) in stmmac_adjust_freq() argument 24 container_of(ptp, struct stmmac_priv, ptp_clock_ops); in stmmac_adjust_freq() 56 static int stmmac_adjust_time(struct ptp_clock_info *ptp, s64 delta) in stmmac_adjust_time() argument 59 container_of(ptp, struct stmmac_priv, ptp_clock_ops); in stmmac_adjust_time() 93 static int stmmac_get_time(struct ptp_clock_info *ptp, struct timespec64 *ts) in stmmac_get_time() argument 96 container_of(ptp, struct stmmac_priv, ptp_clock_ops); in stmmac_get_time() 118 static int stmmac_set_time(struct ptp_clock_info *ptp, in stmmac_set_time() argument 122 container_of(ptp, struct stmmac_priv, ptp_clock_ops); in stmmac_set_time() 132 static int stmmac_enable(struct ptp_clock_info *ptp, in stmmac_enable() argument 136 container_of(ptp, struct stmmac_priv, ptp_clock_ops); in stmmac_enable()
|
/Linux-v5.10/Documentation/devicetree/bindings/pinctrl/ |
D | marvell,kirkwood-pinctrl.txt | 28 mpp4 4 gpio, nand(io6), uart0(rxd), ptp(clk) 29 mpp5 5 gpo, nand(io7), uart0(txd), ptp(trig) 30 mpp6 6 sysrst(out), spi(mosi), ptp(trig) 31 mpp7 7 gpo, pex(rsto), spi(cs), ptp(trig) 32 mpp8 8 gpio, twsi0(sda), uart0(rts), uart1(rts), ptp(clk), 34 mpp9 9 gpio, twsi(sck), uart0(cts), uart1(cts), ptp(evreq), 36 mpp10 10 gpo, spi(sck), uart0(txd), ptp(trig) 37 mpp11 11 gpio, spi(miso), uart0(rxd), ptp(clk), ptp-1(evreq), 38 ptp-2(trig) 66 mpp4 4 gpio, nand(io6), uart0(rxd), ptp(clk) [all …]
|
/Linux-v5.10/drivers/net/ethernet/marvell/mvpp2/ |
D | mvpp2_tai.c | 85 static struct mvpp2_tai *ptp_to_tai(struct ptp_clock_info *ptp) in ptp_to_tai() argument 87 return container_of(ptp, struct mvpp2_tai, caps); in ptp_to_tai() 164 static int mvpp22_tai_adjfine(struct ptp_clock_info *ptp, long scaled_ppm) in mvpp22_tai_adjfine() argument 166 struct mvpp2_tai *tai = ptp_to_tai(ptp); in mvpp22_tai_adjfine() 205 static int mvpp22_tai_adjtime(struct ptp_clock_info *ptp, s64 delta) in mvpp22_tai_adjtime() argument 207 struct mvpp2_tai *tai = ptp_to_tai(ptp); in mvpp22_tai_adjtime() 235 static int mvpp22_tai_gettimex64(struct ptp_clock_info *ptp, in mvpp22_tai_gettimex64() argument 239 struct mvpp2_tai *tai = ptp_to_tai(ptp); in mvpp22_tai_gettimex64() 276 static int mvpp22_tai_settime64(struct ptp_clock_info *ptp, in mvpp22_tai_settime64() argument 279 struct mvpp2_tai *tai = ptp_to_tai(ptp); in mvpp22_tai_settime64() [all …]
|
/Linux-v5.10/Documentation/ABI/testing/ |
D | sysfs-ptp | 1 What: /sys/class/ptp/ 9 What: /sys/class/ptp/ptpN/ 17 What: /sys/class/ptp/ptpN/clock_name 28 What: /sys/class/ptp/ptpN/max_adjustment 36 What: /sys/class/ptp/ptpN/n_alarms 43 What: /sys/class/ptp/ptpN/n_external_timestamps 50 What: /sys/class/ptp/ptpN/n_periodic_outputs 57 What: /sys/class/ptp/ptpN/n_pins 64 What: /sys/class/ptp/ptpN/pins 77 What: /sys/class/ptp/ptpN/pps_available [all …]
|
/Linux-v5.10/drivers/net/ethernet/mellanox/mlxsw/ |
D | spectrum_ptp.c | 67 struct ptp_clock *ptp; member 151 static int mlxsw_sp1_ptp_adjfine(struct ptp_clock_info *ptp, long scaled_ppm) in mlxsw_sp1_ptp_adjfine() argument 154 container_of(ptp, struct mlxsw_sp_ptp_clock, ptp_info); in mlxsw_sp1_ptp_adjfine() 180 static int mlxsw_sp1_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta) in mlxsw_sp1_ptp_adjtime() argument 183 container_of(ptp, struct mlxsw_sp_ptp_clock, ptp_info); in mlxsw_sp1_ptp_adjtime() 194 static int mlxsw_sp1_ptp_gettimex(struct ptp_clock_info *ptp, in mlxsw_sp1_ptp_gettimex() argument 199 container_of(ptp, struct mlxsw_sp_ptp_clock, ptp_info); in mlxsw_sp1_ptp_gettimex() 212 static int mlxsw_sp1_ptp_settime(struct ptp_clock_info *ptp, in mlxsw_sp1_ptp_settime() argument 216 container_of(ptp, struct mlxsw_sp_ptp_clock, ptp_info); in mlxsw_sp1_ptp_settime() 290 clock->ptp = ptp_clock_register(&clock->ptp_info, dev); in mlxsw_sp1_ptp_clock_init() [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/arm/marvell/ |
D | cp110-system-controller.txt | 91 mpp0 0 gpio, dev(ale1), au(i2smclk), ge0(rxd3), tdm(pclk), ptp(pulse), mss_i2c(sda), uart0(rxd), sa… 92 mpp1 1 gpio, dev(ale0), au(i2sdo_spdifo), ge0(rxd2), tdm(drx), ptp(clk), mss_i2c(sck), uart0(txd), … 93 mpp2 2 gpio, dev(ad15), au(i2sextclk), ge0(rxd1), tdm(dtx), mss_uart(rxd), ptp(pclk_out), i2c1(sck)… 97 …1), ge0(txd3), spi0(csn2), au(i2sextclk), sata1(present_act), pcie2(clkreq), uart0(rxd), ptp(pulse) 98 …, dev(ad10), ge0(txd2), spi0(csn1), spi1(csn1), sata0(present_act), led(data), uart0(txd), ptp(clk) 99 mpp8 8 gpio, dev(ad9), ge0(txd1), spi0(csn0), spi1(csn0), uart0(cts), led(stb), uart2(rxd), ptp(pcl… 106 mpp15 15 gpio, dev(ad7), spi1(mosi), spi0(mosi), mss_spi(mosi), ptp(pulse_cp2cp) 109 mpp18 18 gpio, dev(ad4), ge0(txd2), ptp(clk_cp2cp) 119 mpp28 28 gpio, dev(csn1), spi1(csn0), mss_gpio5, ge0(rxd2), spi0(csn5), pcie2(clkreq), ptp(pulse), … 120 mpp29 29 gpio, dev(csn2), spi1(mosi), mss_gpio6, ge0(rxd1), spi0(csn6), pcie1(clkreq), ptp(clk), ms… [all …]
|