1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (c) 2008 Simtec Electronics
4 // Ben Dooks <ben@simtec.co.uk>
5 // http://armlinux.simtec.co.uk/
7 // S3C series CPU initialisation
10 * NOTE: Code in this file is not used on S3C64xx when booting with
11 * Device Tree support.
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
17 #include <linux/ioport.h>
18 #include <linux/serial_core.h>
19 #include <linux/serial_s3c.h>
20 #include <linux/platform_device.h>
23 #include <asm/mach/arch.h>
24 #include <asm/mach/map.h>
29 static struct cpu_table
*cpu
;
31 static struct cpu_table
* __init
s3c_lookup_cpu(unsigned long idcode
,
32 struct cpu_table
*tab
,
35 for (; count
!= 0; count
--, tab
++) {
36 if ((idcode
& tab
->idmask
) == (tab
->idcode
& tab
->idmask
))
43 void __init
s3c_init_cpu(unsigned long idcode
,
44 struct cpu_table
*cputab
, unsigned int cputab_size
)
46 cpu
= s3c_lookup_cpu(idcode
, cputab
, cputab_size
);
49 printk(KERN_ERR
"Unknown CPU type 0x%08lx\n", idcode
);
50 panic("Unknown S3C24XX CPU");
53 printk("CPU %s (id 0x%08lx)\n", cpu
->name
, idcode
);
55 if (cpu
->init
== NULL
) {
56 printk(KERN_ERR
"CPU %s support not enabled\n", cpu
->name
);
57 panic("Unsupported Samsung CPU");
63 pr_err("The platform is deprecated and scheduled for removal. Please reach to the maintainers of the platform and linux-samsung-soc@vger.kernel.org if you still use it. Without such feedback, the platform will be removed after 2022.\n");
67 #if IS_ENABLED(CONFIG_SAMSUNG_ATAGS)
68 static int nr_uarts __initdata
= 0;
70 #ifdef CONFIG_SERIAL_SAMSUNG_UARTS
71 static struct s3c2410_uartcfg uart_cfgs
[CONFIG_SERIAL_SAMSUNG_UARTS
];
74 /* s3c24xx_init_uartdevs
76 * copy the specified platform data and configuration into our central
77 * set of devices, before the data is thrown away after the init process.
79 * This also fills in the array passed to the serial driver for the
80 * early initialisation of the console.
83 void __init
s3c24xx_init_uartdevs(char *name
,
84 struct s3c24xx_uart_resources
*res
,
85 struct s3c2410_uartcfg
*cfg
, int no
)
87 #ifdef CONFIG_SERIAL_SAMSUNG_UARTS
88 struct platform_device
*platdev
;
89 struct s3c2410_uartcfg
*cfgptr
= uart_cfgs
;
90 struct s3c24xx_uart_resources
*resp
;
93 memcpy(cfgptr
, cfg
, sizeof(struct s3c2410_uartcfg
) * no
);
95 for (uart
= 0; uart
< no
; uart
++, cfg
++, cfgptr
++) {
96 platdev
= s3c24xx_uart_src
[cfgptr
->hwport
];
98 resp
= res
+ cfgptr
->hwport
;
100 s3c24xx_uart_devs
[uart
] = platdev
;
102 platdev
->name
= name
;
103 platdev
->resource
= resp
->resources
;
104 platdev
->num_resources
= resp
->nr_resources
;
106 platdev
->dev
.platform_data
= cfgptr
;
113 void __init
s3c24xx_init_uarts(struct s3c2410_uartcfg
*cfg
, int no
)
118 if (cpu
->init_uarts
== NULL
&& IS_ENABLED(CONFIG_SAMSUNG_ATAGS
)) {
119 printk(KERN_ERR
"s3c24xx_init_uarts: cpu has no uart init\n");
121 (cpu
->init_uarts
)(cfg
, no
);
125 static int __init
s3c_arch_init(void)
129 /* init is only needed for ATAGS based platforms */
130 if (!IS_ENABLED(CONFIG_ATAGS
))
133 // do the correct init for cpu
136 /* Not needed when booting with device tree. */
137 if (of_have_populated_dt())
139 panic("s3c_arch_init: NULL cpu\n");
145 #if IS_ENABLED(CONFIG_SAMSUNG_ATAGS)
146 ret
= platform_add_devices(s3c24xx_uart_devs
, nr_uarts
);
151 arch_initcall(s3c_arch_init
);