tb0229.c 938 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Board initialize code for TANBAC Evaluation board TB0229.
  3. *
  4. * (C) Masami Komiya <mkomiya@sonare.it> 2004
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2, or (at
  9. * your option) any later version.
  10. */
  11. #include <common.h>
  12. #include <command.h>
  13. #include <asm/addrspace.h>
  14. #include <asm/io.h>
  15. #include <asm/reboot.h>
  16. #include <pci.h>
  17. void _machine_restart(void)
  18. {
  19. void (*f)(void) = (void *) 0xbfc00000;
  20. f();
  21. }
  22. #if defined(CONFIG_PCI)
  23. static struct pci_controller hose;
  24. void pci_init_board (void)
  25. {
  26. init_vr4131_pci(&hose);
  27. }
  28. #endif
  29. long int initdram(int board_type)
  30. {
  31. return get_ram_size (CFG_SDRAM_BASE, 0x8000000);
  32. }
  33. int checkboard (void)
  34. {
  35. printf("Board: TANBAC TB0229 ");
  36. printf("(CPU Speed %d MHz)\n", (int)CPU_CLOCK_RATE/1000000);
  37. set_io_port_base(0);
  38. return 0;
  39. }