brintos

brintos / linux-shallow public Read only

0
0
Text · 1.6 KiB · 5e71c92 Raw
86 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/imx23-clock.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Freescale i.MX23 Clock Controller8 9maintainers:10  - Shawn Guo <shawnguo@kernel.org>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.MX2315  clocks and IDs.16 17        Clock		ID18        ------------------19        ref_xtal	020        pll		121        ref_cpu		222        ref_emi		323        ref_pix		424        ref_io		525        saif_sel	626        lcdif_sel	727        gpmi_sel	828        ssp_sel		929        emi_sel		1030        cpu		1131        etm_sel		1232        cpu_pll		1333        cpu_xtal	1434        hbus		1535        xbus		1636        lcdif_div	1737        ssp_div		1838        gpmi_div	1939        emi_pll		2040        emi_xtal	2141        etm_div		2242        saif_div	2343        clk32k_div	2444        rtc		2545        adc		2646        spdif_div	2747        clk32k		2848        dri		2949        pwm		3050        filt		3151        uart		3252        ssp		3353        gpmi		3454        spdif		3555        emi		3656        saif		3757        lcdif		3858        etm		3959        usb		4060        usb_phy		4161 62properties:63  compatible:64    const: fsl,imx23-clkctrl65 66  reg:67    maxItems: 168 69  '#clock-cells':70    const: 171 72required:73  - compatible74  - reg75  - '#clock-cells'76 77additionalProperties: false78 79examples:80  - |81    clock-controller@80040000 {82        compatible = "fsl,imx23-clkctrl";83        reg = <0x80040000 0x2000>;84        #clock-cells = <1>;85    };86