/linux-6.3-rc2/tools/testing/selftests/timers/ |
A D | adjtick.c | 118 struct timex tx1; in check_tick_adj() local 126 tx1.offset = 0; in check_tick_adj() 127 tx1.freq = 0; in check_tick_adj() 130 adjtimex(&tx1); in check_tick_adj() 141 tx1.modes = 0; in check_tick_adj() 142 adjtimex(&tx1); in check_tick_adj() 144 if (tx1.offset || tx1.freq || tx1.tick != tickval) { in check_tick_adj() 172 struct timex tx1; in main() local 201 tx1.offset = 0; in main() 202 tx1.freq = 0; in main() [all …]
|
A D | raw_skew.c | 96 struct timex tx1, tx2; in main() local 105 tx1.modes = 0; in main() 106 adjtimex(&tx1); in main() 111 if (tx1.offset) in main() 132 ppm = (tx1.freq + tx2.freq) * 1000 / 2; in main() 133 ppm = (long long)tx1.freq * 1000; in main() 138 if (tx1.offset || tx2.offset || in main() 139 tx1.freq != tx2.freq || tx1.tick != tx2.tick) { in main()
|
/linux-6.3-rc2/drivers/phy/qualcomm/ |
A D | phy-qcom-edp.c | 91 void __iomem *tx1; member 273 writel(swing, edp->tx1 + TXn_TX_DRV_LVL); in qcom_edp_set_voltages() 478 writel(0x00, edp->tx1 + TXn_LANE_MODE_1); in qcom_edp_phy_power_on() 503 writel(0x0f, edp->tx1 + TXn_CLKBUF_ENABLE); in qcom_edp_phy_power_on() 506 writel(0x04, edp->tx1 + TXn_TX_BAND); in qcom_edp_phy_power_on() 528 writel(0x1f, edp->tx1 + TXn_HIGHZ_DRVR_EN); in qcom_edp_phy_power_on() 529 writel(0x04, edp->tx1 + TXn_HIGHZ_DRVR_EN); in qcom_edp_phy_power_on() 530 writel(0x00, edp->tx1 + TXn_TX_POL_INV); in qcom_edp_phy_power_on() 541 writel(0x1f, edp->tx1 + TXn_TX_DRV_LVL); in qcom_edp_phy_power_on() 796 if (IS_ERR(edp->tx1)) in qcom_edp_phy_probe() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/8390/ |
A D | lib8390.c | 348 if (ei_local->tx1 == 0) { in __ei_start_xmit() 350 ei_local->tx1 = send_length; in __ei_start_xmit() 360 ei_local->tx1 > 0) in __ei_start_xmit() 389 ei_local->tx1 = -1; in __ei_start_xmit() 398 if (ei_local->tx1 && ei_local->tx2) in __ei_start_xmit() 594 if (ei_local->tx1 < 0) { in ei_tx_intr() 598 ei_local->tx1 = 0; in ei_tx_intr() 614 if (ei_local->tx1 > 0) { in ei_tx_intr() 618 ei_local->tx1 = -1; in ei_tx_intr() 1036 ei_local->tx1 = ei_local->tx2 = 0; in __NS8390_init() [all …]
|
A D | axnet_cs.c | 994 if (ei_local->tx1 == 0) in axnet_start_xmit() 997 ei_local->tx1 = send_length; in axnet_start_xmit() 1010 ei_local->tx1 > 0) in axnet_start_xmit() 1020 ei_local->tx1, ei_local->tx2, in axnet_start_xmit() 1051 ei_local->tx1 = -1; in axnet_start_xmit() 1266 if (ei_local->tx1 < 0) in ei_tx_intr() 1271 ei_local->tx1); in ei_tx_intr() 1272 ei_local->tx1 = 0; in ei_tx_intr() 1292 if (ei_local->tx1 > 0) in ei_tx_intr() 1297 ei_local->tx1 = -1; in ei_tx_intr() [all …]
|
A D | 8390.h | 96 short tx1, tx2; /* Packet lengths for ping-pong tx. */ member
|
/linux-6.3-rc2/arch/arm64/boot/dts/freescale/ |
A D | imx8-ss-vpu.dtsi | 46 mbox-names = "tx0", "tx1", "rx"; 57 mbox-names = "tx0", "tx1", "rx"; 68 mbox-names = "tx0", "tx1", "rx";
|
/linux-6.3-rc2/Documentation/devicetree/bindings/media/ |
A D | amphion,vpu.yaml | 73 - const: tx1 150 mbox-names = "tx0", "tx1", "rx"; 161 mbox-names = "tx0", "tx1", "rx"; 172 mbox-names = "tx0", "tx1", "rx";
|
/linux-6.3-rc2/Documentation/devicetree/bindings/sound/ |
A D | nvidia,tegra210-admaif.yaml | 74 Should be "tx1", "tx2" ... "tx10" for DMA Tx channel 90 Should be "tx1", "tx2" ... "tx20" for DMA Tx channel 117 dma-names = "rx1", "tx1",
|
A D | nvidia,tegra-audio-graph-card.yaml | 92 label = "jetson-tx1-ape"; 141 dma-names = "rx1", "tx1",
|
A D | renesas,rz-ssi.yaml | 65 MID/RID value of SSI tx1 = 0x259
|
A D | nvidia,tegra30-ahub.txt | 84 dma-names = "rx0", "tx0", "rx1", "tx1", "rx2", "tx2", "rx3", "tx3";
|
/linux-6.3-rc2/Documentation/driver-api/dmaengine/ |
A D | pxa_dma.rst | 21 This implies that even if an irq/tasklet is triggered by end of tx1, but 22 at the time of irq/dma tx2 is already finished, tx1->complete() and 146 - a driver submitted an aligned tx1, not chained 148 - a driver submitted an aligned tx2 => tx2 is cold chained to tx1 150 - a driver issued tx1+tx2 => channel is running in aligned mode 172 | tx1 | | tx2 | | tx3 | | tx4 |
|
/linux-6.3-rc2/arch/powerpc/boot/dts/ |
A D | tqm8xx.dts | 76 bosch,disconnect-tx1-output; 88 bosch,disconnect-tx1-output;
|
/linux-6.3-rc2/Documentation/devicetree/bindings/firmware/ |
A D | fsl,scu.yaml | 98 - const: tx1 107 - const: tx1 158 mbox-names = "tx0", "tx1", "tx2", "tx3",
|
/linux-6.3-rc2/arch/arm64/boot/dts/rockchip/ |
A D | rk3588-pinctrl.dtsi | 153 hdmim0_tx1_cec: hdmim0-tx1-cec { 160 hdmim0_tx1_scl: hdmim0-tx1-scl { 167 hdmim0_tx1_sda: hdmim0-tx1-sda {
|
/linux-6.3-rc2/net/wireless/ |
A D | Makefile | 44 thisf=$$(od -An -v -tx1 < $$f | \
|
/linux-6.3-rc2/Documentation/devicetree/bindings/phy/ |
A D | qcom,edp-phy.yaml | 29 - description: tx1 register block
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | omap2.dtsi | 138 dma-names = "tx0", "rx0", "tx1", "rx1", 148 dma-names = "tx0", "rx0", "tx1", "rx1";
|
A D | dm814x.dtsi | 113 "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", "tx7", 151 "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", "tx7", 272 dma-names = "tx0", "rx0", "tx1", "rx1", 286 dma-names = "tx0", "rx0", "tx1", "rx1";
|
A D | dm816x.dtsi | 422 dma-names = "tx0", "rx0", "tx1", "rx1", 599 "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", "tx7", 639 "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", "tx7",
|
/linux-6.3-rc2/Documentation/devicetree/bindings/usb/ |
A D | am33xx-usb.txt | 136 "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", "tx7", 182 "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", "tx7",
|
A D | da8xx-usb.txt | 67 "tx1", "tx2", "tx3", "tx4";
|
/linux-6.3-rc2/Documentation/devicetree/bindings/net/can/ |
A D | cc770.txt | 35 - bosch,disconnect-tx1-output : see data sheet.
|
/linux-6.3-rc2/Documentation/devicetree/bindings/net/ |
A D | ti,k3-am654-cpsw-nuss.yaml | 97 - const: tx1 258 dma-names = "tx0", "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", "tx7",
|