blob: 0c543eae49bfd059b3b6900062deede511c80bbc [file] [log] [blame]
Wu Zhangjinbd92aa02009-07-02 23:22:36 +08001/*
2 * Based on Ocelot Linux port, which is
3 * Copyright 2001 MontaVista Software Inc.
4 * Author: jsun@mvista.com or jsun@junsun.net
5 *
6 * Copyright 2003 ICT CAS
7 * Author: Michael Guo <guoyi@ict.ac.cn>
8 *
9 * Copyright (C) 2007 Lemote Inc. & Insititute of Computing Technology
10 * Author: Fuxin Zhang, zhangfx@lemote.com
11 *
Wu Zhangjinf7a904d2010-01-04 17:16:51 +080012 * Copyright (C) 2009 Lemote Inc.
13 * Author: Wu Zhangjin, wuzhangjin@gmail.com
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080014 *
Ralf Baechle70342282013-01-22 12:59:30 +010015 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080017 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
19 */
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080020#include <linux/module.h>
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080021#include <asm/bootinfo.h>
Wu Zhangjin5e983ff2009-07-02 23:23:03 +080022#include <loongson.h>
Huacai Chen1a08f152014-03-21 18:44:02 +080023#include <boot_param.h>
Wu Zhangjin5e983ff2009-07-02 23:23:03 +080024
Huacai Chen1a08f152014-03-21 18:44:02 +080025u32 cpu_clock_freq;
Wu Zhangjinf8ede0f2009-11-17 01:32:59 +080026EXPORT_SYMBOL(cpu_clock_freq);
Huacai Chen1a08f152014-03-21 18:44:02 +080027struct efi_memory_map_loongson *loongson_memmap;
28struct loongson_system_configuration loongson_sysconf;
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080029
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080030#define parse_even_earlier(res, option, p) \
31do { \
Ralf Baechlec87444a2011-03-29 12:32:55 +020032 unsigned int tmp __maybe_unused; \
33 \
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080034 if (strncmp(option, (char *)p, strlen(option)) == 0) \
Huacai Chen1a08f152014-03-21 18:44:02 +080035 tmp = kstrtou32((char *)p + strlen(option"="), 10, &res); \
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080036} while (0)
37
38void __init prom_init_env(void)
39{
Wu Zhangjineb11df42010-01-04 17:16:48 +080040 /* pmon passes arguments in 32bit pointers */
Wu Zhangjineb11df42010-01-04 17:16:48 +080041 unsigned int processor_id;
Huacai Chen1a08f152014-03-21 18:44:02 +080042
43#ifndef CONFIG_LEFI_FIRMWARE_INTERFACE
44 int *_prom_envp;
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080045 long l;
46
47 /* firmware arguments are initialized in head.S */
48 _prom_envp = (int *)fw_arg2;
49
50 l = (long)*_prom_envp;
51 while (l != 0) {
Wu Zhangjinbd92aa02009-07-02 23:22:36 +080052 parse_even_earlier(cpu_clock_freq, "cpuclock", l);
53 parse_even_earlier(memsize, "memsize", l);
54 parse_even_earlier(highmemsize, "highmemsize", l);
55 _prom_envp++;
56 l = (long)*_prom_envp;
57 }
58 if (memsize == 0)
59 memsize = 256;
Huacai Chen1a08f152014-03-21 18:44:02 +080060 pr_info("memsize=%u, highmemsize=%u\n", memsize, highmemsize);
61#else
62 struct boot_params *boot_p;
63 struct loongson_params *loongson_p;
64 struct efi_cpuinfo_loongson *ecpu;
65 struct irq_source_routing_table *eirq_source;
66
67 /* firmware arguments are initialized in head.S */
68 boot_p = (struct boot_params *)fw_arg2;
69 loongson_p = &(boot_p->efi.smbios.lp);
70
71 ecpu = (struct efi_cpuinfo_loongson *)
72 ((u64)loongson_p + loongson_p->cpu_offset);
73 eirq_source = (struct irq_source_routing_table *)
74 ((u64)loongson_p + loongson_p->irq_offset);
75 loongson_memmap = (struct efi_memory_map_loongson *)
76 ((u64)loongson_p + loongson_p->memory_offset);
77
78 cpu_clock_freq = ecpu->cpu_clock_freq;
79 loongson_sysconf.cputype = ecpu->cputype;
80 loongson_sysconf.nr_cpus = ecpu->nr_cpus;
81 if (ecpu->nr_cpus > NR_CPUS || ecpu->nr_cpus == 0)
82 loongson_sysconf.nr_cpus = NR_CPUS;
83
84 loongson_sysconf.pci_mem_start_addr = eirq_source->pci_mem_start_addr;
85 loongson_sysconf.pci_mem_end_addr = eirq_source->pci_mem_end_addr;
86 loongson_sysconf.pci_io_base = eirq_source->pci_io_start_addr;
87 loongson_sysconf.dma_mask_bits = eirq_source->dma_mask_bits;
88 if (loongson_sysconf.dma_mask_bits < 32 ||
89 loongson_sysconf.dma_mask_bits > 64)
90 loongson_sysconf.dma_mask_bits = 32;
91
92 loongson_sysconf.restart_addr = boot_p->reset_system.ResetWarm;
93 loongson_sysconf.poweroff_addr = boot_p->reset_system.Shutdown;
94 loongson_sysconf.suspend_addr = boot_p->reset_system.DoSuspend;
95
96 loongson_sysconf.ht_control_base = 0x90000EFDFB000000;
97 loongson_sysconf.vgabios_addr = boot_p->efi.smbios.vga_bios;
98 pr_debug("Shutdown Addr: %llx, Restart Addr: %llx, VBIOS Addr: %llx\n",
99 loongson_sysconf.poweroff_addr, loongson_sysconf.restart_addr,
100 loongson_sysconf.vgabios_addr);
101#endif
Wu Zhangjineb11df42010-01-04 17:16:48 +0800102 if (cpu_clock_freq == 0) {
103 processor_id = (&current_cpu_data)->processor_id;
104 switch (processor_id & PRID_REV_MASK) {
105 case PRID_REV_LOONGSON2E:
106 cpu_clock_freq = 533080000;
107 break;
108 case PRID_REV_LOONGSON2F:
109 cpu_clock_freq = 797000000;
110 break;
Huacai Chen1a08f152014-03-21 18:44:02 +0800111 case PRID_REV_LOONGSON3A:
112 cpu_clock_freq = 900000000;
113 break;
Wu Zhangjineb11df42010-01-04 17:16:48 +0800114 default:
115 cpu_clock_freq = 100000000;
116 break;
117 }
118 }
Huacai Chen1a08f152014-03-21 18:44:02 +0800119 pr_info("CpuClock = %u\n", cpu_clock_freq);
Wu Zhangjinbd92aa02009-07-02 23:22:36 +0800120}