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 9 #include <linux/export.h> 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 48 arcs_cmdline[0] = '\0'; 49 50 for (i = 0; i < argc; i++) { 51 char *p = (char *) KSEG1ADDR(argv[i]); 52 53 if (CPHYSADDR(p) && *p) { 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(); 73 74 #if defined(CONFIG_MIPS_MT_SMP) 75 if (register_vsmp_smp_ops()) 76 panic("failed to register_vsmp_smp_ops()"); 77 #endif 78 } 79