setup.c (8f3a2b4a96dc014e99e1df327db1450fdbbd5e15) setup.c (6262f661ff5d7d6a2613b95d0b7820c60b46b0b5)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
4 * Chen Liqin <liqin.chen@sunplusct.com>
5 * Lennox Wu <lennox.wu@sunplusct.com>
6 * Copyright (C) 2012 Regents of the University of California
7 */
8

--- 5 unchanged lines hidden (view full) ---

14#include <linux/screen_info.h>
15#include <linux/of_fdt.h>
16#include <linux/of_platform.h>
17#include <linux/sched/task.h>
18#include <linux/swiotlb.h>
19#include <linux/smp.h>
20
21#include <asm/cpu_ops.h>
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
4 * Chen Liqin <liqin.chen@sunplusct.com>
5 * Lennox Wu <lennox.wu@sunplusct.com>
6 * Copyright (C) 2012 Regents of the University of California
7 */
8

--- 5 unchanged lines hidden (view full) ---

14#include <linux/screen_info.h>
15#include <linux/of_fdt.h>
16#include <linux/of_platform.h>
17#include <linux/sched/task.h>
18#include <linux/swiotlb.h>
19#include <linux/smp.h>
20
21#include <asm/cpu_ops.h>
22#include <asm/early_ioremap.h>
22#include <asm/setup.h>
23#include <asm/sections.h>
24#include <asm/sbi.h>
25#include <asm/tlbflush.h>
26#include <asm/thread_info.h>
27#include <asm/kasan.h>
28
29#include "head.h"

--- 36 unchanged lines hidden (view full) ---

66 parse_dtb();
67 init_mm.start_code = (unsigned long) _stext;
68 init_mm.end_code = (unsigned long) _etext;
69 init_mm.end_data = (unsigned long) _edata;
70 init_mm.brk = (unsigned long) _end;
71
72 *cmdline_p = boot_command_line;
73
23#include <asm/setup.h>
24#include <asm/sections.h>
25#include <asm/sbi.h>
26#include <asm/tlbflush.h>
27#include <asm/thread_info.h>
28#include <asm/kasan.h>
29
30#include "head.h"

--- 36 unchanged lines hidden (view full) ---

67 parse_dtb();
68 init_mm.start_code = (unsigned long) _stext;
69 init_mm.end_code = (unsigned long) _etext;
70 init_mm.end_data = (unsigned long) _edata;
71 init_mm.brk = (unsigned long) _end;
72
73 *cmdline_p = boot_command_line;
74
75 early_ioremap_setup();
74 parse_early_param();
75
76 setup_bootmem();
77 paging_init();
78#if IS_ENABLED(CONFIG_BUILTIN_DTB)
79 unflatten_and_copy_device_tree();
80#else
81 if (early_init_dt_verify(__va(dtb_early_pa)))

--- 38 unchanged lines hidden ---
76 parse_early_param();
77
78 setup_bootmem();
79 paging_init();
80#if IS_ENABLED(CONFIG_BUILTIN_DTB)
81 unflatten_and_copy_device_tree();
82#else
83 if (early_init_dt_verify(__va(dtb_early_pa)))

--- 38 unchanged lines hidden ---