Uwe Hermann | ca7f0e4 | 2007-09-09 20:02:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
Uwe Hermann | d22a1d4 | 2007-09-09 20:21:05 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
Carl-Daniel Hailfinger | b811461 | 2010-03-27 16:16:01 +0000 | [diff] [blame] | 5 | * Copyright (C) 2009,2010 Carl-Daniel Hailfinger |
Uwe Hermann | ca7f0e4 | 2007-09-09 20:02:45 +0000 | [diff] [blame] | 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 as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
Carl-Daniel Hailfinger | 831e8f4 | 2010-05-30 22:24:40 +0000 | [diff] [blame] | 22 | #include <unistd.h> |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 23 | #include <sys/time.h> |
Carl-Daniel Hailfinger | b811461 | 2010-03-27 16:16:01 +0000 | [diff] [blame] | 24 | #include <stdlib.h> |
| 25 | #include <limits.h> |
Uwe Hermann | 0846f89 | 2007-08-23 13:34:59 +0000 | [diff] [blame] | 26 | #include "flash.h" |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 27 | |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 28 | /* loops per microsecond */ |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 29 | unsigned long micro = 1; |
| 30 | |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 31 | __attribute__ ((noinline)) void myusec_delay(int usecs) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 32 | { |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 33 | unsigned long i; |
| 34 | for (i = 0; i < usecs * micro; i++) { |
| 35 | /* Make sure the compiler doesn't optimize the loop away. */ |
| 36 | asm volatile ("" : : "rm" (i) ); |
| 37 | } |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Carl-Daniel Hailfinger | b811461 | 2010-03-27 16:16:01 +0000 | [diff] [blame] | 40 | unsigned long measure_delay(int usecs) |
| 41 | { |
| 42 | unsigned long timeusec; |
| 43 | struct timeval start, end; |
| 44 | |
| 45 | gettimeofday(&start, 0); |
| 46 | myusec_delay(usecs); |
| 47 | gettimeofday(&end, 0); |
| 48 | timeusec = 1000000 * (end.tv_sec - start.tv_sec) + |
| 49 | (end.tv_usec - start.tv_usec); |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 50 | /* Protect against time going forward too much. */ |
| 51 | if ((end.tv_sec > start.tv_sec) && |
| 52 | ((end.tv_sec - start.tv_sec) >= LONG_MAX / 1000000 - 1)) |
| 53 | timeusec = LONG_MAX; |
| 54 | /* Protect against time going backwards during leap seconds. */ |
| 55 | if ((end.tv_sec < start.tv_sec) || (timeusec > LONG_MAX)) |
| 56 | timeusec = 1; |
Carl-Daniel Hailfinger | b811461 | 2010-03-27 16:16:01 +0000 | [diff] [blame] | 57 | |
| 58 | return timeusec; |
| 59 | } |
| 60 | |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 61 | void myusec_calibrate_delay(void) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 62 | { |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 63 | unsigned long count = 1000; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 64 | unsigned long timeusec; |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 65 | int i, tries = 0; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 66 | |
Carl-Daniel Hailfinger | 831e8f4 | 2010-05-30 22:24:40 +0000 | [diff] [blame] | 67 | msg_pinfo("Calibrating delay loop... "); |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 68 | |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 69 | recalibrate: |
Urja Rannikko | f640401 | 2010-04-09 00:02:38 +0000 | [diff] [blame] | 70 | count = 1000; |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 71 | while (1) { |
Carl-Daniel Hailfinger | b811461 | 2010-03-27 16:16:01 +0000 | [diff] [blame] | 72 | timeusec = measure_delay(count); |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 73 | if (timeusec > 1000000 / 4) |
| 74 | break; |
| 75 | if (count >= ULONG_MAX / 2) { |
| 76 | msg_pinfo("timer loop overflow, reduced precision. "); |
| 77 | break; |
| 78 | } |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 79 | count *= 2; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 80 | } |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 81 | tries ++; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 82 | |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 83 | /* Avoid division by zero, but in that case the loop is shot anyway. */ |
| 84 | if (!timeusec) |
| 85 | timeusec = 1; |
| 86 | |
| 87 | /* Compute rounded up number of loops per microsecond. */ |
| 88 | micro = (count * micro) / timeusec + 1; |
| 89 | msg_pdbg("%luM loops per second, ", micro); |
| 90 | |
| 91 | /* Did we try to recalibrate less than 5 times? */ |
| 92 | if (tries < 5) { |
| 93 | /* Recheck our timing to make sure we weren't just hitting |
| 94 | * a scheduler delay or something similar. |
| 95 | */ |
| 96 | for (i = 0; i < 4; i++) { |
| 97 | if (measure_delay(100) < 90) { |
Urja Rannikko | f640401 | 2010-04-09 00:02:38 +0000 | [diff] [blame] | 98 | msg_pdbg("delay more than 10%% too short, " |
Carl-Daniel Hailfinger | 253101e | 2010-03-31 23:55:06 +0000 | [diff] [blame] | 99 | "recalculating... "); |
| 100 | goto recalibrate; |
| 101 | } |
| 102 | } |
| 103 | } else { |
| 104 | msg_perr("delay loop is unreliable, trying to continue "); |
| 105 | } |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 106 | |
Carl-Daniel Hailfinger | b811461 | 2010-03-27 16:16:01 +0000 | [diff] [blame] | 107 | /* We're interested in the actual precision. */ |
| 108 | timeusec = measure_delay(10); |
| 109 | msg_pdbg("10 myus = %ld us, ", timeusec); |
| 110 | timeusec = measure_delay(100); |
| 111 | msg_pdbg("100 myus = %ld us, ", timeusec); |
| 112 | timeusec = measure_delay(1000); |
| 113 | msg_pdbg("1000 myus = %ld us, ", timeusec); |
| 114 | timeusec = measure_delay(10000); |
| 115 | msg_pdbg("10000 myus = %ld us, ", timeusec); |
| 116 | |
Carl-Daniel Hailfinger | 831e8f4 | 2010-05-30 22:24:40 +0000 | [diff] [blame] | 117 | msg_pinfo("OK.\n"); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 118 | } |
Carl-Daniel Hailfinger | 36cc1c8 | 2009-12-24 03:11:55 +0000 | [diff] [blame] | 119 | |
| 120 | void internal_delay(int usecs) |
| 121 | { |
| 122 | /* If the delay is >1 s, use usleep because timing does not need to |
| 123 | * be so precise. |
| 124 | */ |
| 125 | if (usecs > 1000000) { |
| 126 | usleep(usecs); |
| 127 | } else { |
| 128 | myusec_delay(usecs); |
| 129 | } |
| 130 | } |
| 131 | |