[ARM] add Marvell Kirkwood (88F6000) SoC support
The Marvell Kirkwood (88F6000) is a family of ARM SoCs based on a
Shiva CPU core, and features a DDR2 controller, a x1 PCIe interface,
a USB 2.0 interface, a SPI controller, a crypto accelerator, a TS
interface, and IDMA/XOR engines, and depending on the model, also
features one or two Gigabit Ethernet interfaces, two SATA II
interfaces, one or two TWSI interfaces, one or two UARTs, a
TDM/SLIC interface, a NAND controller, an I2S/SPDIF interface, and
an SDIO interface.
This patch adds supports for the Marvell DB-88F6281-BP Development
Board and the RD-88F6192-NAS and the RD-88F6281 Reference Designs,
enabling support for the PCIe interface, the USB interface, the
ethernet interfaces, the SATA interfaces, the TWSI interfaces, the
UARTs, and the NAND controller.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
2008-06-22 22:45:06 +02:00
/*
* arch / arm / mach - kirkwood / irq . c
*
* Kirkwood IRQ handling .
*
* This file is licensed under the terms of the GNU General Public
* License version 2. This program is licensed " as is " without any
* warranty of any kind , whether express or implied .
*/
2011-07-26 10:53:52 +01:00
# include <linux/gpio.h>
[ARM] add Marvell Kirkwood (88F6000) SoC support
The Marvell Kirkwood (88F6000) is a family of ARM SoCs based on a
Shiva CPU core, and features a DDR2 controller, a x1 PCIe interface,
a USB 2.0 interface, a SPI controller, a crypto accelerator, a TS
interface, and IDMA/XOR engines, and depending on the model, also
features one or two Gigabit Ethernet interfaces, two SATA II
interfaces, one or two TWSI interfaces, one or two UARTs, a
TDM/SLIC interface, a NAND controller, an I2S/SPDIF interface, and
an SDIO interface.
This patch adds supports for the Marvell DB-88F6281-BP Development
Board and the RD-88F6192-NAS and the RD-88F6281 Reference Designs,
enabling support for the PCIe interface, the USB interface, the
ethernet interfaces, the SATA interfaces, the TWSI interfaces, the
UARTs, and the NAND controller.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
2008-06-22 22:45:06 +02:00
# include <linux/kernel.h>
# include <linux/irq.h>
2012-09-11 14:27:19 +02:00
# include <linux/io.h>
2009-04-22 20:08:17 +01:00
# include <mach/bridge-regs.h>
2012-08-29 10:16:55 -05:00
# include <plat/orion-gpio.h>
2008-08-09 13:44:58 +02:00
# include <plat/irq.h>
2012-10-20 13:23:15 +02:00
# include "common.h"
[ARM] add Marvell Kirkwood (88F6000) SoC support
The Marvell Kirkwood (88F6000) is a family of ARM SoCs based on a
Shiva CPU core, and features a DDR2 controller, a x1 PCIe interface,
a USB 2.0 interface, a SPI controller, a crypto accelerator, a TS
interface, and IDMA/XOR engines, and depending on the model, also
features one or two Gigabit Ethernet interfaces, two SATA II
interfaces, one or two TWSI interfaces, one or two UARTs, a
TDM/SLIC interface, a NAND controller, an I2S/SPDIF interface, and
an SDIO interface.
This patch adds supports for the Marvell DB-88F6281-BP Development
Board and the RD-88F6192-NAS and the RD-88F6281 Reference Designs,
enabling support for the PCIe interface, the USB interface, the
ethernet interfaces, the SATA interfaces, the TWSI interfaces, the
UARTs, and the NAND controller.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
2008-06-22 22:45:06 +02:00
2012-06-27 13:40:04 +02:00
static int __initdata gpio0_irqs [ 4 ] = {
IRQ_KIRKWOOD_GPIO_LOW_0_7 ,
IRQ_KIRKWOOD_GPIO_LOW_8_15 ,
IRQ_KIRKWOOD_GPIO_LOW_16_23 ,
IRQ_KIRKWOOD_GPIO_LOW_24_31 ,
} ;
2008-10-20 01:51:04 +02:00
2012-06-27 13:40:04 +02:00
static int __initdata gpio1_irqs [ 4 ] = {
IRQ_KIRKWOOD_GPIO_HIGH_0_7 ,
IRQ_KIRKWOOD_GPIO_HIGH_8_15 ,
IRQ_KIRKWOOD_GPIO_HIGH_16_23 ,
0 ,
} ;
2008-10-20 01:51:04 +02:00
[ARM] add Marvell Kirkwood (88F6000) SoC support
The Marvell Kirkwood (88F6000) is a family of ARM SoCs based on a
Shiva CPU core, and features a DDR2 controller, a x1 PCIe interface,
a USB 2.0 interface, a SPI controller, a crypto accelerator, a TS
interface, and IDMA/XOR engines, and depending on the model, also
features one or two Gigabit Ethernet interfaces, two SATA II
interfaces, one or two TWSI interfaces, one or two UARTs, a
TDM/SLIC interface, a NAND controller, an I2S/SPDIF interface, and
an SDIO interface.
This patch adds supports for the Marvell DB-88F6281-BP Development
Board and the RD-88F6192-NAS and the RD-88F6281 Reference Designs,
enabling support for the PCIe interface, the USB interface, the
ethernet interfaces, the SATA interfaces, the TWSI interfaces, the
UARTs, and the NAND controller.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
2008-06-22 22:45:06 +02:00
void __init kirkwood_init_irq ( void )
{
2012-09-11 14:27:19 +02:00
orion_irq_init ( 0 , IRQ_VIRT_BASE + IRQ_MASK_LOW_OFF ) ;
orion_irq_init ( 32 , IRQ_VIRT_BASE + IRQ_MASK_HIGH_OFF ) ;
2008-10-20 01:51:04 +02:00
/*
2010-12-14 12:54:03 +01:00
* Initialize gpiolib for GPIOs 0 - 49.
2008-10-20 01:51:04 +02:00
*/
2012-09-11 14:27:19 +02:00
orion_gpio_init ( NULL , 0 , 32 , GPIO_LOW_VIRT_BASE , 0 ,
2012-06-27 13:40:04 +02:00
IRQ_KIRKWOOD_GPIO_START , gpio0_irqs ) ;
2012-09-11 14:27:19 +02:00
orion_gpio_init ( NULL , 32 , 18 , GPIO_HIGH_VIRT_BASE , 0 ,
2012-06-27 13:40:04 +02:00
IRQ_KIRKWOOD_GPIO_START + 32 , gpio1_irqs ) ;
[ARM] add Marvell Kirkwood (88F6000) SoC support
The Marvell Kirkwood (88F6000) is a family of ARM SoCs based on a
Shiva CPU core, and features a DDR2 controller, a x1 PCIe interface,
a USB 2.0 interface, a SPI controller, a crypto accelerator, a TS
interface, and IDMA/XOR engines, and depending on the model, also
features one or two Gigabit Ethernet interfaces, two SATA II
interfaces, one or two TWSI interfaces, one or two UARTs, a
TDM/SLIC interface, a NAND controller, an I2S/SPDIF interface, and
an SDIO interface.
This patch adds supports for the Marvell DB-88F6281-BP Development
Board and the RD-88F6192-NAS and the RD-88F6281 Reference Designs,
enabling support for the PCIe interface, the USB interface, the
ethernet interfaces, the SATA interfaces, the TWSI interfaces, the
UARTs, and the NAND controller.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
2008-06-22 22:45:06 +02:00
}