mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
2eecb47776
Define the nand and its partitions in DT and remove them from cmdline Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
59 lines
1.2 KiB
C
59 lines
1.2 KiB
C
/*
|
|
* arch/arm/mach-kirkwood/board-iconnect.c
|
|
*
|
|
* Iomega i-connect Board Setup
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_address.h>
|
|
#include <linux/of_fdt.h>
|
|
#include <linux/of_irq.h>
|
|
#include <linux/of_platform.h>
|
|
#include <linux/mv643xx_eth.h>
|
|
#include <linux/gpio.h>
|
|
#include <asm/mach/arch.h>
|
|
#include <mach/kirkwood.h>
|
|
#include "common.h"
|
|
#include "mpp.h"
|
|
|
|
static struct mv643xx_eth_platform_data iconnect_ge00_data = {
|
|
.phy_addr = MV643XX_ETH_PHY_ADDR(11),
|
|
};
|
|
|
|
static unsigned int iconnect_mpp_config[] __initdata = {
|
|
MPP12_GPIO,
|
|
MPP35_GPIO,
|
|
MPP41_GPIO,
|
|
MPP42_GPIO,
|
|
MPP43_GPIO,
|
|
MPP44_GPIO,
|
|
MPP45_GPIO,
|
|
MPP46_GPIO,
|
|
MPP47_GPIO,
|
|
MPP48_GPIO,
|
|
0
|
|
};
|
|
|
|
void __init iconnect_init(void)
|
|
{
|
|
kirkwood_mpp_conf(iconnect_mpp_config);
|
|
|
|
kirkwood_ehci_init();
|
|
kirkwood_ge00_init(&iconnect_ge00_data);
|
|
}
|
|
|
|
static int __init iconnect_pci_init(void)
|
|
{
|
|
if (of_machine_is_compatible("iom,iconnect"))
|
|
kirkwood_pcie_init(KW_PCIE0);
|
|
return 0;
|
|
}
|
|
subsys_initcall(iconnect_pci_init);
|