keystone.h 538 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright 2013 Texas Instruments, Inc.
  4. * Cyril Chemparathy <[email protected]>
  5. * Santosh Shilimkar <[email protected]>
  6. */
  7. #ifndef __KEYSTONE_H__
  8. #define __KEYSTONE_H__
  9. #define KEYSTONE_MON_CPU_UP_IDX 0x00
  10. #ifndef __ASSEMBLER__
  11. extern const struct smp_operations keystone_smp_ops;
  12. extern void secondary_startup(void);
  13. extern u32 keystone_cpu_smc(u32 command, u32 cpu, u32 addr);
  14. extern int keystone_pm_runtime_init(void);
  15. #endif /* __ASSEMBLER__ */
  16. #endif /* __KEYSTONE_H__ */