Searched +full:ar7100 +full:- +full:reset (Results 1 – 8 of 8) sorted by relevance
/linux/arch/mips/boot/dts/qca/ |
H A D | ar9132.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 2 #include <dt-bindings/clock/ath79-clk.h> 7 #address-cells = <1>; 8 #size-cells = <1>; 11 #address-cells = <1>; 12 #size-cells = <0>; 22 cpuintc: interrupt-controller { 23 compatible = "qca,ar9132-cpu-intc", "qca,ar7100-cpu-intc"; 25 interrupt-controller; 26 #interrupt-cells = <1>; [all …]
|
H A D | ar9331.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 2 #include <dt-bindings/clock/ath79-clk.h> 7 #address-cells = <1>; 8 #size-cells = <1>; 11 #address-cells = <1>; 12 #size-cells = <0>; 22 cpuintc: interrupt-controller { 23 compatible = "qca,ar7100-cpu-intc"; 25 interrupt-controller; 26 #interrupt-cells = <1>; [all …]
|
/linux/Documentation/devicetree/bindings/reset/ |
H A D | qca,ar7100-reset.yaml | 1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 4 --- 5 $id: http://devicetree.org/schemas/reset/qca,ar7100-reset.yaml# 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 8 title: Qualcomm Atheros AR7xxx/AR9XXX reset controller 11 - Alban Bedel <albeu@free.fr> 16 - enum: 17 - qca,ar9132-reset 18 - qca,ar9331-reset 19 - const: qca,ar7100-reset [all …]
|
/linux/Documentation/devicetree/bindings/phy/ |
H A D | phy-ath79-usb.txt | 4 - compatible: "qca,ar7100-usb-phy" 5 - #phys-cells: should be 0 6 - reset-names: "phy"[, "suspend-override"] 7 - resets: references to the reset controllers 11 usb-phy { 12 compatible = "qca,ar7100-usb-phy"; 14 reset-names = "phy", "suspend-override"; 17 #phy-cells = <0>;
|
/linux/Documentation/devicetree/bindings/net/ |
H A D | qca,ar71xx.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - $ref: ethernet-controller.yaml# 13 - Oleksij Rempel <o.rempel@pengutronix.de> 18 - items: 19 - enum: 20 - qca,ar7100-eth # Atheros AR7100 21 - qca,ar7240-eth # Atheros AR7240 22 - qca,ar7241-eth # Atheros AR7241 [all …]
|
/linux/drivers/phy/qualcomm/ |
H A D | phy-ath79-usb.c | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * Copyright (C) 2015-2018 Alban Bedel <albeu@free.fr> 12 #include <linux/reset.h> 15 struct reset_control *reset; member 27 if (priv->no_suspend_override) { in ath79_usb_phy_power_on() 28 err = reset_control_assert(priv->no_suspend_override); in ath79_usb_phy_power_on() 33 err = reset_control_deassert(priv->reset); in ath79_usb_phy_power_on() 34 if (err && priv->no_suspend_override) in ath79_usb_phy_power_on() 35 reset_control_deassert(priv->no_suspend_override); in ath79_usb_phy_power_on() 45 err = reset_control_assert(priv->reset); in ath79_usb_phy_power_off() [all …]
|
/linux/drivers/reset/ |
H A D | reset-ath79.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * AR71xx Reset Controller Driver 13 #include <linux/reset-controller.h> 33 spin_lock_irqsave(&ath79_reset->lock, flags); in ath79_reset_update() 34 val = readl(ath79_reset->base); in ath79_reset_update() 39 writel(val, ath79_reset->base); in ath79_reset_update() 40 spin_unlock_irqrestore(&ath79_reset->lock, flags); in ath79_reset_update() 64 val = readl(ath79_reset->base); in ath79_reset_status() 81 ath79_reset_assert(&ath79_reset->rcdev, FULL_CHIP_RESET); in ath79_reset_restart_handler() 91 ath79_reset = devm_kzalloc(&pdev->dev, in ath79_reset_probe() [all …]
|
/linux/drivers/net/ethernet/atheros/ |
H A D | ag71xx.c | 1 // SPDX-License-Identifier: GPL-2.0 2 /* Atheros AR71xx built-in ethernet mac driver 11 * David Bauer <mail@david-bauer.net> 14 * Hauke Mehrtens <hauke@hauke-m.de> 15 * Johann Neuhauser <johann@it-neuhauser.de> 17 * Jo-Philipp Wich <jo@mein.io> 38 #include <linux/reset.h> 43 /* For our NAPI weight bigger does *NOT* mean better - it means more 44 * D-cache misses and lots more wasted cycles than we'll ever 77 #define MAC_CFG1_SR BIT(31) /* Soft Reset */ [all …]
|