Home
last modified time | relevance | path

Searched refs:rst (Results 1 – 25 of 1058) sorted by relevance

12345678910>>...43

/Linux-v5.10/drivers/reset/
Dreset-hsdk.c52 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 …]
Dreset-axs10x.c30 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
49 rst = devm_kzalloc(&pdev->dev, sizeof(*rst), GFP_KERNEL); in axs10x_reset_probe()
50 if (!rst) 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()
56 return PTR_ERR(rst->regs_rst); in axs10x_reset_probe()
[all …]
/Linux-v5.10/Documentation/userspace-api/media/
DMakefile10 FILES = audio.h.rst ca.h.rst dmx.h.rst frontend.h.rst net.h.rst video.h.rst \
11 videodev2.h.rst media.h.rst cec.h.rst lirc.h.rst
24 $(BUILDDIR)/audio.h.rst: ${UAPI}/dvb/audio.h ${PARSER} $(SRC_DIR)/audio.h.rst.exceptions
27 $(BUILDDIR)/ca.h.rst: ${UAPI}/dvb/ca.h ${PARSER} $(SRC_DIR)/ca.h.rst.exceptions
30 $(BUILDDIR)/dmx.h.rst: ${UAPI}/dvb/dmx.h ${PARSER} $(SRC_DIR)/dmx.h.rst.exceptions
33 $(BUILDDIR)/frontend.h.rst: ${UAPI}/dvb/frontend.h ${PARSER} $(SRC_DIR)/frontend.h.rst.exceptions
36 $(BUILDDIR)/net.h.rst: ${UAPI}/dvb/net.h ${PARSER} $(SRC_DIR)/net.h.rst.exceptions
39 $(BUILDDIR)/video.h.rst: ${UAPI}/dvb/video.h ${PARSER} $(SRC_DIR)/video.h.rst.exceptions
42 $(BUILDDIR)/videodev2.h.rst: ${UAPI}/videodev2.h ${PARSER} $(SRC_DIR)/videodev2.h.rst.exceptions
45 $(BUILDDIR)/media.h.rst: ${UAPI}/media.h ${PARSER} $(SRC_DIR)/media.h.rst.exceptions
[all …]
/Linux-v5.10/drivers/memory/tegra/
Dtegra20.c199 const struct tegra_mc_reset *rst) in tegra20_mc_hotreset_assert() argument
206 value = mc_readl(mc, rst->reset); in tegra20_mc_hotreset_assert()
207 mc_writel(mc, value & ~BIT(rst->bit), rst->reset); in tegra20_mc_hotreset_assert()
215 const struct tegra_mc_reset *rst) in tegra20_mc_hotreset_deassert() argument
222 value = mc_readl(mc, rst->reset); in tegra20_mc_hotreset_deassert()
223 mc_writel(mc, value | BIT(rst->bit), rst->reset); in tegra20_mc_hotreset_deassert()
231 const struct tegra_mc_reset *rst) in tegra20_mc_block_dma() argument
238 value = mc_readl(mc, rst->control) & ~BIT(rst->bit); in tegra20_mc_block_dma()
239 mc_writel(mc, value, rst->control); in tegra20_mc_block_dma()
247 const struct tegra_mc_reset *rst) in tegra20_mc_dma_idling() argument
[all …]
Dmc.c46 const struct tegra_mc_reset *rst) in tegra_mc_block_dma_common() argument
53 value = mc_readl(mc, rst->control) | BIT(rst->bit); in tegra_mc_block_dma_common()
54 mc_writel(mc, value, rst->control); in tegra_mc_block_dma_common()
62 const struct tegra_mc_reset *rst) in tegra_mc_dma_idling_common() argument
64 return (mc_readl(mc, rst->status) & BIT(rst->bit)) != 0; in tegra_mc_dma_idling_common()
68 const struct tegra_mc_reset *rst) in tegra_mc_unblock_dma_common() argument
75 value = mc_readl(mc, rst->control) & ~BIT(rst->bit); in tegra_mc_unblock_dma_common()
76 mc_writel(mc, value, rst->control); in tegra_mc_unblock_dma_common()
84 const struct tegra_mc_reset *rst) in tegra_mc_reset_status_common() argument
86 return (mc_readl(mc, rst->control) & BIT(rst->bit)) != 0; in tegra_mc_reset_status_common()
[all …]
/Linux-v5.10/drivers/clk/qcom/
Dreset.c25 struct qcom_reset_controller *rst; in qcom_reset_assert() local
29 rst = to_qcom_reset_controller(rcdev); in qcom_reset_assert()
30 map = &rst->reset_map[id]; in qcom_reset_assert()
33 return regmap_update_bits(rst->regmap, map->reg, mask, mask); in qcom_reset_assert()
39 struct qcom_reset_controller *rst; in qcom_reset_deassert() local
43 rst = to_qcom_reset_controller(rcdev); in qcom_reset_deassert()
44 map = &rst->reset_map[id]; in qcom_reset_deassert()
47 return regmap_update_bits(rst->regmap, map->reg, mask, 0); in qcom_reset_deassert()
/Linux-v5.10/Documentation/filesystems/ext4/
Doverview.rst19 .. 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
26 .. include:: eainode.rst
27 .. include:: verity.rst
Dglobals.rst9 .. include:: super.rst
10 .. include:: group_descr.rst
11 .. include:: bitmaps.rst
12 .. include:: mmp.rst
13 .. include:: journal.rst
/Linux-v5.10/drivers/reset/sti/
Dreset-syscfg.c41 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()
60 ch = &rst->channels[idx]; in syscfg_reset_program_hw()
115 struct syscfg_reset_controller *rst = to_syscfg_reset_controller(rcdev); in syscfg_reset_status() local
123 ch = &rst->channels[idx]; in syscfg_reset_status()
131 return rst->active_low ? !ret_val : !!ret_val; in syscfg_reset_status()
156 rc->rst.ops = &syscfg_reset_ops, in syscfg_reset_controller_register()
157 rc->rst.of_node = dev->of_node; in syscfg_reset_controller_register()
[all …]
/Linux-v5.10/Documentation/translations/zh_CN/process/
D5.Posting.rst1 .. include:: ../disclaimer-zh_CN.rst
3 :Original: :ref:`Documentation/process/5.Posting.rst <development_posting>`
15 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`,
16 :ref:`Documentation/process/submitting-drivers.rst <submittingdrivers>`
17 和 :ref:`Documentation/translations/zh_CN/process/submit-checklist.rst <cn_submitchecklist>`.
148 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
159 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
166 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
174 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
191 :ref:`Documentation/translations/zh_CN/process/email-clients.rst <cn_email_clients>`
Dhowto.rst3 .. 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>`
99 :ref:`Documentation/process/submitting-drivers.rst <submittingdrivers>`
118 :ref:`Documentation/translations/zh_CN/process/stable-api-nonsense.rst <cn_stable_api_nonsense>`
129 :ref:`Documentation/admin-guide/security-bugs.rst <securitybugs>`
[all …]
D4.Coding.rst1 .. include:: ../disclaimer-zh_CN.rst
3 :Original: :ref:`Documentation/process/4.Coding.rst <development_coding>`
25 :ref:`Documentation/translations/zh_CN/process/coding-style.rst <cn_codingstyle>`
52 参阅文件 :ref:`Documentation/process/clang-format.rst <clangformat>`
208 Documentation/fault-injection/fault-injection.rst
220 :ref:`Documentation/dev-tools/coccinelle.rst <devtools_coccinelle>`
246 文件 :ref:`Documentation/admin-guide/kernel-parameters.rst <kernelparameters>`
Dsubmit-checklist.rst1 .. include:: ../disclaimer-zh_CN.rst
3 :Original: :ref:`Documentation/process/submit-checklist.rst <submitchecklist>`
15 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
35 5) 如下所述 :ref:`Documentation/translations/zh_CN/process/coding-style.rst <cn_codingstyle>`.
41 它们符合 ``Documentation/kbuild/kconfig-language.rst`` 中记录的异常条件,
77 Documentation/admin-guide/kernel-parameters.rst 中。
100 25) 如果补丁添加了任何ioctl,那么也要更新 ``Documentation/userspace-api/ioctl/ioctl-number.rst``
Dsubmitting-drivers.rst3 .. include:: ../disclaimer-zh_CN.rst
5 :Original: :ref:`Documentation/process/submitting-drivers.rst
25 另请参阅 Documentation/translations/zh_CN/process/submitting-patches.rst 文档。
34 请参阅 Documentation/admin-guide/devices.rst
76 代码: 请使用 Documentation/process/coding-style.rst 中所描述的 Linux 代码风
100 Documentation/power/drivers-testing.rst。有关驱动程序电
102 Documentation/driver-api/pm/devices.rst
/Linux-v5.10/Documentation/translations/ko_KR/
Dhowto.rst2 This is a version of Documentation/process/howto.rst translated into korean
15 Documentation/process/howto.rst
82 :ref:`Documentation/process/license-rules.rst <kernel_licensing>` 에 설명되어
104 :ref:`Documentation/admin-guide/README.rst <readme>`
109 :ref:`Documentation/process/changes.rst <changes>`
113 :ref:`Documentation/process/coding-style.rst <codingstyle>`
119 …umentation/process/submitting-patches.rst <submittingpatches>` 와 :ref:`Documentation/process/submi…
140 :ref:`Documentation/process/stable-api-nonsense.rst <stable_api_nonsense>`
152 :ref:`Documentation/admin-guide/security-bugs.rst <securitybugs>`
157 :ref:`Documentation/process/management-style.rst <managementstyle>`
[all …]
/Linux-v5.10/Documentation/userspace-api/media/dvb/
Dheaders.rst10 .. kernel-include:: $BUILDDIR/frontend.h.rst
12 .. kernel-include:: $BUILDDIR/dmx.h.rst
14 .. kernel-include:: $BUILDDIR/ca.h.rst
16 .. kernel-include:: $BUILDDIR/net.h.rst
21 .. kernel-include:: $BUILDDIR/audio.h.rst
23 .. kernel-include:: $BUILDDIR/video.h.rst
/Linux-v5.10/Documentation/sphinx-static/
Dtheme_overrides.css15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend {
52 .rst-content .highlight > pre {
57 .rst-content table.field-list th.field-name {
61 .rst-content table.field-list td.field-body {
85 .rst-content table.docutils caption { text-align: left; font-size: 100%; }
98 caption, .wy-table caption, .rst-content table.field-list caption {
120 .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child {
126 code, .rst-content tt, .rst-content code {
134 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
/Linux-v5.10/arch/arm64/boot/dts/altera/
Dsocfpga_stratix10.dtsi7 #include <dt-bindings/reset/altr,rst-mgr-s10.h>
146 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>;
164 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>;
182 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>;
199 resets = <&rst GPIO0_RESET>;
219 resets = <&rst GPIO1_RESET>;
240 resets = <&rst I2C0_RESET>;
251 resets = <&rst I2C1_RESET>;
262 resets = <&rst I2C2_RESET>;
273 resets = <&rst I2C3_RESET>;
[all …]
/Linux-v5.10/arch/arm64/boot/dts/intel/
Dsocfpga_agilex.dtsi7 #include <dt-bindings/reset/altr,rst-mgr-s10.h>
145 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>;
163 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>;
181 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>;
198 resets = <&rst GPIO0_RESET>;
218 resets = <&rst GPIO1_RESET>;
239 resets = <&rst I2C0_RESET>;
250 resets = <&rst I2C1_RESET>;
261 resets = <&rst I2C2_RESET>;
272 resets = <&rst I2C3_RESET>;
[all …]
/Linux-v5.10/Documentation/userspace-api/media/v4l/
Dselection-api.rst12 selection-api-intro.rst
13 selection-api-targets.rst
14 selection-api-configuration.rst
15 selection-api-vs-crop-api.rst
16 selection-api-examples.rst
/Linux-v5.10/drivers/reset/hisilicon/
Dreset-hi3660.c15 struct reset_controller_dev rst; member
20 container_of(_rst, struct hi3660_reset_controller, rst)
92 rc->rst.ops = &hi3660_reset_ops, in hi3660_reset_probe()
93 rc->rst.of_node = np; in hi3660_reset_probe()
94 rc->rst.of_reset_n_cells = 2; in hi3660_reset_probe()
95 rc->rst.of_xlate = hi3660_reset_xlate; in hi3660_reset_probe()
97 return reset_controller_register(&rc->rst); in hi3660_reset_probe()
/Linux-v5.10/Documentation/translations/ja_JP/
Dhowto.rst2 This is a version of Documentation/process/howto.rst translated into Japanese.
15 Documentation/process/howto.rst
112 :ref:`Documentation/process/changes.rst <changes>`
117 :ref:`Documentation/process/coding-style.rst <codingstyle>`
124 …Documentation/process/submitting-patches.rst <codingstyle>` と :ref:`Documentation/process/submitti…
144 :ref:`Documentation/process/stable-api-nonsense.rst <stable_api_nonsense>`
156 :ref:`Documentation/admin-guide/security-bugs.rst <securitybugs>`
161 :ref:`Documentation/process/management-style.rst <managementstyle>`
168 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
173 :Ref:`Documentation/process/kernel-docs.rst <kernel_docs>`
[all …]
/Linux-v5.10/scripts/kconfig/tests/err_recursive_dep/
Dexpected_stderr3 For a resolution refer to Documentation/kbuild/kconfig-language.rst
8 For a resolution refer to Documentation/kbuild/kconfig-language.rst
14 For a resolution refer to Documentation/kbuild/kconfig-language.rst
20 For a resolution refer to Documentation/kbuild/kconfig-language.rst
26 For a resolution refer to Documentation/kbuild/kconfig-language.rst
31 For a resolution refer to Documentation/kbuild/kconfig-language.rst
37 For a resolution refer to Documentation/kbuild/kconfig-language.rst
/Linux-v5.10/arch/arm/boot/dts/
Dsocfpga_arria10.dtsi7 #include <dt-bindings/reset/altr,rst-mgr-a10.h>
71 resets = <&rst DMA_RESET>, <&rst DMA_OCP_RESET>;
436 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>;
456 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>;
476 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>;
487 resets = <&rst GPIO0_RESET>;
507 resets = <&rst GPIO1_RESET>;
527 resets = <&rst GPIO2_RESET>;
547 resets = <&rst FPGAMGR_RESET>;
558 resets = <&rst I2C0_RESET>;
[all …]
/Linux-v5.10/drivers/soc/ti/
Domap_prm.c47 s8 rst; member
125 { .rst = 0, .st = 0 },
126 { .rst = -1 },
130 { .rst = 0, .st = 0 },
131 { .rst = 1, .st = 1 },
132 { .rst = -1 },
136 { .rst = 0, .st = 0 },
137 { .rst = 1, .st = 1 },
138 { .rst = 2, .st = 2 },
139 { .rst = -1 },
[all …]

12345678910>>...43