diff options
| -rw-r--r-- | arch/arm/mach-s3c2410/Kconfig | 14 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/Makefile | 4 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/cpu.c | 37 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/cpu.h | 1 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/s3c2412.c | 195 | ||||
| -rw-r--r-- | arch/arm/mach-s3c2410/s3c2412.h | 29 | ||||
| -rw-r--r-- | include/asm-arm/arch-s3c2410/debug-macro.S | 10 | ||||
| -rw-r--r-- | include/asm-arm/arch-s3c2410/map.h | 16 | ||||
| -rw-r--r-- | include/asm-arm/arch-s3c2410/regs-dsc.h | 3 | ||||
| -rw-r--r-- | include/asm-arm/arch-s3c2410/regs-gpio.h | 63 | ||||
| -rw-r--r-- | include/asm-arm/arch-s3c2410/regs-gpioj.h | 5 |
11 files changed, 369 insertions, 8 deletions
diff --git a/arch/arm/mach-s3c2410/Kconfig b/arch/arm/mach-s3c2410/Kconfig index 7b786d725636..b61af3a6a414 100644 --- a/arch/arm/mach-s3c2410/Kconfig +++ b/arch/arm/mach-s3c2410/Kconfig | |||
| @@ -127,6 +127,20 @@ config CPU_S3C2410 | |||
| 127 | Support for S3C2410 and S3C2410A family from the S3C24XX line | 127 | Support for S3C2410 and S3C2410A family from the S3C24XX line |
| 128 | of Samsung Mobile CPUs. | 128 | of Samsung Mobile CPUs. |
| 129 | 129 | ||
| 130 | # internal node to signify if we are only dealing with an S3C2412 | ||
| 131 | |||
| 132 | config CPU_S3C2412_ONLY | ||
| 133 | bool | ||
| 134 | depends on ARCH_S3C2410 && !CPU_S3C2400 && !CPU_S3C2410 && \ | ||
| 135 | !CPU_S3C2440 && !CPU_S3C2442 && CPU_S3C2412 | ||
| 136 | default y if CPU_S3C2412 | ||
| 137 | |||
| 138 | config CPU_S3C2412 | ||
| 139 | bool | ||
| 140 | depends on ARCH_S3C2410 | ||
| 141 | help | ||
| 142 | Support for the S3C2412 and S3C2413 SoCs from the S3C24XX line | ||
| 143 | |||
| 130 | config CPU_S3C244X | 144 | config CPU_S3C244X |
| 131 | bool | 145 | bool |
| 132 | depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442) | 146 | depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442) |
diff --git a/arch/arm/mach-s3c2410/Makefile b/arch/arm/mach-s3c2410/Makefile index 372dbcea1434..86219c6df32c 100644 --- a/arch/arm/mach-s3c2410/Makefile +++ b/arch/arm/mach-s3c2410/Makefile | |||
| @@ -24,6 +24,10 @@ obj-$(CONFIG_S3C2410_DMA) += dma.o | |||
| 24 | obj-$(CONFIG_PM) += pm.o sleep.o | 24 | obj-$(CONFIG_PM) += pm.o sleep.o |
| 25 | obj-$(CONFIG_PM_SIMTEC) += pm-simtec.o | 25 | obj-$(CONFIG_PM_SIMTEC) += pm-simtec.o |
| 26 | 26 | ||
| 27 | # S3C2412 support | ||
| 28 | obj-$(CONFIG_CPU_S3C2412) += s3c2412.o | ||
| 29 | |||
| 30 | # | ||
| 27 | # S3C244X support | 31 | # S3C244X support |
| 28 | 32 | ||
| 29 | obj-$(CONFIG_CPU_S3C244X) += s3c244x.o | 33 | obj-$(CONFIG_CPU_S3C244X) += s3c244x.o |
diff --git a/arch/arm/mach-s3c2410/cpu.c b/arch/arm/mach-s3c2410/cpu.c index 52842e6e86e6..1c3c6adae6c4 100644 --- a/arch/arm/mach-s3c2410/cpu.c +++ b/arch/arm/mach-s3c2410/cpu.c | |||
| @@ -44,6 +44,7 @@ | |||
| 44 | #include "clock.h" | 44 | #include "clock.h" |
| 45 | #include "s3c2400.h" | 45 | #include "s3c2400.h" |
| 46 | #include "s3c2410.h" | 46 | #include "s3c2410.h" |
| 47 | #include "s3c2412.h" | ||
| 47 | #include "s3c244x.h" | 48 | #include "s3c244x.h" |
| 48 | #include "s3c2440.h" | 49 | #include "s3c2440.h" |
| 49 | #include "s3c2442.h" | 50 | #include "s3c2442.h" |
| @@ -62,6 +63,7 @@ struct cpu_table { | |||
| 62 | 63 | ||
| 63 | static const char name_s3c2400[] = "S3C2400"; | 64 | static const char name_s3c2400[] = "S3C2400"; |
| 64 | static const char name_s3c2410[] = "S3C2410"; | 65 | static const char name_s3c2410[] = "S3C2410"; |
| 66 | static const char name_s3c2412[] = "S3C2412"; | ||
| 65 | static const char name_s3c2440[] = "S3C2440"; | 67 | static const char name_s3c2440[] = "S3C2440"; |
| 66 | static const char name_s3c2442[] = "S3C2442"; | 68 | static const char name_s3c2442[] = "S3C2442"; |
| 67 | static const char name_s3c2410a[] = "S3C2410A"; | 69 | static const char name_s3c2410a[] = "S3C2410A"; |
| @@ -114,6 +116,15 @@ static struct cpu_table cpu_ids[] __initdata = { | |||
| 114 | .name = name_s3c2442 | 116 | .name = name_s3c2442 |
| 115 | }, | 117 | }, |
| 116 | { | 118 | { |
| 119 | .idcode = 0x32412001, | ||
| 120 | .idmask = 0xffffffff, | ||
| 121 | .map_io = s3c2412_map_io, | ||
| 122 | .init_clocks = s3c2412_init_clocks, | ||
| 123 | .init_uarts = s3c2412_init_uarts, | ||
| 124 | .init = s3c2412_init, | ||
| 125 | .name = name_s3c2412, | ||
| 126 | }, | ||
| 127 | { | ||
| 117 | .idcode = 0x0, /* S3C2400 doesn't have an idcode */ | 128 | .idcode = 0x0, /* S3C2400 doesn't have an idcode */ |
| 118 | .idmask = 0xffffffff, | 129 | .idmask = 0xffffffff, |
| 119 | .map_io = s3c2400_map_io, | 130 | .map_io = s3c2400_map_io, |
| @@ -171,6 +182,24 @@ void s3c24xx_set_board(struct s3c24xx_board *b) | |||
| 171 | 182 | ||
| 172 | static struct cpu_table *cpu; | 183 | static struct cpu_table *cpu; |
| 173 | 184 | ||
| 185 | static unsigned long s3c24xx_read_idcode_v5(void) | ||
| 186 | { | ||
| 187 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) | ||
| 188 | return __raw_readl(S3C2412_GSTATUS1); | ||
| 189 | #else | ||
| 190 | return 1UL; /* don't look like an 2400 */ | ||
| 191 | #endif | ||
| 192 | } | ||
| 193 | |||
| 194 | static unsigned long s3c24xx_read_idcode_v4(void) | ||
| 195 | { | ||
| 196 | #ifndef CONFIG_CPU_S3C2400 | ||
| 197 | return __raw_readl(S3C2410_GSTATUS1); | ||
| 198 | #else | ||
| 199 | return 0UL; | ||
| 200 | #endif | ||
| 201 | } | ||
| 202 | |||
| 174 | void __init s3c24xx_init_io(struct map_desc *mach_desc, int size) | 203 | void __init s3c24xx_init_io(struct map_desc *mach_desc, int size) |
| 175 | { | 204 | { |
| 176 | unsigned long idcode = 0x0; | 205 | unsigned long idcode = 0x0; |
| @@ -178,9 +207,11 @@ void __init s3c24xx_init_io(struct map_desc *mach_desc, int size) | |||
| 178 | /* initialise the io descriptors we need for initialisation */ | 207 | /* initialise the io descriptors we need for initialisation */ |
| 179 | iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc)); | 208 | iotable_init(s3c_iodesc, ARRAY_SIZE(s3c_iodesc)); |
| 180 | 209 | ||
| 181 | #ifndef CONFIG_CPU_S3C2400 | 210 | if (cpu_architecture() >= CPU_ARCH_ARMv5) { |
| 182 | idcode = __raw_readl(S3C2410_GSTATUS1); | 211 | idcode = s3c24xx_read_idcode_v5(); |
| 183 | #endif | 212 | } else { |
| 213 | idcode = s3c24xx_read_idcode_v4(); | ||
| 214 | } | ||
| 184 | 215 | ||
| 185 | cpu = s3c_lookup_cpu(idcode); | 216 | cpu = s3c_lookup_cpu(idcode); |
| 186 | 217 | ||
diff --git a/arch/arm/mach-s3c2410/cpu.h b/arch/arm/mach-s3c2410/cpu.h index 21c62dc29bb2..b0ed9d2d141b 100644 --- a/arch/arm/mach-s3c2410/cpu.h +++ b/arch/arm/mach-s3c2410/cpu.h | |||
| @@ -74,5 +74,6 @@ extern struct sys_timer s3c24xx_timer; | |||
| 74 | /* system device classes */ | 74 | /* system device classes */ |
| 75 | 75 | ||
| 76 | extern struct sysdev_class s3c2410_sysclass; | 76 | extern struct sysdev_class s3c2410_sysclass; |
| 77 | extern struct sysdev_class s3c2412_sysclass; | ||
| 77 | extern struct sysdev_class s3c2440_sysclass; | 78 | extern struct sysdev_class s3c2440_sysclass; |
| 78 | extern struct sysdev_class s3c2442_sysclass; | 79 | extern struct sysdev_class s3c2442_sysclass; |
diff --git a/arch/arm/mach-s3c2410/s3c2412.c b/arch/arm/mach-s3c2410/s3c2412.c new file mode 100644 index 000000000000..e24ffd5e478b --- /dev/null +++ b/arch/arm/mach-s3c2410/s3c2412.c | |||
| @@ -0,0 +1,195 @@ | |||
| 1 | /* linux/arch/arm/mach-s3c2410/s3c2412.c | ||
| 2 | * | ||
| 3 | * Copyright (c) 2006 Simtec Electronics | ||
| 4 | * Ben Dooks <ben@simtec.co.uk> | ||
| 5 | * | ||
| 6 | * http://armlinux.simtec.co.uk/. | ||
| 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 | * 10-Jan-2005 BJD Removed s3c2410_clock_tick_rate | ||
| 21 | * 13-Aug-2005 DA Removed UART from initial I/O mappings | ||
| 22 | */ | ||
| 23 | |||
| 24 | #include <linux/kernel.h> | ||
| 25 | #include <linux/types.h> | ||
| 26 | #include <linux/interrupt.h> | ||
| 27 | #include <linux/list.h> | ||
| 28 | #include <linux/timer.h> | ||
| 29 | #include <linux/init.h> | ||
| 30 | #include <linux/sysdev.h> | ||
| 31 | #include <linux/platform_device.h> | ||
| 32 | |||
| 33 | #include <asm/mach/arch.h> | ||
| 34 | #include <asm/mach/map.h> | ||
| 35 | #include <asm/mach/irq.h> | ||
| 36 | |||
| 37 | #include <asm/hardware.h> | ||
| 38 | #include <asm/io.h> | ||
| 39 | #include <asm/irq.h> | ||
| 40 | |||
| 41 | #include <asm/arch/regs-clock.h> | ||
| 42 | #include <asm/arch/regs-serial.h> | ||
| 43 | #include <asm/arch/regs-gpio.h> | ||
| 44 | #include <asm/arch/regs-gpioj.h> | ||
| 45 | #include <asm/arch/regs-dsc.h> | ||
| 46 | |||
| 47 | #include "s3c2412.h" | ||
| 48 | #include "cpu.h" | ||
| 49 | #include "devs.h" | ||
| 50 | #include "clock.h" | ||
| 51 | #include "pm.h" | ||
| 52 | |||
| 53 | #ifndef CONFIG_CPU_S3C2412_ONLY | ||
| 54 | void __iomem *s3c24xx_va_gpio2 = S3C24XX_VA_GPIO; | ||
| 55 | #endif | ||
| 56 | |||
| 57 | /* Initial IO mappings */ | ||
| 58 | |||
| 59 | static struct map_desc s3c2412_iodesc[] __initdata = { | ||
| 60 | IODESC_ENT(CLKPWR), | ||
| 61 | IODESC_ENT(LCD), | ||
| 62 | IODESC_ENT(TIMER), | ||
| 63 | IODESC_ENT(ADC), | ||
| 64 | IODESC_ENT(WATCHDOG), | ||
| 65 | }; | ||
| 66 | |||
| 67 | /* uart registration process */ | ||
| 68 | |||
| 69 | void __init s3c2412_init_uarts(struct s3c2410_uartcfg *cfg, int no) | ||
| 70 | { | ||
| 71 | s3c24xx_init_uartdevs("s3c2412-uart", s3c2410_uart_resources, cfg, no); | ||
| 72 | |||
| 73 | /* rename devices that are s3c2412/s3c2413 specific */ | ||
| 74 | s3c_device_sdi.name = "s3c2412-sdi"; | ||
| 75 | s3c_device_nand.name = "s3c2412-nand"; | ||
| 76 | } | ||
| 77 | |||
| 78 | /* s3c2412_map_io | ||
| 79 | * | ||
| 80 | * register the standard cpu IO areas, and any passed in from the | ||
| 81 | * machine specific initialisation. | ||
| 82 | */ | ||
| 83 | |||
| 84 | void __init s3c2412_map_io(struct map_desc *mach_desc, int mach_size) | ||
| 85 | { | ||
| 86 | /* move base of IO */ | ||
| 87 | |||
| 88 | s3c24xx_va_gpio2 = S3C24XX_VA_GPIO + 0x10; | ||
| 89 | |||
| 90 | /* register our io-tables */ | ||
| 91 | |||
| 92 | iotable_init(s3c2412_iodesc, ARRAY_SIZE(s3c2412_iodesc)); | ||
| 93 | iotable_init(mach_desc, mach_size); | ||
| 94 | } | ||
| 95 | |||
| 96 | void __init s3c2412_init_clocks(int xtal) | ||
| 97 | { | ||
| 98 | unsigned long tmp; | ||
| 99 | unsigned long fclk; | ||
| 100 | unsigned long hclk; | ||
| 101 | unsigned long pclk; | ||
| 102 | |||
| 103 | /* now we've got our machine bits initialised, work out what | ||
| 104 | * clocks we've got */ | ||
| 105 | |||
| 106 | fclk = s3c2410_get_pll(__raw_readl(S3C2410_MPLLCON), xtal*2); | ||
| 107 | |||
| 108 | tmp = __raw_readl(S3C2410_CLKDIVN); | ||
| 109 | |||
| 110 | /* work out clock scalings */ | ||
| 111 | |||
| 112 | hclk = fclk / ((tmp & S3C2412_CLKDIVN_HDIVN_MASK) + 1); | ||
| 113 | hclk /= ((tmp & S3C2421_CLKDIVN_ARMDIVN) ? 2 : 1); | ||
| 114 | pclk = hclk / ((tmp & S3C2412_CLKDIVN_PDIVN) ? 2 : 1); | ||
| 115 | |||
| 116 | /* print brieft summary of clocks, etc */ | ||
| 117 | |||
| 118 | printk("S3C2412: core %ld.%03ld MHz, memory %ld.%03ld MHz, peripheral %ld.%03ld MHz\n", | ||
| 119 | print_mhz(fclk), print_mhz(hclk), print_mhz(pclk)); | ||
| 120 | |||
| 121 | /* initialise the clocks here, to allow other things like the | ||
| 122 | * console to use them | ||
| 123 | */ | ||
| 124 | |||
| 125 | s3c24xx_setup_clocks(xtal, fclk, hclk, pclk); | ||
| 126 | s3c2412_baseclk_add(); | ||
| 127 | } | ||
| 128 | |||
| 129 | /* need to register class before we actually register the device, and | ||
| 130 | * we also need to ensure that it has been initialised before any of the | ||
| 131 | * drivers even try to use it (even if not on an s3c2412 based system) | ||
| 132 | * as a driver which may support both 2410 and 2440 may try and use it. | ||
| 133 | */ | ||
| 134 | |||
| 135 | #ifdef CONFIG_PM | ||
| 136 | static struct sleep_save s3c2412_sleep[] = { | ||
| 137 | SAVE_ITEM(S3C2412_DSC0), | ||
| 138 | SAVE_ITEM(S3C2412_DSC1), | ||
| 139 | SAVE_ITEM(S3C2413_GPJDAT), | ||
| 140 | SAVE_ITEM(S3C2413_GPJCON), | ||
| 141 | SAVE_ITEM(S3C2413_GPJUP), | ||
| 142 | |||
| 143 | /* save the sleep configuration anyway, just in case these | ||
| 144 | * get damaged during wakeup */ | ||
| 145 | |||
| 146 | SAVE_ITEM(S3C2412_GPBSLPCON), | ||
| 147 | SAVE_ITEM(S3C2412_GPCSLPCON), | ||
| 148 | SAVE_ITEM(S3C2412_GPDSLPCON), | ||
| 149 | SAVE_ITEM(S3C2412_GPESLPCON), | ||
| 150 | SAVE_ITEM(S3C2412_GPFSLPCON), | ||
| 151 | SAVE_ITEM(S3C2412_GPGSLPCON), | ||
| 152 | SAVE_ITEM(S3C2412_GPHSLPCON), | ||
| 153 | SAVE_ITEM(S3C2413_GPJSLPCON), | ||
| 154 | }; | ||
| 155 | |||
| 156 | static int s3c2412_suspend(struct sys_device *dev, pm_message_t state) | ||
| 157 | { | ||
| 158 | s3c2410_pm_do_save(s3c2412_sleep, ARRAY_SIZE(s3c2412_sleep)); | ||
| 159 | return 0; | ||
| 160 | } | ||
| 161 | |||
| 162 | static int s3c2412_resume(struct sys_device *dev) | ||
| 163 | { | ||
| 164 | s3c2410_pm_do_restore(s3c2412_sleep, ARRAY_SIZE(s3c2412_sleep)); | ||
| 165 | return 0; | ||
| 166 | } | ||
| 167 | |||
| 168 | #else | ||
| 169 | #define s3c2412_suspend NULL | ||
| 170 | #define s3c2412_resume NULL | ||
| 171 | #endif | ||
| 172 | |||
| 173 | struct sysdev_class s3c2412_sysclass = { | ||
| 174 | set_kset_name("s3c2412-core"), | ||
| 175 | .suspend = s3c2412_suspend, | ||
| 176 | .resume = s3c2412_resume | ||
| 177 | }; | ||
| 178 | |||
| 179 | static int __init s3c2412_core_init(void) | ||
| 180 | { | ||
| 181 | return sysdev_class_register(&s3c2412_sysclass); | ||
| 182 | } | ||
| 183 | |||
| 184 | core_initcall(s3c2412_core_init); | ||
| 185 | |||
| 186 | static struct sys_device s3c2412_sysdev = { | ||
| 187 | .cls = &s3c2412_sysclass, | ||
| 188 | }; | ||
| 189 | |||
| 190 | int __init s3c2412_init(void) | ||
| 191 | { | ||
| 192 | printk("S3C2412: Initialising architecture\n"); | ||
| 193 | |||
| 194 | return sysdev_register(&s3c2412_sysdev); | ||
| 195 | } | ||
diff --git a/arch/arm/mach-s3c2410/s3c2412.h b/arch/arm/mach-s3c2410/s3c2412.h new file mode 100644 index 000000000000..c6e56032a6e7 --- /dev/null +++ b/arch/arm/mach-s3c2410/s3c2412.h | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | /* arch/arm/mach-s3c2410/s3c2412.h | ||
| 2 | * | ||
| 3 | * Copyright (c) 2006 Simtec Electronics | ||
| 4 | * Ben Dooks <ben@simtec.co.uk> | ||
| 5 | * | ||
| 6 | * Header file for s3c2412 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 | #ifdef CONFIG_CPU_S3C2412 | ||
| 14 | |||
| 15 | extern int s3c2412_init(void); | ||
| 16 | |||
| 17 | extern void s3c2412_map_io(struct map_desc *mach_desc, int size); | ||
| 18 | |||
| 19 | extern void s3c2412_init_uarts(struct s3c2410_uartcfg *cfg, int no); | ||
| 20 | |||
| 21 | extern void s3c2412_init_clocks(int xtal); | ||
| 22 | |||
| 23 | extern int s3c2412_baseclk_add(void); | ||
| 24 | #else | ||
| 25 | #define s3c2412_init_clocks NULL | ||
| 26 | #define s3c2412_init_uarts NULL | ||
| 27 | #define s3c2412_map_io NULL | ||
| 28 | #define s3c2412_init NULL | ||
| 29 | #endif | ||
diff --git a/include/asm-arm/arch-s3c2410/debug-macro.S b/include/asm-arm/arch-s3c2410/debug-macro.S index 5f8223e700d3..b7d15d125458 100644 --- a/include/asm-arm/arch-s3c2410/debug-macro.S +++ b/include/asm-arm/arch-s3c2410/debug-macro.S | |||
| @@ -33,7 +33,7 @@ | |||
| 33 | .endm | 33 | .endm |
| 34 | 34 | ||
| 35 | .macro senduart,rd,rx | 35 | .macro senduart,rd,rx |
| 36 | str \rd, [\rx, # S3C2410_UTXH ] | 36 | strb \rd, [\rx, # S3C2410_UTXH ] |
| 37 | .endm | 37 | .endm |
| 38 | 38 | ||
| 39 | .macro busyuart, rd, rx | 39 | .macro busyuart, rd, rx |
| @@ -42,6 +42,12 @@ | |||
| 42 | beq 1001f @ | 42 | beq 1001f @ |
| 43 | @ FIFO enabled... | 43 | @ FIFO enabled... |
| 44 | 1003: | 44 | 1003: |
| 45 | @ check for arm920 vs arm926. currently assume all arm926 | ||
| 46 | @ devices have an 64 byte FIFO identical to the s3c2440 | ||
| 47 | mrc p15, 0, \rd, c0, c0 | ||
| 48 | and \rd, \rd, #0xff0 | ||
| 49 | teq \rd, #0x260 | ||
| 50 | beq 1004f | ||
| 45 | mrc p15, 0, \rd, c1, c0 | 51 | mrc p15, 0, \rd, c1, c0 |
| 46 | tst \rd, #1 | 52 | tst \rd, #1 |
| 47 | addeq \rd, \rx, #(S3C24XX_PA_GPIO - S3C24XX_PA_UART) | 53 | addeq \rd, \rx, #(S3C24XX_PA_GPIO - S3C24XX_PA_UART) |
| @@ -50,7 +56,7 @@ | |||
| 50 | ldr \rd, [ \rd, # S3C2410_GSTATUS1 - S3C2410_GPIOREG(0) ] | 56 | ldr \rd, [ \rd, # S3C2410_GSTATUS1 - S3C2410_GPIOREG(0) ] |
| 51 | and \rd, \rd, #0x00ff0000 | 57 | and \rd, \rd, #0x00ff0000 |
| 52 | teq \rd, #0x00440000 @ is it 2440? | 58 | teq \rd, #0x00440000 @ is it 2440? |
| 53 | 59 | 1004: | |
| 54 | ldr \rd, [ \rx, # S3C2410_UFSTAT ] | 60 | ldr \rd, [ \rx, # S3C2410_UFSTAT ] |
| 55 | moveq \rd, \rd, lsr #SHIFT_2440TXF | 61 | moveq \rd, \rd, lsr #SHIFT_2440TXF |
| 56 | tst \rd, #S3C2410_UFSTAT_TXFULL | 62 | tst \rd, #S3C2410_UFSTAT_TXFULL |
diff --git a/include/asm-arm/arch-s3c2410/map.h b/include/asm-arm/arch-s3c2410/map.h index 5e4c8c37bc66..fae2766ff32b 100644 --- a/include/asm-arm/arch-s3c2410/map.h +++ b/include/asm-arm/arch-s3c2410/map.h | |||
| @@ -236,4 +236,20 @@ | |||
| 236 | #define S3C24XX_PA_SPI S3C2410_PA_SPI | 236 | #define S3C24XX_PA_SPI S3C2410_PA_SPI |
| 237 | #endif | 237 | #endif |
| 238 | 238 | ||
| 239 | /* deal with the registers that move under the 2412/2413 */ | ||
| 240 | |||
| 241 | #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413) | ||
| 242 | #ifndef __ASSEMBLY__ | ||
| 243 | extern void __iomem *s3c24xx_va_gpio2; | ||
| 244 | #endif | ||
| 245 | #ifdef CONFIG_CPU_S3C2412_ONLY | ||
| 246 | #define S3C24XX_VA_GPIO2 (S3C24XX_VA_GPIO + 0x10) | ||
| 247 | #else | ||
| 248 | #define S3C24XX_VA_GPIO2 s3c24xx_va_gpio2 | ||
| 249 | #endif | ||
| 250 | #else | ||
| 251 | #define s3c24xx_va_gpio2 S3C24XX_VA_GPIO | ||
| 252 | #define S3C24XX_VA_GPIO2 S3C24XX_VA_GPIO | ||
| 253 | #endif | ||
| 254 | |||
| 239 | #endif /* __ASM_ARCH_MAP_H */ | 255 | #endif /* __ASM_ARCH_MAP_H */ |
diff --git a/include/asm-arm/arch-s3c2410/regs-dsc.h b/include/asm-arm/arch-s3c2410/regs-dsc.h index ba13a2c9e547..84aca61cbaa3 100644 --- a/include/asm-arm/arch-s3c2410/regs-dsc.h +++ b/include/asm-arm/arch-s3c2410/regs-dsc.h | |||
| @@ -23,6 +23,9 @@ | |||
| 23 | #define S3C2440_DSC0 S3C2410_GPIOREG(0xc4) | 23 | #define S3C2440_DSC0 S3C2410_GPIOREG(0xc4) |
| 24 | #define S3C2440_DSC1 S3C2410_GPIOREG(0xc8) | 24 | #define S3C2440_DSC1 S3C2410_GPIOREG(0xc8) |
| 25 | 25 | ||
| 26 | #define S3C2412_DSC0 S3C2410_GPIOREG(0xdc) | ||
| 27 | #define S3C2412_DSC1 S3C2410_GPIOREG(0xe0) | ||
| 28 | |||
| 26 | #define S3C2440_SELECT_DSC0 (0) | 29 | #define S3C2440_SELECT_DSC0 (0) |
| 27 | #define S3C2440_SELECT_DSC1 (1<<31) | 30 | #define S3C2440_SELECT_DSC1 (1<<31) |
| 28 | 31 | ||
diff --git a/include/asm-arm/arch-s3c2410/regs-gpio.h b/include/asm-arm/arch-s3c2410/regs-gpio.h index 5f10334f06bf..6dd17f0f84e0 100644 --- a/include/asm-arm/arch-s3c2410/regs-gpio.h +++ b/include/asm-arm/arch-s3c2410/regs-gpio.h | |||
| @@ -45,7 +45,7 @@ | |||
| 45 | #define S3C24XX_MISCCR S3C2400_MISCCR | 45 | #define S3C24XX_MISCCR S3C2400_MISCCR |
| 46 | #else | 46 | #else |
| 47 | #define S3C24XX_GPIO_BASE(x) S3C2410_GPIO_BASE(x) | 47 | #define S3C24XX_GPIO_BASE(x) S3C2410_GPIO_BASE(x) |
| 48 | #define S3C24XX_MISCCR S3C2410_MISCCR | 48 | #define S3C24XX_MISCCR S3C24XX_GPIOREG2(0x80) |
| 49 | #endif /* CONFIG_CPU_S3C2400 */ | 49 | #endif /* CONFIG_CPU_S3C2400 */ |
| 50 | 50 | ||
| 51 | 51 | ||
| @@ -73,9 +73,15 @@ | |||
| 73 | #define S3C2410_GPIO_SFN2 (0xFFFFFFF2) /* not available on A */ | 73 | #define S3C2410_GPIO_SFN2 (0xFFFFFFF2) /* not available on A */ |
| 74 | #define S3C2410_GPIO_SFN3 (0xFFFFFFF3) /* not available on A */ | 74 | #define S3C2410_GPIO_SFN3 (0xFFFFFFF3) /* not available on A */ |
| 75 | 75 | ||
| 76 | /* configure GPIO ports A..G */ | 76 | /* register address for the GPIO registers. |
| 77 | * S3C24XX_GPIOREG2 is for the second set of registers in the | ||
| 78 | * GPIO which move between s3c2410 and s3c2412 type systems */ | ||
| 77 | 79 | ||
| 78 | #define S3C2410_GPIOREG(x) ((x) + S3C24XX_VA_GPIO) | 80 | #define S3C2410_GPIOREG(x) ((x) + S3C24XX_VA_GPIO) |
| 81 | #define S3C24XX_GPIOREG2(x) ((x) + S3C24XX_VA_GPIO2) | ||
| 82 | |||
| 83 | |||
| 84 | /* configure GPIO ports A..G */ | ||
| 79 | 85 | ||
| 80 | /* port A - S3C2410: 22bits, zero in bit X makes pin X output | 86 | /* port A - S3C2410: 22bits, zero in bit X makes pin X output |
| 81 | * S3C2400: 18bits, zero in bit X makes pin X output | 87 | * S3C2400: 18bits, zero in bit X makes pin X output |
| @@ -953,11 +959,18 @@ | |||
| 953 | #define S3C2410_GPH10_OUTP (0x01 << 20) | 959 | #define S3C2410_GPH10_OUTP (0x01 << 20) |
| 954 | #define S3C2410_GPH10_CLKOUT1 (0x02 << 20) | 960 | #define S3C2410_GPH10_CLKOUT1 (0x02 << 20) |
| 955 | 961 | ||
| 962 | /* The S3C2412 and S3C2413 move the GPJ register set to after | ||
| 963 | * GPH, which means all registers after 0x80 are now offset by 0x10 | ||
| 964 | * for the 2412/2413 from the 2410/2440/2442 | ||
| 965 | */ | ||
| 966 | |||
| 956 | /* miscellaneous control */ | 967 | /* miscellaneous control */ |
| 957 | #define S3C2400_MISCCR S3C2410_GPIOREG(0x54) | 968 | #define S3C2400_MISCCR S3C2410_GPIOREG(0x54) |
| 958 | #define S3C2410_MISCCR S3C2410_GPIOREG(0x80) | 969 | #define S3C2410_MISCCR S3C2410_GPIOREG(0x80) |
| 959 | #define S3C2410_DCLKCON S3C2410_GPIOREG(0x84) | 970 | #define S3C2410_DCLKCON S3C2410_GPIOREG(0x84) |
| 960 | 971 | ||
| 972 | #define S3C24XX_DCLKCON S3C24XX_GPIOREG2(0x84) | ||
| 973 | |||
| 961 | /* see clock.h for dclk definitions */ | 974 | /* see clock.h for dclk definitions */ |
| 962 | 975 | ||
| 963 | /* pullup control on databus */ | 976 | /* pullup control on databus */ |
| @@ -985,6 +998,8 @@ | |||
| 985 | #define S3C2410_MISCCR_CLK0_DCLK0 (5<<4) | 998 | #define S3C2410_MISCCR_CLK0_DCLK0 (5<<4) |
| 986 | #define S3C2410_MISCCR_CLK0_MASK (7<<4) | 999 | #define S3C2410_MISCCR_CLK0_MASK (7<<4) |
| 987 | 1000 | ||
| 1001 | #define S3C2412_MISCCR_CLK0_RTC (2<<4) | ||
| 1002 | |||
| 988 | #define S3C2410_MISCCR_CLK1_MPLL (0<<8) | 1003 | #define S3C2410_MISCCR_CLK1_MPLL (0<<8) |
| 989 | #define S3C2410_MISCCR_CLK1_UPLL (1<<8) | 1004 | #define S3C2410_MISCCR_CLK1_UPLL (1<<8) |
| 990 | #define S3C2410_MISCCR_CLK1_FCLK (2<<8) | 1005 | #define S3C2410_MISCCR_CLK1_FCLK (2<<8) |
| @@ -993,6 +1008,8 @@ | |||
| 993 | #define S3C2410_MISCCR_CLK1_DCLK1 (5<<8) | 1008 | #define S3C2410_MISCCR_CLK1_DCLK1 (5<<8) |
| 994 | #define S3C2410_MISCCR_CLK1_MASK (7<<8) | 1009 | #define S3C2410_MISCCR_CLK1_MASK (7<<8) |
| 995 | 1010 | ||
| 1011 | #define S3C2412_MISCCR_CLK1_CLKsrc (0<<8) | ||
| 1012 | |||
| 996 | #define S3C2410_MISCCR_USBSUSPND0 (1<<12) | 1013 | #define S3C2410_MISCCR_USBSUSPND0 (1<<12) |
| 997 | #define S3C2410_MISCCR_USBSUSPND1 (1<<13) | 1014 | #define S3C2410_MISCCR_USBSUSPND1 (1<<13) |
| 998 | 1015 | ||
| @@ -1000,7 +1017,7 @@ | |||
| 1000 | 1017 | ||
| 1001 | #define S3C2410_MISCCR_nEN_SCLK0 (1<<17) | 1018 | #define S3C2410_MISCCR_nEN_SCLK0 (1<<17) |
| 1002 | #define S3C2410_MISCCR_nEN_SCLK1 (1<<18) | 1019 | #define S3C2410_MISCCR_nEN_SCLK1 (1<<18) |
| 1003 | #define S3C2410_MISCCR_nEN_SCLKE (1<<19) | 1020 | #define S3C2410_MISCCR_nEN_SCLKE (1<<19) /* not 2412 */ |
| 1004 | #define S3C2410_MISCCR_SDSLEEP (7<<17) | 1021 | #define S3C2410_MISCCR_SDSLEEP (7<<17) |
| 1005 | 1022 | ||
| 1006 | /* external interrupt control... */ | 1023 | /* external interrupt control... */ |
| @@ -1017,6 +1034,10 @@ | |||
| 1017 | #define S3C2410_EXTINT1 S3C2410_GPIOREG(0x8C) | 1034 | #define S3C2410_EXTINT1 S3C2410_GPIOREG(0x8C) |
| 1018 | #define S3C2410_EXTINT2 S3C2410_GPIOREG(0x90) | 1035 | #define S3C2410_EXTINT2 S3C2410_GPIOREG(0x90) |
| 1019 | 1036 | ||
| 1037 | #define S3C24XX_EXTINT0 S3C24XX_GPIOREG2(0x88) | ||
| 1038 | #define S3C24XX_EXTINT1 S3C24XX_GPIOREG2(0x8C) | ||
| 1039 | #define S3C24XX_EXTINT2 S3C24XX_GPIOREG2(0x90) | ||
| 1040 | |||
| 1020 | /* values for S3C2410_EXTINT0/1/2 */ | 1041 | /* values for S3C2410_EXTINT0/1/2 */ |
| 1021 | #define S3C2410_EXTINT_LOWLEV (0x00) | 1042 | #define S3C2410_EXTINT_LOWLEV (0x00) |
| 1022 | #define S3C2410_EXTINT_HILEV (0x01) | 1043 | #define S3C2410_EXTINT_HILEV (0x01) |
| @@ -1030,6 +1051,11 @@ | |||
| 1030 | #define S3C2410_EINFLT2 S3C2410_GPIOREG(0x9C) | 1051 | #define S3C2410_EINFLT2 S3C2410_GPIOREG(0x9C) |
| 1031 | #define S3C2410_EINFLT3 S3C2410_GPIOREG(0xA0) | 1052 | #define S3C2410_EINFLT3 S3C2410_GPIOREG(0xA0) |
| 1032 | 1053 | ||
| 1054 | #define S3C24XX_EINFLT0 S3C24XX_GPIOREG2(0x94) | ||
| 1055 | #define S3C24XX_EINFLT1 S3C24XX_GPIOREG2(0x98) | ||
| 1056 | #define S3C24XX_EINFLT2 S3C24XX_GPIOREG2(0x9C) | ||
| 1057 | #define S3C24XX_EINFLT3 S3C24XX_GPIOREG2(0xA0) | ||
| 1058 | |||
| 1033 | /* values for interrupt filtering */ | 1059 | /* values for interrupt filtering */ |
| 1034 | #define S3C2410_EINTFLT_PCLK (0x00) | 1060 | #define S3C2410_EINTFLT_PCLK (0x00) |
| 1035 | #define S3C2410_EINTFLT_EXTCLK (1<<7) | 1061 | #define S3C2410_EINTFLT_EXTCLK (1<<7) |
| @@ -1039,6 +1065,7 @@ | |||
| 1039 | 1065 | ||
| 1040 | /* GSTATUS have miscellaneous information in them | 1066 | /* GSTATUS have miscellaneous information in them |
| 1041 | * | 1067 | * |
| 1068 | * These move between s3c2410 and s3c2412 style systems. | ||
| 1042 | */ | 1069 | */ |
| 1043 | 1070 | ||
| 1044 | #define S3C2410_GSTATUS0 S3C2410_GPIOREG(0x0AC) | 1071 | #define S3C2410_GSTATUS0 S3C2410_GPIOREG(0x0AC) |
| @@ -1047,6 +1074,18 @@ | |||
| 1047 | #define S3C2410_GSTATUS3 S3C2410_GPIOREG(0x0B8) | 1074 | #define S3C2410_GSTATUS3 S3C2410_GPIOREG(0x0B8) |
| 1048 | #define S3C2410_GSTATUS4 S3C2410_GPIOREG(0x0BC) | 1075 | #define S3C2410_GSTATUS4 S3C2410_GPIOREG(0x0BC) |
| 1049 | 1076 | ||
| 1077 | #define S3C2412_GSTATUS0 S3C2410_GPIOREG(0x0BC) | ||
| 1078 | #define S3C2412_GSTATUS1 S3C2410_GPIOREG(0x0C0) | ||
| 1079 | #define S3C2412_GSTATUS2 S3C2410_GPIOREG(0x0C4) | ||
| 1080 | #define S3C2412_GSTATUS3 S3C2410_GPIOREG(0x0C8) | ||
| 1081 | #define S3C2412_GSTATUS4 S3C2410_GPIOREG(0x0CC) | ||
| 1082 | |||
| 1083 | #define S3C24XX_GSTATUS0 S3C24XX_GPIOREG2(0x0AC) | ||
| 1084 | #define S3C24XX_GSTATUS1 S3C24XX_GPIOREG2(0x0B0) | ||
| 1085 | #define S3C24XX_GSTATUS2 S3C24XX_GPIOREG2(0x0B4) | ||
| 1086 | #define S3C24XX_GSTATUS3 S3C24XX_GPIOREG2(0x0B8) | ||
| 1087 | #define S3C24XX_GSTATUS4 S3C24XX_GPIOREG2(0x0BC) | ||
| 1088 | |||
| 1050 | #define S3C2410_GSTATUS0_nWAIT (1<<3) | 1089 | #define S3C2410_GSTATUS0_nWAIT (1<<3) |
| 1051 | #define S3C2410_GSTATUS0_NCON (1<<2) | 1090 | #define S3C2410_GSTATUS0_NCON (1<<2) |
| 1052 | #define S3C2410_GSTATUS0_RnB (1<<1) | 1091 | #define S3C2410_GSTATUS0_RnB (1<<1) |
| @@ -1054,6 +1093,7 @@ | |||
| 1054 | 1093 | ||
| 1055 | #define S3C2410_GSTATUS1_IDMASK (0xffff0000) | 1094 | #define S3C2410_GSTATUS1_IDMASK (0xffff0000) |
| 1056 | #define S3C2410_GSTATUS1_2410 (0x32410000) | 1095 | #define S3C2410_GSTATUS1_2410 (0x32410000) |
| 1096 | #define S3C2410_GSTATUS1_2412 (0x32412001) | ||
| 1057 | #define S3C2410_GSTATUS1_2440 (0x32440000) | 1097 | #define S3C2410_GSTATUS1_2440 (0x32440000) |
| 1058 | #define S3C2410_GSTATUS1_2442 (0x32440aaa) | 1098 | #define S3C2410_GSTATUS1_2442 (0x32440aaa) |
| 1059 | 1099 | ||
| @@ -1077,5 +1117,22 @@ | |||
| 1077 | #define S3C2400_OPENCR_OPC_MOSIDIS (0<<5) | 1117 | #define S3C2400_OPENCR_OPC_MOSIDIS (0<<5) |
| 1078 | #define S3C2400_OPENCR_OPC_MOSIEN (1<<5) | 1118 | #define S3C2400_OPENCR_OPC_MOSIEN (1<<5) |
| 1079 | 1119 | ||
| 1120 | /* 2412/2413 sleep configuration registers */ | ||
| 1121 | |||
| 1122 | #define S3C2412_GPBSLPCON S3C2410_GPIOREG(0x1C) | ||
| 1123 | #define S3C2412_GPCSLPCON S3C2410_GPIOREG(0x2C) | ||
| 1124 | #define S3C2412_GPDSLPCON S3C2410_GPIOREG(0x3C) | ||
| 1125 | #define S3C2412_GPESLPCON S3C2410_GPIOREG(0x4C) | ||
| 1126 | #define S3C2412_GPFSLPCON S3C2410_GPIOREG(0x5C) | ||
| 1127 | #define S3C2412_GPGSLPCON S3C2410_GPIOREG(0x6C) | ||
| 1128 | #define S3C2412_GPHSLPCON S3C2410_GPIOREG(0x7C) | ||
| 1129 | |||
| 1130 | /* definitions for each pin bit */ | ||
| 1131 | #define S3C2412_SLPCON_LOW(x) ( 0x00 << ((x) * 2)) | ||
| 1132 | #define S3C2412_SLPCON_HI(x) ( 0x01 << ((x) * 2)) | ||
| 1133 | #define S3C2412_SLPCON_IN(x) ( 0x02 << ((x) * 2)) | ||
| 1134 | #define S3C2412_SLPCON_PDWN(x) ( 0x03 << ((x) * 2)) | ||
| 1135 | #define S3C2412_SLPCON_MASK(x) ( 0x03 << ((x) * 2)) | ||
| 1136 | |||
| 1080 | #endif /* __ASM_ARCH_REGS_GPIO_H */ | 1137 | #endif /* __ASM_ARCH_REGS_GPIO_H */ |
| 1081 | 1138 | ||
diff --git a/include/asm-arm/arch-s3c2410/regs-gpioj.h b/include/asm-arm/arch-s3c2410/regs-gpioj.h index 3ad2324acc39..18edae50d0b8 100644 --- a/include/asm-arm/arch-s3c2410/regs-gpioj.h +++ b/include/asm-arm/arch-s3c2410/regs-gpioj.h | |||
| @@ -32,6 +32,11 @@ | |||
| 32 | #define S3C2440_GPJDAT S3C2410_GPIOREG(0xd4) | 32 | #define S3C2440_GPJDAT S3C2410_GPIOREG(0xd4) |
| 33 | #define S3C2440_GPJUP S3C2410_GPIOREG(0xd8) | 33 | #define S3C2440_GPJUP S3C2410_GPIOREG(0xd8) |
| 34 | 34 | ||
| 35 | #define S3C2413_GPJCON S3C2410_GPIOREG(0x80) | ||
| 36 | #define S3C2413_GPJDAT S3C2410_GPIOREG(0x84) | ||
| 37 | #define S3C2413_GPJUP S3C2410_GPIOREG(0x88) | ||
| 38 | #define S3C2413_GPJSLPCON S3C2410_GPIOREG(0x8C) | ||
| 39 | |||
| 35 | #define S3C2440_GPJ0 S3C2410_GPIONO(S3C2440_GPIO_BANKJ, 0) | 40 | #define S3C2440_GPJ0 S3C2410_GPIONO(S3C2440_GPIO_BANKJ, 0) |
| 36 | #define S3C2440_GPJ0_INP (0x00 << 0) | 41 | #define S3C2440_GPJ0_INP (0x00 << 0) |
| 37 | #define S3C2440_GPJ0_OUTP (0x01 << 0) | 42 | #define S3C2440_GPJ0_OUTP (0x01 << 0) |
