Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add wandboard (quad) support #29

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
5906fa8
added wandboard dt support and rfkill driver based on wandboard-org/l…
CrawX Sep 13, 2015
b9d8f6f
Added missing pads to imx6qdl-wandboard.dtsi Added the missing imx6 &…
alfonsotames Jun 9, 2015
7cda48d
Fix hdmi disconnect problems
CrawX Oct 15, 2014
b83aa02
imx6qdl-wandboard.dtsi: Bump HDMI's default bit depth to 32 bits
alfonsotames Jun 22, 2015
a078082
imx6qdl-wandboard.dtsi: fix uart3 pinctrl settings
madisongh Sep 10, 2015
e9362bb
Merge branch '3.14-1.0.x-mx6-sr' into wandboard
CrawX Sep 20, 2015
4a28cb6
dts: wandboard: add revc1 wifi reset pin
CrawX Oct 13, 2015
bc708dd
mach: imx: improve wand-rfkill driver to properly reset bcm43xx chips…
CrawX Oct 13, 2015
63f7f31
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 13, 2015
de5206c
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 17, 2015
0755f3a
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 18, 2015
8323ffa
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 20, 2015
a4a910f
Revert "crypto: ensure algif_hash does not pass a zero-sized state"
CrawX Oct 20, 2015
4c7f714
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 20, 2015
8eb6126
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 20, 2015
ceb25d2
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 21, 2015
69278e5
Merge remote-tracking branch 'origin/3.14-1.0.x-mx6-sr' into wandboard
CrawX Oct 21, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions arch/arm/boot/dts/imx6dl-wandboard.dts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,36 @@
*
*/
/dts-v1/;

#include <dt-bindings/interrupt-controller/irq.h>
#include "imx6dl.dtsi"
#include "imx6qdl-wandboard.dtsi"

/ {
model = "Wandboard i.MX6 Dual Lite Board";
compatible = "wand,imx6dl-wandboard", "fsl,imx6dl";
};

&mxcfb1 {
status = "okay";
};

#if 0
&mxcfb2 {
status = "okay";
};

memory {
reg = <0x10000000 0x40000000>;
};
&mxcfb3 {
status = "okay";
};

&mxcfb4 {
status = "okay";
};
#endif

&epdc {
status = "disabled";
};


38 changes: 30 additions & 8 deletions arch/arm/boot/dts/imx6q-wandboard.dts
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,46 @@
* Copyright 2013 Freescale Semiconductor, Inc.
*
* Author: Fabio Estevam <fabio.estevam@freescale.com>
* Copyright 2014 John Weber
* Copyright 2013 Boundary Devices
* Copyright 2011 Linaro Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
* 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 <dt-bindings/interrupt-controller/irq.h>
#include "imx6q.dtsi"
#include "imx6qdl-wandboard.dtsi"

/ {
model = "Wandboard i.MX6 Quad Board";
compatible = "wand,imx6q-wandboard", "fsl,imx6q";
model = "Wandboard Quad based on Freescale i.MX6 Quad";
compatible = "fsl,imx6q-wandboard", "fsl,imx6q";
};

memory {
reg = <0x10000000 0x80000000>;
};
&mxcfb1 {
status = "okay";
};

#if 0
&mxcfb2 {
status = "okay";
};

&mxcfb3 {
status = "okay";
};

&mxcfb4 {
status = "okay";
};
#endif

&sata {
status = "okay";
Expand Down
Loading