From: Lukasz Luba <l.luba@partner.samsung.com> To: Zhang Rui <rui.zhang@intel.com>, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org Cc: edubezval@gmail.com, daniel.lezcano@linaro.org, robh+dt@kernel.org, mark.rutland@arm.com, corbet@lwn.net, b.zolnierkie@samsung.com, krzk@kernel.org Subject: Re: [PATCH v2 02/11] thermal: add irq-mode configuration for trip point Date: Thu, 6 Dec 2018 20:18:46 +0100 [thread overview] Message-ID: <2ac425fc-7c32-6e2f-7086-c14f85b0bbfd@partner.samsung.com> (raw) In-Reply-To: <1544022595.2841.45.camel@intel.com> Hi Rui, On 12/5/18 4:09 PM, Zhang Rui wrote: > On 三, 2018-11-07 at 18:09 +0100, Lukasz Luba wrote: >> This patch adds support irq mode in trip point. >> When that flag is set in DT, there is no need for polling >> in thermal framework. Crossing the trip point will rise an IRQ. >> The naming convention for tip point 'type' can be confussing >> and 'passive' (whic is passive cooling) might be interpretted >> wrongly. >> >> This mechanism prevents from missue and adds explicit setting >> for hardware which support interrupts for pre-configured temperature >> threshold. >> >> Cc: Zhang Rui <rui.zhang@intel.com> >> Cc: Eduardo Valentin <edubezval@gmail.com> >> Cc: Daniel Lezcano <daniel.lezcano@linaro.org> >> Signed-off-by: Lukasz Luba <l.luba@partner.samsung.com> >> --- >> drivers/thermal/of-thermal.c | 17 +++++++++++++++++ >> drivers/thermal/thermal_core.c | 10 ++++++++-- >> include/linux/thermal.h | 5 +++++ >> 3 files changed, 30 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/thermal/of-thermal.c b/drivers/thermal/of- >> thermal.c >> index 4bfdb4a..1a75946a 100644 >> --- a/drivers/thermal/of-thermal.c >> +++ b/drivers/thermal/of-thermal.c >> @@ -312,6 +312,20 @@ static int of_thermal_get_trip_type(struct >> thermal_zone_device *tz, int trip, >> return 0; >> } >> >> +static int >> +of_thermal_get_trip_irq_mode(struct thermal_zone_device *tz, int >> trip, >> + bool *mode) >> +{ >> + struct __thermal_zone *data = tz->devdata; >> + >> + if (trip >= data->ntrips || trip < 0) >> + return -EDOM; >> + >> + *mode = data->trips[trip].irq_mode; >> + >> + return 0; >> +} >> + >> static int of_thermal_get_trip_temp(struct thermal_zone_device *tz, >> int trip, >> int *temp) >> { >> @@ -394,6 +408,7 @@ static struct thermal_zone_device_ops >> of_thermal_ops = { >> .set_mode = of_thermal_set_mode, >> >> .get_trip_type = of_thermal_get_trip_type, >> + .get_trip_irq_mode = of_thermal_get_trip_irq_mode, >> .get_trip_temp = of_thermal_get_trip_temp, >> .set_trip_temp = of_thermal_set_trip_temp, >> .get_trip_hyst = of_thermal_get_trip_hyst, >> @@ -827,6 +842,8 @@ static int thermal_of_populate_trip(struct >> device_node *np, >> return ret; >> } >> >> + trip->irq_mode = of_property_read_bool(np, "irq-mode"); >> + >> /* Required for cooling map matching */ >> trip->np = np; >> of_node_get(np); >> diff --git a/drivers/thermal/thermal_core.c >> b/drivers/thermal/thermal_core.c >> index 39fc812..6d41e08 100644 >> --- a/drivers/thermal/thermal_core.c >> +++ b/drivers/thermal/thermal_core.c >> @@ -406,6 +406,7 @@ static void handle_critical_trips(struct >> thermal_zone_device *tz, >> static void handle_thermal_trip(struct thermal_zone_device *tz, int >> trip) >> { >> enum thermal_trip_type type; >> + bool irq_mode = false; >> >> /* Ignore disabled trip points */ >> if (test_bit(trip, &tz->trips_disabled)) >> @@ -419,9 +420,14 @@ static void handle_thermal_trip(struct >> thermal_zone_device *tz, int trip) >> handle_non_critical_trips(tz, trip); >> /* >> * Alright, we handled this trip successfully. >> - * So, start monitoring again. >> + * So, start monitoring in polling mode if >> + * trip is not using irq HW support. >> */ >> - monitor_thermal_zone(tz); >> + if (tz->ops->get_trip_irq_mode) >> + tz->ops->get_trip_irq_mode(tz, trip, &irq_mode); >> + >> + if (!irq_mode) >> + monitor_thermal_zone(tz); >> } >> > handle_thermal_trip() is called from thermal_zone_device_update(), and > it is invoked for every trip points. > say, you have a passive trip point 1 that supports irq_mode, and > another passive trip point 2 that does not support irq_mode, > monitor_thermal_zone() is still called in handle_thermal_trip(tz, 2), > and the passive timer will be activated anyway, do I miss something? Yes, the passive timer will be activated in your example. It is correct behavior and does not break anything. case 1: there is 'k' passive trip points which have irq_mode and 1 additional which does not have 'irq_mode', the framework will start polling but skip check for those 'k' trip points. case 2: all of the passive trip points have irq_mode set, the framework will not register 'scheduled_work' because it will not call 'monitor_thermal_zone()'. This is the case of most Exynos platforms, but there is one exception which has 'case 1' with 2 trip points not supporting irq_mode. Regards, Lukasz > > thanks, > rui > >> static void update_temperature(struct thermal_zone_device *tz) >> diff --git a/include/linux/thermal.h b/include/linux/thermal.h >> index 5f4705f..b064565 100644 >> --- a/include/linux/thermal.h >> +++ b/include/linux/thermal.h >> @@ -103,6 +103,7 @@ struct thermal_zone_device_ops { >> enum thermal_device_mode); >> int (*get_trip_type) (struct thermal_zone_device *, int, >> enum thermal_trip_type *); >> + int (*get_trip_irq_mode) (struct thermal_zone_device *, int, >> bool *); >> int (*get_trip_temp) (struct thermal_zone_device *, int, int >> *); >> int (*set_trip_temp) (struct thermal_zone_device *, int, >> int); >> int (*get_trip_hyst) (struct thermal_zone_device *, int, int >> *); >> @@ -196,6 +197,7 @@ struct thermal_zone_device { >> struct thermal_attr *trip_temp_attrs; >> struct thermal_attr *trip_type_attrs; >> struct thermal_attr *trip_hyst_attrs; >> + struct thermal_attr *trip_irq_mode_attrs; >> void *devdata; >> int trips; >> unsigned long trips_disabled; /* bitmap for disabled >> trips */ >> @@ -364,6 +366,8 @@ struct thermal_zone_of_device_ops { >> * @temperature: temperature value in miliCelsius >> * @hysteresis: relative hysteresis in miliCelsius >> * @type: trip point type >> + * @irq_mode: to not use polling in framework set support of HW irq >> (which will >> + * be triggered when temperature reaches this level). >> */ >> >> struct thermal_trip { >> @@ -371,6 +375,7 @@ struct thermal_trip { >> int temperature; >> int hysteresis; >> enum thermal_trip_type type; >> + bool irq_mode; >> }; >> >> /* Function declarations */ > >
next prev parent reply other threads:[~2018-12-06 19:18 UTC|newest] Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top [not found] <CGME20181107171019eucas1p1fcb1f44e00265434548d901479f2ea94@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 00/11] thermal: add new flag irq-mode " Lukasz Luba [not found] ` <CGME20181107171022eucas1p1c2431f0561d9b1357ab569ab77deca34@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 01/11] thermal: remove unused function parameter Lukasz Luba [not found] ` <CGME20181107171036eucas1p13253d56b463c8f888ab8f8e418635297@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 02/11] thermal: add irq-mode configuration for trip point Lukasz Luba 2018-12-05 15:09 ` Zhang Rui 2018-12-06 19:18 ` Lukasz Luba [this message] 2018-12-06 19:55 ` Lukasz Luba 2019-01-10 14:20 ` Zhang Rui [not found] ` <CGME20181107171037eucas1p1b475d186830d4401b50fcd2c16781f92@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 03/11] thermal: add new sysfs file for irq-mode Lukasz Luba [not found] ` <CGME20181107171038eucas1p1eb5dce12a1f5f7a3587f82f8396fa075@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 04/11] Doc: thermal: new irq-mode for trip point Lukasz Luba [not found] ` <CGME20181107171039eucas1p2227bd4bc573fd0d2a3a97986004be16b@eucas1p2.samsung.com> 2018-11-07 17:09 ` [PATCH v2 05/11] Doc: DT: " Lukasz Luba 2018-11-12 8:51 ` Krzysztof Kozlowski 2018-11-13 10:06 ` Lukasz Luba [not found] ` <5bea0ecd.1c69fb81.d5613.1c9e@mx.google.com> 2018-11-13 10:13 ` Lukasz Luba [not found] ` <CGME20181107171041eucas1p1a3cf91435b9071fd6e6f84101ebbcd9f@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 06/11] arm64: dts: exynos5433: add support for thermal trip irq-mode Lukasz Luba 2018-11-12 9:00 ` Krzysztof Kozlowski 2018-11-13 10:10 ` Lukasz Luba [not found] ` <CGME20181107171042eucas1p1675eb589f3951e516461a0a775ee87da@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 07/11] arm64: dts: exynos7: " Lukasz Luba [not found] ` <CGME20181107171043eucas1p16be3fa901c7bceb129c70fc81dba6e48@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 08/11] arm: dts: exynos4: " Lukasz Luba [not found] ` <CGME20181107171044eucas1p198434e21cf21ee754302615a6a8f3c20@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 09/11] arm: dts: exynos5420: " Lukasz Luba [not found] ` <CGME20181107171045eucas1p26ec5feb1b2a397971c919592f6d87b40@eucas1p2.samsung.com> 2018-11-07 17:09 ` [PATCH v2 10/11] arm: dts: exynos5422: " Lukasz Luba [not found] ` <CGME20181107171046eucas1p1649bcf14a88ef9dd183724dde3a98f8c@eucas1p1.samsung.com> 2018-11-07 17:09 ` [PATCH v2 11/11] arm: dts: exynos5410: " Lukasz Luba 2018-12-05 15:08 ` [PATCH v2 00/11] thermal: add new flag irq-mode for trip point Zhang Rui 2018-12-05 15:33 ` Lukasz Luba
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=2ac425fc-7c32-6e2f-7086-c14f85b0bbfd@partner.samsung.com \ --to=l.luba@partner.samsung.com \ --cc=b.zolnierkie@samsung.com \ --cc=corbet@lwn.net \ --cc=daniel.lezcano@linaro.org \ --cc=devicetree@vger.kernel.org \ --cc=edubezval@gmail.com \ --cc=krzk@kernel.org \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-doc@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=linux-pm@vger.kernel.org \ --cc=mark.rutland@arm.com \ --cc=robh+dt@kernel.org \ --cc=rui.zhang@intel.com \ --subject='Re: [PATCH v2 02/11] thermal: add irq-mode configuration for trip point' \ /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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).