2 * Generic AR71xx machine setup
4 * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/spi/spi.h>
15 #include <linux/spi/flash.h>
17 #include <asm/mips_machine.h>
18 #include <asm/mach-ar71xx/ar71xx.h>
19 #include <asm/mach-ar71xx/pci.h>
20 #include <asm/mach-ar71xx/platform.h>
22 static struct spi_board_info ar71xx_generic_spi_info
[] = {
26 .max_speed_hz
= 25000000,
31 static struct ar71xx_pci_irq ar71xx_generic_pci_irqs
[] __initdata
= {
35 .irq
= AR71XX_PCI_IRQ_DEV0
,
39 .irq
= AR71XX_PCI_IRQ_DEV1
,
43 .irq
= AR71XX_PCI_IRQ_DEV2
,
47 static void __init
ar71xx_generic_init(void)
49 ar71xx_add_device_spi(NULL
, ar71xx_generic_spi_info
,
50 ARRAY_SIZE(ar71xx_generic_spi_info
));
52 ar71xx_add_device_mdio(0xffe0ffff);
53 ar71xx_add_device_eth(0, PHY_INTERFACE_MODE_MII
, 0x000f0000);
54 ar71xx_add_device_eth(1, PHY_INTERFACE_MODE_RMII
, 0x00100000);
56 ar71xx_add_device_usb();
58 ar71xx_pci_init(ARRAY_SIZE(ar71xx_generic_pci_irqs
),
59 ar71xx_generic_pci_irqs
);
62 MIPS_MACHINE(MACH_AR71XX_GENERIC
, "Generic AR71xx board", ar71xx_generic_init
);