cpu.c 812 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * (C) Copyright 2007
  3. * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
  4. *
  5. * (C) Copyright 2007
  6. * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #include <common.h>
  11. #include <command.h>
  12. #include <asm/processor.h>
  13. int checkcpu(void)
  14. {
  15. puts("CPU: SH3\n");
  16. return 0;
  17. }
  18. int cpu_init(void)
  19. {
  20. return 0;
  21. }
  22. int cleanup_before_linux(void)
  23. {
  24. disable_interrupts();
  25. return 0;
  26. }
  27. int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  28. {
  29. disable_interrupts();
  30. reset_cpu(0);
  31. return 0;
  32. }
  33. void flush_cache(unsigned long addr, unsigned long size)
  34. {
  35. }
  36. void icache_enable(void)
  37. {
  38. }
  39. void icache_disable(void)
  40. {
  41. }
  42. int icache_status(void)
  43. {
  44. return 0;
  45. }
  46. void dcache_enable(void)
  47. {
  48. }
  49. void dcache_disable(void)
  50. {
  51. }
  52. int dcache_status(void)
  53. {
  54. return 0;
  55. }