root/arch/alpha/kernel/setup.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. init_pit
  2. find_end_memory
  3. setup_arch
  4. get_cpuinfo

   1 /*
   2  *  linux/arch/alpha/kernel/setup.c
   3  *
   4  *  Copyright (C) 1995  Linus Torvalds
   5  */
   6 
   7 /*
   8  * bootup setup stuff..
   9  */
  10 
  11 #include <linux/errno.h>
  12 #include <linux/sched.h>
  13 #include <linux/kernel.h>
  14 #include <linux/mm.h>
  15 #include <linux/stddef.h>
  16 #include <linux/unistd.h>
  17 #include <linux/ptrace.h>
  18 #include <linux/malloc.h>
  19 #include <linux/ldt.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 
  26 #include <asm/segment.h>
  27 #include <asm/pgtable.h>
  28 #include <asm/system.h>
  29 #include <asm/hwrpb.h>
  30 #include <asm/dma.h>
  31 #include <asm/io.h>
  32 
  33 struct hae hae = {
  34         0,
  35         (unsigned long*) HAE_ADDRESS
  36 };
  37 
  38 struct hwrpb_struct *hwrpb;
  39 
  40 unsigned char aux_device_present = 0xaa;
  41 
  42 /*
  43  * This is setup by the secondary bootstrap loader.  Because
  44  * the zero page is zeroed out as soon as the vm system is
  45  * initialized, we need to copy things out into a more permanent
  46  * place.
  47  */
  48 #define PARAM                   ZERO_PAGE
  49 #define COMMAND_LINE            ((char*)(PARAM + 0x0000))
  50 #define COMMAND_LINE_SIZE       256
  51 
  52 static char command_line[COMMAND_LINE_SIZE] = { 0, };
  53        char saved_command_line[COMMAND_LINE_SIZE];
  54 
  55 /*
  56  * The format of "screen_info" is strange, and due to early
  57  * i386-setup code. This is just enough to make the console
  58  * code think we're on a VGA color display.
  59  */
  60 struct screen_info screen_info = {
  61         0, 25,                  /* orig-x, orig-y */
  62         { 0, 0 },               /* unused */
  63         0,                      /* orig-video-page */
  64         0,                      /* orig-video-mode */
  65         80,                     /* orig-video-cols */
  66         0,0,0,                  /* ega_ax, ega_bx, ega_cx */
  67         25,                     /* orig-video-lines */
  68         1,                      /* orig-video-isVGA */
  69         16                      /* orig-video-points */
  70 };
  71 
  72 /*
  73  * Initialize Programmable Interval Timers with standard values.  Some
  74  * drivers depend on them being initialized (e.g., joystick driver).
  75  */
  76 static void init_pit (void)
     /* [previous][next][first][last][top][bottom][index][help] */
  77 {
  78 #if 0
  79     /*
  80      * Leave refresh timer alone---nobody should depend on
  81      * a particular value anyway.
  82      */
  83     outb(0x54, 0x43);   /* counter 1: refresh timer */
  84     outb(0x18, 0x41);
  85 #endif
  86 
  87     outb(0x36, 0x43);   /* counter 0: system timer */
  88     outb(0x00, 0x40);
  89     outb(0x00, 0x40);
  90 
  91     outb(0xb6, 0x43);   /* counter 2: speaker */
  92     outb(0x31, 0x42);
  93     outb(0x13, 0x42);
  94 }
  95 
  96 static unsigned long find_end_memory(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  97 {
  98         int i;
  99         unsigned long high = 0;
 100         struct memclust_struct * cluster;
 101         struct memdesc_struct * memdesc;
 102 
 103         memdesc = (struct memdesc_struct *)
 104           (INIT_HWRPB->mddt_offset + (unsigned long) INIT_HWRPB);
 105         cluster = memdesc->cluster;
 106         for (i = memdesc->numclusters ; i > 0; i--, cluster++) {
 107                 unsigned long tmp;
 108                 tmp = (cluster->start_pfn + cluster->numpages) << PAGE_SHIFT;
 109                 if (tmp > high)
 110                         high = tmp;
 111         }
 112         /* round it up to an even number of pages.. */
 113         high = (high + PAGE_SIZE) & (PAGE_MASK*2);
 114         return PAGE_OFFSET + high;
 115 }
 116 
 117 void setup_arch(char **cmdline_p,
     /* [previous][next][first][last][top][bottom][index][help] */
 118         unsigned long * memory_start_p, unsigned long * memory_end_p)
 119 {
 120         extern int _end;
 121 
 122         init_pit();
 123 
 124         hwrpb = (struct hwrpb_struct*)(IDENT_ADDR + INIT_HWRPB->phys_addr);
 125 
 126         set_hae(hae.cache);     /* sync HAE register w/hae_cache */
 127         wrmces(0x7);            /* reset enable correctable error reports */
 128 
 129         ROOT_DEV = to_kdev_t(0x0802);           /* sda2 */
 130         command_line[COMMAND_LINE_SIZE - 1] = '\0';
 131         strcpy(command_line, COMMAND_LINE);
 132         strcpy(saved_command_line, COMMAND_LINE);
 133 
 134         *cmdline_p = command_line;
 135         *memory_start_p = (unsigned long) &_end;
 136         *memory_end_p = find_end_memory();
 137 
 138 #if defined(CONFIG_ALPHA_LCA)
 139         *memory_start_p = lca_init(*memory_start_p, *memory_end_p);
 140 #elif defined(CONFIG_ALPHA_APECS)
 141         *memory_start_p = apecs_init(*memory_start_p, *memory_end_p);
 142 #elif defined(CONFIG_ALPHA_ALCOR)
 143         *memory_start_p = alcor_init(*memory_start_p, *memory_end_p);
 144 #endif
 145 }
 146 
 147 /*
 148  * BUFFER is PAGE_SIZE bytes long.
 149  */
 150 int get_cpuinfo(char *buffer)
     /* [previous][next][first][last][top][bottom][index][help] */
 151 {
 152         const char *cpu_name[] = {
 153                 "EV3", "EV4", "Unknown 1", "LCA4", "EV5", "EV45"
 154         };
 155 #       define SYSTYPE_NAME_BIAS        20
 156         const char *systype_name[] = {
 157                 "Cabriolet", "EB66P", "-18", "-17", "-16", "-15",
 158                 "-14", "-13", "-12", "-11", "-10", "-9", "-8",
 159                 "-7", "-6", "-5", "-4", "-3", "-2", "-1", "0",
 160                 "ADU", "Cobra", "Ruby", "Flamingo", "5", "Jensen",
 161                 "Pelican", "8", "Sable", "AXPvme", "Noname",
 162                 "Turbolaser", "Avanti", "Mustang", "Alcor", "16",
 163                 "Mikasa", "18", "EB66", "EB64+"
 164         };
 165         struct percpu_struct *cpu;
 166         unsigned int cpu_index;
 167         long sysname_index;
 168         extern struct unaligned_stat {
 169                 unsigned long count, va, pc;
 170         } unaligned[2];
 171 #       define N(a)     (sizeof(a)/sizeof(a[0]))
 172 
 173         cpu = (struct percpu_struct*)((char*)hwrpb + hwrpb->processor_offset);
 174         cpu_index = (unsigned) (cpu->type - 1);
 175         sysname_index = hwrpb->sys_type + SYSTYPE_NAME_BIAS;
 176 
 177         return sprintf(buffer,
 178                        "cpu\t\t\t: Alpha\n"
 179                        "cpu model\t\t: %s\n"
 180                        "cpu variation\t\t: %ld\n"
 181                        "cpu revision\t\t: %ld\n"
 182                        "cpu serial number\t: %s\n"
 183                        "system type\t\t: %s\n"
 184                        "system variation\t: %ld\n"
 185                        "system revision\t\t: %ld\n"
 186                        "system serial number\t: %s\n"
 187                        "cycle frequency [Hz]\t: %lu\n"
 188                        "timer frequency [Hz]\t: %lu.%02lu\n"
 189                        "page size [bytes]\t: %ld\n"
 190                        "phys. address bits\t: %ld\n"
 191                        "max. addr. space #\t: %ld\n"
 192                        "BogoMIPS\t\t: %lu.%02lu\n"
 193                        "kernel unaligned acc\t: %ld (pc=%lx,va=%lx)\n"
 194                        "user unaligned acc\t: %ld (pc=%lx,va=%lx)\n",
 195 
 196                        (cpu_index < N(cpu_name)
 197                         ? cpu_name[cpu_index] : "Unknown"),
 198                        cpu->variation, cpu->revision, (char*)cpu->serial_no,
 199                        (sysname_index < N(systype_name)
 200                         ? systype_name[sysname_index] : "Unknown"),
 201                        hwrpb->sys_variation, hwrpb->sys_revision,
 202                        (char*)hwrpb->ssn,
 203                        hwrpb->cycle_freq,
 204                        hwrpb->intr_freq / 4096,
 205                        (100 * hwrpb->intr_freq / 4096) % 100,
 206                        hwrpb->pagesize,
 207                        hwrpb->pa_bits,
 208                        hwrpb->max_asn,
 209                        loops_per_sec / 500000, (loops_per_sec / 5000) % 100,
 210                        unaligned[0].count, unaligned[0].pc, unaligned[0].va,
 211                        unaligned[1].count, unaligned[1].pc, unaligned[1].va);
 212 #       undef N
 213 }

/* [previous][next][first][last][top][bottom][index][help] */