Home
last modified time | relevance | path

Searched full:rdy (Results 1 – 25 of 246) sorted by relevance

12345678910

/kernel/linux/linux-5.10/drivers/bus/
Dts-nbus.c38 struct gpio_desc *rdy; member
79 ts_nbus->rdy = devm_gpiod_get(&pdev->dev, "ts,rdy", GPIOD_IN); in ts_nbus_init_pdata()
80 if (IS_ERR(ts_nbus->rdy)) { in ts_nbus_init_pdata()
81 dev_err(&pdev->dev, "failed to retrieve ts,rdy-gpio from dts\n"); in ts_nbus_init_pdata()
82 return PTR_ERR(ts_nbus->rdy); in ts_nbus_init_pdata()
230 ret = gpiod_get_value_cansleep(ts_nbus->rdy); in ts_nbus_read()
265 while (gpiod_get_value_cansleep(ts_nbus->rdy) != 0) { in ts_nbus_write()
/kernel/linux/linux-6.6/drivers/bus/
Dts-nbus.c35 struct gpio_desc *rdy; member
76 ts_nbus->rdy = devm_gpiod_get(&pdev->dev, "ts,rdy", GPIOD_IN); in ts_nbus_init_pdata()
77 if (IS_ERR(ts_nbus->rdy)) { in ts_nbus_init_pdata()
78 dev_err(&pdev->dev, "failed to retrieve ts,rdy-gpio from dts\n"); in ts_nbus_init_pdata()
79 return PTR_ERR(ts_nbus->rdy); in ts_nbus_init_pdata()
227 ret = gpiod_get_value_cansleep(ts_nbus->rdy); in ts_nbus_read()
262 while (gpiod_get_value_cansleep(ts_nbus->rdy) != 0) { in ts_nbus_write()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/bus/
Dts-nbus.txt16 - ts,rdy-gpios : The GPIO pin connected to the rdy line on the FPGA
43 ts,rdy-gpios = <&gpio0 21 GPIO_ACTIVE_HIGH>;
Dnvidia,tegra20-gmi.txt45 - nvidia,snor-rdy-active-before-data: Assert RDY signal one cycle before data.
47 - nvidia,snor-rdy-active-high: RDY signal is active high
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/bus/
Dts-nbus.txt16 - ts,rdy-gpios : The GPIO pin connected to the rdy line on the FPGA
43 ts,rdy-gpios = <&gpio0 21 GPIO_ACTIVE_HIGH>;
Dnvidia,tegra20-gmi.txt45 - nvidia,snor-rdy-active-before-data: Assert RDY signal one cycle before data.
47 - nvidia,snor-rdy-active-high: RDY signal is active high
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/
Dgpio.c39 struct gpio_desc *rdy; member
124 if (!gpiomtd->rdy) in gpio_nand_exec_instr()
127 return nand_gpio_waitrdy(chip, gpiomtd->rdy, in gpio_nand_exec_instr()
342 gpiomtd->rdy = devm_gpiod_get_optional(dev, "rdy", GPIOD_IN); in gpio_nand_probe()
343 if (IS_ERR(gpiomtd->rdy)) { in gpio_nand_probe()
344 ret = PTR_ERR(gpiomtd->rdy); in gpio_nand_probe()
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/
Dgpio.c39 struct gpio_desc *rdy; member
124 if (!gpiomtd->rdy) in gpio_nand_exec_instr()
127 return nand_gpio_waitrdy(chip, gpiomtd->rdy, in gpio_nand_exec_instr()
345 gpiomtd->rdy = devm_gpiod_get_optional(dev, "rdy", GPIOD_IN); in gpio_nand_probe()
346 if (IS_ERR(gpiomtd->rdy)) { in gpio_nand_probe()
347 ret = PTR_ERR(gpiomtd->rdy); in gpio_nand_probe()
/kernel/linux/linux-6.6/drivers/net/ethernet/fungible/funcore/
Dfun_dev.c42 /* Wait for the CSTS.RDY bit to match @enabled. */
69 "Timed out waiting for device to indicate RDY %u; aborting %s\n", in fun_wait_ready()
75 * RDY value.
87 dev_err(fdev->dev, "Unexpected CSTS RDY %u\n", actual_rdy); in fun_check_csts_rdy()
93 /* Check that CSTS RDY has the expected value. Then write a new value to the CC
94 * register and wait for CSTS RDY to match the new CC ENABLE state.
708 * i.e., CSTS.RDY = CC.EN = 0.
717 /* First get RDY to agree with the current EN. Give RDY the opportunity in sanitize_dev()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/pinctrl/
Dlantiq,pinctrl-xway.txt62 ebu clk, ebu cs1, ebu wait, nand ale, nand cs1, nand cle, nand rdy,
94 ebu cs1, ebu wait, nand ale, nand cs1, nand cle, nand rdy, nand rd,
106 ebu cs1, ebu wait, nand ale, nand cs1, nand cle, nand rdy, nand rd,
121 nand rdy, nand rd, nand_d0, nand_d1, nand_d2, nand_d3, nand_d4, nand_d5,
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/mtd/
Dgpio-control-nand.txt15 GPIO references is: RDY, nCE, ALE, CLE, and nWP. nCE and nWP are optional.
38 gpios = <&banka 1 0>, /* RDY */
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/mtd/
Dgpio-control-nand.txt15 GPIO references is: RDY, nCE, ALE, CLE, and nWP. nCE and nWP are optional.
38 gpios = <&banka 1 0>, /* RDY */
/kernel/linux/linux-6.6/include/linux/mtd/
Dndfc.h29 #define NDFC_CCR_RIE 0x20000000 /* Interrupt Enable on Device Rdy */
30 #define NDFC_CCR_REN 0x10000000 /* Enable wait for Rdy in LinearR */
/kernel/linux/linux-5.10/include/linux/mtd/
Dndfc.h29 #define NDFC_CCR_RIE 0x20000000 /* Interrupt Enable on Device Rdy */
30 #define NDFC_CCR_REN 0x10000000 /* Enable wait for Rdy in LinearR */
/kernel/linux/linux-5.10/drivers/accessibility/speakup/
Dspeakup_dtlk.h20 #define TTS_WRITABLE 0x10 /* mask for RDY bit, which when set to
22 * to accept a byte of data. The RDY
/kernel/linux/linux-6.6/drivers/accessibility/speakup/
Dspeakup_dtlk.h20 #define TTS_WRITABLE 0x10 /* mask for RDY bit, which when set to
22 * to accept a byte of data. The RDY
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/pinctrl/
Dlantiq,pinctrl-xway.txt67 ebu cs1, ebu wait, nand ale, nand cs1, nand cle, nand rdy, nand rd,
79 ebu cs1, ebu wait, nand ale, nand cs1, nand cle, nand rdy, nand rd,
94 nand rdy, nand rd, nand_d0, nand_d1, nand_d2, nand_d3, nand_d4, nand_d5,
/kernel/linux/linux-5.10/drivers/pcmcia/
Dpxa2xx_cm_x255.c35 skt->stat[SOC_STAT_RDY].name = "PCMCIA0 RDY"; in cmx255_pcmcia_hw_init()
40 skt->stat[SOC_STAT_RDY].name = "PCMCIA1 RDY"; in cmx255_pcmcia_hw_init()
/kernel/linux/linux-6.6/include/linux/
Ddtlk.h25 #define TTS_WRITABLE 0x10 /* mask for RDY bit, which when set to
27 to accept a byte of data. The RDY
/kernel/linux/linux-5.10/include/linux/
Ddtlk.h25 #define TTS_WRITABLE 0x10 /* mask for RDY bit, which when set to
27 to accept a byte of data. The RDY
/kernel/linux/linux-5.10/drivers/input/touchscreen/
Dwacom_w8001.c60 u8 rdy; member
111 coord->rdy = data[0] & 0x20; in parse_pen_data()
219 * We have 1 bit for proximity (rdy) and 3 bits for tip, side, in report_pen_events()
220 * side2/eraser. If rdy && f2 are set, this can be either pen + side2, in report_pen_events()
256 input_report_key(dev, w8001->type, coord->rdy); in report_pen_events()
259 if (!coord->rdy) in report_pen_events()
/kernel/linux/linux-6.6/drivers/input/touchscreen/
Dwacom_w8001.c60 u8 rdy; member
111 coord->rdy = data[0] & 0x20; in parse_pen_data()
219 * We have 1 bit for proximity (rdy) and 3 bits for tip, side, in report_pen_events()
220 * side2/eraser. If rdy && f2 are set, this can be either pen + side2, in report_pen_events()
256 input_report_key(dev, w8001->type, coord->rdy); in report_pen_events()
259 if (!coord->rdy) in report_pen_events()
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/
Ddrxd_firm.c35 0x26, 0x00, /* 0 -> ring.rdy; */
42 0x26, 0x00, /* 0 -> ring.rdy; */
63 0x26, 0x00, /* 0 -> ring.rdy; */
68 0x26, 0x00, /* 0 -> ring.rdy; */
71 0x26, 0x00, /* 0 -> ring.rdy; */
75 0x26, 0x00, /* 0 -> ring.rdy; */
124 0x26, 0x00, /* 0 -> ring.rdy; */
129 0x26, 0x00, /* 0 -> ring.rdy; */
132 0x26, 0x00, /* 0 -> ring.rdy; */
136 0x26, 0x00, /* 0 -> ring.rdy; */
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
Ddrxd_firm.c35 0x26, 0x00, /* 0 -> ring.rdy; */
42 0x26, 0x00, /* 0 -> ring.rdy; */
63 0x26, 0x00, /* 0 -> ring.rdy; */
68 0x26, 0x00, /* 0 -> ring.rdy; */
71 0x26, 0x00, /* 0 -> ring.rdy; */
75 0x26, 0x00, /* 0 -> ring.rdy; */
124 0x26, 0x00, /* 0 -> ring.rdy; */
129 0x26, 0x00, /* 0 -> ring.rdy; */
132 0x26, 0x00, /* 0 -> ring.rdy; */
136 0x26, 0x00, /* 0 -> ring.rdy; */
/kernel/linux/linux-6.6/Documentation/devicetree/bindings/phy/
Dphy-miphy28lp.txt34 - st,osc-rdy : to check the MIPHY0_OSC_RDY status in the glue-logic. This
65 st,osc-rdy;

12345678910