[ added linux-ide ML to Cc: ]

On Monday, December 30, 2013 06:37:03 PM Yuvaraj Kumar C D wrote:
> This patch adds dt entry for ahci sata controller and its
> corresponding phy controller.phy node has been added w.r.t
> new generic phy framework.
> 
> Signed-off-by: Yuvaraj Kumar C D <yuvaraj...@samsung.com>
> ---
> 
> Changes since V3:
>       1.Moved the binding info to the /bindings/phy/
> 
> Changes since V2:
>       1.Used syscon interface to PMU handling.
>       2.Changed "sata-phy-i2c" to "exynos-sataphy-i2c".
> 
> Changes since V1:
>       1.Minor changes to node name convention.
>       2.Updated binding document.
> 
>  .../devicetree/bindings/ata/exynos-sata-phy.txt    |   14 -------
>  .../devicetree/bindings/ata/exynos-sata.txt        |   25 +++++++-----
>  .../devicetree/bindings/phy/samsung-phy.txt        |   40 
> ++++++++++++++++++++
>  arch/arm/boot/dts/exynos5250-arndale.dts           |   11 ++++++
>  arch/arm/boot/dts/exynos5250-smdk5250.dts          |    8 +---
>  arch/arm/boot/dts/exynos5250.dtsi                  |   16 ++++++--
>  6 files changed, 81 insertions(+), 33 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/ata/exynos-sata-phy.txt
> 
> diff --git a/Documentation/devicetree/bindings/ata/exynos-sata-phy.txt 
> b/Documentation/devicetree/bindings/ata/exynos-sata-phy.txt
> deleted file mode 100644
> index 37824fa..0000000
> --- a/Documentation/devicetree/bindings/ata/exynos-sata-phy.txt
> +++ /dev/null
> @@ -1,14 +0,0 @@
> -* Samsung SATA PHY Controller
> -
> -SATA PHY nodes are defined to describe on-chip SATA Physical layer 
> controllers.
> -Each SATA PHY controller should have its own node.
> -
> -Required properties:
> -- compatible        : compatible list, contains "samsung,exynos5-sata-phy"
> -- reg               : <registers mapping>
> -
> -Example:
> -        sata@ffe07000 {
> -                compatible = "samsung,exynos5-sata-phy";
> -                reg = <0xffe07000 0x1000>;
> -        };
> diff --git a/Documentation/devicetree/bindings/ata/exynos-sata.txt 
> b/Documentation/devicetree/bindings/ata/exynos-sata.txt
> index 0849f10..b2adb1f 100644
> --- a/Documentation/devicetree/bindings/ata/exynos-sata.txt
> +++ b/Documentation/devicetree/bindings/ata/exynos-sata.txt
> @@ -4,14 +4,21 @@ SATA nodes are defined to describe on-chip Serial ATA 
> controllers.
>  Each SATA controller should have its own node.
>  
>  Required properties:
> -- compatible        : compatible list, contains "samsung,exynos5-sata"
> -- interrupts        : <interrupt mapping for SATA IRQ>
> -- reg               : <registers mapping>
> -- samsung,sata-freq : <frequency in MHz>
> +- compatible         : compatible list, contains "samsung,exynos5-sata"
> +- interrupts         : <interrupt mapping for SATA IRQ>
> +- reg                        : <registers mapping>
> +- samsung,sata-freq  : <frequency in MHz>
> +- phys                       : as mentioned in phy-bindings.txt
> +- phy-names          : as mentioned in phy-bindings.txt
>  
>  Example:
> -        sata@ffe08000 {
> -                compatible = "samsung,exynos5-sata";
> -                reg = <0xffe08000 0x1000>;
> -                interrupts = <115>;
> -        };
> +     sata@122f0000 {
> +             compatible = "snps,dwc-ahci";
> +             samsung,sata-freq = <66>;
> +             reg = <0x122f0000 0x1ff>;
> +             interrupts = <0 115 0>;
> +             clocks = <&clock 277>, <&clock 143>;
> +             clock-names = "sata", "sclk_sata";
> +             phys = <&sata_phy>;
> +             phy-names = "sata-phy";
> +     };
> diff --git a/Documentation/devicetree/bindings/phy/samsung-phy.txt 
> b/Documentation/devicetree/bindings/phy/samsung-phy.txt
> index c0fccaa..876fe9b 100644
> --- a/Documentation/devicetree/bindings/phy/samsung-phy.txt
> +++ b/Documentation/devicetree/bindings/phy/samsung-phy.txt
> @@ -20,3 +20,43 @@ Required properties:
>  - compatible : should be "samsung,exynos5250-dp-video-phy";
>  - reg : offset and length of the Display Port PHY register set;
>  - #phy-cells : from the generic PHY bindings, must be 0;
> +
> +Samsung SATA PHY Controller
> +---------------------------
> +
> +SATA PHY nodes are defined to describe on-chip SATA Physical layer 
> controllers.
> +Each SATA PHY controller should have its own node.
> +
> +Required properties:
> +- compatible        : compatible list, contains "samsung,exynos5250-sata-phy"
> +- reg : offset and length of the SATA PHY register set;
> +- #phy-cells : from the generic phy bindings;
> +
> +Example:
> +     sata_phy: sata-phy@12170000 {
> +             compatible = "samsung,exynos5250-sata-phy";
> +             reg = <0x12170000 0x1ff>;
> +             clocks = <&clock 287>;
> +             clock-names = "sata_phyctrl";
> +             #phy-cells = <0>;

This example needs to be updated as the code below evolved to be just:

samsung,syscon-phandle = <&pmu_syscon>;

> +             #address-cells = <1>;
> +             #size-cells = <1>;
> +             ranges;
> +             sataphy-pmu {
> +                     reg = <0x10040724 0x4>;
> +             };

Otherwise the patch looks good.

> +     };
> +
> +Device-Tree bindings for sataphy i2c client driver
> +--------------------------------------------------
> +
> +Required properties:
> +compatible: Should be "samsung,exynos-sataphy-i2c"
> +- reg: I2C address of the sataphy i2c device.
> +
> +Example:
> +
> +     sata-phy@38 {
> +             compatible = "samsung,exynos-sataphy-i2c";
> +             reg = <0x38>;
> +     };
> diff --git a/arch/arm/boot/dts/exynos5250-arndale.dts 
> b/arch/arm/boot/dts/exynos5250-arndale.dts
> index b42e658..25fe5a3 100644
> --- a/arch/arm/boot/dts/exynos5250-arndale.dts
> +++ b/arch/arm/boot/dts/exynos5250-arndale.dts
> @@ -370,6 +370,17 @@
>               };
>       };
>  
> +     i2c@121D0000 {
> +             samsung,i2c-sda-delay = <100>;
> +             samsung,i2c-max-bus-freq = <40000>;
> +             samsung,i2c-slave-addr = <0x38>;
> +
> +             sata-phy@38 {
> +                     compatible = "samsung,exynos-sataphy-i2c";
> +                     reg = <0x38>;
> +             };
> +     };
> +
>       mmc_0: mmc@12200000 {
>               status = "okay";
>               num-slots = <1>;
> diff --git a/arch/arm/boot/dts/exynos5250-smdk5250.dts 
> b/arch/arm/boot/dts/exynos5250-smdk5250.dts
> index 3e69837..9e449e6 100644
> --- a/arch/arm/boot/dts/exynos5250-smdk5250.dts
> +++ b/arch/arm/boot/dts/exynos5250-smdk5250.dts
> @@ -96,16 +96,12 @@
>               samsung,i2c-slave-addr = <0x38>;
>               status = "okay";
>  
> -             sata-phy {
> -                     compatible = "samsung,sata-phy";
> +             sata-phy@38 {
> +                     compatible = "samsung,exynos-sataphy-i2c";
>                       reg = <0x38>;
>               };
>       };
>  
> -     sata@122F0000 {
> -             samsung,sata-freq = <66>;
> -     };
> -
>       i2c@12C80000 {
>               samsung,i2c-sda-delay = <100>;
>               samsung,i2c-max-bus-freq = <66000>;
> diff --git a/arch/arm/boot/dts/exynos5250.dtsi 
> b/arch/arm/boot/dts/exynos5250.dtsi
> index dbb4a47..626a7d1 100644
> --- a/arch/arm/boot/dts/exynos5250.dtsi
> +++ b/arch/arm/boot/dts/exynos5250.dtsi
> @@ -46,6 +46,7 @@
>               i2c6 = &i2c_6;
>               i2c7 = &i2c_7;
>               i2c8 = &i2c_8;
> +             i2c9 = &i2c_9;
>               pinctrl0 = &pinctrl_0;
>               pinctrl1 = &pinctrl_1;
>               pinctrl2 = &pinctrl_2;
> @@ -231,16 +232,23 @@
>       };
>  
>       sata@122F0000 {
> -             compatible = "samsung,exynos5-sata-ahci";
> +             compatible = "snps,dwc-ahci";
> +             samsung,sata-freq = <66>;
>               reg = <0x122F0000 0x1ff>;
>               interrupts = <0 115 0>;
>               clocks = <&clock 277>, <&clock 143>;
>               clock-names = "sata", "sclk_sata";
> +             phys = <&sata_phy>;
> +             phy-names = "sata-phy";
>       };
>  
> -     sata-phy@12170000 {
> -             compatible = "samsung,exynos5-sata-phy";
> +     sata_phy: sata-phy@12170000 {
> +             compatible = "samsung,exynos5250-sata-phy";
>               reg = <0x12170000 0x1ff>;
> +             clocks = <&clock 287>;
> +             clock-names = "sata_phyctrl";
> +             #phy-cells = <0>;
> +             samsung,syscon-phandle = <&pmu_syscon>;
>       };
>  
>       i2c_0: i2c@12C60000 {
> @@ -358,7 +366,7 @@
>               status = "disabled";
>       };
>  
> -     i2c@121D0000 {
> +     i2c_9: i2c@121D0000 {
>                  compatible = "samsung,exynos5-sata-phy-i2c";
>                  reg = <0x121D0000 0x100>;
>                  #address-cells = <1>;

Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to