prom.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: jsun@mvista.com or jsun@junsun.net
  4.  *
  5.  * This program is free software; you can redistribute  it and/or modify it
  6.  * under  the terms of  the GNU General  Public License as published by the
  7.  * Free Software Foundation;  either version 2 of the  License, or (at your
  8.  * option) any later version.
  9.  */
  10. #include <linux/init.h>
  11. #include <linux/mm.h>
  12. #include <linux/sched.h>
  13. #include <linux/bootmem.h>
  14. #include <asm/addrspace.h>
  15. #include <asm/bootinfo.h>
  16. #define PLD_BASE 0xbc000000
  17. #define REV             0x0     /* Board Assembly Revision */
  18. #define PLD1ID          0x1     /* PLD 1 ID */
  19. #define PLD2ID          0x2     /* PLD 2 ID */
  20. #define RESET_STAT      0x3     /* Reset Status Register */
  21. #define BOARD_STAT      0x4     /* Board Status Register */
  22. #define CPCI_ID         0x5     /* Compact PCI ID Register */
  23. #define CONTROL         0x8     /* Control Register */
  24. #define CPU_EEPROM      0x9     /* CPU Configuration EEPROM Register */
  25. #define INTMASK         0xA     /* Interrupt Mask Register */
  26. #define INTSTAT         0xB     /* Interrupt Status Register */
  27. #define INTSET          0xC     /* Interrupt Set Register */
  28. #define INTCLR          0xD     /* Interrupt Clear Register */
  29. #define PLD_REG(x) ((uint8_t*)(PLD_BASE+(x)))
  30. char arcs_cmdline[COMMAND_LINE_SIZE];
  31. /* [jsun@junsun.net] PMON passes arguments in C main() style */
  32. void __init prom_init(int argc, const char **arg)
  33. {
  34. int i;
  35. /* arg[0] is "g", the rest is boot parameters */
  36. arcs_cmdline[0] = '';
  37. for (i = 1; i < argc; i++) {
  38. if (strlen(arcs_cmdline) + strlen(arg[i] + 1)
  39.     >= sizeof(arcs_cmdline))
  40. break;
  41. strcat(arcs_cmdline, arg[i]);
  42. strcat(arcs_cmdline, " ");
  43. }
  44. mips_machgroup = MACH_GROUP_MOMENCO;
  45. mips_machtype = MACH_MOMENCO_OCELOT;
  46. /* turn off the Bit Error LED, which comes on automatically
  47.  * at power-up reset */
  48. *PLD_REG(INTCLR) = 0x80;
  49. /* All the boards have at least 64MiB. If there's more, we
  50.    detect and register it later */
  51. add_memory_region(0, 64 << 20, BOOT_MEM_RAM);
  52. }
  53. void __init prom_free_prom_memory(void)
  54. {
  55. }
  56. void __init prom_fixup_mem_map(unsigned long start, unsigned long end)
  57. {
  58. }