Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 1 | /* |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 2 | * (C) Copyright 2008,2009 |
| 3 | * Graeme Russ, <graeme.russ@gmail.com> |
| 4 | * |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 5 | * (C) Copyright 2002 |
Albert ARIBAUD | fa82f87 | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 6 | * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se> |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | #include <common.h> |
| 28 | #include <malloc.h> |
| 29 | #include <asm/io.h> |
| 30 | #include <asm/i8254.h> |
| 31 | #include <asm/ibmpc.h> |
| 32 | |
| 33 | struct timer_isr_function { |
| 34 | struct timer_isr_function *next; |
| 35 | timer_fnc_t *isr_func; |
| 36 | }; |
| 37 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 38 | static struct timer_isr_function *first_timer_isr; |
| 39 | static unsigned long system_ticks; |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 40 | |
| 41 | /* |
| 42 | * register_timer_isr() allows multiple architecture and board specific |
| 43 | * functions to be called every millisecond. Keep the execution time of |
| 44 | * each function as low as possible |
| 45 | */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 46 | int register_timer_isr(timer_fnc_t *isr_func) |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 47 | { |
| 48 | struct timer_isr_function *new_func; |
| 49 | struct timer_isr_function *temp; |
| 50 | int flag; |
| 51 | |
| 52 | new_func = malloc(sizeof(struct timer_isr_function)); |
| 53 | |
| 54 | if (new_func == NULL) |
| 55 | return 1; |
| 56 | |
Graeme Russ | 1c409bc | 2009-11-24 20:04:21 +1100 | [diff] [blame] | 57 | new_func->isr_func = isr_func; |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 58 | new_func->next = NULL; |
| 59 | |
| 60 | /* |
| 61 | * Don't allow timer interrupts while the |
| 62 | * linked list is being modified |
| 63 | */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 64 | flag = disable_interrupts(); |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 65 | |
| 66 | if (first_timer_isr == NULL) { |
| 67 | first_timer_isr = new_func; |
| 68 | } else { |
| 69 | temp = first_timer_isr; |
| 70 | while (temp->next != NULL) |
| 71 | temp = temp->next; |
| 72 | temp->next = new_func; |
| 73 | } |
| 74 | |
| 75 | if (flag) |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 76 | enable_interrupts(); |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 77 | |
| 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | /* |
| 82 | * timer_isr() MUST be the registered interrupt handler for |
| 83 | */ |
| 84 | void timer_isr(void *unused) |
| 85 | { |
| 86 | struct timer_isr_function *temp = first_timer_isr; |
| 87 | |
| 88 | system_ticks++; |
| 89 | |
| 90 | /* Execute each registered function */ |
| 91 | while (temp != NULL) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 92 | temp->isr_func(); |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 93 | temp = temp->next; |
| 94 | } |
| 95 | } |
| 96 | |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 97 | ulong get_timer(ulong base) |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 98 | { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 99 | return system_ticks - base; |
Graeme Russ | 8c63d47 | 2009-02-24 21:14:45 +1100 | [diff] [blame] | 100 | } |
Vadim Bendebury | 2f899e0 | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 101 | |
| 102 | void timer_set_tsc_base(uint64_t new_base) |
| 103 | { |
Simon Glass | bc2df1a | 2013-02-28 19:26:12 +0000 | [diff] [blame^] | 104 | gd->arch.tsc_base = new_base; |
Vadim Bendebury | 2f899e0 | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | uint64_t timer_get_tsc(void) |
| 108 | { |
| 109 | uint64_t time_now; |
| 110 | |
| 111 | time_now = rdtsc(); |
Simon Glass | bc2df1a | 2013-02-28 19:26:12 +0000 | [diff] [blame^] | 112 | if (!gd->arch.tsc_base) |
| 113 | gd->arch.tsc_base = time_now; |
Vadim Bendebury | 2f899e0 | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 114 | |
Simon Glass | bc2df1a | 2013-02-28 19:26:12 +0000 | [diff] [blame^] | 115 | return time_now - gd->arch.tsc_base; |
Vadim Bendebury | 2f899e0 | 2012-10-23 18:04:32 +0000 | [diff] [blame] | 116 | } |