Changeset 6b781c0 in mainline for kernel/arch/arm32/include/cpu.h
- Timestamp:
- 2007-06-08T15:02:49Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c03ee1c
- Parents:
- 3ee8a075
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/cpu.h
r3ee8a075 r6b781c0 1 1 /* 2 * Copyright (c) 200 3-2004 Jakub Jermar2 * Copyright (c) 2007 Michal Kebrt 3 3 * All rights reserved. 4 4 * … … 31 31 */ 32 32 /** @file 33 * @brief CPU identification. 33 34 */ 34 35 … … 39 40 #include <arch/asm.h> 40 41 42 43 /** Struct representing ARM CPU identifiaction. */ 41 44 typedef struct { 45 /** Implementator (vendor) number. */ 46 uint32_t imp_num; 47 48 /** Variant number. */ 49 uint32_t variant_num; 50 51 /** Architecture number. */ 52 uint32_t arch_num; 53 54 /** Primary part number. */ 55 uint32_t prim_part_num; 56 57 /** Revision number. */ 58 uint32_t rev_num; 42 59 } cpu_arch_t; 43 60 44 61 #endif 45 62
Note:
See TracChangeset
for help on using the changeset viewer.