2005-04-16 15:20:36 -07:00
/*
2011-11-05 17:38:32 +00:00
* linux / arch / arm / mach - clps711x / core . c
2005-04-16 15:20:36 -07:00
*
2011-11-05 17:38:32 +00:00
* Core support for the CLPS711x - based machines .
*
* Copyright ( C ) 2001 , 2011 Deep Blue Solutions Ltd
2005-04-16 15:20:36 -07:00
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
2011-11-05 17:38:32 +00:00
# include <linux/kernel.h>
# include <linux/mm.h>
2005-04-16 15:20:36 -07:00
# include <linux/init.h>
2011-11-05 17:38:32 +00:00
# include <linux/interrupt.h>
2008-09-06 12:10:45 +01:00
# include <linux/io.h>
2011-11-05 17:38:32 +00:00
# include <linux/irq.h>
# include <linux/sched.h>
2005-04-16 15:20:36 -07:00
2011-11-05 17:38:32 +00:00
# include <asm/sizes.h>
2008-08-05 16:14:15 +01:00
# include <mach/hardware.h>
2005-04-16 15:20:36 -07:00
# include <asm/irq.h>
2011-11-05 17:38:32 +00:00
# include <asm/leds.h>
# include <asm/pgtable.h>
# include <asm/page.h>
# include <asm/mach/map.h>
# include <asm/mach/time.h>
2012-03-28 18:30:01 +01:00
# include <asm/system_misc.h>
2005-04-16 15:20:36 -07:00
2011-11-05 17:38:32 +00:00
/*
* This maps the generic CLPS711x registers
*/
static struct map_desc clps711x_io_desc [ ] __initdata = {
{
2012-05-06 09:21:57 +04:00
. virtual = ( unsigned long ) CLPS711X_VIRT_BASE ,
. pfn = __phys_to_pfn ( CLPS711X_PHYS_BASE ) ,
2011-11-05 17:38:32 +00:00
. length = SZ_1M ,
. type = MT_DEVICE
}
} ;
void __init clps711x_map_io ( void )
{
iotable_init ( clps711x_io_desc , ARRAY_SIZE ( clps711x_io_desc ) ) ;
}
2010-11-29 10:26:56 +01:00
static void int1_mask ( struct irq_data * d )
2005-04-16 15:20:36 -07:00
{
u32 intmr1 ;
intmr1 = clps_readl ( INTMR1 ) ;
2010-11-29 10:26:56 +01:00
intmr1 & = ~ ( 1 < < d - > irq ) ;
2005-04-16 15:20:36 -07:00
clps_writel ( intmr1 , INTMR1 ) ;
}
2010-11-29 10:26:56 +01:00
static void int1_ack ( struct irq_data * d )
2005-04-16 15:20:36 -07:00
{
2010-11-29 10:26:56 +01:00
switch ( d - > irq ) {
2005-04-16 15:20:36 -07:00
case IRQ_CSINT : clps_writel ( 0 , COEOI ) ; break ;
case IRQ_TC1OI : clps_writel ( 0 , TC1EOI ) ; break ;
case IRQ_TC2OI : clps_writel ( 0 , TC2EOI ) ; break ;
case IRQ_RTCMI : clps_writel ( 0 , RTCEOI ) ; break ;
case IRQ_TINT : clps_writel ( 0 , TEOI ) ; break ;
case IRQ_UMSINT : clps_writel ( 0 , UMSEOI ) ; break ;
}
}
2010-11-29 10:26:56 +01:00
static void int1_unmask ( struct irq_data * d )
2005-04-16 15:20:36 -07:00
{
u32 intmr1 ;
intmr1 = clps_readl ( INTMR1 ) ;
2010-11-29 10:26:56 +01:00
intmr1 | = 1 < < d - > irq ;
2005-04-16 15:20:36 -07:00
clps_writel ( intmr1 , INTMR1 ) ;
}
2006-11-23 11:41:32 +00:00
static struct irq_chip int1_chip = {
2010-11-29 10:26:56 +01:00
. irq_ack = int1_ack ,
. irq_mask = int1_mask ,
. irq_unmask = int1_unmask ,
2005-04-16 15:20:36 -07:00
} ;
2010-11-29 10:26:56 +01:00
static void int2_mask ( struct irq_data * d )
2005-04-16 15:20:36 -07:00
{
u32 intmr2 ;
intmr2 = clps_readl ( INTMR2 ) ;
2010-11-29 10:26:56 +01:00
intmr2 & = ~ ( 1 < < ( d - > irq - 16 ) ) ;
2005-04-16 15:20:36 -07:00
clps_writel ( intmr2 , INTMR2 ) ;
}
2010-11-29 10:26:56 +01:00
static void int2_ack ( struct irq_data * d )
2005-04-16 15:20:36 -07:00
{
2010-11-29 10:26:56 +01:00
switch ( d - > irq ) {
2005-04-16 15:20:36 -07:00
case IRQ_KBDINT : clps_writel ( 0 , KBDEOI ) ; break ;
}
}
2010-11-29 10:26:56 +01:00
static void int2_unmask ( struct irq_data * d )
2005-04-16 15:20:36 -07:00
{
u32 intmr2 ;
intmr2 = clps_readl ( INTMR2 ) ;
2010-11-29 10:26:56 +01:00
intmr2 | = 1 < < ( d - > irq - 16 ) ;
2005-04-16 15:20:36 -07:00
clps_writel ( intmr2 , INTMR2 ) ;
}
2006-11-23 11:41:32 +00:00
static struct irq_chip int2_chip = {
2010-11-29 10:26:56 +01:00
. irq_ack = int2_ack ,
. irq_mask = int2_mask ,
. irq_unmask = int2_unmask ,
2005-04-16 15:20:36 -07:00
} ;
void __init clps711x_init_irq ( void )
{
unsigned int i ;
for ( i = 0 ; i < NR_IRQS ; i + + ) {
if ( INT1_IRQS & ( 1 < < i ) ) {
2011-11-05 17:38:32 +00:00
irq_set_chip_and_handler ( i , & int1_chip ,
2011-03-24 13:35:09 +01:00
handle_level_irq ) ;
2011-11-05 17:38:32 +00:00
set_irq_flags ( i , IRQF_VALID | IRQF_PROBE ) ;
2005-04-16 15:20:36 -07:00
}
if ( INT2_IRQS & ( 1 < < i ) ) {
2011-03-24 13:35:09 +01:00
irq_set_chip_and_handler ( i , & int2_chip ,
handle_level_irq ) ;
2005-04-16 15:20:36 -07:00
set_irq_flags ( i , IRQF_VALID | IRQF_PROBE ) ;
2011-11-05 17:38:32 +00:00
}
2005-04-16 15:20:36 -07:00
}
/*
* Disable interrupts
*/
clps_writel ( 0 , INTMR1 ) ;
clps_writel ( 0 , INTMR2 ) ;
/*
* Clear down any pending interrupts
*/
clps_writel ( 0 , COEOI ) ;
clps_writel ( 0 , TC1EOI ) ;
clps_writel ( 0 , TC2EOI ) ;
clps_writel ( 0 , RTCEOI ) ;
clps_writel ( 0 , TEOI ) ;
clps_writel ( 0 , UMSEOI ) ;
clps_writel ( 0 , SYNCIO ) ;
clps_writel ( 0 , KBDEOI ) ;
}
2011-11-05 17:38:32 +00:00
/*
* gettimeoffset ( ) returns time since last timer tick , in usecs .
*
* ' LATCH ' is hwclock ticks ( see CLOCK_TICK_RATE in timex . h ) per jiffy .
* ' tick ' is usecs per jiffy .
*/
static unsigned long clps711x_gettimeoffset ( void )
{
unsigned long hwticks ;
hwticks = LATCH - ( clps_readl ( TC2D ) & 0xffff ) ; /* since last underflow */
return ( hwticks * ( tick_nsec / 1000 ) ) / LATCH ;
}
/*
* IRQ handler for the timer
*/
static irqreturn_t p720t_timer_interrupt ( int irq , void * dev_id )
{
timer_tick ( ) ;
return IRQ_HANDLED ;
}
static struct irqaction clps711x_timer_irq = {
. name = " CLPS711x Timer Tick " ,
. flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL ,
. handler = p720t_timer_interrupt ,
} ;
static void __init clps711x_timer_init ( void )
{
unsigned int syscon ;
syscon = clps_readl ( SYSCON1 ) ;
syscon | = SYSCON1_TC2S | SYSCON1_TC2M ;
clps_writel ( syscon , SYSCON1 ) ;
clps_writel ( LATCH - 1 , TC2D ) ; /* 512kHz / 100Hz - 1 */
setup_irq ( IRQ_TC2OI , & clps711x_timer_irq ) ;
}
struct sys_timer clps711x_timer = {
. init = clps711x_timer_init ,
. offset = clps711x_gettimeoffset ,
} ;
2011-11-05 17:41:52 +00:00
void clps711x_restart ( char mode , const char * cmd )
{
soft_restart ( 0 ) ;
}
2011-08-02 12:22:48 -04:00
static void clps711x_idle ( void )
{
clps_writel ( 1 , HALT ) ;
__asm__ __volatile__ (
" mov r0, r0 \n \
mov r0 , r0 " );
}
static int __init clps711x_idle_init ( void )
{
arm_pm_idle = clps711x_idle ;
return 0 ;
}
arch_initcall ( clps711x_idle_init ) ;