Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284685
b: refs/heads/master
c: 3f72408
h: refs/heads/master
i:
  284683: 9f09176
v: v3
  • Loading branch information
Manuel Lauss authored and Ralf Baechle committed Dec 7, 2011
1 parent ba60c1e commit 6258514
Show file tree
Hide file tree
Showing 86 changed files with 293 additions and 2,432 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 39b741431af7f6f46b2e0e7f7f13ea2351fb4a5f
refs/heads/master: 3f724080a3e91d76ba6d5cacd3cf0a0cf16d121a
9 changes: 0 additions & 9 deletions trunk/arch/mips/alchemy/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 0 additions & 7 deletions trunk/arch/mips/alchemy/Platform
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
Expand Down
3 changes: 2 additions & 1 deletion trunk/arch/mips/alchemy/common/dbdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,8 @@ static int __init dbdma_setup(unsigned int irq, dbdev_tab_t *idtable)
dbdma_gptr->ddma_inten = 0xffff;
au_sync();

ret = request_irq(irq, dbdma_interrupt, 0, "dbdma", (void *)dbdma_gptr);
ret = request_irq(irq, dbdma_interrupt, IRQF_DISABLED, "dbdma",
(void *)dbdma_gptr);
if (ret)
printk(KERN_ERR "Cannot grab DBDMA interrupt!\n");
else {
Expand Down
11 changes: 0 additions & 11 deletions trunk/arch/mips/alchemy/common/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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();
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/alchemy/common/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ static struct clock_event_device au1x_rtcmatch2_clockdev = {

static struct irqaction au1x_rtcmatch2_irqaction = {
.handler = au1x_rtcmatch2_irq,
.flags = IRQF_TIMER,
.flags = IRQF_DISABLED | IRQF_TIMER,
.name = "timer",
.dev_id = &au1x_rtcmatch2_clockdev,
};
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/mips/alchemy/devboards/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/mips/alchemy/devboards/db1200/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,12 +276,12 @@ static int db1200_mmc_cd_setup(void *mmc_host, int en)

if (en) {
ret = request_irq(DB1200_SD0_INSERT_INT, db1200_mmc_cd,
0, "sd_insert", mmc_host);
IRQF_DISABLED, "sd_insert", mmc_host);
if (ret)
goto out;

ret = request_irq(DB1200_SD0_EJECT_INT, db1200_mmc_cd,
0, "sd_eject", mmc_host);
IRQF_DISABLED, "sd_eject", mmc_host);
if (ret) {
free_irq(DB1200_SD0_INSERT_INT, mmc_host);
goto out;
Expand Down
8 changes: 0 additions & 8 deletions trunk/arch/mips/alchemy/devboards/pb1000/Makefile

This file was deleted.

209 changes: 0 additions & 209 deletions trunk/arch/mips/alchemy/devboards/pb1000/board_setup.c

This file was deleted.

2 changes: 1 addition & 1 deletion trunk/arch/mips/alchemy/devboards/prom.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <asm/mach-au1x00/au1000.h>
#include <prom.h>

#if defined(CONFIG_MIPS_PB1000) || defined(CONFIG_MIPS_DB1000) || \
#if defined(CONFIG_MIPS_DB1000) || \
defined(CONFIG_MIPS_PB1100) || defined(CONFIG_MIPS_DB1100) || \
defined(CONFIG_MIPS_PB1500) || defined(CONFIG_MIPS_DB1500) || \
defined(CONFIG_MIPS_BOSPORUS) || defined(CONFIG_MIPS_MIRAGE)
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/ar7/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ static int __init ar7_register_uarts(void)

bus_clk = clk_get(NULL, "bus");
if (IS_ERR(bus_clk))
panic("unable to get bus clk");
panic("unable to get bus clk\n");

uart_port.type = PORT_AR7;
uart_port.uartclk = clk_get_rate(bus_clk) / 2;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/ar7/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void __init plat_mem_setup(void)

io_base = (unsigned long)ioremap(AR7_REGS_BASE, 0x10000);
if (!io_base)
panic("Can't remap IO base!");
panic("Can't remap IO base!\n");
set_io_port_base(io_base);

prom_meminit();
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/ath79/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ static void __init ath79_detect_sys_type(void)
break;

default:
panic("ath79: unknown SoC, id:0x%08x", id);
panic("ath79: unknown SoC, id:0x%08x\n", id);
}

sprintf(ath79_sys_type, "Atheros AR%s rev %u", chip, rev);
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/mips/bcm47xx/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ static void __init bcm47xx_register_ssb(void)
err = ssb_bus_ssbbus_register(&(bcm47xx_bus.ssb), SSB_ENUM_BASE,
bcm47xx_get_invariants);
if (err)
panic("Failed to initialize SSB bus (err %d)", err);
panic("Failed to initialize SSB bus (err %d)\n", err);

mcore = &bcm47xx_bus.ssb.mipscore;
if (nvram_getenv("kernel_args", buf, sizeof(buf)) >= 0) {
Expand All @@ -314,7 +314,7 @@ static void __init bcm47xx_register_bcma(void)

err = bcma_host_soc_register(&bcm47xx_bus.bcma);
if (err)
panic("Failed to initialize BCMA bus (err %d)", err);
panic("Failed to initialize BCMA bus (err %d)\n", err);
}
#endif

Expand Down
Loading

0 comments on commit 6258514

Please sign in to comment.