Home
last modified time | relevance | path

Searched +full:nint +full:- +full:gpios (Results 1 – 10 of 10) sorted by relevance

/Zephyr-latest/dts/bindings/mfd/
Dadi,adp5585.yaml2 # SPDX-License-Identifier: Apache-2.0
8 include: i2c-device.yaml
11 reset-gpios:
12 type: phandle-array
15 nint-gpios:
16 type: phandle-array
18 Connection for the NINT signal. This signal is active-low when
/Zephyr-latest/dts/bindings/gpio/
Dti,tca9538.yaml3 # SPDX-License-Identifier: Apache-2.0
9 include: [i2c-device.yaml, gpio-controller.yaml]
12 "#gpio-cells":
19 Number of GPIOs available on port expander.
21 nint-gpios:
22 type: phandle-array
24 Connection for the NINT signal. This signal is active-low when
27 input-latch:
34 interrupt-mask:
41 gpio-cells:
[all …]
Dsemtech,sx1509b.yaml2 # SPDX-License-Identifier: Apache-2.0
8 include: [i2c-device.yaml, gpio-controller.yaml]
11 "#gpio-cells":
18 nint-gpios:
19 type: phandle-array
21 Connection for the NINT signal. This signal is active-low when
24 init-out-low:
31 init-out-high:
38 gpio-cells:
39 - pin
[all …]
/Zephyr-latest/tests/drivers/gpio/gpio_api_1pin/boards/
Dparticle_xenon.overlay4 * SPDX-License-Identifier: Apache-2.0
9 compatible = "test-gpio-basic-api";
10 out-gpios = <&sx1509b 0 0>; /* EXT0 */
11 in-gpios = <&sx1509b 1 0>; /* EXT1 */
15 compatible = "gpio-keys";
17 gpios = <&sx1509b 2 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
27 gpio-controller;
28 #gpio-cells = <2>;
30 nint-gpios =<&gpio1 1 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
/Zephyr-latest/tests/drivers/gpio/gpio_basic_api/boards/
Dparticle_xenon.overlay4 * SPDX-License-Identifier: Apache-2.0
9 compatible = "test-gpio-basic-api";
10 out-gpios = <&sx1509b 0 0>; /* EXT0 */
11 in-gpios = <&sx1509b 1 0>; /* EXT1 */
15 compatible = "gpio-keys";
17 gpios = <&sx1509b 2 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
27 gpio-controller;
28 #gpio-cells = <2>;
30 nint-gpios =<&gpio1 1 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
/Zephyr-latest/dts/bindings/can/
Dti,tcan4x5x.yaml2 # SPDX-License-Identifier: Apache-2.0
12 spi-max-frequency = <18000000>;
13 clock-frequency = <40000000>;
14 device-state-gpios = <&gpio0 0 GPIO_ACTIVE_LOW>;
15 device-wake-gpios = <&gpio0 1 GPIO_ACTIVE_HIGH>;
16 reset-gpios = <&gpio0 2 GPIO_ACTIVE_HIGH>;
17 int-gpios = <&gpio0 3 GPIO_ACTIVE_LOW>;
18 bosch,mram-cfg = <0x0 15 15 5 5 0 10 10>;
21 can-transceiver {
22 max-bitrate = <8000000>;
[all …]
/Zephyr-latest/boards/ezurio/bt610/
Dbt610.dts5 * SPDX-License-Identifier: Apache-2.0
8 /dts-v1/;
10 #include "bt610-pinctrl.dtsi"
11 #include <zephyr/dt-bindings/input/input-event-codes.h>
19 zephyr,shell-uart = &uart0;
20 zephyr,uart-mcumgr = &uart0;
21 zephyr,bt-mon-uart = &uart0;
22 zephyr,bt-c2h-uart = &uart0;
25 zephyr,code-partition = &slot0_partition;
30 compatible = "gpio-leds";
[all …]
/Zephyr-latest/boards/ezurio/bl5340_dvk/
Dbl5340_dvk_nrf5340_cpuapp_common.dtsi2 * Copyright (c) 2019-2023 Nordic Semiconductor ASA
3 * Copyright (c) 2021-2023 Laird Connectivity
5 * SPDX-License-Identifier: Apache-2.0
7 #include "bl5340_dvk_nrf5340_cpuapp_common-pinctrl.dtsi"
8 #include <zephyr/dt-bindings/input/input-event-codes.h>
13 zephyr,shell-uart = &uart0;
14 zephyr,uart-mcumgr = &uart0;
15 zephyr,bt-mon-uart = &uart0;
16 zephyr,bt-c2h-uart = &uart0;
18 zephyr,bt-hci = &bt_hci_ipc0;
[all …]
/Zephyr-latest/tests/drivers/build_all/gpio/
Dapp.overlay4 * SPDX-License-Identifier: Apache-2.0
9 * with real-world devicetree nodes, to allow these tests to run on
15 #address-cells = <1>;
16 #size-cells = <1>;
20 gpio-controller;
22 #gpio-cells = <0x2>;
27 compatible = "snps,designware-gpio";
28 gpio-controller;
30 #gpio-cells = <0x2>;
35 #address-cells = <1>;
[all …]
/Zephyr-latest/drivers/can/
Dcan_tcan4x5x.c4 * SPDX-License-Identifier: Apache-2.0
21 * The register definitions correspond to those found in the TI TCAN4550-Q1 datasheet, revision D
209 * Only compile in support for the optional GPIOs if at least one enabled tcan4x5x device tree node
241 const struct can_mcan_config *mcan_config = dev->config; in tcan4x5x_read()
242 const struct tcan4x5x_config *tcan_config = mcan_config->custom; in tcan4x5x_read()
271 /* Maximum transfer size is 256 32-bit words */ in tcan4x5x_read()
275 err = spi_transceive_dt(&tcan_config->spi, &tx, &rx); in tcan4x5x_read()
292 const struct can_mcan_config *mcan_config = dev->config; in tcan4x5x_write()
293 const struct tcan4x5x_config *tcan_config = mcan_config->custom; in tcan4x5x_write()
321 /* Maximum transfer size is 256 32-bit words */ in tcan4x5x_write()
[all …]