diff options
author | Stephen Warren <swarren@wwwdotorg.org> | 2013-02-21 22:42:38 -0700 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-03-04 17:15:34 -0800 |
commit | 2837a1d4161caec7dffefa03505b87f056c1f5bb (patch) | |
tree | d73ab7ed64c9f7547ac4b4666698229093ce1781 /arch/arm/boot/dts/bcm2835.dtsi | |
parent | 91bdf0d0c48c9254fb73037bfb8ee1777093225b (diff) |
ARM: bcm2835: fix I2C module clock rate
BCM2835-ARM-Peripherals.pdf states that the I2C module's input clock is
nominally 150MHz, and that value is currently reflected in bcm2835.dtsi.
However, practical measurements show that the rate is actually 250MHz,
and this agrees with various downstream kernels.
Switch the I2C clock's frequency to 250MHz so that the generated bus
clock rate is accurate.
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/boot/dts/bcm2835.dtsi')
-rw-r--r-- | arch/arm/boot/dts/bcm2835.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/bcm2835.dtsi b/arch/arm/boot/dts/bcm2835.dtsi index 4bf2a8774aa7..7e0481e2441a 100644 --- a/arch/arm/boot/dts/bcm2835.dtsi +++ b/arch/arm/boot/dts/bcm2835.dtsi @@ -105,7 +105,7 @@ compatible = "fixed-clock"; reg = <1>; #clock-cells = <0>; - clock-frequency = <150000000>; + clock-frequency = <250000000>; }; }; }; |