headsmp.S 314 B

1234567891011121314
  1. #include <linux/linkage.h>
  2. #include <linux/init.h>
  3. #include "sleep.h"
  4. .section ".text.head", "ax"
  5. ENTRY(tegra_secondary_startup)
  6. bl v7_invalidate_l1
  7. /* Enable coresight */
  8. mov32 r0, 0xC5ACCE55
  9. mcr p14, 0, r0, c7, c12, 6
  10. b secondary_startup
  11. ENDPROC(tegra_secondary_startup)