ms7720se.c 564 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (C) 2007
  3. * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
  4. *
  5. * Copyright (C) 2007
  6. * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  7. *
  8. * Copyright (C) 2007
  9. * Kenati Technologies, Inc.
  10. *
  11. * board/ms7720se/ms7720se.c
  12. *
  13. * SPDX-License-Identifier: GPL-2.0+
  14. */
  15. #include <common.h>
  16. #include <asm/io.h>
  17. #include <asm/processor.h>
  18. #define LED_BASE 0xB0800000
  19. int checkboard(void)
  20. {
  21. puts("BOARD: Hitachi UL MS7720SE\n");
  22. return 0;
  23. }
  24. int board_init(void)
  25. {
  26. return 0;
  27. }
  28. void led_set_state(unsigned short value)
  29. {
  30. outw(value & 0xFF, LED_BASE);
  31. }