The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/riscv/riscv/identcpu.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2015 Ruslan Bukin <br@bsdpad.com>
    3  * All rights reserved.
    4  *
    5  * Portions of this software were developed by SRI International and the
    6  * University of Cambridge Computer Laboratory under DARPA/AFRL contract
    7  * FA8750-10-C-0237 ("CTSRD"), as part of the DARPA CRASH research programme.
    8  *
    9  * Portions of this software were developed by the University of Cambridge
   10  * Computer Laboratory as part of the CTSRD Project, with support from the
   11  * UK Higher Education Innovation Fund (HEIF).
   12  *
   13  * Redistribution and use in source and binary forms, with or without
   14  * modification, are permitted provided that the following conditions
   15  * are met:
   16  * 1. Redistributions of source code must retain the above copyright
   17  *    notice, this list of conditions and the following disclaimer.
   18  * 2. Redistributions in binary form must reproduce the above copyright
   19  *    notice, this list of conditions and the following disclaimer in the
   20  *    documentation and/or other materials provided with the distribution.
   21  *
   22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   32  * SUCH DAMAGE.
   33  */
   34 
   35 #include <sys/cdefs.h>
   36 __FBSDID("$FreeBSD$");
   37 
   38 #include <sys/param.h>
   39 #include <sys/pcpu.h>
   40 #include <sys/sysctl.h>
   41 #include <sys/systm.h>
   42 
   43 #include <machine/cpu.h>
   44 #include <machine/cpufunc.h>
   45 #include <machine/trap.h>
   46 
   47 char machine[] = "riscv";
   48 
   49 SYSCTL_STRING(_hw, HW_MACHINE, machine, CTLFLAG_RD, machine, 0,
   50     "Machine class");
   51 
   52 struct cpu_desc {
   53         u_int           cpu_impl;
   54         u_int           cpu_part_num;
   55         const char      *cpu_impl_name;
   56         const char      *cpu_part_name;
   57 };
   58 
   59 struct cpu_desc cpu_desc[MAXCPU];
   60 
   61 struct cpu_parts {
   62         u_int           part_id;
   63         const char      *part_name;
   64 };
   65 #define CPU_PART_NONE   { -1, "Unknown Processor" }
   66 
   67 struct cpu_implementers {
   68         u_int                   impl_id;
   69         const char              *impl_name;
   70         /*
   71          * Part number is implementation defined
   72          * so each vendor will have its own set of values and names.
   73          */
   74         const struct cpu_parts  *cpu_parts;
   75 };
   76 #define CPU_IMPLEMENTER_NONE    { 0, "Unknown Implementer", cpu_parts_none }
   77 
   78 /*
   79  * Per-implementer table of (PartNum, CPU Name) pairs.
   80  */
   81 /* UC Berkeley */
   82 static const struct cpu_parts cpu_parts_ucb[] = {
   83         { CPU_PART_RV32I,       "RV32I" },
   84         { CPU_PART_RV32E,       "RV32E" },
   85         { CPU_PART_RV64I,       "RV64I" },
   86         { CPU_PART_RV128I,      "RV128I" },
   87         CPU_PART_NONE,
   88 };
   89 
   90 /* Unknown */
   91 static const struct cpu_parts cpu_parts_none[] = {
   92         CPU_PART_NONE,
   93 };
   94 
   95 /*
   96  * Implementers table.
   97  */
   98 const struct cpu_implementers cpu_implementers[] = {
   99         { CPU_IMPL_UCB_ROCKET,  "UC Berkeley Rocket",   cpu_parts_ucb },
  100         CPU_IMPLEMENTER_NONE,
  101 };
  102 
  103 void
  104 identify_cpu(void)
  105 {
  106         const struct cpu_parts *cpu_partsp;
  107         uint32_t part_id;
  108         uint32_t impl_id;
  109         uint64_t mimpid;
  110         uint64_t mcpuid;
  111         u_int cpu;
  112         size_t i;
  113 
  114         cpu_partsp = NULL;
  115 
  116         mimpid = machine_command(ECALL_MIMPID_GET, 0);
  117         mcpuid = machine_command(ECALL_MCPUID_GET, 0);
  118 
  119         /* SMPTODO: use mhartid ? */
  120         cpu = PCPU_GET(cpuid);
  121 
  122         impl_id = CPU_IMPL(mimpid);
  123         for (i = 0; i < nitems(cpu_implementers); i++) {
  124                 if (impl_id == cpu_implementers[i].impl_id ||
  125                     cpu_implementers[i].impl_id == 0) {
  126                         cpu_desc[cpu].cpu_impl = impl_id;
  127                         cpu_desc[cpu].cpu_impl_name = cpu_implementers[i].impl_name;
  128                         cpu_partsp = cpu_implementers[i].cpu_parts;
  129                         break;
  130                 }
  131         }
  132 
  133         part_id = CPU_PART(mcpuid);
  134         for (i = 0; &cpu_partsp[i] != NULL; i++) {
  135                 if (part_id == cpu_partsp[i].part_id ||
  136                     cpu_partsp[i].part_id == -1) {
  137                         cpu_desc[cpu].cpu_part_num = part_id;
  138                         cpu_desc[cpu].cpu_part_name = cpu_partsp[i].part_name;
  139                         break;
  140                 }
  141         }
  142 
  143         /* Print details for boot CPU or if we want verbose output */
  144         if (cpu == 0 || bootverbose) {
  145                 printf("CPU(%d): %s %s\n", cpu,
  146                     cpu_desc[cpu].cpu_impl_name,
  147                     cpu_desc[cpu].cpu_part_name);
  148         }
  149 }

Cache object: 718c49893439ca49ee10cf4c01c39c0e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.