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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-mx1ads/arch.c
  3.  *
  4.  *  Copyright (C) 2000 Deep Blue Solutions Ltd
  5.  *  Copyright (C) 2002 Shane Nay (shane@minirl.com)
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20.  */
  21. #include <linux/config.h>
  22. #include <linux/types.h>
  23. #include <linux/sched.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/init.h>
  26. #include <asm/hardware.h>
  27. #include <asm/irq.h>
  28. #include <asm/setup.h>
  29. #include <asm/mach-types.h>
  30. #include <asm/mach/arch.h>
  31. #include <asm/mach/amba_kmi.h>
  32. extern void mx1ads_map_io(void);
  33. extern void mx1ads_init_irq(void);
  34. static void __init
  35. mx1ads_fixup(struct machine_desc *desc, struct param_struct *unused,
  36.  char **cmdline, struct meminfo *mi)
  37. {
  38. }
  39. MACHINE_START(MX1ADS, "Motorola MX1ADS")
  40. MAINTAINER("Shane Nay")
  41. #ifdef CONFIG_ARCH_MX1ADS_SRAM
  42. BOOT_MEM(0x12000000, 0x00200000, 0xf0200000)
  43. #else
  44. BOOT_MEM(0x08000000, 0x00200000, 0xf0200000)
  45. #endif
  46. FIXUP(mx1ads_fixup)
  47. MAPIO(mx1ads_map_io)
  48. INITIRQ(mx1ads_init_irq)
  49. MACHINE_END
  50. #if 0
  51. #endif