Searched +full:axs10x +full:- +full:reset (Results 1 – 7 of 7) sorted by relevance
/Linux-v6.1/Documentation/devicetree/bindings/reset/ |
D | snps,axs10x-reset.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/reset/snps,axs10x-reset.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: AXS10x reset controller 10 - Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com> 13 This binding describes the ARC AXS10x boards custom IP-block which allows 14 to control reset signals of selected peripherals. For example DW GMAC, etc... 15 This block is controlled via memory-mapped register (AKA CREG) which 16 represents up-to 32 reset lines. [all …]
|
/Linux-v6.1/drivers/reset/ |
D | reset-axs10x.c | 4 * Synopsys AXS10x reset driver. 15 #include <linux/reset-controller.h> 33 spin_lock_irqsave(&rst->lock, flags); in axs10x_reset_reset() 34 writel(BIT(id), rst->regs_rst); in axs10x_reset_reset() 35 spin_unlock_irqrestore(&rst->lock, flags); in axs10x_reset_reset() 41 .reset = axs10x_reset_reset, 49 rst = devm_kzalloc(&pdev->dev, sizeof(*rst), GFP_KERNEL); in axs10x_reset_probe() 51 return -ENOMEM; in axs10x_reset_probe() 54 rst->regs_rst = devm_ioremap_resource(&pdev->dev, mem); in axs10x_reset_probe() 55 if (IS_ERR(rst->regs_rst)) in axs10x_reset_probe() [all …]
|
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 6 bool "Reset Controller Support" 9 Generic Reset Controller support. 11 This framework is designed to abstract reset handling of devices 12 via GPIOs or SoC-internal reset controller modules. 19 tristate "Altera Arria10 System Resource Reset" 22 This option enables support for the external reset functions for 26 bool "AR71xx Reset Driver" if COMPILE_TEST 29 This enables the ATH79 reset controller driver that supports the 30 AR71xx SoC reset controller. [all …]
|
D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0 2 obj-y += core.o 3 obj-y += hisilicon/ 4 obj-$(CONFIG_ARCH_STI) += sti/ 5 obj-$(CONFIG_ARCH_TEGRA) += tegra/ 6 obj-$(CONFIG_RESET_A10SR) += reset-a10sr.o 7 obj-$(CONFIG_RESET_ATH79) += reset-ath79.o 8 obj-$(CONFIG_RESET_AXS10X) += reset-axs10x.o 9 obj-$(CONFIG_RESET_BCM6345) += reset-bcm6345.o 10 obj-$(CONFIG_RESET_BERLIN) += reset-berlin.o [all …]
|
/Linux-v6.1/arch/arc/boot/dts/ |
D | axs10x_mb.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Support for peripherals on the AXS10x mainboard 5 * Copyright (C) 2013-15 Synopsys, Inc. (www.synopsys.com) 14 compatible = "simple-bus"; 15 #address-cells = <1>; 16 #size-cells = <1>; 18 interrupt-parent = <&mb_intc>; 20 creg_rst: reset-controller@11220 { 21 compatible = "snps,axs10x-reset"; 22 #reset-cells = <1>; [all …]
|
/Linux-v6.1/arch/arc/ |
D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 3 # Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com) 84 source "arch/arc/plat-tb10x/Kconfig" 85 source "arch/arc/plat-axs10x/Kconfig" 86 source "arch/arc/plat-hsdk/Kconfig" 104 ISA for the Next Generation ARC-HS cores 122 -MMU-v3: Variable Page Sz (4k, 8k, 16k), bigger J-TLB (128x4) 124 -Caches: New Prog Model, Region Flush 125 -Insns: endian swap, load-locked/store-conditional, time-stamp-ctr 128 bool "ARC-HS" [all …]
|
/Linux-v6.1/ |
D | MAINTAINERS | 9 ------------------------- 30 ``diff -u`` to make the patch easy to merge. Be prepared to get your 40 See Documentation/process/coding-style.rst for guidance here. 46 See Documentation/process/submitting-patches.rst for details. 57 include a Signed-off-by: line. The current version of this 59 Documentation/process/submitting-patches.rst. 70 that the bug would present a short-term risk to other users if it 76 Documentation/admin-guide/security-bugs.rst for details. 81 --------------------------------------------------- 97 W: *Web-page* with status/info [all …]
|