blob: 26874f608ca9e0ebc7107a11fece8975ec68eb55 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-ixp4xx/common.c
3 *
4 * Generic code shared across all IXP4XX platforms
5 *
6 * Maintainer: Deepak Saxena <dsaxena@plexity.net>
7 *
8 * Copyright 2002 (c) Intel Corporation
9 * Copyright 2003-2004 (c) MontaVista, Software, Inc.
10 *
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/mm.h>
18#include <linux/init.h>
19#include <linux/serial.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/tty.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010021#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/interrupt.h>
24#include <linux/bitops.h>
25#include <linux/time.h>
Kevin Hilman84904d02006-09-22 00:58:57 +010026#include <linux/clocksource.h>
Kevin Hilmane32f1502007-03-08 20:23:59 +010027#include <linux/clockchips.h>
Russell Kingfced80c2008-09-06 12:10:45 +010028#include <linux/io.h>
Paul Gortmakerdc280942011-07-31 16:17:29 -040029#include <linux/export.h>
Linus Walleij010b16d2015-12-08 11:08:52 +010030#include <linux/gpio/driver.h>
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +010031#include <linux/cpu.h>
Krzysztof Halasa00e1b3a2014-03-23 01:36:48 +010032#include <linux/pci.h>
Stephen Boyd38ff87f2013-06-01 23:39:40 -070033#include <linux/sched_clock.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/udc.h>
35#include <mach/hardware.h>
Rob Herringf4495882012-03-06 15:01:53 -060036#include <mach/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/pgtable.h>
39#include <asm/page.h>
40#include <asm/irq.h>
Olof Johansson86dfe442012-03-29 23:22:44 -070041#include <asm/system_misc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/mach/map.h>
43#include <asm/mach/irq.h>
44#include <asm/mach/time.h>
45
Uwe Kleine-Königf0402f92013-11-26 19:25:59 +010046#define IXP4XX_TIMER_FREQ 66666000
Uwe Kleine-Königfb3174e2014-02-03 11:31:19 +010047
48/*
49 * The timer register doesn't allow to specify the two least significant bits of
50 * the timeout value and assumes them being zero. So make sure IXP4XX_LATCH is
51 * the best value with the two least significant bits unset.
52 */
53#define IXP4XX_LATCH DIV_ROUND_CLOSEST(IXP4XX_TIMER_FREQ, \
54 (IXP4XX_OST_RELOAD_MASK + 1) * HZ) * \
55 (IXP4XX_OST_RELOAD_MASK + 1)
Uwe Kleine-Königf0402f92013-11-26 19:25:59 +010056
Mikael Petterssonceb69a82009-09-11 00:59:07 +020057static void __init ixp4xx_clocksource_init(void);
58static void __init ixp4xx_clockevent_init(void);
Kevin Hilmane32f1502007-03-08 20:23:59 +010059static struct clock_event_device clockevent_ixp4xx;
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +010060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*************************************************************************
62 * IXP4xx chipset I/O mapping
63 *************************************************************************/
64static struct map_desc ixp4xx_io_desc[] __initdata = {
65 { /* UART, Interrupt ctrl, GPIO, timers, NPEs, MACs, USB .... */
Arnd Bergmann13ec32f2012-09-14 20:19:40 +000066 .virtual = (unsigned long)IXP4XX_PERIPHERAL_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010067 .pfn = __phys_to_pfn(IXP4XX_PERIPHERAL_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 .length = IXP4XX_PERIPHERAL_REGION_SIZE,
69 .type = MT_DEVICE
70 }, { /* Expansion Bus Config Registers */
Arnd Bergmann13ec32f2012-09-14 20:19:40 +000071 .virtual = (unsigned long)IXP4XX_EXP_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010072 .pfn = __phys_to_pfn(IXP4XX_EXP_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 .length = IXP4XX_EXP_CFG_REGION_SIZE,
74 .type = MT_DEVICE
75 }, { /* PCI Registers */
Arnd Bergmann13ec32f2012-09-14 20:19:40 +000076 .virtual = (unsigned long)IXP4XX_PCI_CFG_BASE_VIRT,
Deepak Saxena87fe04b2005-10-28 15:18:59 +010077 .pfn = __phys_to_pfn(IXP4XX_PCI_CFG_BASE_PHYS),
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 .length = IXP4XX_PCI_CFG_REGION_SIZE,
79 .type = MT_DEVICE
Krzysztof Hałasaf0cdb152010-03-26 16:38:52 +010080 }, { /* Queue Manager */
81 .virtual = (unsigned long)IXP4XX_QMGR_BASE_VIRT,
82 .pfn = __phys_to_pfn(IXP4XX_QMGR_BASE_PHYS),
83 .length = IXP4XX_QMGR_REGION_SIZE,
84 .type = MT_DEVICE
Deepak Saxena5932ae32005-06-24 20:54:35 +010085 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
88void __init ixp4xx_map_io(void)
89{
90 iotable_init(ixp4xx_io_desc, ARRAY_SIZE(ixp4xx_io_desc));
91}
92
Linus Walleij098e30f2013-09-10 14:10:13 +020093/*
94 * GPIO-functions
95 */
96/*
97 * The following converted to the real HW bits the gpio_line_config
98 */
99/* GPIO pin types */
100#define IXP4XX_GPIO_OUT 0x1
101#define IXP4XX_GPIO_IN 0x2
102
103/* GPIO signal types */
104#define IXP4XX_GPIO_LOW 0
105#define IXP4XX_GPIO_HIGH 1
106
107/* GPIO Clocks */
108#define IXP4XX_GPIO_CLK_0 14
109#define IXP4XX_GPIO_CLK_1 15
110
111static void gpio_line_config(u8 line, u32 direction)
112{
113 if (direction == IXP4XX_GPIO_IN)
114 *IXP4XX_GPIO_GPOER |= (1 << line);
115 else
116 *IXP4XX_GPIO_GPOER &= ~(1 << line);
117}
118
119static void gpio_line_get(u8 line, int *value)
120{
121 *value = (*IXP4XX_GPIO_GPINR >> line) & 0x1;
122}
123
124static void gpio_line_set(u8 line, int value)
125{
126 if (value == IXP4XX_GPIO_HIGH)
127 *IXP4XX_GPIO_GPOUTR |= (1 << line);
128 else if (value == IXP4XX_GPIO_LOW)
129 *IXP4XX_GPIO_GPOUTR &= ~(1 << line);
130}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132/*************************************************************************
133 * IXP4xx chipset IRQ handling
134 *
135 * TODO: GPIO IRQs should be marked invalid until the user of the IRQ
136 * (be it PCI or something else) configures that GPIO line
137 * as an IRQ.
138 **************************************************************************/
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100139enum ixp4xx_irq_type {
140 IXP4XX_IRQ_LEVEL, IXP4XX_IRQ_EDGE
141};
142
Kevin Hilman984d1152006-11-03 01:47:20 +0100143/* Each bit represents an IRQ: 1: edge-triggered, 0: level triggered */
144static unsigned long long ixp4xx_irq_edge = 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100145
146/*
147 * IRQ -> GPIO mapping table
148 */
Lennert Buytenhek6cc1b652006-04-20 21:24:38 +0100149static signed char irq2gpio[32] = {
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100150 -1, -1, -1, -1, -1, -1, 0, 1,
151 -1, -1, -1, -1, -1, -1, -1, -1,
152 -1, -1, -1, 2, 3, 4, 5, 6,
153 7, 8, 9, 10, 11, 12, -1, -1,
154};
155
Richard Cochran9dde0ae2012-05-23 18:19:51 +0200156static int ixp4xx_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
Milan Svoboda25735d12007-03-21 14:04:08 +0100157{
158 int irq;
159
160 for (irq = 0; irq < 32; irq++) {
161 if (irq2gpio[irq] == gpio)
162 return irq;
163 }
164 return -EINVAL;
165}
Milan Svoboda25735d12007-03-21 14:04:08 +0100166
Lennert Buytenhekee040872010-11-29 10:33:49 +0100167static int ixp4xx_set_irq_type(struct irq_data *d, unsigned int type)
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100168{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100169 int line = irq2gpio[d->irq];
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100170 u32 int_style;
171 enum ixp4xx_irq_type irq_type;
172 volatile u32 *int_reg;
173
174 /*
175 * Only for GPIO IRQs
176 */
177 if (line < 0)
178 return -EINVAL;
179
Mårten Wikström06e44792006-02-22 22:27:23 +0000180 switch (type){
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100181 case IRQ_TYPE_EDGE_BOTH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100182 int_style = IXP4XX_GPIO_STYLE_TRANSITIONAL;
183 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000184 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100185 case IRQ_TYPE_EDGE_RISING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100186 int_style = IXP4XX_GPIO_STYLE_RISING_EDGE;
187 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000188 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100189 case IRQ_TYPE_EDGE_FALLING:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100190 int_style = IXP4XX_GPIO_STYLE_FALLING_EDGE;
191 irq_type = IXP4XX_IRQ_EDGE;
Mårten Wikström06e44792006-02-22 22:27:23 +0000192 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100193 case IRQ_TYPE_LEVEL_HIGH:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100194 int_style = IXP4XX_GPIO_STYLE_ACTIVE_HIGH;
195 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000196 break;
Dmitry Baryshkov6cab4862008-07-27 04:23:31 +0100197 case IRQ_TYPE_LEVEL_LOW:
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100198 int_style = IXP4XX_GPIO_STYLE_ACTIVE_LOW;
199 irq_type = IXP4XX_IRQ_LEVEL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000200 break;
201 default:
David Vrabel6132f9e2005-09-26 19:52:56 +0100202 return -EINVAL;
Mårten Wikström06e44792006-02-22 22:27:23 +0000203 }
Kevin Hilman984d1152006-11-03 01:47:20 +0100204
205 if (irq_type == IXP4XX_IRQ_EDGE)
Lennert Buytenhekee040872010-11-29 10:33:49 +0100206 ixp4xx_irq_edge |= (1 << d->irq);
Kevin Hilman984d1152006-11-03 01:47:20 +0100207 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100208 ixp4xx_irq_edge &= ~(1 << d->irq);
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100209
210 if (line >= 8) { /* pins 8-15 */
211 line -= 8;
212 int_reg = IXP4XX_GPIO_GPIT2R;
213 } else { /* pins 0-7 */
214 int_reg = IXP4XX_GPIO_GPIT1R;
215 }
216
217 /* Clear the style for the appropriate pin */
218 *int_reg &= ~(IXP4XX_GPIO_STYLE_CLEAR <<
219 (line * IXP4XX_GPIO_STYLE_SIZE));
220
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000221 *IXP4XX_GPIO_GPISR = (1 << line);
222
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100223 /* Set the new style */
224 *int_reg |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE));
David Vrabel6132f9e2005-09-26 19:52:56 +0100225
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000226 /* Configure the line as an input */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100227 gpio_line_config(irq2gpio[d->irq], IXP4XX_GPIO_IN);
Alessandro Zummo73deb7d2006-03-20 17:10:12 +0000228
David Vrabel6132f9e2005-09-26 19:52:56 +0100229 return 0;
Deepak Saxenabdf82b52005-08-29 22:46:30 +0100230}
231
Lennert Buytenhekee040872010-11-29 10:33:49 +0100232static void ixp4xx_irq_mask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100234 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
235 *IXP4XX_ICMR2 &= ~(1 << (d->irq - 32));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100237 *IXP4XX_ICMR &= ~(1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Lennert Buytenhekee040872010-11-29 10:33:49 +0100240static void ixp4xx_irq_ack(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100242 int line = (d->irq < 32) ? irq2gpio[d->irq] : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 if (line >= 0)
Deepak Saxenaf7e8bbb82006-01-04 17:17:10 +0000245 *IXP4XX_GPIO_GPISR = (1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248/*
249 * Level triggered interrupts on GPIO lines can only be cleared when the
250 * interrupt condition disappears.
251 */
Lennert Buytenhekee040872010-11-29 10:33:49 +0100252static void ixp4xx_irq_unmask(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Lennert Buytenhekee040872010-11-29 10:33:49 +0100254 if (!(ixp4xx_irq_edge & (1 << d->irq)))
255 ixp4xx_irq_ack(d);
Kevin Hilman984d1152006-11-03 01:47:20 +0100256
Lennert Buytenhekee040872010-11-29 10:33:49 +0100257 if ((cpu_is_ixp46x() || cpu_is_ixp43x()) && d->irq >= 32)
258 *IXP4XX_ICMR2 |= (1 << (d->irq - 32));
Kevin Hilman984d1152006-11-03 01:47:20 +0100259 else
Lennert Buytenhekee040872010-11-29 10:33:49 +0100260 *IXP4XX_ICMR |= (1 << d->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
Russell King10dd5ce2006-11-23 11:41:32 +0000263static struct irq_chip ixp4xx_irq_chip = {
Kevin Hilman984d1152006-11-03 01:47:20 +0100264 .name = "IXP4xx",
Lennert Buytenhekee040872010-11-29 10:33:49 +0100265 .irq_ack = ixp4xx_irq_ack,
266 .irq_mask = ixp4xx_irq_mask,
267 .irq_unmask = ixp4xx_irq_unmask,
268 .irq_set_type = ixp4xx_set_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271void __init ixp4xx_init_irq(void)
272{
273 int i = 0;
274
Nicolas Pitre12d2b4e2011-08-03 07:25:39 -0400275 /*
276 * ixp4xx does not implement the XScale PWRMODE register
277 * so it must not call cpu_do_idle().
278 */
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +0100279 cpu_idle_poll_ctrl(true);
Nicolas Pitre12d2b4e2011-08-03 07:25:39 -0400280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* Route all sources to IRQ instead of FIQ */
282 *IXP4XX_ICLR = 0x0;
283
284 /* Disable all interrupt */
285 *IXP4XX_ICMR = 0x0;
286
Ruslan V. Sushko45fba082007-04-06 15:00:31 +0100287 if (cpu_is_ixp46x() || cpu_is_ixp43x()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* Route upper 32 sources to IRQ instead of FIQ */
289 *IXP4XX_ICLR2 = 0x00;
290
291 /* Disable upper 32 interrupts */
292 *IXP4XX_ICMR2 = 0x00;
293 }
294
295 /* Default to all level triggered */
Kevin Hilman984d1152006-11-03 01:47:20 +0100296 for(i = 0; i < NR_IRQS; i++) {
Thomas Gleixnerf38c02f2011-03-24 13:35:09 +0100297 irq_set_chip_and_handler(i, &ixp4xx_irq_chip,
298 handle_level_irq);
Rob Herringe8d36d52015-07-27 15:55:13 -0500299 irq_clear_status_flags(i, IRQ_NOREQUEST);
Kevin Hilman984d1152006-11-03 01:47:20 +0100300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303
304/*************************************************************************
305 * IXP4xx timer tick
306 * We use OS timer1 on the CPU for the timer tick and the timestamp
307 * counter as a source of real clock ticks to account for missed jiffies.
308 *************************************************************************/
309
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700310static irqreturn_t ixp4xx_timer_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200312 struct clock_event_device *evt = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* Clear Pending Interrupt by writing '1' to it */
315 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
316
Kevin Hilmane32f1502007-03-08 20:23:59 +0100317 evt->event_handler(evt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 return IRQ_HANDLED;
320}
321
322static struct irqaction ixp4xx_timer_irq = {
Kevin Hilmane32f1502007-03-08 20:23:59 +0100323 .name = "timer1",
Michael Opdenacker1ee65642014-03-04 21:59:03 +0100324 .flags = IRQF_TIMER | IRQF_IRQPOLL,
Russell King09b8b5f2005-06-26 17:06:36 +0100325 .handler = ixp4xx_timer_interrupt,
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200326 .dev_id = &clockevent_ixp4xx,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327};
328
Michael-Luke Jones435c5da2007-05-23 22:38:45 +0100329void __init ixp4xx_timer_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Kevin Hilmane32f1502007-03-08 20:23:59 +0100331 /* Reset/disable counter */
332 *IXP4XX_OSRT1 = 0;
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /* Clear Pending Interrupt by writing '1' to it */
335 *IXP4XX_OSST = IXP4XX_OSST_TIMER_1_PEND;
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /* Reset time-stamp counter */
338 *IXP4XX_OSTS = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 /* Connect the interrupt handler and enable the interrupt */
341 setup_irq(IRQ_IXP4XX_TIMER1, &ixp4xx_timer_irq);
Kevin Hilmanf9a8ca12006-12-06 00:45:07 +0100342
343 ixp4xx_clocksource_init();
Kevin Hilmane32f1502007-03-08 20:23:59 +0100344 ixp4xx_clockevent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Milan Svobodae520a362006-12-01 11:36:41 +0100347static struct pxa2xx_udc_mach_info ixp4xx_udc_info;
348
349void __init ixp4xx_set_udc_info(struct pxa2xx_udc_mach_info *info)
350{
351 memcpy(&ixp4xx_udc_info, info, sizeof *info);
352}
353
354static struct resource ixp4xx_udc_resources[] = {
355 [0] = {
356 .start = 0xc800b000,
357 .end = 0xc800bfff,
358 .flags = IORESOURCE_MEM,
359 },
360 [1] = {
361 .start = IRQ_IXP4XX_USB,
362 .end = IRQ_IXP4XX_USB,
363 .flags = IORESOURCE_IRQ,
364 },
365};
366
367/*
Philipp Zabel7a857622008-06-22 23:36:39 +0100368 * USB device controller. The IXP4xx uses the same controller as PXA25X,
Milan Svobodae520a362006-12-01 11:36:41 +0100369 * so we just use the same device.
370 */
371static struct platform_device ixp4xx_udc_device = {
Philipp Zabel7a857622008-06-22 23:36:39 +0100372 .name = "pxa25x-udc",
Milan Svobodae520a362006-12-01 11:36:41 +0100373 .id = -1,
374 .num_resources = 2,
375 .resource = ixp4xx_udc_resources,
376 .dev = {
377 .platform_data = &ixp4xx_udc_info,
378 },
379};
380
381static struct platform_device *ixp4xx_devices[] __initdata = {
382 &ixp4xx_udc_device,
383};
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385static struct resource ixp46x_i2c_resources[] = {
386 [0] = {
387 .start = 0xc8011000,
388 .end = 0xc801101c,
389 .flags = IORESOURCE_MEM,
390 },
391 [1] = {
392 .start = IRQ_IXP4XX_I2C,
393 .end = IRQ_IXP4XX_I2C,
394 .flags = IORESOURCE_IRQ
395 }
396};
397
398/*
399 * I2C controller. The IXP46x uses the same block as the IOP3xx, so
400 * we just use the same device name.
401 */
402static struct platform_device ixp46x_i2c_controller = {
403 .name = "IOP3xx-I2C",
404 .id = 0,
405 .num_resources = 2,
406 .resource = ixp46x_i2c_resources
407};
408
409static struct platform_device *ixp46x_devices[] __initdata = {
410 &ixp46x_i2c_controller
411};
412
Deepak Saxena54e269e2006-01-05 20:59:29 +0000413unsigned long ixp4xx_exp_bus_size;
David Vrabel1e74c892006-01-18 22:46:43 +0000414EXPORT_SYMBOL(ixp4xx_exp_bus_size);
Deepak Saxena54e269e2006-01-05 20:59:29 +0000415
Richard Cochran9dde0ae2012-05-23 18:19:51 +0200416static int ixp4xx_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
417{
418 gpio_line_config(gpio, IXP4XX_GPIO_IN);
419
420 return 0;
421}
422
423static int ixp4xx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio,
424 int level)
425{
426 gpio_line_set(gpio, level);
427 gpio_line_config(gpio, IXP4XX_GPIO_OUT);
428
429 return 0;
430}
431
432static int ixp4xx_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
433{
434 int value;
435
436 gpio_line_get(gpio, &value);
437
438 return value;
439}
440
441static void ixp4xx_gpio_set_value(struct gpio_chip *chip, unsigned gpio,
442 int value)
443{
444 gpio_line_set(gpio, value);
445}
446
447static struct gpio_chip ixp4xx_gpio_chip = {
448 .label = "IXP4XX_GPIO_CHIP",
449 .direction_input = ixp4xx_gpio_direction_input,
450 .direction_output = ixp4xx_gpio_direction_output,
451 .get = ixp4xx_gpio_get_value,
452 .set = ixp4xx_gpio_set_value,
453 .to_irq = ixp4xx_gpio_to_irq,
454 .base = 0,
455 .ngpio = 16,
456};
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458void __init ixp4xx_sys_init(void)
459{
Deepak Saxena54e269e2006-01-05 20:59:29 +0000460 ixp4xx_exp_bus_size = SZ_16M;
461
Milan Svobodae520a362006-12-01 11:36:41 +0100462 platform_add_devices(ixp4xx_devices, ARRAY_SIZE(ixp4xx_devices));
463
Linus Walleij010b16d2015-12-08 11:08:52 +0100464 gpiochip_add_data(&ixp4xx_gpio_chip, NULL);
Richard Cochran9dde0ae2012-05-23 18:19:51 +0200465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (cpu_is_ixp46x()) {
Deepak Saxena54e269e2006-01-05 20:59:29 +0000467 int region;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 platform_add_devices(ixp46x_devices,
470 ARRAY_SIZE(ixp46x_devices));
Deepak Saxena54e269e2006-01-05 20:59:29 +0000471
472 for (region = 0; region < 7; region++) {
473 if((*(IXP4XX_EXP_REG(0x4 * region)) & 0x200)) {
474 ixp4xx_exp_bus_size = SZ_32M;
475 break;
476 }
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Deepak Saxena54e269e2006-01-05 20:59:29 +0000479
David Vrabel1e74c892006-01-18 22:46:43 +0000480 printk("IXP4xx: Using %luMiB expansion bus window size\n",
Deepak Saxena54e269e2006-01-05 20:59:29 +0000481 ixp4xx_exp_bus_size >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Kevin Hilmane32f1502007-03-08 20:23:59 +0100484/*
Russell King5b0d4952010-12-15 21:23:13 +0000485 * sched_clock()
486 */
Stephen Boydbf3eb442013-11-15 15:26:14 -0800487static u64 notrace ixp4xx_read_sched_clock(void)
Russell King5b0d4952010-12-15 21:23:13 +0000488{
Marc Zyngier2f0778af2011-12-15 12:19:23 +0100489 return *IXP4XX_OSTS;
Russell King5b0d4952010-12-15 21:23:13 +0000490}
491
492/*
Kevin Hilmane32f1502007-03-08 20:23:59 +0100493 * clocksource
494 */
Richard Cochran900b1702011-07-15 21:33:12 +0200495
496static cycle_t ixp4xx_clocksource_read(struct clocksource *c)
497{
498 return *IXP4XX_OSTS;
499}
500
Ben Hutchingse66a0222010-12-11 20:17:54 +0000501unsigned long ixp4xx_timer_freq = IXP4XX_TIMER_FREQ;
Krzysztof Halasa5dbc4652009-09-05 03:59:49 +0000502EXPORT_SYMBOL(ixp4xx_timer_freq);
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200503static void __init ixp4xx_clocksource_init(void)
Kevin Hilman84904d02006-09-22 00:58:57 +0100504{
Stephen Boydbf3eb442013-11-15 15:26:14 -0800505 sched_clock_register(ixp4xx_read_sched_clock, 32, ixp4xx_timer_freq);
Russell King5b0d4952010-12-15 21:23:13 +0000506
Richard Cochran900b1702011-07-15 21:33:12 +0200507 clocksource_mmio_init(NULL, "OSTS", ixp4xx_timer_freq, 200, 32,
508 ixp4xx_clocksource_read);
Kevin Hilman84904d02006-09-22 00:58:57 +0100509}
Kevin Hilmane32f1502007-03-08 20:23:59 +0100510
511/*
512 * clockevents
513 */
514static int ixp4xx_set_next_event(unsigned long evt,
515 struct clock_event_device *unused)
516{
517 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
518
519 *IXP4XX_OSRT1 = (evt & ~IXP4XX_OST_RELOAD_MASK) | opts;
520
521 return 0;
522}
523
Viresh Kumarcea50ee2015-02-27 13:39:52 +0530524static int ixp4xx_shutdown(struct clock_event_device *evt)
Kevin Hilmane32f1502007-03-08 20:23:59 +0100525{
Kevin Hilman553876c2007-12-12 00:32:58 +0100526 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
527 unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100528
Viresh Kumarcea50ee2015-02-27 13:39:52 +0530529 opts &= ~IXP4XX_OST_ENABLE;
530 *IXP4XX_OSRT1 = osrt | opts;
531 return 0;
532}
533
534static int ixp4xx_set_oneshot(struct clock_event_device *evt)
535{
536 unsigned long opts = IXP4XX_OST_ENABLE | IXP4XX_OST_ONE_SHOT;
537 unsigned long osrt = 0;
538
539 /* period set by 'set next_event' */
540 *IXP4XX_OSRT1 = osrt | opts;
541 return 0;
542}
543
544static int ixp4xx_set_periodic(struct clock_event_device *evt)
545{
546 unsigned long opts = IXP4XX_OST_ENABLE;
547 unsigned long osrt = IXP4XX_LATCH & ~IXP4XX_OST_RELOAD_MASK;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100548
549 *IXP4XX_OSRT1 = osrt | opts;
Viresh Kumarcea50ee2015-02-27 13:39:52 +0530550 return 0;
551}
552
553static int ixp4xx_resume(struct clock_event_device *evt)
554{
555 unsigned long opts = *IXP4XX_OSRT1 & IXP4XX_OST_RELOAD_MASK;
556 unsigned long osrt = *IXP4XX_OSRT1 & ~IXP4XX_OST_RELOAD_MASK;
557
558 opts |= IXP4XX_OST_ENABLE;
559 *IXP4XX_OSRT1 = osrt | opts;
560 return 0;
Kevin Hilmane32f1502007-03-08 20:23:59 +0100561}
562
563static struct clock_event_device clockevent_ixp4xx = {
Viresh Kumarcea50ee2015-02-27 13:39:52 +0530564 .name = "ixp4xx timer1",
565 .features = CLOCK_EVT_FEAT_PERIODIC |
566 CLOCK_EVT_FEAT_ONESHOT,
567 .rating = 200,
568 .set_state_shutdown = ixp4xx_shutdown,
569 .set_state_periodic = ixp4xx_set_periodic,
570 .set_state_oneshot = ixp4xx_set_oneshot,
571 .tick_resume = ixp4xx_resume,
572 .set_next_event = ixp4xx_set_next_event,
Kevin Hilmane32f1502007-03-08 20:23:59 +0100573};
574
Mikael Petterssonceb69a82009-09-11 00:59:07 +0200575static void __init ixp4xx_clockevent_init(void)
Kevin Hilmane32f1502007-03-08 20:23:59 +0100576{
Rusty Russell320ab2b2008-12-13 21:20:26 +1030577 clockevent_ixp4xx.cpumask = cpumask_of(0);
Shawn Guo838a2ae2013-01-12 11:50:05 +0000578 clockevents_config_and_register(&clockevent_ixp4xx, IXP4XX_TIMER_FREQ,
579 0xf, 0xfffffffe);
Kevin Hilmane32f1502007-03-08 20:23:59 +0100580}
Russell Kingd1b860f2011-11-05 12:10:55 +0000581
Robin Holt7b6d8642013-07-08 16:01:40 -0700582void ixp4xx_restart(enum reboot_mode mode, const char *cmd)
Russell Kingd1b860f2011-11-05 12:10:55 +0000583{
Krzysztof Hałasa97e81ac2014-01-02 09:34:10 +0100584 if (mode == REBOOT_SOFT) {
Russell Kingd1b860f2011-11-05 12:10:55 +0000585 /* Jump into ROM at address 0 */
586 soft_restart(0);
587 } else {
588 /* Use on-chip reset capability */
589
590 /* set the "key" register to enable access to
591 * "timer" and "enable" registers
592 */
593 *IXP4XX_OSWK = IXP4XX_WDT_KEY;
594
595 /* write 0 to the timer register for an immediate reset */
596 *IXP4XX_OSWT = 0;
597
598 *IXP4XX_OSWE = IXP4XX_WDT_RESET_ENABLE | IXP4XX_WDT_COUNT_ENABLE;
599 }
600}
Rob Herringf4495882012-03-06 15:01:53 -0600601
Krzysztof Halasa00e1b3a2014-03-23 01:36:48 +0100602#ifdef CONFIG_PCI
603static int ixp4xx_needs_bounce(struct device *dev, dma_addr_t dma_addr, size_t size)
604{
605 return (dma_addr + size) > SZ_64M;
606}
607
608static int ixp4xx_platform_notify_remove(struct device *dev)
609{
610 if (dev_is_pci(dev))
611 dmabounce_unregister_dev(dev);
612
613 return 0;
614}
615#endif
616
617/*
618 * Setup DMA mask to 64MB on PCI devices and 4 GB on all other things.
619 */
620static int ixp4xx_platform_notify(struct device *dev)
621{
622 dev->dma_mask = &dev->coherent_dma_mask;
623
624#ifdef CONFIG_PCI
625 if (dev_is_pci(dev)) {
626 dev->coherent_dma_mask = DMA_BIT_MASK(28); /* 64 MB */
627 dmabounce_register_dev(dev, 2048, 4096, ixp4xx_needs_bounce);
628 return 0;
629 }
630#endif
631
632 dev->coherent_dma_mask = DMA_BIT_MASK(32);
633 return 0;
634}
635
636int dma_set_coherent_mask(struct device *dev, u64 mask)
637{
638 if (dev_is_pci(dev))
639 mask &= DMA_BIT_MASK(28); /* 64 MB */
640
641 if ((mask & DMA_BIT_MASK(28)) == DMA_BIT_MASK(28)) {
642 dev->coherent_dma_mask = mask;
643 return 0;
644 }
645
646 return -EIO; /* device wanted sub-64MB mask */
647}
648EXPORT_SYMBOL(dma_set_coherent_mask);
649
Rob Herringf4495882012-03-06 15:01:53 -0600650#ifdef CONFIG_IXP4XX_INDIRECT_PCI
651/*
652 * In the case of using indirect PCI, we simply return the actual PCI
653 * address and our read/write implementation use that to drive the
654 * access registers. If something outside of PCI is ioremap'd, we
655 * fallback to the default.
656 */
657
Laura Abbott9b971732013-05-16 19:40:22 +0100658static void __iomem *ixp4xx_ioremap_caller(phys_addr_t addr, size_t size,
Rob Herringf4495882012-03-06 15:01:53 -0600659 unsigned int mtype, void *caller)
660{
661 if (!is_pci_memory(addr))
662 return __arm_ioremap_caller(addr, size, mtype, caller);
663
664 return (void __iomem *)addr;
665}
666
Arnd Bergmanne43b21c2014-11-10 15:10:32 +0100667static void ixp4xx_iounmap(volatile void __iomem *addr)
Rob Herringf4495882012-03-06 15:01:53 -0600668{
669 if (!is_pci_memory((__force u32)addr))
670 __iounmap(addr);
671}
Krzysztof Halasa00e1b3a2014-03-23 01:36:48 +0100672#endif
Rob Herringf4495882012-03-06 15:01:53 -0600673
674void __init ixp4xx_init_early(void)
675{
Krzysztof Halasa00e1b3a2014-03-23 01:36:48 +0100676 platform_notify = ixp4xx_platform_notify;
677#ifdef CONFIG_PCI
678 platform_notify_remove = ixp4xx_platform_notify_remove;
679#endif
680#ifdef CONFIG_IXP4XX_INDIRECT_PCI
Rob Herringf4495882012-03-06 15:01:53 -0600681 arch_ioremap_caller = ixp4xx_ioremap_caller;
682 arch_iounmap = ixp4xx_iounmap;
Rob Herringf4495882012-03-06 15:01:53 -0600683#endif
Krzysztof Halasa00e1b3a2014-03-23 01:36:48 +0100684}