Home
last modified time | relevance | path

Searched +full:imx93 +full:- +full:src (Results 1 – 7 of 7) sorted by relevance

/Linux-v6.1/Documentation/devicetree/bindings/soc/imx/
Dfsl,imx93-src.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/soc/imx/fsl,imx93-src.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Peng Fan <peng.fan@nxp.com>
13 The System Reset Controller (SRC) is responsible for the generation of
17 - Deals with all global system reset sources from other modules,
19 - Responsible for power gating of MIXs (Slices) and their memory
25 - const: fsl,imx93-src
26 - const: syscon
[all …]
/Linux-v6.1/arch/arm64/boot/dts/freescale/
Dimx93.dtsi1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
6 #include <dt-bindings/clock/imx93-clock.h>
7 #include <dt-bindings/gpio/gpio.h>
8 #include <dt-bindings/input/input.h>
9 #include <dt-bindings/interrupt-controller/arm-gic.h>
10 #include <dt-bindings/power/fsl,imx93-power.h>
12 #include "imx93-pinfunc.h"
15 interrupt-parent = <&gic>;
16 #address-cells = <2>;
17 #size-cells = <2>;
[all …]
/Linux-v6.1/drivers/soc/imx/
DMakefile1 # SPDX-License-Identifier: GPL-2.0-only
3 obj-$(CONFIG_ARCH_MXC) += soc-imx.o
5 obj-$(CONFIG_HAVE_IMX_GPC) += gpc.o
6 obj-$(CONFIG_IMX_GPCV2_PM_DOMAINS) += gpcv2.o
7 obj-$(CONFIG_SOC_IMX8M) += soc-imx8m.o
8 obj-$(CONFIG_SOC_IMX8M) += imx8m-blk-ctrl.o
9 obj-$(CONFIG_SOC_IMX8M) += imx8mp-blk-ctrl.o
10 obj-$(CONFIG_SOC_IMX9) += imx93-src.o imx93-pd.o
11 obj-$(CONFIG_SOC_IMX9) += imx93-blk-ctrl.o
Dimx93-src.c1 // SPDX-License-Identifier: GPL-2.0
12 return devm_of_platform_populate(&pdev->dev); in imx93_src_probe()
16 { .compatible = "fsl,imx93-src" },
32 MODULE_DESCRIPTION("NXP i.MX93 src driver");
Dimx93-pd.c1 // SPDX-License-Identifier: GPL-2.0
38 void __iomem *addr = domain->addr; in imx93_pd_on()
42 ret = clk_bulk_prepare_enable(domain->num_clks, domain->clks); in imx93_pd_on()
44 dev_err(domain->dev, "failed to enable clocks for domain: %s\n", genpd->name); in imx93_pd_on()
55 dev_err(domain->dev, "pd_on timeout: name: %s, stat: %x\n", genpd->name, val); in imx93_pd_on()
65 void __iomem *addr = domain->addr; in imx93_pd_off()
77 dev_err(domain->dev, "pd_off timeout: name: %s, stat: %x\n", genpd->name, val); in imx93_pd_off()
81 clk_bulk_disable_unprepare(domain->num_clks, domain->clks); in imx93_pd_off()
89 struct device *dev = &pdev->dev; in imx93_pd_remove()
90 struct device_node *np = dev->of_node; in imx93_pd_remove()
[all …]
/Linux-v6.1/Documentation/devicetree/bindings/remoteproc/
Dfsl,imx-rproc.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
4 $id: "http://devicetree.org/schemas/remoteproc/fsl,imx-rproc.yaml#"
5 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
7 title: NXP i.MX Co-Processor Bindings
10 This binding provides support for ARM Cortex M4 Co-processor found on some NXP iMX SoCs.
13 - Peng Fan <peng.fan@nxp.com>
18 - fsl,imx6sx-cm4
19 - fsl,imx7d-cm4
20 - fsl,imx7ulp-cm4
[all …]
/Linux-v6.1/drivers/remoteproc/
Dimx_rproc.c1 // SPDX-License-Identifier: GPL-2.0-only
6 #include <linux/arm-smccc.h>
63 * struct imx_rproc_mem - slim internal memory structure
96 /* TCM CODE NON-SECURE */
104 /* TCM SYS NON-SECURE*/
132 /* QSPI Code - alias */
134 /* DDR (Code) - alias */
138 /* OCRAM_S - alias */
152 /* TCML - alias */
160 /* QSPI Code - alias */
[all …]