LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] ARM: davinci: DA8XX: fix oops in USB PHY driver due to stack allocated platform platform_data
@ 2018-03-15 18:02 David Lechner
2018-03-15 19:14 ` David Lechner
2018-03-16 10:17 ` Sekhar Nori
0 siblings, 2 replies; 4+ messages in thread
From: David Lechner @ 2018-03-15 18:02 UTC (permalink / raw)
To: linux-arm-kernel
Cc: David Lechner, Sekhar Nori, Kevin Hilman, Bartosz Golaszewski,
linux-kernel
This fixes a possible kernel oops due to using stack allocated platform
data for the USB PHY driver on DA8XX devices. If the platform device
probe is deferred, then we get a corrupt pointer for the platform data.
We now use a global static struct for the platform data so that the
platform data pointer does not get written over.
Tested on OMAP-L138 LCDK board using legacy board file.
Fixes: 9b504750923cb ("ARM: davinci: da8xx: Add USB PHY platform device")
Signed-off-by: David Lechner <david@lechnology.com>
---
arch/arm/mach-davinci/usb-da8xx.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/arch/arm/mach-davinci/usb-da8xx.c b/arch/arm/mach-davinci/usb-da8xx.c
index b1e53e31..9ff9624 100644
--- a/arch/arm/mach-davinci/usb-da8xx.c
+++ b/arch/arm/mach-davinci/usb-da8xx.c
@@ -23,17 +23,20 @@
#define DA8XX_USB0_BASE 0x01e00000
#define DA8XX_USB1_BASE 0x01e25000
+static struct da8xx_usb_phy_platform_data da8xx_usb_phy_pdata;
+
static struct platform_device da8xx_usb_phy = {
.name = "da8xx-usb-phy",
.id = -1,
+ .dev = {
+ .platform_data = &da8xx_usb_phy_pdata,
+ },
};
+
int __init da8xx_register_usb_phy(void)
{
- struct da8xx_usb_phy_platform_data pdata;
-
- pdata.cfgchip = da8xx_get_cfgchip();
- da8xx_usb_phy.dev.platform_data = &pdata;
+ da8xx_usb_phy_pdata.cfgchip = da8xx_get_cfgchip();
return platform_device_register(&da8xx_usb_phy);
}
--
2.7.4
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: davinci: DA8XX: fix oops in USB PHY driver due to stack allocated platform platform_data
2018-03-15 18:02 [PATCH] ARM: davinci: DA8XX: fix oops in USB PHY driver due to stack allocated platform platform_data David Lechner
@ 2018-03-15 19:14 ` David Lechner
2018-03-16 10:17 ` Sekhar Nori
1 sibling, 0 replies; 4+ messages in thread
From: David Lechner @ 2018-03-15 19:14 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Sekhar Nori, Kevin Hilman, Bartosz Golaszewski, linux-kernel
On 03/15/2018 01:02 PM, David Lechner wrote:
> This fixes a possible kernel oops due to using stack allocated platform
> data for the USB PHY driver on DA8XX devices. If the platform device
> probe is deferred, then we get a corrupt pointer for the platform data.
>
> We now use a global static struct for the platform data so that the
> platform data pointer does not get written over.
>
> Tested on OMAP-L138 LCDK board using legacy board file.
>
> Fixes: 9b504750923cb ("ARM: davinci: da8xx: Add USB PHY platform device")
> Signed-off-by: David Lechner <david@lechnology.com>
> ---
superseded by v2 that applies cleanly before common clock series
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: davinci: DA8XX: fix oops in USB PHY driver due to stack allocated platform platform_data
2018-03-15 18:02 [PATCH] ARM: davinci: DA8XX: fix oops in USB PHY driver due to stack allocated platform platform_data David Lechner
2018-03-15 19:14 ` David Lechner
@ 2018-03-16 10:17 ` Sekhar Nori
2018-03-16 15:20 ` David Lechner
1 sibling, 1 reply; 4+ messages in thread
From: Sekhar Nori @ 2018-03-16 10:17 UTC (permalink / raw)
To: David Lechner, linux-arm-kernel
Cc: Kevin Hilman, Bartosz Golaszewski, linux-kernel
On Thursday 15 March 2018 11:32 PM, David Lechner wrote:
> This fixes a possible kernel oops due to using stack allocated platform
> data for the USB PHY driver on DA8XX devices. If the platform device
> probe is deferred, then we get a corrupt pointer for the platform data.
>
> We now use a global static struct for the platform data so that the
> platform data pointer does not get written over.
>
> Tested on OMAP-L138 LCDK board using legacy board file.
Oops. That should have been caught in review.
>
> Fixes: 9b504750923cb ("ARM: davinci: da8xx: Add USB PHY platform device")
The offending commit seems to be bdec5a6b5789 ("ARM: da8xx: use platform
data for CFGCHIP syscon regmap") in my tree which should be in
linux-next. I don't think we have this issue in mainline. Right?
> Signed-off-by: David Lechner <david@lechnology.com>
Thanks,
Sekhar
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: davinci: DA8XX: fix oops in USB PHY driver due to stack allocated platform platform_data
2018-03-16 10:17 ` Sekhar Nori
@ 2018-03-16 15:20 ` David Lechner
0 siblings, 0 replies; 4+ messages in thread
From: David Lechner @ 2018-03-16 15:20 UTC (permalink / raw)
To: Sekhar Nori, linux-arm-kernel
Cc: Kevin Hilman, Bartosz Golaszewski, linux-kernel
On 03/16/2018 05:17 AM, Sekhar Nori wrote:
> On Thursday 15 March 2018 11:32 PM, David Lechner wrote:
>> This fixes a possible kernel oops due to using stack allocated platform
>> data for the USB PHY driver on DA8XX devices. If the platform device
>> probe is deferred, then we get a corrupt pointer for the platform data.
>>
>> We now use a global static struct for the platform data so that the
>> platform data pointer does not get written over.
>>
>> Tested on OMAP-L138 LCDK board using legacy board file.
>
> Oops. That should have been caught in review.
>
>>
>> Fixes: 9b504750923cb ("ARM: davinci: da8xx: Add USB PHY platform device")
>
> The offending commit seems to be bdec5a6b5789 ("ARM: da8xx: use platform
> data for CFGCHIP syscon regmap") in my tree which should be in
> linux-next. I don't think we have this issue in mainline. Right?
You are right. I'm not sure how I got that older commit. The issue is not
in mainline yet.
>
>> Signed-off-by: David Lechner <david@lechnology.com>
>
> Thanks,
> Sekhar
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-03-16 15:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-15 18:02 [PATCH] ARM: davinci: DA8XX: fix oops in USB PHY driver due to stack allocated platform platform_data David Lechner
2018-03-15 19:14 ` David Lechner
2018-03-16 10:17 ` Sekhar Nori
2018-03-16 15:20 ` David Lechner
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).