car.S 453 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  4. */
  5. #include <config.h>
  6. #include <asm/post.h>
  7. .globl car_init
  8. car_init:
  9. /* Save the BIST result */
  10. movl %eax, %ebp
  11. post_code(POST_CAR_START)
  12. /*
  13. * Since we know we are running inside emulator,
  14. * we can do nothing here for CAR initialization.
  15. */
  16. /* Restore the BIST result */
  17. movl %ebp, %eax
  18. post_code(POST_CAR_CPU_CACHE)
  19. jmp car_init_ret