* [PATCH] i2c: imx: correct the method of getting private data in notifier_call
@ 2019-04-17 1:59 Anson Huang
2019-04-17 3:13 ` Aisheng Dong
2019-04-23 21:21 ` Wolfram Sang
0 siblings, 2 replies; 6+ messages in thread
From: Anson Huang @ 2019-04-17 1:59 UTC (permalink / raw)
To: shawnguo@kernel.org, s.hauer@pengutronix.de,
kernel@pengutronix.de, festevam@gmail.com,
wsa+renesas@sang-engineering.com, u.kleine-koenig@pengutronix.de,
eha@deif.com, linux@rempel-privat.de, mojha@codeaurora.org,
Laurentiu Tudor, peda@axentia.se, linux-i2c@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Cc: dl-linux-imx
The way of getting private imx_i2c_struct in i2c_imx_clk_notifier_call()
is incorrect, should use clk_change_nb element to get correct address
and avoid below kernel dump during POST_RATE_CHANGE notify by clk
framework:
Unable to handle kernel paging request at virtual address 03ef1488
pgd = (ptrval)
[03ef1488] *pgd=00000000
Internal error: Oops: 5 [#1] PREEMPT SMP ARM
Hardware name: Freescale i.MX6 Quad/DualLite (Device Tree)
Workqueue: events reduce_bus_freq_handler
PC is at i2c_imx_set_clk+0x10/0xb8
LR is at i2c_imx_clk_notifier_call+0x20/0x28
pc : [<806a893c>] lr : [<806a8a04>] psr: a0080013
sp : bf399dd8 ip : bf3432ac fp : bf7c1dc0
r10: 00000002 r9 : 00000000 r8 : 00000000
r7 : 03ef1480 r6 : bf399e50 r5 : ffffffff r4 : 00000000
r3 : bf025300 r2 : bf399e50 r1 : 00b71b00 r0 : bf399be8
Flags: NzCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none
Control: 10c5387d Table: 4e03004a DAC: 00000051
Process kworker/2:1 (pid: 38, stack limit = 0x(ptrval))
Stack: (0xbf399dd8 to 0xbf39a000)
9dc0: 806a89e4 00000000
9de0: ffffffff bf399e50 00000002 806a8a04 806a89e4 80142900 ffffffff 00000000
9e00: bf34ef18 bf34ef04 00000000 ffffffff bf399e50 80142d84 00000000 bf399e6c
9e20: bf34ef00 80f214c4 bf025300 00000002 80f08d08 bf017480 00000000 80142df0
9e40: 00000000 80166ed8 80c27638 8045de58 bf352340 03ef1480 00b71b00 0f82e242
9e60: bf025300 00000002 03ef1480 80f60e5c 00000001 8045edf0 00000002 8045eb08
9e80: bf025300 00000002 03ef1480 8045ee10 03ef1480 8045eb08 bf01be40 00000002
9ea0: 03ef1480 8045ee10 07de2900 8045eb08 bf01b780 00000002 07de2900 8045ee10
9ec0: 80c27898 bf399ee4 bf020a80 00000002 1f78a400 8045ee10 80f60e5c 80460514
9ee0: 80f60e5c bf01b600 bf01b480 80460460 0f82e242 bf383a80 bf383a00 80f60e5c
9f00: 00000000 bf7c1dc0 80f60e70 80460564 80f60df0 80f60d24 80f60df0 8011e72c
9f20: 00000000 80f60df0 80f60e6c bf7c4f00 00000000 8011e7ac bf274000 8013bd84
9f40: bf7c1dd8 80f03d00 bf274000 bf7c1dc0 bf274014 bf7c1dd8 80f03d00 bf398000
9f60: 00000008 8013bfb4 00000000 bf25d100 bf25d0c0 00000000 bf274000 8013bf88
9f80: bf25d11c bf0cfebc 00000000 8014140c bf25d0c0 801412ec 00000000 00000000
9fa0: 00000000 00000000 00000000 801010e8 00000000 00000000 00000000 00000000
9fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
9fe0: 00000000 00000000 00000000 00000000 00000013 00000000 00000000 00000000
[<806a893c>] (i2c_imx_set_clk) from [<806a8a04>] (i2c_imx_clk_notifier_call+0x20/0x28)
[<806a8a04>] (i2c_imx_clk_notifier_call) from [<80142900>] (notifier_call_chain+0x44/0x84)
[<80142900>] (notifier_call_chain) from [<80142d84>] (__srcu_notifier_call_chain+0x44/0x98)
[<80142d84>] (__srcu_notifier_call_chain) from [<80142df0>] (srcu_notifier_call_chain+0x18/0x20)
[<80142df0>] (srcu_notifier_call_chain) from [<8045de58>] (__clk_notify+0x78/0xa4)
[<8045de58>] (__clk_notify) from [<8045edf0>] (__clk_recalc_rates+0x60/0xb4)
[<8045edf0>] (__clk_recalc_rates) from [<8045ee10>] (__clk_recalc_rates+0x80/0xb4)
Code: e92d40f8 e5903298 e59072a0 e1530001 (e5975008)
---[ end trace fc7f5514b97b6cbb ]---
Fixes: 90ad2cbe88c2("i2c: imx: use clk notifier for rate changes")
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
drivers/i2c/busses/i2c-imx.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c
index c0c3043..fd70b11 100644
--- a/drivers/i2c/busses/i2c-imx.c
+++ b/drivers/i2c/busses/i2c-imx.c
@@ -515,9 +515,9 @@ static int i2c_imx_clk_notifier_call(struct notifier_block *nb,
unsigned long action, void *data)
{
struct clk_notifier_data *ndata = data;
- struct imx_i2c_struct *i2c_imx = container_of(&ndata->clk,
+ struct imx_i2c_struct *i2c_imx = container_of(nb,
struct imx_i2c_struct,
- clk);
+ clk_change_nb);
if (action & POST_RATE_CHANGE)
i2c_imx_set_clk(i2c_imx, ndata->new_rate);
--
2.7.4
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 6+ messages in thread* RE: [PATCH] i2c: imx: correct the method of getting private data in notifier_call 2019-04-17 1:59 [PATCH] i2c: imx: correct the method of getting private data in notifier_call Anson Huang @ 2019-04-17 3:13 ` Aisheng Dong 2019-04-17 3:17 ` Aisheng Dong 2019-04-17 3:18 ` Anson Huang 2019-04-23 21:21 ` Wolfram Sang 1 sibling, 2 replies; 6+ messages in thread From: Aisheng Dong @ 2019-04-17 3:13 UTC (permalink / raw) To: Anson Huang, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, festevam@gmail.com, wsa+renesas@sang-engineering.com, u.kleine-koenig@pengutronix.de, eha@deif.com, linux@rempel-privat.de, mojha@codeaurora.org, Laurentiu Tudor, peda@axentia.se, linux-i2c@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: dl-linux-imx > From: Anson Huang > Sent: Wednesday, April 17, 2019 10:00 AM > > The way of getting private imx_i2c_struct in i2c_imx_clk_notifier_call() is > incorrect, should use clk_change_nb element to get correct address and avoid > below kernel dump during POST_RATE_CHANGE notify by clk > framework: > > Unable to handle kernel paging request at virtual address 03ef1488 pgd = > (ptrval) [03ef1488] *pgd=00000000 Internal error: Oops: 5 [#1] PREEMPT SMP > ARM Hardware name: Freescale i.MX6 Quad/DualLite (Device Tree) > Workqueue: events reduce_bus_freq_handler PC is at > i2c_imx_set_clk+0x10/0xb8 LR is at i2c_imx_clk_notifier_call+0x20/0x28 > pc : [<806a893c>] lr : [<806a8a04>] psr: a0080013 > sp : bf399dd8 ip : bf3432ac fp : bf7c1dc0 > r10: 00000002 r9 : 00000000 r8 : 00000000 > r7 : 03ef1480 r6 : bf399e50 r5 : ffffffff r4 : 00000000 > r3 : bf025300 r2 : bf399e50 r1 : 00b71b00 r0 : bf399be8 > Flags: NzCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none > Control: 10c5387d Table: 4e03004a DAC: 00000051 Process kworker/2:1 > (pid: 38, stack limit = 0x(ptrval)) > Stack: (0xbf399dd8 to 0xbf39a000) > 9dc0: > 806a89e4 00000000 > 9de0: ffffffff bf399e50 00000002 806a8a04 806a89e4 80142900 ffffffff > 00000000 > 9e00: bf34ef18 bf34ef04 00000000 ffffffff bf399e50 80142d84 00000000 > bf399e6c > 9e20: bf34ef00 80f214c4 bf025300 00000002 80f08d08 bf017480 00000000 > 80142df0 > 9e40: 00000000 80166ed8 80c27638 8045de58 bf352340 03ef1480 > 00b71b00 0f82e242 > 9e60: bf025300 00000002 03ef1480 80f60e5c 00000001 8045edf0 > 00000002 8045eb08 > 9e80: bf025300 00000002 03ef1480 8045ee10 03ef1480 8045eb08 > bf01be40 00000002 > 9ea0: 03ef1480 8045ee10 07de2900 8045eb08 bf01b780 00000002 > 07de2900 8045ee10 > 9ec0: 80c27898 bf399ee4 bf020a80 00000002 1f78a400 8045ee10 80f60e5c > 80460514 > 9ee0: 80f60e5c bf01b600 bf01b480 80460460 0f82e242 bf383a80 bf383a00 > 80f60e5c > 9f00: 00000000 bf7c1dc0 80f60e70 80460564 80f60df0 80f60d24 80f60df0 > 8011e72c > 9f20: 00000000 80f60df0 80f60e6c bf7c4f00 00000000 8011e7ac bf274000 > 8013bd84 > 9f40: bf7c1dd8 80f03d00 bf274000 bf7c1dc0 bf274014 bf7c1dd8 80f03d00 > bf398000 > 9f60: 00000008 8013bfb4 00000000 bf25d100 bf25d0c0 00000000 > bf274000 8013bf88 > 9f80: bf25d11c bf0cfebc 00000000 8014140c bf25d0c0 801412ec 00000000 > 00000000 > 9fa0: 00000000 00000000 00000000 801010e8 00000000 00000000 > 00000000 00000000 > 9fc0: 00000000 00000000 00000000 00000000 00000000 00000000 > 00000000 00000000 > 9fe0: 00000000 00000000 00000000 00000000 00000013 00000000 > 00000000 00000000 [<806a893c>] (i2c_imx_set_clk) from [<806a8a04>] > (i2c_imx_clk_notifier_call+0x20/0x28) > [<806a8a04>] (i2c_imx_clk_notifier_call) from [<80142900>] > (notifier_call_chain+0x44/0x84) [<80142900>] (notifier_call_chain) from > [<80142d84>] (__srcu_notifier_call_chain+0x44/0x98) > [<80142d84>] (__srcu_notifier_call_chain) from [<80142df0>] > (srcu_notifier_call_chain+0x18/0x20) > [<80142df0>] (srcu_notifier_call_chain) from [<8045de58>] > (__clk_notify+0x78/0xa4) [<8045de58>] (__clk_notify) from [<8045edf0>] > (__clk_recalc_rates+0x60/0xb4) [<8045edf0>] (__clk_recalc_rates) from > [<8045ee10>] (__clk_recalc_rates+0x80/0xb4) > Code: e92d40f8 e5903298 e59072a0 e1530001 (e5975008) ---[ end trace > fc7f5514b97b6cbb ]--- > > Fixes: 90ad2cbe88c2("i2c: imx: use clk notifier for rate changes") > Signed-off-by: Anson Huang <Anson.Huang@nxp.com> Please also provide how to reproduce it. And it seems not a new issue, should we CC stable? Regards Dong Aisheng > --- > drivers/i2c/busses/i2c-imx.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c index > c0c3043..fd70b11 100644 > --- a/drivers/i2c/busses/i2c-imx.c > +++ b/drivers/i2c/busses/i2c-imx.c > @@ -515,9 +515,9 @@ static int i2c_imx_clk_notifier_call(struct > notifier_block *nb, > unsigned long action, void *data) { > struct clk_notifier_data *ndata = data; > - struct imx_i2c_struct *i2c_imx = container_of(&ndata->clk, > + struct imx_i2c_struct *i2c_imx = container_of(nb, > struct imx_i2c_struct, > - clk); > + clk_change_nb); > > if (action & POST_RATE_CHANGE) > i2c_imx_set_clk(i2c_imx, ndata->new_rate); > -- > 2.7.4 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] i2c: imx: correct the method of getting private data in notifier_call 2019-04-17 3:13 ` Aisheng Dong @ 2019-04-17 3:17 ` Aisheng Dong 2019-04-23 21:22 ` Wolfram Sang 2019-04-17 3:18 ` Anson Huang 1 sibling, 1 reply; 6+ messages in thread From: Aisheng Dong @ 2019-04-17 3:17 UTC (permalink / raw) To: Anson Huang, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, festevam@gmail.com, wsa+renesas@sang-engineering.com, u.kleine-koenig@pengutronix.de, eha@deif.com, linux@rempel-privat.de, mojha@codeaurora.org, Laurentiu Tudor, peda@axentia.se, linux-i2c@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: dl-linux-imx [...] > > > > Fixes: 90ad2cbe88c2("i2c: imx: use clk notifier for rate changes") > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com> > > Please also provide how to reproduce it. > And it seems not a new issue, should we CC stable? Besides above comments: Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com> Regards Dong Aisheng > > Regards > Dong Aisheng > > > --- > > drivers/i2c/busses/i2c-imx.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/i2c/busses/i2c-imx.c > > b/drivers/i2c/busses/i2c-imx.c index > > c0c3043..fd70b11 100644 > > --- a/drivers/i2c/busses/i2c-imx.c > > +++ b/drivers/i2c/busses/i2c-imx.c > > @@ -515,9 +515,9 @@ static int i2c_imx_clk_notifier_call(struct > > notifier_block *nb, > > unsigned long action, void *data) { > > struct clk_notifier_data *ndata = data; > > - struct imx_i2c_struct *i2c_imx = container_of(&ndata->clk, > > + struct imx_i2c_struct *i2c_imx = container_of(nb, > > struct imx_i2c_struct, > > - clk); > > + clk_change_nb); > > > > if (action & POST_RATE_CHANGE) > > i2c_imx_set_clk(i2c_imx, ndata->new_rate); > > -- > > 2.7.4 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i2c: imx: correct the method of getting private data in notifier_call 2019-04-17 3:17 ` Aisheng Dong @ 2019-04-23 21:22 ` Wolfram Sang 0 siblings, 0 replies; 6+ messages in thread From: Wolfram Sang @ 2019-04-23 21:22 UTC (permalink / raw) To: Aisheng Dong Cc: eha@deif.com, Anson Huang, peda@axentia.se, shawnguo@kernel.org, s.hauer@pengutronix.de, linux-kernel@vger.kernel.org, linux@rempel-privat.de, wsa+renesas@sang-engineering.com, linux-i2c@vger.kernel.org, kernel@pengutronix.de, u.kleine-koenig@pengutronix.de, dl-linux-imx, festevam@gmail.com, mojha@codeaurora.org, linux-arm-kernel@lists.infradead.org, Laurentiu Tudor [-- Attachment #1.1: Type: text/plain, Size: 234 bytes --] Hey Dong Aisheng, > Besides above comments: > > Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com> Are you maybe interested in maintaining this driver? We are seriously needing one with experience. Thanks, Wolfram [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] [-- Attachment #2: Type: text/plain, Size: 176 bytes --] _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] i2c: imx: correct the method of getting private data in notifier_call 2019-04-17 3:13 ` Aisheng Dong 2019-04-17 3:17 ` Aisheng Dong @ 2019-04-17 3:18 ` Anson Huang 1 sibling, 0 replies; 6+ messages in thread From: Anson Huang @ 2019-04-17 3:18 UTC (permalink / raw) To: Aisheng Dong, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, festevam@gmail.com, wsa+renesas@sang-engineering.com, u.kleine-koenig@pengutronix.de, eha@deif.com, linux@rempel-privat.de, mojha@codeaurora.org, Laurentiu Tudor, peda@axentia.se, linux-i2c@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: dl-linux-imx Hi, Aisheng Best Regards! Anson Huang > -----Original Message----- > From: Aisheng Dong > Sent: Wednesday, April 17, 2019 11:13 AM > To: Anson Huang <anson.huang@nxp.com>; shawnguo@kernel.org; > s.hauer@pengutronix.de; kernel@pengutronix.de; festevam@gmail.com; > wsa+renesas@sang-engineering.com; u.kleine-koenig@pengutronix.de; > eha@deif.com; linux@rempel-privat.de; mojha@codeaurora.org; Laurentiu > Tudor <laurentiu.tudor@nxp.com>; peda@axentia.se; linux- > i2c@vger.kernel.org; linux-arm-kernel@lists.infradead.org; linux- > kernel@vger.kernel.org > Cc: dl-linux-imx <linux-imx@nxp.com> > Subject: RE: [PATCH] i2c: imx: correct the method of getting private data in > notifier_call > > > From: Anson Huang > > Sent: Wednesday, April 17, 2019 10:00 AM > > > > The way of getting private imx_i2c_struct in > > i2c_imx_clk_notifier_call() is incorrect, should use clk_change_nb > > element to get correct address and avoid below kernel dump during > > POST_RATE_CHANGE notify by clk > > framework: > > > > Unable to handle kernel paging request at virtual address 03ef1488 pgd > > = > > (ptrval) [03ef1488] *pgd=00000000 Internal error: Oops: 5 [#1] PREEMPT > > SMP ARM Hardware name: Freescale i.MX6 Quad/DualLite (Device Tree) > > Workqueue: events reduce_bus_freq_handler PC is at > > i2c_imx_set_clk+0x10/0xb8 LR is at i2c_imx_clk_notifier_call+0x20/0x28 > > pc : [<806a893c>] lr : [<806a8a04>] psr: a0080013 > > sp : bf399dd8 ip : bf3432ac fp : bf7c1dc0 > > r10: 00000002 r9 : 00000000 r8 : 00000000 > > r7 : 03ef1480 r6 : bf399e50 r5 : ffffffff r4 : 00000000 > > r3 : bf025300 r2 : bf399e50 r1 : 00b71b00 r0 : bf399be8 > > Flags: NzCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none > > Control: 10c5387d Table: 4e03004a DAC: 00000051 Process kworker/2:1 > > (pid: 38, stack limit = 0x(ptrval)) > > Stack: (0xbf399dd8 to 0xbf39a000) > > 9dc0: > > 806a89e4 00000000 > > 9de0: ffffffff bf399e50 00000002 806a8a04 806a89e4 80142900 ffffffff > > 00000000 > > 9e00: bf34ef18 bf34ef04 00000000 ffffffff bf399e50 80142d84 00000000 > > bf399e6c > > 9e20: bf34ef00 80f214c4 bf025300 00000002 80f08d08 bf017480 00000000 > > 80142df0 > > 9e40: 00000000 80166ed8 80c27638 8045de58 bf352340 03ef1480 > > 00b71b00 0f82e242 > > 9e60: bf025300 00000002 03ef1480 80f60e5c 00000001 8045edf0 > > 00000002 8045eb08 > > 9e80: bf025300 00000002 03ef1480 8045ee10 03ef1480 8045eb08 > > bf01be40 00000002 > > 9ea0: 03ef1480 8045ee10 07de2900 8045eb08 bf01b780 00000002 > > 07de2900 8045ee10 > > 9ec0: 80c27898 bf399ee4 bf020a80 00000002 1f78a400 8045ee10 80f60e5c > > 80460514 > > 9ee0: 80f60e5c bf01b600 bf01b480 80460460 0f82e242 bf383a80 bf383a00 > > 80f60e5c > > 9f00: 00000000 bf7c1dc0 80f60e70 80460564 80f60df0 80f60d24 80f60df0 > > 8011e72c > > 9f20: 00000000 80f60df0 80f60e6c bf7c4f00 00000000 8011e7ac bf274000 > > 8013bd84 > > 9f40: bf7c1dd8 80f03d00 bf274000 bf7c1dc0 bf274014 bf7c1dd8 80f03d00 > > bf398000 > > 9f60: 00000008 8013bfb4 00000000 bf25d100 bf25d0c0 00000000 > > bf274000 8013bf88 > > 9f80: bf25d11c bf0cfebc 00000000 8014140c bf25d0c0 801412ec 00000000 > > 00000000 > > 9fa0: 00000000 00000000 00000000 801010e8 00000000 00000000 > > 00000000 00000000 > > 9fc0: 00000000 00000000 00000000 00000000 00000000 00000000 > > 00000000 00000000 > > 9fe0: 00000000 00000000 00000000 00000000 00000013 00000000 > > 00000000 00000000 [<806a893c>] (i2c_imx_set_clk) from [<806a8a04>] > > (i2c_imx_clk_notifier_call+0x20/0x28) > > [<806a8a04>] (i2c_imx_clk_notifier_call) from [<80142900>] > > (notifier_call_chain+0x44/0x84) [<80142900>] (notifier_call_chain) > > from [<80142d84>] (__srcu_notifier_call_chain+0x44/0x98) > > [<80142d84>] (__srcu_notifier_call_chain) from [<80142df0>] > > (srcu_notifier_call_chain+0x18/0x20) > > [<80142df0>] (srcu_notifier_call_chain) from [<8045de58>] > > (__clk_notify+0x78/0xa4) [<8045de58>] (__clk_notify) from [<8045edf0>] > > (__clk_recalc_rates+0x60/0xb4) [<8045edf0>] (__clk_recalc_rates) from > > [<8045ee10>] (__clk_recalc_rates+0x80/0xb4) > > Code: e92d40f8 e5903298 e59072a0 e1530001 (e5975008) ---[ end trace > > fc7f5514b97b6cbb ]--- > > > > Fixes: 90ad2cbe88c2("i2c: imx: use clk notifier for rate changes") > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com> > > Please also provide how to reproduce it. > And it seems not a new issue, should we CC stable? This issue is NOT easy to reproduce unless creating a dedicated test case, upstream kernel normally does NOT go into this path, I met this issue during internal bus-freq test, and it should be a real issue. Code review also can find this issue I think. Yes, if it is indeed a real issue, we should CC stable. Anson. > > Regards > Dong Aisheng > > > --- > > drivers/i2c/busses/i2c-imx.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/i2c/busses/i2c-imx.c > > b/drivers/i2c/busses/i2c-imx.c index > > c0c3043..fd70b11 100644 > > --- a/drivers/i2c/busses/i2c-imx.c > > +++ b/drivers/i2c/busses/i2c-imx.c > > @@ -515,9 +515,9 @@ static int i2c_imx_clk_notifier_call(struct > > notifier_block *nb, > > unsigned long action, void *data) { > > struct clk_notifier_data *ndata = data; > > - struct imx_i2c_struct *i2c_imx = container_of(&ndata->clk, > > + struct imx_i2c_struct *i2c_imx = container_of(nb, > > struct imx_i2c_struct, > > - clk); > > + clk_change_nb); > > > > if (action & POST_RATE_CHANGE) > > i2c_imx_set_clk(i2c_imx, ndata->new_rate); > > -- > > 2.7.4 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i2c: imx: correct the method of getting private data in notifier_call 2019-04-17 1:59 [PATCH] i2c: imx: correct the method of getting private data in notifier_call Anson Huang 2019-04-17 3:13 ` Aisheng Dong @ 2019-04-23 21:21 ` Wolfram Sang 1 sibling, 0 replies; 6+ messages in thread From: Wolfram Sang @ 2019-04-23 21:21 UTC (permalink / raw) To: Anson Huang Cc: eha@deif.com, peda@axentia.se, shawnguo@kernel.org, s.hauer@pengutronix.de, linux-kernel@vger.kernel.org, linux@rempel-privat.de, wsa+renesas@sang-engineering.com, linux-i2c@vger.kernel.org, kernel@pengutronix.de, u.kleine-koenig@pengutronix.de, dl-linux-imx, festevam@gmail.com, mojha@codeaurora.org, linux-arm-kernel@lists.infradead.org, Laurentiu Tudor [-- Attachment #1.1: Type: text/plain, Size: 3332 bytes --] On Wed, Apr 17, 2019 at 01:59:34AM +0000, Anson Huang wrote: > The way of getting private imx_i2c_struct in i2c_imx_clk_notifier_call() > is incorrect, should use clk_change_nb element to get correct address > and avoid below kernel dump during POST_RATE_CHANGE notify by clk > framework: > > Unable to handle kernel paging request at virtual address 03ef1488 > pgd = (ptrval) > [03ef1488] *pgd=00000000 > Internal error: Oops: 5 [#1] PREEMPT SMP ARM > Hardware name: Freescale i.MX6 Quad/DualLite (Device Tree) > Workqueue: events reduce_bus_freq_handler > PC is at i2c_imx_set_clk+0x10/0xb8 > LR is at i2c_imx_clk_notifier_call+0x20/0x28 > pc : [<806a893c>] lr : [<806a8a04>] psr: a0080013 > sp : bf399dd8 ip : bf3432ac fp : bf7c1dc0 > r10: 00000002 r9 : 00000000 r8 : 00000000 > r7 : 03ef1480 r6 : bf399e50 r5 : ffffffff r4 : 00000000 > r3 : bf025300 r2 : bf399e50 r1 : 00b71b00 r0 : bf399be8 > Flags: NzCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none > Control: 10c5387d Table: 4e03004a DAC: 00000051 > Process kworker/2:1 (pid: 38, stack limit = 0x(ptrval)) > Stack: (0xbf399dd8 to 0xbf39a000) > 9dc0: 806a89e4 00000000 > 9de0: ffffffff bf399e50 00000002 806a8a04 806a89e4 80142900 ffffffff 00000000 > 9e00: bf34ef18 bf34ef04 00000000 ffffffff bf399e50 80142d84 00000000 bf399e6c > 9e20: bf34ef00 80f214c4 bf025300 00000002 80f08d08 bf017480 00000000 80142df0 > 9e40: 00000000 80166ed8 80c27638 8045de58 bf352340 03ef1480 00b71b00 0f82e242 > 9e60: bf025300 00000002 03ef1480 80f60e5c 00000001 8045edf0 00000002 8045eb08 > 9e80: bf025300 00000002 03ef1480 8045ee10 03ef1480 8045eb08 bf01be40 00000002 > 9ea0: 03ef1480 8045ee10 07de2900 8045eb08 bf01b780 00000002 07de2900 8045ee10 > 9ec0: 80c27898 bf399ee4 bf020a80 00000002 1f78a400 8045ee10 80f60e5c 80460514 > 9ee0: 80f60e5c bf01b600 bf01b480 80460460 0f82e242 bf383a80 bf383a00 80f60e5c > 9f00: 00000000 bf7c1dc0 80f60e70 80460564 80f60df0 80f60d24 80f60df0 8011e72c > 9f20: 00000000 80f60df0 80f60e6c bf7c4f00 00000000 8011e7ac bf274000 8013bd84 > 9f40: bf7c1dd8 80f03d00 bf274000 bf7c1dc0 bf274014 bf7c1dd8 80f03d00 bf398000 > 9f60: 00000008 8013bfb4 00000000 bf25d100 bf25d0c0 00000000 bf274000 8013bf88 > 9f80: bf25d11c bf0cfebc 00000000 8014140c bf25d0c0 801412ec 00000000 00000000 > 9fa0: 00000000 00000000 00000000 801010e8 00000000 00000000 00000000 00000000 > 9fc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 > 9fe0: 00000000 00000000 00000000 00000000 00000013 00000000 00000000 00000000 > [<806a893c>] (i2c_imx_set_clk) from [<806a8a04>] (i2c_imx_clk_notifier_call+0x20/0x28) > [<806a8a04>] (i2c_imx_clk_notifier_call) from [<80142900>] (notifier_call_chain+0x44/0x84) > [<80142900>] (notifier_call_chain) from [<80142d84>] (__srcu_notifier_call_chain+0x44/0x98) > [<80142d84>] (__srcu_notifier_call_chain) from [<80142df0>] (srcu_notifier_call_chain+0x18/0x20) > [<80142df0>] (srcu_notifier_call_chain) from [<8045de58>] (__clk_notify+0x78/0xa4) > [<8045de58>] (__clk_notify) from [<8045edf0>] (__clk_recalc_rates+0x60/0xb4) > [<8045edf0>] (__clk_recalc_rates) from [<8045ee10>] (__clk_recalc_rates+0x80/0xb4) > Code: e92d40f8 e5903298 e59072a0 e1530001 (e5975008) Applied to for-current, thanks! [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] [-- Attachment #2: Type: text/plain, Size: 176 bytes --] _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-04-23 21:22 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-04-17 1:59 [PATCH] i2c: imx: correct the method of getting private data in notifier_call Anson Huang 2019-04-17 3:13 ` Aisheng Dong 2019-04-17 3:17 ` Aisheng Dong 2019-04-23 21:22 ` Wolfram Sang 2019-04-17 3:18 ` Anson Huang 2019-04-23 21:21 ` Wolfram Sang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox