1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-03 09:42:22 +02:00
Files
u-boot-megous/include/cputask.h
Ondrej Jirman ba8c26ce40 initial
2019-03-04 15:37:41 +01:00

34 lines
788 B
C
Executable File

/*
* Copyright (C) All rights reserved.
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
* Author: <wangflord@allwinnertech.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
/*
* This file contains clk functions, adapt for clk operation in boot.
*/
#ifndef __CPU_TASK_H__
#define __CPU_TASK_H__
int sunxi_secendary_cpu_task(void);
int sunxi_third_cpu_task(void);
int secondary_cpu_start(void);
int third_cpu_start(void);
int get_core_pos(void);
int sunxi_secondary_cpu_poweroff(void);
int cpu0_set_irq_stack(uint32_t sp);
#endif /* __CPU_TASK_H__ */