mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
a55f9b61d8
Several platforms will most likely use similar pinctrl configurations for SATA0 and SATA1, so we declare those common configurations in the Orion5x DT file. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Link: https://lkml.kernel.org/r/1398202002-28530-28-git-send-email-thomas.petazzoni@free-electrons.com Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
46 lines
1.0 KiB
Plaintext
46 lines
1.0 KiB
Plaintext
/*
|
|
* Copyright (C) 2014 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public
|
|
* License version 2. This program is licensed "as is" without any
|
|
* warranty of any kind, whether express or implied.
|
|
*/
|
|
|
|
#include "orion5x.dtsi"
|
|
|
|
/ {
|
|
compatible = "marvell,orion5x-88f5182", "marvell,orion5x";
|
|
|
|
soc {
|
|
compatible = "marvell,orion5x-88f5182-mbus", "simple-bus";
|
|
|
|
internal-regs {
|
|
pinctrl: pinctrl@10000 {
|
|
compatible = "marvell,88f5182-pinctrl";
|
|
reg = <0x10000 0x8>, <0x10050 0x4>;
|
|
|
|
pmx_sata0: pmx-sata0 {
|
|
marvell,pins = "mpp12", "mpp14";
|
|
marvell,function = "sata0";
|
|
};
|
|
|
|
pmx_sata1: pmx-sata1 {
|
|
marvell,pins = "mpp13", "mpp15";
|
|
marvell,function = "sata1";
|
|
};
|
|
};
|
|
|
|
core_clk: core-clocks@10030 {
|
|
compatible = "marvell,mv88f5182-core-clock";
|
|
reg = <0x10010 0x4>;
|
|
#clock-cells = <1>;
|
|
};
|
|
|
|
mbusc: mbus-controller@20000 {
|
|
compatible = "marvell,mbus-controller";
|
|
reg = <0x20000 0x100>, <0x1500 0x20>;
|
|
};
|
|
};
|
|
};
|
|
};
|