Searched +full:ep9301 +full:- +full:spi (Results 1 – 10 of 10) sorted by relevance
/linux-6.12.1/Documentation/devicetree/bindings/spi/ |
D | cirrus,ep9301-spi.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/spi/cirrus,ep9301-spi.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: EP93xx SoC SPI controller 10 - Alexander Sverdlin <alexander.sverdlin@gmail.com> 11 - Nikita Shubin <nikita.shubin@maquefel.me> 14 - $ref: spi-controller.yaml# 19 - const: cirrus,ep9301-spi 20 - items: [all …]
|
/linux-6.12.1/arch/arm/boot/dts/cirrus/ |
D | ep93xx.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 5 #include <dt-bindings/gpio/gpio.h> 6 #include <dt-bindings/leds/common.h> 7 #include <dt-bindings/input/input.h> 8 #include <dt-bindings/clock/cirrus,ep9301-syscon.h> 11 compatible = "simple-bus"; 13 #address-cells = <1>; 14 #size-cells = <1>; 17 compatible = "cirrus,ep9301-syscon", "syscon"; 20 #clock-cells = <1>; [all …]
|
D | ep93xx-edb9302.dts | 1 // SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 5 /dts-v1/; 9 #address-cells = <1>; 10 #size-cells = <1>; 11 compatible = "cirrus,edb9302", "cirrus,ep9301"; 27 compatible = "audio-graph-card2"; 33 compatible = "gpio-leds"; 34 led-0 { 37 linux,default-trigger = "heartbeat"; 41 led-1 { [all …]
|
D | ep93xx-ts7250.dts | 1 // SPDX-License-Identifier: GPL-2.0 5 /dts-v1/; 9 compatible = "technologic,ts7250", "cirrus,ep9301"; 10 model = "TS-7250 SBC"; 11 #address-cells = <1>; 12 #size-cells = <1>; 25 compatible = "gpio-leds"; 26 led-0 { 29 linux,default-trigger = "heartbeat"; 33 led-1 { [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/soc/cirrus/ |
D | cirrus,ep9301-syscon.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 4 $id: http://devicetree.org/schemas/soc/cirrus/cirrus,ep9301-syscon.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Alexander Sverdlin <alexander.sverdlin@gmail.com> 11 - Nikita Shubin <nikita.shubin@maquefel.me> 14 Central resources are controlled by a set of software-locked registers, 20 - Clock control 21 - Power management 22 - System configuration management [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/dma/ |
D | cirrus,ep9301-dma-m2m.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/dma/cirrus,ep9301-dma-m2m.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Alexander Sverdlin <alexander.sverdlin@gmail.com> 11 - Nikita Shubin <nikita.shubin@maquefel.me> 14 - $ref: dma-controller.yaml# 19 - const: cirrus,ep9301-dma-m2m 20 - items: 21 - enum: [all …]
|
/linux-6.12.1/drivers/spi/ |
D | spi-ep93xx.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Driver for Cirrus Logic EP93xx SPI controller. 5 * Copyright (C) 2010-2011 Mika Westerberg 7 * Explicit FIFO handling code was inspired by amba-pl022 driver. 9 * Chip select support using other than built-in GPIOs by H. Hartley Sweeten. 11 * For more information about the SPI controller see documentation on Cirrus 21 #include <linux/dma-direction.h> 22 #include <linux/dma-mapping.h> 31 #include <linux/spi/spi.h> 69 * struct ep93xx_spi - EP93xx SPI controller structure [all …]
|
/linux-6.12.1/drivers/pinctrl/ |
D | pinctrl-ep93xx.c | 1 // SPDX-License-Identifier: GPL-2.0-only 4 * based on linux/drivers/pinctrl/pinmux-gemini.c 8 * This is a group-only pin controller. 23 #include <linux/pinctrl/pinconf-generic.h> 28 #include "pinctrl-utils.h" 30 #define DRIVER_NAME "pinctrl-ep93xx" 49 struct ep93xx_regmap_adev *aux = pmx->aux_dev; in ep93xx_pinctrl_update_bits() 51 aux->update_bits(aux->map, aux->lock, reg, mask, val); in ep93xx_pinctrl_update_bits() 73 * descriptions of the registers, “DeviceCfg” on page 5-25 and “SysCfg” on page 5-34, for a 118 /* ep9301, ep9302 */ [all …]
|
/linux-6.12.1/drivers/clk/ |
D | clk-ep93xx.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 6 * Based on a rewrite of arch/arm/mach-ep93xx/clock.c: 13 #include <linux/clk-provider.h> 20 #include <dt-bindings/clock/cirrus,ep9301-syscon.h> 105 return container_of(clk, struct ep93xx_clk_priv, reg[clk->idx]); in ep93xx_priv_from() 110 struct ep93xx_regmap_adev *aux = priv->aux_dev; in ep93xx_clk_write() 112 aux->write(aux->map, aux->lock, reg, val); in ep93xx_clk_write() 121 regmap_read(priv->map, clk->reg, &val); in ep93xx_clk_is_enabled() 123 return !!(val & BIT(clk->bit_idx)); in ep93xx_clk_is_enabled() 132 guard(spinlock_irqsave)(&priv->lock); in ep93xx_clk_enable() [all …]
|
/linux-6.12.1/ |
D | MAINTAINERS | 5 --------------------------------------------------- 21 W: *Web-page* with status/info 23 B: URI for where to file *bugs*. A web-page with detailed bug 28 patches to the given subsystem. This is either an in-tree file, 29 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst 46 N: [^a-z]tegra all files whose path contains tegra 64 ---------------- 83 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) 85 L: linux-scsi@vger.kernel.org 88 F: drivers/scsi/3w-* [all …]
|