diff options
author | Julien Boibessot <julien.boibessot@armadeus.com> | 2012-10-18 11:50:26 +0200 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-10-19 16:45:20 +0800 |
commit | a957fdca4feb7fbc51f9c7c6a152a86f35ca7751 (patch) | |
tree | 02fe1029ff58c3af71eb3e1b84f464e2ed47cc83 /arch/arm/mach-mxs | |
parent | 8eec4b3117405e5561d2c65c9222cf3334c0ca3a (diff) | |
download | blackbird-obmc-linux-a957fdca4feb7fbc51f9c7c6a152a86f35ca7751.tar.gz blackbird-obmc-linux-a957fdca4feb7fbc51f9c7c6a152a86f35ca7751.zip |
ARM: mxs: Add support for the Armadeus Systems APF28 module
The APF28 is a small SOM built around an i.MX28 processor with 128MBytes DDR2,
256MBytes NAND Flash and an Ethernet PHY.
Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com>
Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@armadeus.com>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-mxs')
-rw-r--r-- | arch/arm/mach-mxs/mach-mxs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-mxs/mach-mxs.c b/arch/arm/mach-mxs/mach-mxs.c index b8c452a1b0ae..9cfb25cb0e90 100644 --- a/arch/arm/mach-mxs/mach-mxs.c +++ b/arch/arm/mach-mxs/mach-mxs.c @@ -367,6 +367,11 @@ static void __init cfa10049_init(void) update_fec_mac_prop(OUI_CRYSTALFONTZ); } +static void __init apf28_init(void) +{ + enable_clk_enet_out(); +} + static void __init mxs_machine_init(void) { if (of_machine_is_compatible("fsl,imx28-evk")) @@ -379,6 +384,8 @@ static void __init mxs_machine_init(void) apx4devkit_init(); else if (of_machine_is_compatible("crystalfontz,cfa10049")) cfa10049_init(); + else if (of_machine_is_compatible("armadeus,imx28-apf28")) + apf28_init(); of_platform_populate(NULL, of_default_bus_match_table, mxs_auxdata_lookup, NULL); |