All of lore.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: John Garry <john.garry@huawei.com>,
	Hardware Monitoring <linux-hwmon@vger.kernel.org>
Cc: Jean Delvare <jdelvare@suse.com>,
	Kefeng Wang <wangkefeng.wang@huawei.com>
Subject: Re: [PATCH 4/4] hwmon: (smsc47b397) Use request_muxed_region for Super-IO accesses
Date: Fri, 5 Apr 2019 09:02:37 -0700	[thread overview]
Message-ID: <20190405160237.GA15577@roeck-us.net> (raw)
In-Reply-To: <5a95deed-db26-4795-6234-f0509e845b16@roeck-us.net>

On Fri, Apr 05, 2019 at 06:25:13AM -0700, Guenter Roeck wrote:
> On 4/5/19 1:46 AM, John Garry wrote:
> >On 05/04/2019 08:47, John Garry wrote:
> >>On 04/04/2019 19:33, Guenter Roeck wrote:
> >>>Super-IO accesses may fail on a system with no or unmapped LPC bus.
> >>>
> >
> >BTW, these may still require attention:
> >
> >sch56xx-common
> >smsc47m1
> 
> Those two already call request_muxed_region() in superio_enter().
> Though error handling in the latter is less than perfect - I may send
> a patch to fix it.
> 

... and that was because this patch has the wrong subject, and its error
handling is incomplete. I'll resend.

Guenter

> >w83627hf > vt1211
> 
> I missed those two. Patches will follow.
> 
> Thanks,
> Guenter
> 
> >
> >Thanks,
> >John
> >
> >>>Also, other drivers may attempt to access the LPC bus at the same time,
> >>>resulting in undefined behavior.
> >>>
> >>>Use request_muxed_region() to ensure that IO access on the requested
> >>>address space is supported, and to ensure that access by multiple drivers
> >>>is synchronized.
> >>>
> >>>Fixes: 8d5d45fb1468 ("I2C: Move hwmon drivers (2/3)")
> >>>Reported-by: Kefeng Wang <wangkefeng.wang@huawei.com>
> >>>Reported-by: John Garry <john.garry@huawei.com>
> >>>Cc: John Garry <john.garry@huawei.com>
> >>
> >>Acked-by: John Garry <john.garry@huawei.com>
> >>
> >>>Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> >>>---
> >>> drivers/hwmon/smsc47m1.c | 13 +++++++++++--
> >>> 1 file changed, 11 insertions(+), 2 deletions(-)
> >>>
> >>>diff --git a/drivers/hwmon/smsc47m1.c b/drivers/hwmon/smsc47m1.c
> >>>index c7b6a425e2c0..0736ca6a3aee 100644
> >>>--- a/drivers/hwmon/smsc47m1.c
> >>>+++ b/drivers/hwmon/smsc47m1.c
> >>>@@ -73,16 +73,21 @@ superio_inb(int reg)
> >>> /* logical device for fans is 0x0A */
> >>> #define superio_select() superio_outb(0x07, 0x0A)
> >>>
> >>>-static inline void
> >>>+static inline int
> >>> superio_enter(void)
> >>> {
> >>>+    if (!request_muxed_region(REG, 2, DRVNAME))
> >>>+        return -EBUSY;
> >>>+
> >>>     outb(0x55, REG);
> >>>+    return 0;
> >>> }
> >>>
> >>> static inline void
> >>> superio_exit(void)
> >>> {
> >>>     outb(0xAA, REG);
> >>>+    release_region(REG, 2);
> >>> }
> >>>
> >>> #define SUPERIO_REG_ACT        0x30
> >>>@@ -531,8 +536,12 @@ static int __init smsc47m1_find(struct
> >>>smsc47m1_sio_data *sio_data)
> >>> {
> >>>     u8 val;
> >>>     unsigned short addr;
> >>>+    int err;
> >>>+
> >>>+    err = superio_enter();
> >>>+    if (err)
> >>>+        return err;
> >>>
> >>>-    superio_enter();
> >>>     val = force_id ? force_id : superio_inb(SUPERIO_REG_DEVID);
> >>>
> >>>     /*
> >>>
> >>
> >
> >
> >
> 

  reply	other threads:[~2019-04-05 16:02 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-04 18:33 [PATCH 1/4] hwmon: (f71805f) Use request_muxed_region for Super-IO accesses Guenter Roeck
2019-04-04 18:33 ` [PATCH 2/4] hwmon: (pc87427) " Guenter Roeck
2019-04-05  7:46   ` John Garry
2019-04-04 18:33 ` [PATCH 3/4] hwmon: (smsc47b397) " Guenter Roeck
2019-04-05  7:47   ` John Garry
2019-04-04 18:33 ` [PATCH 4/4] " Guenter Roeck
2019-04-05  7:47   ` John Garry
2019-04-05  8:46     ` John Garry
2019-04-05 13:25       ` Guenter Roeck
2019-04-05 16:02         ` Guenter Roeck [this message]
2019-04-05  7:45 ` [PATCH 1/4] hwmon: (f71805f) " John Garry

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=20190405160237.GA15577@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=jdelvare@suse.com \
    --cc=john.garry@huawei.com \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=wangkefeng.wang@huawei.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.