Skip to content

Commit

Permalink
patch-mxc-add-ARCH_MX1
Browse files Browse the repository at this point in the history
Adds MX1 architecture to platform MXC. It will supersede mach-imx
and let it die.

Signed-off-by: Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
Signed-off-by: Darius Augulis <augulis.darius@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
  • Loading branch information
Paulius Zaleckas authored and Sascha Hauer committed Dec 16, 2008
1 parent d133d6a commit cfca8b5
Show file tree
Hide file tree
Showing 16 changed files with 1,264 additions and 5 deletions.
1 change: 1 addition & 0 deletions arch/arm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ endif
plat-$(CONFIG_ARCH_MXC) := mxc
machine-$(CONFIG_ARCH_MX2) := mx2
machine-$(CONFIG_ARCH_MX3) := mx3
machine-$(CONFIG_ARCH_MX1) := mx1
machine-$(CONFIG_ARCH_ORION5X) := orion5x
plat-$(CONFIG_PLAT_ORION) := orion
machine-$(CONFIG_ARCH_MSM) := msm
Expand Down
14 changes: 14 additions & 0 deletions arch/arm/mach-mx1/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
if ARCH_MX1

comment "MX1 Platforms"

config MACH_MXLADS
bool

config ARCH_MX1ADS
bool "MX1ADS platform"
select MACH_MXLADS
help
Say Y here if you are using Motorola MX1ADS/MXLADS boards

endif
10 changes: 10 additions & 0 deletions arch/arm/mach-mx1/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#
# Makefile for the linux kernel.
#

# Object file lists.

obj-y += generic.o clock.o devices.o

# Specific board support
obj-$(CONFIG_ARCH_MX1ADS) += mx1ads.o
4 changes: 4 additions & 0 deletions arch/arm/mach-mx1/Makefile.boot
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
zreladdr-y := 0x08008000
params_phys-y := 0x08000100
initrd_phys-y := 0x08800000

Loading

0 comments on commit cfca8b5

Please sign in to comment.