brintos

brintos / linux-shallow public Read only

0
0
Text · 2.7 KiB · c063369 Raw
132 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/imx35-clock.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Freescale i.MX35 Clock Controller8 9maintainers:10  - Steffen Trumtrar <s.trumtrar@pengutronix.de>11 12description: |13  The clock consumer should specify the desired clock by having the clock14  ID in its "clocks" phandle cell. The following is a full list of i.MX3515  clocks and IDs.16 17        Clock			ID18        ---------------------------19        ckih			020        mpll			121        ppll			222        mpll_075		323        arm			424        hsp			525        hsp_div			626        hsp_sel			727        ahb			828        ipg			929        arm_per_div		1030        ahb_per_div		1131        ipg_per			1232        uart_sel		1333        uart_div		1434        esdhc_sel		1535        esdhc1_div		1636        esdhc2_div		1737        esdhc3_div		1838        spdif_sel		1939        spdif_div_pre		2040        spdif_div_post		2141        ssi_sel			2242        ssi1_div_pre		2343        ssi1_div_post		2444        ssi2_div_pre		2545        ssi2_div_post		2646        usb_sel			2747        usb_div			2848        nfc_div			2949        asrc_gate		3050        pata_gate		3151        audmux_gate		3252        can1_gate		3353        can2_gate		3454        cspi1_gate		3555        cspi2_gate		3656        ect_gate		3757        edio_gate		3858        emi_gate		3959        epit1_gate		4060        epit2_gate		4161        esai_gate		4262        esdhc1_gate		4363        esdhc2_gate		4464        esdhc3_gate		4565        fec_gate		4666        gpio1_gate		4767        gpio2_gate		4868        gpio3_gate		4969        gpt_gate		5070        i2c1_gate		5171        i2c2_gate		5272        i2c3_gate		5373        iomuxc_gate		5474        ipu_gate		5575        kpp_gate		5676        mlb_gate		5777        mshc_gate		5878        owire_gate		5979        pwm_gate		6080        rngc_gate		6181        rtc_gate		6282        rtic_gate		6383        scc_gate		6484        sdma_gate		6585        spba_gate		6686        spdif_gate		6787        ssi1_gate		6888        ssi2_gate		6989        uart1_gate		7090        uart2_gate		7191        uart3_gate		7292        usbotg_gate		7393        wdog_gate		7494        max_gate		7595        admux_gate		7696        csi_gate		7797        csi_div			7898        csi_sel			7999        iim_gate		80100        gpu2d_gate		81101        ckli_gate		82102 103properties:104  compatible:105    const: fsl,imx35-ccm106 107  reg:108    maxItems: 1109 110  interrupts:111    maxItems: 1112 113  '#clock-cells':114    const: 1115 116required:117  - compatible118  - reg119  - interrupts120  - '#clock-cells'121 122additionalProperties: false123 124examples:125  - |126    clock-controller@53f80000 {127        compatible = "fsl,imx35-ccm";128        reg = <0x53f80000 0x4000>;129        interrupts = <31>;130        #clock-cells = <1>;131    };132