Home
last modified time | relevance | path

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

/Zephyr-Core-3.5.0/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 gpio-cells:
28 - pin
29 - flags
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-Core-3.5.0/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-Core-3.5.0/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-Core-3.5.0/dts/bindings/can/
Dti,tcan4x5x.yaml2 # SPDX-License-Identifier: Apache-2.0
5 Texas Instruments TCAN4x5x SPI CAN-FD controller.
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>;
19 sample-point = <875>;
[all …]
/Zephyr-Core-3.5.0/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 #address-cells = <1>;
28 #size-cells = <0>;
32 clock-frequency = <100000>;
37 #gpio-cells = <2>;
[all …]
/Zephyr-Core-3.5.0/boards/arm/bt610/
Dbt610.dts4 * SPDX-License-Identifier: Apache-2.0
7 /dts-v1/;
9 #include "bt610-pinctrl.dtsi"
10 #include <zephyr/dt-bindings/input/input-event-codes.h>
18 zephyr,shell-uart = &uart0;
19 zephyr,uart-mcumgr = &uart0;
20 zephyr,bt-mon-uart = &uart0;
21 zephyr,bt-c2h-uart = &uart0;
24 zephyr,code-partition = &slot0_partition;
29 compatible = "gpio-leds";
[all …]
/Zephyr-Core-3.5.0/boards/arm/bl5340_dvk/
Dbl5340_dvk_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_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-rpmsg-ipc = &ipc0;
[all …]
/Zephyr-Core-3.5.0/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 …]