setup.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * linux/arch/mips/tx4938/common/setup.c
  3. *
  4. * common tx4938 setup routines
  5. *
  6. * 2003-2005 (c) MontaVista Software, Inc. This file is licensed under the
  7. * terms of the GNU General Public License version 2. This program is
  8. * licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. *
  11. * Support for TX4938 in 2.6 - Manish Lachwani (mlachwani@mvista.com)
  12. */
  13. #include <linux/errno.h>
  14. #include <linux/init.h>
  15. #include <linux/kernel_stat.h>
  16. #include <linux/module.h>
  17. #include <linux/signal.h>
  18. #include <linux/sched.h>
  19. #include <linux/types.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/ioport.h>
  22. #include <linux/timex.h>
  23. #include <linux/slab.h>
  24. #include <linux/random.h>
  25. #include <linux/irq.h>
  26. #include <asm/bitops.h>
  27. #include <asm/bootinfo.h>
  28. #include <asm/io.h>
  29. #include <asm/irq.h>
  30. #include <asm/mipsregs.h>
  31. #include <asm/system.h>
  32. #include <asm/time.h>
  33. #include <asm/tx4938/rbtx4938.h>
  34. extern void toshiba_rbtx4938_setup(void);
  35. void __init tx4938_setup(void);
  36. void dump_cp0(char *key);
  37. void __init
  38. plat_mem_setup(void)
  39. {
  40. toshiba_rbtx4938_setup();
  41. }