[PATCH 1/6] ARM: tegra: fuse: add functions to read speedo ID and process ID

Stephen Warren swarren at wwwdotorg.org
Thu Dec 19 18:09:09 EST 2013


On 12/19/2013 05:36 AM, Paul Walmsley wrote:
> From: Danny Huang <dahuang at nvidia.com>
> 
> Add functions to read the speedo and process id of both the CPU and the SoC.
> There might be some drivers need the information as well.

> diff --git a/arch/arm/mach-tegra/fuse.c b/arch/arm/mach-tegra/fuse.c

> +int tegra_get_cpu_process_id(void)
> +{
> +	return tegra_cpu_process_id;
> +}
> +EXPORT_SYMBOL(tegra_get_cpu_process_id);
> +
> +int tegra_get_cpu_speedo_id(void)
> +{
> +	if (tegra_chip_id == TEGRA20)
> +		return -EINVAL;
> +
> +	return tegra_cpu_speedo_id;
> +}

Olof specifically went through the code and removed such functions in
the past. He argued that consumers of this data should just read those
tegra_cpu_process_id/... variables directly instead.



More information about the linux-arm-kernel mailing list