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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * FILE NAME
  3.  * arch/mips/vr41xx/zao-capcella/init.c
  4.  *
  5.  * BRIEF MODULE DESCRIPTION
  6.  * Initialisation code for the ZAO Networks Capcella.
  7.  *
  8.  * Copyright 2002 Yoichi Yuasa
  9.  *                yuasa@hh.iij4u.or.jp
  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. #include <linux/config.h>
  17. #include <linux/init.h>
  18. #include <linux/kernel.h>
  19. #include <linux/string.h>
  20. #include <asm/bootinfo.h>
  21. #include <asm/cpu.h>
  22. #include <asm/mipsregs.h>
  23. #include <asm/vr41xx/vr41xx.h>
  24. char arcs_cmdline[CL_SIZE];
  25. const char *get_system_type(void)
  26. {
  27. return "ZAO Networks Capcella";
  28. }
  29. void __init bus_error_init(void)
  30. {
  31. }
  32. void __init prom_init(int argc, char **argv, unsigned long magic, int *prom_vec)
  33. {
  34. u32 config;
  35. int i;
  36. /*
  37.  * collect args and prepare cmd_line
  38.  */
  39. for (i = 1; i < argc; i++) {
  40. strcat(arcs_cmdline, argv[i]);
  41. if (i < (argc - 1))
  42. strcat(arcs_cmdline, " ");
  43. }
  44. mips_machgroup = MACH_GROUP_NEC_VR41XX;
  45. mips_machtype = MACH_ZAO_CAPCELLA;
  46. switch (mips_cpu.processor_id) {
  47. case PRID_VR4131_REV1_2:
  48. config = read_32bit_cp0_register(CP0_CONFIG);
  49. config &= ~0x00000030UL;
  50. config |= 0x00410000UL;
  51. write_32bit_cp0_register(CP0_CONFIG, config);
  52. break;
  53. default:
  54. break;
  55. }
  56. }
  57. void __init prom_free_prom_memory (void)
  58. {
  59. }