diff options
| -rw-r--r-- | arch/mips/au1000/common/prom.c | 23 | ||||
| -rw-r--r-- | arch/mips/au1000/common/setup.c | 5 | ||||
| -rw-r--r-- | arch/mips/au1000/db1x00/init.c | 10 | ||||
| -rw-r--r-- | arch/mips/au1000/mtx-1/init.c | 6 | ||||
| -rw-r--r-- | arch/mips/au1000/pb1000/init.c | 10 | ||||
| -rw-r--r-- | arch/mips/au1000/pb1100/init.c | 10 | ||||
| -rw-r--r-- | arch/mips/au1000/pb1200/board_setup.c | 6 | ||||
| -rw-r--r-- | arch/mips/au1000/pb1200/init.c | 10 | ||||
| -rw-r--r-- | arch/mips/au1000/pb1500/init.c | 10 | ||||
| -rw-r--r-- | arch/mips/au1000/pb1550/init.c | 10 | ||||
| -rw-r--r-- | arch/mips/au1000/xxs1500/init.c | 10 | ||||
| -rw-r--r-- | drivers/net/au1000_eth.c | 10 | ||||
| -rw-r--r-- | include/asm-mips/mach-au1x00/prom.h | 13 |
13 files changed, 65 insertions, 68 deletions
diff --git a/arch/mips/au1000/common/prom.c b/arch/mips/au1000/common/prom.c index 5d6ddf1ed7a6..90d70695aa60 100644 --- a/arch/mips/au1000/common/prom.c +++ b/arch/mips/au1000/common/prom.c | |||
| @@ -33,7 +33,6 @@ | |||
| 33 | * with this program; if not, write to the Free Software Foundation, Inc., | 33 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 34 | * 675 Mass Ave, Cambridge, MA 02139, USA. | 34 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 35 | */ | 35 | */ |
| 36 | |||
| 37 | #include <linux/module.h> | 36 | #include <linux/module.h> |
| 38 | #include <linux/kernel.h> | 37 | #include <linux/kernel.h> |
| 39 | #include <linux/init.h> | 38 | #include <linux/init.h> |
| @@ -41,18 +40,16 @@ | |||
| 41 | 40 | ||
| 42 | #include <asm/bootinfo.h> | 41 | #include <asm/bootinfo.h> |
| 43 | 42 | ||
| 44 | /* #define DEBUG_CMDLINE */ | 43 | int prom_argc; |
| 45 | 44 | char **prom_argv; | |
| 46 | extern int prom_argc; | 45 | char **prom_envp; |
| 47 | extern char **prom_argv, **prom_envp; | ||
| 48 | |||
| 49 | 46 | ||
| 50 | char * __init_or_module prom_getcmdline(void) | 47 | char * __init_or_module prom_getcmdline(void) |
| 51 | { | 48 | { |
| 52 | return &(arcs_cmdline[0]); | 49 | return &(arcs_cmdline[0]); |
| 53 | } | 50 | } |
| 54 | 51 | ||
| 55 | void prom_init_cmdline(void) | 52 | void prom_init_cmdline(void) |
| 56 | { | 53 | { |
| 57 | char *cp; | 54 | char *cp; |
| 58 | int actr; | 55 | int actr; |
| @@ -61,7 +58,7 @@ void prom_init_cmdline(void) | |||
| 61 | 58 | ||
| 62 | cp = &(arcs_cmdline[0]); | 59 | cp = &(arcs_cmdline[0]); |
| 63 | while(actr < prom_argc) { | 60 | while(actr < prom_argc) { |
| 64 | strcpy(cp, prom_argv[actr]); | 61 | strcpy(cp, prom_argv[actr]); |
| 65 | cp += strlen(prom_argv[actr]); | 62 | cp += strlen(prom_argv[actr]); |
| 66 | *cp++ = ' '; | 63 | *cp++ = ' '; |
| 67 | actr++; | 64 | actr++; |
| @@ -70,10 +67,8 @@ void prom_init_cmdline(void) | |||
| 70 | --cp; | 67 | --cp; |
| 71 | if (prom_argc > 1) | 68 | if (prom_argc > 1) |
| 72 | *cp = '\0'; | 69 | *cp = '\0'; |
| 73 | |||
| 74 | } | 70 | } |
| 75 | 71 | ||
| 76 | |||
| 77 | char *prom_getenv(char *envname) | 72 | char *prom_getenv(char *envname) |
| 78 | { | 73 | { |
| 79 | /* | 74 | /* |
| @@ -95,17 +90,19 @@ char *prom_getenv(char *envname) | |||
| 95 | } | 90 | } |
| 96 | env++; | 91 | env++; |
| 97 | } | 92 | } |
| 93 | |||
| 98 | return NULL; | 94 | return NULL; |
| 99 | } | 95 | } |
| 100 | 96 | ||
| 101 | static inline unsigned char str2hexnum(unsigned char c) | 97 | static inline unsigned char str2hexnum(unsigned char c) |
| 102 | { | 98 | { |
| 103 | if(c >= '0' && c <= '9') | 99 | if (c >= '0' && c <= '9') |
| 104 | return c - '0'; | 100 | return c - '0'; |
| 105 | if(c >= 'a' && c <= 'f') | 101 | if (c >= 'a' && c <= 'f') |
| 106 | return c - 'a' + 10; | 102 | return c - 'a' + 10; |
| 107 | if(c >= 'A' && c <= 'F') | 103 | if (c >= 'A' && c <= 'F') |
| 108 | return c - 'A' + 10; | 104 | return c - 'A' + 10; |
| 105 | |||
| 109 | return 0; /* foo */ | 106 | return 0; /* foo */ |
| 110 | } | 107 | } |
| 111 | 108 | ||
diff --git a/arch/mips/au1000/common/setup.c b/arch/mips/au1000/common/setup.c index b212c0726125..a90d425d4651 100644 --- a/arch/mips/au1000/common/setup.c +++ b/arch/mips/au1000/common/setup.c | |||
| @@ -40,10 +40,11 @@ | |||
| 40 | #include <asm/mipsregs.h> | 40 | #include <asm/mipsregs.h> |
| 41 | #include <asm/reboot.h> | 41 | #include <asm/reboot.h> |
| 42 | #include <asm/pgtable.h> | 42 | #include <asm/pgtable.h> |
| 43 | #include <asm/mach-au1x00/au1000.h> | ||
| 44 | #include <asm/time.h> | 43 | #include <asm/time.h> |
| 45 | 44 | ||
| 46 | extern char * prom_getcmdline(void); | 45 | #include <au1000.h> |
| 46 | #include <prom.h> | ||
| 47 | |||
| 47 | extern void __init board_setup(void); | 48 | extern void __init board_setup(void); |
| 48 | extern void au1000_restart(char *); | 49 | extern void au1000_restart(char *); |
| 49 | extern void au1000_halt(void); | 50 | extern void au1000_halt(void); |
diff --git a/arch/mips/au1000/db1x00/init.c b/arch/mips/au1000/db1x00/init.c index 4d7bcfc8cf73..43298fd9459c 100644 --- a/arch/mips/au1000/db1x00/init.c +++ b/arch/mips/au1000/db1x00/init.c | |||
| @@ -31,15 +31,13 @@ | |||
| 31 | #include <linux/mm.h> | 31 | #include <linux/mm.h> |
| 32 | #include <linux/sched.h> | 32 | #include <linux/sched.h> |
| 33 | #include <linux/bootmem.h> | 33 | #include <linux/bootmem.h> |
| 34 | #include <asm/addrspace.h> | ||
| 35 | #include <asm/bootinfo.h> | ||
| 36 | #include <linux/string.h> | 34 | #include <linux/string.h> |
| 37 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
| 38 | 36 | ||
| 39 | int prom_argc; | 37 | #include <asm/addrspace.h> |
| 40 | char **prom_argv, **prom_envp; | 38 | #include <asm/bootinfo.h> |
| 41 | extern void __init prom_init_cmdline(void); | 39 | |
| 42 | extern char *prom_getenv(char *envname); | 40 | #include <prom.h> |
| 43 | 41 | ||
| 44 | const char *get_system_type(void) | 42 | const char *get_system_type(void) |
| 45 | { | 43 | { |
diff --git a/arch/mips/au1000/mtx-1/init.c b/arch/mips/au1000/mtx-1/init.c index 2aa7b2ed6a8c..cdeae3212a2d 100644 --- a/arch/mips/au1000/mtx-1/init.c +++ b/arch/mips/au1000/mtx-1/init.c | |||
| @@ -34,13 +34,11 @@ | |||
| 34 | #include <linux/init.h> | 34 | #include <linux/init.h> |
| 35 | #include <linux/mm.h> | 35 | #include <linux/mm.h> |
| 36 | #include <linux/bootmem.h> | 36 | #include <linux/bootmem.h> |
| 37 | |||
| 37 | #include <asm/addrspace.h> | 38 | #include <asm/addrspace.h> |
| 38 | #include <asm/bootinfo.h> | 39 | #include <asm/bootinfo.h> |
| 39 | 40 | ||
| 40 | int prom_argc; | 41 | #include <prom.h> |
| 41 | char **prom_argv, **prom_envp; | ||
| 42 | extern void __init prom_init_cmdline(void); | ||
| 43 | extern char *prom_getenv(char *envname); | ||
| 44 | 42 | ||
| 45 | const char *get_system_type(void) | 43 | const char *get_system_type(void) |
| 46 | { | 44 | { |
diff --git a/arch/mips/au1000/pb1000/init.c b/arch/mips/au1000/pb1000/init.c index 4535f7208e18..ddccaf6997d0 100644 --- a/arch/mips/au1000/pb1000/init.c +++ b/arch/mips/au1000/pb1000/init.c | |||
| @@ -30,15 +30,13 @@ | |||
| 30 | #include <linux/mm.h> | 30 | #include <linux/mm.h> |
| 31 | #include <linux/sched.h> | 31 | #include <linux/sched.h> |
| 32 | #include <linux/bootmem.h> | 32 | #include <linux/bootmem.h> |
| 33 | #include <asm/addrspace.h> | ||
| 34 | #include <asm/bootinfo.h> | ||
| 35 | #include <linux/string.h> | 33 | #include <linux/string.h> |
| 36 | #include <linux/kernel.h> | 34 | #include <linux/kernel.h> |
| 37 | 35 | ||
| 38 | int prom_argc; | 36 | #include <asm/addrspace.h> |
| 39 | char **prom_argv, **prom_envp; | 37 | #include <asm/bootinfo.h> |
| 40 | extern void __init prom_init_cmdline(void); | 38 | |
| 41 | extern char *prom_getenv(char *envname); | 39 | #include <prom.h> |
| 42 | 40 | ||
| 43 | const char *get_system_type(void) | 41 | const char *get_system_type(void) |
| 44 | { | 42 | { |
diff --git a/arch/mips/au1000/pb1100/init.c b/arch/mips/au1000/pb1100/init.c index 7ba6852de7cd..c93fd39b4aba 100644 --- a/arch/mips/au1000/pb1100/init.c +++ b/arch/mips/au1000/pb1100/init.c | |||
| @@ -31,15 +31,13 @@ | |||
| 31 | #include <linux/mm.h> | 31 | #include <linux/mm.h> |
| 32 | #include <linux/sched.h> | 32 | #include <linux/sched.h> |
| 33 | #include <linux/bootmem.h> | 33 | #include <linux/bootmem.h> |
| 34 | #include <asm/addrspace.h> | ||
| 35 | #include <asm/bootinfo.h> | ||
| 36 | #include <linux/string.h> | 34 | #include <linux/string.h> |
| 37 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
| 38 | 36 | ||
| 39 | int prom_argc; | 37 | #include <asm/addrspace.h> |
| 40 | char **prom_argv, **prom_envp; | 38 | #include <asm/bootinfo.h> |
| 41 | extern void __init prom_init_cmdline(void); | 39 | |
| 42 | extern char *prom_getenv(char *envname); | 40 | #include <prom.h> |
| 43 | 41 | ||
| 44 | const char *get_system_type(void) | 42 | const char *get_system_type(void) |
| 45 | { | 43 | { |
diff --git a/arch/mips/au1000/pb1200/board_setup.c b/arch/mips/au1000/pb1200/board_setup.c index 2122515f79d7..5dbc9868f598 100644 --- a/arch/mips/au1000/pb1200/board_setup.c +++ b/arch/mips/au1000/pb1200/board_setup.c | |||
| @@ -41,8 +41,10 @@ | |||
| 41 | #include <asm/mipsregs.h> | 41 | #include <asm/mipsregs.h> |
| 42 | #include <asm/reboot.h> | 42 | #include <asm/reboot.h> |
| 43 | #include <asm/pgtable.h> | 43 | #include <asm/pgtable.h> |
| 44 | #include <asm/mach-au1x00/au1000.h> | 44 | |
| 45 | #include <asm/mach-au1x00/au1xxx_dbdma.h> | 45 | #include <au1000.h> |
| 46 | #include <au1xxx_dbdma.h> | ||
| 47 | #include <prom.h> | ||
| 46 | 48 | ||
| 47 | #ifdef CONFIG_MIPS_PB1200 | 49 | #ifdef CONFIG_MIPS_PB1200 |
| 48 | #include <asm/mach-pb1x00/pb1200.h> | 50 | #include <asm/mach-pb1x00/pb1200.h> |
diff --git a/arch/mips/au1000/pb1200/init.c b/arch/mips/au1000/pb1200/init.c index 5a70029d5388..c251570749ee 100644 --- a/arch/mips/au1000/pb1200/init.c +++ b/arch/mips/au1000/pb1200/init.c | |||
| @@ -31,15 +31,13 @@ | |||
| 31 | #include <linux/mm.h> | 31 | #include <linux/mm.h> |
| 32 | #include <linux/sched.h> | 32 | #include <linux/sched.h> |
| 33 | #include <linux/bootmem.h> | 33 | #include <linux/bootmem.h> |
| 34 | #include <asm/addrspace.h> | ||
| 35 | #include <asm/bootinfo.h> | ||
| 36 | #include <linux/string.h> | 34 | #include <linux/string.h> |
| 37 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
| 38 | 36 | ||
| 39 | int prom_argc; | 37 | #include <asm/addrspace.h> |
| 40 | char **prom_argv, **prom_envp; | 38 | #include <asm/bootinfo.h> |
| 41 | extern void __init prom_init_cmdline(void); | 39 | |
| 42 | extern char *prom_getenv(char *envname); | 40 | #include <prom.h> |
| 43 | 41 | ||
| 44 | const char *get_system_type(void) | 42 | const char *get_system_type(void) |
| 45 | { | 43 | { |
diff --git a/arch/mips/au1000/pb1500/init.c b/arch/mips/au1000/pb1500/init.c index e58a9d6c5021..507d4b204161 100644 --- a/arch/mips/au1000/pb1500/init.c +++ b/arch/mips/au1000/pb1500/init.c | |||
| @@ -31,15 +31,13 @@ | |||
| 31 | #include <linux/mm.h> | 31 | #include <linux/mm.h> |
| 32 | #include <linux/sched.h> | 32 | #include <linux/sched.h> |
| 33 | #include <linux/bootmem.h> | 33 | #include <linux/bootmem.h> |
| 34 | #include <asm/addrspace.h> | ||
| 35 | #include <asm/bootinfo.h> | ||
| 36 | #include <linux/string.h> | 34 | #include <linux/string.h> |
| 37 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
| 38 | 36 | ||
| 39 | int prom_argc; | 37 | #include <asm/addrspace.h> |
| 40 | char **prom_argv, **prom_envp; | 38 | #include <asm/bootinfo.h> |
| 41 | extern void __init prom_init_cmdline(void); | 39 | |
| 42 | extern char *prom_getenv(char *envname); | 40 | #include <prom.h> |
| 43 | 41 | ||
| 44 | const char *get_system_type(void) | 42 | const char *get_system_type(void) |
| 45 | { | 43 | { |
diff --git a/arch/mips/au1000/pb1550/init.c b/arch/mips/au1000/pb1550/init.c index fad53bf5aad1..b03eee601e36 100644 --- a/arch/mips/au1000/pb1550/init.c +++ b/arch/mips/au1000/pb1550/init.c | |||
| @@ -31,15 +31,13 @@ | |||
| 31 | #include <linux/mm.h> | 31 | #include <linux/mm.h> |
| 32 | #include <linux/sched.h> | 32 | #include <linux/sched.h> |
| 33 | #include <linux/bootmem.h> | 33 | #include <linux/bootmem.h> |
| 34 | #include <asm/addrspace.h> | ||
| 35 | #include <asm/bootinfo.h> | ||
| 36 | #include <linux/string.h> | 34 | #include <linux/string.h> |
| 37 | #include <linux/kernel.h> | 35 | #include <linux/kernel.h> |
| 38 | 36 | ||
| 39 | int prom_argc; | 37 | #include <asm/addrspace.h> |
| 40 | char **prom_argv, **prom_envp; | 38 | #include <asm/bootinfo.h> |
| 41 | extern void __init prom_init_cmdline(void); | 39 | |
| 42 | extern char *prom_getenv(char *envname); | 40 | #include <prom.h> |
| 43 | 41 | ||
| 44 | const char *get_system_type(void) | 42 | const char *get_system_type(void) |
| 45 | { | 43 | { |
diff --git a/arch/mips/au1000/xxs1500/init.c b/arch/mips/au1000/xxs1500/init.c index 9f839c36f69e..6532939f377a 100644 --- a/arch/mips/au1000/xxs1500/init.c +++ b/arch/mips/au1000/xxs1500/init.c | |||
| @@ -30,15 +30,13 @@ | |||
| 30 | #include <linux/mm.h> | 30 | #include <linux/mm.h> |
| 31 | #include <linux/sched.h> | 31 | #include <linux/sched.h> |
| 32 | #include <linux/bootmem.h> | 32 | #include <linux/bootmem.h> |
| 33 | #include <asm/addrspace.h> | ||
| 34 | #include <asm/bootinfo.h> | ||
| 35 | #include <linux/string.h> | 33 | #include <linux/string.h> |
| 36 | #include <linux/kernel.h> | 34 | #include <linux/kernel.h> |
| 37 | 35 | ||
| 38 | int prom_argc; | 36 | #include <asm/addrspace.h> |
| 39 | char **prom_argv, **prom_envp; | 37 | #include <asm/bootinfo.h> |
| 40 | extern void __init prom_init_cmdline(void); | 38 | |
| 41 | extern char *prom_getenv(char *envname); | 39 | #include <prom.h> |
| 42 | 40 | ||
| 43 | const char *get_system_type(void) | 41 | const char *get_system_type(void) |
| 44 | { | 42 | { |
diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c index 297e2d08d267..185f98e3964c 100644 --- a/drivers/net/au1000_eth.c +++ b/drivers/net/au1000_eth.c | |||
| @@ -54,13 +54,16 @@ | |||
| 54 | #include <linux/delay.h> | 54 | #include <linux/delay.h> |
| 55 | #include <linux/crc32.h> | 55 | #include <linux/crc32.h> |
| 56 | #include <linux/phy.h> | 56 | #include <linux/phy.h> |
| 57 | |||
| 58 | #include <asm/cpu.h> | ||
| 57 | #include <asm/mipsregs.h> | 59 | #include <asm/mipsregs.h> |
| 58 | #include <asm/irq.h> | 60 | #include <asm/irq.h> |
| 59 | #include <asm/io.h> | 61 | #include <asm/io.h> |
| 60 | #include <asm/processor.h> | 62 | #include <asm/processor.h> |
| 61 | 63 | ||
| 62 | #include <asm/mach-au1x00/au1000.h> | 64 | #include <au1000.h> |
| 63 | #include <asm/cpu.h> | 65 | #include <prom.h> |
| 66 | |||
| 64 | #include "au1000_eth.h" | 67 | #include "au1000_eth.h" |
| 65 | 68 | ||
| 66 | #ifdef AU1000_ETH_DEBUG | 69 | #ifdef AU1000_ETH_DEBUG |
| @@ -96,9 +99,6 @@ static void mdio_write(struct net_device *, int, int, u16); | |||
| 96 | static void au1000_adjust_link(struct net_device *); | 99 | static void au1000_adjust_link(struct net_device *); |
| 97 | static void enable_mac(struct net_device *, int); | 100 | static void enable_mac(struct net_device *, int); |
| 98 | 101 | ||
| 99 | // externs | ||
| 100 | extern int prom_get_ethernet_addr(char *ethernet_addr); | ||
| 101 | |||
| 102 | /* | 102 | /* |
| 103 | * Theory of operation | 103 | * Theory of operation |
| 104 | * | 104 | * |
diff --git a/include/asm-mips/mach-au1x00/prom.h b/include/asm-mips/mach-au1x00/prom.h new file mode 100644 index 000000000000..e38715577c51 --- /dev/null +++ b/include/asm-mips/mach-au1x00/prom.h | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #ifndef __AU1X00_PROM_H | ||
| 2 | #define __AU1X00_PROM_H | ||
| 3 | |||
| 4 | extern int prom_argc; | ||
| 5 | extern char **prom_argv; | ||
| 6 | extern char **prom_envp; | ||
| 7 | |||
| 8 | extern void prom_init_cmdline(void); | ||
| 9 | extern char *prom_getcmdline(void); | ||
| 10 | extern char *prom_getenv(char *envname); | ||
| 11 | extern int prom_get_ethernet_addr(char *ethernet_addr); | ||
| 12 | |||
| 13 | #endif | ||
