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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * BRIEF MODULE DESCRIPTION
  4.  *    PROM library initialisation code, assuming a version of
  5.  *    pmon is the boot code.
  6.  *
  7.  * Copyright 2001 MontaVista Software Inc.
  8.  * Author: MontaVista Software, Inc.
  9.  *              ahennessy@mvista.com       
  10.  *
  11.  * Based on arch/mips/au1000/common/prom.c
  12.  *
  13.  * This file was derived from Carsten Langgaard's 
  14.  * arch/mips/mips-boards/xx files.
  15.  *
  16.  * Carsten Langgaard, carstenl@mips.com
  17.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  18.  *
  19.  *  This program is free software; you can redistribute  it and/or modify it
  20.  *  under  the terms of  the GNU General  Public License as published by the
  21.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  22.  *  option) any later version.
  23.  *
  24.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  25.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  26.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  27.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  28.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  29.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  30.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  31.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  32.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  33.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34.  *
  35.  *  You should have received a copy of the  GNU General Public License along
  36.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  37.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  38.  */
  39. #include <linux/config.h>
  40. #include <linux/kernel.h>
  41. #include <linux/init.h>
  42. #include <linux/string.h>
  43. #include <asm/bootinfo.h>
  44. /* #define DEBUG_CMDLINE */
  45. char arcs_cmdline[CL_SIZE];
  46. extern int prom_argc;
  47. extern char **prom_argv, **prom_envp;
  48. typedef struct
  49. {
  50.     char *name;
  51. /*    char *val; */
  52. }t_env_var;
  53. char * __init prom_getcmdline(void)
  54. {
  55. return &(arcs_cmdline[0]);
  56. }
  57. void  __init prom_init_cmdline(void)
  58. {
  59. char *cp;
  60. int actr;
  61. actr = 1; /* Always ignore argv[0] */
  62. cp = &(arcs_cmdline[0]);
  63. while(actr < prom_argc) {
  64.         strcpy(cp, prom_argv[actr]);
  65. cp += strlen(prom_argv[actr]);
  66. *cp++ = ' ';
  67. actr++;
  68. }
  69. if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
  70. --cp;
  71. *cp = '';
  72. }
  73. int __init page_is_ram(unsigned long pagenr)
  74. {
  75.     return 1;
  76. }
  77. void prom_free_prom_memory (void)
  78. {
  79. }