2019-06-01 08:08:37 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2013-06-10 16:20:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Texas Instruments, Inc.
|
|
|
|
* Cyril Chemparathy <cyril@ti.com>
|
|
|
|
* Santosh Shilimkar <santosh.shillimkar@ti.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __KEYSTONE_H__
|
|
|
|
#define __KEYSTONE_H__
|
|
|
|
|
2013-06-21 22:54:47 +00:00
|
|
|
#define KEYSTONE_MON_CPU_UP_IDX 0x00
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
|
2015-11-15 01:39:53 +00:00
|
|
|
extern const struct smp_operations keystone_smp_ops;
|
2013-06-10 16:20:17 +00:00
|
|
|
extern void secondary_startup(void);
|
2013-06-21 22:54:47 +00:00
|
|
|
extern u32 keystone_cpu_smc(u32 command, u32 cpu, u32 addr);
|
2013-11-23 22:08:03 +00:00
|
|
|
extern int keystone_pm_runtime_init(void);
|
2013-06-10 16:20:17 +00:00
|
|
|
|
2013-06-21 22:54:47 +00:00
|
|
|
#endif /* __ASSEMBLER__ */
|
2013-06-10 16:20:17 +00:00
|
|
|
#endif /* __KEYSTONE_H__ */
|