diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2013-03-25 14:18:32 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2013-03-25 14:18:32 +0000 |
commit | d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30 (patch) | |
tree | 434d439eed20bfad339ef72cac047972faaad579 /target/linux/gemini/patches/122-arm-gemini-wbd111-register-ethernet.patch | |
parent | 88c5f2bfbda358cf0c0a9a8da6c92cbe285ed53d (diff) | |
download | upstream-d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30.tar.gz upstream-d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30.tar.bz2 upstream-d1d59cf7e0ec61784d1e3e0629f10cecc9bd2d30.zip |
[gemini]: upgrade to 3.9-rc4, disable unsupported boards
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36128 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/gemini/patches/122-arm-gemini-wbd111-register-ethernet.patch')
-rw-r--r-- | target/linux/gemini/patches/122-arm-gemini-wbd111-register-ethernet.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/target/linux/gemini/patches/122-arm-gemini-wbd111-register-ethernet.patch b/target/linux/gemini/patches/122-arm-gemini-wbd111-register-ethernet.patch new file mode 100644 index 0000000000..1a02b558dd --- /dev/null +++ b/target/linux/gemini/patches/122-arm-gemini-wbd111-register-ethernet.patch @@ -0,0 +1,41 @@ +--- a/arch/arm/mach-gemini/board-wbd111.c ++++ b/arch/arm/mach-gemini/board-wbd111.c +@@ -22,9 +22,29 @@ + #include <asm/mach/arch.h> + #include <asm/mach/time.h> + ++#include <mach/gmac.h> + + #include "common.h" + ++static struct mdio_gpio_platform_data wbd111_mdio = { ++ .mdc = 22, ++ .mdio = 21, ++ .phy_mask = ~(1 << 1), ++}; ++ ++static struct platform_device wbd111_phy_device = { ++ .name = "mdio-gpio", ++ .id = 0, ++ .dev = { ++ .platform_data = &wbd111_mdio, ++ }, ++}; ++ ++static struct gemini_gmac_platform_data gmac_data = { ++ .bus_id[0] = "gpio-0:01", ++ .interface[0] = PHY_INTERFACE_MODE_MII, ++}; ++ + static struct gpio_keys_button wbd111_keys[] = { + { + .code = KEY_SETUP, +@@ -123,6 +143,8 @@ static void __init wbd111_init(void) + platform_device_register(&wbd111_keys_device); + platform_register_rtc(); + platform_register_watchdog(); ++ platform_device_register(&wbd111_phy_device); ++ platform_register_ethernet(&gmac_data); + } + + MACHINE_START(WBD111, "Wiliboard WBD-111") |