board_early_init_f.c 391 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2012-2015 Panasonic Corporation
  3. * Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <mach/led.h>
  8. #include <mach/board.h>
  9. void pin_init(void);
  10. void clkrst_init(void);
  11. int board_early_init_f(void)
  12. {
  13. led_write(U, 0, , );
  14. pin_init();
  15. led_write(U, 1, , );
  16. clkrst_init();
  17. led_write(U, 2, , );
  18. return 0;
  19. }