996924a0aa3ab3e5448c2e7eb5904afe3b8cc0ef
[openwrt/openwrt.git] / target / linux / ar71xx / files / include / asm-mips / mach-ar71xx / platform.h
1 /*
2 * Atheros AR71xx SoC specific platform definitions
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 #ifndef __ASM_MACH_AR71XX_PLATFORM_H
13 #define __ASM_MACH_AR71XX_PLATFORM_H
14
15 #include <linux/if_ether.h>
16 #include <linux/skbuff.h>
17 #include <linux/phy.h>
18 #include <linux/spi/spi.h>
19 #include <linux/leds.h>
20
21 struct ag71xx_platform_data {
22 u32 reset_bit;
23 u32 flush_reg;
24 u32 phy_mask;
25 phy_interface_t phy_if_mode;
26 u32 mii_if;
27 u8 mac_addr[ETH_ALEN];
28 };
29
30 struct ag71xx_mdio_platform_data {
31 u32 phy_mask;
32 };
33
34 struct ar71xx_spi_platform_data {
35 unsigned bus_num;
36 unsigned num_chipselect;
37 u32 (*get_ioc_base)(u8 chip_select, int cs_high, int is_on);
38 };
39
40 #define AR71XX_SPI_CS_INACTIVE 0
41 #define AR71XX_SPI_CS_ACTIVE 1
42
43 extern void ar71xx_add_device_spi(struct ar71xx_spi_platform_data *pdata,
44 struct spi_board_info const *info,
45 unsigned n) __init;
46
47 extern void ar71xx_set_mac_base(char *mac_str) __init;
48 extern void ar71xx_add_device_eth(unsigned int id, phy_interface_t phy_if_mode,
49 u32 phy_mask) __init;
50
51 extern void ar71xx_add_device_mdio(u32 phy_mask) __init;
52
53 extern void ar71xx_add_device_leds_gpio(int id,
54 unsigned num_leds,
55 struct gpio_led *leds) __init;
56
57 #endif /* __ASM_MACH_AR71XX_PLATFORM_H */