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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  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[CL_SIZE];
  20. #ifdef CONFIG_FB_TX3912
  21. extern unsigned long tx3912fb_paddr;
  22. extern unsigned long tx3912fb_vaddr;
  23. extern unsigned long tx3912fb_size;
  24. #endif
  25. const char *get_system_type(void)
  26. {
  27. return "Philips Nino";
  28. }
  29. /* Do basic initialization */
  30. void __init prom_init(int argc, char **argv, unsigned long magic, int *prom_vec)
  31. {
  32. unsigned long mem_size;
  33. strcpy(arcs_cmdline, "console=tty0 console=ttyS0,115200");
  34. mips_machgroup = MACH_GROUP_PHILIPS;
  35. mips_machtype = MACH_PHILIPS_NINO;
  36. #ifdef CONFIG_NINO_4MB
  37. mem_size = 4 << 20;
  38. #elif CONFIG_NINO_8MB
  39. mem_size = 8 << 20;
  40. #elif CONFIG_NINO_16MB
  41. mem_size = 16 << 20;
  42. #endif
  43. #ifdef CONFIG_FB_TX3912
  44. {
  45. unsigned long free_end;
  46. /*
  47.  * The LCD controller requires that the framebuffer
  48.  * start address fall within a 1MB segment and is
  49.  * aligned on a 16 byte boundary. The way to assure
  50.  * this is to place the framebuffer at the end of
  51.  * memory and mark it as reserved.
  52.  */
  53. free_end = (mem_size - tx3912fb_size) & PAGE_MASK;
  54. add_memory_region(0, free_end, BOOT_MEM_RAM); 
  55. add_memory_region(free_end, (mem_size - free_end), BOOT_MEM_RESERVED); 
  56. /*
  57.  * Calculate physical and virtual addresses for
  58.  * the beginning of the framebuffer.
  59.  */
  60. tx3912fb_paddr = PHYSADDR(free_end);
  61. tx3912fb_vaddr = KSEG1ADDR(free_end);
  62. }
  63. #else
  64. add_memory_region(0, mem_size, BOOT_MEM_RAM); 
  65. #endif
  66. }
  67. void __init prom_free_prom_memory (void)
  68. {
  69. }