[1] | 1 | /* |
---|
| 2 | * hal_special.h - Generic Special Registers Access API definition. |
---|
[17] | 3 | * |
---|
[101] | 4 | * Authors Alain Greiner (2016,2017) |
---|
[1] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
[17] | 7 | * |
---|
[1] | 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
| 24 | #ifndef _HAL_CPU_H_ |
---|
| 25 | #define _HAL_CPU_H_ |
---|
| 26 | |
---|
[457] | 27 | #include <hal_shared_types.h> |
---|
| 28 | #include <hal_kernel_types.h> |
---|
[1] | 29 | |
---|
| 30 | /**** Forward declarations ***/ |
---|
| 31 | |
---|
| 32 | struct thread_s; |
---|
| 33 | |
---|
| 34 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 35 | // Generic Special Registers Access API (implementation in hal_special.c) |
---|
[17] | 36 | // |
---|
[296] | 37 | // ALMOS-MKH uses the following API to access the core protected registers. |
---|
[1] | 38 | /////////////////////////////////////////////////////////////////////////////////////////// |
---|
| 39 | |
---|
| 40 | /***************************************************************************************** |
---|
[279] | 41 | * This function returns the calling core status register value. |
---|
| 42 | ****************************************************************************************/ |
---|
[480] | 43 | inline reg_t hal_get_sr( void ); |
---|
[279] | 44 | |
---|
| 45 | /***************************************************************************************** |
---|
[1] | 46 | * This function returns the global core identifier from the calling core register. |
---|
| 47 | ****************************************************************************************/ |
---|
[480] | 48 | inline gid_t hal_get_gid( void ); |
---|
[1] | 49 | |
---|
| 50 | /***************************************************************************************** |
---|
[121] | 51 | * This function returns the current value of the hardware cycles counter. |
---|
[408] | 52 | * This cycle counter is reset when the core is initialised (at each boot). |
---|
[121] | 53 | ****************************************************************************************/ |
---|
[480] | 54 | inline reg_t hal_time_stamp( void ); |
---|
[121] | 55 | |
---|
| 56 | /***************************************************************************************** |
---|
[296] | 57 | * This function returns the content of the calling core private cycles counter, |
---|
| 58 | * taking into account overflow if the core hardware register is not 64 bits. |
---|
[101] | 59 | * This cycle counter is reset when the core is initialised (at each boot). |
---|
[1] | 60 | ****************************************************************************************/ |
---|
[480] | 61 | cycle_t hal_get_cycles( void ); |
---|
[1] | 62 | |
---|
| 63 | /***************************************************************************************** |
---|
| 64 | * This function returns the current thread pointer from the calling core register. |
---|
| 65 | ****************************************************************************************/ |
---|
[480] | 66 | inline struct thread_s * hal_get_current_thread( void ); |
---|
[1] | 67 | |
---|
| 68 | /***************************************************************************************** |
---|
| 69 | * This function registers a thread pointer in the calling core register. |
---|
| 70 | ****************************************************************************************/ |
---|
| 71 | void hal_set_current_thread( struct thread_s * thread ); |
---|
| 72 | |
---|
| 73 | /***************************************************************************************** |
---|
| 74 | * This function writes into the proper core register to enable the floating point unit. |
---|
| 75 | ****************************************************************************************/ |
---|
[480] | 76 | void hal_fpu_enable( void ); |
---|
[1] | 77 | |
---|
| 78 | /***************************************************************************************** |
---|
| 79 | * This function writes into the proper core register to disable the floating point unit. |
---|
| 80 | ****************************************************************************************/ |
---|
[480] | 81 | void hal_fpu_disable( void ); |
---|
[1] | 82 | |
---|
| 83 | /***************************************************************************************** |
---|
| 84 | * This function returns the current value of stack pointer from core register. |
---|
| 85 | ****************************************************************************************/ |
---|
[480] | 86 | uint32_t hal_get_stack( void ); |
---|
[1] | 87 | |
---|
| 88 | /***************************************************************************************** |
---|
| 89 | * This function registers a new value in the core stack pointer and returns previous one. |
---|
| 90 | ****************************************************************************************/ |
---|
[480] | 91 | inline uint32_t hal_set_stack( void * new_val ); |
---|
[1] | 92 | |
---|
| 93 | /***************************************************************************************** |
---|
| 94 | * This function returns the faulty address in case of address exception. |
---|
| 95 | ****************************************************************************************/ |
---|
[480] | 96 | uint32_t hal_get_bad_vaddr( void ); |
---|
[1] | 97 | |
---|
| 98 | /***************************************************************************************** |
---|
| 99 | * This function makes an uncachable read to a 32 bits variable in local memory. |
---|
| 100 | * @ ptr : pointer on the variable |
---|
| 101 | * @ returns the value |
---|
| 102 | ****************************************************************************************/ |
---|
| 103 | uint32_t hal_uncached_read( uint32_t * ptr ); |
---|
| 104 | |
---|
| 105 | /***************************************************************************************** |
---|
| 106 | * This function invalidates the cache line containing a given address. |
---|
| 107 | * @ ptr : address in local memory |
---|
| 108 | ****************************************************************************************/ |
---|
| 109 | void hal_invalid_dcache_line( void * ptr ); |
---|
| 110 | |
---|
| 111 | /***************************************************************************************** |
---|
| 112 | * This blocking function flushes the write buffer to synchronize all pending writes. |
---|
| 113 | ****************************************************************************************/ |
---|
[480] | 114 | void hal_fence( void ); |
---|
[1] | 115 | |
---|
| 116 | /***************************************************************************************** |
---|
[401] | 117 | * This forbids code reordering accross this barrier by the compiler. |
---|
[1] | 118 | ****************************************************************************************/ |
---|
[480] | 119 | void hal_rdbar( void ); |
---|
[1] | 120 | |
---|
| 121 | /***************************************************************************************** |
---|
| 122 | * This function forces the calling core in idle-low-power mode. |
---|
| 123 | ****************************************************************************************/ |
---|
[480] | 124 | void hal_core_sleep( void ) __attribute__((__noreturn__)); |
---|
[1] | 125 | |
---|
| 126 | /***************************************************************************************** |
---|
[407] | 127 | * This function returns after approximately <delay> cycles. |
---|
| 128 | * @ delay : number of cycles. |
---|
[1] | 129 | ****************************************************************************************/ |
---|
[407] | 130 | void hal_fixed_delay( uint32_t delay ); |
---|
[1] | 131 | |
---|
[16] | 132 | /***************************************************************************************** |
---|
[17] | 133 | * This function returns information on MMU exceptions : |
---|
[16] | 134 | * @ mmu_ins_excp_code : [out] instruction fetch exception code |
---|
| 135 | * @ mmu_ins_bad_vaddr : [out] instruction fetch faulty virtual address |
---|
| 136 | * @ mmu_dat_excp_code : [out] data access exception code |
---|
| 137 | * @ mmu_dat_bad_vaddr : [out] data access faulty virtual address |
---|
| 138 | ****************************************************************************************/ |
---|
| 139 | void hal_get_mmu_excp( intptr_t * mmu_ins_excp_code, |
---|
| 140 | intptr_t * mmu_ins_bad_vaddr, |
---|
| 141 | intptr_t * mmu_dat_excp_code, |
---|
| 142 | intptr_t * mmu_dat_bad_vaddr ); |
---|
[1] | 143 | |
---|
| 144 | |
---|
| 145 | #endif /* _HAL_SPECIAL_H_ */ |
---|