2007-02-11 20:31:01 +03:00
/* linux/arch/arm/plat-s3c24xx/pm-simtec.c
2005-06-29 14:09:15 +04:00
*
2009-11-14 01:54:12 +03:00
* Copyright 2004 Simtec Electronics
2005-06-29 14:09:15 +04:00
* Ben Dooks < ben @ simtec . co . uk >
*
* http : //armlinux.simtec.co.uk/
*
* Power Management helpers for Simtec S3C24XX implementations
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation .
*/
# include <linux/kernel.h>
# include <linux/types.h>
# include <linux/interrupt.h>
# include <linux/list.h>
# include <linux/timer.h>
# include <linux/init.h>
# include <linux/device.h>
2008-09-06 15:10:45 +04:00
# include <linux/io.h>
2005-06-29 14:09:15 +04:00
# include <asm/mach/arch.h>
# include <asm/mach/map.h>
2008-08-05 19:14:15 +04:00
# include <mach/hardware.h>
2005-06-29 14:09:15 +04:00
2008-08-05 19:14:15 +04:00
# include <mach/map.h>
# include <mach/regs-gpio.h>
2005-06-29 14:09:15 +04:00
# include <asm/mach-types.h>
2008-10-08 01:26:09 +04:00
# include <plat/pm.h>
2005-06-29 14:09:15 +04:00
2013-02-04 05:00:11 +04:00
# include "regs-mem.h"
2009-11-14 01:54:12 +03:00
# define COPYRIGHT ", Copyright 2005 Simtec Electronics"
2005-06-29 14:09:15 +04:00
/* pm_simtec_init
*
* enable the power management functions
*/
static __init int pm_simtec_init ( void )
{
unsigned long gstatus4 ;
/* check which machine we are running on */
2006-06-25 00:22:35 +04:00
if ( ! machine_is_bast ( ) & & ! machine_is_vr1000 ( ) & &
2006-09-26 20:46:00 +04:00
! machine_is_anubis ( ) & & ! machine_is_osiris ( ) & &
! machine_is_aml_m5900 ( ) )
2005-06-29 14:09:15 +04:00
return 0 ;
2012-02-12 17:58:46 +04:00
printk ( KERN_INFO " Simtec Board Power Management " COPYRIGHT " \n " ) ;
2005-06-29 14:09:15 +04:00
gstatus4 = ( __raw_readl ( S3C2410_BANKCON7 ) & 0x3 ) < < 30 ;
gstatus4 | = ( __raw_readl ( S3C2410_BANKCON6 ) & 0x3 ) < < 28 ;
gstatus4 | = ( __raw_readl ( S3C2410_BANKSIZE ) & S3C2410_BANKSIZE_MASK ) ;
__raw_writel ( gstatus4 , S3C2410_GSTATUS4 ) ;
2008-12-12 03:24:18 +03:00
return s3c_pm_init ( ) ;
2005-06-29 14:09:15 +04:00
}
arch_initcall ( pm_simtec_init ) ;