| Ben Dooks | a21765a | 2007-02-11 18:31:01 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/plat-s3c24xx/cpu.c | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 |  * | 
 | 3 |  * Copyright (c) 2004-2005 Simtec Electronics | 
 | 4 |  *	http://www.simtec.co.uk/products/SWLINUX/ | 
 | 5 |  *	Ben Dooks <ben@simtec.co.uk> | 
 | 6 |  * | 
 | 7 |  * S3C24XX CPU Support | 
 | 8 |  * | 
 | 9 |  * This program is free software; you can redistribute it and/or modify | 
 | 10 |  * it under the terms of the GNU General Public License as published by | 
 | 11 |  * the Free Software Foundation; either version 2 of the License, or | 
 | 12 |  * (at your option) any later version. | 
 | 13 |  * | 
 | 14 |  * This program is distributed in the hope that it will be useful, | 
 | 15 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 16 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 17 |  * GNU General Public License for more details. | 
 | 18 |  * | 
 | 19 |  * You should have received a copy of the GNU General Public License | 
 | 20 |  * along with this program; if not, write to the Free Software | 
 | 21 |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
 | 22 | */ | 
 | 23 |  | 
 | 24 |  | 
 | 25 | #include <linux/init.h> | 
 | 26 | #include <linux/module.h> | 
 | 27 | #include <linux/interrupt.h> | 
 | 28 | #include <linux/ioport.h> | 
| Ben Dooks | b6d1f54 | 2006-12-17 23:22:26 +0100 | [diff] [blame] | 29 | #include <linux/serial_core.h> | 
| Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 30 | #include <linux/platform_device.h> | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 31 | #include <linux/delay.h> | 
| Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 32 | #include <linux/io.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 |  | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 34 | #include <mach/hardware.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/irq.h> | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 36 | #include <asm/cacheflush.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  | 
 | 38 | #include <asm/mach/arch.h> | 
 | 39 | #include <asm/mach/map.h> | 
 | 40 |  | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 41 | #include <mach/system-reset.h> | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 42 |  | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 43 | #include <mach/regs-gpio.h> | 
| Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 44 | #include <plat/regs-serial.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 |  | 
| Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 46 | #include <plat/cpu.h> | 
 | 47 | #include <plat/devs.h> | 
| Ben Dooks | d5120ae | 2008-10-07 23:09:51 +0100 | [diff] [blame] | 48 | #include <plat/clock.h> | 
| Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 49 | #include <plat/s3c2410.h> | 
| Ben Dooks | d5120ae | 2008-10-07 23:09:51 +0100 | [diff] [blame] | 50 | #include <plat/s3c2412.h> | 
| Yauhen Kharuzhy | f1290a4 | 2010-04-28 18:09:01 +0900 | [diff] [blame] | 51 | #include <plat/s3c2416.h> | 
| Ben Dooks | 58bac7b | 2010-01-26 16:47:41 +0900 | [diff] [blame] | 52 | #include <plat/s3c244x.h> | 
| Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 53 | #include <plat/s3c2443.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | /* table of supported CPUs */ | 
 | 56 |  | 
 | 57 | static const char name_s3c2410[]  = "S3C2410"; | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 58 | static const char name_s3c2412[]  = "S3C2412"; | 
| Ben Dooks | 63b1f51 | 2010-04-30 16:32:26 +0900 | [diff] [blame] | 59 | static const char name_s3c2416[]  = "S3C2416/S3C2450"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | static const char name_s3c2440[]  = "S3C2440"; | 
| Ben Dooks | 96ce238 | 2006-06-18 23:06:41 +0100 | [diff] [blame] | 61 | static const char name_s3c2442[]  = "S3C2442"; | 
| Harald Welte | f5fb9b1 | 2009-09-22 21:40:39 +0100 | [diff] [blame] | 62 | static const char name_s3c2442b[]  = "S3C2442B"; | 
| Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 63 | static const char name_s3c2443[]  = "S3C2443"; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | static const char name_s3c2410a[] = "S3C2410A"; | 
 | 65 | static const char name_s3c2440a[] = "S3C2440A"; | 
 | 66 |  | 
 | 67 | static struct cpu_table cpu_ids[] __initdata = { | 
 | 68 | 	{ | 
 | 69 | 		.idcode		= 0x32410000, | 
 | 70 | 		.idmask		= 0xffffffff, | 
 | 71 | 		.map_io		= s3c2410_map_io, | 
 | 72 | 		.init_clocks	= s3c2410_init_clocks, | 
 | 73 | 		.init_uarts	= s3c2410_init_uarts, | 
 | 74 | 		.init		= s3c2410_init, | 
 | 75 | 		.name		= name_s3c2410 | 
 | 76 | 	}, | 
 | 77 | 	{ | 
 | 78 | 		.idcode		= 0x32410002, | 
 | 79 | 		.idmask		= 0xffffffff, | 
 | 80 | 		.map_io		= s3c2410_map_io, | 
 | 81 | 		.init_clocks	= s3c2410_init_clocks, | 
 | 82 | 		.init_uarts	= s3c2410_init_uarts, | 
| Ben Dooks | f017679 | 2009-07-30 23:23:38 +0100 | [diff] [blame] | 83 | 		.init		= s3c2410a_init, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | 		.name		= name_s3c2410a | 
 | 85 | 	}, | 
 | 86 | 	{ | 
 | 87 | 		.idcode		= 0x32440000, | 
 | 88 | 		.idmask		= 0xffffffff, | 
| Vasily Khoruzhick | 812c4e4 | 2010-12-01 08:29:23 +0200 | [diff] [blame] | 89 | 		.map_io		= s3c2440_map_io, | 
| Ben Dooks | 96ce238 | 2006-06-18 23:06:41 +0100 | [diff] [blame] | 90 | 		.init_clocks	= s3c244x_init_clocks, | 
 | 91 | 		.init_uarts	= s3c244x_init_uarts, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | 		.init		= s3c2440_init, | 
 | 93 | 		.name		= name_s3c2440 | 
 | 94 | 	}, | 
 | 95 | 	{ | 
 | 96 | 		.idcode		= 0x32440001, | 
 | 97 | 		.idmask		= 0xffffffff, | 
| Vasily Khoruzhick | 812c4e4 | 2010-12-01 08:29:23 +0200 | [diff] [blame] | 98 | 		.map_io		= s3c2440_map_io, | 
| Ben Dooks | 96ce238 | 2006-06-18 23:06:41 +0100 | [diff] [blame] | 99 | 		.init_clocks	= s3c244x_init_clocks, | 
 | 100 | 		.init_uarts	= s3c244x_init_uarts, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | 		.init		= s3c2440_init, | 
 | 102 | 		.name		= name_s3c2440a | 
| Lucas Correia Villa Real | 83f755f | 2006-02-01 21:24:24 +0000 | [diff] [blame] | 103 | 	}, | 
 | 104 | 	{ | 
| Ben Dooks | 96ce238 | 2006-06-18 23:06:41 +0100 | [diff] [blame] | 105 | 		.idcode		= 0x32440aaa, | 
 | 106 | 		.idmask		= 0xffffffff, | 
| Vasily Khoruzhick | 812c4e4 | 2010-12-01 08:29:23 +0200 | [diff] [blame] | 107 | 		.map_io		= s3c2442_map_io, | 
| Ben Dooks | 96ce238 | 2006-06-18 23:06:41 +0100 | [diff] [blame] | 108 | 		.init_clocks	= s3c244x_init_clocks, | 
 | 109 | 		.init_uarts	= s3c244x_init_uarts, | 
 | 110 | 		.init		= s3c2442_init, | 
 | 111 | 		.name		= name_s3c2442 | 
 | 112 | 	}, | 
 | 113 | 	{ | 
| Harald Welte | f5fb9b1 | 2009-09-22 21:40:39 +0100 | [diff] [blame] | 114 | 		.idcode		= 0x32440aab, | 
 | 115 | 		.idmask		= 0xffffffff, | 
| Vasily Khoruzhick | 812c4e4 | 2010-12-01 08:29:23 +0200 | [diff] [blame] | 116 | 		.map_io		= s3c2442_map_io, | 
| Harald Welte | f5fb9b1 | 2009-09-22 21:40:39 +0100 | [diff] [blame] | 117 | 		.init_clocks	= s3c244x_init_clocks, | 
 | 118 | 		.init_uarts	= s3c244x_init_uarts, | 
 | 119 | 		.init		= s3c2442_init, | 
 | 120 | 		.name		= name_s3c2442b | 
 | 121 | 	}, | 
 | 122 | 	{ | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 123 | 		.idcode		= 0x32412001, | 
 | 124 | 		.idmask		= 0xffffffff, | 
 | 125 | 		.map_io		= s3c2412_map_io, | 
 | 126 | 		.init_clocks	= s3c2412_init_clocks, | 
 | 127 | 		.init_uarts	= s3c2412_init_uarts, | 
 | 128 | 		.init		= s3c2412_init, | 
 | 129 | 		.name		= name_s3c2412, | 
 | 130 | 	}, | 
| Ben Dooks | d9bc55f | 2006-09-20 20:39:15 +0100 | [diff] [blame] | 131 | 	{			/* a newer version of the s3c2412 */ | 
 | 132 | 		.idcode		= 0x32412003, | 
 | 133 | 		.idmask		= 0xffffffff, | 
 | 134 | 		.map_io		= s3c2412_map_io, | 
 | 135 | 		.init_clocks	= s3c2412_init_clocks, | 
 | 136 | 		.init_uarts	= s3c2412_init_uarts, | 
 | 137 | 		.init		= s3c2412_init, | 
 | 138 | 		.name		= name_s3c2412, | 
 | 139 | 	}, | 
| Yauhen Kharuzhy | f1290a4 | 2010-04-28 18:09:01 +0900 | [diff] [blame] | 140 | 	{			/* a strange version of the s3c2416 */ | 
 | 141 | 		.idcode		= 0x32450003, | 
 | 142 | 		.idmask		= 0xffffffff, | 
 | 143 | 		.map_io		= s3c2416_map_io, | 
 | 144 | 		.init_clocks	= s3c2416_init_clocks, | 
 | 145 | 		.init_uarts	= s3c2416_init_uarts, | 
 | 146 | 		.init		= s3c2416_init, | 
 | 147 | 		.name		= name_s3c2416, | 
 | 148 | 	}, | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 149 | 	{ | 
| Ben Dooks | e4d06e3 | 2007-02-16 12:12:31 +0100 | [diff] [blame] | 150 | 		.idcode		= 0x32443001, | 
 | 151 | 		.idmask		= 0xffffffff, | 
 | 152 | 		.map_io		= s3c2443_map_io, | 
 | 153 | 		.init_clocks	= s3c2443_init_clocks, | 
 | 154 | 		.init_uarts	= s3c2443_init_uarts, | 
 | 155 | 		.init		= s3c2443_init, | 
 | 156 | 		.name		= name_s3c2443, | 
 | 157 | 	}, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | }; | 
 | 159 |  | 
 | 160 | /* minimal IO mapping */ | 
 | 161 |  | 
 | 162 | static struct map_desc s3c_iodesc[] __initdata = { | 
 | 163 | 	IODESC_ENT(GPIO), | 
 | 164 | 	IODESC_ENT(IRQ), | 
 | 165 | 	IODESC_ENT(MEMCTRL), | 
 | 166 | 	IODESC_ENT(UART) | 
 | 167 | }; | 
 | 168 |  | 
| Ben Dooks | 74b265d | 2008-10-21 14:06:31 +0100 | [diff] [blame] | 169 | /* read cpu identificaiton code */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 |  | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 171 | static unsigned long s3c24xx_read_idcode_v5(void) | 
 | 172 | { | 
| Ben Dooks | d11a7d7 | 2010-04-28 18:00:07 +0900 | [diff] [blame] | 173 | #if defined(CONFIG_CPU_S3C2416) | 
 | 174 | 	/* s3c2416 is v5, with S3C24XX_GSTATUS1 instead of S3C2412_GSTATUS1 */ | 
 | 175 |  | 
 | 176 | 	u32 gs = __raw_readl(S3C24XX_GSTATUS1); | 
 | 177 |  | 
 | 178 | 	/* test for s3c2416 or similar device */ | 
 | 179 | 	if ((gs >> 16) == 0x3245) | 
 | 180 | 		return gs; | 
 | 181 | #endif | 
 | 182 |  | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 183 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) | 
 | 184 | 	return __raw_readl(S3C2412_GSTATUS1); | 
 | 185 | #else | 
 | 186 | 	return 1UL;	/* don't look like an 2400 */ | 
 | 187 | #endif | 
 | 188 | } | 
 | 189 |  | 
 | 190 | static unsigned long s3c24xx_read_idcode_v4(void) | 
 | 191 | { | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 192 | 	return __raw_readl(S3C2410_GSTATUS1); | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 193 | } | 
 | 194 |  | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 195 | /* Hook for arm_pm_restart to ensure we execute the reset code | 
 | 196 |  * with the caches enabled. It seems at least the S3C2440 has a problem | 
 | 197 |  * resetting if there is bus activity interrupted by the reset. | 
 | 198 |  */ | 
| Russell King | be093be | 2009-03-19 16:20:24 +0000 | [diff] [blame] | 199 | static void s3c24xx_pm_restart(char mode, const char *cmd) | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 200 | { | 
 | 201 | 	if (mode != 's') { | 
 | 202 | 		unsigned long flags; | 
 | 203 |  | 
 | 204 | 		local_irq_save(flags); | 
 | 205 | 		__cpuc_flush_kern_all(); | 
 | 206 | 		__cpuc_flush_user_all(); | 
 | 207 |  | 
| Russell King | be093be | 2009-03-19 16:20:24 +0000 | [diff] [blame] | 208 | 		arch_reset(mode, cmd); | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 209 | 		local_irq_restore(flags); | 
 | 210 | 	} | 
 | 211 |  | 
 | 212 | 	/* fallback, or unhandled */ | 
| Russell King | be093be | 2009-03-19 16:20:24 +0000 | [diff] [blame] | 213 | 	arm_machine_restart(mode, cmd); | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 214 | } | 
 | 215 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | void __init s3c24xx_init_io(struct map_desc *mach_desc, int size) | 
 | 217 | { | 
| Lucas Correia Villa Real | 83f755f | 2006-02-01 21:24:24 +0000 | [diff] [blame] | 218 | 	unsigned long idcode = 0x0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 |  | 
 | 220 | 	/* initialise the io descriptors we need for initialisation */ | 
| Ben Dooks | 74b265d | 2008-10-21 14:06:31 +0100 | [diff] [blame] | 221 | 	iotable_init(mach_desc, size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | 	iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc)); | 
 | 223 |  | 
| Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 224 | 	if (cpu_architecture() >= CPU_ARCH_ARMv5) { | 
 | 225 | 		idcode = s3c24xx_read_idcode_v5(); | 
 | 226 | 	} else { | 
 | 227 | 		idcode = s3c24xx_read_idcode_v4(); | 
 | 228 | 	} | 
| Lucas Correia Villa Real | 83f755f | 2006-02-01 21:24:24 +0000 | [diff] [blame] | 229 |  | 
| Ben Dooks | 3c7d9c8 | 2008-04-16 00:15:20 +0100 | [diff] [blame] | 230 | 	arm_pm_restart = s3c24xx_pm_restart; | 
 | 231 |  | 
| Ben Dooks | 74b265d | 2008-10-21 14:06:31 +0100 | [diff] [blame] | 232 | 	s3c_init_cpu(idcode, cpu_ids, ARRAY_SIZE(cpu_ids)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |