early_init.S 529 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2014 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. .globl early_board_init
  7. early_board_init:
  8. /* Enable post codes to EC */
  9. #ifdef CONFIG_EARLY_POST_CROS_EC
  10. mov $0x1b, %ecx
  11. rdmsr
  12. and $0x100, %eax
  13. test %eax, %eax
  14. je 1f
  15. mov $0x8000f8f0, %eax
  16. mov $0xcf8, %dx
  17. out %eax, (%dx)
  18. mov $0xfed1c001, %eax
  19. mov $0xcfc, %dx
  20. out %eax, (%dx)
  21. mov $0xfed1f410, %esp
  22. mov (%esp), %eax
  23. and $0xfffffffb, %eax
  24. mov %eax, (%esp)
  25. 1:
  26. #endif
  27. jmp early_board_init_ret