Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 1 | /* |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 2 | * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved. |
Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <arch.h> |
| 8 | #include <asm_macros.S> |
| 9 | #include <cpuamu.h> |
| 10 | |
| 11 | .globl cpuamu_cnt_read |
| 12 | .globl cpuamu_cnt_write |
| 13 | .globl cpuamu_read_cpuamcntenset_el0 |
| 14 | .globl cpuamu_read_cpuamcntenclr_el0 |
| 15 | .globl cpuamu_write_cpuamcntenset_el0 |
| 16 | .globl cpuamu_write_cpuamcntenclr_el0 |
| 17 | |
| 18 | /* |
Antonio Nino Diaz | 033b4bb | 2018-10-25 16:52:26 +0100 | [diff] [blame] | 19 | * uint64_t cpuamu_cnt_read(unsigned int idx); |
Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 20 | * |
| 21 | * Given `idx`, read the corresponding AMU counter |
| 22 | * and return it in `x0`. |
| 23 | */ |
| 24 | func cpuamu_cnt_read |
| 25 | adr x1, 1f |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 26 | add x1, x1, x0, lsl #3 /* each mrs/ret sequence is 8 bytes */ |
| 27 | #if ENABLE_BTI |
| 28 | add x1, x1, x0, lsl #2 /* + "bti j" instruction */ |
| 29 | #endif |
Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 30 | br x1 |
| 31 | |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 32 | 1: read CPUAMEVCNTR0_EL0 |
| 33 | read CPUAMEVCNTR1_EL0 |
| 34 | read CPUAMEVCNTR2_EL0 |
| 35 | read CPUAMEVCNTR3_EL0 |
| 36 | read CPUAMEVCNTR4_EL0 |
Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 37 | endfunc cpuamu_cnt_read |
| 38 | |
| 39 | /* |
Antonio Nino Diaz | 033b4bb | 2018-10-25 16:52:26 +0100 | [diff] [blame] | 40 | * void cpuamu_cnt_write(unsigned int idx, uint64_t val); |
Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 41 | * |
| 42 | * Given `idx`, write `val` to the corresponding AMU counter. |
| 43 | */ |
| 44 | func cpuamu_cnt_write |
| 45 | adr x2, 1f |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 46 | add x2, x2, x0, lsl #3 /* each msr/ret sequence is 8 bytes */ |
| 47 | #if ENABLE_BTI |
| 48 | add x2, x2, x0, lsl #2 /* + "bti j" instruction */ |
| 49 | #endif |
Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 50 | br x2 |
| 51 | |
Alexei Fedorov | 90f2e88 | 2019-05-24 12:17:09 +0100 | [diff] [blame] | 52 | 1: write CPUAMEVCNTR0_EL0 |
| 53 | write CPUAMEVCNTR1_EL0 |
| 54 | write CPUAMEVCNTR2_EL0 |
| 55 | write CPUAMEVCNTR3_EL0 |
| 56 | write CPUAMEVCNTR4_EL0 |
Dimitris Papastamos | 0b00f8a | 2018-02-14 10:00:06 +0000 | [diff] [blame] | 57 | endfunc cpuamu_cnt_write |
| 58 | |
| 59 | /* |
| 60 | * unsigned int cpuamu_read_cpuamcntenset_el0(void); |
| 61 | * |
| 62 | * Read the `CPUAMCNTENSET_EL0` CPU register and return |
| 63 | * it in `x0`. |
| 64 | */ |
| 65 | func cpuamu_read_cpuamcntenset_el0 |
| 66 | mrs x0, CPUAMCNTENSET_EL0 |
| 67 | ret |
| 68 | endfunc cpuamu_read_cpuamcntenset_el0 |
| 69 | |
| 70 | /* |
| 71 | * unsigned int cpuamu_read_cpuamcntenclr_el0(void); |
| 72 | * |
| 73 | * Read the `CPUAMCNTENCLR_EL0` CPU register and return |
| 74 | * it in `x0`. |
| 75 | */ |
| 76 | func cpuamu_read_cpuamcntenclr_el0 |
| 77 | mrs x0, CPUAMCNTENCLR_EL0 |
| 78 | ret |
| 79 | endfunc cpuamu_read_cpuamcntenclr_el0 |
| 80 | |
| 81 | /* |
| 82 | * void cpuamu_write_cpuamcntenset_el0(unsigned int mask); |
| 83 | * |
| 84 | * Write `mask` to the `CPUAMCNTENSET_EL0` CPU register. |
| 85 | */ |
| 86 | func cpuamu_write_cpuamcntenset_el0 |
| 87 | msr CPUAMCNTENSET_EL0, x0 |
| 88 | ret |
| 89 | endfunc cpuamu_write_cpuamcntenset_el0 |
| 90 | |
| 91 | /* |
| 92 | * void cpuamu_write_cpuamcntenclr_el0(unsigned int mask); |
| 93 | * |
| 94 | * Write `mask` to the `CPUAMCNTENCLR_EL0` CPU register. |
| 95 | */ |
| 96 | func cpuamu_write_cpuamcntenclr_el0 |
| 97 | msr CPUAMCNTENCLR_EL0, x0 |
| 98 | ret |
| 99 | endfunc cpuamu_write_cpuamcntenclr_el0 |