diff options
author | Peter Robinson <pbrobinson@gmail.com> | 2013-10-24 20:29:40 +0100 |
---|---|---|
committer | Peter Robinson <pbrobinson@gmail.com> | 2013-10-24 20:29:40 +0100 |
commit | ac67590916a449d1e71a791f6a0c3688251ec074 (patch) | |
tree | 71219503d800e522d9474023b4dda5240d848c95 /arm-imx6-utilite.patch | |
parent | c872926b2fd10b8fa0b1446ded59f2b736197954 (diff) | |
download | kernel-ac67590916a449d1e71a791f6a0c3688251ec074.tar.gz kernel-ac67590916a449d1e71a791f6a0c3688251ec074.tar.xz kernel-ac67590916a449d1e71a791f6a0c3688251ec074.zip |
Add patch for i.MX6 Utilite device dtb, drop old exynos patch
Diffstat (limited to 'arm-imx6-utilite.patch')
-rw-r--r-- | arm-imx6-utilite.patch | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/arm-imx6-utilite.patch b/arm-imx6-utilite.patch new file mode 100644 index 000000000..8f942f014 --- /dev/null +++ b/arm-imx6-utilite.patch @@ -0,0 +1,84 @@ +Add initial support for cm-fx6 module. + +cm-fx6 is a module based on mx6q SoC with the following features: +- Up to 4GB of DDR3 +- 1 LCD/DVI output port +- 1 HDMI output port +- 2 LVDS LCD ports +- Gigabit Ethernet +- Analog Audio +- CAN +- SATA +- NAND +- PCIE + +This patch allows to boot up the module, configures the serial console, +the Ethernet adapter and the hearbeat led. + +Signed-off-by: Valentin Raevsky <valentin@xxxxxxxxxxxxxx> +Acked-by: Igor Grinberg <grinberg@xxxxxxxxxxxxxx> +--- + arch/arm/boot/dts/cm-fx6.dts | 51 ++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 51 insertions(+) + create mode 100644 arch/arm/boot/dts/cm-fx6.dts + +diff --git a/arch/arm/boot/dts/cm-fx6.dts b/arch/arm/boot/dts/cm-fx6.dts +new file mode 100644 +index 0000000..1080215 +--- /dev/null ++++ b/arch/arm/boot/dts/cm-fx6.dts +@@ -0,0 +1,51 @@ ++/* ++ * Copyright 2013 CompuLab Ltd. ++ * ++ * The code contained herein is licensed under the GNU General Public ++ * License. You may obtain a copy of the GNU General Public License ++ * Version 2 or later at the following locations: ++ * ++ * http://www.opensource.org/licenses/gpl-license.html ++ * http://www.gnu.org/copyleft/gpl.html ++ */ ++ ++/dts-v1/; ++#include "imx6q.dtsi" ++ ++/ { ++ model = "CompuLab CM-FX6"; ++ compatible = "compulab,cm-fx6", "fsl,imx6q"; ++ ++ memory { ++ reg = <0x10000000 0x80000000>; ++ }; ++ ++ leds { ++ compatible = "gpio-leds"; ++ ++ debug-led { ++ label = "Heartbeat"; ++ gpios = <&gpio2 31 0>; ++ linux,default-trigger = "heartbeat"; ++ }; ++ }; ++}; ++ ++&gpmi { ++ pinctrl-names = "default"; ++ pinctrl-0 = <&pinctrl_gpmi_nand_1>; ++ status = "okay"; ++}; ++ ++&fec { ++ pinctrl-names = "default"; ++ pinctrl-0 = <&pinctrl_enet_1>; ++ phy-mode = "rgmii"; ++ status = "okay"; ++}; ++ ++&uart4 { ++ pinctrl-names = "default"; ++ pinctrl-0 = <&pinctrl_uart4_1>; ++ status = "okay"; ++}; +-- +1.7.9.5 + |