* [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex
@ 2017-02-02 19:15 Ricardo Ribalda Delgado
2017-02-03 15:17 ` Jean Delvare
2017-02-09 16:13 ` Wolfram Sang
0 siblings, 2 replies; 6+ messages in thread
From: Ricardo Ribalda Delgado @ 2017-02-02 19:15 UTC (permalink / raw)
To: Jean Delvare, Wolfram Sang, Andy Shevchenko, linux-i2c,
linux-kernel
Cc: Ricardo Ribalda Delgado
SMBSLVCNT must be protected with the piix4_mutex_sb800 in order to avoid
multiple buses accessing to the semaphore at the same time.
Reported-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
---
drivers/i2c/busses/i2c-piix4.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c
index 73cc6799cc59..c21ca7bf2efe 100644
--- a/drivers/i2c/busses/i2c-piix4.c
+++ b/drivers/i2c/busses/i2c-piix4.c
@@ -592,6 +592,8 @@ static s32 piix4_access_sb800(struct i2c_adapter *adap, u16 addr,
u8 port;
int retval;
+ mutex_lock(&piix4_mutex_sb800);
+
/* Request the SMBUS semaphore, avoid conflicts with the IMC */
smbslvcnt = inb_p(SMBSLVCNT);
do {
@@ -605,10 +607,10 @@ static s32 piix4_access_sb800(struct i2c_adapter *adap, u16 addr,
usleep_range(1000, 2000);
} while (--retries);
/* SMBus is still owned by the IMC, we give up */
- if (!retries)
+ if (!retries) {
+ mutex_unlock(&piix4_mutex_sb800);
return -EBUSY;
-
- mutex_lock(&piix4_mutex_sb800);
+ }
outb_p(piix4_port_sel_sb800, SB800_PIIX4_SMB_IDX);
smba_en_lo = inb_p(SB800_PIIX4_SMB_IDX + 1);
@@ -623,11 +625,11 @@ static s32 piix4_access_sb800(struct i2c_adapter *adap, u16 addr,
outb_p(smba_en_lo, SB800_PIIX4_SMB_IDX + 1);
- mutex_unlock(&piix4_mutex_sb800);
-
/* Release the semaphore */
outb_p(smbslvcnt | 0x20, SMBSLVCNT);
+ mutex_unlock(&piix4_mutex_sb800);
+
return retval;
}
--
2.11.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex
2017-02-02 19:15 [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex Ricardo Ribalda Delgado
@ 2017-02-03 15:17 ` Jean Delvare
2017-02-09 16:09 ` Wolfram Sang
2017-02-09 16:13 ` Wolfram Sang
1 sibling, 1 reply; 6+ messages in thread
From: Jean Delvare @ 2017-02-03 15:17 UTC (permalink / raw)
To: Ricardo Ribalda Delgado
Cc: Wolfram Sang, Andy Shevchenko, linux-i2c, linux-kernel
Hi Ricardo,
On Thu, 2 Feb 2017 20:15:16 +0100, Ricardo Ribalda Delgado wrote:
> SMBSLVCNT must be protected with the piix4_mutex_sb800 in order to avoid
> multiple buses accessing to the semaphore at the same time.
>
> Reported-by: Jean Delvare <jdelvare@suse.de>
> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
> ---
> drivers/i2c/busses/i2c-piix4.c | 12 +++++++-----
> 1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c
> index 73cc6799cc59..c21ca7bf2efe 100644
> --- a/drivers/i2c/busses/i2c-piix4.c
> +++ b/drivers/i2c/busses/i2c-piix4.c
> @@ -592,6 +592,8 @@ static s32 piix4_access_sb800(struct i2c_adapter *adap, u16 addr,
> u8 port;
> int retval;
>
> + mutex_lock(&piix4_mutex_sb800);
> +
> /* Request the SMBUS semaphore, avoid conflicts with the IMC */
> smbslvcnt = inb_p(SMBSLVCNT);
> do {
> @@ -605,10 +607,10 @@ static s32 piix4_access_sb800(struct i2c_adapter *adap, u16 addr,
> usleep_range(1000, 2000);
> } while (--retries);
> /* SMBus is still owned by the IMC, we give up */
> - if (!retries)
> + if (!retries) {
> + mutex_unlock(&piix4_mutex_sb800);
> return -EBUSY;
> -
> - mutex_lock(&piix4_mutex_sb800);
> + }
>
> outb_p(piix4_port_sel_sb800, SB800_PIIX4_SMB_IDX);
> smba_en_lo = inb_p(SB800_PIIX4_SMB_IDX + 1);
> @@ -623,11 +625,11 @@ static s32 piix4_access_sb800(struct i2c_adapter *adap, u16 addr,
>
> outb_p(smba_en_lo, SB800_PIIX4_SMB_IDX + 1);
>
> - mutex_unlock(&piix4_mutex_sb800);
> -
> /* Release the semaphore */
> outb_p(smbslvcnt | 0x20, SMBSLVCNT);
>
> + mutex_unlock(&piix4_mutex_sb800);
> +
> return retval;
> }
>
Thanks for the quick fix.
Signed-off-by: Jean Delvare <jdelvare@suse.de>
--
Jean Delvare
SUSE L3 Support
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex
2017-02-03 15:17 ` Jean Delvare
@ 2017-02-09 16:09 ` Wolfram Sang
2017-02-09 17:31 ` Jean Delvare
0 siblings, 1 reply; 6+ messages in thread
From: Wolfram Sang @ 2017-02-09 16:09 UTC (permalink / raw)
To: Jean Delvare
Cc: Ricardo Ribalda Delgado, Andy Shevchenko, linux-i2c, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 166 bytes --]
Jean,
> Thanks for the quick fix.
>
> Signed-off-by: Jean Delvare <jdelvare@suse.de>
I wonder: why do you use Signed-off instead of Reviewed-by recently?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex
2017-02-09 16:09 ` Wolfram Sang
@ 2017-02-09 17:31 ` Jean Delvare
2017-02-09 19:56 ` Wolfram Sang
0 siblings, 1 reply; 6+ messages in thread
From: Jean Delvare @ 2017-02-09 17:31 UTC (permalink / raw)
To: Wolfram Sang
Cc: Ricardo Ribalda Delgado, Andy Shevchenko, linux-i2c, linux-kernel
Hi Wolfram,
On Thu, 9 Feb 2017 17:09:26 +0100, Wolfram Sang wrote:
> > Thanks for the quick fix.
> >
> > Signed-off-by: Jean Delvare <jdelvare@suse.de>
>
> I wonder: why do you use Signed-off instead of Reviewed-by recently?
I use Signed-off-by for drivers I maintain, and Reviewed-by for the
rest.
But I can use whatever you prefer if that's a problem, I don't really
care.
--
Jean Delvare
SUSE L3 Support
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex
2017-02-02 19:15 [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex Ricardo Ribalda Delgado
2017-02-03 15:17 ` Jean Delvare
@ 2017-02-09 16:13 ` Wolfram Sang
1 sibling, 0 replies; 6+ messages in thread
From: Wolfram Sang @ 2017-02-09 16:13 UTC (permalink / raw)
To: Ricardo Ribalda Delgado
Cc: Jean Delvare, Andy Shevchenko, linux-i2c, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 436 bytes --]
On Thu, Feb 02, 2017 at 08:15:16PM +0100, Ricardo Ribalda Delgado wrote:
> SMBSLVCNT must be protected with the piix4_mutex_sb800 in order to avoid
> multiple buses accessing to the semaphore at the same time.
>
> Reported-by: Jean Delvare <jdelvare@suse.de>
> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Applied to for-current and added the same fixes tag as the patch to the
resource size, thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-02-09 19:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-02 19:15 [PATCH] i2c: piix4: Request the SMBUS semaphore inside the mutex Ricardo Ribalda Delgado
2017-02-03 15:17 ` Jean Delvare
2017-02-09 16:09 ` Wolfram Sang
2017-02-09 17:31 ` Jean Delvare
2017-02-09 19:56 ` Wolfram Sang
2017-02-09 16:13 ` Wolfram Sang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox