blob: aa1331e86bcf4fb52f255b45164c5783f01cc634 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-h720x/common.c
3 *
4 * Copyright (C) 2003 Thomas Gleixner <tglx@linutronix.de>
5 * 2003 Robert Schwebel <r.schwebel@pengutronix.de>
6 * 2004 Sascha Hauer <s.hauer@pengutronix.de>
7 *
8 * common stuff for Hynix h720x processors
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 */
15
16#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mman.h>
18#include <linux/init.h>
19#include <linux/interrupt.h>
Russell Kingfced80c2008-09-06 12:10:45 +010020#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/page.h>
23#include <asm/pgtable.h>
24#include <asm/dma.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/irq.h>
Olof Johansson86dfe442012-03-29 23:22:44 -070027#include <asm/system_misc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/mach/irq.h>
29#include <asm/mach/map.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010030#include <mach/irqs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/mach/dma.h>
33
34#if 0
35#define IRQDBG(args...) printk(args)
36#else
37#define IRQDBG(args...) do {} while(0)
38#endif
39
40void __init arch_dma_init(dma_t *dma)
41{
42}
43
44/*
45 * Return usecs since last timer reload
46 * (timercount * (usecs perjiffie)) / (ticks per jiffie)
47 */
48unsigned long h720x_gettimeoffset(void)
49{
50 return (CPU_REG (TIMER_VIRT, TM0_COUNT) * tick_usec) / LATCH;
51}
52
53/*
54 * mask Global irq's
55 */
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010056static void mask_global_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010058 CPU_REG (IRQC_VIRT, IRQC_IER) &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61/*
62 * unmask Global irq's
63 */
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010064static void unmask_global_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010066 CPU_REG (IRQC_VIRT, IRQC_IER) |= (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69
70/*
71 * ack GPIO irq's
72 * Ack only for edge triggered int's valid
73 */
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010074static void inline ack_gpio_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010076 u32 reg_base = GPIO_VIRT(IRQ_TO_REGNO(d->irq));
77 u32 bit = IRQ_TO_BIT(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if ( (CPU_REG (reg_base, GPIO_EDGE) & bit))
79 CPU_REG (reg_base, GPIO_CLR) = bit;
80}
81
82/*
83 * mask GPIO irq's
84 */
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010085static void inline mask_gpio_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010087 u32 reg_base = GPIO_VIRT(IRQ_TO_REGNO(d->irq));
88 u32 bit = IRQ_TO_BIT(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 CPU_REG (reg_base, GPIO_MASK) &= ~bit;
90}
91
92/*
93 * unmask GPIO irq's
94 */
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010095static void inline unmask_gpio_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Lennert Buytenhekc971ab02010-11-29 10:31:06 +010097 u32 reg_base = GPIO_VIRT(IRQ_TO_REGNO(d->irq));
98 u32 bit = IRQ_TO_BIT(d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 CPU_REG (reg_base, GPIO_MASK) |= bit;
100}
101
102static void
103h720x_gpio_handler(unsigned int mask, unsigned int irq,
Russell King10dd5ce2006-11-23 11:41:32 +0000104 struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Harvey Harrison8e86f422008-03-04 15:08:02 -0800106 IRQDBG("%s irq: %d\n", __func__, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 while (mask) {
108 if (mask & 1) {
109 IRQDBG("handling irq %d\n", irq);
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100110 generic_handle_irq(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112 irq++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 mask >>= 1;
114 }
115}
116
117static void
Russell King10dd5ce2006-11-23 11:41:32 +0000118h720x_gpioa_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 unsigned int mask, irq;
121
122 mask = CPU_REG(GPIO_A_VIRT,GPIO_STAT);
123 irq = IRQ_CHAINED_GPIOA(0);
Harvey Harrison8e86f422008-03-04 15:08:02 -0800124 IRQDBG("%s mask: 0x%08x irq: %d\n", __func__, mask,irq);
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700125 h720x_gpio_handler(mask, irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128static void
Russell King10dd5ce2006-11-23 11:41:32 +0000129h720x_gpiob_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 unsigned int mask, irq;
132 mask = CPU_REG(GPIO_B_VIRT,GPIO_STAT);
133 irq = IRQ_CHAINED_GPIOB(0);
Harvey Harrison8e86f422008-03-04 15:08:02 -0800134 IRQDBG("%s mask: 0x%08x irq: %d\n", __func__, mask,irq);
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700135 h720x_gpio_handler(mask, irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138static void
Russell King10dd5ce2006-11-23 11:41:32 +0000139h720x_gpioc_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 unsigned int mask, irq;
142
143 mask = CPU_REG(GPIO_C_VIRT,GPIO_STAT);
144 irq = IRQ_CHAINED_GPIOC(0);
Harvey Harrison8e86f422008-03-04 15:08:02 -0800145 IRQDBG("%s mask: 0x%08x irq: %d\n", __func__, mask,irq);
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700146 h720x_gpio_handler(mask, irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149static void
Russell King10dd5ce2006-11-23 11:41:32 +0000150h720x_gpiod_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 unsigned int mask, irq;
153
154 mask = CPU_REG(GPIO_D_VIRT,GPIO_STAT);
155 irq = IRQ_CHAINED_GPIOD(0);
Harvey Harrison8e86f422008-03-04 15:08:02 -0800156 IRQDBG("%s mask: 0x%08x irq: %d\n", __func__, mask,irq);
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700157 h720x_gpio_handler(mask, irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160#ifdef CONFIG_CPU_H7202
161static void
Russell King10dd5ce2006-11-23 11:41:32 +0000162h720x_gpioe_demux_handler(unsigned int irq_unused, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 unsigned int mask, irq;
165
166 mask = CPU_REG(GPIO_E_VIRT,GPIO_STAT);
167 irq = IRQ_CHAINED_GPIOE(0);
Harvey Harrison8e86f422008-03-04 15:08:02 -0800168 IRQDBG("%s mask: 0x%08x irq: %d\n", __func__, mask,irq);
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700169 h720x_gpio_handler(mask, irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171#endif
172
Russell King10dd5ce2006-11-23 11:41:32 +0000173static struct irq_chip h720x_global_chip = {
Lennert Buytenhekc971ab02010-11-29 10:31:06 +0100174 .irq_ack = mask_global_irq,
175 .irq_mask = mask_global_irq,
176 .irq_unmask = unmask_global_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
Russell King10dd5ce2006-11-23 11:41:32 +0000179static struct irq_chip h720x_gpio_chip = {
Lennert Buytenhekc971ab02010-11-29 10:31:06 +0100180 .irq_ack = ack_gpio_irq,
181 .irq_mask = mask_gpio_irq,
182 .irq_unmask = unmask_gpio_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183};
184
185/*
186 * Initialize IRQ's, mask all, enable multiplexed irq's
187 */
188void __init h720x_init_irq (void)
189{
190 int irq;
191
192 /* Mask global irq's */
193 CPU_REG (IRQC_VIRT, IRQC_IER) = 0x0;
194
195 /* Mask all multiplexed irq's */
196 CPU_REG (GPIO_A_VIRT, GPIO_MASK) = 0x0;
197 CPU_REG (GPIO_B_VIRT, GPIO_MASK) = 0x0;
198 CPU_REG (GPIO_C_VIRT, GPIO_MASK) = 0x0;
199 CPU_REG (GPIO_D_VIRT, GPIO_MASK) = 0x0;
200
201 /* Initialize global IRQ's, fast path */
202 for (irq = 0; irq < NR_GLBL_IRQS; irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100203 irq_set_chip_and_handler(irq, &h720x_global_chip,
204 handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 set_irq_flags(irq, IRQF_VALID | IRQF_PROBE);
206 }
207
208 /* Initialize multiplexed IRQ's, slow path */
209 for (irq = IRQ_CHAINED_GPIOA(0) ; irq <= IRQ_CHAINED_GPIOD(31); irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100210 irq_set_chip_and_handler(irq, &h720x_gpio_chip,
211 handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 set_irq_flags(irq, IRQF_VALID );
213 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100214 irq_set_chained_handler(IRQ_GPIOA, h720x_gpioa_demux_handler);
215 irq_set_chained_handler(IRQ_GPIOB, h720x_gpiob_demux_handler);
216 irq_set_chained_handler(IRQ_GPIOC, h720x_gpioc_demux_handler);
217 irq_set_chained_handler(IRQ_GPIOD, h720x_gpiod_demux_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219#ifdef CONFIG_CPU_H7202
220 for (irq = IRQ_CHAINED_GPIOE(0) ; irq <= IRQ_CHAINED_GPIOE(31); irq++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100221 irq_set_chip_and_handler(irq, &h720x_gpio_chip,
222 handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 set_irq_flags(irq, IRQF_VALID );
224 }
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100225 irq_set_chained_handler(IRQ_GPIOE, h720x_gpioe_demux_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#endif
227
228 /* Enable multiplexed irq's */
229 CPU_REG (IRQC_VIRT, IRQC_IER) = IRQ_ENA_MUX;
230}
231
232static struct map_desc h720x_io_desc[] __initdata = {
Deepak Saxena3e9635e2005-10-28 15:19:09 +0100233 {
234 .virtual = IO_VIRT,
235 .pfn = __phys_to_pfn(IO_PHYS),
236 .length = IO_SIZE,
237 .type = MT_DEVICE
238 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239};
240
241/* Initialize io tables */
242void __init h720x_map_io(void)
243{
244 iotable_init(h720x_io_desc,ARRAY_SIZE(h720x_io_desc));
245}
Russell King0d683702011-11-05 11:12:35 +0000246
247void h720x_restart(char mode, const char *cmd)
248{
249 CPU_REG (PMU_BASE, PMU_STAT) |= PMU_WARMRESET;
250}
Nicolas Pitre50edbf72011-08-03 06:55:31 -0400251
252static void h720x__idle(void)
253{
254 CPU_REG (PMU_BASE, PMU_MODE) = PMU_MODE_IDLE;
255 nop();
256 nop();
257 CPU_REG (PMU_BASE, PMU_MODE) = PMU_MODE_RUN;
258 nop();
259 nop();
260}
261
262static int __init h720x_idle_init(void)
263{
264 arm_pm_idle = h720x__idle;
265 return 0;
266}
267
268arch_initcall(h720x_idle_init);