File: linuxinfo_alpha.c

package info (click to toggle)
linuxinfo 4.2.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,332 kB
  • sloc: sh: 4,837; ansic: 1,379; makefile: 99; sed: 16
file content (86 lines) | stat: -rw-r--r-- 2,107 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
	linuxinfo_alpha.c

        Copyright (C) 1998-2000
        All Rights Reserved.

        Alex Buell <alex.buell@munted.eu>

	Copyright (C) 2004,2005,2014
	Helge Kreutzmann <debian@helgefjell.de>

        Version Author  Date            Comments
        ----------------------------------------------------------------------
        1.0.0   AIB     199803??        Initial development
	1.0.1	AIB	20000405	Now detects MHz, code rewritten
	1.0.2	AIB	20010809	Added getphysicalmemory() call
	1.0.3	KRE	20051118	Include <string.h>
	see git history for later changes

        This is the Alpha port of linuxinfo

*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "linuxinfo.h"

#ifdef system_alpha

void GetHardwareInfo(int fd, struct hw_stat *hw)
{
	int processors = 0; 
	float bogomips = 0.0;
	float megahertz = 0.0;
	float tempbogo;

	char temp_string[BUFSIZ], temp_string2[BUFSIZ];
	char chip[BUFSIZ], vendor[BUFSIZ], model[BUFSIZ] = "Unknown";

	while (read_line(fd, temp_string, BUFSIZ) != 0)
	{
		splitstring(temp_string, temp_string2);

		if (!(strncmp(temp_string, "cpu model", strlen("cpu model"))))
			strcpy(model, temp_string2);

		if (!(strncmp(temp_string, "BogoMIPS", strlen("BogoMIPS"))))
		{
			processors++;
			sscanf(temp_string2, "%f", &tempbogo);
			bogomips += tempbogo;	
		}

		if (!(strncmp(temp_string, "cycle frequency [Hz]", strlen("cycle frequency [Hz]"))))
		{
			sscanf(temp_string2, "%f", &megahertz);
			if (megahertz > 0)
				megahertz /= 1000000;

			if (megahertz != 0)
				sprintf(hw->hw_megahertz, "%.2f", megahertz);
			else
				strcpy(hw->hw_megahertz, "?");
		}
		if (!(strncmp(temp_string, "cpus active", strlen("cpus active"))))
		    {
			// FIXME Check which counting method really works
			// (and bogomips ok?)
			processors = atoi(temp_string2);
		    }
	}

	sprintf(hw->hw_memory, LONGSPEC, getphysicalmemory());
	hw->hw_processors = processors;
	
	sprintf(hw->hw_cpuinfo, "Alpha %s", model);
	if (bogomips == 0.0)
	    sprintf(hw->hw_bogomips, "?");
	else
	    sprintf(hw->hw_bogomips, "%0.2f", bogomips);

}

#endif /* system_alpha */