Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2188 → Rev 2189

/branches/arm/kernel/arch/arm32/src/cpu/cpu.c
1,5 → 1,5
/*
* Copyright (c) 2003-2004 Jakub Jermar
* Copyright (c) 2007 Michal Kebrt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
32,21 → 32,94
/** @file
*/
 
#include <arch/cpu.h>
#include <cpu.h>
#include <arch.h>
#include <print.h>
 
 
/** Implementators (vendor) names */
static char * imp_data[] = {
"?",
"ARM Ltd", /* 0x41 */
"", /* 0x42 */
"", /* 0x43 */
"Digital Equipment Corporation", /* 0x44 */
"", "", "", "", "", "", "", "", "", "", "", /* 0x4f */
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", /* 0x5f */
"", "", "", "", "", "", "", "", "", /* 0x68 */
"Intel Corporation" /* 0x69 */
};
 
/** Length of imp_data array */
static int imp_data_length = sizeof(imp_data)/sizeof(char *);
 
/** Architecture names */
static char * arch_data[] = {
"?", /* 0x0 */
"4", /* 0x1 */
"4T", /* 0x2 */
"5", /* 0x3 */
"5T", /* 0x4 */
"5TE", /* 0x5 */
"5TEJ", /* 0x6 */
"6" /* 0x7 */
};
 
/** Length of arch_data array */
static int arch_data_length = sizeof(arch_data)/sizeof(char *);
 
 
 
void cpu_arch_init(void)
{
/* TODO */
}
 
void cpu_identify(void)
/**
* Retrieves processor identification from CP15 register 0.
*
* @param cpu structure for storing identification
*/
static void arch_cpu_identify(cpu_arch_t * cpu)
{
/* TODO */
uint32_t ident;
asm volatile (
"mrc p15, 0, %0, c0, c0, 0 \n"
: "=r" (ident)
);
 
cpu->imp_num = ident >> 24;
cpu->variant_num = (ident << 8) >> 28;
cpu->arch_num = (ident << 12) >> 28;
cpu->prim_part_num = (ident << 16) >> 20;
cpu->rev_num = (ident << 28) >> 28;
}
 
 
void cpu_identify(void)
{
arch_cpu_identify(&CPU->arch);
}
 
 
void cpu_print_report(cpu_t *m)
{
/* TODO */
char * vendor = imp_data[0];
char * architecture = arch_data[0];
cpu_arch_t * cpu_arch = &m->arch;
 
if ( (cpu_arch->imp_num) > 0 && (cpu_arch->imp_num < (imp_data_length + 0x40)) ) {
vendor = imp_data[cpu_arch->imp_num - 0x40];
}
 
if ( (cpu_arch->arch_num) > 0 && (cpu_arch->arch_num < arch_data_length) ) {
architecture = arch_data[cpu_arch->arch_num];
}
 
printf("vendor: %s, architecture: ARM %s, part number: %x, variant: %x, revision: %x",
vendor, architecture, cpu_arch->prim_part_num, cpu_arch->variant_num, cpu_arch->rev_num);
 
}
 
/** @}