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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/mips/philips/nino/prom.c
  3.  *
  4.  *  Copyright (C) 2001 Steven J. Hill (sjhill@realitydiluted.com)
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  *  
  10.  *  Early initialization code for the Philips Nino.
  11.  */
  12. #include <linux/config.h>
  13. #include <linux/init.h>
  14. #include <linux/kernel.h>
  15. #include <linux/string.h>
  16. #include <asm/bootinfo.h>
  17. #include <asm/addrspace.h>
  18. #include <asm/page.h>
  19. char arcs_cmdline[COMMAND_LINE_SIZE];
  20. #ifdef CONFIG_FB_TX3912
  21. extern u_long tx3912fb_paddr;
  22. extern u_long tx3912fb_vaddr;
  23. extern u_long tx3912fb_size;
  24. #endif
  25. /* Do basic initialization */
  26. void __init prom_init(int argc, char **argv,
  27. unsigned long magic, int *prom_vec)
  28. {
  29. u_long free_end, mem_size;
  30. u_int i;
  31. /*
  32.  * collect args and prepare cmd_line
  33.  */
  34. for (i = 1; i < argc; i++) {
  35. strcat(arcs_cmdline, argv[i]);
  36. if (i < (argc - 1))
  37. strcat(arcs_cmdline, " ");
  38. }
  39. mips_machgroup = MACH_GROUP_PHILIPS;
  40. mips_machtype = MACH_PHILIPS_NINO;
  41. #ifdef CONFIG_NINO_4MB
  42. mem_size = 4 << 20;
  43. #elif CONFIG_NINO_8MB
  44. mem_size = 8 << 20;
  45. #elif CONFIG_NINO_16MB
  46. mem_size = 16 << 20;
  47. #endif
  48. #ifdef CONFIG_FB_TX3912
  49. /*
  50.  * The LCD controller requires that the framebuffer
  51.  * start address fall within a 1MB segment and is
  52.  * aligned on a 16 byte boundary. The way to assure
  53.  * this is to place the framebuffer at the end of
  54.  * memory and mark it as reserved.
  55.  */
  56. free_end = (mem_size - tx3912fb_size) & PAGE_MASK;
  57. add_memory_region(0, free_end, BOOT_MEM_RAM); 
  58. add_memory_region(free_end, (mem_size - free_end), BOOT_MEM_RESERVED); 
  59. /*
  60.  * Calculate physical and virtual addresses for
  61.  * the beginning of the framebuffer.
  62.  */
  63. tx3912fb_paddr = PHYSADDR(free_end);
  64. tx3912fb_vaddr = KSEG1ADDR(free_end);
  65. #else
  66. add_memory_region(0, mem_size, BOOT_MEM_RAM); 
  67. #endif
  68. }
  69. void __init prom_free_prom_memory (void)
  70. {
  71. }