blob: 1ca69a808e38add838afbf68d4492a75e8eec71f [file] [log] [blame]
Alexander Beregalov071327e2009-04-03 01:49:22 +00001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Initial setup-routines for HP 9000 based hardware.
3 *
4 * Copyright (C) 1991, 1992, 1995 Linus Torvalds
Helge Delleref017be2008-12-31 03:12:10 +00005 * Modifications for PA-RISC (C) 1999-2008 Helge Deller <deller@gmx.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Modifications copyright 1999 SuSE GmbH (Philipp Rumpf)
7 * Modifications copyright 2000 Martin K. Petersen <mkp@mkp.net>
8 * Modifications copyright 2000 Philipp Rumpf <prumpf@tux.org>
9 * Modifications copyright 2001 Ryan Bradetich <rbradetich@uswest.net>
10 *
11 * Initial PA-RISC Version: 04-23-1999 by Helge Deller
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
16 * any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 *
27 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/delay.h>
29#include <linux/init.h>
30#include <linux/mm.h>
31#include <linux/module.h>
32#include <linux/seq_file.h>
33#include <linux/slab.h>
34#include <linux/cpu.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040035#include <asm/param.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/cache.h>
37#include <asm/hardware.h> /* for register_parisc_driver() stuff */
38#include <asm/processor.h>
39#include <asm/page.h>
40#include <asm/pdc.h>
41#include <asm/pdcpat.h>
42#include <asm/irq.h> /* for struct irq_region */
43#include <asm/parisc-device.h>
44
Helge Deller8039de12006-01-10 20:35:03 -050045struct system_cpuinfo_parisc boot_cpu_data __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046EXPORT_SYMBOL(boot_cpu_data);
47
Helge Delleref017be2008-12-31 03:12:10 +000048DEFINE_PER_CPU(struct cpuinfo_parisc, cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Kyle McMartin01363222007-02-26 22:21:22 -050050extern int update_cr16_clocksource(void); /* from time.c */
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
53** PARISC CPU driver - claim "device" and initialize CPU data structures.
54**
55** Consolidate per CPU initialization into (mostly) one module.
56** Monarch CPU will initialize boot_cpu_data which shouldn't
57** change once the system has booted.
58**
59** The callback *should* do per-instance initialization of
60** everything including the monarch. "Per CPU" init code in
61** setup.c:start_parisc() has migrated here and start_parisc()
62** will call register_parisc_driver(&cpu_driver) before calling do_inventory().
63**
64** The goal of consolidating CPU initialization into one place is
Simon Arlott70226722007-05-11 20:42:34 +010065** to make sure all CPUs get initialized the same way.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066** The code path not shared is how PDC hands control of the CPU to the OS.
67** The initialization of OS data structures is the same (done below).
68*/
69
70/**
Helge Delleref017be2008-12-31 03:12:10 +000071 * init_cpu_profiler - enable/setup per cpu profiling hooks.
72 * @cpunum: The processor instance.
73 *
74 * FIXME: doesn't do much yet...
75 */
76static void __cpuinit
77init_percpu_prof(unsigned long cpunum)
78{
79 struct cpuinfo_parisc *p;
80
81 p = &per_cpu(cpu_data, cpunum);
82 p->prof_counter = 1;
83 p->prof_multiplier = 1;
84}
85
86
87/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * processor_probe - Determine if processor driver should claim this device.
89 * @dev: The device which has been found.
90 *
91 * Determine if processor driver should claim this chip (return 0) or not
92 * (return 1). If so, initialize the chip and tell other partners in crime
93 * they have work to do.
94 */
Helge Dellere9541d02007-05-27 19:30:36 +020095static int __cpuinit processor_probe(struct parisc_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 unsigned long txn_addr;
98 unsigned long cpuid;
99 struct cpuinfo_parisc *p;
100
Kyle McMartinf8b9e592007-10-18 00:03:50 -0700101#ifdef CONFIG_SMP
Rusty Russellbd071e12009-03-16 14:19:37 +1030102 if (num_online_cpus() >= nr_cpu_ids) {
103 printk(KERN_INFO "num_online_cpus() >= nr_cpu_ids\n");
Kyle McMartinf8b9e592007-10-18 00:03:50 -0700104 return 1;
105 }
106#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (boot_cpu_data.cpu_count > 0) {
108 printk(KERN_INFO "CONFIG_SMP=n ignoring additional CPUs\n");
109 return 1;
110 }
111#endif
112
113 /* logical CPU ID and update global counter
114 * May get overwritten by PAT code.
115 */
116 cpuid = boot_cpu_data.cpu_count;
Matthew Wilcox53f01bb2005-10-21 22:36:40 -0400117 txn_addr = dev->hpa.start; /* for legacy PDC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Helge Dellera8f44e32007-01-28 14:58:52 +0100119#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (is_pdc_pat()) {
121 ulong status;
122 unsigned long bytecnt;
123 pdc_pat_cell_mod_maddr_block_t pa_pdc_cell;
124#undef USE_PAT_CPUID
125#ifdef USE_PAT_CPUID
126 struct pdc_pat_cpu_num cpu_info;
127#endif
128
129 status = pdc_pat_cell_module(&bytecnt, dev->pcell_loc,
130 dev->mod_index, PA_VIEW, &pa_pdc_cell);
131
132 BUG_ON(PDC_OK != status);
133
134 /* verify it's the same as what do_pat_inventory() found */
135 BUG_ON(dev->mod_info != pa_pdc_cell.mod_info);
136 BUG_ON(dev->pmod_loc != pa_pdc_cell.mod_location);
137
138 txn_addr = pa_pdc_cell.mod[0]; /* id_eid for IO sapic */
139
140#ifdef USE_PAT_CPUID
141/* We need contiguous numbers for cpuid. Firmware's notion
142 * of cpuid is for physical CPUs and we just don't care yet.
143 * We'll care when we need to query PAT PDC about a CPU *after*
144 * boot time (ie shutdown a CPU from an OS perspective).
145 */
146 /* get the cpu number */
Matthew Wilcox53f01bb2005-10-21 22:36:40 -0400147 status = pdc_pat_cpu_get_number(&cpu_info, dev->hpa.start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 BUG_ON(PDC_OK != status);
150
151 if (cpu_info.cpu_num >= NR_CPUS) {
152 printk(KERN_WARNING "IGNORING CPU at 0x%x,"
153 " cpu_slot_id > NR_CPUS"
154 " (%ld > %d)\n",
Matthew Wilcox53f01bb2005-10-21 22:36:40 -0400155 dev->hpa.start, cpu_info.cpu_num, NR_CPUS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /* Ignore CPU since it will only crash */
157 boot_cpu_data.cpu_count--;
158 return 1;
159 } else {
160 cpuid = cpu_info.cpu_num;
161 }
162#endif
163 }
164#endif
165
Helge Delleref017be2008-12-31 03:12:10 +0000166 p = &per_cpu(cpu_data, cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 boot_cpu_data.cpu_count++;
168
Grant Grundler7908a0c2006-09-01 14:18:39 -0700169 /* initialize counters - CPU 0 gets it_value set in time_init() */
170 if (cpuid)
171 memset(p, 0, sizeof(struct cpuinfo_parisc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 p->loops_per_jiffy = loops_per_jiffy;
174 p->dev = dev; /* Save IODC data in case we need it */
Matthew Wilcox53f01bb2005-10-21 22:36:40 -0400175 p->hpa = dev->hpa.start; /* save CPU hpa */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 p->cpuid = cpuid; /* save CPU id */
177 p->txn_addr = txn_addr; /* save CPU IRQ address */
178#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /*
180 ** FIXME: review if any other initialization is clobbered
Helge Delleref017be2008-12-31 03:12:10 +0000181 ** for boot_cpu by the above memset().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 */
Helge Delleref017be2008-12-31 03:12:10 +0000183 init_percpu_prof(cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#endif
185
186 /*
Simon Arlott70226722007-05-11 20:42:34 +0100187 ** CONFIG_SMP: init_smp_config() will attempt to get CPUs into
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ** OS control. RENDEZVOUS is the default state - see mem_set above.
189 ** p->state = STATE_RENDEZVOUS;
190 */
191
192#if 0
193 /* CPU 0 IRQ table is statically allocated/initialized */
194 if (cpuid) {
195 struct irqaction actions[];
196
197 /*
198 ** itimer and ipi IRQ handlers are statically initialized in
199 ** arch/parisc/kernel/irq.c. ie Don't need to register them.
200 */
201 actions = kmalloc(sizeof(struct irqaction)*MAX_CPU_IRQ, GFP_ATOMIC);
202 if (!actions) {
203 /* not getting it's own table, share with monarch */
204 actions = cpu_irq_actions[0];
205 }
206
207 cpu_irq_actions[cpuid] = actions;
208 }
209#endif
210
211 /*
212 * Bring this CPU up now! (ignore bootstrap cpuid == 0)
213 */
214#ifdef CONFIG_SMP
215 if (cpuid) {
Rusty Russell9bc181d2009-03-16 14:19:38 +1030216 set_cpu_present(cpuid, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 cpu_up(cpuid);
218 }
219#endif
220
Kyle McMartin01363222007-02-26 22:21:22 -0500221 /* If we've registered more than one cpu,
222 * we'll use the jiffies clocksource since cr16
223 * is not synchronized between CPUs.
224 */
225 update_cr16_clocksource();
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return 0;
228}
229
230/**
231 * collect_boot_cpu_data - Fill the boot_cpu_data structure.
232 *
233 * This function collects and stores the generic processor information
234 * in the boot_cpu_data structure.
235 */
236void __init collect_boot_cpu_data(void)
237{
238 memset(&boot_cpu_data, 0, sizeof(boot_cpu_data));
239
240 boot_cpu_data.cpu_hz = 100 * PAGE0->mem_10msec; /* Hz of this PARISC */
241
242 /* get CPU-Model Information... */
243#define p ((unsigned long *)&boot_cpu_data.pdc.model)
244 if (pdc_model_info(&boot_cpu_data.pdc.model) == PDC_OK)
245 printk(KERN_INFO
246 "model %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
247 p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7], p[8]);
248#undef p
249
250 if (pdc_model_versions(&boot_cpu_data.pdc.versions, 0) == PDC_OK)
251 printk(KERN_INFO "vers %08lx\n",
252 boot_cpu_data.pdc.versions);
253
254 if (pdc_model_cpuid(&boot_cpu_data.pdc.cpuid) == PDC_OK)
255 printk(KERN_INFO "CPUID vers %ld rev %ld (0x%08lx)\n",
256 (boot_cpu_data.pdc.cpuid >> 5) & 127,
257 boot_cpu_data.pdc.cpuid & 31,
258 boot_cpu_data.pdc.cpuid);
259
260 if (pdc_model_capabilities(&boot_cpu_data.pdc.capabilities) == PDC_OK)
261 printk(KERN_INFO "capabilities 0x%lx\n",
262 boot_cpu_data.pdc.capabilities);
263
264 if (pdc_model_sysmodel(boot_cpu_data.pdc.sys_model_name) == PDC_OK)
265 printk(KERN_INFO "model %s\n",
266 boot_cpu_data.pdc.sys_model_name);
267
268 boot_cpu_data.hversion = boot_cpu_data.pdc.model.hversion;
269 boot_cpu_data.sversion = boot_cpu_data.pdc.model.sversion;
270
271 boot_cpu_data.cpu_type = parisc_get_cpu_type(boot_cpu_data.hversion);
272 boot_cpu_data.cpu_name = cpu_name_version[boot_cpu_data.cpu_type][0];
273 boot_cpu_data.family_name = cpu_name_version[boot_cpu_data.cpu_type][1];
274}
275
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278/**
279 * init_per_cpu - Handle individual processor initializations.
280 * @cpunum: logical processor number.
281 *
282 * This function handles initialization for *every* CPU
283 * in the system:
284 *
285 * o Set "default" CPU width for trap handlers
286 *
287 * o Enable FP coprocessor
288 * REVISIT: this could be done in the "code 22" trap handler.
289 * (frowands idea - that way we know which processes need FP
290 * registers saved on the interrupt stack.)
291 * NEWS FLASH: wide kernels need FP coprocessor enabled to handle
292 * formatted printing of %lx for example (double divides I think)
293 *
294 * o Enable CPU profiling hooks.
295 */
Helge Delleref017be2008-12-31 03:12:10 +0000296int __cpuinit init_per_cpu(int cpunum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 int ret;
299 struct pdc_coproc_cfg coproc_cfg;
300
301 set_firmware_width();
302 ret = pdc_coproc_cfg(&coproc_cfg);
303
304 if(ret >= 0 && coproc_cfg.ccr_functional) {
305 mtctl(coproc_cfg.ccr_functional, 10); /* 10 == Coprocessor Control Reg */
306
307 /* FWIW, FP rev/model is a more accurate way to determine
308 ** CPU type. CPU rev/model has some ambiguous cases.
309 */
Helge Delleref017be2008-12-31 03:12:10 +0000310 per_cpu(cpu_data, cpunum).fp_rev = coproc_cfg.revision;
311 per_cpu(cpu_data, cpunum).fp_model = coproc_cfg.model;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 printk(KERN_INFO "FP[%d] enabled: Rev %ld Model %ld\n",
314 cpunum, coproc_cfg.revision, coproc_cfg.model);
315
316 /*
317 ** store status register to stack (hopefully aligned)
318 ** and clear the T-bit.
319 */
320 asm volatile ("fstd %fr0,8(%sp)");
321
322 } else {
323 printk(KERN_WARNING "WARNING: No FP CoProcessor?!"
324 " (coproc_cfg.ccr_functional == 0x%lx, expected 0xc0)\n"
Helge Dellera8f44e32007-01-28 14:58:52 +0100325#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 "Halting Machine - FP required\n"
327#endif
328 , coproc_cfg.ccr_functional);
Helge Dellera8f44e32007-01-28 14:58:52 +0100329#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 mdelay(100); /* previous chars get pushed to console */
331 panic("FP CoProc not reported");
332#endif
333 }
334
335 /* FUTURE: Enable Performance Monitor : ccr bit 0x20 */
336 init_percpu_prof(cpunum);
337
338 return ret;
339}
340
341/*
Simon Arlott70226722007-05-11 20:42:34 +0100342 * Display CPU info for all CPUs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 */
344int
345show_cpuinfo (struct seq_file *m, void *v)
346{
Helge Delleref017be2008-12-31 03:12:10 +0000347 unsigned long cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Helge Delleref017be2008-12-31 03:12:10 +0000349 for_each_online_cpu(cpu) {
350 const struct cpuinfo_parisc *cpuinfo = &per_cpu(cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351#ifdef CONFIG_SMP
Helge Delleref017be2008-12-31 03:12:10 +0000352 if (0 == cpuinfo->hpa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#endif
Helge Delleref017be2008-12-31 03:12:10 +0000355 seq_printf(m, "processor\t: %lu\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 "cpu family\t: PA-RISC %s\n",
Helge Delleref017be2008-12-31 03:12:10 +0000357 cpu, boot_cpu_data.family_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 seq_printf(m, "cpu\t\t: %s\n", boot_cpu_data.cpu_name );
360
361 /* cpu MHz */
362 seq_printf(m, "cpu MHz\t\t: %d.%06d\n",
363 boot_cpu_data.cpu_hz / 1000000,
364 boot_cpu_data.cpu_hz % 1000000 );
365
Colin Watson445c0882009-01-30 01:03:50 +0000366 seq_printf(m, "capabilities\t:");
367 if (boot_cpu_data.pdc.capabilities & PDC_MODEL_OS32)
368 seq_printf(m, " os32");
369 if (boot_cpu_data.pdc.capabilities & PDC_MODEL_OS64)
370 seq_printf(m, " os64");
371 seq_printf(m, "\n");
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 seq_printf(m, "model\t\t: %s\n"
374 "model name\t: %s\n",
375 boot_cpu_data.pdc.sys_model_name,
Helge Delleref017be2008-12-31 03:12:10 +0000376 cpuinfo->dev ?
377 cpuinfo->dev->name : "Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 seq_printf(m, "hversion\t: 0x%08x\n"
380 "sversion\t: 0x%08x\n",
381 boot_cpu_data.hversion,
382 boot_cpu_data.sversion );
383
384 /* print cachesize info */
385 show_cache_info(m);
386
387 seq_printf(m, "bogomips\t: %lu.%02lu\n",
Helge Delleref017be2008-12-31 03:12:10 +0000388 cpuinfo->loops_per_jiffy / (500000 / HZ),
389 (cpuinfo->loops_per_jiffy / (5000 / HZ)) % 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 seq_printf(m, "software id\t: %ld\n\n",
392 boot_cpu_data.pdc.model.sw_id);
393 }
394 return 0;
395}
396
Helge Dellere9541d02007-05-27 19:30:36 +0200397static const struct parisc_device_id processor_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 { HPHW_NPROC, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, SVERSION_ANY_ID },
399 { 0, }
400};
401
Helge Dellere9541d02007-05-27 19:30:36 +0200402static struct parisc_driver cpu_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 .name = "CPU",
404 .id_table = processor_tbl,
405 .probe = processor_probe
406};
407
408/**
Simon Arlott70226722007-05-11 20:42:34 +0100409 * processor_init - Processor initialization procedure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 *
411 * Register this driver.
412 */
413void __init processor_init(void)
414{
415 register_parisc_driver(&cpu_driver);
416}