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

Linux/Unix编程

开发平台:

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[CL_SIZE];
  31. const char *get_system_type(void)
  32. {
  33. return "Momentum Ocelot";
  34. }
  35. /* [jsun@junsun.net] PMON passes arguments in C main() style */
  36. void __init prom_init(int argc, const char **arg)
  37. {
  38. int i;
  39. /* arg[0] is "g", the rest is boot parameters */
  40. arcs_cmdline[0] = '';
  41. for (i = 1; i < argc; i++) {
  42. if (strlen(arcs_cmdline) + strlen(arg[i] + 1)
  43.     >= sizeof(arcs_cmdline))
  44. break;
  45. strcat(arcs_cmdline, arg[i]);
  46. strcat(arcs_cmdline, " ");
  47. }
  48. mips_machgroup = MACH_GROUP_MOMENCO;
  49. mips_machtype = MACH_MOMENCO_OCELOT;
  50. /* turn off the Bit Error LED, which comes on automatically
  51.  * at power-up reset */
  52. *PLD_REG(INTCLR) = 0x80;
  53. /* All the boards have at least 64MiB. If there's more, we
  54.    detect and register it later */
  55. add_memory_region(0, 64 << 20, BOOT_MEM_RAM);
  56. }
  57. void __init prom_free_prom_memory(void)
  58. {
  59. }
  60. void __init prom_fixup_mem_map(unsigned long start, unsigned long end)
  61. {
  62. }