ivybridge.c 253 B

12345678910111213141516
  1. /*
  2. * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <asm/post.h>
  8. #include <asm/processor.h>
  9. int arch_cpu_init(void)
  10. {
  11. post_code(POST_CPU_INIT);
  12. return x86_cpu_init_f();
  13. }