public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Nikolay Dimitrov <picmaster@mail.bg>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 3/4] imx: mx6: add display of CPU temperature grade in print_cpuinfo()
Date: Mon, 18 May 2015 01:33:39 +0300	[thread overview]
Message-ID: <55591743.9070000@mail.bg> (raw)
In-Reply-To: <1431580312-24880-4-git-send-email-tharvey@gateworks.com>


On 05/14/2015 08:11 AM, Tim Harvey wrote:
> When CONFIG_IMX6_THERMAL is defined print the CPU temperature grade info
> along with the current temperature.
>
> Before:
>   CPU:   Temperature 42 C
>
> After:
>   CPU:   Automotive temperature grade (-40C to 125C) at 42C
>   CPU:   Industiral temperature grade (-40C to 105C) at 42C
>   CPU:   Extended Commercial temperature grade (-20C to 105C) at 42C
>
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
> ---
> v2:
>   - moved display of CPU temperature grade to own patch and combined with the
>     current temperature from the thermal sensor driver
>   - add example output to description
>
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
> ---
>   arch/arm/imx-common/cpu.c | 27 +++++++++++++++++++++++----
>   1 file changed, 23 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c
> index 6b20482..f1b49bb 100644
> --- a/arch/arm/imx-common/cpu.c
> +++ b/arch/arm/imx-common/cpu.c
> @@ -16,6 +16,7 @@
>   #include <asm/arch/clock.h>
>   #include <asm/arch/sys_proto.h>
>   #include <asm/arch/crm_regs.h>
> +#include <imx_thermal.h>
>   #include <ipu_pixfmt.h>
>   #include <thermal.h>
>   #include <sata.h>
> @@ -146,7 +147,7 @@ int print_cpuinfo(void)
>
>   #if defined(CONFIG_MX6) && defined(CONFIG_IMX6_THERMAL)
>   	struct udevice *thermal_dev;
> -	int cpu_tmp, ret;
> +	int cpu_tmp, minc, maxc, ret;
>   #endif
>
>   	cpurev = get_cpu_rev();
> @@ -172,16 +173,34 @@ int print_cpuinfo(void)
>   #endif
>
>   #if defined(CONFIG_MX6) && defined(CONFIG_IMX6_THERMAL)
> +	puts("CPU:   ");
> +	if (!is_cpu_type(MXC_CPU_MX6SX)) {
> +		switch (get_cpu_temp_grade(&minc, &maxc)) {
> +		case TEMP_AUTOMOTIVE:
> +			puts("Automotive temperature grade ");
> +			break;
> +		case TEMP_INDUSTRIAL:
> +			puts("Industrial temperature grade ");
> +			break;
> +		case TEMP_EXTCOMMERCIAL:
> +			puts("Extended Commercial temperature grade ");
> +			break;
> +		default:
> +			puts("Commercial temperature grade ");
> +			break;
> +		}
> +		printf("(%dC to %dC)", minc, maxc);
> +	}
>   	ret = uclass_get_device(UCLASS_THERMAL, 0, &thermal_dev);
>   	if (!ret) {
>   		ret = thermal_get_temp(thermal_dev, &cpu_tmp);
>
>   		if (!ret)
> -			printf("CPU:   Temperature %d C\n", cpu_tmp);
> +			printf(" at %dC\n", cpu_tmp);
>   		else
> -			printf("CPU:   Temperature: invalid sensor data\n");
> +			puts(" - invalid sensor data\n");
>   	} else {
> -		printf("CPU:   Temperature: Can't find sensor device\n");
> +		puts(" - invalid sensor device\n");
>   	}
>   #endif
>
>

Tested-by: Nikolay Dimitrov <picmaster@mail.bg>

Regards,
Nikolay

  parent reply	other threads:[~2015-05-17 22:33 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-14  5:11 [U-Boot] [PATCH v2 0/4]: imx: mx6: use OTP for temperature grade info Tim Harvey
2015-05-14  5:11 ` [U-Boot] [PATCH v2 1/4] mx6: add OTP bank1 registers Tim Harvey
2015-05-15  8:08   ` Christian Gmeiner
2015-05-17 22:32   ` Nikolay Dimitrov
2015-05-14  5:11 ` [U-Boot] [PATCH v2 2/4] imx: mx6: add get_cpu_temp_grade to obtain cpu temperature grade from OTP Tim Harvey
2015-05-15  8:17   ` Christian Gmeiner
2015-05-17 22:33   ` Nikolay Dimitrov
2015-05-14  5:11 ` [U-Boot] [PATCH v2 3/4] imx: mx6: add display of CPU temperature grade in print_cpuinfo() Tim Harvey
2015-05-15  8:14   ` Christian Gmeiner
2015-05-15 13:16     ` Tim Harvey
2015-05-15 13:24       ` Stefano Babic
2015-05-15 13:31         ` Tim Harvey
2015-05-15 13:36           ` Fabio Estevam
2015-05-18  0:11             ` Peng Fan
2015-05-18 13:30               ` Tim Harvey
2015-05-15 13:44           ` Stefano Babic
2015-05-17 22:33   ` Nikolay Dimitrov [this message]
2015-05-14  5:11 ` [U-Boot] [PATCH v2 4/4] thermal: imx_thermal: use CPU temperature grade for trip points Tim Harvey
2015-05-17 22:34   ` Nikolay Dimitrov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55591743.9070000@mail.bg \
    --to=picmaster@mail.bg \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox