/openbmc/linux/Documentation/devicetree/bindings/reset/ |
H A D | renesas,rst.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/reset/renesas,rst.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Renesas R-Car and RZ/G Reset Controller 10 - Geert Uytterhoeven <geert+renesas@glider.be> 11 - Magnus Damm <magnus.damm@gmail.com> 14 The R-Car and RZ/G Reset Controllers provide reset control, and implement the 16 - Latching of the levels on mode pins when PRESET# is negated, 17 - Mode monitoring register, [all …]
|
/openbmc/u-boot/drivers/reset/ |
H A D | reset-ti-sci.c | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/ 8 * Loosely based on Linux kernel reset-ti-sci.c... 14 #include <reset-uclass.h> 18 * struct ti_sci_reset_data - reset controller information structure 32 return -ENOMEM; in ti_sci_reset_probe() 35 data->sci = ti_sci_get_handle(dev); in ti_sci_reset_probe() 36 if (IS_ERR(data->sci)) in ti_sci_reset_probe() 37 return PTR_ERR(data->sci); in ti_sci_reset_probe() 42 static int ti_sci_reset_of_xlate(struct reset_ctl *rst, in ti_sci_reset_of_xlate() argument [all …]
|
H A D | reset-bcm6345.c | 1 // SPDX-License-Identifier: GPL-2.0+ 12 #include <reset-uclass.h> 21 static int bcm6345_reset_assert(struct reset_ctl *rst) in bcm6345_reset_assert() argument 23 struct bcm6345_reset_priv *priv = dev_get_priv(rst->dev); in bcm6345_reset_assert() 25 clrbits_be32(priv->regs, BIT(rst->id)); in bcm6345_reset_assert() 31 static int bcm6345_reset_deassert(struct reset_ctl *rst) in bcm6345_reset_deassert() argument 33 struct bcm6345_reset_priv *priv = dev_get_priv(rst->dev); in bcm6345_reset_deassert() 35 setbits_be32(priv->regs, BIT(rst->id)); in bcm6345_reset_deassert() 41 static int bcm6345_reset_free(struct reset_ctl *rst) in bcm6345_reset_free() argument 46 static int bcm6345_reset_request(struct reset_ctl *rst) in bcm6345_reset_request() argument [all …]
|
/openbmc/linux/drivers/reset/ |
H A D | reset-hsdk.c | 17 #include <linux/reset-controller.h> 52 static void hsdk_reset_config(struct hsdk_rst *rst, unsigned long id) in hsdk_reset_config() argument 54 writel(rst_map[id], rst->regs_ctl + CGU_SYS_RST_CTRL); in hsdk_reset_config() 57 static int hsdk_reset_do(struct hsdk_rst *rst) in hsdk_reset_do() argument 61 reg = readl(rst->regs_rst + CGU_IP_SW_RESET); in hsdk_reset_do() 65 writel(reg, rst->regs_rst + CGU_IP_SW_RESET); in hsdk_reset_do() 68 return readl_poll_timeout_atomic(rst->regs_rst + CGU_IP_SW_RESET, reg, in hsdk_reset_do() 75 struct hsdk_rst *rst = to_hsdk_rst(rcdev); in hsdk_reset_reset() local 79 spin_lock_irqsave(&rst->lock, flags); in hsdk_reset_reset() 80 hsdk_reset_config(rst, id); in hsdk_reset_reset() [all …]
|
H A D | reset-axs10x.c | 15 #include <linux/reset-controller.h> 30 struct axs10x_rst *rst = to_axs10x_rst(rcdev); in axs10x_reset_reset() local 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() 46 struct axs10x_rst *rst; in axs10x_reset_probe() local 48 rst = devm_kzalloc(&pdev->dev, sizeof(*rst), GFP_KERNEL); in axs10x_reset_probe() 49 if (!rst) in axs10x_reset_probe() 50 return -ENOMEM; in axs10x_reset_probe() 52 rst->regs_rst = devm_platform_ioremap_resource(pdev, 0); in axs10x_reset_probe() [all …]
|
/openbmc/linux/drivers/clk/baikal-t1/ |
H A D | ccu-rst.c | 1 // SPDX-License-Identifier: GPL-2.0-only 8 * Baikal-T1 CCU Resets interface driver 11 #define pr_fmt(fmt) "bt1-ccu-rst: " fmt 19 #include <linux/reset-controller.h> 22 #include <dt-bindings/reset/bt1-ccu.h> 24 #include "ccu-rst.h" 66 * Each AXI-bus clock divider is equipped with the corresponding clock-consumer 67 * domain reset (it's self-deasserted reset control). 84 * SATA reference clock domain and APB-bus domain are connected with the 85 * sefl-deasserted reset control, which can be activated via the corresponding [all …]
|
/openbmc/linux/Documentation/userspace-api/media/ |
H A D | Makefile | 1 # SPDX-License-Identifier: GPL-2.0 3 # Rules to convert a .h file to inline RST documentation 5 SRC_DIR=$(srctree)/Documentation/userspace-api/media 6 PARSER = $(srctree)/Documentation/sphinx/parse-headers.pl 10 FILES = ca.h.rst dmx.h.rst frontend.h.rst net.h.rst \ 11 videodev2.h.rst media.h.rst cec.h.rst lirc.h.rst 24 $(BUILDDIR)/ca.h.rst: ${UAPI}/dvb/ca.h ${PARSER} $(SRC_DIR)/ca.h.rst.exceptions 27 $(BUILDDIR)/dmx.h.rst: ${UAPI}/dvb/dmx.h ${PARSER} $(SRC_DIR)/dmx.h.rst.exceptions 30 $(BUILDDIR)/frontend.h.rst: ${UAPI}/dvb/frontend.h ${PARSER} $(SRC_DIR)/frontend.h.rst.exceptions 33 $(BUILDDIR)/net.h.rst: ${UAPI}/dvb/net.h ${PARSER} $(SRC_DIR)/net.h.rst.exceptions [all …]
|
/openbmc/linux/drivers/soc/renesas/ |
H A D | rcar-rst.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * R-Car Gen1 RESET/WDT, R-Car Gen2, Gen3, and RZ/G RST Driver 11 #include <linux/soc/renesas/rcar-rst.h> 38 * Most of the R-Car Gen3 SoCs have an ARM Realtime Core. 47 return -EINVAL; in rcar_rst_set_gen3_rproc_boot_addr() 87 /* RZ/G1 is handled like R-Car Gen2 */ 88 { .compatible = "renesas,r8a7742-rst", .data = &rcar_rst_gen2 }, 89 { .compatible = "renesas,r8a7743-rst", .data = &rcar_rst_gen2 }, 90 { .compatible = "renesas,r8a7744-rst", .data = &rcar_rst_gen2 }, 91 { .compatible = "renesas,r8a7745-rst", .data = &rcar_rst_gen2 }, [all …]
|
/openbmc/linux/Documentation/translations/zh_CN/dev-tools/ |
H A D | testing-overview.rst | 1 .. SPDX-License-Identifier: GPL-2.0 3 .. include:: ../disclaimer-zh_CN.rst 5 :Original: Documentation/dev-tools/testing-overview.rst 26 ---------------------- 31 (Documentation/dev-tools/testing-overview.rst)辅助阅读。 34 KUnit(Documentation/dev-tools/kunit/index.rst)是用于“白箱”测 48 Documentation/dev-tools/kunit/style.rst 50 kselftest(Documentation/dev-tools/kselftest.rst),相对来说,大量用 62 “end-to-end”测试亦是如此。 73 Documentation/translations/zh_CN/dev-tools/gcov.rst 是GCC的覆盖率测试 [all …]
|
/openbmc/openbmc/poky/documentation/sphinx-static/ |
H A D | theme_overrides.css | 2 SPDX-License-Identifier: CC-BY-SA-2.0-UK 6 font-family: Verdana, Sans, sans-serif; 12 font-family: Arial, Sans; 18 font-size: 2em; 19 text-align: left; 27 font-size: 1.8em; 28 padding-left: 20%; 29 font-weight: normal; 30 font-style: italic; 36 font-size: 1.5em; [all …]
|
/openbmc/qemu/docs/system/ |
H A D | device-emulation.rst | 1 .. _device-emulation: 4 ---------------- 21 ``--device`` command line option. Running QEMU with the command line 22 options ``--device help`` will list all devices it is aware of. Using 23 the command line ``--device foo,help`` will list the additional 33 machine model you choose (``-M foo``) a number of buses will have been 45 --device foo,bus=pci.0,addr=0,id=foo 46 --device bar,bus=foo.0,addr=1,id=baz 59 devices will be backed by a ``--chardev`` which can redirect the data 61 by ``--blockdev`` which will specify how blocks are handled, for [all …]
|
/openbmc/qemu/docs/sphinx-static/ |
H A D | theme_overrides.css | 1 /* -*- coding: utf-8; mode: css -*- 4 * Based on Linux Documentation/sphinx-static/theme_overrides.css 10 font-family: serif; 12 font-size: 100%; 15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend { 16 font-family: sans-serif; 19 .rst-content dl:not(.docutils) dt { 20 border-top: none; 21 border-left: solid 3px #ccc; 22 background-color: #f0f0f0; [all …]
|
/openbmc/u-boot/arch/arm/dts/ |
H A D | socfpga_stratix10.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 6 /dts-v1/; 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 8 #include <dt-bindings/gpio/gpio.h> 11 compatible = "altr,socfpga-stratix10"; 12 #address-cells = <2>; 13 #size-cells = <2>; 16 #address-cells = <1>; 17 #size-cells = <0>; 20 compatible = "arm,cortex-a53", "arm,armv8"; [all …]
|
/openbmc/openbmc/poky/bitbake/doc/sphinx-static/ |
H A D | theme_overrides.css | 2 SPDX-License-Identifier: CC-BY-2.0-UK 6 font-family: Verdana, Sans, sans-serif; 12 font-family: Arial, Sans; 18 font-size: 2em; 19 text-align: left; 27 font-size: 1.8em; 28 padding-left: 20%; 29 font-weight: normal; 30 font-style: italic; 36 font-size: 1.5em; [all …]
|
/openbmc/linux/Documentation/sphinx-static/ |
H A D | theme_overrides.css | 1 /* -*- coding: utf-8; mode: css -*- 11 font-family: serif; 12 font-size: 100%; 15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend { 16 font-family: sans-serif; 20 font-family: monospace; 21 font-size: 100%; 24 .wy-menu-vertical { 25 font-family: sans-serif; 29 font-style: normal; [all …]
|
/openbmc/qemu/docs/sphinx/ |
H A D | hxtool.py | 1 # coding=utf-8 8 # See the COPYING file in the top-level directory. 9 """hxtool is a Sphinx extension that implements the hxtool-doc directive""" 11 # The purpose of this extension is to read fragments of rST 13 # The rST fragments are delimited by SRST/ERST lines. 16 # Each hxtool-doc:: directive takes one argument which is the 25 from docutils.parsers.rst import directives, Directive 35 # states: reading the C code fragment, or inside a rST fragment. 38 RST = 2 variable in HxState 41 """Raise an exception giving a user-friendly syntax error message""" [all …]
|
/openbmc/u-boot/Documentation/sphinx-static/ |
H A D | theme_overrides.css | 1 /* -*- coding: utf-8; mode: css -*- 7 /* Interim: Code-blocks with line nos - lines and line numbers don't line up. 12 line-height: normal; 14 .rst-content .highlight > pre { 15 line-height: normal; 23 * tables with tons of columns, which need the full width of the view-port. 26 .wy-nav-content{max-width: none; } 30 * - Sequences of whitespace should collapse into a single whitespace. 31 * - make the overflow auto (scrollbar if needed) 32 * - align caption "left" ("center" is unsuitable on vast tables) [all …]
|
/openbmc/linux/Documentation/filesystems/ext4/ |
H A D | overview.rst | 1 .. SPDX-License-Identifier: GPL-2.0 15 All fields in ext4 are written to disk in little-endian order. HOWEVER, 16 all fields in jbd2 (the journal) are written to disk in big-endian 19 .. include:: blocks.rst 20 .. include:: blockgroup.rst 21 .. include:: special_inodes.rst 22 .. include:: allocators.rst 23 .. include:: checksums.rst 24 .. include:: bigalloc.rst 25 .. include:: inlinedata.rst [all …]
|
/openbmc/linux/arch/arm64/boot/dts/intel/ |
H A D | socfpga_agilex.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 6 /dts-v1/; 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 8 #include <dt-bindings/gpio/gpio.h> 9 #include <dt-bindings/interrupt-controller/arm-gic.h> 10 #include <dt-bindings/clock/agilex-clock.h> 13 compatible = "intel,socfpga-agilex"; 14 #address-cells = <2>; 15 #size-cells = <2>; 17 reserved-memory { [all …]
|
/openbmc/linux/drivers/reset/sti/ |
H A D | reset-syscfg.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 6 * Inspired by mach-imx/src.c 17 #include "reset-syscfg.h" 20 * struct syscfg_reset_channel - Reset channel regmap configuration 31 * struct syscfg_reset_controller - A reset controller which groups together 35 * @rst: base reset controller structure. 41 struct reset_controller_dev rst; member 47 container_of(_rst, struct syscfg_reset_controller, rst) 52 struct syscfg_reset_controller *rst = to_syscfg_reset_controller(rcdev); in syscfg_reset_program_hw() local 54 u32 ctrl_val = rst->active_low ? !assert : !!assert; in syscfg_reset_program_hw() [all …]
|
/openbmc/linux/arch/arm64/boot/dts/altera/ |
H A D | socfpga_stratix10.dtsi | 1 // SPDX-License-Identifier: GPL-2.0-only 6 /dts-v1/; 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 8 #include <dt-bindings/gpio/gpio.h> 9 #include <dt-bindings/clock/stratix10-clock.h> 12 compatible = "altr,socfpga-stratix10"; 13 #address-cells = <2>; 14 #size-cells = <2>; 16 reserved-memory { 17 #address-cells = <2>; [all …]
|
/openbmc/linux/drivers/reset/hisilicon/ |
H A D | reset-hi3660.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * Copyright (c) 2016-2017 Linaro Ltd. 4 * Copyright (c) 2016-2017 HiSilicon Technologies Co., Ltd. 12 #include <linux/reset-controller.h> 15 struct reset_controller_dev rst; member 20 container_of(_rst, struct hi3660_reset_controller, rst) 30 return regmap_write(rc->map, offset, mask); in hi3660_reset_program_hw() 32 return regmap_write(rc->map, offset + 4, mask); in hi3660_reset_program_hw() 70 offset = reset_spec->args[0]; in hi3660_reset_xlate() 71 bit = reset_spec->args[1]; in hi3660_reset_xlate() [all …]
|
/openbmc/linux/Documentation/translations/zh_TW/process/ |
H A D | howto.rst | 1 .. SPDX-License-Identifier: GPL-2.0 5 .. include:: ../disclaimer-zh_TW.rst 7 :Original: :ref:`Documentation/process/howto.rst <process_howto>` 11 英文版維護者: Greg Kroah-Hartman <greg@kroah.com> 32 ---- 44 - "The C Programming Language" by Kernighan and Ritchie [Prentice Hall] 46 - "Practical C Programming" by Steve Oualline [O'Reilly] 48 - "C: A Reference Manual" by Harbison and Steele [Prentice Hall] 65 -------- 70 :ref:`Documentation/translations/zh_TW/process/license-rules.rst <tw_kernel_licensing>` [all …]
|
/openbmc/linux/Documentation/translations/zh_CN/process/ |
H A D | howto.rst | 3 .. include:: ../disclaimer-zh_CN.rst 5 :Original: :ref:`Documentation/process/howto.rst <process_howto>` 9 英文版维护者: Greg Kroah-Hartman <greg@kroah.com> 29 ---- 41 - "The C Programming Language" by Kernighan and Ritchie [Prentice Hall] 43 - "Practical C Programming" by Steve Oualline [O'Reilly] 45 - "C: A Reference Manual" by Harbison and Steele [Prentice Hall] 62 -------- 67 :ref:`Documentation/translations/zh_CN/process/license-rules.rst <cn_kernel_licensing>` 72 https://www.gnu.org/licenses/gpl-faq.html [all …]
|
/openbmc/linux/Documentation/translations/zh_CN/doc-guide/ |
H A D | sphinx.rst | 1 .. include:: ../disclaimer-zh_CN.rst 3 :Original: Documentation/doc-guide/sphinx.rst 12 Linux内核使用 `Sphinx <http://www.sphinx-doc.org/>`_ 来把 ``Documentation`` 13 下的 `reStructuredText <http://docutils.sourceforge.net/rst.html>`_ 文件转 17 reStructuredText文件可能包含包含来自源文件的结构化文档注释或kernel-doc注释。 18 通常它们用于描述代码的功能、类型和设计。kernel-doc注释有一些特殊的结构和 32 :ref:`sphinx-pre-install_zh` 。 38 ``virtualenv-3`` 或 ``virtualenv`` 在虚拟环境中安装Sphinx,具体取决于发行版 53 (sphinx_2.4.4) $ pip install -r Documentation/sphinx/requirements.txt 60 -------- [all …]
|