|
@@ -0,0 +1,84 @@
|
|
|
|
+/*
|
|
|
|
+ * linux/arch/arm/mach-versatile/core.c
|
|
|
|
+ *
|
|
|
|
+ * Copyright (C) 1999 - 2003 ARM Limited
|
|
|
|
+ * Copyright (C) 2000 Deep Blue Solutions Ltd
|
|
|
|
+ *
|
|
|
|
+ * This program is free software; you can redistribute it and/or modify
|
|
|
|
+ * it under the terms of the GNU General Public License as published by
|
|
|
|
+ * the Free Software Foundation; either version 2 of the License, or
|
|
|
|
+ * (at your option) any later version.
|
|
|
|
+ *
|
|
|
|
+ * This program is distributed in the hope that it will be useful,
|
|
|
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
+ * GNU General Public License for more details.
|
|
|
|
+ *
|
|
|
|
+ * You should have received a copy of the GNU General Public License
|
|
|
|
+ * along with this program; if not, write to the Free Software
|
|
|
|
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
+ */
|
|
|
|
+#include <linux/init.h>
|
|
|
|
+#include <linux/device.h>
|
|
|
|
+#include <linux/dma-mapping.h>
|
|
|
|
+#include <linux/platform_device.h>
|
|
|
|
+#include <linux/interrupt.h>
|
|
|
|
+#include <linux/irqdomain.h>
|
|
|
|
+#include <linux/of_address.h>
|
|
|
|
+#include <linux/of_platform.h>
|
|
|
|
+#include <linux/amba/bus.h>
|
|
|
|
+#include <linux/amba/clcd.h>
|
|
|
|
+#include <linux/amba/pl061.h>
|
|
|
|
+#include <linux/amba/mmci.h>
|
|
|
|
+#include <linux/amba/pl022.h>
|
|
|
|
+#include <linux/io.h>
|
|
|
|
+#include <linux/irqchip/versatile-fpga.h>
|
|
|
|
+#include <linux/gfp.h>
|
|
|
|
+#include <linux/clkdev.h>
|
|
|
|
+#include <linux/mtd/physmap.h>
|
|
|
|
+#include <linux/bitops.h>
|
|
|
|
+
|
|
|
|
+#include <asm/irq.h>
|
|
|
|
+#include <asm/hardware/arm_timer.h>
|
|
|
|
+#include <asm/hardware/icst.h>
|
|
|
|
+#include <asm/hardware/vic.h>
|
|
|
|
+#include <asm/mach-types.h>
|
|
|
|
+
|
|
|
|
+#include <asm/mach/arch.h>
|
|
|
|
+#include <asm/mach/irq.h>
|
|
|
|
+#include <asm/mach/time.h>
|
|
|
|
+#include <asm/mach/map.h>
|
|
|
|
+#include <mach/hardware.h>
|
|
|
|
+#include <mach/platform.h>
|
|
|
|
+#include <asm/hardware/timer-sp.h>
|
|
|
|
+
|
|
|
|
+#include <plat/clcd.h>
|
|
|
|
+#include <plat/sched_clock.h>
|
|
|
|
+
|
|
|
|
+#include "core.h"
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
+ * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx
|
|
|
|
+ * is the (PA >> 12).
|
|
|
|
+ *
|
|
|
|
+ * Setup a VA for the Versatile Vectored Interrupt Controller.
|
|
|
|
+ */
|
|
|
|
+#define VA_VIC_BASE __io_address(VERSATILE_VIC_BASE)
|
|
|
|
+#define VA_SIC_BASE __io_address(VERSATILE_SIC_BASE)
|
|
|
|
+
|
|
|
|
+/* These PIC IRQs are valid in each configuration */
|
|
|
|
+#define PIC_VALID_ALL BIT(SIC_INT_KMI0) | BIT(SIC_INT_KMI1) | \
|
|
|
|
+ BIT(SIC_INT_SCI3) | BIT(SIC_INT_UART3) | \
|
|
|
|
+ BIT(SIC_INT_CLCD) | BIT(SIC_INT_TOUCH) | \
|
|
|
|
+ BIT(SIC_INT_KEYPAD) | BIT(SIC_INT_DoC) | \
|
|
|
|
+ BIT(SIC_INT_USB) | BIT(SIC_INT_PCI0) | \
|
|
|
|
+ BIT(SIC_INT_PCI1) | BIT(SIC_INT_PCI2) | \
|
|
|
|
+ BIT(SIC_INT_PCI3)
|
|
|
|
+#if 1
|
|
|
|
+#define IRQ_MMCI0A IRQ_VICSOURCE22
|
|
|
|
+#define IRQ_AACI IRQ_VICSOURCE24
|
|
|
|
+#define IRQ_ETH IRQ_VICSOURCE25
|
|
|
|
+#define PIC_MASK 0xFFD00000
|
|
|
|
+#define PIC_VALID PIC_VALID_ALL
|
|
|
|
+#else
|
|
|
|
+#define IRQ_MMCI0A IRQ_SIC_MMCI0A
|