2 * Compex WP543 board support
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/platform_device.h>
13 #include <linux/spi/spi.h>
14 #include <linux/spi/flash.h>
16 #include <asm/mips_machine.h>
17 #include <asm/mach-ar71xx/ar71xx.h>
18 #include <asm/mach-ar71xx/pci.h>
19 #include <asm/mach-ar71xx/platform.h>
21 static struct flash_platform_data wp543_flash_data
= {
22 /* TODO: add partition map */
25 static struct spi_board_info wp543_spi_info
[] = {
29 .max_speed_hz
= 25000000,
31 .platform_data
= &wp543_flash_data
,
35 static struct ar71xx_pci_irq wp543_pci_irqs
[] __initdata
= {
39 .irq
= AR71XX_PCI_IRQ_DEV0
,
43 .irq
= AR71XX_PCI_IRQ_DEV1
,
47 static void __init
wp543_setup(void)
49 ar71xx_add_device_spi(NULL
, wp543_spi_info
, ARRAY_SIZE(wp543_spi_info
));
51 ar71xx_add_device_mdio(0xfffffff7);
52 ar71xx_add_device_eth(0, PHY_INTERFACE_MODE_MII
, 0x00000008);
54 ar71xx_pci_init(ARRAY_SIZE(wp543_pci_irqs
), wp543_pci_irqs
);
57 MIPS_MACHINE(MACH_AR71XX_WP543
, "Compex WP543", wp543_setup
);