2 * linux/arch/alpha/kernel/setup.c
4 * Copyright (C) 1995 Linus Torvalds
7 /* 2.3.x bootmem, 1999 Andrea Arcangeli <andrea@suse.de> */
13 #include <linux/sched.h>
14 #include <linux/kernel.h>
16 #include <linux/stddef.h>
17 #include <linux/unistd.h>
18 #include <linux/ptrace.h>
19 #include <linux/slab.h>
20 #include <linux/user.h>
21 #include <linux/a.out.h>
22 #include <linux/tty.h>
23 #include <linux/delay.h>
24 #include <linux/config.h> /* CONFIG_ALPHA_LCA etc */
25 #include <linux/mc146818rtc.h>
26 #include <linux/console.h>
27 #include <linux/errno.h>
28 #include <linux/init.h>
29 #include <linux/string.h>
30 #include <linux/ioport.h>
31 #include <linux/bootmem.h>
32 #include <linux/pci.h>
33 #include <linux/seq_file.h>
34 #include <linux/root_dev.h>
35 #include <linux/initrd.h>
36 #include <linux/eisa.h>
37 #ifdef CONFIG_MAGIC_SYSRQ
38 #include <linux/sysrq.h>
39 #include <linux/reboot.h>
41 #include <linux/notifier.h>
42 #include <asm/setup.h>
45 extern struct notifier_block
*panic_notifier_list
;
46 static int alpha_panic_event(struct notifier_block
*, unsigned long, void *);
47 static struct notifier_block alpha_panic_block
= {
50 INT_MAX
/* try to do it first */
53 #include <asm/uaccess.h>
54 #include <asm/pgtable.h>
55 #include <asm/system.h>
56 #include <asm/hwrpb.h>
59 #include <asm/mmu_context.h>
60 #include <asm/console.h>
66 struct hwrpb_struct
*hwrpb
;
67 unsigned long srm_hae
;
69 int alpha_l1i_cacheshape
;
70 int alpha_l1d_cacheshape
;
71 int alpha_l2_cacheshape
;
72 int alpha_l3_cacheshape
;
74 #ifdef CONFIG_VERBOSE_MCHECK
75 /* 0=minimum, 1=verbose, 2=all */
76 /* These can be overridden via the command line, ie "verbose_mcheck=2") */
77 unsigned long alpha_verbose_mcheck
= CONFIG_VERBOSE_MCHECK_ON
;
80 /* Which processor we booted from. */
84 * Using SRM callbacks for initial console output. This works from
85 * setup_arch() time through the end of time_init(), as those places
86 * are under our (Alpha) control.
88 * "srmcons" specified in the boot command arguments allows us to
89 * see kernel messages during the period of time before the true
90 * console device is "registered" during console_init().
91 * As of this version (2.5.59), console_init() will call
92 * disable_early_printk() as the last action before initializing
93 * the console drivers. That's the last possible time srmcons can be
94 * unregistered without interfering with console behavior.
96 * By default, OFF; set it with a bootcommand arg of "srmcons" or
97 * "console=srm". The meaning of these two args is:
98 * "srmcons" - early callback prints
99 * "console=srm" - full callback based console, including early prints
101 int srmcons_output
= 0;
103 /* Enforce a memory size limit; useful for testing. By default, none. */
104 unsigned long mem_size_limit
= 0;
106 /* Set AGP GART window size (0 means disabled). */
107 unsigned long alpha_agpgart_size
= DEFAULT_AGP_APER_SIZE
;
109 #ifdef CONFIG_ALPHA_GENERIC
110 struct alpha_machine_vector alpha_mv
;
114 #define N(a) (sizeof(a)/sizeof(a[0]))
116 static struct alpha_machine_vector
*get_sysvec(unsigned long, unsigned long,
118 static struct alpha_machine_vector
*get_sysvec_byname(const char *);
119 static void get_sysnames(unsigned long, unsigned long, unsigned long,
121 static void determine_cpu_caches (unsigned int);
123 static char command_line
[COMMAND_LINE_SIZE
];
126 * The format of "screen_info" is strange, and due to early
127 * i386-setup code. This is just enough to make the console
128 * code think we're on a VGA color display.
131 struct screen_info screen_info
= {
134 .orig_video_cols
= 80,
135 .orig_video_lines
= 25,
136 .orig_video_isVGA
= 1,
137 .orig_video_points
= 16
141 * The direct map I/O window, if any. This should be the same
142 * for all busses, since it's used by virt_to_bus.
145 unsigned long __direct_map_base
;
146 unsigned long __direct_map_size
;
149 * Declare all of the machine vectors.
152 /* GCC 2.7.2 (on alpha at least) is lame. It does not support either
153 __attribute__((weak)) or #pragma weak. Bypass it and talk directly
157 extern struct alpha_machine_vector X; \
177 WEAK(mikasa_primo_mv
);
182 WEAK(noritake_primo_mv
);
190 WEAK(sable_gamma_mv
);
203 * I/O resources inherited from PeeCees. Except for perhaps the
204 * turbochannel alphas, everyone has these on some sort of SuperIO chip.
206 * ??? If this becomes less standard, move the struct out into the
211 reserve_std_resources(void)
213 static struct resource standard_io_resources
[] = {
214 { .name
= "rtc", .start
= -1, .end
= -1 },
215 { .name
= "dma1", .start
= 0x00, .end
= 0x1f },
216 { .name
= "pic1", .start
= 0x20, .end
= 0x3f },
217 { .name
= "timer", .start
= 0x40, .end
= 0x5f },
218 { .name
= "keyboard", .start
= 0x60, .end
= 0x6f },
219 { .name
= "dma page reg", .start
= 0x80, .end
= 0x8f },
220 { .name
= "pic2", .start
= 0xa0, .end
= 0xbf },
221 { .name
= "dma2", .start
= 0xc0, .end
= 0xdf },
224 struct resource
*io
= &ioport_resource
;
228 struct pci_controller
*hose
;
229 for (hose
= hose_head
; hose
; hose
= hose
->next
)
230 if (hose
->index
== 0) {
236 /* Fix up for the Jensen's queer RTC placement. */
237 standard_io_resources
[0].start
= RTC_PORT(0);
238 standard_io_resources
[0].end
= RTC_PORT(0) + 0x10;
240 for (i
= 0; i
< N(standard_io_resources
); ++i
)
241 request_resource(io
, standard_io_resources
+i
);
244 #define PFN_UP(x) (((x) + PAGE_SIZE-1) >> PAGE_SHIFT)
245 #define PFN_DOWN(x) ((x) >> PAGE_SHIFT)
246 #define PFN_PHYS(x) ((x) << PAGE_SHIFT)
247 #define PFN_MAX PFN_DOWN(0x80000000)
248 #define for_each_mem_cluster(memdesc, cluster, i) \
249 for ((cluster) = (memdesc)->cluster, (i) = 0; \
250 (i) < (memdesc)->numclusters; (i)++, (cluster)++)
252 static unsigned long __init
253 get_mem_size_limit(char *s
)
255 unsigned long end
= 0;
258 end
= simple_strtoul(from
, &from
, 0);
259 if ( *from
== 'K' || *from
== 'k' ) {
262 } else if ( *from
== 'M' || *from
== 'm' ) {
265 } else if ( *from
== 'G' || *from
== 'g' ) {
269 return end
>> PAGE_SHIFT
; /* Return the PFN of the limit. */
272 #ifdef CONFIG_BLK_DEV_INITRD
274 move_initrd(unsigned long mem_limit
)
279 size
= initrd_end
- initrd_start
;
280 start
= __alloc_bootmem(PAGE_ALIGN(size
), PAGE_SIZE
, 0);
281 if (!start
|| __pa(start
) + size
> mem_limit
) {
282 initrd_start
= initrd_end
= 0;
285 memmove(start
, (void *)initrd_start
, size
);
286 initrd_start
= (unsigned long)start
;
287 initrd_end
= initrd_start
+ size
;
288 printk("initrd moved to %p\n", start
);
293 #ifndef CONFIG_DISCONTIGMEM
295 setup_memory(void *kernel_end
)
297 struct memclust_struct
* cluster
;
298 struct memdesc_struct
* memdesc
;
299 unsigned long start_kernel_pfn
, end_kernel_pfn
;
300 unsigned long bootmap_size
, bootmap_pages
, bootmap_start
;
301 unsigned long start
, end
;
304 /* Find free clusters, and init and free the bootmem accordingly. */
305 memdesc
= (struct memdesc_struct
*)
306 (hwrpb
->mddt_offset
+ (unsigned long) hwrpb
);
308 for_each_mem_cluster(memdesc
, cluster
, i
) {
309 printk("memcluster %lu, usage %01lx, start %8lu, end %8lu\n",
310 i
, cluster
->usage
, cluster
->start_pfn
,
311 cluster
->start_pfn
+ cluster
->numpages
);
313 /* Bit 0 is console/PALcode reserved. Bit 1 is
314 non-volatile memory -- we might want to mark
316 if (cluster
->usage
& 3)
319 end
= cluster
->start_pfn
+ cluster
->numpages
;
320 if (end
> max_low_pfn
)
325 * Except for the NUMA systems (wildfire, marvel) all of the
326 * Alpha systems we run on support 32GB of memory or less.
327 * Since the NUMA systems introduce large holes in memory addressing,
328 * we can get into a situation where there is not enough contiguous
329 * memory for the memory map.
331 * Limit memory to the first 32GB to limit the NUMA systems to
332 * memory on their first node (wildfire) or 2 (marvel) to avoid
333 * not being able to produce the memory map. In order to access
334 * all of the memory on the NUMA systems, build with discontiguous
337 * If the user specified a memory limit, let that memory limit stand.
340 mem_size_limit
= (32ul * 1024 * 1024 * 1024) >> PAGE_SHIFT
;
342 if (mem_size_limit
&& max_low_pfn
>= mem_size_limit
)
344 printk("setup: forcing memory size to %ldK (from %ldK).\n",
345 mem_size_limit
<< (PAGE_SHIFT
- 10),
346 max_low_pfn
<< (PAGE_SHIFT
- 10));
347 max_low_pfn
= mem_size_limit
;
350 /* Find the bounds of kernel memory. */
351 start_kernel_pfn
= PFN_DOWN(KERNEL_START_PHYS
);
352 end_kernel_pfn
= PFN_UP(virt_to_phys(kernel_end
));
356 if (max_low_pfn
<= end_kernel_pfn
)
357 panic("not enough memory to boot");
359 /* We need to know how many physically contiguous pages
360 we'll need for the bootmap. */
361 bootmap_pages
= bootmem_bootmap_pages(max_low_pfn
);
363 /* Now find a good region where to allocate the bootmap. */
364 for_each_mem_cluster(memdesc
, cluster
, i
) {
365 if (cluster
->usage
& 3)
368 start
= cluster
->start_pfn
;
369 end
= start
+ cluster
->numpages
;
370 if (start
>= max_low_pfn
)
372 if (end
> max_low_pfn
)
374 if (start
< start_kernel_pfn
) {
375 if (end
> end_kernel_pfn
376 && end
- end_kernel_pfn
>= bootmap_pages
) {
377 bootmap_start
= end_kernel_pfn
;
379 } else if (end
> start_kernel_pfn
)
380 end
= start_kernel_pfn
;
381 } else if (start
< end_kernel_pfn
)
382 start
= end_kernel_pfn
;
383 if (end
- start
>= bootmap_pages
) {
384 bootmap_start
= start
;
389 if (bootmap_start
== ~0UL) {
394 /* Allocate the bootmap and mark the whole MM as reserved. */
395 bootmap_size
= init_bootmem(bootmap_start
, max_low_pfn
);
397 /* Mark the free regions. */
398 for_each_mem_cluster(memdesc
, cluster
, i
) {
399 if (cluster
->usage
& 3)
402 start
= cluster
->start_pfn
;
403 end
= cluster
->start_pfn
+ cluster
->numpages
;
404 if (start
>= max_low_pfn
)
406 if (end
> max_low_pfn
)
408 if (start
< start_kernel_pfn
) {
409 if (end
> end_kernel_pfn
) {
410 free_bootmem(PFN_PHYS(start
),
411 (PFN_PHYS(start_kernel_pfn
)
413 printk("freeing pages %ld:%ld\n",
414 start
, start_kernel_pfn
);
415 start
= end_kernel_pfn
;
416 } else if (end
> start_kernel_pfn
)
417 end
= start_kernel_pfn
;
418 } else if (start
< end_kernel_pfn
)
419 start
= end_kernel_pfn
;
423 free_bootmem(PFN_PHYS(start
), PFN_PHYS(end
) - PFN_PHYS(start
));
424 printk("freeing pages %ld:%ld\n", start
, end
);
427 /* Reserve the bootmap memory. */
428 reserve_bootmem(PFN_PHYS(bootmap_start
), bootmap_size
);
429 printk("reserving pages %ld:%ld\n", bootmap_start
, bootmap_start
+PFN_UP(bootmap_size
));
431 #ifdef CONFIG_BLK_DEV_INITRD
432 initrd_start
= INITRD_START
;
434 initrd_end
= initrd_start
+INITRD_SIZE
;
435 printk("Initial ramdisk at: 0x%p (%lu bytes)\n",
436 (void *) initrd_start
, INITRD_SIZE
);
438 if ((void *)initrd_end
> phys_to_virt(PFN_PHYS(max_low_pfn
))) {
439 if (!move_initrd(PFN_PHYS(max_low_pfn
)))
440 printk("initrd extends beyond end of memory "
441 "(0x%08lx > 0x%p)\ndisabling initrd\n",
443 phys_to_virt(PFN_PHYS(max_low_pfn
)));
445 reserve_bootmem(virt_to_phys((void *)initrd_start
),
449 #endif /* CONFIG_BLK_DEV_INITRD */
452 extern void setup_memory(void *);
453 #endif /* !CONFIG_DISCONTIGMEM */
456 page_is_ram(unsigned long pfn
)
458 struct memclust_struct
* cluster
;
459 struct memdesc_struct
* memdesc
;
462 memdesc
= (struct memdesc_struct
*)
463 (hwrpb
->mddt_offset
+ (unsigned long) hwrpb
);
464 for_each_mem_cluster(memdesc
, cluster
, i
)
466 if (pfn
>= cluster
->start_pfn
&&
467 pfn
< cluster
->start_pfn
+ cluster
->numpages
) {
468 return (cluster
->usage
& 3) ? 0 : 1;
481 setup_arch(char **cmdline_p
)
485 struct alpha_machine_vector
*vec
= NULL
;
486 struct percpu_struct
*cpu
;
487 char *type_name
, *var_name
, *p
;
488 void *kernel_end
= _end
; /* end of kernel */
489 char *args
= command_line
;
491 hwrpb
= (struct hwrpb_struct
*) __va(INIT_HWRPB
->phys_addr
);
492 boot_cpuid
= hard_smp_processor_id();
495 * Pre-process the system type to make sure it will be valid.
497 * This may restore real CABRIO and EB66+ family names, ie
500 * Oh, and "white box" AS800 (aka DIGITAL Server 3000 series)
501 * and AS1200 (DIGITAL Server 5000 series) have the type as
502 * the negative of the real one.
504 if ((long)hwrpb
->sys_type
< 0) {
505 hwrpb
->sys_type
= -((long)hwrpb
->sys_type
);
506 hwrpb_update_checksum(hwrpb
);
509 /* Register a call for panic conditions. */
510 notifier_chain_register(&panic_notifier_list
, &alpha_panic_block
);
512 #ifdef CONFIG_ALPHA_GENERIC
513 /* Assume that we've booted from SRM if we haven't booted from MILO.
514 Detect the later by looking for "MILO" in the system serial nr. */
515 alpha_using_srm
= strncmp((const char *)hwrpb
->ssn
, "MILO", 4) != 0;
518 /* If we are using SRM, we want to allow callbacks
519 as early as possible, so do this NOW, and then
520 they should work immediately thereafter.
522 kernel_end
= callback_init(kernel_end
);
525 * Locate the command line.
527 /* Hack for Jensen... since we're restricted to 8 or 16 chars for
528 boot flags depending on the boot mode, we need some shorthand.
529 This should do for installation. */
530 if (strcmp(COMMAND_LINE
, "INSTALL") == 0) {
531 strlcpy(command_line
, "root=/dev/fd0 load_ramdisk=1", sizeof command_line
);
533 strlcpy(command_line
, COMMAND_LINE
, sizeof command_line
);
535 strcpy(saved_command_line
, command_line
);
536 *cmdline_p
= command_line
;
539 * Process command-line arguments.
541 while ((p
= strsep(&args
, " \t")) != NULL
) {
543 if (strncmp(p
, "alpha_mv=", 9) == 0) {
544 vec
= get_sysvec_byname(p
+9);
547 if (strncmp(p
, "cycle=", 6) == 0) {
548 est_cycle_freq
= simple_strtol(p
+6, NULL
, 0);
551 if (strncmp(p
, "mem=", 4) == 0) {
552 mem_size_limit
= get_mem_size_limit(p
+4);
555 if (strncmp(p
, "srmcons", 7) == 0) {
559 if (strncmp(p
, "console=srm", 11) == 0) {
563 if (strncmp(p
, "gartsize=", 9) == 0) {
565 get_mem_size_limit(p
+9) << PAGE_SHIFT
;
568 #ifdef CONFIG_VERBOSE_MCHECK
569 if (strncmp(p
, "verbose_mcheck=", 15) == 0) {
570 alpha_verbose_mcheck
= simple_strtol(p
+15, NULL
, 0);
576 /* Replace the command line, now that we've killed it with strsep. */
577 strcpy(command_line
, saved_command_line
);
579 /* If we want SRM console printk echoing early, do it now. */
580 if (alpha_using_srm
&& srmcons_output
) {
581 register_srm_console();
584 * If "console=srm" was specified, clear the srmcons_output
585 * flag now so that time.c won't unregister_srm_console
587 if (srmcons_output
& 2)
591 #ifdef CONFIG_MAGIC_SYSRQ
592 /* If we're using SRM, make sysrq-b halt back to the prom,
594 if (alpha_using_srm
) {
595 struct sysrq_key_op
*op
= __sysrq_get_key_op('b');
596 op
->handler
= (void *) machine_halt
;
601 * Identify and reconfigure for the current system.
603 cpu
= (struct percpu_struct
*)((char*)hwrpb
+ hwrpb
->processor_offset
);
605 get_sysnames(hwrpb
->sys_type
, hwrpb
->sys_variation
,
606 cpu
->type
, &type_name
, &var_name
);
607 if (*var_name
== '0')
611 vec
= get_sysvec(hwrpb
->sys_type
, hwrpb
->sys_variation
,
616 panic("Unsupported system type: %s%s%s (%ld %ld)\n",
617 type_name
, (*var_name
? " variation " : ""), var_name
,
618 hwrpb
->sys_type
, hwrpb
->sys_variation
);
620 if (vec
!= &alpha_mv
) {
625 #ifdef CONFIG_ALPHA_GENERIC
628 "on %s%s%s using machine vector %s from %s\n",
629 type_name
, (*var_name
? " variation " : ""),
630 var_name
, alpha_mv
.vector_name
,
631 (alpha_using_srm
? "SRM" : "MILO"));
633 printk("Major Options: "
637 #ifdef CONFIG_ALPHA_EV56
640 #ifdef CONFIG_ALPHA_EV67
643 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
646 #ifdef CONFIG_VERBOSE_MCHECK
650 #ifdef CONFIG_DISCONTIGMEM
657 #ifdef CONFIG_DEBUG_SPINLOCK
660 #ifdef CONFIG_MAGIC_SYSRQ
665 printk("Command line: %s\n", command_line
);
669 * Save the SRM's current value for restoration.
671 srm_hae
= *alpha_mv
.hae_register
;
672 __set_hae(alpha_mv
.hae_cache
);
674 /* Reset enable correctable error reports. */
677 /* Find our memory. */
678 setup_memory(kernel_end
);
680 /* First guess at cpu cache sizes. Do this before init_arch. */
681 determine_cpu_caches(cpu
->type
);
683 /* Initialize the machine. Usually has to do with setting up
684 DMA windows and the like. */
685 if (alpha_mv
.init_arch
)
686 alpha_mv
.init_arch();
688 /* Reserve standard resources. */
689 reserve_std_resources();
692 * Give us a default console. TGA users will see nothing until
693 * chr_dev_init is called, rather late in the boot sequence.
697 #if defined(CONFIG_VGA_CONSOLE)
698 conswitchp
= &vga_con
;
699 #elif defined(CONFIG_DUMMY_CONSOLE)
700 conswitchp
= &dummy_con
;
704 /* Default root filesystem to sda2. */
705 ROOT_DEV
= Root_SDA2
;
708 /* FIXME: only set this when we actually have EISA in this box? */
713 * Check ASN in HWRPB for validity, report if bad.
714 * FIXME: how was this failing? Should we trust it instead,
715 * and copy the value into alpha_mv.max_asn?
718 if (hwrpb
->max_asn
!= MAX_ASN
) {
719 printk("Max ASN from HWRPB is bad (0x%lx)\n", hwrpb
->max_asn
);
723 * Identify the flock of penguins.
733 disable_early_printk(void)
735 if (alpha_using_srm
&& srmcons_output
) {
736 unregister_srm_console();
741 static char sys_unknown
[] = "Unknown";
742 static char systype_names
[][16] = {
744 "ADU", "Cobra", "Ruby", "Flamingo", "Mannequin", "Jensen",
745 "Pelican", "Morgan", "Sable", "Medulla", "Noname",
746 "Turbolaser", "Avanti", "Mustang", "Alcor", "Tradewind",
747 "Mikasa", "EB64", "EB66", "EB64+", "AlphaBook1",
748 "Rawhide", "K2", "Lynx", "XL", "EB164", "Noritake",
749 "Cortex", "29", "Miata", "XXM", "Takara", "Yukon",
750 "Tsunami", "Wildfire", "CUSCO", "Eiger", "Titan", "Marvel"
753 static char unofficial_names
[][8] = {"100", "Ruffian"};
755 static char api_names
[][16] = {"200", "Nautilus"};
757 static char eb164_names
[][8] = {"EB164", "PC164", "LX164", "SX164", "RX164"};
758 static int eb164_indices
[] = {0,0,0,1,1,1,1,1,2,2,2,2,3,3,3,3,4};
760 static char alcor_names
[][16] = {"Alcor", "Maverick", "Bret"};
761 static int alcor_indices
[] = {0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2};
763 static char eb64p_names
[][16] = {"EB64+", "Cabriolet", "AlphaPCI64"};
764 static int eb64p_indices
[] = {0,0,1,2};
766 static char eb66_names
[][8] = {"EB66", "EB66+"};
767 static int eb66_indices
[] = {0,0,1};
769 static char marvel_names
[][16] = {
772 static int marvel_indices
[] = { 0 };
774 static char rawhide_names
[][16] = {
775 "Dodge", "Wrangler", "Durango", "Tincup", "DaVinci"
777 static int rawhide_indices
[] = {0,0,0,1,1,2,2,3,3,4,4};
779 static char titan_names
[][16] = {
780 "DEFAULT", "Privateer", "Falcon", "Granite"
782 static int titan_indices
[] = {0,1,2,2,3};
784 static char tsunami_names
[][16] = {
785 "0", "DP264", "Warhol", "Windjammer", "Monet", "Clipper",
786 "Goldrush", "Webbrick", "Catamaran", "Brisbane", "Melbourne",
787 "Flying Clipper", "Shark"
789 static int tsunami_indices
[] = {0,1,2,3,4,5,6,7,8,9,10,11,12};
791 static struct alpha_machine_vector
* __init
792 get_sysvec(unsigned long type
, unsigned long variation
, unsigned long cpu
)
794 static struct alpha_machine_vector
*systype_vecs
[] __initdata
=
801 NULL
, /* Mannequin */
805 NULL
, /* Sable -- see below. */
808 NULL
, /* Turbolaser */
811 NULL
, /* Alcor, Bret, Maverick. HWRPB inaccurate? */
812 NULL
, /* Tradewind */
813 NULL
, /* Mikasa -- see below. */
815 NULL
, /* EB66 -- see variation. */
816 NULL
, /* EB64+ -- see variation. */
822 NULL
, /* EB164 -- see variation. */
823 NULL
, /* Noritake -- see below. */
830 NULL
, /* Tsunami -- see variation. */
831 &wildfire_mv
, /* Wildfire */
833 &eiger_mv
, /* Eiger */
838 static struct alpha_machine_vector
*unofficial_vecs
[] __initdata
=
844 static struct alpha_machine_vector
*api_vecs
[] __initdata
=
850 static struct alpha_machine_vector
*alcor_vecs
[] __initdata
=
852 &alcor_mv
, &xlt_mv
, &xlt_mv
855 static struct alpha_machine_vector
*eb164_vecs
[] __initdata
=
857 &eb164_mv
, &pc164_mv
, &lx164_mv
, &sx164_mv
, &rx164_mv
860 static struct alpha_machine_vector
*eb64p_vecs
[] __initdata
=
864 &cabriolet_mv
/* AlphaPCI64 */
867 static struct alpha_machine_vector
*eb66_vecs
[] __initdata
=
873 static struct alpha_machine_vector
*marvel_vecs
[] __initdata
=
878 static struct alpha_machine_vector
*titan_vecs
[] __initdata
=
880 &titan_mv
, /* default */
881 &privateer_mv
, /* privateer */
882 &titan_mv
, /* falcon */
883 &privateer_mv
, /* granite */
886 static struct alpha_machine_vector
*tsunami_vecs
[] __initdata
=
889 &dp264_mv
, /* dp264 */
890 &dp264_mv
, /* warhol */
891 &dp264_mv
, /* windjammer */
892 &monet_mv
, /* monet */
893 &clipper_mv
, /* clipper */
894 &dp264_mv
, /* goldrush */
895 &webbrick_mv
, /* webbrick */
896 &dp264_mv
, /* catamaran */
897 NULL
, /* brisbane? */
898 NULL
, /* melbourne? */
899 NULL
, /* flying clipper? */
900 &shark_mv
, /* shark */
903 /* ??? Do we need to distinguish between Rawhides? */
905 struct alpha_machine_vector
*vec
;
907 /* Search the system tables first... */
909 if (type
< N(systype_vecs
)) {
910 vec
= systype_vecs
[type
];
911 } else if ((type
> ST_API_BIAS
) &&
912 (type
- ST_API_BIAS
) < N(api_vecs
)) {
913 vec
= api_vecs
[type
- ST_API_BIAS
];
914 } else if ((type
> ST_UNOFFICIAL_BIAS
) &&
915 (type
- ST_UNOFFICIAL_BIAS
) < N(unofficial_vecs
)) {
916 vec
= unofficial_vecs
[type
- ST_UNOFFICIAL_BIAS
];
919 /* If we've not found one, try for a variation. */
922 /* Member ID is a bit-field. */
923 unsigned long member
= (variation
>> 10) & 0x3f;
925 cpu
&= 0xffffffff; /* make it usable */
929 if (member
< N(alcor_indices
))
930 vec
= alcor_vecs
[alcor_indices
[member
]];
933 if (member
< N(eb164_indices
))
934 vec
= eb164_vecs
[eb164_indices
[member
]];
935 /* PC164 may show as EB164 variation with EV56 CPU,
936 but, since no true EB164 had anything but EV5... */
937 if (vec
== &eb164_mv
&& cpu
== EV56_CPU
)
941 if (member
< N(eb64p_indices
))
942 vec
= eb64p_vecs
[eb64p_indices
[member
]];
945 if (member
< N(eb66_indices
))
946 vec
= eb66_vecs
[eb66_indices
[member
]];
949 if (member
< N(marvel_indices
))
950 vec
= marvel_vecs
[marvel_indices
[member
]];
953 vec
= titan_vecs
[0]; /* default */
954 if (member
< N(titan_indices
))
955 vec
= titan_vecs
[titan_indices
[member
]];
958 if (member
< N(tsunami_indices
))
959 vec
= tsunami_vecs
[tsunami_indices
[member
]];
962 if (cpu
== EV5_CPU
|| cpu
== EV56_CPU
)
963 vec
= &mikasa_primo_mv
;
967 case ST_DEC_NORITAKE
:
968 if (cpu
== EV5_CPU
|| cpu
== EV56_CPU
)
969 vec
= &noritake_primo_mv
;
973 case ST_DEC_2100_A500
:
974 if (cpu
== EV5_CPU
|| cpu
== EV56_CPU
)
975 vec
= &sable_gamma_mv
;
984 static struct alpha_machine_vector
* __init
985 get_sysvec_byname(const char *name
)
987 static struct alpha_machine_vector
*all_vecs
[] __initdata
=
1030 for (i
= 0; i
< N(all_vecs
); ++i
) {
1031 struct alpha_machine_vector
*mv
= all_vecs
[i
];
1032 if (strcasecmp(mv
->vector_name
, name
) == 0)
1039 get_sysnames(unsigned long type
, unsigned long variation
, unsigned long cpu
,
1040 char **type_name
, char **variation_name
)
1042 unsigned long member
;
1044 /* If not in the tables, make it UNKNOWN,
1045 else set type name to family */
1046 if (type
< N(systype_names
)) {
1047 *type_name
= systype_names
[type
];
1048 } else if ((type
> ST_API_BIAS
) &&
1049 (type
- ST_API_BIAS
) < N(api_names
)) {
1050 *type_name
= api_names
[type
- ST_API_BIAS
];
1051 } else if ((type
> ST_UNOFFICIAL_BIAS
) &&
1052 (type
- ST_UNOFFICIAL_BIAS
) < N(unofficial_names
)) {
1053 *type_name
= unofficial_names
[type
- ST_UNOFFICIAL_BIAS
];
1055 *type_name
= sys_unknown
;
1056 *variation_name
= sys_unknown
;
1060 /* Set variation to "0"; if variation is zero, done. */
1061 *variation_name
= systype_names
[0];
1062 if (variation
== 0) {
1066 member
= (variation
>> 10) & 0x3f; /* member ID is a bit-field */
1068 cpu
&= 0xffffffff; /* make it usable */
1070 switch (type
) { /* select by family */
1071 default: /* default to variation "0" for now */
1074 if (member
< N(eb164_indices
))
1075 *variation_name
= eb164_names
[eb164_indices
[member
]];
1076 /* PC164 may show as EB164 variation, but with EV56 CPU,
1077 so, since no true EB164 had anything but EV5... */
1078 if (eb164_indices
[member
] == 0 && cpu
== EV56_CPU
)
1079 *variation_name
= eb164_names
[1]; /* make it PC164 */
1082 if (member
< N(alcor_indices
))
1083 *variation_name
= alcor_names
[alcor_indices
[member
]];
1086 if (member
< N(eb64p_indices
))
1087 *variation_name
= eb64p_names
[eb64p_indices
[member
]];
1090 if (member
< N(eb66_indices
))
1091 *variation_name
= eb66_names
[eb66_indices
[member
]];
1094 if (member
< N(marvel_indices
))
1095 *variation_name
= marvel_names
[marvel_indices
[member
]];
1097 case ST_DEC_RAWHIDE
:
1098 if (member
< N(rawhide_indices
))
1099 *variation_name
= rawhide_names
[rawhide_indices
[member
]];
1102 *variation_name
= titan_names
[0]; /* default */
1103 if (member
< N(titan_indices
))
1104 *variation_name
= titan_names
[titan_indices
[member
]];
1106 case ST_DEC_TSUNAMI
:
1107 if (member
< N(tsunami_indices
))
1108 *variation_name
= tsunami_names
[tsunami_indices
[member
]];
1114 * A change was made to the HWRPB via an ECO and the following code
1115 * tracks a part of the ECO. In HWRPB versions less than 5, the ECO
1116 * was not implemented in the console firmware. If it's revision 5 or
1117 * greater we can get the name of the platform as an ASCII string from
1118 * the HWRPB. That's what this function does. It checks the revision
1119 * level and if the string is in the HWRPB it returns the address of
1120 * the string--a pointer to the name of the platform.
1123 * - Pointer to a ASCII string if it's in the HWRPB
1124 * - Pointer to a blank string if the data is not in the HWRPB.
1128 platform_string(void)
1130 struct dsr_struct
*dsr
;
1131 static char unk_system_string
[] = "N/A";
1133 /* Go to the console for the string pointer.
1134 * If the rpb_vers is not 5 or greater the rpb
1135 * is old and does not have this data in it.
1137 if (hwrpb
->revision
< 5)
1138 return (unk_system_string
);
1140 /* The Dynamic System Recognition struct
1141 * has the system platform name starting
1142 * after the character count of the string.
1144 dsr
= ((struct dsr_struct
*)
1145 ((char *)hwrpb
+ hwrpb
->dsr_offset
));
1146 return ((char *)dsr
+ (dsr
->sysname_off
+
1152 get_nr_processors(struct percpu_struct
*cpubase
, unsigned long num
)
1154 struct percpu_struct
*cpu
;
1158 for (i
= 0; i
< num
; i
++) {
1159 cpu
= (struct percpu_struct
*)
1160 ((char *)cpubase
+ i
*hwrpb
->processor_size
);
1161 if ((cpu
->flags
& 0x1cc) == 0x1cc)
1168 show_cache_size (struct seq_file
*f
, const char *which
, int shape
)
1171 seq_printf (f
, "%s\t\t: n/a\n", which
);
1172 else if (shape
== 0)
1173 seq_printf (f
, "%s\t\t: unknown\n", which
);
1175 seq_printf (f
, "%s\t\t: %dK, %d-way, %db line\n",
1176 which
, shape
>> 10, shape
& 15,
1177 1 << ((shape
>> 4) & 15));
1181 show_cpuinfo(struct seq_file
*f
, void *slot
)
1183 extern struct unaligned_stat
{
1184 unsigned long count
, va
, pc
;
1187 static char cpu_names
[][8] = {
1188 "EV3", "EV4", "Simulate", "LCA4", "EV5", "EV45", "EV56",
1189 "EV6", "PCA56", "PCA57", "EV67", "EV68CB", "EV68AL",
1190 "EV68CX", "EV7", "EV79", "EV69"
1193 struct percpu_struct
*cpu
= slot
;
1194 unsigned int cpu_index
;
1197 char *sysvariation_name
;
1200 cpu_index
= (unsigned) (cpu
->type
- 1);
1201 cpu_name
= "Unknown";
1202 if (cpu_index
< N(cpu_names
))
1203 cpu_name
= cpu_names
[cpu_index
];
1205 get_sysnames(hwrpb
->sys_type
, hwrpb
->sys_variation
,
1206 cpu
->type
, &systype_name
, &sysvariation_name
);
1208 nr_processors
= get_nr_processors(cpu
, hwrpb
->nr_processors
);
1210 seq_printf(f
, "cpu\t\t\t: Alpha\n"
1211 "cpu model\t\t: %s\n"
1212 "cpu variation\t\t: %ld\n"
1213 "cpu revision\t\t: %ld\n"
1214 "cpu serial number\t: %s\n"
1215 "system type\t\t: %s\n"
1216 "system variation\t: %s\n"
1217 "system revision\t\t: %ld\n"
1218 "system serial number\t: %s\n"
1219 "cycle frequency [Hz]\t: %lu %s\n"
1220 "timer frequency [Hz]\t: %lu.%02lu\n"
1221 "page size [bytes]\t: %ld\n"
1222 "phys. address bits\t: %ld\n"
1223 "max. addr. space #\t: %ld\n"
1224 "BogoMIPS\t\t: %lu.%02lu\n"
1225 "kernel unaligned acc\t: %ld (pc=%lx,va=%lx)\n"
1226 "user unaligned acc\t: %ld (pc=%lx,va=%lx)\n"
1227 "platform string\t\t: %s\n"
1228 "cpus detected\t\t: %d\n",
1229 cpu_name
, cpu
->variation
, cpu
->revision
,
1230 (char*)cpu
->serial_no
,
1231 systype_name
, sysvariation_name
, hwrpb
->sys_revision
,
1233 est_cycle_freq
? : hwrpb
->cycle_freq
,
1234 est_cycle_freq
? "est." : "",
1235 hwrpb
->intr_freq
/ 4096,
1236 (100 * hwrpb
->intr_freq
/ 4096) % 100,
1240 loops_per_jiffy
/ (500000/HZ
),
1241 (loops_per_jiffy
/ (5000/HZ
)) % 100,
1242 unaligned
[0].count
, unaligned
[0].pc
, unaligned
[0].va
,
1243 unaligned
[1].count
, unaligned
[1].pc
, unaligned
[1].va
,
1244 platform_string(), nr_processors
);
1247 seq_printf(f
, "cpus active\t\t: %d\n"
1248 "cpu active mask\t\t: %016lx\n",
1249 num_online_cpus(), cpus_addr(cpu_possible_map
)[0]);
1252 show_cache_size (f
, "L1 Icache", alpha_l1i_cacheshape
);
1253 show_cache_size (f
, "L1 Dcache", alpha_l1d_cacheshape
);
1254 show_cache_size (f
, "L2 cache", alpha_l2_cacheshape
);
1255 show_cache_size (f
, "L3 cache", alpha_l3_cacheshape
);
1261 read_mem_block(int *addr
, int stride
, int size
)
1263 long nloads
= size
/ stride
, cnt
, tmp
;
1265 __asm__
__volatile__(
1269 /* Next two XORs introduce an explicit data dependency between
1270 consecutive loads in the loop, which will give us true load
1278 : "=&r" (cnt
), "=&r" (nloads
), "=&r" (addr
), "=&r" (tmp
)
1279 : "r" (stride
), "1" (nloads
), "2" (addr
));
1281 return cnt
/ (size
/ stride
);
1284 #define CSHAPE(totalsize, linesize, assoc) \
1285 ((totalsize & ~0xff) | (linesize << 4) | assoc)
1287 /* ??? EV5 supports up to 64M, but did the systems with more than
1288 16M of BCACHE ever exist? */
1289 #define MAX_BCACHE_SIZE 16*1024*1024
1291 /* Note that the offchip caches are direct mapped on all Alphas. */
1293 external_cache_probe(int minsize
, int width
)
1295 int cycles
, prev_cycles
= 1000000;
1296 int stride
= 1 << width
;
1297 long size
= minsize
, maxsize
= MAX_BCACHE_SIZE
* 2;
1299 if (maxsize
> (max_low_pfn
+ 1) << PAGE_SHIFT
)
1300 maxsize
= 1 << (floor_log2(max_low_pfn
+ 1) + PAGE_SHIFT
);
1302 /* Get the first block cached. */
1303 read_mem_block(__va(0), stride
, size
);
1305 while (size
< maxsize
) {
1306 /* Get an average load latency in cycles. */
1307 cycles
= read_mem_block(__va(0), stride
, size
);
1308 if (cycles
> prev_cycles
* 2) {
1309 /* Fine, we exceed the cache. */
1310 printk("%ldK Bcache detected; load hit latency %d "
1311 "cycles, load miss latency %d cycles\n",
1312 size
>> 11, prev_cycles
, cycles
);
1313 return CSHAPE(size
>> 1, width
, 1);
1315 /* Try to get the next block cached. */
1316 read_mem_block(__va(size
), stride
, size
);
1317 prev_cycles
= cycles
;
1320 return -1; /* No BCACHE found. */
1324 determine_cpu_caches (unsigned int cpu_type
)
1326 int L1I
, L1D
, L2
, L3
;
1332 if (cpu_type
== EV4_CPU
)
1333 L1I
= CSHAPE(8*1024, 5, 1);
1335 L1I
= CSHAPE(16*1024, 5, 1);
1339 /* BIU_CTL is a write-only Abox register. PALcode has a
1340 shadow copy, and may be available from some versions
1341 of the CSERVE PALcall. If we can get it, then
1343 unsigned long biu_ctl, size;
1344 size = 128*1024 * (1 << ((biu_ctl >> 28) & 7));
1345 L2 = CSHAPE (size, 5, 1);
1347 Unfortunately, we can't rely on that.
1349 L2
= external_cache_probe(128*1024, 5);
1355 unsigned long car
, size
;
1357 L1I
= L1D
= CSHAPE(8*1024, 5, 1);
1360 car
= *(vuip
) phys_to_virt (0x120000078UL
);
1361 size
= 64*1024 * (1 << ((car
>> 5) & 7));
1362 /* No typo -- 8 byte cacheline size. Whodathunk. */
1363 L2
= (car
& 1 ? CSHAPE (size
, 3, 1) : -1);
1370 unsigned long sc_ctl
, width
;
1372 L1I
= L1D
= CSHAPE(8*1024, 5, 1);
1374 /* Check the line size of the Scache. */
1375 sc_ctl
= *(vulp
) phys_to_virt (0xfffff000a8UL
);
1376 width
= sc_ctl
& 0x1000 ? 6 : 5;
1377 L2
= CSHAPE (96*1024, width
, 3);
1379 /* BC_CONTROL and BC_CONFIG are write-only IPRs. PALcode
1380 has a shadow copy, and may be available from some versions
1381 of the CSERVE PALcall. If we can get it, then
1383 unsigned long bc_control, bc_config, size;
1384 size = 1024*1024 * (1 << ((bc_config & 7) - 1));
1385 L3 = (bc_control & 1 ? CSHAPE (size, width, 1) : -1);
1387 Unfortunately, we can't rely on that.
1389 L3
= external_cache_probe(1024*1024, width
);
1396 unsigned long cbox_config
, size
;
1398 if (cpu_type
== PCA56_CPU
) {
1399 L1I
= CSHAPE(16*1024, 6, 1);
1400 L1D
= CSHAPE(8*1024, 5, 1);
1402 L1I
= CSHAPE(32*1024, 6, 2);
1403 L1D
= CSHAPE(16*1024, 5, 1);
1407 cbox_config
= *(vulp
) phys_to_virt (0xfffff00008UL
);
1408 size
= 512*1024 * (1 << ((cbox_config
>> 12) & 3));
1411 L2
= ((cbox_config
>> 31) & 1 ? CSHAPE (size
, 6, 1) : -1);
1413 L2
= external_cache_probe(512*1024, 6);
1424 L1I
= L1D
= CSHAPE(64*1024, 6, 2);
1425 L2
= external_cache_probe(1024*1024, 6);
1431 L1I
= L1D
= CSHAPE(64*1024, 6, 2);
1432 L2
= CSHAPE(7*1024*1024/4, 6, 7);
1437 /* Nothing known about this cpu type. */
1438 L1I
= L1D
= L2
= L3
= 0;
1442 alpha_l1i_cacheshape
= L1I
;
1443 alpha_l1d_cacheshape
= L1D
;
1444 alpha_l2_cacheshape
= L2
;
1445 alpha_l3_cacheshape
= L3
;
1449 * We show only CPU #0 info.
1452 c_start(struct seq_file
*f
, loff_t
*pos
)
1454 return *pos
? NULL
: (char *)hwrpb
+ hwrpb
->processor_offset
;
1458 c_next(struct seq_file
*f
, void *v
, loff_t
*pos
)
1464 c_stop(struct seq_file
*f
, void *v
)
1468 struct seq_operations cpuinfo_op
= {
1472 .show
= show_cpuinfo
,
1477 alpha_panic_event(struct notifier_block
*this, unsigned long event
, void *ptr
)
1480 /* FIXME FIXME FIXME */
1481 /* If we are using SRM and serial console, just hard halt here. */
1482 if (alpha_using_srm
&& srmcons_output
)