]> err.no Git - linux-2.6/blob - arch/sh/kernel/cpu/sh4a/setup-sh7722.c
82dba7ff24b5591c86b4f805546ab8848db3a390
[linux-2.6] / arch / sh / kernel / cpu / sh4a / setup-sh7722.c
1 /*
2  * SH7722 Setup
3  *
4  *  Copyright (C) 2006 - 2007  Paul Mundt
5  *
6  * This file is subject to the terms and conditions of the GNU General Public
7  * License.  See the file "COPYING" in the main directory of this archive
8  * for more details.
9  */
10 #include <linux/platform_device.h>
11 #include <linux/init.h>
12 #include <linux/serial.h>
13 #include <linux/mm.h>
14 #include <asm/sci.h>
15
16 static struct plat_sci_port sci_platform_data[] = {
17         {
18                 .mapbase        = 0xffe00000,
19                 .flags          = UPF_BOOT_AUTOCONF,
20                 .type           = PORT_SCIF,
21                 .irqs           = { 80, 81, 83, 82 },
22         }, {
23                 .flags = 0,
24         }
25 };
26
27 static struct platform_device sci_device = {
28         .name           = "sh-sci",
29         .id             = -1,
30         .dev            = {
31                 .platform_data  = sci_platform_data,
32         },
33 };
34
35 static struct platform_device *sh7722_devices[] __initdata = {
36         &sci_device,
37 };
38
39 static int __init sh7722_devices_setup(void)
40 {
41         return platform_add_devices(sh7722_devices,
42                                     ARRAY_SIZE(sh7722_devices));
43 }
44 __initcall(sh7722_devices_setup);
45
46 static struct ipr_data sh7722_ipr_map[] = {
47         /* IRQ, IPR-idx, shift, prio */
48         { 16, 0, 12, 2 }, /* TMU0 */
49         { 17, 0,  8, 2 }, /* TMU1 */
50         { 80, 6, 12, 3 }, /* SCIF ERI */
51         { 81, 6, 12, 3 }, /* SCIF RXI */
52         { 82, 6, 12, 3 }, /* SCIF BRI */
53         { 83, 6, 12, 3 }, /* SCIF TXI */
54 };
55
56 static unsigned long ipr_offsets[] = {
57         0xa4080000, /*  0: IPRA */
58         0xa4080004, /*  1: IPRB */
59         0xa4080008, /*  2: IPRC */
60         0xa408000c, /*  3: IPRD */
61         0xa4080010, /*  4: IPRE */
62         0xa4080014, /*  5: IPRF */
63         0xa4080018, /*  6: IPRG */
64         0xa408001c, /*  7: IPRH */
65         0xa4080020, /*  8: IPRI */
66         0xa4080024, /*  9: IPRJ */
67         0xa4080028, /* 10: IPRK */
68         0xa408002c, /* 11: IPRL */
69 };
70
71 unsigned int map_ipridx_to_addr(int idx)
72 {
73         if (unlikely(idx >= ARRAY_SIZE(ipr_offsets)))
74                 return 0;
75         return ipr_offsets[idx];
76 }
77
78 void __init init_IRQ_ipr(void)
79 {
80         make_ipr_irq(sh7722_ipr_map, ARRAY_SIZE(sh7722_ipr_map));
81 }
82
83 void __init plat_mem_setup(void)
84 {
85         /* Register the URAM space as Node 1 */
86         setup_bootmem_node(1, 0x055f0000, 0x05610000);
87 }