[ar71xx] rename platform.c to devices.c
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-aw-nr580.c
1 /*
2 * AzureWave AW-NR580 board 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/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
17 #include <linux/input.h>
18
19 #include <asm/mips_machine.h>
20 #include <asm/mach-ar71xx/ar71xx.h>
21 #include <asm/mach-ar71xx/pci.h>
22 #include <asm/mach-ar71xx/platform.h>
23
24 static struct spi_board_info aw_nr580_spi_info[] = {
25 {
26 .bus_num = 0,
27 .chip_select = 0,
28 .max_speed_hz = 25000000,
29 .modalias = "m25p80",
30 }
31 };
32
33 static void __init aw_nr580_setup(void)
34 {
35 ar71xx_add_device_spi(NULL, aw_nr580_spi_info,
36 ARRAY_SIZE(aw_nr580_spi_info));
37 }
38
39 MIPS_MACHINE(AR71XX_MACH_AW_NR580, "AzureWave AW-NR580", aw_nr580_setup);