Searched +full:am654 +full:- +full:mcspi (Results  1 – 5 of 5) 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-am64-mcu.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only OR MIT5  * Copyright (C) 2020-2024 Texas Instruments Incorporated - https://www.ti.com/
 15 		compatible = "ti,am654-timer";
 18 		clock-names = "fck";
 19 		power-domains = <&k3_pds 35 TI_SCI_PD_EXCLUSIVE>;
 20 		ti,timer-pwm;
 25 		compatible = "ti,am654-timer";
 28 		clock-names = "fck";
 29 		power-domains = <&k3_pds 48 TI_SCI_PD_EXCLUSIVE>;
 30 		ti,timer-pwm;
 [all …]
 
 | 
| H A D | k3-am62-mcu.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only OR MIT5  * Copyright (C) 2020-2024 Texas Instruments Incorporated - https://www.ti.com/
 10 		bootph-all;
 11 		compatible = "pinctrl-single";
 13 		#pinctrl-cells = <1>;
 14 		pinctrl-single,register-width = <32>;
 15 		pinctrl-single,function-mask = <0xffffffff>;
 19 		bootph-pre-ram;
 20 		compatible = "ti,j721e-esm";
 23 		ti,esm-pins = <0>, <1>, <2>, <85>;
 [all …]
 
 | 
| H A D | k3-am65-main.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only OR MIT5  * Copyright (C) 2016-2024 Texas Instruments Incorporated - https://www.ti.com/
 7 #include <dt-bindings/phy/phy-am654-serdes.h>
 11 		compatible = "mmio-sram";
 13 		#address-cells = <1>;
 14 		#size-cells = <1>;
 17 		atf-sram@0 {
 21 		sysfw-sram@f0000 {
 25 		l3cache-sram@100000 {
 30 	gic500: interrupt-controller@1800000 {
 [all …]
 
 | 
| /linux/drivers/spi/ | 
| H A D | spi-omap2-mcspi.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later3  * OMAP2 McSPI controller driver
 15 #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: */
 153 	struct omap2_mcspi *mcspi = spi_controller_get_devdata(ctlr);  in mcspi_write_reg()  local
 155 	writel_relaxed(val, mcspi->base + idx);  in mcspi_write_reg()
 160 	struct omap2_mcspi *mcspi = spi_controller_get_devdata(ctlr);  in mcspi_read_reg()  local
 162 	return readl_relaxed(mcspi->base + idx);  in mcspi_read_reg()
 [all …]
 
 |