Rev 2410 | Rev 4018 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2410 | Rev 2464 | ||
|---|---|---|---|
| Line 35... | Line 35... | ||
| 35 | */ |
35 | */ |
| 36 | 36 | ||
| 37 | #ifndef KERN_arm32_REGUTILS_H_ |
37 | #ifndef KERN_arm32_REGUTILS_H_ |
| 38 | #define KERN_arm32_REGUTILS_H_ |
38 | #define KERN_arm32_REGUTILS_H_ |
| 39 | 39 | ||
| 40 | - | ||
| 41 | #define STATUS_REG_IRQ_DISABLED_BIT (1 << 7) |
40 | #define STATUS_REG_IRQ_DISABLED_BIT (1 << 7) |
| 42 | #define STATUS_REG_MODE_MASK 0x1f |
41 | #define STATUS_REG_MODE_MASK 0x1f |
| 43 | 42 | ||
| 44 | #define CP15_R1_HIGH_VECTORS_BIT (1 << 13) |
43 | #define CP15_R1_HIGH_VECTORS_BIT (1 << 13) |
| 45 | 44 | ||
| Line 51... | Line 50... | ||
| 51 | #define SUPERVISOR_MODE 0x13 |
50 | #define SUPERVISOR_MODE 0x13 |
| 52 | #define ABORT_MODE 0x17 |
51 | #define ABORT_MODE 0x17 |
| 53 | #define UNDEFINED_MODE 0x1b |
52 | #define UNDEFINED_MODE 0x1b |
| 54 | #define SYSTEM_MODE 0x1f |
53 | #define SYSTEM_MODE 0x1f |
| 55 | 54 | ||
| 56 | - | ||
| 57 | /* [CS]PRS manipulation macros */ |
55 | /* [CS]PRS manipulation macros */ |
| 58 | #define GEN_STATUS_READ(nm,reg) \ |
56 | #define GEN_STATUS_READ(nm,reg) \ |
| 59 | static inline uint32_t nm## _status_reg_read(void) \ |
57 | static inline uint32_t nm## _status_reg_read(void) \ |
| 60 | { \ |
58 | { \ |
| 61 | uint32_t retval; \ |
59 | uint32_t retval; \ |
| 62 | asm volatile("mrs %0, " #reg : "=r"(retval)); \ |
60 | asm volatile("mrs %0, " #reg : "=r" (retval)); \ |
| 63 | return retval; \ |
61 | return retval; \ |
| 64 | } |
62 | } |
| 65 | 63 | ||
| 66 | #define GEN_STATUS_WRITE(nm,reg,fieldname, field) \ |
64 | #define GEN_STATUS_WRITE(nm,reg,fieldname, field) \ |
| 67 | static inline void nm## _status_reg_ ##fieldname## _write(uint32_t value) \ |
65 | static inline void nm## _status_reg_ ##fieldname## _write(uint32_t value) \ |
| 68 | { \ |
66 | { \ |
| 69 | asm volatile("msr " #reg "_" #field ", %0" : : "r"(value)); \ |
67 | asm volatile("msr " #reg "_" #field ", %0" : : "r" (value)); \ |
| 70 | } |
68 | } |
| 71 | 69 | ||
| 72 | 70 | ||
| 73 | /** Returns the value of CPSR (Current Program Status Register). */ |
71 | /** Returns the value of CPSR (Current Program Status Register). */ |
| 74 | GEN_STATUS_READ(current, cpsr) |
72 | GEN_STATUS_READ(current, cpsr) |
| 75 | 73 | ||