ms7720se.c 561 B

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