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

Commit 3f724080 authored by Manuel Lauss's avatar Manuel Lauss Committed by Ralf Baechle
Browse files

MIPS: Alchemy: remove PB1000 support



Noone seems to have test hardware or care anymore.  Drop PB1000 support
and along with it the old Alchemy PCMCIA socket driver.

Signed-off-by: default avatarManuel Lauss <manuel.lauss@googlemail.com>
To: linux-mips@linux-mips.org
Cc: netdev@vger.kernel.org
Cc: linux-pcmcia@lists.infradead.org
Patchwork: https://patchwork.linux-mips.org/patch/2881/


Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 5611cc45
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -78,15 +78,6 @@ config MIPS_MIRAGE
	select SYS_SUPPORTS_LITTLE_ENDIAN
	select SYS_HAS_EARLY_PRINTK

config MIPS_PB1000
	bool "Alchemy PB1000 board"
	select ALCHEMY_GPIOINT_AU1000
	select DMA_NONCOHERENT
	select HW_HAS_PCI
	select SWAP_IO_SPACE
	select SYS_SUPPORTS_LITTLE_ENDIAN
	select SYS_HAS_EARLY_PRINTK

config MIPS_PB1100
	bool "Alchemy PB1100 board"
	select ALCHEMY_GPIOINT_AU1000
+0 −7
Original line number Diff line number Diff line
@@ -4,13 +4,6 @@
platform-$(CONFIG_MIPS_ALCHEMY)	+= alchemy/common/


#
# AMD Alchemy Pb1000 eval board
#
platform-$(CONFIG_MIPS_PB1000)	+= alchemy/devboards/
cflags-$(CONFIG_MIPS_PB1000)	+= -I$(srctree)/arch/mips/include/asm/mach-pb1x00
load-$(CONFIG_MIPS_PB1000)	+= 0xffffffff80100000

#
# AMD Alchemy Pb1100 eval board
#
+0 −11
Original line number Diff line number Diff line
@@ -35,9 +35,6 @@
#include <asm/irq_cpu.h>
#include <asm/mipsregs.h>
#include <asm/mach-au1x00/au1000.h>
#ifdef CONFIG_MIPS_PB1000
#include <asm/mach-pb1x00/pb1000.h>
#endif

/* Interrupt Controller register offsets */
#define IC_CFG0RD	0x40
@@ -265,14 +262,6 @@ static void au1x_ic1_unmask(struct irq_data *d)

	__raw_writel(1 << bit, base + IC_MASKSET);
	__raw_writel(1 << bit, base + IC_WAKESET);

/* very hacky. does the pb1000 cpld auto-disable this int?
 * nowhere in the current kernel sources is it disabled.	--mlau
 */
#if defined(CONFIG_MIPS_PB1000)
	if (d->irq == AU1000_GPIO15_INT)
		__raw_writel(0x4000, (void __iomem *)PB1000_MDR); /* enable int */
#endif
	wmb();
}

+0 −1
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@

obj-y += prom.o bcsr.o platform.o
obj-$(CONFIG_PM)		+= pm.o
obj-$(CONFIG_MIPS_PB1000)	+= pb1000/
obj-$(CONFIG_MIPS_PB1100)	+= pb1100/
obj-$(CONFIG_MIPS_PB1200)	+= pb1200/
obj-$(CONFIG_MIPS_PB1500)	+= pb1500/
+0 −8
Original line number Diff line number Diff line
#
#  Copyright 2000, 2008 MontaVista Software Inc.
#  Author: MontaVista Software, Inc. <source@mvista.com>
#
# Makefile for the Alchemy Semiconductor Pb1000 board.
#

obj-y := board_setup.o
Loading