From: Andrew Lunn <andrew@lunn.ch>
To: Oleksij Rempel <o.rempel@pengutronix.de>
Cc: Heiner Kallweit <hkallweit1@gmail.com>,
"David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Jean Delvare <jdelvare@suse.com>,
Guenter Roeck <linux@roeck-us.net>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
Marek Vasut <marex@denx.de>, David Jander <david@protonic.nl>,
linux-hwmon@vger.kernel.org
Subject: Re: [PATCH net-next v1] net: phy: nxp-tja11xx: log critical health state
Date: Tue, 10 Aug 2021 17:05:55 +0200 [thread overview]
Message-ID: <YRKV05IoqtJYr6Cj@lunn.ch> (raw)
In-Reply-To: <20210810125618.20255-1-o.rempel@pengutronix.de>
Hi Oleksij
> @@ -89,6 +91,12 @@ static struct tja11xx_phy_stats tja11xx_hw_stats[] = {
> { "phy_polarity_detect", 25, 6, BIT(6) },
> { "phy_open_detect", 25, 7, BIT(7) },
> { "phy_short_detect", 25, 8, BIT(8) },
> + { "phy_temp_warn (temp > 155C°)", 25, 9, BIT(9) },
> + { "phy_temp_high (temp > 180C°)", 25, 10, BIT(10) },
> + { "phy_uv_vddio", 25, 11, BIT(11) },
> + { "phy_uv_vddd_1v8", 25, 13, BIT(13) },
> + { "phy_uv_vdda_3v3", 25, 14, BIT(14) },
> + { "phy_uv_vddd_3v3", 25, 15, BIT(15) },
> { "phy_rem_rcvr_count", 26, 0, GENMASK(7, 0) },
> { "phy_loc_rcvr_count", 26, 8, GENMASK(15, 8) },
I'm not so happy abusing the statistic counters like this. Especially
when we have a better API for temperature and voltage: hwmon.
phy_temp_warn maps to hwmon_temp_max_alarm. phy_temp_high maps to
either hwmon_temp_crit_alarm or hwmon_temp_emergency_alarm.
The under voltage maps to hwmon_in_lcrit_alarm.
> @@ -630,6 +640,11 @@ static irqreturn_t tja11xx_handle_interrupt(struct phy_device *phydev)
> return IRQ_NONE;
> }
>
> + if (irq_status & MII_INTSRC_TEMP_ERR)
> + dev_err(dev, "Overtemperature error detected (temp > 155C°).\n");
> + if (irq_status & MII_INTSRC_UV_ERR)
> + dev_err(dev, "Undervoltage error detected.\n");
> +
These are not actual errors, in the linux sense. So dev_warn() or
maybe dev_info().
Andrew
next prev parent reply other threads:[~2021-08-10 15:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-10 12:56 [PATCH net-next v1] net: phy: nxp-tja11xx: log critical health state Oleksij Rempel
2021-08-10 15:05 ` Andrew Lunn [this message]
2021-08-10 18:18 ` Guenter Roeck
2021-08-10 18:42 ` Andrew Lunn
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=YRKV05IoqtJYr6Cj@lunn.ch \
--to=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=david@protonic.nl \
--cc=hkallweit1@gmail.com \
--cc=jdelvare@suse.com \
--cc=kernel@pengutronix.de \
--cc=kuba@kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=marex@denx.de \
--cc=netdev@vger.kernel.org \
--cc=o.rempel@pengutronix.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;
as well as URLs for NNTP newsgroup(s).