ivybridge.c 250 B

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