blob: febee47bc116295ccbacbb173b1acabb5c1b07e2 [file] [log] [blame]
Jamie Ilesaf756552011-07-25 17:36:42 +01001/*
2 * Copyright (c) 2011 Picochip Ltd., Jamie Iles
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * All enquiries to support@picochip.com
9 */
10#include <linux/irq.h>
11#include <linux/irqdomain.h>
12#include <linux/of.h>
13#include <linux/of_address.h>
Jamie Ilesc05012c2011-11-03 17:29:03 +000014#include <linux/of_irq.h>
Jamie Ilesaf756552011-07-25 17:36:42 +010015#include <linux/of_platform.h>
16
17#include <asm/mach/arch.h>
18#include <asm/hardware/vic.h>
Jamie Iles8f37a0b2011-12-12 20:21:39 +000019#include <asm/mach/map.h>
Jamie Ilesaf756552011-07-25 17:36:42 +010020
21#include <mach/map.h>
22#include <mach/picoxcell_soc.h>
23
24#include "common.h"
25
Jamie Iles8f37a0b2011-12-12 20:21:39 +000026static struct map_desc io_map __initdata = {
27 .virtual = PHYS_TO_IO(PICOXCELL_PERIPH_BASE),
28 .pfn = __phys_to_pfn(PICOXCELL_PERIPH_BASE),
29 .length = PICOXCELL_PERIPH_LENGTH,
30 .type = MT_DEVICE,
31};
32
33static void __init picoxcell_map_io(void)
34{
35 iotable_init(&io_map, 1);
36}
37
Jamie Ilesaf756552011-07-25 17:36:42 +010038static void __init picoxcell_init_machine(void)
39{
40 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
41}
42
43static const char *picoxcell_dt_match[] = {
44 "picochip,pc3x2",
45 "picochip,pc3x3",
46 NULL
47};
48
49static const struct of_device_id vic_of_match[] __initconst = {
Jamie Ilesc05012c2011-11-03 17:29:03 +000050 { .compatible = "arm,pl192-vic", .data = vic_of_init, },
Jamie Ilesaf756552011-07-25 17:36:42 +010051 { /* Sentinel */ }
52};
53
54static void __init picoxcell_init_irq(void)
55{
Jamie Ilesc05012c2011-11-03 17:29:03 +000056 of_irq_init(vic_of_match);
Jamie Ilesaf756552011-07-25 17:36:42 +010057}
58
59DT_MACHINE_START(PICOXCELL, "Picochip picoXcell")
60 .map_io = picoxcell_map_io,
Jamie Iles98e27a52011-12-12 20:17:37 +000061 .nr_irqs = NR_IRQS_LEGACY,
Jamie Ilesaf756552011-07-25 17:36:42 +010062 .init_irq = picoxcell_init_irq,
Jamie Ilesc05012c2011-11-03 17:29:03 +000063 .handle_irq = vic_handle_irq,
Jamie Ilesaf756552011-07-25 17:36:42 +010064 .timer = &picoxcell_timer,
65 .init_machine = picoxcell_init_machine,
66 .dt_compat = picoxcell_dt_match,
67MACHINE_END