John Crispin | 171bb2f | 2011-03-30 09:27:47 +0200 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify it |
| 3 | * under the terms of the GNU General Public License version 2 as published |
| 4 | * by the Free Software Foundation. |
| 5 | * |
| 6 | * Copyright (C) 2010 John Crispin <blogic@openwrt.org> |
| 7 | */ |
| 8 | |
John Crispin | 4af92e7 | 2011-11-10 21:33:07 +0100 | [diff] [blame] | 9 | #include <linux/export.h> |
John Crispin | 171bb2f | 2011-03-30 09:27:47 +0200 | [diff] [blame] | 10 | #include <linux/clk.h> |
| 11 | #include <asm/bootinfo.h> |
| 12 | #include <asm/time.h> |
| 13 | |
| 14 | #include <lantiq.h> |
| 15 | |
| 16 | #include "prom.h" |
| 17 | #include "clk.h" |
| 18 | |
| 19 | static struct ltq_soc_info soc_info; |
| 20 | |
| 21 | unsigned int ltq_get_cpu_ver(void) |
| 22 | { |
| 23 | return soc_info.rev; |
| 24 | } |
| 25 | EXPORT_SYMBOL(ltq_get_cpu_ver); |
| 26 | |
| 27 | unsigned int ltq_get_soc_type(void) |
| 28 | { |
| 29 | return soc_info.type; |
| 30 | } |
| 31 | EXPORT_SYMBOL(ltq_get_soc_type); |
| 32 | |
| 33 | const char *get_system_type(void) |
| 34 | { |
| 35 | return soc_info.sys_type; |
| 36 | } |
| 37 | |
| 38 | void prom_free_prom_memory(void) |
| 39 | { |
| 40 | } |
| 41 | |
| 42 | static void __init prom_init_cmdline(void) |
| 43 | { |
| 44 | int argc = fw_arg0; |
| 45 | char **argv = (char **) KSEG1ADDR(fw_arg1); |
| 46 | int i; |
| 47 | |
Thomas Langer | 730fa03 | 2012-05-02 12:27:39 +0200 | [diff] [blame^] | 48 | arcs_cmdline[0] = '\0'; |
John Crispin | 171bb2f | 2011-03-30 09:27:47 +0200 | [diff] [blame] | 49 | |
Thomas Langer | 730fa03 | 2012-05-02 12:27:39 +0200 | [diff] [blame^] | 50 | for (i = 0; i < argc; i++) { |
| 51 | char *p = (char *) KSEG1ADDR(argv[i]); |
| 52 | |
| 53 | if (CPHYSADDR(p) && *p) { |
John Crispin | 171bb2f | 2011-03-30 09:27:47 +0200 | [diff] [blame] | 54 | strlcat(arcs_cmdline, p, sizeof(arcs_cmdline)); |
| 55 | strlcat(arcs_cmdline, " ", sizeof(arcs_cmdline)); |
| 56 | } |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | void __init prom_init(void) |
| 61 | { |
| 62 | struct clk *clk; |
| 63 | |
| 64 | ltq_soc_detect(&soc_info); |
| 65 | clk_init(); |
| 66 | clk = clk_get(0, "cpu"); |
| 67 | snprintf(soc_info.sys_type, LTQ_SYS_TYPE_LEN - 1, "%s rev1.%d", |
| 68 | soc_info.name, soc_info.rev); |
| 69 | clk_put(clk); |
| 70 | soc_info.sys_type[LTQ_SYS_TYPE_LEN - 1] = '\0'; |
| 71 | pr_info("SoC: %s\n", soc_info.sys_type); |
| 72 | prom_init_cmdline(); |
John Crispin | a8d096e | 2012-04-30 11:33:05 +0200 | [diff] [blame] | 73 | |
| 74 | #if defined(CONFIG_MIPS_MT_SMP) |
| 75 | if (register_vsmp_smp_ops()) |
| 76 | panic("failed to register_vsmp_smp_ops()"); |
| 77 | #endif |
John Crispin | 171bb2f | 2011-03-30 09:27:47 +0200 | [diff] [blame] | 78 | } |