From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Lezcano Subject: Re: [PATCH 02/14] thermal: exynos: Propagate error value from tmu_read() Date: Mon, 16 Apr 2018 14:54:01 +0200 Message-ID: <4123d3bb-408f-b0c0-43c3-862e93f4907a@linaro.org> References: <1523873525-23718-1-git-send-email-b.zolnierkie@samsung.com> <6993557.YT37RIp4lG@amdc3058> <22d7f063-9a69-78cf-e0fd-2043e187244e@linaro.org> <21168314.MLeXVVoknU@amdc3058> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <21168314.MLeXVVoknU@amdc3058> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Bartlomiej Zolnierkiewicz Cc: Eduardo Valentin , Zhang Rui , Krzysztof Kozlowski , Kukjin Kim , linux-samsung-soc@vger.kernel.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, Marek Szyprowski List-Id: linux-pm@vger.kernel.org On 16/04/2018 14:49, Bartlomiej Zolnierkiewicz wrote: > On Monday, April 16, 2018 02:41:48 PM Daniel Lezcano wrote: >> On 16/04/2018 14:35, Bartlomiej Zolnierkiewicz wrote: >>> On Monday, April 16, 2018 02:16:56 PM Daniel Lezcano wrote: >>>> On 16/04/2018 12:11, Bartlomiej Zolnierkiewicz wrote: >>>>> From: Marek Szyprowski >>>>> >>>>> tmu_read() in case of Exynos4210 might return error for out of bound >>>>> values. Current code ignores such value, what leads to reporting critical >>>>> temperature value. Add proper error code propagation to exynos_get_temp() >>>>> function. >>>> >>>> For me the comment in the function exynos4210_tmu_read >>>> >>>> /* "temp_code" should range between 75 and 175 */ >>>> >>>> ... is strange. I would double check this assertion before dealing with >>>> the error value. >>> >>> static int exynos4210_tmu_read(struct exynos_tmu_data *data) >>> { >>> int ret = readb(data->base + EXYNOS_TMU_REG_CURRENT_TEMP); >>> >>> /* "temp_code" should range between 75 and 175 */ >>> return (ret < 75 || ret > 175) ? -ENODATA : ret; >>> } >>> >> >> But I don't get why it *should* ? > > Because of hardware design. > >> Shouldn't be the same with the 4412, it seems having the same sensor, no? > > Probably same limitations apply to all SoCs (Exynos4412 has very similar > sensor) but the driver currently lacks the needed checks for them (it is > on TODO but other things have higher priority). I understand. Why the other boards are not reporting a critical value? -- Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog