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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * setup.c
  3.  *
  4.  * BRIEF MODULE DESCRIPTION
  5.  * Galileo Evaluation Boards - board dependent boot routines
  6.  *
  7.  * Copyright (C) 2000 RidgeRun, Inc.
  8.  * Author: RidgeRun, Inc.
  9.  *   glonnon@ridgerun.com, skranz@ridgerun.com, stevej@ridgerun.com
  10.  *
  11.  *  This program is free software; you can redistribute  it and/or modify it
  12.  *  under  the terms of  the GNU General  Public License as published by the
  13.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  14.  *  option) any later version.
  15.  *
  16.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  17.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  18.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  19.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  20.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  21.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  22.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  23.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  24.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  25.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26.  *
  27.  *  You should have received a copy of the  GNU General Public License along
  28.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  29.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  30.  *
  31.  */
  32. #include <linux/config.h>
  33. #include <linux/init.h>
  34. #include <linux/kernel.h>
  35. #include <linux/types.h>
  36. #include <linux/mm.h>
  37. #include <linux/swap.h>
  38. #include <linux/ioport.h>
  39. #include <linux/sched.h>
  40. #include <linux/interrupt.h>
  41. #include <linux/pci.h>
  42. #include <linux/timex.h>
  43. #include <asm/bootinfo.h>
  44. #include <asm/page.h>
  45. #include <asm/bootinfo.h>
  46. #include <asm/io.h>
  47. #include <asm/irq.h>
  48. #include <asm/pci.h>
  49. #include <asm/processor.h>
  50. #include <asm/ptrace.h>
  51. #include <asm/reboot.h>
  52. #include <asm/mc146818rtc.h>
  53. #include <asm/traps.h>
  54. #include <linux/version.h>
  55. #include <linux/bootmem.h>
  56. extern struct rtc_ops no_rtc_ops;
  57. /* These functions are used for rebooting or halting the machine*/
  58. extern void galileo_machine_restart(char *command);
  59. extern void galileo_machine_halt(void);
  60. extern void galileo_machine_power_off(void);
  61. /*
  62.  *This structure holds pointers to the pci configuration space accesses
  63.  *and interrupts allocating routine for device over the PCI
  64.  */
  65. extern struct pci_ops galileo_pci_ops;
  66. extern unsigned long mips_machgroup;
  67. char arcs_cmdline[CL_SIZE] = { "console=ttyS0,115200 "
  68.     "root=/dev/nfs rw nfsroot=192.168.1.1:/mnt/disk2/fs.gal "
  69.     "ip=192.168.1.211:192.168.1.1:::gt::"
  70. };
  71. //struct eeprom_parameters eeprom_param;
  72. /*
  73.  * This function is added because arch/mips/mm/init.c needs it
  74.  * basically it does nothing
  75.  */
  76. void prom_free_prom_memory(void)
  77. {
  78. }
  79. extern void (*board_time_init) (struct irqaction * irq);
  80. static unsigned char galileo_rtc_read_data(unsigned long addr)
  81. {
  82. return 0;
  83. }
  84. static void galileo_rtc_write_data(unsigned char data, unsigned long addr)
  85. {
  86. }
  87. static int galileo_rtc_bcd_mode(void)
  88. {
  89. return 0;
  90. }
  91. struct rtc_ops galileo_rtc_ops = {
  92. &galileo_rtc_read_data,
  93. &galileo_rtc_write_data,
  94. &galileo_rtc_bcd_mode
  95. };
  96. void __init bus_error_init(void) { /* nothing */ }
  97. /********************************************************************
  98.  *ev64120_setup -
  99.  *
  100.  *Initializes basic routines and structures pointers, memory size (as
  101.  *given by the bios and saves the command line.
  102.  *
  103.  *
  104.  *Inputs :
  105.  *
  106.  *Outpus :
  107.  *
  108.  *********************************************************************/
  109. extern void galileo_time_init();
  110. void ev64120_setup(void)
  111. {
  112. unsigned int i, j;
  113. //printk(KERN_INFO "ev64120_setupn");
  114. _machine_restart = galileo_machine_restart;
  115. _machine_halt = galileo_machine_halt;
  116. _machine_power_off = galileo_machine_power_off;
  117. rtc_ops = &galileo_rtc_ops;
  118. board_time_init = galileo_time_init;
  119. set_io_port_base(KSEG1);
  120. #ifdef CONFIG_L2_L3_CACHE
  121. #error "external cache not implemented yet"
  122. config_register = read_32bit_cp0_register(CP0_CONFIG);
  123. printk("nnnchecking second level cache cp0_config = %08lxn",
  124.        config_register);
  125. if (config_register & CONF_SC) { // second/third level cache available
  126. config_register = config_register & (1 << 12);
  127. write_32bit_cp0_register(CP0_CONFIG, config_register);
  128. printk
  129.     ("nnnchecking second level cache cp0_config = %08lxn",
  130.      config_register);
  131. }
  132. #endif
  133. }
  134. const char *get_system_type(void)
  135. {
  136. return "Galileo EV64120A";
  137. }
  138. /*
  139.  * SetUpBootInfo -
  140.  *
  141.  * This function is called at very first stages of kernel startup.
  142.  * It specifies for the kernel the evaluation board that the linux
  143.  * is running on. Then it saves the eprom parameters that holds the
  144.  * command line, memory size etc...
  145.  *
  146.  * Inputs :
  147.  * argc - nothing
  148.  * argv - holds a pointer to the eprom parameters
  149.  * envp - nothing
  150.  */
  151. void SetUpBootInfo(int argc, char **argv, char **envp)
  152. {
  153. mips_machgroup = MACH_GROUP_GALILEO;
  154. mips_machtype = MACH_EV64120A;
  155. }
  156. void __init prom_init(int a, char **b, char **c, int *d)
  157. {
  158. unsigned long free_start, free_end, start_pfn, bootmap_size;
  159. mips_machgroup = MACH_GROUP_GALILEO;
  160. add_memory_region(0, 32 << 20, BOOT_MEM_RAM);
  161. }