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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * FILE NAME
  3.  * arch/mips/vr41xx/nec-eagle/setup.c
  4.  *
  5.  * BRIEF MODULE DESCRIPTION
  6.  * Setup for the NEC Eagle/Hawk board.
  7.  *
  8.  * Author: Yoichi Yuasa
  9.  *         yyuasa@mvista.com or source@mvista.com
  10.  *
  11.  * Copyright 2001,2002 MontaVista Software Inc.
  12.  *
  13.  *  This program is free software; you can redistribute it and/or modify it
  14.  *  under the terms of the GNU General Public License as published by the
  15.  *  Free Software Foundation; either version 2 of the License, or (at your
  16.  *  option) any later version.
  17.  *
  18.  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  19.  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  20.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  21.  *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  22.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23.  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  24.  *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25.  *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  26.  *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  27.  *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  *
  29.  *  You should have received a copy of the GNU General Public License along
  30.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  31.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  32.  */
  33. /*
  34.  * Changes:
  35.  *  MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com>
  36.  *  - Moved mips_pci_channels[] from arch/mips/vr41xx/vr4122/eagle/setup.c.
  37.  *  - Added support for NEC Hawk.
  38.  *
  39.  *  MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com>
  40.  *  - New creation, NEC Eagle is supported.
  41.  */
  42. #include <linux/config.h>
  43. #include <linux/init.h>
  44. #include <linux/console.h>
  45. #include <linux/ide.h>
  46. #include <linux/ioport.h>
  47. #include <asm/pci_channel.h>
  48. #include <asm/reboot.h>
  49. #include <asm/time.h>
  50. #include <asm/vr41xx/eagle.h>
  51. #ifdef CONFIG_BLK_DEV_INITRD
  52. extern unsigned long initrd_start, initrd_end;
  53. extern void * __rd_start, * __rd_end;
  54. #endif
  55. #ifdef CONFIG_BLK_DEV_IDE
  56. extern struct ide_ops eagle_ide_ops;
  57. #endif
  58. extern void eagle_irq_init(void);
  59. #ifdef CONFIG_PCI
  60. static struct resource vr41xx_pci_io_resource = {
  61. "PCI I/O space",
  62. VR41XX_PCI_IO_START,
  63. VR41XX_PCI_IO_END,
  64. IORESOURCE_IO
  65. };
  66. static struct resource vr41xx_pci_mem_resource = {
  67. "PCI memory space",
  68. VR41XX_PCI_MEM_START,
  69. VR41XX_PCI_MEM_END,
  70. IORESOURCE_MEM
  71. };
  72. extern struct pci_ops vr41xx_pci_ops;
  73. struct pci_channel mips_pci_channels[] = {
  74. {&vr41xx_pci_ops, &vr41xx_pci_io_resource, &vr41xx_pci_mem_resource, 0, 256},
  75. {NULL, NULL, NULL, 0, 0}
  76. };
  77. struct vr41xx_pci_address_space vr41xx_pci_mem1 = {
  78. VR41XX_PCI_MEM1_BASE,
  79. VR41XX_PCI_MEM1_MASK,
  80. IO_MEM1_RESOURCE_START
  81. };
  82. struct vr41xx_pci_address_space vr41xx_pci_mem2 = {
  83. VR41XX_PCI_MEM2_BASE,
  84. VR41XX_PCI_MEM2_MASK,
  85. IO_MEM2_RESOURCE_START
  86. };
  87. struct vr41xx_pci_address_space vr41xx_pci_io = {
  88. VR41XX_PCI_IO_BASE,
  89. VR41XX_PCI_IO_MASK,
  90. IO_PORT_RESOURCE_START
  91. };
  92. static struct vr41xx_pci_address_map pci_address_map = {
  93. &vr41xx_pci_mem1,
  94. &vr41xx_pci_mem2,
  95. &vr41xx_pci_io
  96. };
  97. #endif
  98. void __init nec_eagle_setup(void)
  99. {
  100. set_io_port_base(IO_PORT_BASE);
  101. ioport_resource.start = IO_PORT_RESOURCE_START;
  102. ioport_resource.end = IO_PORT_RESOURCE_END;
  103. iomem_resource.start = IO_MEM1_RESOURCE_START;
  104. iomem_resource.end = IO_MEM2_RESOURCE_END;
  105. #ifdef CONFIG_BLK_DEV_INITRD
  106. ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
  107. initrd_start = (unsigned long)&__rd_start;
  108. initrd_end = (unsigned long)&__rd_end;
  109. #endif
  110. _machine_restart = vr41xx_restart;
  111. _machine_halt = vr41xx_halt;
  112. _machine_power_off = vr41xx_power_off;
  113. board_time_init = vr41xx_time_init;
  114. board_timer_setup = vr41xx_timer_setup;
  115. board_irq_init = eagle_irq_init;
  116. #ifdef CONFIG_FB
  117. conswitchp = &dummy_con;
  118. #endif
  119. #ifdef CONFIG_BLK_DEV_IDE
  120. ide_ops = &eagle_ide_ops;
  121. #endif
  122. vr41xx_bcu_init();
  123. vr41xx_cmu_init(0);
  124. vr41xx_dsiu_init();
  125. vr41xx_siu_init(SIU_RS232C, 0);
  126. #ifdef CONFIG_PCI
  127. vr41xx_pciu_init(&pci_address_map);
  128. #endif
  129. #ifdef CONFIG_VRC4173
  130. vrc4173_init();
  131. #endif
  132. }