Subversion Repositories HelenOS

Rev

Rev 2329 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2329 Rev 2356
Line 28... Line 28...
28
 
28
 
29
/** @addtogroup arm32
29
/** @addtogroup arm32
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
-
 
33
 *  @brief CPU identification.
33
 */
34
 */
34
 
35
 
35
#ifndef KERN_arm32_CPU_H_
36
#ifndef KERN_arm32_CPU_H_
36
#define KERN_arm32_CPU_H_
37
#define KERN_arm32_CPU_H_
37
 
38
 
38
#include <arch/types.h>
39
#include <arch/types.h>
39
#include <arch/asm.h>
40
#include <arch/asm.h>
40
 
41
 
41
 
42
 
42
/** Structure representing ARM CPU identifiaction. */
43
/** Struct representing ARM CPU identifiaction. */
43
typedef struct {
44
typedef struct {
44
    /** Implementator (vendor) number. */
45
    /** Implementator (vendor) number. */
45
    uint32_t    imp_num;
46
    uint32_t    imp_num;
46
    /** Variant number. */
47
    /** Variant number. */
47
    uint32_t    variant_num;
48
    uint32_t    variant_num;