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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-clps711x/p720t.c
  3.  *
  4.  *  Copyright (C) 2000-2001 Deep Blue Solutions Ltd
  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 as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20. #include <linux/config.h>
  21. #include <linux/init.h>
  22. #include <linux/types.h>
  23. #include <linux/string.h>
  24. #include <linux/sched.h>
  25. #include <linux/mm.h>
  26. #include <asm/hardware.h>
  27. #include <asm/io.h>
  28. #include <asm/pgtable.h>
  29. #include <asm/page.h>
  30. #include <asm/setup.h>
  31. #include <asm/mach-types.h>
  32. #include <asm/mach/arch.h>
  33. #include <asm/mach/map.h>
  34. #include <asm/arch/syspld.h>
  35. extern void clps711x_init_irq(void);
  36. extern void clps711x_map_io(void);
  37. /*
  38.  * Map the P720T system PLD.  It occupies two address spaces:
  39.  *  SYSPLD_PHYS_BASE and SYSPLD_PHYS_BASE + 0x00400000
  40.  * We map both here.
  41.  */
  42. static struct map_desc p720t_io_desc[] __initdata = {
  43. { SYSPLD_VIRT_BASE, SYSPLD_PHYS_BASE, 1048576, DOMAIN_IO, 0, 1 },
  44. { 0xfe400000, 0x10400000,   1048576, DOMAIN_IO, 0, 1 },
  45. LAST_DESC
  46. };
  47. static void __init
  48. fixup_p720t(struct machine_desc *desc, struct param_struct *params,
  49.     char **cmdline, struct meminfo *mi)
  50. {
  51. struct tag *tag = (struct tag *)params;
  52. /*
  53.  * Our bootloader doesn't setup any tags (yet).
  54.  */
  55. if (tag->hdr.tag != ATAG_CORE) {
  56. tag->hdr.tag = ATAG_CORE;
  57. tag->hdr.size = tag_size(tag_core);
  58. tag->u.core.flags = 0;
  59. tag->u.core.pagesize = PAGE_SIZE;
  60. tag->u.core.rootdev = 0x0100;
  61. tag = tag_next(tag);
  62. tag->hdr.tag = ATAG_MEM;
  63. tag->hdr.size = tag_size(tag_mem32);
  64. tag->u.mem.size = 4096;
  65. tag->u.mem.start = PHYS_OFFSET;
  66. tag = tag_next(tag);
  67. tag->hdr.tag = ATAG_NONE;
  68. tag->hdr.size = 0;
  69. }
  70. }
  71. static void __init p720t_map_io(void)
  72. {
  73. clps711x_map_io();
  74. iotable_init(p720t_io_desc);
  75. }
  76. MACHINE_START(P720T, "ARM-Prospector720T")
  77. MAINTAINER("ARM Ltd/Deep Blue Solutions Ltd")
  78. BOOT_MEM(0xc0000000, 0x80000000, 0xff000000)
  79. BOOT_PARAMS(0xc0000100)
  80. FIXUP(fixup_p720t)
  81. MAPIO(p720t_map_io)
  82. INITIRQ(clps711x_init_irq)
  83. MACHINE_END
  84. static int p720t_hw_init(void)
  85. {
  86. /*
  87.  * Power down as much as possible in case we don't
  88.  * have the drivers loaded.
  89.  */
  90. PLD_LCDEN = 0;
  91. PLD_PWR  &= ~(PLD_S4_ON|PLD_S3_ON|PLD_S2_ON|PLD_S1_ON);
  92. PLD_KBD   = 0;
  93. PLD_IO    = 0;
  94. PLD_IRDA  = 0;
  95. PLD_CODEC = 0;
  96. PLD_TCH   = 0;
  97. PLD_SPI   = 0;
  98. #ifndef CONFIG_DEBUG_LL
  99. PLD_COM2  = 0;
  100. PLD_COM1  = 0;
  101. #endif
  102. return 0;
  103. }
  104. __initcall(p720t_hw_init);