keystone.h 695 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright 2013 Texas Instruments, Inc.
  3. * Cyril Chemparathy <cyril@ti.com>
  4. * Santosh Shilimkar <santosh.shillimkar@ti.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. */
  10. #ifndef __KEYSTONE_H__
  11. #define __KEYSTONE_H__
  12. #define KEYSTONE_MON_CPU_UP_IDX 0x00
  13. #ifndef __ASSEMBLER__
  14. extern struct smp_operations keystone_smp_ops;
  15. extern void secondary_startup(void);
  16. extern u32 keystone_cpu_smc(u32 command, u32 cpu, u32 addr);
  17. extern int keystone_pm_runtime_init(void);
  18. #endif /* __ASSEMBLER__ */
  19. #endif /* __KEYSTONE_H__ */