| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  (C) 2010,2011       Thomas Renninger <trenn@suse.de>, Novell Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Licensed under the terms of the GNU GPL License version 2. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ToDo: Needs to be done more properly for AMD/Intel specifics | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Helper struct for qsort, must be in sync with cpupower_topology.cpu_info */ | 
					
						
							|  |  |  | /* Be careful: Need to pass unsigned to the sort, so that offlined cores are
 | 
					
						
							|  |  |  |    in the end, but double check for -1 for offlined cpus at other places */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #include <errno.h>
 | 
					
						
							|  |  |  | #include <fcntl.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <helpers/helpers.h>
 | 
					
						
							|  |  |  | #include <helpers/sysfs.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* returns -1 on failure, 0 on success */ | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:45 +01:00
										 |  |  | static int sysfs_topology_read_file(unsigned int cpu, const char *fname, int *result) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | { | 
					
						
							|  |  |  | 	char linebuf[MAX_LINE_LEN]; | 
					
						
							|  |  |  | 	char *endp; | 
					
						
							|  |  |  | 	char path[SYSFS_PATH_MAX]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u/topology/%s", | 
					
						
							|  |  |  | 			 cpu, fname); | 
					
						
							| 
									
										
										
										
											2011-04-19 20:16:05 +02:00
										 |  |  | 	if (sysfs_read_file(path, linebuf, MAX_LINE_LEN) == 0) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:45 +01:00
										 |  |  | 	*result = strtol(linebuf, &endp, 0); | 
					
						
							| 
									
										
										
										
											2011-04-19 20:16:05 +02:00
										 |  |  | 	if (endp == linebuf || errno == ERANGE) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:45 +01:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __compare(const void *t1, const void *t2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct cpuid_core_info *top1 = (struct cpuid_core_info *)t1; | 
					
						
							|  |  |  | 	struct cpuid_core_info *top2 = (struct cpuid_core_info *)t2; | 
					
						
							|  |  |  | 	if (top1->pkg < top2->pkg) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	else if (top1->pkg > top2->pkg) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:46 +01:00
										 |  |  | 	else if (top1->core < top2->core) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:46 +01:00
										 |  |  | 	else if (top1->core > top2->core) | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	else if (top1->cpu < top2->cpu) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	else if (top1->cpu > top2->cpu) | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Returns amount of cpus, negative on error, cpu_top must be | 
					
						
							|  |  |  |  * passed to cpu_topology_release to free resources | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Array is sorted after ->pkg, ->core, then ->cpu | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int get_cpu_topology(struct cpupower_topology *cpu_top) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:47 +01:00
										 |  |  | 	int cpu, last_pkg, cpus = sysconf(_SC_NPROCESSORS_CONF); | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:46 +01:00
										 |  |  | 	cpu_top->core_info = malloc(sizeof(struct cpuid_core_info) * cpus); | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 	if (cpu_top->core_info == NULL) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	cpu_top->pkgs = cpu_top->cores = 0; | 
					
						
							|  |  |  | 	for (cpu = 0; cpu < cpus; cpu++) { | 
					
						
							| 
									
										
										
										
											2011-08-12 01:11:37 +02:00
										 |  |  | 		cpu_top->core_info[cpu].cpu = cpu; | 
					
						
							|  |  |  | 		cpu_top->core_info[cpu].is_online = sysfs_is_cpu_online(cpu); | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:45 +01:00
										 |  |  | 		if(sysfs_topology_read_file( | 
					
						
							|  |  |  | 			cpu, | 
					
						
							|  |  |  | 			"physical_package_id", | 
					
						
							|  |  |  | 			&(cpu_top->core_info[cpu].pkg)) < 0) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							|  |  |  | 		if(sysfs_topology_read_file( | 
					
						
							|  |  |  | 			cpu, | 
					
						
							|  |  |  | 			"core_id", | 
					
						
							|  |  |  | 			&(cpu_top->core_info[cpu].core)) < 0) | 
					
						
							|  |  |  | 			return -1; | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	qsort(cpu_top->core_info, cpus, sizeof(struct cpuid_core_info), | 
					
						
							|  |  |  | 	      __compare); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 13:17:47 +01:00
										 |  |  | 	/* Count the number of distinct pkgs values. This works
 | 
					
						
							|  |  |  | 	   because the primary sort of the core_info struct was just | 
					
						
							|  |  |  | 	   done by pkg value. */ | 
					
						
							|  |  |  | 	last_pkg = cpu_top->core_info[0].pkg; | 
					
						
							|  |  |  | 	for(cpu = 1; cpu < cpus; cpu++) { | 
					
						
							|  |  |  | 		if(cpu_top->core_info[cpu].pkg != last_pkg) { | 
					
						
							|  |  |  | 			last_pkg = cpu_top->core_info[cpu].pkg; | 
					
						
							|  |  |  | 			cpu_top->pkgs++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	cpu_top->pkgs++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-30 16:30:11 +02:00
										 |  |  | 	/* Intel's cores count is not consecutively numbered, there may
 | 
					
						
							|  |  |  | 	 * be a core_id of 3, but none of 2. Assume there always is 0 | 
					
						
							|  |  |  | 	 * Get amount of cores by counting duplicates in a package | 
					
						
							|  |  |  | 	for (cpu = 0; cpu_top->core_info[cpu].pkg = 0 && cpu < cpus; cpu++) { | 
					
						
							|  |  |  | 		if (cpu_top->core_info[cpu].core == 0) | 
					
						
							|  |  |  | 	cpu_top->cores++; | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | 	return cpus; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void cpu_topology_release(struct cpupower_topology cpu_top) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	free(cpu_top.core_info); | 
					
						
							|  |  |  | } |