Lines Matching +full:booting +full:- +full:without +full:- +full:of
1 // SPDX-License-Identifier: GPL-2.0
10 * NOTE: Code in this file is not used on S3C64xx when booting with
21 #include <linux/of.h>
35 for (; count != 0; count--, tab++) { in s3c_lookup_cpu()
36 if ((idcode & tab->idmask) == (tab->idcode & tab->idmask)) in s3c_lookup_cpu()
53 printk("CPU %s (id 0x%08lx)\n", cpu->name, idcode); in s3c_init_cpu()
55 if (cpu->init == NULL) { in s3c_init_cpu()
56 printk(KERN_ERR "CPU %s support not enabled\n", cpu->name); in s3c_init_cpu()
60 if (cpu->map_io) in s3c_init_cpu()
61 cpu->map_io(); in s3c_init_cpu()
63 …l. Please reach to the maintainers of the platform and linux-samsung-soc@vger.kernel.org if you st… in s3c_init_cpu()
77 * set of devices, before the data is thrown away after the init process.
80 * early initialisation of the console.
96 platdev = s3c24xx_uart_src[cfgptr->hwport]; in s3c24xx_init_uartdevs()
98 resp = res + cfgptr->hwport; in s3c24xx_init_uartdevs()
102 platdev->name = name; in s3c24xx_init_uartdevs()
103 platdev->resource = resp->resources; in s3c24xx_init_uartdevs()
104 platdev->num_resources = resp->nr_resources; in s3c24xx_init_uartdevs()
106 platdev->dev.platform_data = cfgptr; in s3c24xx_init_uartdevs()
118 if (cpu->init_uarts == NULL && IS_ENABLED(CONFIG_SAMSUNG_ATAGS)) { in s3c24xx_init_uarts()
121 (cpu->init_uarts)(cfg, no); in s3c24xx_init_uarts()
136 /* Not needed when booting with device tree. */ in s3c_arch_init()
142 ret = (cpu->init)(); in s3c_arch_init()