diff options
author | Magnus Damm <damm@igel.co.jp> | 2009-03-10 02:13:22 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-03-10 02:26:56 -0400 |
commit | 508407149a7f927c4b65a20e0a08a2a94dc769c6 (patch) | |
tree | 5b04a900db013fcecb4d3568c8d7ff0223fc1720 /arch/sh/boards | |
parent | 74aaf024c9a4def24f3eb91a675e4712142d3c87 (diff) |
sh: Show sleep state with Migo-R LEDs
If CONFIG_PM is set, let Migo-R LEDs show sleep states.
D11 will show STATUS0 and D12 PDSTATUS.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards')
-rw-r--r-- | arch/sh/boards/mach-migor/setup.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-migor/setup.c b/arch/sh/boards/mach-migor/setup.c index 28e56c5809a2..bc35b4cae6b3 100644 --- a/arch/sh/boards/mach-migor/setup.c +++ b/arch/sh/boards/mach-migor/setup.c | |||
@@ -450,6 +450,14 @@ static struct spi_board_info migor_spi_devices[] = { | |||
450 | 450 | ||
451 | static int __init migor_devices_setup(void) | 451 | static int __init migor_devices_setup(void) |
452 | { | 452 | { |
453 | |||
454 | #ifdef CONFIG_PM | ||
455 | /* Let D11 LED show STATUS0 */ | ||
456 | gpio_request(GPIO_FN_STATUS0, NULL); | ||
457 | |||
458 | /* Lit D12 LED show PDSTATUS */ | ||
459 | gpio_request(GPIO_FN_PDSTATUS, NULL); | ||
460 | #else | ||
453 | /* Lit D11 LED */ | 461 | /* Lit D11 LED */ |
454 | gpio_request(GPIO_PTJ7, NULL); | 462 | gpio_request(GPIO_PTJ7, NULL); |
455 | gpio_direction_output(GPIO_PTJ7, 1); | 463 | gpio_direction_output(GPIO_PTJ7, 1); |
@@ -459,6 +467,7 @@ static int __init migor_devices_setup(void) | |||
459 | gpio_request(GPIO_PTJ5, NULL); | 467 | gpio_request(GPIO_PTJ5, NULL); |
460 | gpio_direction_output(GPIO_PTJ5, 1); | 468 | gpio_direction_output(GPIO_PTJ5, 1); |
461 | gpio_export(GPIO_PTJ5, 0); | 469 | gpio_export(GPIO_PTJ5, 0); |
470 | #endif | ||
462 | 471 | ||
463 | /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */ | 472 | /* SMC91C111 - Enable IRQ0, Setup CS4 for 16-bit fast access */ |
464 | gpio_request(GPIO_FN_IRQ0, NULL); | 473 | gpio_request(GPIO_FN_IRQ0, NULL); |