upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / arch / arm / mach-s3c2410 / s3c2410.c
1 /* linux/arch/arm/mach-s3c2410/s3c2410.c
2  *
3  * Copyright (c) 2003,2004 Simtec Electronics
4  *      Ben Dooks <ben@simtec.co.uk>
5  *
6  * http://www.simtec.co.uk/products/EB2410ITX/
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * Modifications:
13  *     16-May-2003 BJD  Created initial version
14  *     16-Aug-2003 BJD  Fixed header files and copyright, added URL
15  *     05-Sep-2003 BJD  Moved to kernel v2.6
16  *     18-Jan-2004 BJD  Added serial port configuration
17  *     21-Aug-2004 BJD  Added new struct s3c2410_board handler
18  *     28-Sep-2004 BJD  Updates for new serial port bits
19  *     04-Nov-2004 BJD  Updated UART configuration process
20 */
21
22 #include <linux/kernel.h>
23 #include <linux/types.h>
24 #include <linux/interrupt.h>
25 #include <linux/list.h>
26 #include <linux/timer.h>
27 #include <linux/init.h>
28 #include <linux/device.h>
29
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
32 #include <asm/mach/irq.h>
33
34 #include <asm/hardware.h>
35 #include <asm/io.h>
36 #include <asm/irq.h>
37
38 #include <asm/arch/regs-clock.h>
39 #include <asm/arch/regs-serial.h>
40
41 #include "s3c2410.h"
42 #include "cpu.h"
43 #include "clock.h"
44
45 int s3c2410_clock_tick_rate = 12*1000*1000;  /* current timers at 12MHz */
46
47 /* Initial IO mappings */
48
49 static struct map_desc s3c2410_iodesc[] __initdata = {
50         IODESC_ENT(USBHOST),
51         IODESC_ENT(CLKPWR),
52         IODESC_ENT(LCD),
53         IODESC_ENT(UART),
54         IODESC_ENT(TIMER),
55         IODESC_ENT(ADC),
56         IODESC_ENT(WATCHDOG)
57 };
58
59 static struct resource s3c_uart0_resource[] = {
60         [0] = {
61                 .start = S3C2410_PA_UART0,
62                 .end   = S3C2410_PA_UART0 + 0x3fff,
63                 .flags = IORESOURCE_MEM,
64         },
65         [1] = {
66                 .start = IRQ_S3CUART_RX0,
67                 .end   = IRQ_S3CUART_ERR0,
68                 .flags = IORESOURCE_IRQ,
69         }
70
71 };
72
73 static struct resource s3c_uart1_resource[] = {
74         [0] = {
75                 .start = S3C2410_PA_UART1,
76                 .end   = S3C2410_PA_UART1 + 0x3fff,
77                 .flags = IORESOURCE_MEM,
78         },
79         [1] = {
80                 .start = IRQ_S3CUART_RX1,
81                 .end   = IRQ_S3CUART_ERR1,
82                 .flags = IORESOURCE_IRQ,
83         }
84 };
85
86 static struct resource s3c_uart2_resource[] = {
87         [0] = {
88                 .start = S3C2410_PA_UART2,
89                 .end   = S3C2410_PA_UART2 + 0x3fff,
90                 .flags = IORESOURCE_MEM,
91         },
92         [1] = {
93                 .start = IRQ_S3CUART_RX2,
94                 .end   = IRQ_S3CUART_ERR2,
95                 .flags = IORESOURCE_IRQ,
96         }
97 };
98
99 /* our uart devices */
100
101 static struct platform_device s3c_uart0 = {
102         .name             = "s3c2410-uart",
103         .id               = 0,
104         .num_resources    = ARRAY_SIZE(s3c_uart0_resource),
105         .resource         = s3c_uart0_resource,
106 };
107
108
109 static struct platform_device s3c_uart1 = {
110         .name             = "s3c2410-uart",
111         .id               = 1,
112         .num_resources    = ARRAY_SIZE(s3c_uart1_resource),
113         .resource         = s3c_uart1_resource,
114 };
115
116 static struct platform_device s3c_uart2 = {
117         .name             = "s3c2410-uart",
118         .id               = 2,
119         .num_resources    = ARRAY_SIZE(s3c_uart2_resource),
120         .resource         = s3c_uart2_resource,
121 };
122
123 static struct platform_device *uart_devices[] __initdata = {
124         &s3c_uart0,
125         &s3c_uart1,
126         &s3c_uart2
127 };
128
129 /* store our uart devices for the serial driver console */
130 struct platform_device *s3c2410_uart_devices[3];
131
132 static int s3c2410_uart_count = 0;
133
134 /* uart registration process */
135
136 void __init s3c2410_init_uarts(struct s3c2410_uartcfg *cfg, int no)
137 {
138         struct platform_device *platdev;
139         int uart;
140
141         for (uart = 0; uart < no; uart++, cfg++) {
142                 platdev = uart_devices[cfg->hwport];
143
144                 s3c24xx_uart_devs[uart] = platdev;
145                 platdev->dev.platform_data = cfg;
146         }
147
148         s3c2410_uart_count = uart;
149 }
150
151 /* s3c2410_map_io
152  *
153  * register the standard cpu IO areas, and any passed in from the
154  * machine specific initialisation.
155  *
156  * this function also sets the initial clock frequencies from the
157  * settings passed in
158 */
159
160 void __init s3c2410_map_io(struct map_desc *mach_desc, int mach_size)
161 {
162         unsigned long tmp;
163
164         /* register our io-tables */
165
166         iotable_init(s3c2410_iodesc, ARRAY_SIZE(s3c2410_iodesc));
167         iotable_init(mach_desc, mach_size);
168
169         /* now we've got our machine bits initialised, work out what
170          * clocks we've got */
171
172         s3c24xx_fclk = s3c2410_get_pll(__raw_readl(S3C2410_MPLLCON),
173                                        s3c24xx_xtal);
174
175         tmp = __raw_readl(S3C2410_CLKDIVN);
176
177         /* work out clock scalings */
178
179         s3c24xx_hclk = s3c24xx_fclk / ((tmp & S3C2410_CLKDIVN_HDIVN) ? 2 : 1);
180         s3c24xx_pclk = s3c24xx_hclk / ((tmp & S3C2410_CLKDIVN_PDIVN) ? 2 : 1);
181
182         /* print brieft summary of clocks, etc */
183
184         printk("S3C2410: core %ld.%03ld MHz, memory %ld.%03ld MHz, peripheral %ld.%03ld MHz\n",
185                print_mhz(s3c24xx_fclk), print_mhz(s3c24xx_hclk),
186                print_mhz(s3c24xx_pclk));
187
188         /* initialise the clocks here, to allow other things like the
189          * console to use them
190          */
191
192         s3c2410_init_clocks();
193 }
194
195 int __init s3c2410_init(void)
196 {
197         printk("S3C2410: Initialising architecture\n");
198
199         return platform_add_devices(s3c24xx_uart_devs, s3c2410_uart_count);
200 }