Searched +full:ma35d1 +full:- +full:reset (Results 1 – 9 of 9) sorted by relevance
/linux/Documentation/devicetree/bindings/reset/ |
H A D | nuvoton,ma35d1-reset.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/reset/nuvoton,ma35d1-reset.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Nuvoton MA35D1 Reset Controller 10 - Chi-Fang Li <cfli0@nuvoton.com> 11 - Jacky Huang <ychuang3@nuvoton.com> 14 The system reset controller can be used to reset various peripheral 15 controllers in MA35D1 SoC. 20 - const: nuvoton,ma35d1-reset [all …]
|
/linux/arch/arm64/boot/dts/nuvoton/ |
H A D | ma35d1.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 4 * Author: Shan-Chun Hung <schung@nuvoton.com> 8 #include <dt-bindings/interrupt-controller/arm-gic.h> 9 #include <dt-bindings/input/input.h> 10 #include <dt-bindings/gpio/gpio.h> 11 #include <dt-bindings/clock/nuvoton,ma35d1-clk.h> 12 #include <dt-bindings/reset/nuvoton,ma35d1-reset.h> 15 compatible = "nuvoton,ma35d1"; 16 interrupt-parent = <&gic>; 17 #address-cells = <2>; [all …]
|
/linux/Documentation/devicetree/bindings/mmc/ |
H A D | nuvoton,ma35d1-sdhci.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/mmc/nuvoton,ma35d1-sdhci.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Nuvoton MA35D1 SD/SDIO/MMC Controller 10 - Shan-Chun Hung <shanchun1218@gmail.com> 13 - $ref: sdhci-common.yaml# 18 - nuvoton,ma35d1-sdhci 29 pinctrl-names: 32 - const: default [all …]
|
/linux/drivers/phy/nuvoton/ |
H A D | phy-ma35d1-usb2.c | 1 // SPDX-License-Identifier: GPL-2.0 19 #define PHY0POR BIT(0) /* PHY Power-On Reset Control Bit */ 21 #define PHY0COMN BIT(2) /* PHY Common Block Power-Down Control */ 36 ret = clk_prepare_enable(p_phy->clk); in ma35_usb_phy_power_on() 38 dev_err(p_phy->dev, "Failed to enable PHY clock: %d\n", ret); in ma35_usb_phy_power_on() 42 regmap_read(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, &val); in ma35_usb_phy_power_on() 48 ret = regmap_read_poll_timeout(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, val, in ma35_usb_phy_power_on() 55 * reset USB PHY0. in ma35_usb_phy_power_on() 58 regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, (PHY0POR | PHY0SUSPEND)); in ma35_usb_phy_power_on() 62 regmap_update_bits(p_phy->sysreg, MA35_SYS_REG_USBPMISCR, 0x7, PHY0SUSPEND); in ma35_usb_phy_power_on() [all …]
|
/linux/drivers/reset/ |
H A D | reset-ma35d1.c | 1 // SPDX-License-Identifier: GPL-2.0-only 4 * Author: Chi-Fang Li <cfli0@nuvoton.com> 16 #include <linux/reset-controller.h> 18 #include <dt-bindings/reset/nuvoton,ma35d1-reset.h> 24 /* protect registers against concurrent read-modify-write */ 135 data->base + ma35d1_reset_map[id].reg_ofs); in ma35d1_restart_handler() 146 return -EINVAL; in ma35d1_reset_update() 148 spin_lock_irqsave(&data->lock, flags); in ma35d1_reset_update() 149 reg = readl_relaxed(data->base + ma35d1_reset_map[id].reg_ofs); in ma35d1_reset_update() 154 writel_relaxed(reg, data->base + ma35d1_reset_map[id].reg_ofs); in ma35d1_reset_update() [all …]
|
/linux/Documentation/devicetree/bindings/mfd/ |
H A D | syscon.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 12 represent as any specific type of device. The typical use-case is 13 for some other node's driver, or platform-specific code, to acquire 20 - Lee Jones <lee@kernel.org> 30 - airoha,en7581-pbus-csr 31 - al,alpine-sysfabric-service 32 - allwinner,sun8i-a83t-system-controller 33 - allwinner,sun8i-h3-system-controller [all …]
|
/linux/include/dt-bindings/reset/ |
H A D | nuvoton,ma35d1-reset.h | 1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ 4 * Author: Chi-Fen Li <cfli0@nuvoton.com> 6 * Device Tree binding constants for MA35D1 reset controller.
|
/linux/drivers/mmc/host/ |
H A D | sdhci-of-ma35d1.c | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * Author: Shan-Chun Hung <shanchun1218@gmail.com> 16 #include <linux/dma-mapping.h> 28 #include <linux/reset.h> 32 #include "sdhci-pltfm.h" 77 if (likely(!len || (ALIGN(addr, SZ_128M) == ALIGN(addr + len - 1, SZ_128M)))) { in ma35_adma_write_desc() 82 offset = addr & (SZ_128M - 1); in ma35_adma_write_desc() 83 tmplen = SZ_128M - offset; in ma35_adma_write_desc() 87 len -= tmplen; in ma35_adma_write_desc() 115 switch (ios->signal_voltage) { in ma35_start_signal_voltage_switch() [all …]
|
/linux/ |
H A 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 …]
|