Home
last modified time | relevance | path

Searched refs:smd (Results 1 – 25 of 32) sorted by relevance

12

/Linux-v5.15/drivers/md/persistent-data/
Ddm-space-map-disk.c36 struct sm_disk *smd = container_of(sm, struct sm_disk, sm); in sm_disk_destroy() local
38 kfree(smd); in sm_disk_destroy()
43 struct sm_disk *smd = container_of(sm, struct sm_disk, sm); in sm_disk_extend() local
45 return sm_ll_extend(&smd->ll, extra_blocks); in sm_disk_extend()
50 struct sm_disk *smd = container_of(sm, struct sm_disk, sm); in sm_disk_get_nr_blocks() local
51 *count = smd->old_ll.nr_blocks; in sm_disk_get_nr_blocks()
58 struct sm_disk *smd = container_of(sm, struct sm_disk, sm); in sm_disk_get_nr_free() local
59 *count = (smd->old_ll.nr_blocks - smd->old_ll.nr_allocated) - smd->nr_allocated_this_transaction; in sm_disk_get_nr_free()
67 struct sm_disk *smd = container_of(sm, struct sm_disk, sm); in sm_disk_get_count() local
68 return sm_ll_lookup(&smd->ll, b, result); in sm_disk_get_count()
[all …]
/Linux-v5.15/drivers/clk/at91/
Dclk-smd.c29 struct at91sam9x5_clk_smd *smd = to_at91sam9x5_clk_smd(hw); in at91sam9x5_clk_smd_recalc_rate() local
33 regmap_read(smd->regmap, AT91_PMC_SMD, &smdr); in at91sam9x5_clk_smd_recalc_rate()
63 struct at91sam9x5_clk_smd *smd = to_at91sam9x5_clk_smd(hw); in at91sam9x5_clk_smd_set_parent() local
68 regmap_update_bits(smd->regmap, AT91_PMC_SMD, AT91_PMC_SMDS, in at91sam9x5_clk_smd_set_parent()
76 struct at91sam9x5_clk_smd *smd = to_at91sam9x5_clk_smd(hw); in at91sam9x5_clk_smd_get_parent() local
79 regmap_read(smd->regmap, AT91_PMC_SMD, &smdr); in at91sam9x5_clk_smd_get_parent()
87 struct at91sam9x5_clk_smd *smd = to_at91sam9x5_clk_smd(hw); in at91sam9x5_clk_smd_set_rate() local
93 regmap_update_bits(smd->regmap, AT91_PMC_SMD, AT91_PMC_SMD_DIV, in at91sam9x5_clk_smd_set_rate()
111 struct at91sam9x5_clk_smd *smd; in at91sam9x5_clk_register_smd() local
116 smd = kzalloc(sizeof(*smd), GFP_KERNEL); in at91sam9x5_clk_register_smd()
[all …]
DMakefile13 obj-$(CONFIG_HAVE_AT91_SMD) += clk-smd.o
/Linux-v5.15/drivers/remoteproc/
Dqcom_common.c296 struct qcom_rproc_subdev *smd = to_smd_subdev(subdev); in smd_subdev_start() local
298 smd->edge = qcom_smd_register_edge(smd->dev, smd->node); in smd_subdev_start()
300 return PTR_ERR_OR_ZERO(smd->edge); in smd_subdev_start()
305 struct qcom_rproc_subdev *smd = to_smd_subdev(subdev); in smd_subdev_stop() local
307 qcom_smd_unregister_edge(smd->edge); in smd_subdev_stop()
308 smd->edge = NULL; in smd_subdev_stop()
316 void qcom_add_smd_subdev(struct rproc *rproc, struct qcom_rproc_subdev *smd) in qcom_add_smd_subdev() argument
320 smd->node = of_get_child_by_name(dev->parent->of_node, "smd-edge"); in qcom_add_smd_subdev()
321 if (!smd->node) in qcom_add_smd_subdev()
324 smd->dev = dev; in qcom_add_smd_subdev()
[all …]
Dqcom_common.h44 void qcom_add_smd_subdev(struct rproc *rproc, struct qcom_rproc_subdev *smd);
45 void qcom_remove_smd_subdev(struct rproc *rproc, struct qcom_rproc_subdev *smd);
/Linux-v5.15/Documentation/devicetree/bindings/soc/qcom/
Dqcom,smd.txt10 Definition: must be "qcom,smd"
40 - qcom,smd-edge:
43 Definition: the identifier of the remote processor in the smd channel
66 - qcom,smd-channels:
74 The following example represents a smd node, with one edge representing the
83 smd {
84 compatible = "qcom,smd";
89 qcom,smd-edge = <15>;
93 qcom,smd-channels = "rpm_requests";
Dqcom,wcnss.txt11 - qcom,smd-channel:
86 smd {
87 compatible = "qcom,smd";
93 qcom,smd-edge = <6>;
97 qcom,smd-channels = "WCNSS_CTRL";
/Linux-v5.15/net/qrtr/
DMakefile4 obj-$(CONFIG_QRTR_SMD) += qrtr-smd.o
5 qrtr-smd-y := smd.o
/Linux-v5.15/Documentation/devicetree/bindings/clock/
Dqcom,rpmcc.txt44 smd {
45 compatible = "qcom,smd";
50 qcom,smd-edge = <15>;
54 qcom,smd-channels = "rpm_requests";
/Linux-v5.15/drivers/interconnect/qcom/
DMakefile19 icc-smd-rpm-objs := smd-rpm.o icc-rpm.o
37 obj-$(CONFIG_INTERCONNECT_QCOM_SMD_RPM) += icc-smd-rpm.o
/Linux-v5.15/Documentation/devicetree/bindings/remoteproc/
Dqcom,wcnss-pil.txt112 The wcnss node can also have an subnode named "smd-edge" that describes the SMD
114 See ../soc/qcom/qcom,smd.txt for details on how to describe the SMD edge.
157 smd-edge {
161 qcom,smd-edge = <6>;
168 qcom,smd-channels = "WCNSS_CTRL";
Dqcom,q6v5.txt218 The Hexagon node may also have an subnode named either "smd-edge" or
220 related to the Hexagon. See ../soc/qcom/qcom,smd.txt and
/Linux-v5.15/Documentation/devicetree/bindings/misc/
Dqcom,fastrpc.txt57 smd-edge {
61 qcom,smd-channels = "fastrpcsmd-apps-dsp";
/Linux-v5.15/drivers/net/wireless/ath/wcn36xx/
DMakefile6 smd.o \
/Linux-v5.15/arch/arm/boot/dts/
Dqcom-msm8974.dtsi364 smd-edge {
368 qcom,smd-edge = <1>;
877 smd-edge {
881 qcom,smd-edge = <0>;
920 smd-edge {
924 qcom,smd-edge = <6>;
928 qcom,smd-channels = "WCNSS_CTRL";
1609 smd {
1610 compatible = "qcom,smd";
1615 qcom,smd-edge = <15>;
[all …]
Dqcom-apq8084.dtsi465 smd {
466 compatible = "qcom,smd";
471 qcom,smd-edge = <15>;
475 qcom,smd-channels = "rpm_requests";
Dimx53-smd.dts12 compatible = "fsl,imx53-smd", "fsl,imx53";
101 imx53-smd {
Dqcom-apq8064.dtsi227 smd {
228 compatible = "qcom,smd";
234 qcom,smd-edge = <0>;
243 qcom,smd-edge = <1>;
252 qcom,smd-edge = <3>;
261 qcom,smd-edge = <6>;
1541 smd-edge {
1545 qcom,smd-edge = <6>;
1551 qcom,smd-channels = "WCNSS_CTRL";
Dqcom-msm8974-fairphone-fp2.dts59 smd {
271 smd-edge {
Dqcom-apq8074-dragonboard.dts148 smd {
Dqcom-msm8974-sony-xperia-amami.dts62 smd {
/Linux-v5.15/drivers/soc/qcom/
DMakefile17 obj-$(CONFIG_QCOM_SMD_RPM) += smd-rpm.o
/Linux-v5.15/arch/arm64/boot/dts/qcom/
Dmsm8916.dtsi277 smd {
278 compatible = "qcom,smd";
283 qcom,smd-edge = <15>;
287 qcom,smd-channels = "rpm_requests";
1352 smd-edge {
1355 qcom,smd-edge = <0>;
1363 qcom,smd-channels = "fastrpcsmd-apps-dsp";
1759 smd-edge {
1763 qcom,smd-edge = <6>;
1770 qcom,smd-channels = "WCNSS_CTRL";
Dmsm8994.dtsi230 smd {
231 compatible = "qcom,smd";
235 qcom,smd-edge = <15>;
241 qcom,smd-channels = "rpm_requests";
/Linux-v5.15/drivers/clk/qcom/
DMakefile56 obj-$(CONFIG_QCOM_CLK_SMD_RPM) += clk-smd-rpm.o

12