cpu.c 1.3 KB
Newer Older
S
Simon Glass 已提交
1 2
/*
 * Copyright (c) 2011 The Chromium OS Authors.
3
 * SPDX-License-Identifier:	GPL-2.0+
S
Simon Glass 已提交
4 5 6
 */

#include <common.h>
7
#include <dm/root.h>
S
Simon Glass 已提交
8
#include <os.h>
9
#include <asm/state.h>
S
Simon Glass 已提交
10 11 12

DECLARE_GLOBAL_DATA_PTR;

13
void reset_cpu(ulong ignored)
S
Simon Glass 已提交
14
{
15 16 17
	if (state_uninit())
		os_exit(2);

18 19 20
	if (dm_uninit())
		os_exit(2);

S
Simon Glass 已提交
21 22
	/* This is considered normal termination for now */
	os_exit(0);
23 24 25 26 27 28
}

int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
	reset_cpu(0);

S
Simon Glass 已提交
29 30 31 32 33 34
	return 0;
}

/* delay x useconds */
void __udelay(unsigned long usec)
{
M
Matthias Weisser 已提交
35
	os_usleep(usec);
S
Simon Glass 已提交
36 37
}

S
Simon Glass 已提交
38
unsigned long __attribute__((no_instrument_function)) timer_get_us(void)
S
Simon Glass 已提交
39
{
M
Matthias Weisser 已提交
40
	return os_get_nsec() / 1000;
S
Simon Glass 已提交
41 42 43 44
}

int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
{
45 46 47 48 49 50 51 52
	if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
		bootstage_mark(BOOTSTAGE_ID_RUN_OS);
		printf("## Transferring control to Linux (at address %08lx)...\n",
		       images->ep);
		reset_cpu(0);
	}

	return 0;
S
Simon Glass 已提交
53 54 55 56 57 58 59 60 61
}

int cleanup_before_linux(void)
{
	return 0;
}

void *map_physmem(phys_addr_t paddr, unsigned long len, unsigned long flags)
{
62
	return (void *)(gd->arch.ram_buf + paddr);
S
Simon Glass 已提交
63 64
}

65
phys_addr_t map_to_sysmem(const void *ptr)
66 67 68 69
{
	return (u8 *)ptr - gd->arch.ram_buf;
}

S
Simon Glass 已提交
70 71 72
void flush_dcache_range(unsigned long start, unsigned long stop)
{
}