Home
last modified time | relevance | path

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

12345678910>>...75

/openbmc/linux/drivers/reset/
H A Dreset-hsdk.c80 hsdk_reset_config(rst, id); in hsdk_reset_reset()
81 ret = hsdk_reset_do(rst); in hsdk_reset_reset()
94 struct hsdk_rst *rst; in hsdk_reset_probe() local
96 rst = devm_kzalloc(&pdev->dev, sizeof(*rst), GFP_KERNEL); in hsdk_reset_probe()
97 if (!rst) in hsdk_reset_probe()
101 if (IS_ERR(rst->regs_ctl)) in hsdk_reset_probe()
102 return PTR_ERR(rst->regs_ctl); in hsdk_reset_probe()
105 if (IS_ERR(rst->regs_rst)) in hsdk_reset_probe()
106 return PTR_ERR(rst->regs_rst); in hsdk_reset_probe()
108 spin_lock_init(&rst->lock); in hsdk_reset_probe()
[all …]
H A Dreset-axs10x.c33 spin_lock_irqsave(&rst->lock, flags); in axs10x_reset_reset()
34 writel(BIT(id), rst->regs_rst); 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()
53 if (IS_ERR(rst->regs_rst)) in axs10x_reset_probe()
54 return PTR_ERR(rst->regs_rst); in axs10x_reset_probe()
56 spin_lock_init(&rst->lock); in axs10x_reset_probe()
58 rst->rcdev.owner = THIS_MODULE; in axs10x_reset_probe()
59 rst->rcdev.ops = &axs10x_reset_ops; in axs10x_reset_probe()
[all …]
/openbmc/u-boot/drivers/reset/
H A Dreset-ti-sci.c56 rst->id = args->args[0]; in ti_sci_reset_of_xlate()
57 rst->data = args->args[1]; in ti_sci_reset_of_xlate()
64 debug("%s(rst=%p)\n", __func__, rst); in ti_sci_reset_request()
70 debug("%s(rst=%p)\n", __func__, rst); in ti_sci_reset_free()
105 reset_state |= rst->data; in ti_sci_reset_set()
107 reset_state &= ~rst->data; in ti_sci_reset_set()
132 debug("%s(rst=%p)\n", __func__, rst); in ti_sci_reset_assert()
133 return ti_sci_reset_set(rst, true); in ti_sci_reset_assert()
149 debug("%s(rst=%p)\n", __func__, rst); in ti_sci_reset_deassert()
150 return ti_sci_reset_set(rst, false); in ti_sci_reset_deassert()
[all …]
H A Dreset-bcm6345.c21 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
48 if (rst->id >= MAX_RESETS) in bcm6345_reset_request()
51 return bcm6345_reset_assert(rst); in bcm6345_reset_request()
/openbmc/linux/Documentation/devicetree/bindings/reset/
H A Drenesas,rst.yaml26 - 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,r8a774b1-rst # RZ/G2N
33 - renesas,r8a774c0-rst # RZ/G2E
34 - renesas,r8a774e1-rst # RZ/G2H
37 - renesas,r8a7790-rst # R-Car H2
[all …]
/openbmc/linux/Documentation/userspace-api/media/
H A DMakefile10 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
45 $(BUILDDIR)/lirc.h.rst: ${UAPI}/lirc.h ${PARSER} $(SRC_DIR)/lirc.h.rst.exceptions
/openbmc/linux/drivers/clk/baikal-t1/
H A Dccu-rst.c169 struct ccu_rst *rst; in ccu_rst_hw_register() local
175 rst = kzalloc(sizeof(*rst), GFP_KERNEL); in ccu_rst_hw_register()
176 if (!rst) in ccu_rst_hw_register()
182 rst->rsts_info = axi_rst_info; in ccu_rst_hw_register()
185 rst->rsts_info = sys_rst_info; in ccu_rst_hw_register()
193 rst->rcdev.owner = THIS_MODULE; in ccu_rst_hw_register()
194 rst->rcdev.ops = &ccu_rst_ops; in ccu_rst_hw_register()
195 rst->rcdev.of_node = rst_init->np; in ccu_rst_hw_register()
204 return rst; in ccu_rst_hw_register()
207 kfree(rst); in ccu_rst_hw_register()
[all …]
/openbmc/linux/Documentation/translations/zh_CN/dev-tools/
H A Dtesting-overview.rst3 .. include:: ../disclaimer-zh_CN.rst
5 :Original: Documentation/dev-tools/testing-overview.rst
34 KUnit(Documentation/dev-tools/kunit/index.rst)是用于“白箱”测
48 Documentation/dev-tools/kunit/style.rst
78 Documentation/dev-tools/kcov.rst 是能够构建在内核之中,用于在每个任务
92 Documentation/dev-tools/kmemleak.rst
94 Documentation/dev-tools/kasan.rst
96 Documentation/dev-tools/ubsan.rst
97 * KCSAN检测数据竞争。参阅 Documentation/dev-tools/kcsan.rst
99 参阅 Documentation/dev-tools/kfence.rst
[all …]
/openbmc/openbmc/poky/documentation/sphinx-static/
H A Dtheme_overrides.css112 code, .rst-content tt, .rst-content code {
120 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
125 .rst-content .note .admonition-title,
126 .rst-content .tip .admonition-title,
127 .rst-content .warning .admonition-title,
128 .rst-content .caution .admonition-title,
136 .rst-content .note,
137 .rst-content .tip,
138 .rst-content .important,
139 .rst-content .warning,
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Dsocfpga_stratix10.dtsi96 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>;
108 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>;
120 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>;
174 resets = <&rst I2C0_RESET>;
185 resets = <&rst I2C1_RESET>;
196 resets = <&rst I2C2_RESET>;
207 resets = <&rst I2C3_RESET>;
230 resets = <&rst SDMMC_RESET>, <&rst SDMMC_OCP_RESET>;
240 rst: rstmgr@ffd11000 { label
346 resets = <&rst USB0_RESET>, <&rst USB0_OCP_RESET>;
[all …]
/openbmc/linux/Documentation/trace/rv/
H A Dindex.rst9 runtime-verification.rst
10 deterministic_automata.rst
11 da_monitor_synthesis.rst
12 da_monitor_instrumentation.rst
13 monitor_wip.rst
14 monitor_wwnr.rst
/openbmc/openbmc/poky/bitbake/doc/sphinx-static/
H A Dtheme_overrides.css112 code, .rst-content tt, .rst-content code {
120 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
125 .rst-content .note .admonition-title,
126 .rst-content .tip .admonition-title,
127 .rst-content .warning .admonition-title,
128 .rst-content .caution .admonition-title,
135 .rst-content .note,
136 .rst-content .tip,
137 .rst-content .important,
138 .rst-content .warning,
[all …]
/openbmc/linux/Documentation/filesystems/ext4/
H A 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
H A Dglobals.rst9 .. include:: super.rst
10 .. include:: group_descr.rst
11 .. include:: bitmaps.rst
12 .. include:: mmp.rst
13 .. include:: journal.rst
14 .. include:: orphan.rst
/openbmc/linux/drivers/reset/sti/
H A 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()
113 ch = &rst->channels[idx]; in syscfg_reset_status()
121 return rst->active_low ? !ret_val : !!ret_val; in syscfg_reset_status()
146 rc->rst.ops = &syscfg_reset_ops; in syscfg_reset_controller_register()
147 rc->rst.of_node = dev->of_node; in syscfg_reset_controller_register()
148 rc->rst.nr_resets = data->nr_channels; in syscfg_reset_controller_register()
[all …]
/openbmc/linux/drivers/clk/qcom/
H A Dreset.c16 struct qcom_reset_controller *rst = to_qcom_reset_controller(rcdev); in qcom_reset() local
19 fsleep(rst->reset_map[id].udelay ?: 1); /* use 1 us as default */ in qcom_reset()
28 struct qcom_reset_controller *rst; in qcom_reset_set_assert() local
32 rst = to_qcom_reset_controller(rcdev); in qcom_reset_set_assert()
33 map = &rst->reset_map[id]; in qcom_reset_set_assert()
36 regmap_update_bits(rst->regmap, map->reg, mask, assert ? mask : 0); in qcom_reset_set_assert()
39 regmap_read(rst->regmap, map->reg, &mask); in qcom_reset_set_assert()
/openbmc/openbmc/poky/meta/recipes-multimedia/libtiff/tiff/
H A DCVE-2023-52355-0001.patch36 diff --git a/doc/functions/TIFFError.rst b/doc/functions/TIFFError.rst
38 --- a/doc/functions/TIFFError.rst
39 +++ b/doc/functions/TIFFError.rst
50 diff --git a/doc/functions/TIFFOpen.rst b/doc/functions/TIFFOpen.rst
52 --- a/doc/functions/TIFFOpen.rst
53 +++ b/doc/functions/TIFFOpen.rst
86 diff --git a/doc/functions/TIFFOpenOptions.rst b/doc/functions/TIFFOpenOptions.rst
153 diff --git a/doc/functions/TIFFStrileQuery.rst b/doc/functions/TIFFStrileQuery.rst
169 diff --git a/doc/libtiff.rst b/doc/libtiff.rst
171 --- a/doc/libtiff.rst
[all …]
/openbmc/linux/Documentation/translations/zh_CN/process/
H A D5.Posting.rst1 .. 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>`。
154 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
165 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
172 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
180 :ref:`Documentation/translations/zh_CN/process/submitting-patches.rst <cn_submittingpatches>`
197 :ref:`Documentation/translations/zh_CN/process/email-clients.rst <cn_email_clients>`
H A Dhowto.rst3 .. include:: ../disclaimer-zh_CN.rst
5 :Original: :ref:`Documentation/process/howto.rst <process_howto>`
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>`
128 :ref:`Documentation/process/security-bugs.rst <securitybugs>`
138 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
141 :ref:`Documentation/process/kernel-docs.rst <kernel_docs>`
145 :ref:`Documentation/process/applying-patches.rst <applying_patches>`
270 内核源码中的 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
[all …]
H A Dsubmit-checklist.rst1 .. include:: ../disclaimer-zh_CN.rst
3 :Original: Documentation/process/submit-checklist.rst
16 这些都是在 Documentation/translations/zh_CN/process/submitting-patches.rst
39 5) 按 Documentation/translations/zh_CN/process/coding-style.rst 所述检查您的
45 它们符合 ``Documentation/kbuild/kconfig-language.rst`` 菜单属性:默认值中
54 (参见 Documentation/translations/zh_CN/dev-tools/sparse.rst
81 Documentation/admin-guide/kernel-parameters.rst 中。
103 ``Documentation/userspace-api/ioctl/ioctl-number.rst`` 。
/openbmc/linux/Documentation/translations/zh_TW/process/
H A Dhowto.rst5 .. include:: ../disclaimer-zh_TW.rst
7 :Original: :ref:`Documentation/process/howto.rst <process_howto>`
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>`
131 :ref:`Documentation/process/security-bugs.rst <securitybugs>`
141 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
144 :ref:`Documentation/process/kernel-docs.rst <kernel_docs>`
148 :ref:`Documentation/process/applying-patches.rst <applying_patches>`
273 內核源碼中的 :ref:`Documentation/process/stable-kernel-rules.rst <stable_kernel_rules>`
[all …]
H A D5.Posting.rst3 .. include:: ../disclaimer-zh_TW.rst
5 :Original: :ref:`Documentation/process/5.Posting.rst <development_posting>`
25 :ref:`Documentation/translations/zh_TW/process/submitting-patches.rst <tw_submittingpatches>`
26 和 :ref:`Documentation/translations/zh_TW/process/submit-checklist.rst <tw_submitchecklist>`。
157 :ref:`Documentation/translations/zh_TW/process/submitting-patches.rst <tw_submittingpatches>`
168 :ref:`Documentation/translations/zh_TW/process/submitting-patches.rst <tw_submittingpatches>`
175 :ref:`Documentation/translations/zh_TW/process/submitting-patches.rst <tw_submittingpatches>`
183 :ref:`Documentation/translations/zh_TW/process/submitting-patches.rst <tw_submittingpatches>`
200 :ref:`Documentation/translations/zh_TW/process/email-clients.rst <tw_email_clients>`
/openbmc/linux/Documentation/sphinx-static/
H A Dtheme_overrides.css15 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%; }
89 caption, .wy-table caption, .rst-content table.field-list caption {
108 .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child {
114 code, .rst-content tt, .rst-content code {
122 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {
/openbmc/linux/arch/arm64/boot/dts/altera/
H A Dsocfpga_stratix10.dtsi155 resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>;
173 resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>;
191 resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>;
249 resets = <&rst I2C0_RESET>;
260 resets = <&rst I2C1_RESET>;
271 resets = <&rst I2C2_RESET>;
327 resets = <&rst NAND_RESET>, <&rst NAND_OCP_RESET>;
354 resets = <&rst DMA_RESET>, <&rst DMA_OCP_RESET>;
374 rst: rstmgr@ffd11000 { label
496 resets = <&rst USB0_RESET>, <&rst USB0_OCP_RESET>;
[all …]
/openbmc/qemu/docs/sphinx-static/
H A Dtheme_overrides.css15 h1, h2, .rst-content .toctree-wrapper p.caption, h3, h4, h5, h6, legend {
19 .rst-content dl:not(.docutils) dt {
76 .rst-content .highlight > pre {
81 .rst-content table.field-list th.field-name {
85 .rst-content table.field-list td.field-body {
109 .rst-content table.docutils caption { text-align: left; font-size: 100%; }
122 caption, .wy-table caption, .rst-content table.field-list caption {
144 .rst-content .section ul li:last-child, .rst-content .section ul li p:last-child {
150 code, .rst-content tt, .rst-content code {
158 .rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal {

12345678910>>...75