Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7356420c authored by Fabio Estevam's avatar Fabio Estevam Committed by Shawn Guo
Browse files

ARM: imx: Remove mx508 support



Only mx508 based board is mach-mx50_rdp and it has been marked as BROKEN
for several releases.

mx508 currently lacks clock support.

In case someone needs to add mx508 support back, then the recommended approach
is to use device tree.

Signed-off-by: default avatarFabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
parent d0ab36c9
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -219,12 +219,12 @@ choice
		  Say Y here if you want kernel low-level debugging support
		  on i.MX51.

	config DEBUG_IMX50_IMX53_UART
		bool "i.MX50 and i.MX53 Debug UART"
		depends on SOC_IMX50 || SOC_IMX53
	config DEBUG_IMX53_UART
		bool "i.MX53 Debug UART"
		depends on SOC_IMX53
		help
		  Say Y here if you want kernel low-level debugging support
		  on i.MX50 or i.MX53.
		  on i.MX53.

	config DEBUG_IMX6Q_UART
		bool "i.MX6Q Debug UART"
@@ -497,7 +497,7 @@ config DEBUG_LL_INCLUDE
				 DEBUG_IMX21_IMX27_UART || \
				 DEBUG_IMX31_IMX35_UART || \
				 DEBUG_IMX51_UART || \
				 DEBUG_IMX50_IMX53_UART ||\
				 DEBUG_IMX53_UART ||\
				 DEBUG_IMX6Q_UART
	default "debug/highbank.S" if DEBUG_HIGHBANK_UART
	default "debug/mvebu.S" if DEBUG_MVEBU_UART
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
#define UART_PADDR	0x43f90000
#elif defined (CONFIG_DEBUG_IMX51_UART)
#define UART_PADDR	0x73fbc000
#elif defined (CONFIG_DEBUG_IMX50_IMX53_UART)
#elif defined (CONFIG_DEBUG_IMX53_UART)
#define UART_PADDR	0x53fbc000
#elif defined (CONFIG_DEBUG_IMX6Q_UART)
#define UART_PADDR	IMX6Q_DEBUG_UART_BASE
+0 −22
Original line number Diff line number Diff line
@@ -95,9 +95,6 @@ config MACH_MX27
config ARCH_MX5
	bool

config ARCH_MX50
	bool

config ARCH_MX51
	bool

@@ -164,11 +161,6 @@ config SOC_IMX5
	select CPU_V7
	select MXC_TZIC

config SOC_IMX50
	bool
	select ARCH_MX50
	select SOC_IMX5

config	SOC_IMX51
	bool
	select ARCH_MX5
@@ -738,20 +730,6 @@ endif

if ARCH_MULTI_V7

comment "i.MX5 platforms:"

config MACH_MX50_RDP
	bool "Support MX50 reference design platform"
	depends on BROKEN
	select IMX_HAVE_PLATFORM_IMX_I2C
	select IMX_HAVE_PLATFORM_IMX_UART
	select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX
	select IMX_HAVE_PLATFORM_SPI_IMX
	select SOC_IMX50
	help
	  Include support for MX50 reference design platform (RDP) board. This
	  includes specific configurations for the board and its peripherals.

comment "i.MX51 machines:"

config MACH_IMX51_DT
+0 −1
Original line number Diff line number Diff line
@@ -104,7 +104,6 @@ endif
obj-$(CONFIG_MACH_MX51_BABBAGE) += mach-mx51_babbage.o
obj-$(CONFIG_MACH_EUKREA_CPUIMX51SD) += mach-cpuimx51sd.o
obj-$(CONFIG_MACH_EUKREA_MBIMXSD51_BASEBOARD) += eukrea_mbimxsd51-baseboard.o
obj-$(CONFIG_MACH_MX50_RDP) += mach-mx50_rdp.o

obj-$(CONFIG_MACH_IMX51_DT) += imx51-dt.o
obj-$(CONFIG_SOC_IMX53) += mach-imx53.o
+0 −4
Original line number Diff line number Diff line
@@ -22,10 +22,6 @@ zreladdr-$(CONFIG_SOC_IMX35) += 0x80008000
params_phys-$(CONFIG_SOC_IMX35)	:= 0x80000100
initrd_phys-$(CONFIG_SOC_IMX35)	:= 0x80800000

zreladdr-$(CONFIG_SOC_IMX50)	+= 0x70008000
params_phys-$(CONFIG_SOC_IMX50)	:= 0x70000100
initrd_phys-$(CONFIG_SOC_IMX50)	:= 0x70800000

zreladdr-$(CONFIG_SOC_IMX51)	+= 0x90008000
params_phys-$(CONFIG_SOC_IMX51)	:= 0x90000100
initrd_phys-$(CONFIG_SOC_IMX51)	:= 0x90800000
Loading