.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * linux/drivers/clocksource/arm_arch_timer.c |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2011 ARM Ltd. |
---|
5 | 6 | * All Rights Reserved |
---|
6 | | - * |
---|
7 | | - * This program is free software; you can redistribute it and/or modify |
---|
8 | | - * it under the terms of the GNU General Public License version 2 as |
---|
9 | | - * published by the Free Software Foundation. |
---|
10 | 7 | */ |
---|
11 | 8 | |
---|
12 | | -#define pr_fmt(fmt) "arm_arch_timer: " fmt |
---|
| 9 | +#define pr_fmt(fmt) "arch_timer: " fmt |
---|
13 | 10 | |
---|
14 | 11 | #include <linux/init.h> |
---|
15 | 12 | #include <linux/kernel.h> |
---|
.. | .. |
---|
33 | 30 | |
---|
34 | 31 | #include <clocksource/arm_arch_timer.h> |
---|
35 | 32 | |
---|
36 | | -#undef pr_fmt |
---|
37 | | -#define pr_fmt(fmt) "arch_timer: " fmt |
---|
38 | | - |
---|
39 | 33 | #define CNTTIDR 0x08 |
---|
40 | 34 | #define CNTTIDR_VIRT(n) (BIT(1) << ((n) * 4)) |
---|
41 | 35 | |
---|
.. | .. |
---|
52 | 46 | #define CNTFRQ 0x10 |
---|
53 | 47 | #define CNTP_TVAL 0x28 |
---|
54 | 48 | #define CNTP_CTL 0x2c |
---|
55 | | -#define CNTCVAL_LO 0x30 |
---|
56 | | -#define CNTCVAL_HI 0x34 |
---|
57 | 49 | #define CNTV_TVAL 0x38 |
---|
58 | 50 | #define CNTV_CTL 0x3c |
---|
59 | 51 | |
---|
.. | .. |
---|
77 | 69 | static bool arch_timer_c3stop; |
---|
78 | 70 | static bool arch_timer_mem_use_virtual; |
---|
79 | 71 | static bool arch_counter_suspend_stop; |
---|
80 | | -static bool vdso_default = true; |
---|
| 72 | +#ifdef CONFIG_GENERIC_GETTIMEOFDAY |
---|
| 73 | +static enum vdso_clock_mode vdso_default = VDSO_CLOCKMODE_ARCHTIMER; |
---|
| 74 | +#else |
---|
| 75 | +static enum vdso_clock_mode vdso_default = VDSO_CLOCKMODE_NONE; |
---|
| 76 | +#endif /* CONFIG_GENERIC_GETTIMEOFDAY */ |
---|
81 | 77 | |
---|
82 | 78 | static cpumask_t evtstrm_available = CPU_MASK_NONE; |
---|
83 | 79 | static bool evtstrm_enable = IS_ENABLED(CONFIG_ARM_ARCH_TIMER_EVTSTREAM); |
---|
.. | .. |
---|
152 | 148 | } |
---|
153 | 149 | |
---|
154 | 150 | return val; |
---|
| 151 | +} |
---|
| 152 | + |
---|
| 153 | +static notrace u64 arch_counter_get_cntpct_stable(void) |
---|
| 154 | +{ |
---|
| 155 | + return __arch_counter_get_cntpct_stable(); |
---|
| 156 | +} |
---|
| 157 | + |
---|
| 158 | +static notrace u64 arch_counter_get_cntpct(void) |
---|
| 159 | +{ |
---|
| 160 | + return __arch_counter_get_cntpct(); |
---|
| 161 | +} |
---|
| 162 | + |
---|
| 163 | +static notrace u64 arch_counter_get_cntvct_stable(void) |
---|
| 164 | +{ |
---|
| 165 | + return __arch_counter_get_cntvct_stable(); |
---|
| 166 | +} |
---|
| 167 | + |
---|
| 168 | +static notrace u64 arch_counter_get_cntvct(void) |
---|
| 169 | +{ |
---|
| 170 | + return __arch_counter_get_cntvct(); |
---|
155 | 171 | } |
---|
156 | 172 | |
---|
157 | 173 | /* |
---|
.. | .. |
---|
367 | 383 | DEFINE_PER_CPU(const struct arch_timer_erratum_workaround *, timer_unstable_counter_workaround); |
---|
368 | 384 | EXPORT_SYMBOL_GPL(timer_unstable_counter_workaround); |
---|
369 | 385 | |
---|
370 | | -DEFINE_STATIC_KEY_FALSE(arch_timer_read_ool_enabled); |
---|
371 | | -EXPORT_SYMBOL_GPL(arch_timer_read_ool_enabled); |
---|
| 386 | +static atomic_t timer_unstable_counter_workaround_in_use = ATOMIC_INIT(0); |
---|
372 | 387 | |
---|
373 | 388 | static void erratum_set_next_event_tval_generic(const int access, unsigned long evt, |
---|
374 | 389 | struct clock_event_device *clk) |
---|
.. | .. |
---|
381 | 396 | ctrl &= ~ARCH_TIMER_CTRL_IT_MASK; |
---|
382 | 397 | |
---|
383 | 398 | if (access == ARCH_TIMER_PHYS_ACCESS) { |
---|
384 | | - cval = evt + arch_counter_get_cntpct(); |
---|
| 399 | + cval = evt + arch_counter_get_cntpct_stable(); |
---|
385 | 400 | write_sysreg(cval, cntp_cval_el0); |
---|
386 | 401 | } else { |
---|
387 | | - cval = evt + arch_counter_get_cntvct(); |
---|
| 402 | + cval = evt + arch_counter_get_cntvct_stable(); |
---|
388 | 403 | write_sysreg(cval, cntv_cval_el0); |
---|
389 | 404 | } |
---|
390 | 405 | |
---|
.. | .. |
---|
465 | 480 | .set_next_event_virt = erratum_set_next_event_tval_virt, |
---|
466 | 481 | }, |
---|
467 | 482 | #endif |
---|
| 483 | +#ifdef CONFIG_ARM64_ERRATUM_1418040 |
---|
| 484 | + { |
---|
| 485 | + .match_type = ate_match_local_cap_id, |
---|
| 486 | + .id = (void *)ARM64_WORKAROUND_1418040, |
---|
| 487 | + .desc = "ARM erratum 1418040", |
---|
| 488 | + .disable_compat_vdso = true, |
---|
| 489 | + }, |
---|
| 490 | +#endif |
---|
468 | 491 | }; |
---|
469 | 492 | |
---|
470 | 493 | typedef bool (*ate_match_fn_t)(const struct arch_timer_erratum_workaround *, |
---|
.. | .. |
---|
539 | 562 | per_cpu(timer_unstable_counter_workaround, i) = wa; |
---|
540 | 563 | } |
---|
541 | 564 | |
---|
542 | | - /* |
---|
543 | | - * Use the locked version, as we're called from the CPU |
---|
544 | | - * hotplug framework. Otherwise, we end-up in deadlock-land. |
---|
545 | | - */ |
---|
546 | | - static_branch_enable_cpuslocked(&arch_timer_read_ool_enabled); |
---|
| 565 | + if (wa->read_cntvct_el0 || wa->read_cntpct_el0) |
---|
| 566 | + atomic_set(&timer_unstable_counter_workaround_in_use, 1); |
---|
547 | 567 | |
---|
548 | 568 | /* |
---|
549 | 569 | * Don't use the vdso fastpath if errata require using the |
---|
.. | .. |
---|
552 | 572 | * change both the default value and the vdso itself. |
---|
553 | 573 | */ |
---|
554 | 574 | if (wa->read_cntvct_el0) { |
---|
555 | | - clocksource_counter.archdata.vdso_direct = false; |
---|
556 | | - vdso_default = false; |
---|
| 575 | + clocksource_counter.vdso_clock_mode = VDSO_CLOCKMODE_NONE; |
---|
| 576 | + vdso_default = VDSO_CLOCKMODE_NONE; |
---|
| 577 | + } else if (wa->disable_compat_vdso && vdso_default != VDSO_CLOCKMODE_NONE) { |
---|
| 578 | + vdso_default = VDSO_CLOCKMODE_ARCHTIMER_NOCOMPAT; |
---|
| 579 | + clocksource_counter.vdso_clock_mode = vdso_default; |
---|
557 | 580 | } |
---|
558 | 581 | } |
---|
559 | 582 | |
---|
560 | 583 | static void arch_timer_check_ool_workaround(enum arch_timer_erratum_match_type type, |
---|
561 | 584 | void *arg) |
---|
562 | 585 | { |
---|
563 | | - const struct arch_timer_erratum_workaround *wa; |
---|
| 586 | + const struct arch_timer_erratum_workaround *wa, *__wa; |
---|
564 | 587 | ate_match_fn_t match_fn = NULL; |
---|
565 | 588 | bool local = false; |
---|
566 | 589 | |
---|
.. | .. |
---|
584 | 607 | if (!wa) |
---|
585 | 608 | return; |
---|
586 | 609 | |
---|
587 | | - if (needs_unstable_timer_counter_workaround()) { |
---|
588 | | - const struct arch_timer_erratum_workaround *__wa; |
---|
589 | | - __wa = __this_cpu_read(timer_unstable_counter_workaround); |
---|
590 | | - if (__wa && wa != __wa) |
---|
591 | | - pr_warn("Can't enable workaround for %s (clashes with %s\n)", |
---|
592 | | - wa->desc, __wa->desc); |
---|
| 610 | + __wa = __this_cpu_read(timer_unstable_counter_workaround); |
---|
| 611 | + if (__wa && wa != __wa) |
---|
| 612 | + pr_warn("Can't enable workaround for %s (clashes with %s\n)", |
---|
| 613 | + wa->desc, __wa->desc); |
---|
593 | 614 | |
---|
594 | | - if (__wa) |
---|
595 | | - return; |
---|
596 | | - } |
---|
| 615 | + if (__wa) |
---|
| 616 | + return; |
---|
597 | 617 | |
---|
598 | 618 | arch_timer_enable_workaround(wa, local); |
---|
599 | 619 | pr_info("Enabling %s workaround for %s\n", |
---|
600 | 620 | local ? "local" : "global", wa->desc); |
---|
601 | 621 | } |
---|
602 | 622 | |
---|
603 | | -#define erratum_handler(fn, r, ...) \ |
---|
604 | | -({ \ |
---|
605 | | - bool __val; \ |
---|
606 | | - if (needs_unstable_timer_counter_workaround()) { \ |
---|
607 | | - const struct arch_timer_erratum_workaround *__wa; \ |
---|
608 | | - __wa = __this_cpu_read(timer_unstable_counter_workaround); \ |
---|
609 | | - if (__wa && __wa->fn) { \ |
---|
610 | | - r = __wa->fn(__VA_ARGS__); \ |
---|
611 | | - __val = true; \ |
---|
612 | | - } else { \ |
---|
613 | | - __val = false; \ |
---|
614 | | - } \ |
---|
615 | | - } else { \ |
---|
616 | | - __val = false; \ |
---|
617 | | - } \ |
---|
618 | | - __val; \ |
---|
619 | | -}) |
---|
620 | | - |
---|
621 | 623 | static bool arch_timer_this_cpu_has_cntvct_wa(void) |
---|
622 | 624 | { |
---|
623 | | - const struct arch_timer_erratum_workaround *wa; |
---|
| 625 | + return has_erratum_handler(read_cntvct_el0); |
---|
| 626 | +} |
---|
624 | 627 | |
---|
625 | | - wa = __this_cpu_read(timer_unstable_counter_workaround); |
---|
626 | | - return wa && wa->read_cntvct_el0; |
---|
| 628 | +static bool arch_timer_counter_has_wa(void) |
---|
| 629 | +{ |
---|
| 630 | + return atomic_read(&timer_unstable_counter_workaround_in_use); |
---|
627 | 631 | } |
---|
628 | 632 | #else |
---|
629 | 633 | #define arch_timer_check_ool_workaround(t,a) do { } while(0) |
---|
630 | | -#define erratum_set_next_event_tval_virt(...) ({BUG(); 0;}) |
---|
631 | | -#define erratum_set_next_event_tval_phys(...) ({BUG(); 0;}) |
---|
632 | | -#define erratum_handler(fn, r, ...) ({false;}) |
---|
633 | 634 | #define arch_timer_this_cpu_has_cntvct_wa() ({false;}) |
---|
| 635 | +#define arch_timer_counter_has_wa() ({false;}) |
---|
634 | 636 | #endif /* CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND */ |
---|
635 | 637 | |
---|
636 | 638 | static __always_inline irqreturn_t timer_handler(const int access, |
---|
.. | .. |
---|
723 | 725 | static int arch_timer_set_next_event_virt(unsigned long evt, |
---|
724 | 726 | struct clock_event_device *clk) |
---|
725 | 727 | { |
---|
726 | | - int ret; |
---|
727 | | - |
---|
728 | | - if (erratum_handler(set_next_event_virt, ret, evt, clk)) |
---|
729 | | - return ret; |
---|
730 | | - |
---|
731 | 728 | set_next_event(ARCH_TIMER_VIRT_ACCESS, evt, clk); |
---|
732 | 729 | return 0; |
---|
733 | 730 | } |
---|
.. | .. |
---|
735 | 732 | static int arch_timer_set_next_event_phys(unsigned long evt, |
---|
736 | 733 | struct clock_event_device *clk) |
---|
737 | 734 | { |
---|
738 | | - int ret; |
---|
739 | | - |
---|
740 | | - if (erratum_handler(set_next_event_phys, ret, evt, clk)) |
---|
741 | | - return ret; |
---|
742 | | - |
---|
743 | 735 | set_next_event(ARCH_TIMER_PHYS_ACCESS, evt, clk); |
---|
744 | 736 | return 0; |
---|
745 | 737 | } |
---|
.. | .. |
---|
764 | 756 | clk->features = CLOCK_EVT_FEAT_ONESHOT; |
---|
765 | 757 | |
---|
766 | 758 | if (type == ARCH_TIMER_TYPE_CP15) { |
---|
| 759 | + typeof(clk->set_next_event) sne; |
---|
| 760 | + |
---|
| 761 | + arch_timer_check_ool_workaround(ate_match_local_cap_id, NULL); |
---|
| 762 | + |
---|
767 | 763 | if (arch_timer_c3stop) |
---|
768 | 764 | clk->features |= CLOCK_EVT_FEAT_C3STOP; |
---|
769 | 765 | clk->name = "arch_sys_timer"; |
---|
.. | .. |
---|
774 | 770 | case ARCH_TIMER_VIRT_PPI: |
---|
775 | 771 | clk->set_state_shutdown = arch_timer_shutdown_virt; |
---|
776 | 772 | clk->set_state_oneshot_stopped = arch_timer_shutdown_virt; |
---|
777 | | - clk->set_next_event = arch_timer_set_next_event_virt; |
---|
| 773 | + sne = erratum_handler(set_next_event_virt); |
---|
778 | 774 | break; |
---|
779 | 775 | case ARCH_TIMER_PHYS_SECURE_PPI: |
---|
780 | 776 | case ARCH_TIMER_PHYS_NONSECURE_PPI: |
---|
781 | 777 | case ARCH_TIMER_HYP_PPI: |
---|
782 | 778 | clk->set_state_shutdown = arch_timer_shutdown_phys; |
---|
783 | 779 | clk->set_state_oneshot_stopped = arch_timer_shutdown_phys; |
---|
784 | | - clk->set_next_event = arch_timer_set_next_event_phys; |
---|
| 780 | + sne = erratum_handler(set_next_event_phys); |
---|
785 | 781 | break; |
---|
786 | 782 | default: |
---|
787 | 783 | BUG(); |
---|
788 | 784 | } |
---|
789 | 785 | |
---|
790 | | - arch_timer_check_ool_workaround(ate_match_local_cap_id, NULL); |
---|
| 786 | + clk->set_next_event = sne; |
---|
791 | 787 | } else { |
---|
792 | 788 | clk->features |= CLOCK_EVT_FEAT_DYNIRQ; |
---|
793 | 789 | clk->name = "arch_mem_timer"; |
---|
.. | .. |
---|
820 | 816 | cntkctl |= (divider << ARCH_TIMER_EVT_TRIGGER_SHIFT) |
---|
821 | 817 | | ARCH_TIMER_VIRT_EVT_EN; |
---|
822 | 818 | arch_timer_set_cntkctl(cntkctl); |
---|
823 | | - elf_hwcap |= HWCAP_EVTSTRM; |
---|
824 | | -#ifdef CONFIG_COMPAT |
---|
825 | | - compat_elf_hwcap |= COMPAT_HWCAP_EVTSTRM; |
---|
826 | | -#endif |
---|
| 819 | + arch_timer_set_evtstrm_feature(); |
---|
827 | 820 | cpumask_set_cpu(smp_processor_id(), &evtstrm_available); |
---|
828 | 821 | } |
---|
829 | 822 | |
---|
.. | .. |
---|
916 | 909 | return 0; |
---|
917 | 910 | } |
---|
918 | 911 | |
---|
| 912 | +static int validate_timer_rate(void) |
---|
| 913 | +{ |
---|
| 914 | + if (!arch_timer_rate) |
---|
| 915 | + return -EINVAL; |
---|
| 916 | + |
---|
| 917 | + /* Arch timer frequency < 1MHz can cause trouble */ |
---|
| 918 | + WARN_ON(arch_timer_rate < 1000000); |
---|
| 919 | + |
---|
| 920 | + return 0; |
---|
| 921 | +} |
---|
| 922 | + |
---|
919 | 923 | /* |
---|
920 | 924 | * For historical reasons, when probing with DT we use whichever (non-zero) |
---|
921 | 925 | * rate was probed first, and don't verify that others match. If the first node |
---|
.. | .. |
---|
931 | 935 | arch_timer_rate = rate; |
---|
932 | 936 | |
---|
933 | 937 | /* Check the timer frequency. */ |
---|
934 | | - if (arch_timer_rate == 0) |
---|
| 938 | + if (validate_timer_rate()) |
---|
935 | 939 | pr_warn("frequency not available\n"); |
---|
936 | 940 | } |
---|
937 | 941 | |
---|
.. | .. |
---|
957 | 961 | { |
---|
958 | 962 | return arch_timer_rate; |
---|
959 | 963 | } |
---|
960 | | -EXPORT_SYMBOL_GPL(arch_timer_get_rate); |
---|
961 | 964 | |
---|
962 | 965 | bool arch_timer_evtstrm_available(void) |
---|
963 | 966 | { |
---|
.. | .. |
---|
968 | 971 | */ |
---|
969 | 972 | return cpumask_test_cpu(raw_smp_processor_id(), &evtstrm_available); |
---|
970 | 973 | } |
---|
971 | | - |
---|
972 | | -void arch_timer_mem_get_cval(u32 *lo, u32 *hi) |
---|
973 | | -{ |
---|
974 | | - u32 ctrl; |
---|
975 | | - |
---|
976 | | - *lo = *hi = ~0U; |
---|
977 | | - |
---|
978 | | - if (!arch_counter_base) |
---|
979 | | - return; |
---|
980 | | - |
---|
981 | | - ctrl = readl_relaxed(arch_counter_base + CNTV_CTL); |
---|
982 | | - |
---|
983 | | - if (ctrl & ARCH_TIMER_CTRL_ENABLE) { |
---|
984 | | - *lo = readl_relaxed(arch_counter_base + CNTCVAL_LO); |
---|
985 | | - *hi = readl_relaxed(arch_counter_base + CNTCVAL_HI); |
---|
986 | | - } |
---|
987 | | -} |
---|
988 | | -EXPORT_SYMBOL_GPL(arch_timer_mem_get_cval); |
---|
989 | 974 | |
---|
990 | 975 | static u64 arch_counter_get_cntvct_mem(void) |
---|
991 | 976 | { |
---|
.. | .. |
---|
1013 | 998 | |
---|
1014 | 999 | /* Register the CP15 based counter if we have one */ |
---|
1015 | 1000 | if (type & ARCH_TIMER_TYPE_CP15) { |
---|
1016 | | - if ((IS_ENABLED(CONFIG_ARM64) && !is_hyp_mode_available()) || |
---|
1017 | | - arch_timer_uses_ppi == ARCH_TIMER_VIRT_PPI) |
---|
1018 | | - arch_timer_read_counter = arch_counter_get_cntvct; |
---|
1019 | | - else |
---|
1020 | | - arch_timer_read_counter = arch_counter_get_cntpct; |
---|
| 1001 | + u64 (*rd)(void); |
---|
1021 | 1002 | |
---|
1022 | | - clocksource_counter.archdata.vdso_direct = vdso_default; |
---|
| 1003 | + if ((IS_ENABLED(CONFIG_ARM64) && !is_hyp_mode_available()) || |
---|
| 1004 | + arch_timer_uses_ppi == ARCH_TIMER_VIRT_PPI) { |
---|
| 1005 | + if (arch_timer_counter_has_wa()) |
---|
| 1006 | + rd = arch_counter_get_cntvct_stable; |
---|
| 1007 | + else |
---|
| 1008 | + rd = arch_counter_get_cntvct; |
---|
| 1009 | + } else { |
---|
| 1010 | + if (arch_timer_counter_has_wa()) |
---|
| 1011 | + rd = arch_counter_get_cntpct_stable; |
---|
| 1012 | + else |
---|
| 1013 | + rd = arch_counter_get_cntpct; |
---|
| 1014 | + } |
---|
| 1015 | + |
---|
| 1016 | + arch_timer_read_counter = rd; |
---|
| 1017 | + clocksource_counter.vdso_clock_mode = vdso_default; |
---|
1023 | 1018 | } else { |
---|
1024 | 1019 | arch_timer_read_counter = arch_counter_get_cntvct_mem; |
---|
1025 | 1020 | } |
---|
.. | .. |
---|
1070 | 1065 | } else if (action == CPU_PM_ENTER_FAILED || action == CPU_PM_EXIT) { |
---|
1071 | 1066 | arch_timer_set_cntkctl(__this_cpu_read(saved_cntkctl)); |
---|
1072 | 1067 | |
---|
1073 | | - if (elf_hwcap & HWCAP_EVTSTRM) |
---|
| 1068 | + if (arch_timer_have_evtstrm_feature()) |
---|
1074 | 1069 | cpumask_set_cpu(smp_processor_id(), &evtstrm_available); |
---|
1075 | 1070 | } |
---|
1076 | 1071 | return NOTIFY_OK; |
---|
.. | .. |
---|
1276 | 1271 | return ARCH_TIMER_PHYS_SECURE_PPI; |
---|
1277 | 1272 | } |
---|
1278 | 1273 | |
---|
| 1274 | +static void __init arch_timer_populate_kvm_info(void) |
---|
| 1275 | +{ |
---|
| 1276 | + arch_timer_kvm_info.virtual_irq = arch_timer_ppi[ARCH_TIMER_VIRT_PPI]; |
---|
| 1277 | + if (is_kernel_in_hyp_mode()) |
---|
| 1278 | + arch_timer_kvm_info.physical_irq = arch_timer_ppi[ARCH_TIMER_PHYS_NONSECURE_PPI]; |
---|
| 1279 | +} |
---|
| 1280 | + |
---|
1279 | 1281 | static int __init arch_timer_of_init(struct device_node *np) |
---|
1280 | 1282 | { |
---|
1281 | 1283 | int i, ret; |
---|
.. | .. |
---|
1290 | 1292 | for (i = ARCH_TIMER_PHYS_SECURE_PPI; i < ARCH_TIMER_MAX_TIMER_PPI; i++) |
---|
1291 | 1293 | arch_timer_ppi[i] = irq_of_parse_and_map(np, i); |
---|
1292 | 1294 | |
---|
1293 | | - arch_timer_kvm_info.virtual_irq = arch_timer_ppi[ARCH_TIMER_VIRT_PPI]; |
---|
| 1295 | + arch_timer_populate_kvm_info(); |
---|
1294 | 1296 | |
---|
1295 | 1297 | rate = arch_timer_get_cntfrq(); |
---|
1296 | 1298 | arch_timer_of_configure_rate(rate, np); |
---|
.. | .. |
---|
1606 | 1608 | arch_timers_present |= ARCH_TIMER_TYPE_CP15; |
---|
1607 | 1609 | |
---|
1608 | 1610 | ret = acpi_gtdt_init(table, &platform_timer_count); |
---|
1609 | | - if (ret) { |
---|
1610 | | - pr_err("Failed to init GTDT table.\n"); |
---|
| 1611 | + if (ret) |
---|
1611 | 1612 | return ret; |
---|
1612 | | - } |
---|
1613 | 1613 | |
---|
1614 | 1614 | arch_timer_ppi[ARCH_TIMER_PHYS_NONSECURE_PPI] = |
---|
1615 | 1615 | acpi_gtdt_map_ppi(ARCH_TIMER_PHYS_NONSECURE_PPI); |
---|
.. | .. |
---|
1620 | 1620 | arch_timer_ppi[ARCH_TIMER_HYP_PPI] = |
---|
1621 | 1621 | acpi_gtdt_map_ppi(ARCH_TIMER_HYP_PPI); |
---|
1622 | 1622 | |
---|
1623 | | - arch_timer_kvm_info.virtual_irq = arch_timer_ppi[ARCH_TIMER_VIRT_PPI]; |
---|
| 1623 | + arch_timer_populate_kvm_info(); |
---|
1624 | 1624 | |
---|
1625 | 1625 | /* |
---|
1626 | 1626 | * When probing via ACPI, we have no mechanism to override the sysreg |
---|
1627 | 1627 | * CNTFRQ value. This *must* be correct. |
---|
1628 | 1628 | */ |
---|
1629 | 1629 | arch_timer_rate = arch_timer_get_cntfrq(); |
---|
1630 | | - if (!arch_timer_rate) { |
---|
| 1630 | + ret = validate_timer_rate(); |
---|
| 1631 | + if (ret) { |
---|
1631 | 1632 | pr_err(FW_BUG "frequency not available.\n"); |
---|
1632 | | - return -EINVAL; |
---|
| 1633 | + return ret; |
---|
1633 | 1634 | } |
---|
1634 | 1635 | |
---|
1635 | 1636 | arch_timer_uses_ppi = arch_timer_select_ppi(); |
---|