config.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Setup kernel for a Sun3x machine
  3.  *
  4.  * (C) 1999 Thomas Bogendoerfer (tsbogend@alpha.franken.de)
  5.  *
  6.  * based on code from Oliver Jowett <oliver@jowett.manawatu.gen.nz>
  7.  */
  8. #include <linux/types.h>
  9. #include <linux/mm.h>
  10. #include <linux/console.h>
  11. #include <linux/init.h>
  12. #include <asm/system.h>
  13. #include <asm/machdep.h>
  14. #include <asm/irq.h>
  15. #include <asm/sun3xprom.h>
  16. #include <asm/sun3ints.h>
  17. #include <asm/setup.h>
  18. #include "time.h"
  19. volatile char *clock_va;
  20. extern volatile unsigned char *sun3_intreg;
  21. int __init sun3x_keyb_init(void)
  22. {
  23. return 0;
  24. }
  25. int sun3x_kbdrate(struct kbd_repeat *r)
  26. {
  27. return 0;
  28. }
  29. void sun3x_kbd_leds(unsigned int i)
  30. {
  31. }
  32. void sun3_leds(unsigned int i)
  33. {
  34. }
  35. /* should probably detect types of these eventually. */
  36. static void sun3x_get_model(char *model)
  37. {
  38. sprintf(model, "Sun3x");
  39. }
  40. /*
  41.  *  Setup the sun3x configuration info
  42.  */
  43. void __init config_sun3x(void)
  44. {
  45. sun3x_prom_init();
  46. mach_get_irq_list  = sun3_get_irq_list;
  47. mach_max_dma_address = 0xffffffff; /* we can DMA anywhere, whee */
  48. #ifdef CONFIG_VT
  49. mach_keyb_init       = sun3x_keyb_init;
  50. mach_kbdrate         = sun3x_kbdrate;
  51. mach_kbd_leds        = sun3x_kbd_leds;
  52. #endif
  53. mach_default_handler = &sun3_default_handler;
  54. mach_sched_init      = sun3x_sched_init;
  55. mach_init_IRQ        = sun3_init_IRQ;
  56. enable_irq           = sun3_enable_irq;
  57. disable_irq          = sun3_disable_irq;
  58. mach_request_irq     = sun3_request_irq;
  59. mach_free_irq        = sun3_free_irq;
  60. mach_process_int     = sun3_process_int;
  61.     
  62. mach_gettimeoffset   = sun3x_gettimeoffset;
  63. mach_reset           = sun3x_reboot;
  64. mach_gettod          = sun3x_gettod;
  65. mach_hwclk           = sun3x_hwclk;
  66. mach_get_model       = sun3x_get_model;
  67. sun3_intreg = (unsigned char *)SUN3X_INTREG;
  68. /* only the serial console is known to work anyway... */
  69. #if 0    
  70. switch (*(unsigned char *)SUN3X_EEPROM_CONS) {
  71. case 0x10:
  72. serial_console = 1;
  73. conswitchp = NULL;
  74. break;
  75. case 0x11:
  76. serial_console = 2;
  77. conswitchp = NULL;
  78. break;
  79. default:
  80. serial_console = 0;
  81. conswitchp = &dummy_con;
  82. break;
  83. }
  84. #endif
  85. }