Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1214071
| From | Guenter Roeck <linux@roeck-us.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used |
| Date | 2015-08-26 19:40 +0200 |
| Message-ID | <q1MQ2-46E-19@gated-at.bofh.it> (permalink) |
| References | <pYzvY-1vo-27@gated-at.bofh.it> <q1Mn0-3z4-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hi Tony,
On 08/26/2015 10:04 AM, Tony Lindgren wrote:
> Hi,
>
> * Guenter Roeck <linux@roeck-us.net> [150817 13:48]:
>> Commit 0b50dc4fc971 ("Convert smsc911x to use ACPI as well as DT") makes
>> the call to smsc911x_probe_config() unconditional, and no longer fails if
>> there is no device node. device_get_phy_mode() is called unconditionally,
>> and if there is no phy node configured returns an error code. This error
>> code is assigned to phy_interface, and interpreted elsewhere in the code
>> as valid phy mode. This in turn causes qemu to crash when running a
>> variant of realview_pb_defconfig.
>>
>> qemu: hardware error: lan9118_read: Bad reg 0x86
>>
>> Fixes: 0b50dc4fc971 ("Convert smsc911x to use ACPI as well as DT")
>> Cc: Jeremy Linton <jeremy.linton@arm.com>
>> Cc Graeme Gregory <graeme.gregory@linaro.org>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>> ---
>> drivers/net/ethernet/smsc/smsc911x.c | 7 ++++++-
>> 1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/ethernet/smsc/smsc911x.c b/drivers/net/ethernet/smsc/smsc911x.c
>> index 0f21aa3bb537..34f97684506b 100644
>> --- a/drivers/net/ethernet/smsc/smsc911x.c
>> +++ b/drivers/net/ethernet/smsc/smsc911x.c
>> @@ -2367,12 +2367,17 @@ static const struct smsc911x_ops shifted_smsc911x_ops = {
>> static int smsc911x_probe_config(struct smsc911x_platform_config *config,
>> struct device *dev)
>> {
>> + int phy_interface;
>> u32 width = 0;
>>
>> if (!dev)
>> return -ENODEV;
>>
>> - config->phy_interface = device_get_phy_mode(dev);
>> + phy_interface = device_get_phy_mode(dev);
>> + if (phy_interface < 0)
>> + return phy_interface;
>> +
>> + config->phy_interface = phy_interface;
>>
>> device_get_mac_address(dev, config->mac, ETH_ALEN);
>
> Looks like this change makes at least omap boards using smsc911x
> fail with -22 for me in Linux next.
>
What do you see if you revert my patch ? It should assign -22, or its
unsigned representation, to phy_interface, which isn't such a good idea
either.
> Do any of the the device tree configured smsc911x devices actually
> have a phy configured?
>
Good question, and beats me. Looking into the original code,
it didn't check for an error return from of_get_phy_mode() either,
and thus _would_ dutifully assign the error code to phy_interface.
Wonder how was this supposed to work to start with.
I'll do some debugging and try to find out what exactly is going on.
Guenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Tony Lindgren <tony@atomide.com> - 2015-08-26 19:10 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Jeremy Linton <jeremy.linton@arm.com> - 2015-08-26 19:40 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Tony Lindgren <tony@atomide.com> - 2015-08-26 19:50 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Guenter Roeck <linux@roeck-us.net> - 2015-08-26 19:40 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Tony Lindgren <tony@atomide.com> - 2015-08-26 20:00 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Guenter Roeck <linux@roeck-us.net> - 2015-08-26 20:40 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Tony Lindgren <tony@atomide.com> - 2015-08-26 22:20 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Guenter Roeck <linux@roeck-us.net> - 2015-08-26 23:00 +0200
Re: [PATCH -next] smsc911x: Fix crash seen if neither ACPI nor OF is configured or used Tony Lindgren <tony@atomide.com> - 2015-08-26 23:50 +0200
csiph-web