[ar71xx] prepare for RouterStation support
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-routerstation.c
1 /*
2 * Ubiquiti RouterStation support
3 *
4 * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
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.
10 */
11
12 #include <linux/platform_device.h>
13 #include <linux/spi/spi.h>
14 #include <linux/spi/flash.h>
15
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>
20
21 static struct spi_board_info routerstation_spi_info[] = {
22 {
23 .bus_num = 0,
24 .chip_select = 0,
25 .max_speed_hz = 25000000,
26 .modalias = "m25p80",
27 }
28 };
29
30 static void __init routerstation_setup(void)
31 {
32 ar71xx_add_device_spi(NULL, routerstation_spi_info,
33 ARRAY_SIZE(routerstation_spi_info));
34 }
35
36 MIPS_MACHINE(AR71XX_MACH_ROUTERSTATION, "Ubiquiti RouterStation",
37 routerstation_setup);