2007-02-12 01:31:01 +08:00
|
|
|
/* linux/arch/arm/plat-s3c24xx/cpu.c
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Copyright (c) 2004-2005 Simtec Electronics
|
|
|
|
* http://www.simtec.co.uk/products/SWLINUX/
|
|
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
|
|
*
|
|
|
|
* S3C24XX CPU Support
|
|
|
|
*
|
|
|
|
* 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>
|
2006-12-18 06:22:26 +08:00
|
|
|
#include <linux/serial_core.h>
|
2005-10-30 02:07:23 +08:00
|
|
|
#include <linux/platform_device.h>
|
2008-04-16 07:15:20 +08:00
|
|
|
#include <linux/delay.h>
|
2008-09-06 19:10:45 +08:00
|
|
|
#include <linux/io.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-08-05 23:14:15 +08:00
|
|
|
#include <mach/hardware.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/irq.h>
|
2008-04-16 07:15:20 +08:00
|
|
|
#include <asm/cacheflush.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include <asm/mach/map.h>
|
|
|
|
|
2008-08-05 23:14:15 +08:00
|
|
|
#include <mach/regs-gpio.h>
|
2008-10-08 05:26:09 +08:00
|
|
|
#include <plat/regs-serial.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2008-10-08 05:26:09 +08:00
|
|
|
#include <plat/cpu.h>
|
|
|
|
#include <plat/devs.h>
|
2008-10-08 06:09:51 +08:00
|
|
|
#include <plat/clock.h>
|
2008-10-08 05:26:09 +08:00
|
|
|
#include <plat/s3c2410.h>
|
2008-10-08 06:09:51 +08:00
|
|
|
#include <plat/s3c2412.h>
|
2010-04-28 17:09:01 +08:00
|
|
|
#include <plat/s3c2416.h>
|
2010-01-26 15:47:41 +08:00
|
|
|
#include <plat/s3c244x.h>
|
2008-10-08 05:26:09 +08:00
|
|
|
#include <plat/s3c2443.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* table of supported CPUs */
|
|
|
|
|
|
|
|
static const char name_s3c2410[] = "S3C2410";
|
2006-06-25 04:21:27 +08:00
|
|
|
static const char name_s3c2412[] = "S3C2412";
|
2010-04-30 15:32:26 +08:00
|
|
|
static const char name_s3c2416[] = "S3C2416/S3C2450";
|
2005-04-17 06:20:36 +08:00
|
|
|
static const char name_s3c2440[] = "S3C2440";
|
2006-06-19 06:06:41 +08:00
|
|
|
static const char name_s3c2442[] = "S3C2442";
|
2009-09-23 04:40:39 +08:00
|
|
|
static const char name_s3c2442b[] = "S3C2442B";
|
2007-02-16 19:12:31 +08:00
|
|
|
static const char name_s3c2443[] = "S3C2443";
|
2005-04-17 06:20:36 +08:00
|
|
|
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,
|
2009-07-31 06:23:38 +08:00
|
|
|
.init = s3c2410a_init,
|
2005-04-17 06:20:36 +08:00
|
|
|
.name = name_s3c2410a
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.idcode = 0x32440000,
|
|
|
|
.idmask = 0xffffffff,
|
2010-12-01 14:29:23 +08:00
|
|
|
.map_io = s3c2440_map_io,
|
2006-06-19 06:06:41 +08:00
|
|
|
.init_clocks = s3c244x_init_clocks,
|
|
|
|
.init_uarts = s3c244x_init_uarts,
|
2005-04-17 06:20:36 +08:00
|
|
|
.init = s3c2440_init,
|
|
|
|
.name = name_s3c2440
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.idcode = 0x32440001,
|
|
|
|
.idmask = 0xffffffff,
|
2010-12-01 14:29:23 +08:00
|
|
|
.map_io = s3c2440_map_io,
|
2006-06-19 06:06:41 +08:00
|
|
|
.init_clocks = s3c244x_init_clocks,
|
|
|
|
.init_uarts = s3c244x_init_uarts,
|
2005-04-17 06:20:36 +08:00
|
|
|
.init = s3c2440_init,
|
|
|
|
.name = name_s3c2440a
|
2006-02-02 05:24:24 +08:00
|
|
|
},
|
2006-06-19 06:06:41 +08:00
|
|
|
{
|
|
|
|
.idcode = 0x32440aaa,
|
|
|
|
.idmask = 0xffffffff,
|
2010-12-01 14:29:23 +08:00
|
|
|
.map_io = s3c2442_map_io,
|
2006-06-19 06:06:41 +08:00
|
|
|
.init_clocks = s3c244x_init_clocks,
|
|
|
|
.init_uarts = s3c244x_init_uarts,
|
|
|
|
.init = s3c2442_init,
|
|
|
|
.name = name_s3c2442
|
|
|
|
},
|
2009-09-23 04:40:39 +08:00
|
|
|
{
|
|
|
|
.idcode = 0x32440aab,
|
|
|
|
.idmask = 0xffffffff,
|
2010-12-01 14:29:23 +08:00
|
|
|
.map_io = s3c2442_map_io,
|
2009-09-23 04:40:39 +08:00
|
|
|
.init_clocks = s3c244x_init_clocks,
|
|
|
|
.init_uarts = s3c244x_init_uarts,
|
|
|
|
.init = s3c2442_init,
|
|
|
|
.name = name_s3c2442b
|
|
|
|
},
|
2006-06-25 04:21:27 +08:00
|
|
|
{
|
|
|
|
.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,
|
|
|
|
},
|
2006-09-21 03:39:15 +08:00
|
|
|
{ /* 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,
|
|
|
|
},
|
2010-04-28 17:09:01 +08:00
|
|
|
{ /* 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,
|
|
|
|
},
|
2007-02-16 19:12:31 +08:00
|
|
|
{
|
|
|
|
.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,
|
|
|
|
},
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* minimal IO mapping */
|
|
|
|
|
|
|
|
static struct map_desc s3c_iodesc[] __initdata = {
|
|
|
|
IODESC_ENT(GPIO),
|
|
|
|
IODESC_ENT(IRQ),
|
|
|
|
IODESC_ENT(MEMCTRL),
|
|
|
|
IODESC_ENT(UART)
|
|
|
|
};
|
|
|
|
|
2008-10-21 21:06:31 +08:00
|
|
|
/* read cpu identificaiton code */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-06-25 04:21:27 +08:00
|
|
|
static unsigned long s3c24xx_read_idcode_v5(void)
|
|
|
|
{
|
2010-04-28 17:00:07 +08:00
|
|
|
#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
|
|
|
|
|
2006-06-25 04:21:27 +08:00
|
|
|
#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);
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
void __init s3c24xx_init_io(struct map_desc *mach_desc, int size)
|
|
|
|
{
|
|
|
|
/* initialise the io descriptors we need for initialisation */
|
2008-10-21 21:06:31 +08:00
|
|
|
iotable_init(mach_desc, size);
|
2005-04-17 06:20:36 +08:00
|
|
|
iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc));
|
|
|
|
|
2006-06-25 04:21:27 +08:00
|
|
|
if (cpu_architecture() >= CPU_ARCH_ARMv5) {
|
2011-08-20 01:18:18 +08:00
|
|
|
samsung_cpu_id = s3c24xx_read_idcode_v5();
|
2006-06-25 04:21:27 +08:00
|
|
|
} else {
|
2011-08-20 01:18:18 +08:00
|
|
|
samsung_cpu_id = s3c24xx_read_idcode_v4();
|
2006-06-25 04:21:27 +08:00
|
|
|
}
|
2011-08-20 11:18:07 +08:00
|
|
|
s3c24xx_init_cpu();
|
2006-02-02 05:24:24 +08:00
|
|
|
|
2011-08-20 01:18:18 +08:00
|
|
|
s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids));
|
2006-06-19 06:04:05 +08:00
|
|
|
}
|