Message ID | 1489423399-3824-4-git-send-email-bgolaszewski@baylibre.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
* Bartosz Golaszewski <bgolaszewski@baylibre.com> [170313 09:45]: > Add the SATA controller node to the dm8168-evm device tree. > --- a/arch/arm/boot/dts/dm816x.dtsi > +++ b/arch/arm/boot/dts/dm816x.dtsi > @@ -293,6 +293,13 @@ > phy-handle = <&phy1>; > }; > > + sata: sata@4a140000 { > + compatible = "ti,dm816-ahci"; > + reg = <0x4a140000 0xffff>; > + interrupts = <16>; > + ti,hwmods = "sata"; > + }; The size should be 0x10000 instead of 0xffff, right? Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 3/13/2017 7:43 PM, Bartosz Golaszewski wrote: > Add the SATA controller node to the dm8168-evm device tree. > > Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> [...] > diff --git a/arch/arm/boot/dts/dm816x.dtsi b/arch/arm/boot/dts/dm816x.dtsi > index 276211e..6131081 100644 > --- a/arch/arm/boot/dts/dm816x.dtsi > +++ b/arch/arm/boot/dts/dm816x.dtsi > @@ -293,6 +293,13 @@ > phy-handle = <&phy1>; > }; > > + sata: sata@4a140000 { > + compatible = "ti,dm816-ahci"; > + reg = <0x4a140000 0xffff>; Again, 0x10000 for the size. [...] MBR, Sergei -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/boot/dts/dm8168-evm.dts b/arch/arm/boot/dts/dm8168-evm.dts index f13e214..547856e 100644 --- a/arch/arm/boot/dts/dm8168-evm.dts +++ b/arch/arm/boot/dts/dm8168-evm.dts @@ -179,3 +179,7 @@ pinctrl-0 = <&usb1_pins>; mentor,multipoint = <0>; }; + +&sata { + clocks = <&sysclk5_ck>, <&sata_refclk>; +}; diff --git a/arch/arm/boot/dts/dm816x.dtsi b/arch/arm/boot/dts/dm816x.dtsi index 276211e..6131081 100644 --- a/arch/arm/boot/dts/dm816x.dtsi +++ b/arch/arm/boot/dts/dm816x.dtsi @@ -293,6 +293,13 @@ phy-handle = <&phy1>; }; + sata: sata@4a140000 { + compatible = "ti,dm816-ahci"; + reg = <0x4a140000 0xffff>; + interrupts = <16>; + ti,hwmods = "sata"; + }; + mcspi1: spi@48030000 { compatible = "ti,omap4-mcspi"; reg = <0x48030000 0x1000>;
Add the SATA controller node to the dm8168-evm device tree. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> --- arch/arm/boot/dts/dm8168-evm.dts | 4 ++++ arch/arm/boot/dts/dm816x.dtsi | 7 +++++++ 2 files changed, 11 insertions(+)