som-db5800-som-6867.c 436 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2016 Stefan Roese <sr@denx.de>
  3. * Copyright (C) 2016 George McCollister <george.mccollister@gmail.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. int board_early_init_f(void)
  9. {
  10. /*
  11. * The FSP enables the BayTrail internal legacy UART (again).
  12. * Disable it again, so that the one on the EC can be used.
  13. */
  14. setup_internal_uart(0);
  15. return 0;
  16. }
  17. int arch_early_init_r(void)
  18. {
  19. return 0;
  20. }