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

Commit 9918cda5 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Russell King
Browse files

[ARM] 4210/1: base for new machine type "NetSilicon NS9360"

parent ae0a846e
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -271,6 +271,14 @@ config ARCH_L7200
	  If you have any questions or comments about the Linux kernel port
	  to this board, send e-mail to <sjhill@cotw.com>.

config ARCH_NS9XXX
	bool "NetSilicon NS9xxx"
	help
	  Say Y here if you intend to run this kernel on a NetSilicon NS9xxx
	  System.

	  <http://www.digi.com/products/microprocessors/index.jsp>

config ARCH_PNX4008
	bool "Philips Nexperia PNX4008 Mobile"
	help
@@ -381,6 +389,8 @@ source "arch/arm/mach-at91rm9200/Kconfig"

source "arch/arm/mach-netx/Kconfig"

source "arch/arm/mach-ns9xxx/Kconfig"

# Definitions to make life easier
config ARCH_ACORN
	bool
+6 −4
Original line number Diff line number Diff line
@@ -128,6 +128,8 @@ endif
 machine-$(CONFIG_ARCH_EP93XX)	   := ep93xx
 machine-$(CONFIG_ARCH_PNX4008)	   := pnx4008
 machine-$(CONFIG_ARCH_NETX)	   := netx
 machine-$(CONFIG_ARCH_NS9XXX)	   := ns9xxx
 textofs-$(CONFIG_ARCH_NS9XXX)	   := 0x00108000

ifeq ($(CONFIG_ARCH_EBSA110),y)
# This is what happens if you forget the IOCS16 line.
+21 −0
Original line number Diff line number Diff line
if ARCH_NS9XXX

menu "NS9xxx Implementations"

config MACH_CC9P9360DEV
	bool "Connect Core 9P 9360 on an A9M9750 Devboard"
	select PROCESSOR_NS9360
	select BOARD_A9M9750DEV
	help
	  Say Y here if you are using the Digi Connect Core 9P 9360
	  on an A9M9750 Development Board.

config PROCESSOR_NS9360
	bool

config BOARD_A9M9750DEV
	bool

endmenu

endif
+5 −0
Original line number Diff line number Diff line
obj-y := irq.o time.o generic.o

obj-$(CONFIG_MACH_CC9P9360DEV) += mach-cc9p9360dev.o

obj-$(CONFIG_BOARD_A9M9750DEV) += board-a9m9750dev.o
+2 −0
Original line number Diff line number Diff line
zreladdr-y := 0x108000
params_phys-y := 0x100
Loading