common.c 7.8 KB
Newer Older
1
/* linux/arch/arm/plat-s3c24xx/cpu.c
L
Linus Torvalds 已提交
2 3 4 5 6
 *
 * Copyright (c) 2004-2005 Simtec Electronics
 *	http://www.simtec.co.uk/products/SWLINUX/
 *	Ben Dooks <ben@simtec.co.uk>
 *
7
 * Common code for S3C24XX machines
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/


#include <linux/init.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
29
#include <linux/serial_core.h>
30
#include <linux/platform_device.h>
31
#include <linux/delay.h>
32
#include <linux/io.h>
L
Linus Torvalds 已提交
33

34
#include <mach/hardware.h>
35
#include <mach/regs-clock.h>
L
Linus Torvalds 已提交
36
#include <asm/irq.h>
37
#include <asm/cacheflush.h>
38
#include <asm/system_info.h>
39
#include <asm/system_misc.h>
L
Linus Torvalds 已提交
40 41 42 43

#include <asm/mach/arch.h>
#include <asm/mach/map.h>

44
#include <mach/regs-gpio.h>
45
#include <plat/regs-serial.h>
L
Linus Torvalds 已提交
46

47 48
#include <plat/cpu.h>
#include <plat/devs.h>
49
#include <plat/clock.h>
50
#include <plat/s3c2410.h>
51
#include <plat/s3c2412.h>
Y
Yauhen Kharuzhy 已提交
52
#include <plat/s3c2416.h>
53
#include <plat/s3c244x.h>
54
#include <plat/s3c2443.h>
55 56
#include <plat/cpu-freq.h>
#include <plat/pll.h>
L
Linus Torvalds 已提交
57 58 59 60

/* table of supported CPUs */

static const char name_s3c2410[]  = "S3C2410";
61
static const char name_s3c2412[]  = "S3C2412";
62
static const char name_s3c2416[]  = "S3C2416/S3C2450";
L
Linus Torvalds 已提交
63
static const char name_s3c2440[]  = "S3C2440";
64
static const char name_s3c2442[]  = "S3C2442";
65
static const char name_s3c2442b[]  = "S3C2442B";
66
static const char name_s3c2443[]  = "S3C2443";
L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
static const char name_s3c2410a[] = "S3C2410A";
static const char name_s3c2440a[] = "S3C2440A";

static struct cpu_table cpu_ids[] __initdata = {
	{
		.idcode		= 0x32410000,
		.idmask		= 0xffffffff,
		.map_io		= s3c2410_map_io,
		.init_clocks	= s3c2410_init_clocks,
		.init_uarts	= s3c2410_init_uarts,
		.init		= s3c2410_init,
		.name		= name_s3c2410
	},
	{
		.idcode		= 0x32410002,
		.idmask		= 0xffffffff,
		.map_io		= s3c2410_map_io,
		.init_clocks	= s3c2410_init_clocks,
		.init_uarts	= s3c2410_init_uarts,
B
Ben Dooks 已提交
86
		.init		= s3c2410a_init,
L
Linus Torvalds 已提交
87 88 89 90 91
		.name		= name_s3c2410a
	},
	{
		.idcode		= 0x32440000,
		.idmask		= 0xffffffff,
92
		.map_io		= s3c2440_map_io,
93 94
		.init_clocks	= s3c244x_init_clocks,
		.init_uarts	= s3c244x_init_uarts,
L
Linus Torvalds 已提交
95 96 97 98 99 100
		.init		= s3c2440_init,
		.name		= name_s3c2440
	},
	{
		.idcode		= 0x32440001,
		.idmask		= 0xffffffff,
101
		.map_io		= s3c2440_map_io,
102 103
		.init_clocks	= s3c244x_init_clocks,
		.init_uarts	= s3c244x_init_uarts,
L
Linus Torvalds 已提交
104 105
		.init		= s3c2440_init,
		.name		= name_s3c2440a
106
	},
107 108 109
	{
		.idcode		= 0x32440aaa,
		.idmask		= 0xffffffff,
110
		.map_io		= s3c2442_map_io,
111 112 113 114 115
		.init_clocks	= s3c244x_init_clocks,
		.init_uarts	= s3c244x_init_uarts,
		.init		= s3c2442_init,
		.name		= name_s3c2442
	},
116 117 118
	{
		.idcode		= 0x32440aab,
		.idmask		= 0xffffffff,
119
		.map_io		= s3c2442_map_io,
120 121 122 123 124
		.init_clocks	= s3c244x_init_clocks,
		.init_uarts	= s3c244x_init_uarts,
		.init		= s3c2442_init,
		.name		= name_s3c2442b
	},
125 126 127 128 129 130 131 132 133
	{
		.idcode		= 0x32412001,
		.idmask		= 0xffffffff,
		.map_io		= s3c2412_map_io,
		.init_clocks	= s3c2412_init_clocks,
		.init_uarts	= s3c2412_init_uarts,
		.init		= s3c2412_init,
		.name		= name_s3c2412,
	},
134 135 136 137 138 139 140 141 142
	{			/* a newer version of the s3c2412 */
		.idcode		= 0x32412003,
		.idmask		= 0xffffffff,
		.map_io		= s3c2412_map_io,
		.init_clocks	= s3c2412_init_clocks,
		.init_uarts	= s3c2412_init_uarts,
		.init		= s3c2412_init,
		.name		= name_s3c2412,
	},
Y
Yauhen Kharuzhy 已提交
143 144 145 146 147 148 149 150 151
	{			/* a strange version of the s3c2416 */
		.idcode		= 0x32450003,
		.idmask		= 0xffffffff,
		.map_io		= s3c2416_map_io,
		.init_clocks	= s3c2416_init_clocks,
		.init_uarts	= s3c2416_init_uarts,
		.init		= s3c2416_init,
		.name		= name_s3c2416,
	},
152 153 154 155 156 157 158 159 160
	{
		.idcode		= 0x32443001,
		.idmask		= 0xffffffff,
		.map_io		= s3c2443_map_io,
		.init_clocks	= s3c2443_init_clocks,
		.init_uarts	= s3c2443_init_uarts,
		.init		= s3c2443_init,
		.name		= name_s3c2443,
	},
L
Linus Torvalds 已提交
161 162 163 164 165 166 167 168 169 170 171
};

/* minimal IO mapping */

static struct map_desc s3c_iodesc[] __initdata = {
	IODESC_ENT(GPIO),
	IODESC_ENT(IRQ),
	IODESC_ENT(MEMCTRL),
	IODESC_ENT(UART)
};

172
/* read cpu identificaiton code */
L
Linus Torvalds 已提交
173

174 175
static unsigned long s3c24xx_read_idcode_v5(void)
{
176 177 178 179 180 181 182 183 184 185
#if defined(CONFIG_CPU_S3C2416)
	/* s3c2416 is v5, with S3C24XX_GSTATUS1 instead of S3C2412_GSTATUS1 */

	u32 gs = __raw_readl(S3C24XX_GSTATUS1);

	/* test for s3c2416 or similar device */
	if ((gs >> 16) == 0x3245)
		return gs;
#endif

186 187 188 189 190 191 192 193 194 195 196 197
#if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
	return __raw_readl(S3C2412_GSTATUS1);
#else
	return 1UL;	/* don't look like an 2400 */
#endif
}

static unsigned long s3c24xx_read_idcode_v4(void)
{
	return __raw_readl(S3C2410_GSTATUS1);
}

198 199
static void s3c24xx_default_idle(void)
{
200
	unsigned long tmp = 0;
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
	int i;

	/* idle the system by using the idle mode which will wait for an
	 * interrupt to happen before restarting the system.
	 */

	/* Warning: going into idle state upsets jtag scanning */

	__raw_writel(__raw_readl(S3C2410_CLKCON) | S3C2410_CLKCON_IDLE,
		     S3C2410_CLKCON);

	/* the samsung port seems to do a loop and then unset idle.. */
	for (i = 0; i < 50; i++)
		tmp += __raw_readl(S3C2410_CLKCON); /* ensure loop not optimised out */

	/* this bit is not cleared on re-start... */

	__raw_writel(__raw_readl(S3C2410_CLKCON) & ~S3C2410_CLKCON_IDLE,
		     S3C2410_CLKCON);
}

L
Linus Torvalds 已提交
222 223
void __init s3c24xx_init_io(struct map_desc *mach_desc, int size)
{
224 225
	arm_pm_idle = s3c24xx_default_idle;

L
Linus Torvalds 已提交
226
	/* initialise the io descriptors we need for initialisation */
227
	iotable_init(mach_desc, size);
L
Linus Torvalds 已提交
228 229
	iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));

230
	if (cpu_architecture() >= CPU_ARCH_ARMv5) {
231
		samsung_cpu_id = s3c24xx_read_idcode_v5();
232
	} else {
233
		samsung_cpu_id = s3c24xx_read_idcode_v4();
234
	}
235
	s3c24xx_init_cpu();
236

237
	s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
238
}
239 240 241 242

/* Serial port registrations */

static struct resource s3c2410_uart0_resource[] = {
243 244 245 246
	[0] = DEFINE_RES_MEM(S3C2410_PA_UART0, SZ_16K),
	[1] = DEFINE_RES_NAMED(IRQ_S3CUART_RX0, \
			IRQ_S3CUART_ERR0 - IRQ_S3CUART_RX0 + 1, \
			NULL, IORESOURCE_IRQ)
247 248 249
};

static struct resource s3c2410_uart1_resource[] = {
250 251 252 253
	[0] = DEFINE_RES_MEM(S3C2410_PA_UART1, SZ_16K),
	[1] = DEFINE_RES_NAMED(IRQ_S3CUART_RX1, \
			IRQ_S3CUART_ERR1 - IRQ_S3CUART_RX1 + 1, \
			NULL, IORESOURCE_IRQ)
254 255 256
};

static struct resource s3c2410_uart2_resource[] = {
257 258 259 260
	[0] = DEFINE_RES_MEM(S3C2410_PA_UART2, SZ_16K),
	[1] = DEFINE_RES_NAMED(IRQ_S3CUART_RX2, \
			IRQ_S3CUART_ERR2 - IRQ_S3CUART_RX2 + 1, \
			NULL, IORESOURCE_IRQ)
261 262 263
};

static struct resource s3c2410_uart3_resource[] = {
264 265 266 267
	[0] = DEFINE_RES_MEM(S3C2443_PA_UART3, SZ_16K),
	[1] = DEFINE_RES_NAMED(IRQ_S3CUART_RX3, \
			IRQ_S3CUART_ERR3 - IRQ_S3CUART_RX3 + 1, \
			NULL, IORESOURCE_IRQ)
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
};

struct s3c24xx_uart_resources s3c2410_uart_resources[] __initdata = {
	[0] = {
		.resources	= s3c2410_uart0_resource,
		.nr_resources	= ARRAY_SIZE(s3c2410_uart0_resource),
	},
	[1] = {
		.resources	= s3c2410_uart1_resource,
		.nr_resources	= ARRAY_SIZE(s3c2410_uart1_resource),
	},
	[2] = {
		.resources	= s3c2410_uart2_resource,
		.nr_resources	= ARRAY_SIZE(s3c2410_uart2_resource),
	},
	[3] = {
		.resources	= s3c2410_uart3_resource,
		.nr_resources	= ARRAY_SIZE(s3c2410_uart3_resource),
	},
};
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302

/* initialise all the clocks */

void __init_or_cpufreq s3c24xx_setup_clocks(unsigned long fclk,
					   unsigned long hclk,
					   unsigned long pclk)
{
	clk_upll.rate = s3c24xx_get_pll(__raw_readl(S3C2410_UPLLCON),
					clk_xtal.rate);

	clk_mpll.rate = fclk;
	clk_h.rate = hclk;
	clk_p.rate = pclk;
	clk_f.rate = fclk;
}