* [PATCH] ARM: iop32x: fix reset handling for the EM7210 board
@ 2014-01-29 12:45 Linus Walleij
2014-01-29 12:57 ` Arnaud Patard (Rtp)
2014-01-29 14:26 ` Arnd Bergmann
0 siblings, 2 replies; 4+ messages in thread
From: Linus Walleij @ 2014-01-29 12:45 UTC (permalink / raw)
To: linux-arm-kernel
This board was missed when converting all the others to proper
abstracted GPIO handling. Fix it up the right way by requesting
and driving GPIO line 0 high through gpiolib to reset the machine.
Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
ARM SoC folks, if you're happy with this fix, please apply it
directly to fixes in the ARM SoC tree.
---
arch/arm/mach-iop32x/em7210.c | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-iop32x/em7210.c b/arch/arm/mach-iop32x/em7210.c
index 177cd073a83b..e0c4187f3799 100644
--- a/arch/arm/mach-iop32x/em7210.c
+++ b/arch/arm/mach-iop32x/em7210.c
@@ -23,6 +23,7 @@
#include <linux/mtd/physmap.h>
#include <linux/platform_device.h>
#include <linux/i2c.h>
+#include <linux/gpio.h>
#include <mach/hardware.h>
#include <linux/io.h>
#include <linux/irq.h>
@@ -176,14 +177,21 @@ static struct platform_device em7210_serial_device = {
.resource = &em7210_uart_resource,
};
+#define EM7210_HARDWARE_RESET 0
+
void em7210_power_off(void)
{
- *IOP3XX_GPOE &= 0xfe;
- *IOP3XX_GPOD |= 0x01;
+ int ret;
+
+ ret = gpio_direction_output(EM7210_HARDWARE_RESET, 1);
+ if (ret)
+ pr_crit("could not drive reset GPIO high\n");
}
static void __init em7210_init_machine(void)
{
+ int ret;
+
register_iop32x_gpio();
platform_device_register(&em7210_serial_device);
platform_device_register(&iop3xx_i2c0_device);
@@ -194,7 +202,9 @@ static void __init em7210_init_machine(void)
i2c_register_board_info(0, em7210_i2c_devices,
ARRAY_SIZE(em7210_i2c_devices));
-
+ ret = gpio_request(EM7210_HARDWARE_RESET, "reset");
+ if (ret)
+ pr_err("could not request reset GPIO\n");
pm_power_off = em7210_power_off;
}
--
1.8.5.3
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH] ARM: iop32x: fix reset handling for the EM7210 board
2014-01-29 12:45 [PATCH] ARM: iop32x: fix reset handling for the EM7210 board Linus Walleij
@ 2014-01-29 12:57 ` Arnaud Patard (Rtp)
2014-01-29 14:13 ` Linus Walleij
2014-01-29 14:26 ` Arnd Bergmann
1 sibling, 1 reply; 4+ messages in thread
From: Arnaud Patard (Rtp) @ 2014-01-29 12:57 UTC (permalink / raw)
To: linux-arm-kernel
Linus Walleij <linus.walleij@linaro.org> writes:
Hi,
don't know how to comment about the subjet but it's _not_ about
resetting the board but about powering it off.
> This board was missed when converting all the others to proper
> abstracted GPIO handling. Fix it up the right way by requesting
> and driving GPIO line 0 high through gpiolib to reset the machine.
>
> Reported-by: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> ARM SoC folks, if you're happy with this fix, please apply it
> directly to fixes in the ARM SoC tree.
> ---
> arch/arm/mach-iop32x/em7210.c | 16 +++++++++++++---
> 1 file changed, 13 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-iop32x/em7210.c b/arch/arm/mach-iop32x/em7210.c
> index 177cd073a83b..e0c4187f3799 100644
> --- a/arch/arm/mach-iop32x/em7210.c
> +++ b/arch/arm/mach-iop32x/em7210.c
> @@ -23,6 +23,7 @@
> #include <linux/mtd/physmap.h>
> #include <linux/platform_device.h>
> #include <linux/i2c.h>
> +#include <linux/gpio.h>
> #include <mach/hardware.h>
> #include <linux/io.h>
> #include <linux/irq.h>
> @@ -176,14 +177,21 @@ static struct platform_device em7210_serial_device = {
> .resource = &em7210_uart_resource,
> };
>
> +#define EM7210_HARDWARE_RESET 0
> +
please fix accoring to my previous comment.
> void em7210_power_off(void)
> {
> - *IOP3XX_GPOE &= 0xfe;
> - *IOP3XX_GPOD |= 0x01;
> + int ret;
> +
> + ret = gpio_direction_output(EM7210_HARDWARE_RESET, 1);
> + if (ret)
> + pr_crit("could not drive reset GPIO high\n");
> }
>
> static void __init em7210_init_machine(void)
> {
> + int ret;
> +
> register_iop32x_gpio();
> platform_device_register(&em7210_serial_device);
> platform_device_register(&iop3xx_i2c0_device);
> @@ -194,7 +202,9 @@ static void __init em7210_init_machine(void)
>
> i2c_register_board_info(0, em7210_i2c_devices,
> ARRAY_SIZE(em7210_i2c_devices));
> -
> + ret = gpio_request(EM7210_HARDWARE_RESET, "reset");
> + if (ret)
> + pr_err("could not request reset GPIO\n");
no chance to work. too early. you'll get a -EPROBE_DEFER.
Arnaud
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH] ARM: iop32x: fix reset handling for the EM7210 board
2014-01-29 12:57 ` Arnaud Patard (Rtp)
@ 2014-01-29 14:13 ` Linus Walleij
0 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2014-01-29 14:13 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Jan 29, 2014 at 1:57 PM, Arnaud Patard
<arnaud.patard@rtp-net.org> wrote:
> Linus Walleij <linus.walleij@linaro.org> writes:
>
> don't know how to comment about the subjet but it's _not_ about
> resetting the board but about powering it off.
Aha sorry I'll respin with updated text.
>> register_iop32x_gpio();
>> platform_device_register(&em7210_serial_device);
>> platform_device_register(&iop3xx_i2c0_device);
>> @@ -194,7 +202,9 @@ static void __init em7210_init_machine(void)
>>
>> i2c_register_board_info(0, em7210_i2c_devices,
>> ARRAY_SIZE(em7210_i2c_devices));
>> -
>> + ret = gpio_request(EM7210_HARDWARE_RESET, "reset");
>> + if (ret)
>> + pr_err("could not request reset GPIO\n");
>
> no chance to work. too early. you'll get a -EPROBE_DEFER.
Yeah that's right, I remember now that I added a separate
device_initcall() on the N2100 for this. Thanks, I'll respin that.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: iop32x: fix reset handling for the EM7210 board
2014-01-29 12:45 [PATCH] ARM: iop32x: fix reset handling for the EM7210 board Linus Walleij
2014-01-29 12:57 ` Arnaud Patard (Rtp)
@ 2014-01-29 14:26 ` Arnd Bergmann
1 sibling, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2014-01-29 14:26 UTC (permalink / raw)
To: linux-arm-kernel
On Wednesday 29 January 2014, Linus Walleij wrote:
> This board was missed when converting all the others to proper
> abstracted GPIO handling. Fix it up the right way by requesting
> and driving GPIO line 0 high through gpiolib to reset the machine.
>
> Reported-by: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Thanks for the prompt resolution. Aside from what Arnaud mentioned,
Acked-by: Arnd Bergmann <arnd@arndb.de>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-01-29 14:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-29 12:45 [PATCH] ARM: iop32x: fix reset handling for the EM7210 board Linus Walleij
2014-01-29 12:57 ` Arnaud Patard (Rtp)
2014-01-29 14:13 ` Linus Walleij
2014-01-29 14:26 ` Arnd Bergmann
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).