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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/alpha/kernel/console.c
  3.  *
  4.  * Architecture-specific specific support for VGA device on 
  5.  * non-0 I/O hose
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/pci.h>
  9. #include <linux/init.h>
  10. #include <linux/tty.h>
  11. #include <linux/console.h>
  12. #include <asm/vga.h>
  13. #include <asm/machvec.h>
  14. #ifdef CONFIG_VGA_HOSE
  15. /*
  16.  * Externally-visible vga hose bases
  17.  */
  18. unsigned long __vga_hose_io_base = 0; /* base for default hose */
  19. unsigned long __vga_hose_mem_base = 0; /* base for default hose */
  20. static struct pci_controller * __init 
  21. default_vga_hose_select(struct pci_controller *h1, struct pci_controller *h2)
  22. {
  23. if (h2->index < h1->index)
  24. return h2;
  25. return h1;
  26. }
  27. void __init 
  28. set_vga_hose(struct pci_controller *hose)
  29. {
  30. if (hose) {
  31. __vga_hose_io_base = hose->io_space->start;
  32. __vga_hose_mem_base = hose->mem_space->start;
  33. }
  34. }
  35. void __init 
  36. locate_and_init_vga(void *(*sel_func)(void *, void *))
  37. {
  38. struct pci_controller *hose = NULL;
  39. struct pci_dev *dev = NULL;
  40. if (!sel_func) sel_func = (void *)default_vga_hose_select;
  41. for(dev=NULL; (dev=pci_find_class(PCI_CLASS_DISPLAY_VGA << 8, dev));) {
  42. if (!hose) hose = dev->sysdata;
  43. else hose = sel_func(hose, dev->sysdata);
  44. }
  45. /* Did we already inititialize the correct one? */
  46. if (conswitchp == &vga_con &&
  47.     __vga_hose_io_base == hose->io_space->start &&
  48.     __vga_hose_mem_base == hose->mem_space->start)
  49. return;
  50. /* Set the VGA hose and init the new console */
  51. set_vga_hose(hose);
  52. take_over_console(&vga_con, 0, MAX_NR_CONSOLES-1, 1);
  53. }
  54. #endif