* [PATCH v3] i2c:at91: Add device tree property to set clock-frequency
@ 2014-03-11 4:25 Marek Roszko
2014-03-11 10:51 ` Jean-Christophe PLAGNIOL-VILLARD
2014-03-12 7:26 ` Wolfram Sang
0 siblings, 2 replies; 4+ messages in thread
From: Marek Roszko @ 2014-03-11 4:25 UTC (permalink / raw)
To: linux-arm-kernel
This adds the ability to set "clock-frequency" in the device tree for the at91
i2cbus following the naming of other i2c bus implementations. If the property
is not set,the clock frequency will default to the previously used define
of 100KHz.
Signed-off-by: Marek Roszko <mark.roszko@gmail.com>
---
v3:
-changed bus_clk_rate to u32
v2:
-fixed return code usage and check to not compare agaisnt less than zero
---
Documentation/devicetree/bindings/i2c/i2c-at91.txt | 2 ++
drivers/i2c/busses/i2c-at91.c | 10 ++++++++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/i2c/i2c-at91.txt b/Documentation/devicetree/bindings/i2c/i2c-at91.txt
index 4fade84..388f0a2 100644
--- a/Documentation/devicetree/bindings/i2c/i2c-at91.txt
+++ b/Documentation/devicetree/bindings/i2c/i2c-at91.txt
@@ -12,6 +12,7 @@ Required properties :
- clocks: phandles to input clocks.
Optional properties:
+- clock-frequency: Desired I2C bus frequency in Hz, otherwise defaults to 100000
- Child nodes conforming to i2c bus binding
Examples :
@@ -23,6 +24,7 @@ i2c0: i2c at fff84000 {
#address-cells = <1>;
#size-cells = <0>;
clocks = <&twi0_clk>;
+ clock-frequency = <400000>;
24c512 at 50 {
compatible = "24c512";
diff --git a/drivers/i2c/busses/i2c-at91.c b/drivers/i2c/busses/i2c-at91.c
index 843d012..334c851 100644
--- a/drivers/i2c/busses/i2c-at91.c
+++ b/drivers/i2c/busses/i2c-at91.c
@@ -32,7 +32,7 @@
#include <linux/slab.h>
#include <linux/platform_data/dma-atmel.h>
-#define TWI_CLK_HZ 100000 /* max 400 Kbits/s */
+#define DEFAULT_TWI_CLK_HZ 100000 /* max 400 Kbits/s */
#define AT91_I2C_TIMEOUT msecs_to_jiffies(100) /* transfer timeout */
#define AT91_I2C_DMA_THRESHOLD 8 /* enable DMA if transfer size is bigger than this threshold */
@@ -711,6 +711,7 @@ static int at91_twi_probe(struct platform_device *pdev)
struct resource *mem;
int rc;
u32 phy_addr;
+ u32 bus_clk_rate;
dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
if (!dev)
@@ -756,7 +757,12 @@ static int at91_twi_probe(struct platform_device *pdev)
dev->use_dma = true;
}
- at91_calc_twi_clock(dev, TWI_CLK_HZ);
+ rc = of_property_read_u32(dev->dev->of_node, "clock-frequency",
+ &bus_clk_rate);
+ if (rc)
+ bus_clk_rate = DEFAULT_TWI_CLK_HZ;
+
+ at91_calc_twi_clock(dev, bus_clk_rate);
at91_init_twi_bus(dev);
snprintf(dev->adapter.name, sizeof(dev->adapter.name), "AT91");
--
1.7.10.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v3] i2c:at91: Add device tree property to set clock-frequency
2014-03-11 4:25 [PATCH v3] i2c:at91: Add device tree property to set clock-frequency Marek Roszko
@ 2014-03-11 10:51 ` Jean-Christophe PLAGNIOL-VILLARD
2014-03-11 11:09 ` Wolfram Sang
2014-03-12 7:26 ` Wolfram Sang
1 sibling, 1 reply; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2014-03-11 10:51 UTC (permalink / raw)
To: linux-arm-kernel
On Mar 11, 2014, at 12:25 PM, Marek Roszko <mark.roszko@gmail.com> wrote:
> This adds the ability to set "clock-frequency" in the device tree for the at91
> i2cbus following the naming of other i2c bus implementations. If the property
> is not set,the clock frequency will default to the previously used define
> of 100KHz.
>
> Signed-off-by: Marek Roszko <mark.roszko@gmail.com>
> ---
> v3:
> -changed bus_clk_rate to u32
> v2:
> -fixed return code usage and check to not compare agaisnt less than zero
>
> ---
> Documentation/devicetree/bindings/i2c/i2c-at91.txt | 2 ++
> drivers/i2c/busses/i2c-at91.c | 10 ++++++++--
> 2 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/i2c/i2c-at91.txt b/Documentation/devicetree/bindings/i2c/i2c-at91.txt
> index 4fade84..388f0a2 100644
> --- a/Documentation/devicetree/bindings/i2c/i2c-at91.txt
> +++ b/Documentation/devicetree/bindings/i2c/i2c-at91.txt
> @@ -12,6 +12,7 @@ Required properties :
> - clocks: phandles to input clocks.
>
> Optional properties:
> +- clock-frequency: Desired I2C bus frequency in Hz, otherwise defaults to 100000
> - Child nodes conforming to i2c bus binding
>
> Examples :
> @@ -23,6 +24,7 @@ i2c0: i2c at fff84000 {
> #address-cells = <1>;
> #size-cells = <0>;
> clocks = <&twi0_clk>;
> + clock-frequency = <400000>;
>
The bindings is wrong it?s not the bus frequency but the max frequency
as you describe the bus not the device frequency. And this is this one that limit the bus
Best Regards,
J.
> 24c512 at 50 {
> compatible = "24c512";
> diff --git a/drivers/i2c/busses/i2c-at91.c b/drivers/i2c/busses/i2c-at91.c
> index 843d012..334c851 100644
> --- a/drivers/i2c/busses/i2c-at91.c
> +++ b/drivers/i2c/busses/i2c-at91.c
> @@ -32,7 +32,7 @@
> #include <linux/slab.h>
> #include <linux/platform_data/dma-atmel.h>
>
> -#define TWI_CLK_HZ 100000 /* max 400 Kbits/s */
> +#define DEFAULT_TWI_CLK_HZ 100000 /* max 400 Kbits/s */
> #define AT91_I2C_TIMEOUT msecs_to_jiffies(100) /* transfer timeout */
> #define AT91_I2C_DMA_THRESHOLD 8 /* enable DMA if transfer size is bigger than this threshold */
>
> @@ -711,6 +711,7 @@ static int at91_twi_probe(struct platform_device *pdev)
> struct resource *mem;
> int rc;
> u32 phy_addr;
> + u32 bus_clk_rate;
>
> dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
> if (!dev)
> @@ -756,7 +757,12 @@ static int at91_twi_probe(struct platform_device *pdev)
> dev->use_dma = true;
> }
>
> - at91_calc_twi_clock(dev, TWI_CLK_HZ);
> + rc = of_property_read_u32(dev->dev->of_node, "clock-frequency",
> + &bus_clk_rate);
> + if (rc)
> + bus_clk_rate = DEFAULT_TWI_CLK_HZ;
> +
> + at91_calc_twi_clock(dev, bus_clk_rate);
> at91_init_twi_bus(dev);
>
> snprintf(dev->adapter.name, sizeof(dev->adapter.name), "AT91");
> --
> 1.7.10.4
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3] i2c:at91: Add device tree property to set clock-frequency
2014-03-11 10:51 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2014-03-11 11:09 ` Wolfram Sang
0 siblings, 0 replies; 4+ messages in thread
From: Wolfram Sang @ 2014-03-11 11:09 UTC (permalink / raw)
To: linux-arm-kernel
> > Examples :
> > @@ -23,6 +24,7 @@ i2c0: i2c at fff84000 {
> > #address-cells = <1>;
> > #size-cells = <0>;
> > clocks = <&twi0_clk>;
> > + clock-frequency = <400000>;
> >
> The bindings is wrong it?s not the bus frequency but the max frequency
>
> as you describe the bus not the device frequency. And this is this one that limit the bus
It is not wrong, it is since "the beginning" the way i2c bus speeds are
described. It is well known that, in fact, the devices should have a
speed limiting property, yet nobody has sent in patches so far.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140311/636d36cf/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3] i2c:at91: Add device tree property to set clock-frequency
2014-03-11 4:25 [PATCH v3] i2c:at91: Add device tree property to set clock-frequency Marek Roszko
2014-03-11 10:51 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2014-03-12 7:26 ` Wolfram Sang
1 sibling, 0 replies; 4+ messages in thread
From: Wolfram Sang @ 2014-03-12 7:26 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Mar 11, 2014 at 12:25:38AM -0400, Marek Roszko wrote:
> This adds the ability to set "clock-frequency" in the device tree for the at91
> i2cbus following the naming of other i2c bus implementations. If the property
> is not set,the clock frequency will default to the previously used define
> of 100KHz.
>
> Signed-off-by: Marek Roszko <mark.roszko@gmail.com>
Applied to for-next, thanks!
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140312/9ee92f0f/attachment-0001.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-03-12 7:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-11 4:25 [PATCH v3] i2c:at91: Add device tree property to set clock-frequency Marek Roszko
2014-03-11 10:51 ` Jean-Christophe PLAGNIOL-VILLARD
2014-03-11 11:09 ` Wolfram Sang
2014-03-12 7:26 ` Wolfram Sang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).