-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch adds basic devicetree support for i.MX31 based SoCs. Only the UART and interrupts bindings are added. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
- Loading branch information
Denis 'GNUtoo' Carikli
authored and
Sascha Hauer
committed
Jul 10, 2012
1 parent
5349f2a
commit d2a37b3
Showing
6 changed files
with
180 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* | ||
* Copyright 2012 Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | ||
* | ||
* 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 | ||
*/ | ||
|
||
/include/ "skeleton.dtsi" | ||
|
||
/ { | ||
aliases { | ||
serial0 = &uart1; | ||
serial1 = &uart2; | ||
serial2 = &uart3; | ||
serial3 = &uart4; | ||
serial4 = &uart5; | ||
}; | ||
|
||
avic: avic-interrupt-controller@60000000 { | ||
compatible = "fsl,imx31-avic", "fsl,avic"; | ||
interrupt-controller; | ||
#interrupt-cells = <1>; | ||
reg = <0x60000000 0x100000>; | ||
}; | ||
|
||
soc { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
compatible = "simple-bus"; | ||
interrupt-parent = <&avic>; | ||
ranges; | ||
|
||
aips@43f00000 { /* AIPS1 */ | ||
compatible = "fsl,aips-bus", "simple-bus"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
reg = <0x43f00000 0x100000>; | ||
ranges; | ||
|
||
uart1: serial@43f90000 { | ||
compatible = "fsl,imx31-uart", "fsl,imx21-uart"; | ||
reg = <0x43f90000 0x4000>; | ||
interrupts = <45>; | ||
status = "disabled"; | ||
}; | ||
|
||
uart2: serial@43f94000 { | ||
compatible = "fsl,imx31-uart", "fsl,imx21-uart"; | ||
reg = <0x43f94000 0x4000>; | ||
interrupts = <32>; | ||
status = "disabled"; | ||
}; | ||
|
||
uart4: serial@43fb0000 { | ||
compatible = "fsl,imx31-uart", "fsl,imx21-uart"; | ||
reg = <0x43fb0000 0x4000>; | ||
interrupts = <46>; | ||
status = "disabled"; | ||
}; | ||
|
||
uart5: serial@43fb4000 { | ||
compatible = "fsl,imx31-uart", "fsl,imx21-uart"; | ||
reg = <0x43fb4000 0x4000>; | ||
interrupts = <47>; | ||
status = "disabled"; | ||
}; | ||
}; | ||
|
||
spba@50000000 { | ||
compatible = "fsl,spba-bus", "simple-bus"; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
reg = <0x50000000 0x100000>; | ||
ranges; | ||
|
||
uart3: serial@5000c000 { | ||
compatible = "fsl,imx31-uart", "fsl,imx21-uart"; | ||
reg = <0x5000c000 0x4000>; | ||
interrupts = <18>; | ||
status = "disabled"; | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright 2012 Sascha Hauer, Pengutronix | ||
* | ||
* 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 | ||
*/ | ||
|
||
#include <linux/irq.h> | ||
#include <linux/of_irq.h> | ||
#include <linux/of_platform.h> | ||
#include <asm/mach/arch.h> | ||
#include <asm/mach/time.h> | ||
#include <mach/common.h> | ||
#include <mach/mx31.h> | ||
|
||
static const struct of_dev_auxdata imx31_auxdata_lookup[] __initconst = { | ||
OF_DEV_AUXDATA("fsl,imx31-uart", MX31_UART1_BASE_ADDR, | ||
"imx21-uart.0", NULL), | ||
OF_DEV_AUXDATA("fsl,imx31-uart", MX31_UART2_BASE_ADDR, | ||
"imx21-uart.1", NULL), | ||
OF_DEV_AUXDATA("fsl,imx31-uart", MX31_UART3_BASE_ADDR, | ||
"imx21-uart.2", NULL), | ||
OF_DEV_AUXDATA("fsl,imx31-uart", MX31_UART4_BASE_ADDR, | ||
"imx21-uart.3", NULL), | ||
OF_DEV_AUXDATA("fsl,imx31-uart", MX31_UART5_BASE_ADDR, | ||
"imx21-uart.4", NULL), | ||
{ /* sentinel */ } | ||
}; | ||
|
||
static void __init imx31_dt_init(void) | ||
{ | ||
of_platform_populate(NULL, of_default_bus_match_table, | ||
imx31_auxdata_lookup, NULL); | ||
} | ||
|
||
static void __init imx31_timer_init(void) | ||
{ | ||
mx31_clocks_init_dt(); | ||
} | ||
|
||
static struct sys_timer imx31_timer = { | ||
.init = imx31_timer_init, | ||
}; | ||
|
||
static const char *imx31_dt_board_compat[] __initdata = { | ||
"fsl,imx31", | ||
NULL | ||
}; | ||
|
||
DT_MACHINE_START(IMX31_DT, "Freescale i.MX31 (Device Tree Support)") | ||
.map_io = mx31_map_io, | ||
.init_early = imx31_init_early, | ||
.init_irq = mx31_init_irq, | ||
.handle_irq = imx31_handle_irq, | ||
.timer = &imx31_timer, | ||
.init_machine = imx31_dt_init, | ||
.dt_compat = imx31_dt_board_compat, | ||
.restart = mxc_restart, | ||
MACHINE_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters