Searched +full:pindir +full:- +full:d0 +full:- +full:out +full:- +full:d1 +full:- +full:in (Results  1 – 8 of 8) sorted by relevance
| /linux/Documentation/devicetree/bindings/spi/ | 
| H A D | omap-spi.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---
 4 $id: http://devicetree.org/schemas/spi/omap-spi.yaml#
 5 $schema: http://devicetree.org/meta-schemas/core.yaml#
 10   - Aswath Govindraju <a-govindraju@ti.com>
 13   - $ref: spi-controller.yaml#
 18       - items:
 19           - enum:
 20               - ti,am654-mcspi
 21               - ti,am4372-mcspi
 [all …]
 
 | 
| /linux/arch/arm64/boot/dts/ti/ | 
| H A D | k3-am642-phyboard-electra-x27-gpio1-spi1-uart3.dtso | 1 // SPDX-License-Identifier: GPL-2.0-only OR MIT11 /dts-v1/;
 14 #include "k3-pinctrl.h"
 23 	main_gpio1_exp_header_gpio_pins_default: main-gpio1-exp-header-gpio-pins-default {
 24 		pinctrl-single,pins = <
 29 	main_spi1_pins_default: main-spi1-pins-default {
 30 		pinctrl-single,pins = <
 38 	main_uart3_pins_default: main-uart3-pins-default {
 39 		pinctrl-single,pins = <
 47 	pinctrl-names = "default";
 [all …]
 
 | 
| H A D | k3-am68-phyboard-izar.dts | 1 // SPDX-License-Identifier: GPL-2.0-only OR MIT6  * https://www.phytec.eu/en/produkte/development-kits/phyboard-izar/
 9 /dts-v1/;
 11 #include <dt-bindings/leds/leds-pca9532.h>
 12 #include <dt-bindings/net/ti-dp83867.h>
 13 #include <dt-bindings/phy/phy-cadence.h>
 14 #include <dt-bindings/phy/phy.h>
 15 #include "k3-am68-phycore-som.dtsi"
 17 #include "k3-serdes.h"
 20 	compatible = "phytec,am68-phyboard-izar",
 [all …]
 
 | 
| /linux/arch/arm/boot/dts/ti/omap/ | 
| H A D | am57xx-idk-common.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only3  * Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
 6 #include "am57xx-industrial-grade.dtsi"
 16 		stdout-path = &uart3;
 19 	vmain: fixedregulator-vmain {
 20 		compatible = "regulator-fixed";
 21 		regulator-name = "VMAIN";
 22 		regulator-min-microvolt = <5000000>;
 23 		regulator-max-microvolt = <5000000>;
 24 		regulator-always-on;
 [all …]
 
 | 
| H A D | am335x-pdu001.dts | 6  * Copyright (C) 2018 EETS GmbH - https://www.eets.ch/8  * Copyright (C) 2011, Texas Instruments, Incorporated - https://www.ti.com/
 10  * SPDX-License-Identifier:  GPL-2.0+
 13 /dts-v1/;
 16 #include <dt-bindings/interrupt-controller/irq.h>
 17 #include <dt-bindings/leds/leds-pca9532.h>
 24 		stdout-path = &uart3;
 29 			cpu0-supply = <&vdd1_reg>;
 39 		compatible = "regulator-fixed";
 40 		regulator-name = "vbat";
 [all …]
 
 | 
| H A D | am5729-beagleboneai.dts | 1 // SPDX-License-Identifier: GPL-2.03  * Copyright (C) 2014-2019 Texas Instruments Incorporated - https://www.ti.com/
 6 /dts-v1/;
 9 #include "am57xx-commercial-grade.dtsi"
 10 #include "dra74x-mmc-iodelay.dtsi"
 11 #include "dra74-ipu-dsp-common.dtsi"
 12 #include <dt-bindings/gpio/gpio.h>
 13 #include <dt-bindings/interrupt-controller/irq.h>
 14 #include <dt-bindings/pinctrl/dra.h>
 18 	compatible = "beagle,am5729-beagleboneai", "ti,am5728",
 [all …]
 
 | 
| H A D | am335x-guardian.dts | 1 // SPDX-License-Identifier: GPL-2.03  * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
 6 /dts-v1/;
 9 #include <dt-bindings/input/input.h>
 10 #include <dt-bindings/interrupt-controller/irq.h>
 14 	compatible = "bosch,am335x-guardian", "ti,am33xx";
 17 		stdout-path = &uart0;
 18 		tick-timer = &timer2;
 23 			cpu0-supply = <&dcdc2_reg>;
 32 	guardian_buttons: gpio-keys {
 [all …]
 
 | 
| /linux/drivers/spi/ | 
| H A D | spi-omap2-mcspi.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later15 #include <linux/dma-mapping.h>
 32 #include <linux/platform_data/spi-omap2-mcspi.h>
 49 /* per-channel banks, 0x14 bytes each, first is: */
 56 /* per-register bitmasks: */
 155 	writel_relaxed(val, mcspi->base + idx);  in mcspi_write_reg()
 162 	return readl_relaxed(mcspi->base + idx);  in mcspi_read_reg()
 168 	struct omap2_mcspi_cs	*cs = spi->controller_state;  in mcspi_write_cs_reg()
 170 	writel_relaxed(val, cs->base +  idx);  in mcspi_write_cs_reg()
 175 	struct omap2_mcspi_cs	*cs = spi->controller_state;  in mcspi_read_cs_reg()
 [all …]
 
 |