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

Commit 64cd04d0 authored by Manuel Lauss's avatar Manuel Lauss Committed by Ralf Baechle
Browse files

MIPS: Alchemy: Basic support for the DB1300 board.

parent 809f36c6
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -49,6 +49,14 @@ config MIPS_DB1200
	select SYS_SUPPORTS_LITTLE_ENDIAN
	select SYS_HAS_EARLY_PRINTK

config MIPS_DB1300
	bool "NetLogic DB1300 board"
	select ALCHEMY_GPIOINT_AU1300
	select DMA_COHERENT
	select MIPS_DISABLE_OBSOLETE_IDE
	select SYS_SUPPORTS_LITTLE_ENDIAN
	select SYS_HAS_EARLY_PRINTK

config MIPS_DB1500
	bool "Alchemy DB1500 board"
	select ALCHEMY_GPIOINT_AU1000
+7 −0
Original line number Diff line number Diff line
@@ -67,6 +67,13 @@ platform-$(CONFIG_MIPS_DB1200) += alchemy/devboards/
cflags-$(CONFIG_MIPS_DB1200)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
load-$(CONFIG_MIPS_DB1200)	+= 0xffffffff80100000

#
# NetLogic DBAu1300 development platform
#
platform-$(CONFIG_MIPS_DB1300)	+= alchemy/devboards/
cflags-$(CONFIG_MIPS_DB1300)	+= -I$(srctree)/arch/mips/include/asm/mach-db1x00
load-$(CONFIG_MIPS_DB1300)	+= 0xffffffff80100000

#
# 4G-Systems eval board
#
+1 −0
Original line number Diff line number Diff line
@@ -11,5 +11,6 @@ obj-$(CONFIG_MIPS_PB1550) += pb1550/
obj-$(CONFIG_MIPS_DB1000)	+= db1x00/
obj-$(CONFIG_MIPS_DB1100)	+= db1x00/
obj-$(CONFIG_MIPS_DB1200)	+= db1200/
obj-$(CONFIG_MIPS_DB1300)	+= db1300.o
obj-$(CONFIG_MIPS_DB1500)	+= db1x00/
obj-$(CONFIG_MIPS_DB1550)	+= db1x00/
+787 −0

File added.

Preview size limit exceeded, changes collapsed.

+4 −0
Original line number Diff line number Diff line
@@ -61,5 +61,9 @@ void __init prom_init(void)

void prom_putchar(unsigned char c)
{
#ifdef CONFIG_MIPS_DB1300
	alchemy_uart_putchar(AU1300_UART2_PHYS_ADDR, c);
#else
	alchemy_uart_putchar(AU1000_UART0_PHYS_ADDR, c);
#endif
}
Loading