diff options
author | Andrew Isaacson <adi@broadcom.com> | 2005-10-20 02:56:38 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:32:47 -0400 |
commit | f137e463b50aadba91bd116f99c59ccb9c15a12f (patch) | |
tree | 41ce0ec670a6e5a78b4cdc246614277d9bc5e070 /arch/mips/sibyte/swarm | |
parent | 93ce2f524e96571711029884e6340c790a029b94 (diff) |
Add support for BCM1480 family of chips.
- Kconfig and Makefile changes
- arch/mips/sibyte/bcm1480/
- changes to sibyte common code to support 1480
Signed-Off-By: Andy Isaacson <adi@broadcom.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sibyte/swarm')
-rw-r--r-- | arch/mips/sibyte/swarm/setup.c | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/arch/mips/sibyte/swarm/setup.c b/arch/mips/sibyte/swarm/setup.c index f8963de1bbf4..b614ca0ddb69 100644 --- a/arch/mips/sibyte/swarm/setup.c +++ b/arch/mips/sibyte/swarm/setup.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000, 2001, 2002, 2003 Broadcom Corporation | 2 | * Copyright (C) 2000, 2001, 2002, 2003, 2004 Broadcom Corporation |
3 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) | 3 | * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org) |
4 | * | 4 | * |
5 | * This program is free software; you can redistribute it and/or | 5 | * This program is free software; you can redistribute it and/or |
@@ -39,11 +39,23 @@ | |||
39 | #include <asm/time.h> | 39 | #include <asm/time.h> |
40 | #include <asm/traps.h> | 40 | #include <asm/traps.h> |
41 | #include <asm/sibyte/sb1250.h> | 41 | #include <asm/sibyte/sb1250.h> |
42 | #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80) | ||
43 | #include <asm/sibyte/bcm1480_regs.h> | ||
44 | #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X) | ||
42 | #include <asm/sibyte/sb1250_regs.h> | 45 | #include <asm/sibyte/sb1250_regs.h> |
46 | #else | ||
47 | #error invalid SiByte board configuation | ||
48 | #endif | ||
43 | #include <asm/sibyte/sb1250_genbus.h> | 49 | #include <asm/sibyte/sb1250_genbus.h> |
44 | #include <asm/sibyte/board.h> | 50 | #include <asm/sibyte/board.h> |
45 | 51 | ||
52 | #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80) | ||
53 | extern void bcm1480_setup(void); | ||
54 | #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X) | ||
46 | extern void sb1250_setup(void); | 55 | extern void sb1250_setup(void); |
56 | #else | ||
57 | #error invalid SiByte board configuation | ||
58 | #endif | ||
47 | 59 | ||
48 | extern int xicor_probe(void); | 60 | extern int xicor_probe(void); |
49 | extern int xicor_set_time(unsigned long); | 61 | extern int xicor_set_time(unsigned long); |
@@ -66,7 +78,13 @@ void __init swarm_timer_setup(struct irqaction *irq) | |||
66 | */ | 78 | */ |
67 | 79 | ||
68 | /* We only need to setup the generic timer */ | 80 | /* We only need to setup the generic timer */ |
69 | sb1250_time_init(); | 81 | #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80) |
82 | bcm1480_time_init(); | ||
83 | #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X) | ||
84 | sb1250_time_init(); | ||
85 | #else | ||
86 | #error invalid SiByte board configuation | ||
87 | #endif | ||
70 | } | 88 | } |
71 | 89 | ||
72 | int swarm_be_handler(struct pt_regs *regs, int is_fixup) | 90 | int swarm_be_handler(struct pt_regs *regs, int is_fixup) |
@@ -81,7 +99,13 @@ int swarm_be_handler(struct pt_regs *regs, int is_fixup) | |||
81 | 99 | ||
82 | void __init plat_setup(void) | 100 | void __init plat_setup(void) |
83 | { | 101 | { |
102 | #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80) | ||
103 | bcm1480_setup(); | ||
104 | #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X) | ||
84 | sb1250_setup(); | 105 | sb1250_setup(); |
106 | #else | ||
107 | #error invalid SiByte board configuation | ||
108 | #endif | ||
85 | 109 | ||
86 | panic_timeout = 5; /* For debug. */ | 110 | panic_timeout = 5; /* For debug. */ |
87 | 111 | ||