OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [machine/] [i386/] [get_clockfreq.c] - Blame information for rev 158

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 148 jeremybenn
/* Get frequency of the system processor.  i386/Linux version.
2
   Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3
   This file is part of the GNU C Library.
4
 
5
   The GNU C Library is free software; you can redistribute it and/or
6
   modify it under the terms of the GNU Lesser General Public
7
   License as published by the Free Software Foundation; either
8
   version 2.1 of the License, or (at your option) any later version.
9
 
10
   The GNU C Library is distributed in the hope that it will be useful,
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
   Lesser General Public License for more details.
14
 
15
   You should have received a copy of the GNU Lesser General Public
16
   License along with the GNU C Library; if not, write to the Free
17
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18
   02111-1307 USA.  */
19
 
20
#include <ctype.h>
21
#include <fcntl.h>
22
#include <string.h>
23
#include <unistd.h>
24
#include <libc-internal.h>
25
 
26
hp_timing_t
27
__get_clockfreq (void)
28
{
29
  /* We read the information from the /proc filesystem.  It contains at
30
     least one line like
31
        cpu MHz         : 497.840237
32
     or also
33
        cpu MHz         : 497.841
34
     We search for this line and convert the number in an integer.  */
35
  static hp_timing_t result;
36
  int fd;
37
 
38
  /* If this function was called before, we know the result.  */
39
  if (result != 0)
40
    return result;
41
 
42
  fd = open ("/proc/cpuinfo", O_RDONLY);
43
  if (__builtin_expect (fd != -1, 1))
44
    {
45
      /* XXX AFAIK the /proc filesystem can generate "files" only up
46
         to a size of 4096 bytes.  */
47
      char buf[4096];
48
      ssize_t n;
49
 
50
      n = read (fd, buf, sizeof buf);
51
      if (__builtin_expect (n, 1) > 0)
52
        {
53
          char *mhz = memmem (buf, n, "cpu MHz", 7);
54
 
55
          if (__builtin_expect (mhz != NULL, 1))
56
            {
57
              char *endp = buf + n;
58
              int seen_decpoint = 0;
59
              int ndigits = 0;
60
 
61
              /* Search for the beginning of the string.  */
62
              while (mhz < endp && (*mhz < '0' || *mhz > '9') && *mhz != '\n')
63
                ++mhz;
64
 
65
              while (mhz < endp && *mhz != '\n')
66
                {
67
                  if (*mhz >= '0' && *mhz <= '9')
68
                    {
69
                      result *= 10;
70
                      result += *mhz - '0';
71
                      if (seen_decpoint)
72
                        ++ndigits;
73
                    }
74
                  else if (*mhz == '.')
75
                    seen_decpoint = 1;
76
 
77
                  ++mhz;
78
                }
79
 
80
              /* Compensate for missing digits at the end.  */
81
              while (ndigits++ < 6)
82
                result *= 10;
83
            }
84
        }
85
 
86
      close (fd);
87
    }
88
 
89
  return result;
90
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.