mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
arm64: dts: mediatek: Correct I2C clock of MT8192
When the initial devicetree for mt8192 was added in48489980e2("arm64: dts: Add Mediatek SoC MT8192 and evaluation board dts and Makefile"), the clock driver for mt8192 was not yet upstream, so the clock property nodes were set to the clk26m clock as a placeholder. Given that the clock driver has since been added through710573dee3("clk: mediatek: Add MT8192 basic clocks support"), as well as its dt-bindings throughf35f1a23e0("clk: mediatek: Add dt-bindings of MT8192 clocks") and devicetree nodes through5d2b897bc6("arm64: dts: mediatek: Add mt8192 clock controllers"), fix the I2C clock property to point to the actual clock. Signed-off-by: Allen-KH Cheng <Allen-KH.Cheng@mediatek.com> Reviewed-by: Nícolas F. R. A. Prado <nfraprado@collabora.com> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Link: https://lore.kernel.org/r/20220113065822.11809-5-allen-kh.cheng@mediatek.com Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
This commit is contained in:
parent
aa247c07f7
commit
226231544f
|
|
@ -486,7 +486,8 @@ i2c3: i2c@11cb0000 {
|
|||
reg = <0 0x11cb0000 0 0x1000>,
|
||||
<0 0x10217300 0 0x80>;
|
||||
interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_e CLK_IMP_IIC_WRAP_E_I2C3>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -505,7 +506,8 @@ i2c7: i2c@11d00000 {
|
|||
reg = <0 0x11d00000 0 0x1000>,
|
||||
<0 0x10217600 0 0x180>;
|
||||
interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_s CLK_IMP_IIC_WRAP_S_I2C7>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -518,7 +520,8 @@ i2c8: i2c@11d01000 {
|
|||
reg = <0 0x11d01000 0 0x1000>,
|
||||
<0 0x10217780 0 0x180>;
|
||||
interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_s CLK_IMP_IIC_WRAP_S_I2C8>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -531,7 +534,8 @@ i2c9: i2c@11d02000 {
|
|||
reg = <0 0x11d02000 0 0x1000>,
|
||||
<0 0x10217900 0 0x180>;
|
||||
interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_s CLK_IMP_IIC_WRAP_S_I2C9>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -550,7 +554,8 @@ i2c1: i2c@11d20000 {
|
|||
reg = <0 0x11d20000 0 0x1000>,
|
||||
<0 0x10217100 0 0x80>;
|
||||
interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_ws CLK_IMP_IIC_WRAP_WS_I2C1>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -563,7 +568,8 @@ i2c2: i2c@11d21000 {
|
|||
reg = <0 0x11d21000 0 0x1000>,
|
||||
<0 0x10217180 0 0x180>;
|
||||
interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_ws CLK_IMP_IIC_WRAP_WS_I2C2>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -576,7 +582,8 @@ i2c4: i2c@11d22000 {
|
|||
reg = <0 0x11d22000 0 0x1000>,
|
||||
<0 0x10217380 0 0x180>;
|
||||
interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_ws CLK_IMP_IIC_WRAP_WS_I2C4>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -595,7 +602,8 @@ i2c5: i2c@11e00000 {
|
|||
reg = <0 0x11e00000 0 0x1000>,
|
||||
<0 0x10217500 0 0x80>;
|
||||
interrupts = <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_w CLK_IMP_IIC_WRAP_W_I2C5>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -614,7 +622,8 @@ i2c0: i2c@11f00000 {
|
|||
reg = <0 0x11f00000 0 0x1000>,
|
||||
<0 0x10217080 0 0x80>;
|
||||
interrupts = <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_n CLK_IMP_IIC_WRAP_N_I2C0>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
@ -627,7 +636,8 @@ i2c6: i2c@11f01000 {
|
|||
reg = <0 0x11f01000 0 0x1000>,
|
||||
<0 0x10217580 0 0x80>;
|
||||
interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&clk26m>, <&clk26m>;
|
||||
clocks = <&imp_iic_wrap_n CLK_IMP_IIC_WRAP_N_I2C6>,
|
||||
<&infracfg CLK_INFRA_AP_DMA>;
|
||||
clock-names = "main", "dma";
|
||||
clock-div = <1>;
|
||||
#address-cells = <1>;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user