2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2011-11-05 18:38:32 +01:00
|
|
|
* linux/arch/arm/mach-clps711x/core.c
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2011-11-05 18:38:32 +01:00
|
|
|
* Core support for the CLPS711x-based machines.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001,2011 Deep Blue Solutions Ltd
|
2005-04-17 00:20:36 +02: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
|
|
|
|
*/
|
2012-08-21 18:59:35 +02:00
|
|
|
#include <linux/io.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/init.h>
|
2012-10-10 17:45:27 +02:00
|
|
|
#include <linux/sizes.h>
|
2011-11-05 18:38:32 +01:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
2012-08-21 18:59:35 +02:00
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/clkdev.h>
|
2012-10-10 17:45:27 +02:00
|
|
|
#include <linux/clockchips.h>
|
2012-08-21 18:59:35 +02:00
|
|
|
#include <linux/clk-provider.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-11-17 14:57:14 +01:00
|
|
|
#include <asm/exception.h>
|
2012-11-17 14:57:15 +01:00
|
|
|
#include <asm/mach/irq.h>
|
2011-11-05 18:38:32 +01:00
|
|
|
#include <asm/mach/map.h>
|
|
|
|
#include <asm/mach/time.h>
|
2012-03-28 19:30:01 +02:00
|
|
|
#include <asm/system_misc.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-08-21 18:59:35 +02:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
|
|
|
|
static struct clk *clk_pll, *clk_bus, *clk_uart, *clk_timerl, *clk_timerh,
|
|
|
|
*clk_tint, *clk_spi;
|
|
|
|
|
2011-11-05 18:38:32 +01:00
|
|
|
/*
|
|
|
|
* This maps the generic CLPS711x registers
|
|
|
|
*/
|
|
|
|
static struct map_desc clps711x_io_desc[] __initdata = {
|
|
|
|
{
|
2012-05-06 07:21:57 +02:00
|
|
|
.virtual = (unsigned long)CLPS711X_VIRT_BASE,
|
|
|
|
.pfn = __phys_to_pfn(CLPS711X_PHYS_BASE),
|
2012-10-10 17:45:31 +02:00
|
|
|
.length = SZ_64K,
|
2011-11-05 18:38:32 +01:00
|
|
|
.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-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
u32 intmr1;
|
|
|
|
|
|
|
|
intmr1 = clps_readl(INTMR1);
|
2010-11-29 10:26:56 +01:00
|
|
|
intmr1 &= ~(1 << d->irq);
|
2005-04-17 00:20:36 +02:00
|
|
|
clps_writel(intmr1, INTMR1);
|
|
|
|
}
|
|
|
|
|
2012-10-10 17:45:29 +02:00
|
|
|
static void int1_eoi(struct irq_data *d)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2010-11-29 10:26:56 +01:00
|
|
|
switch (d->irq) {
|
2005-04-17 00:20:36 +02: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-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
u32 intmr1;
|
|
|
|
|
|
|
|
intmr1 = clps_readl(INTMR1);
|
2010-11-29 10:26:56 +01:00
|
|
|
intmr1 |= 1 << d->irq;
|
2005-04-17 00:20:36 +02:00
|
|
|
clps_writel(intmr1, INTMR1);
|
|
|
|
}
|
|
|
|
|
2006-11-23 12:41:32 +01:00
|
|
|
static struct irq_chip int1_chip = {
|
2012-11-17 14:57:15 +01:00
|
|
|
.name = "Interrupt Vector 1",
|
2012-10-10 17:45:29 +02:00
|
|
|
.irq_eoi = int1_eoi,
|
2010-11-29 10:26:56 +01:00
|
|
|
.irq_mask = int1_mask,
|
|
|
|
.irq_unmask = int1_unmask,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2010-11-29 10:26:56 +01:00
|
|
|
static void int2_mask(struct irq_data *d)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
u32 intmr2;
|
|
|
|
|
|
|
|
intmr2 = clps_readl(INTMR2);
|
2010-11-29 10:26:56 +01:00
|
|
|
intmr2 &= ~(1 << (d->irq - 16));
|
2005-04-17 00:20:36 +02:00
|
|
|
clps_writel(intmr2, INTMR2);
|
|
|
|
}
|
|
|
|
|
2012-10-10 17:45:29 +02:00
|
|
|
static void int2_eoi(struct irq_data *d)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2010-11-29 10:26:56 +01:00
|
|
|
switch (d->irq) {
|
2005-04-17 00:20:36 +02: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-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
u32 intmr2;
|
|
|
|
|
|
|
|
intmr2 = clps_readl(INTMR2);
|
2010-11-29 10:26:56 +01:00
|
|
|
intmr2 |= 1 << (d->irq - 16);
|
2005-04-17 00:20:36 +02:00
|
|
|
clps_writel(intmr2, INTMR2);
|
|
|
|
}
|
|
|
|
|
2006-11-23 12:41:32 +01:00
|
|
|
static struct irq_chip int2_chip = {
|
2012-11-17 14:57:15 +01:00
|
|
|
.name = "Interrupt Vector 2",
|
2012-10-10 17:45:29 +02:00
|
|
|
.irq_eoi = int2_eoi,
|
2010-11-29 10:26:56 +01:00
|
|
|
.irq_mask = int2_mask,
|
|
|
|
.irq_unmask = int2_unmask,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2012-11-17 14:57:15 +01:00
|
|
|
static void int3_mask(struct irq_data *d)
|
|
|
|
{
|
|
|
|
u32 intmr3;
|
|
|
|
|
|
|
|
intmr3 = clps_readl(INTMR3);
|
|
|
|
intmr3 &= ~(1 << (d->irq - 32));
|
|
|
|
clps_writel(intmr3, INTMR3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void int3_unmask(struct irq_data *d)
|
|
|
|
{
|
|
|
|
u32 intmr3;
|
|
|
|
|
|
|
|
intmr3 = clps_readl(INTMR3);
|
|
|
|
intmr3 |= 1 << (d->irq - 32);
|
|
|
|
clps_writel(intmr3, INTMR3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct irq_chip int3_chip = {
|
|
|
|
.name = "Interrupt Vector 3",
|
|
|
|
.irq_mask = int3_mask,
|
|
|
|
.irq_unmask = int3_unmask,
|
|
|
|
};
|
|
|
|
|
2012-11-17 14:57:14 +01:00
|
|
|
static struct {
|
2012-10-10 17:45:29 +02:00
|
|
|
int nr;
|
|
|
|
struct irq_chip *chip;
|
|
|
|
irq_flow_handler_t handle;
|
2012-11-17 14:57:14 +01:00
|
|
|
} clps711x_irqdescs[] __initdata = {
|
2012-10-10 17:45:29 +02:00
|
|
|
{ IRQ_CSINT, &int1_chip, handle_fasteoi_irq, },
|
|
|
|
{ IRQ_EINT1, &int1_chip, handle_level_irq, },
|
|
|
|
{ IRQ_EINT2, &int1_chip, handle_level_irq, },
|
|
|
|
{ IRQ_EINT3, &int1_chip, handle_level_irq, },
|
|
|
|
{ IRQ_TC1OI, &int1_chip, handle_fasteoi_irq, },
|
|
|
|
{ IRQ_TC2OI, &int1_chip, handle_fasteoi_irq, },
|
|
|
|
{ IRQ_RTCMI, &int1_chip, handle_fasteoi_irq, },
|
|
|
|
{ IRQ_TINT, &int1_chip, handle_fasteoi_irq, },
|
|
|
|
{ IRQ_UTXINT1, &int1_chip, handle_level_irq, },
|
|
|
|
{ IRQ_URXINT1, &int1_chip, handle_level_irq, },
|
|
|
|
{ IRQ_UMSINT, &int1_chip, handle_fasteoi_irq, },
|
|
|
|
{ IRQ_SSEOTI, &int1_chip, handle_level_irq, },
|
|
|
|
{ IRQ_KBDINT, &int2_chip, handle_fasteoi_irq, },
|
|
|
|
{ IRQ_SS2RX, &int2_chip, handle_level_irq, },
|
|
|
|
{ IRQ_SS2TX, &int2_chip, handle_level_irq, },
|
|
|
|
{ IRQ_UTXINT2, &int2_chip, handle_level_irq, },
|
|
|
|
{ IRQ_URXINT2, &int2_chip, handle_level_irq, },
|
|
|
|
};
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
void __init clps711x_init_irq(void)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2012-10-10 17:45:29 +02:00
|
|
|
/* Disable interrupts */
|
2005-04-17 00:20:36 +02:00
|
|
|
clps_writel(0, INTMR1);
|
|
|
|
clps_writel(0, INTMR2);
|
2012-10-10 17:45:29 +02:00
|
|
|
clps_writel(0, INTMR3);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-10-10 17:45:29 +02:00
|
|
|
/* Clear down any pending interrupts */
|
|
|
|
clps_writel(0, BLEOI);
|
|
|
|
clps_writel(0, MCEOI);
|
2005-04-17 00:20:36 +02:00
|
|
|
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, KBDEOI);
|
2012-10-10 17:45:29 +02:00
|
|
|
clps_writel(0, SRXEOF);
|
|
|
|
clps_writel(0xffffffff, DAISR);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(clps711x_irqdescs); i++) {
|
|
|
|
irq_set_chip_and_handler(clps711x_irqdescs[i].nr,
|
|
|
|
clps711x_irqdescs[i].chip,
|
|
|
|
clps711x_irqdescs[i].handle);
|
|
|
|
set_irq_flags(clps711x_irqdescs[i].nr,
|
|
|
|
IRQF_VALID | IRQF_PROBE);
|
|
|
|
}
|
2012-11-17 14:57:15 +01:00
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_FIQ)) {
|
|
|
|
init_FIQ(0);
|
|
|
|
irq_set_chip_and_handler(IRQ_DAIINT, &int3_chip,
|
|
|
|
handle_bad_irq);
|
|
|
|
set_irq_flags(IRQ_DAIINT,
|
|
|
|
IRQF_VALID | IRQF_PROBE | IRQF_NOAUTOEN);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2011-11-05 18:38:32 +01:00
|
|
|
|
2012-11-17 14:57:14 +01:00
|
|
|
inline u32 fls16(u32 x)
|
|
|
|
{
|
|
|
|
u32 r = 15;
|
|
|
|
|
|
|
|
if (!(x & 0xff00)) {
|
|
|
|
x <<= 8;
|
|
|
|
r -= 8;
|
|
|
|
}
|
|
|
|
if (!(x & 0xf000)) {
|
|
|
|
x <<= 4;
|
|
|
|
r -= 4;
|
|
|
|
}
|
|
|
|
if (!(x & 0xc000)) {
|
|
|
|
x <<= 2;
|
|
|
|
r -= 2;
|
|
|
|
}
|
|
|
|
if (!(x & 0x8000))
|
|
|
|
r--;
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
asmlinkage void __exception_irq_entry clps711x_handle_irq(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
u32 irqstat;
|
|
|
|
void __iomem *base = CLPS711X_VIRT_BASE;
|
|
|
|
|
|
|
|
irqstat = readl_relaxed(base + INTSR1) & readl_relaxed(base + INTMR1);
|
|
|
|
if (irqstat) {
|
|
|
|
handle_IRQ(fls16(irqstat), regs);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
irqstat = readl_relaxed(base + INTSR2) & readl_relaxed(base + INTMR2);
|
|
|
|
if (likely(irqstat))
|
|
|
|
handle_IRQ(fls16(irqstat) + 16, regs);
|
|
|
|
}
|
|
|
|
|
2012-10-10 17:45:27 +02:00
|
|
|
static void clps711x_clockevent_set_mode(enum clock_event_mode mode,
|
|
|
|
struct clock_event_device *evt)
|
2011-11-05 18:38:32 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-10-10 17:45:27 +02:00
|
|
|
static struct clock_event_device clockevent_clps711x = {
|
|
|
|
.name = "CLPS711x Clockevents",
|
|
|
|
.rating = 300,
|
|
|
|
.features = CLOCK_EVT_FEAT_PERIODIC,
|
|
|
|
.set_mode = clps711x_clockevent_set_mode,
|
|
|
|
};
|
|
|
|
|
|
|
|
static irqreturn_t clps711x_timer_interrupt(int irq, void *dev_id)
|
2011-11-05 18:38:32 +01:00
|
|
|
{
|
2012-10-10 17:45:27 +02:00
|
|
|
clockevent_clps711x.event_handler(&clockevent_clps711x);
|
|
|
|
|
2011-11-05 18:38:32 +01:00
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct irqaction clps711x_timer_irq = {
|
|
|
|
.name = "CLPS711x Timer Tick",
|
|
|
|
.flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
|
2012-10-10 17:45:27 +02:00
|
|
|
.handler = clps711x_timer_interrupt,
|
2011-11-05 18:38:32 +01:00
|
|
|
};
|
|
|
|
|
2012-08-21 18:59:35 +02:00
|
|
|
static void add_fixed_clk(struct clk *clk, const char *name, int rate)
|
|
|
|
{
|
|
|
|
clk = clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate);
|
|
|
|
clk_register_clkdev(clk, name, NULL);
|
|
|
|
}
|
|
|
|
|
2012-11-08 20:40:59 +01:00
|
|
|
void __init clps711x_timer_init(void)
|
2011-11-05 18:38:32 +01:00
|
|
|
{
|
2012-08-21 18:59:35 +02:00
|
|
|
int osc, ext, pll, cpu, bus, timl, timh, uart, spi;
|
|
|
|
u32 tmp;
|
|
|
|
|
|
|
|
osc = 3686400;
|
|
|
|
ext = 13000000;
|
|
|
|
|
|
|
|
tmp = clps_readl(PLLR) >> 24;
|
|
|
|
if (tmp)
|
|
|
|
pll = (osc * tmp) / 2;
|
|
|
|
else
|
|
|
|
pll = 73728000; /* Default value */
|
|
|
|
|
|
|
|
tmp = clps_readl(SYSFLG2);
|
|
|
|
if (tmp & SYSFLG2_CKMODE) {
|
|
|
|
cpu = ext;
|
|
|
|
bus = cpu;
|
|
|
|
spi = 135400;
|
|
|
|
} else {
|
|
|
|
cpu = pll;
|
|
|
|
if (cpu >= 36864000)
|
|
|
|
bus = cpu / 2;
|
|
|
|
else
|
|
|
|
bus = 36864000 / 2;
|
|
|
|
spi = cpu / 576;
|
|
|
|
}
|
|
|
|
|
|
|
|
uart = bus / 10;
|
|
|
|
|
|
|
|
if (tmp & SYSFLG2_CKMODE) {
|
|
|
|
tmp = clps_readl(SYSCON2);
|
|
|
|
if (tmp & SYSCON2_OSTB)
|
|
|
|
timh = ext / 26;
|
|
|
|
else
|
|
|
|
timh = 541440;
|
|
|
|
} else
|
|
|
|
timh = cpu / 144;
|
|
|
|
|
|
|
|
timl = timh / 256;
|
|
|
|
|
|
|
|
/* All clocks are fixed */
|
|
|
|
add_fixed_clk(clk_pll, "pll", pll);
|
|
|
|
add_fixed_clk(clk_bus, "bus", bus);
|
|
|
|
add_fixed_clk(clk_uart, "uart", uart);
|
|
|
|
add_fixed_clk(clk_timerl, "timer_lf", timl);
|
|
|
|
add_fixed_clk(clk_timerh, "timer_hf", timh);
|
|
|
|
add_fixed_clk(clk_tint, "tint", 64);
|
|
|
|
add_fixed_clk(clk_spi, "spi", spi);
|
|
|
|
|
|
|
|
pr_info("CPU frequency set at %i Hz.\n", cpu);
|
|
|
|
|
2012-10-10 17:45:27 +02:00
|
|
|
clps_writew(DIV_ROUND_CLOSEST(timh, HZ), TC2D);
|
2011-11-05 18:38:32 +01:00
|
|
|
|
2012-08-21 18:59:35 +02:00
|
|
|
tmp = clps_readl(SYSCON1);
|
|
|
|
tmp |= SYSCON1_TC2S | SYSCON1_TC2M;
|
|
|
|
clps_writel(tmp, SYSCON1);
|
2011-11-05 18:38:32 +01:00
|
|
|
|
2012-10-10 17:45:27 +02:00
|
|
|
clockevents_config_and_register(&clockevent_clps711x, timh, 1, 0xffff);
|
2011-11-05 18:38:32 +01:00
|
|
|
|
|
|
|
setup_irq(IRQ_TC2OI, &clps711x_timer_irq);
|
|
|
|
}
|
|
|
|
|
2011-11-05 18:41:52 +01:00
|
|
|
void clps711x_restart(char mode, const char *cmd)
|
|
|
|
{
|
|
|
|
soft_restart(0);
|
|
|
|
}
|
2011-08-02 18:22:48 +02: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);
|