diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-07-03 06:24:36 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-07-03 11:51:27 -0400 |
commit | dd1086f43dc7205b451ae95e37d4813a9c28611d (patch) | |
tree | 244a3a9e39042ffb27f3a3994bbc504592583907 /arch/arm/mach-s3c2412 | |
parent | d10d8a5f79e3e33db1a9f177c54187e2312598f2 (diff) |
[ARM] JIVE: Add power off on shutdown support
Add pm_power_off hook to allow the Logitech Jive to shutdown
when asked to halt.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2412')
-rw-r--r-- | arch/arm/mach-s3c2412/mach-jive.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2412/mach-jive.c b/arch/arm/mach-s3c2412/mach-jive.c index 7f5d0025060d..7f5924713485 100644 --- a/arch/arm/mach-s3c2412/mach-jive.c +++ b/arch/arm/mach-s3c2412/mach-jive.c | |||
@@ -528,6 +528,14 @@ static void __init jive_map_io(void) | |||
528 | s3c24xx_init_uarts(jive_uartcfgs, ARRAY_SIZE(jive_uartcfgs)); | 528 | s3c24xx_init_uarts(jive_uartcfgs, ARRAY_SIZE(jive_uartcfgs)); |
529 | } | 529 | } |
530 | 530 | ||
531 | static void jive_power_off(void) | ||
532 | { | ||
533 | printk(KERN_INFO "powering system down...\n"); | ||
534 | |||
535 | s3c2410_gpio_setpin(S3C2410_GPC5, 1); | ||
536 | s3c2410_gpio_cfgpin(S3C2410_GPC5, S3C2410_GPIO_OUTPUT); | ||
537 | } | ||
538 | |||
531 | static void __init jive_machine_init(void) | 539 | static void __init jive_machine_init(void) |
532 | { | 540 | { |
533 | /* register system devices for managing low level suspend */ | 541 | /* register system devices for managing low level suspend */ |
@@ -661,6 +669,8 @@ static void __init jive_machine_init(void) | |||
661 | s3c_device_i2c.dev.platform_data = &jive_i2c_cfg; | 669 | s3c_device_i2c.dev.platform_data = &jive_i2c_cfg; |
662 | i2c_register_board_info(0, jive_i2c_devs, ARRAY_SIZE(jive_i2c_devs)); | 670 | i2c_register_board_info(0, jive_i2c_devs, ARRAY_SIZE(jive_i2c_devs)); |
663 | 671 | ||
672 | pm_power_off = jive_power_off; | ||
673 | |||
664 | platform_add_devices(jive_devices, ARRAY_SIZE(jive_devices)); | 674 | platform_add_devices(jive_devices, ARRAY_SIZE(jive_devices)); |
665 | } | 675 | } |
666 | 676 | ||