summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/kontron-samx6i/lowlevel.c
blob: 9742469e201bc6935d3670543ee1cd10d30a77ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * Copyright 2018 (C) Pengutronix, Michael Grzeschik <mgr@pengutronix.de>
 *
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */

#include <debug_ll.h>
#include <common.h>
#include <io.h>
#include <asm/barebox-arm-head.h>
#include <asm/barebox-arm.h>
#include <asm/sections.h>
#include <asm/cache.h>
#include <asm/mmu.h>
#include <mach/imx6.h>
#include <mach/esdctl.h>

#include "mem.h"

static inline void setup_uart(void)
{
	void __iomem *iomuxbase = (void *)MX6_IOMUXC_BASE_ADDR;

	writel(0x4, iomuxbase + 0x016c);

	imx6_ungate_all_peripherals();
	imx6_uart_setup_ll();

	putc_ll('>');
}

static void __noreturn start_imx6_samx6i_common(void *fdt_blob_fixed_offset)
{
	void *fdt;
	resource_size_t size = 0;

	size = samx6i_get_size();

	imx6_cpu_lowlevel_init();
	arm_setup_stack(0x00920000 - 8);

	if (IS_ENABLED(CONFIG_DEBUG_LL))
		setup_uart();

	fdt = fdt_blob_fixed_offset + get_runtime_offset();

	barebox_arm_entry(0x10000000, size, fdt);
}

extern char __dtb_imx6dl_samx6i_start[];
extern char __dtb_imx6q_samx6i_start[];

ENTRY_FUNCTION(start_imx6q_samx6i, r0, r1, r2)
{
	start_imx6_samx6i_common(__dtb_imx6q_samx6i_start);
}

ENTRY_FUNCTION(start_imx6dl_samx6i, r0, r1, r2)
{
	start_imx6_samx6i_common(__dtb_imx6dl_samx6i_start);
}