diff options
Diffstat (limited to 'arch/arm/mach-s3c2410/s3c244x.c')
-rw-r--r-- | arch/arm/mach-s3c2410/s3c244x.c | 182 |
1 files changed, 182 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2410/s3c244x.c b/arch/arm/mach-s3c2410/s3c244x.c new file mode 100644 index 000000000000..96852a7000db --- /dev/null +++ b/arch/arm/mach-s3c2410/s3c244x.c | |||
@@ -0,0 +1,182 @@ | |||
1 | /* linux/arch/arm/mach-s3c2410/s3c244x.c | ||
2 | * | ||
3 | * Copyright (c) 2004-2006 Simtec Electronics | ||
4 | * Ben Dooks <ben@simtec.co.uk> | ||
5 | * | ||
6 | * Samsung S3C2440 and S3C2442 Mobile CPU support | ||
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 | |||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/types.h> | ||
15 | #include <linux/interrupt.h> | ||
16 | #include <linux/list.h> | ||
17 | #include <linux/timer.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/platform_device.h> | ||
20 | #include <linux/sysdev.h> | ||
21 | #include <linux/clk.h> | ||
22 | |||
23 | #include <asm/mach/arch.h> | ||
24 | #include <asm/mach/map.h> | ||
25 | #include <asm/mach/irq.h> | ||
26 | |||
27 | #include <asm/hardware.h> | ||
28 | #include <asm/io.h> | ||
29 | #include <asm/irq.h> | ||
30 | |||
31 | #include <asm/arch/regs-clock.h> | ||
32 | #include <asm/arch/regs-serial.h> | ||
33 | #include <asm/arch/regs-gpio.h> | ||
34 | #include <asm/arch/regs-gpioj.h> | ||
35 | #include <asm/arch/regs-dsc.h> | ||
36 | |||
37 | #include "s3c2440.h" | ||
38 | #include "s3c244x.h" | ||
39 | #include "clock.h" | ||
40 | #include "devs.h" | ||
41 | #include "cpu.h" | ||
42 | #include "pm.h" | ||
43 | |||
44 | static struct map_desc s3c244x_iodesc[] __initdata = { | ||
45 | IODESC_ENT(CLKPWR), | ||
46 | IODESC_ENT(TIMER), | ||
47 | IODESC_ENT(WATCHDOG), | ||
48 | IODESC_ENT(LCD), | ||
49 | IODESC_ENT(ADC), | ||
50 | IODESC_ENT(USBHOST), | ||
51 | }; | ||
52 | |||
53 | /* uart initialisation */ | ||
54 | |||
55 | void __init s3c244x_init_uarts(struct s3c2410_uartcfg *cfg, int no) | ||
56 | { | ||
57 | s3c24xx_init_uartdevs("s3c2440-uart", s3c2410_uart_resources, cfg, no); | ||
58 | } | ||
59 | |||
60 | void __init s3c244x_map_io(struct map_desc *mach_desc, int size) | ||
61 | { | ||
62 | /* register our io-tables */ | ||
63 | |||
64 | iotable_init(s3c244x_iodesc, ARRAY_SIZE(s3c244x_iodesc)); | ||
65 | iotable_init(mach_desc, size); | ||
66 | |||
67 | /* rename any peripherals used differing from the s3c2410 */ | ||
68 | |||
69 | s3c_device_i2c.name = "s3c2440-i2c"; | ||
70 | s3c_device_nand.name = "s3c2440-nand"; | ||
71 | } | ||
72 | |||
73 | void __init s3c244x_init_clocks(int xtal) | ||
74 | { | ||
75 | unsigned long clkdiv; | ||
76 | unsigned long camdiv; | ||
77 | unsigned long hclk, fclk, pclk; | ||
78 | int hdiv = 1; | ||
79 | |||
80 | /* now we've got our machine bits initialised, work out what | ||
81 | * clocks we've got */ | ||
82 | |||
83 | fclk = s3c2410_get_pll(__raw_readl(S3C2410_MPLLCON), xtal) * 2; | ||
84 | |||
85 | clkdiv = __raw_readl(S3C2410_CLKDIVN); | ||
86 | camdiv = __raw_readl(S3C2440_CAMDIVN); | ||
87 | |||
88 | /* work out clock scalings */ | ||
89 | |||
90 | switch (clkdiv & S3C2440_CLKDIVN_HDIVN_MASK) { | ||
91 | case S3C2440_CLKDIVN_HDIVN_1: | ||
92 | hdiv = 1; | ||
93 | break; | ||
94 | |||
95 | case S3C2440_CLKDIVN_HDIVN_2: | ||
96 | hdiv = 2; | ||
97 | break; | ||
98 | |||
99 | case S3C2440_CLKDIVN_HDIVN_4_8: | ||
100 | hdiv = (camdiv & S3C2440_CAMDIVN_HCLK4_HALF) ? 8 : 4; | ||
101 | break; | ||
102 | |||
103 | case S3C2440_CLKDIVN_HDIVN_3_6: | ||
104 | hdiv = (camdiv & S3C2440_CAMDIVN_HCLK3_HALF) ? 6 : 3; | ||
105 | break; | ||
106 | } | ||
107 | |||
108 | hclk = fclk / hdiv; | ||
109 | pclk = hclk / ((clkdiv & S3C2440_CLKDIVN_PDIVN)? 2:1); | ||
110 | |||
111 | /* print brief summary of clocks, etc */ | ||
112 | |||
113 | printk("S3C244X: core %ld.%03ld MHz, memory %ld.%03ld MHz, peripheral %ld.%03ld MHz\n", | ||
114 | print_mhz(fclk), print_mhz(hclk), print_mhz(pclk)); | ||
115 | |||
116 | /* initialise the clocks here, to allow other things like the | ||
117 | * console to use them, and to add new ones after the initialisation | ||
118 | */ | ||
119 | |||
120 | s3c24xx_setup_clocks(xtal, fclk, hclk, pclk); | ||
121 | } | ||
122 | |||
123 | #ifdef CONFIG_PM | ||
124 | |||
125 | static struct sleep_save s3c244x_sleep[] = { | ||
126 | SAVE_ITEM(S3C2440_DSC0), | ||
127 | SAVE_ITEM(S3C2440_DSC1), | ||
128 | SAVE_ITEM(S3C2440_GPJDAT), | ||
129 | SAVE_ITEM(S3C2440_GPJCON), | ||
130 | SAVE_ITEM(S3C2440_GPJUP) | ||
131 | }; | ||
132 | |||
133 | static int s3c244x_suspend(struct sys_device *dev, pm_message_t state) | ||
134 | { | ||
135 | s3c2410_pm_do_save(s3c244x_sleep, ARRAY_SIZE(s3c244x_sleep)); | ||
136 | return 0; | ||
137 | } | ||
138 | |||
139 | static int s3c244x_resume(struct sys_device *dev) | ||
140 | { | ||
141 | s3c2410_pm_do_restore(s3c244x_sleep, ARRAY_SIZE(s3c244x_sleep)); | ||
142 | return 0; | ||
143 | } | ||
144 | |||
145 | #else | ||
146 | #define s3c244x_suspend NULL | ||
147 | #define s3c244x_resume NULL | ||
148 | #endif | ||
149 | |||
150 | /* Since the S3C2442 and S3C2440 share items, put both sysclasses here */ | ||
151 | |||
152 | struct sysdev_class s3c2440_sysclass = { | ||
153 | set_kset_name("s3c2440-core"), | ||
154 | .suspend = s3c244x_suspend, | ||
155 | .resume = s3c244x_resume | ||
156 | }; | ||
157 | |||
158 | struct sysdev_class s3c2442_sysclass = { | ||
159 | set_kset_name("s3c2442-core"), | ||
160 | .suspend = s3c244x_suspend, | ||
161 | .resume = s3c244x_resume | ||
162 | }; | ||
163 | |||
164 | /* need to register class before we actually register the device, and | ||
165 | * we also need to ensure that it has been initialised before any of the | ||
166 | * drivers even try to use it (even if not on an s3c2440 based system) | ||
167 | * as a driver which may support both 2410 and 2440 may try and use it. | ||
168 | */ | ||
169 | |||
170 | static int __init s3c2440_core_init(void) | ||
171 | { | ||
172 | return sysdev_class_register(&s3c2440_sysclass); | ||
173 | } | ||
174 | |||
175 | core_initcall(s3c2440_core_init); | ||
176 | |||
177 | static int __init s3c2442_core_init(void) | ||
178 | { | ||
179 | return sysdev_class_register(&s3c2442_sysclass); | ||
180 | } | ||
181 | |||
182 | core_initcall(s3c2442_core_init); | ||