/linux/Documentation/devicetree/bindings/reset/ ! |
H A D | renesas,rst.yaml | 4 $id: http://devicetree.org/schemas/reset/renesas,rst.yaml# 26 - renesas,r8a7742-rst # RZ/G1H 27 - renesas,r8a7743-rst # RZ/G1M 28 - renesas,r8a7744-rst # RZ/G1N 29 - renesas,r8a7745-rst # RZ/G1E 30 - renesas,r8a77470-rst # RZ/G1C 31 - renesas,r8a774a1-rst # RZ/G2M 32 - renesas,r8a774a3-rst # RZ/G2M v3.0 33 - renesas,r8a774b1-rst # RZ/G2N 34 - renesas,r8a774c0-rst # RZ/G2E [all …]
|
H A D | altr,rst-mgr.yaml | 4 $id: http://devicetree.org/schemas/reset/altr,rst-mgr.yaml# 16 const: altr,rst-mgr 19 - const: altr,stratix10-rst-mgr 20 - const: altr,rst-mgr 41 const: altr,stratix10-rst-mgr 51 compatible = "altr,rst-mgr";
|
/linux/drivers/reset/ ! |
H A D | reset-hsdk.c | 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() 81 ret = hsdk_reset_do(rst); in hsdk_reset_reset() [all …]
|
H A D | reset-axs10x.c | 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() 52 rst->regs_rst = devm_platform_ioremap_resource(pdev, 0); in axs10x_reset_probe() 53 if (IS_ERR(rst->regs_rst)) in axs10x_reset_probe() 54 return PTR_ERR(rst->regs_rst); in axs10x_reset_probe() [all …]
|
H A D | reset-mpfs.c | 48 struct mpfs_reset *rst = to_mpfs_reset(rcdev); in mpfs_assert() local 54 reg = readl(rst->base); in mpfs_assert() 56 writel(reg, rst->base); in mpfs_assert() 65 struct mpfs_reset *rst = to_mpfs_reset(rcdev); in mpfs_deassert() local 71 reg = readl(rst->base); in mpfs_deassert() 73 writel(reg, rst->base); in mpfs_deassert() 82 struct mpfs_reset *rst = to_mpfs_reset(rcdev); in mpfs_status() local 83 u32 reg = readl(rst->base); in mpfs_status() 138 struct mpfs_reset *rst; in mpfs_reset_probe() local 140 rst = devm_kzalloc(dev, sizeof(*rst), GFP_KERNEL); in mpfs_reset_probe() [all …]
|
/linux/Documentation/userspace-api/media/ ! |
H A D | Makefile | 3 # Rules to convert a .h file to inline RST documentation 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 36 $(BUILDDIR)/videodev2.h.rst: ${UAPI}/videodev2.h ${PARSER} $(SRC_DIR)/videodev2.h.rst.exceptions 39 $(BUILDDIR)/media.h.rst: ${UAPI}/media.h ${PARSER} $(SRC_DIR)/media.h.rst.exceptions 42 $(BUILDDIR)/cec.h.rst: ${UAPI}/cec.h ${PARSER} $(SRC_DIR)/cec.h.rst.exceptions [all …]
|
/linux/drivers/soc/renesas/ ! |
H A D | rcar-rst.c | 3 * R-Car Gen1 RESET/WDT, R-Car Gen2, Gen3, and RZ/G RST Driver 11 #include <linux/soc/renesas/rcar-rst.h> 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 }, 92 { .compatible = "renesas,r8a77470-rst", .data = &rcar_rst_gen2 }, 94 { .compatible = "renesas,r8a774a1-rst", .data = &rcar_rst_gen3 }, 95 { .compatible = "renesas,r8a774b1-rst", .data = &rcar_rst_gen3 }, 96 { .compatible = "renesas,r8a774c0-rst", .data = &rcar_rst_gen3 }, [all …]
|
/linux/drivers/clk/baikal-t1/ ! |
H A D | ccu-rst.c | 11 #define pr_fmt(fmt) "bt1-ccu-rst: " fmt 24 #include "ccu-rst.h" 106 struct ccu_rst *rst = to_ccu_rst(rcdev); in ccu_rst_reset() local 107 const struct ccu_rst_info *info = &rst->rsts_info[idx]; in ccu_rst_reset() 112 regmap_update_bits(rst->sys_regs, info->base, info->mask, info->mask); in ccu_rst_reset() 123 struct ccu_rst *rst = to_ccu_rst(rcdev); in ccu_rst_set() local 124 const struct ccu_rst_info *info = &rst->rsts_info[idx]; in ccu_rst_set() 129 return regmap_update_bits(rst->sys_regs, info->base, in ccu_rst_set() 148 struct ccu_rst *rst = to_ccu_rst(rcdev); in ccu_rst_status() local 149 const struct ccu_rst_info *info = &rst->rsts_info[idx]; in ccu_rst_status() [all …]
|
/linux/Documentation/translations/zh_CN/dev-tools/ ! |
H A D | testing-overview.rst | 3 .. include:: ../disclaimer-zh_CN.rst 5 :Original: Documentation/dev-tools/testing-overview.rst 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),相对来说,大量用 73 Documentation/translations/zh_CN/dev-tools/gcov.rst 是GCC的覆盖率测试 78 Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每个任务 92 Documentation/dev-tools/kmemleak.rst 94 Documentation/dev-tools/kasan.rst [all …]
|
/linux/Documentation/trace/rv/ ! |
H A D | index.rst | 9 runtime-verification.rst 10 deterministic_automata.rst 11 linear_temporal_logic.rst 12 monitor_synthesis.rst 13 da_monitor_instrumentation.rst 14 monitor_wip.rst 15 monitor_wwnr.rst 16 monitor_sched.rst 17 monitor_rtapp.rst
|
/linux/Documentation/sphinx-static/ ! |
H A D | theme_overrides.css | 15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend { 43 .rst-content .highlight > pre { 48 .rst-content table.field-list th.field-name { 52 .rst-content table.field-list td.field-body { 76 .rst-content table.docutils caption { text-align: left; font-size: 100%; } 84 caption, .wy-table caption, .rst-content table.field-list caption { 103 .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child { 109 code, .rst-content tt, .rst-content code { 117 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
|
/linux/arch/arm64/boot/dts/altera/ ! |
H A D | socfpga_stratix10.dtsi | 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 180 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>; 198 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>; 216 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>; 233 resets = <&rst GPIO0_RESET>; 253 resets = <&rst GPIO1_RESET>; 274 resets = <&rst I2C0_RESET>; 285 resets = <&rst I2C1_RESET>; 296 resets = <&rst I2C2_RESET>; 307 resets = <&rst I2C3_RESET>; [all …]
|
/linux/arch/arm64/boot/dts/intel/ ! |
H A D | socfpga_agilex.dtsi | 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 178 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>; 196 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>; 214 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>; 231 resets = <&rst GPIO0_RESET>; 251 resets = <&rst GPIO1_RESET>; 272 resets = <&rst I2C0_RESET>; 283 resets = <&rst I2C1_RESET>; 294 resets = <&rst I2C2_RESET>; 305 resets = <&rst I2C3_RESET>; [all …]
|
H A D | socfpga_agilex5.dtsi | 7 #include <dt-bindings/reset/altr,rst-mgr-s10.h> 156 resets = <&rst I2C0_RESET>; 167 resets = <&rst I2C1_RESET>; 178 resets = <&rst I2C2_RESET>; 189 resets = <&rst I2C3_RESET>; 200 resets = <&rst I2C4_RESET>; 230 resets = <&rst GPIO0_RESET>; 250 resets = <&rst GPIO1_RESET>; 320 rst: rstmgr@10d11000 { label 321 compatible = "altr,stratix10-rst-mgr", "altr,rst-mgr"; [all …]
|
/linux/Documentation/translations/zh_TW/process/ ! |
H A D | submit-checklist.rst | 3 .. include:: ../disclaimer-zh_TW.rst 5 :Original: Documentation/process/submit-checklist.rst 19 這些都是在 Documentation/translations/zh_CN/process/submitting-patches.rst 42 5) 按 Documentation/translations/zh_CN/process/coding-style.rst 所述檢查您的 48 它們符合 ``Documentation/kbuild/kconfig-language.rst`` 菜單屬性:默認值中 57 (參見 Documentation/translations/zh_CN/dev-tools/sparse.rst ) 83 Documentation/admin-guide/kernel-parameters.rst 中。 88 請參閱 Documentation/admin-guide/abi.rst (或 ``Documentation/ABI/README``)。 105 ``Documentation/userspace-api/ioctl/ioctl-number.rst`` 。
|
H A D | howto.rst | 5 .. include:: ../disclaimer-zh_TW.rst 7 :Original: :ref:`Documentation/process/howto.rst <process_howto>` 70 :ref:`Documentation/translations/zh_TW/process/license-rules.rst <tw_kernel_licensing>` 88 :ref:`Documentation/admin-guide/README.rst <readme>` 93 :ref:`Documentation/process/changes.rst <changes>` 96 :ref:`Documentation/translations/zh_TW/process/coding-style.rst <tw_codingstyle>` 101 :ref:`Documentation/translations/zh_TW/process/submitting-patches.rst <tw_submittingpatches>` 120 :ref:`Documentation/translations/zh_TW/process/stable-api-nonsense.rst <tw_stable_api_nonsense>` 131 :ref:`Documentation/process/security-bugs.rst <securitybugs>` 135 :ref:`Documentation/translations/zh_TW/process/management-style.rst <tw_managementstyle>` [all …]
|
H A D | 5.Posting.rst | 3 .. include:: ../disclaimer-zh_TW.rst 5 :Original: :ref:`Documentation/process/5.Posting.rst <development_posting>` 25 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <tw_submittingpatches>` 26 和 :ref:`Documentation/translations/zh_CN/process/submit-checklist.rst <tw_submitchecklist>`。 153 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <tw_submittingpatches>` 164 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <tw_submittingpatches>` 171 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <tw_submittingpatches>` 179 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <tw_submittingpatches>` 196 :ref:`Documentation/translations/zh_CN/process/email-clients.rst <tw_email_clients>`
|
/linux/drivers/reset/hisilicon/ ! |
H A D | reset-hi3660.c | 15 struct reset_controller_dev rst; member 20 container_of(_rst, struct hi3660_reset_controller, rst) 86 rc->map = syscon_regmap_lookup_by_phandle(np, "hisilicon,rst-syscon"); in hi3660_reset_probe() 90 "hisi,rst-syscon"); in hi3660_reset_probe() 94 "failed to get hisilicon,rst-syscon\n"); in hi3660_reset_probe() 97 rc->rst.ops = &hi3660_reset_ops, in hi3660_reset_probe() 98 rc->rst.of_node = np; in hi3660_reset_probe() 99 rc->rst.of_reset_n_cells = 2; in hi3660_reset_probe() 100 rc->rst.of_xlate = hi3660_reset_xlate; in hi3660_reset_probe() 102 return reset_controller_register(&rc->rst); in hi3660_reset_probe()
|
/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>` 67 :ref:`Documentation/translations/zh_CN/process/license-rules.rst <cn_kernel_licensing>` 85 :ref:`Documentation/admin-guide/README.rst <readme>` 90 :ref:`Documentation/process/changes.rst <changes>` 93 :ref:`Documentation/translations/zh_CN/process/coding-style.rst <cn_codingstyle>` 98 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>` 117 :ref:`Documentation/translations/zh_CN/process/stable-api-nonsense.rst <cn_stable_api_nonsense>` 128 :ref:`Documentation/process/security-bugs.rst <securitybugs>` 132 :ref:`Documentation/translations/zh_CN/process/management-style.rst <cn_managementstyle>` [all …]
|
H A D | 5.Posting.rst | 1 .. include:: ../disclaimer-zh_CN.rst 3 :Original: :ref:`Documentation/process/5.Posting.rst <development_posting>` 22 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>` 23 和 :ref:`Documentation/translations/zh_CN/process/submit-checklist.rst <cn_submitchecklist>`。 150 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>` 161 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>` 168 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>` 176 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>` 204 :ref:`Documentation/translations/zh_CN/process/email-clients.rst <cn_email_clients>`
|
/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 13 下的 `reStructuredText <http://docutils.sourceforge.net/rst.html>`_ 文件转 136 1. 在 ``Documentation`` 下某处添加一个新的 ``.rst`` 文件。 137 2. 从 ``Documentation/index.rst`` 中的Sphinx `主目录树`_ 链接到它。 143 ``Documentation/gpu`` 下,拆分为多个 ``.rst`` 文件,并具有从主目录链接来的单 144 独索引 ``index.rst`` (有自己的目录树 ``toctree`` )。 147 <http://docutils.sourceforge.net/rst.html>`_ 的文档,以了解如何使用它们。 202 .. code-block:: rst 209 .. code-block:: rst [all …]
|
/linux/Documentation/scsi/ ! |
H A D | scsi-parameters.rst | 7 See Documentation/admin-guide/kernel-parameters.rst for general information on 23 See Documentation/scsi/aha152x.rst. 29 See Documentation/scsi/aic7xxx.rst. 32 See Documentation/scsi/aic79xx.rst. 61 See Documentation/scsi/g_NCR5380.rst. 64 See Documentation/scsi/g_NCR5380.rst. 67 See Documentation/scsi/g_NCR5380.rst. 73 See also Documentation/scsi/st.rst. 105 See Documentation/scsi/st.rst.
|
/linux/arch/riscv/boot/dts/sophgo/ ! |
H A D | cv180x.dtsi | 28 rst: reset-controller@3003000 { label 66 resets = <&rst RST_GPIO0>; 85 resets = <&rst RST_GPIO1>; 104 resets = <&rst RST_GPIO2>; 123 resets = <&rst RST_GPIO3>; 167 resets = <&rst RST_I2C0>; 179 resets = <&rst RST_I2C1>; 191 resets = <&rst RST_I2C2>; 203 resets = <&rst RST_I2C3>; 215 resets = <&rst RST_I2C4>; [all …]
|
/linux/Documentation/translations/zh_CN/admin-guide/ ! |
H A D | README.rst | 1 .. include:: ../disclaimer-zh_CN.rst 3 :Original: Documentation/admin-guide/README.rst 55 :ref:`Documentation/process/changes.rst <changes>` 文件,它包含了升级内核 86 :ref:`Documentation/process/applying-patches.rst <applying_patches>` 。 107 :ref:`Documentation/process/changes.rst <changes>` 208 Documentation/kbuild/kconfig.rst。 228 有关更多信息,请参阅 :ref:`Documentation/process/changes.rst <changes>` 。 284 Documentation/translations/zh_CN/admin-guide/reporting-issues.rst 。 287 Documentation/translations/zh_CN/admin-guide/bug-hunting.rst 。 290 Documentation/translations/zh_CN/dev-tools/gdb-kernel-debugging.rst [all …]
|
/linux/Documentation/dev-tools/ ! |
H A D | testing-overview.rst | 28 KUnit (Documentation/dev-tools/kunit/index.rst) is an entirely in-kernel system 44 Documentation/dev-tools/kunit/style.rst 47 kselftest (Documentation/dev-tools/kselftest.rst), on the other hand, is 74 Documentation/dev-tools/gcov.rst is GCC's coverage testing tool, which can be 79 Documentation/dev-tools/kcov.rst is a feature which can be built in to the 97 Documentation/dev-tools/kmemleak.rst 99 use-after-free errors. See Documentation/dev-tools/kasan.rst 101 overflows. See Documentation/dev-tools/ubsan.rst 102 * KCSAN detects data races. See Documentation/dev-tools/kcsan.rst 104 KASAN and can be used in production. See Documentation/dev-tools/kfence.rst [all …]
|