blob: 413ed53a4ae197522789d1583100354d8f42125e [file] [log] [blame]
John Crispin171bb2f2011-03-30 09:27:47 +02001/*
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 Crispin4af92e72011-11-10 21:33:07 +01009#include <linux/export.h>
John Crispin171bb2f2011-03-30 09:27:47 +020010#include <linux/clk.h>
John Crispina0392222012-04-13 20:56:13 +020011#include <linux/of_platform.h>
John Crispin171bb2f2011-03-30 09:27:47 +020012#include <asm/bootinfo.h>
13#include <asm/time.h>
14
15#include <lantiq.h>
16
17#include "prom.h"
18#include "clk.h"
19
John Crispina0392222012-04-13 20:56:13 +020020/* access to the ebu needs to be locked between different drivers */
21DEFINE_SPINLOCK(ebu_lock);
22EXPORT_SYMBOL_GPL(ebu_lock);
John Crispin171bb2f2011-03-30 09:27:47 +020023
John Crispina0392222012-04-13 20:56:13 +020024/*
25 * this struct is filled by the soc specific detection code and holds
26 * information about the specific soc type, revision and name
27 */
28static struct ltq_soc_info soc_info;
John Crispin171bb2f2011-03-30 09:27:47 +020029
30unsigned int ltq_get_soc_type(void)
31{
32 return soc_info.type;
33}
34EXPORT_SYMBOL(ltq_get_soc_type);
35
36const char *get_system_type(void)
37{
38 return soc_info.sys_type;
39}
40
41void prom_free_prom_memory(void)
42{
43}
44
45static void __init prom_init_cmdline(void)
46{
47 int argc = fw_arg0;
48 char **argv = (char **) KSEG1ADDR(fw_arg1);
49 int i;
50
Thomas Langer730fa032012-05-02 12:27:39 +020051 arcs_cmdline[0] = '\0';
John Crispin171bb2f2011-03-30 09:27:47 +020052
Thomas Langer730fa032012-05-02 12:27:39 +020053 for (i = 0; i < argc; i++) {
54 char *p = (char *) KSEG1ADDR(argv[i]);
55
56 if (CPHYSADDR(p) && *p) {
John Crispin171bb2f2011-03-30 09:27:47 +020057 strlcat(arcs_cmdline, p, sizeof(arcs_cmdline));
58 strlcat(arcs_cmdline, " ", sizeof(arcs_cmdline));
59 }
60 }
61}
62
John Crispina0392222012-04-13 20:56:13 +020063void __init plat_mem_setup(void)
64{
65 ioport_resource.start = IOPORT_RESOURCE_START;
66 ioport_resource.end = IOPORT_RESOURCE_END;
67 iomem_resource.start = IOMEM_RESOURCE_START;
68 iomem_resource.end = IOMEM_RESOURCE_END;
69
70 set_io_port_base((unsigned long) KSEG1);
71
72 /*
73 * Load the builtin devicetree. This causes the chosen node to be
74 * parsed resulting in our memory appearing
75 */
76 __dt_setup_arch(&__dtb_start);
77}
78
John Crispin171bb2f2011-03-30 09:27:47 +020079void __init prom_init(void)
80{
John Crispina0392222012-04-13 20:56:13 +020081 /* call the soc specific detetcion code and get it to fill soc_info */
John Crispin171bb2f2011-03-30 09:27:47 +020082 ltq_soc_detect(&soc_info);
John Crispina0392222012-04-13 20:56:13 +020083 snprintf(soc_info.sys_type, LTQ_SYS_TYPE_LEN - 1, "%s rev %s",
84 soc_info.name, soc_info.rev_type);
John Crispin171bb2f2011-03-30 09:27:47 +020085 soc_info.sys_type[LTQ_SYS_TYPE_LEN - 1] = '\0';
86 pr_info("SoC: %s\n", soc_info.sys_type);
87 prom_init_cmdline();
John Crispina8d096e2012-04-30 11:33:05 +020088
89#if defined(CONFIG_MIPS_MT_SMP)
90 if (register_vsmp_smp_ops())
91 panic("failed to register_vsmp_smp_ops()");
92#endif
John Crispin171bb2f2011-03-30 09:27:47 +020093}
John Crispina0392222012-04-13 20:56:13 +020094
95int __init plat_of_setup(void)
96{
97 static struct of_device_id of_ids[3];
98
99 if (!of_have_populated_dt())
100 panic("device tree not present");
101
102 strncpy(of_ids[0].compatible, soc_info.compatible,
103 sizeof(of_ids[0].compatible));
104 strncpy(of_ids[1].compatible, "simple-bus",
105 sizeof(of_ids[1].compatible));
106 return of_platform_bus_probe(NULL, of_ids, NULL);
107}
108
109arch_initcall(plat_of_setup);