ar71xx: remove AP113 reference design board support
Due to flash size limitations, support for this board has not been functional for years Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
4c8a9b8e39
commit
30285facbe
@ -45,7 +45,6 @@ arduino-yun)
|
||||
ucidef_set_led_wlan "wlan" "WLAN" "arduino:blue:wlan" "phy0tpt"
|
||||
ucidef_set_led_usbdev "usb" "USB" "arduino:white:usb" "1-1.1"
|
||||
;;
|
||||
ap113|\
|
||||
db120)
|
||||
ucidef_set_led_usbdev "usb" "USB" "$board:green:usb" "1-1"
|
||||
;;
|
||||
|
@ -146,7 +146,6 @@ ar71xx_setup_interfaces()
|
||||
ubnt-unifi-outdoor)
|
||||
ucidef_set_interface_lan "eth0 eth1"
|
||||
;;
|
||||
ap113|\
|
||||
pb92|\
|
||||
wzr-hp-g300nh2)
|
||||
ucidef_add_switch "switch0" \
|
||||
|
@ -48,7 +48,6 @@ case "$board" in
|
||||
dir-825-c1|\
|
||||
wzr-hp-g300nh2|\
|
||||
pb92|\
|
||||
ap113|\
|
||||
tl-wdr4300|\
|
||||
tl-wr1041n-v2|\
|
||||
wrt160nl|\
|
||||
|
@ -435,9 +435,6 @@ ar71xx_board_detect() {
|
||||
*"Arduino Yun")
|
||||
name="arduino-yun"
|
||||
;;
|
||||
*AP113)
|
||||
name="ap113"
|
||||
;;
|
||||
*"AP121 reference board")
|
||||
name="ap121"
|
||||
;;
|
||||
|
@ -261,7 +261,6 @@ platform_check_image() {
|
||||
;;
|
||||
alfa-ap96|\
|
||||
alfa-nx|\
|
||||
ap113|\
|
||||
ap121-mini|\
|
||||
ap121|\
|
||||
ap135-020|\
|
||||
|
@ -40,7 +40,6 @@ CONFIG_ATH79_MACH_ALL0315N=y
|
||||
CONFIG_ATH79_MACH_ANTMINER_S1=y
|
||||
CONFIG_ATH79_MACH_ANTMINER_S3=y
|
||||
CONFIG_ATH79_MACH_ANTROUTER_R1=y
|
||||
CONFIG_ATH79_MACH_AP113=y
|
||||
CONFIG_ATH79_MACH_AP121=y
|
||||
CONFIG_ATH79_MACH_AP132=y
|
||||
CONFIG_ATH79_MACH_AP136=y
|
||||
|
@ -103,16 +103,6 @@ config ATH79_MACH_ARDUINO_YUN
|
||||
Say 'Y' here if you want your kernel to support the
|
||||
Arduino Yun.
|
||||
|
||||
config ATH79_MACH_AP113
|
||||
bool "Atheros AP113 board support"
|
||||
select SOC_AR724X
|
||||
select ATH79_DEV_M25P80
|
||||
select ATH79_DEV_PB9X_PCI if PCI
|
||||
select ATH79_DEV_GPIO_BUTTONS
|
||||
select ATH79_DEV_LEDS_GPIO
|
||||
select ATH79_DEV_USB
|
||||
select ATH79_DEV_ETH
|
||||
|
||||
config ATH79_MACH_AP132
|
||||
bool "Atheros AP132 reference board"
|
||||
select SOC_QCA955X
|
||||
|
@ -46,7 +46,6 @@ obj-$(CONFIG_ATH79_MACH_ALL0315N) += mach-all0315n.o
|
||||
obj-$(CONFIG_ATH79_MACH_ANTMINER_S1) += mach-antminer-s1.o
|
||||
obj-$(CONFIG_ATH79_MACH_ANTMINER_S3) += mach-antminer-s3.o
|
||||
obj-$(CONFIG_ATH79_MACH_ANTROUTER_R1) += mach-antrouter-r1.o
|
||||
obj-$(CONFIG_ATH79_MACH_AP113) += mach-ap113.o
|
||||
obj-$(CONFIG_ATH79_MACH_AP121) += mach-ap121.o
|
||||
obj-$(CONFIG_ATH79_MACH_AP132) += mach-ap132.o
|
||||
obj-$(CONFIG_ATH79_MACH_AP136) += mach-ap136.o
|
||||
|
@ -1,84 +0,0 @@
|
||||
/*
|
||||
* Atheros AP113 board support
|
||||
*
|
||||
* Copyright (C) 2011 Florian Fainelli <florian@openwrt.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 as published
|
||||
* by the Free Software Foundation.
|
||||
*/
|
||||
|
||||
#include "dev-eth.h"
|
||||
#include "dev-gpio-buttons.h"
|
||||
#include "dev-leds-gpio.h"
|
||||
#include "dev-m25p80.h"
|
||||
#include "pci.h"
|
||||
#include "dev-usb.h"
|
||||
#include "machtypes.h"
|
||||
|
||||
#define AP113_GPIO_LED_USB 0
|
||||
#define AP113_GPIO_LED_STATUS 1
|
||||
#define AP113_GPIO_LED_ST 11
|
||||
|
||||
#define AP113_GPIO_BTN_JUMPSTART 12
|
||||
|
||||
#define AP113_KEYS_POLL_INTERVAL 20 /* msecs */
|
||||
#define AP113_KEYS_DEBOUNCE_INTERVAL (3 * AP113_KEYS_POLL_INTERVAL)
|
||||
|
||||
static struct gpio_led ap113_leds_gpio[] __initdata = {
|
||||
{
|
||||
.name = "ap113:green:usb",
|
||||
.gpio = AP113_GPIO_LED_USB,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "ap113:green:status",
|
||||
.gpio = AP113_GPIO_LED_STATUS,
|
||||
.active_low = 1,
|
||||
},
|
||||
{
|
||||
.name = "ap113:green:st",
|
||||
.gpio = AP113_GPIO_LED_ST,
|
||||
.active_low = 1,
|
||||
}
|
||||
};
|
||||
|
||||
static struct gpio_keys_button ap113_gpio_keys[] __initdata = {
|
||||
{
|
||||
.desc = "jumpstart button",
|
||||
.type = EV_KEY,
|
||||
.code = KEY_WPS_BUTTON,
|
||||
.debounce_interval = AP113_KEYS_DEBOUNCE_INTERVAL,
|
||||
.gpio = AP113_GPIO_BTN_JUMPSTART,
|
||||
.active_low = 1,
|
||||
},
|
||||
};
|
||||
|
||||
static void __init ap113_setup(void)
|
||||
{
|
||||
u8 *mac = (u8 *) KSEG1ADDR(0x1fff0000);
|
||||
|
||||
ath79_register_m25p80(NULL);
|
||||
|
||||
ath79_register_mdio(0, ~BIT(0));
|
||||
ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
|
||||
ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
|
||||
ath79_eth0_data.speed = SPEED_1000;
|
||||
ath79_eth0_data.duplex = DUPLEX_FULL;
|
||||
ath79_eth0_data.phy_mask = BIT(0);
|
||||
|
||||
ath79_register_eth(0);
|
||||
|
||||
ath79_register_gpio_keys_polled(-1, AP113_KEYS_POLL_INTERVAL,
|
||||
ARRAY_SIZE(ap113_gpio_keys),
|
||||
ap113_gpio_keys);
|
||||
ath79_register_leds_gpio(-1, ARRAY_SIZE(ap113_leds_gpio),
|
||||
ap113_leds_gpio);
|
||||
|
||||
ath79_register_pci();
|
||||
|
||||
ath79_register_usb();
|
||||
}
|
||||
|
||||
MIPS_MACHINE(ATH79_MACH_AP113, "AP113", "Atheros AP113",
|
||||
ap113_setup);
|
@ -26,7 +26,6 @@ enum ath79_mach_type {
|
||||
ATH79_MACH_ANTMINER_S1, /* Antminer S1 */
|
||||
ATH79_MACH_ANTMINER_S3, /* Antminer S3 */
|
||||
ATH79_MACH_ANTROUTER_R1, /* Antrouter R1 */
|
||||
ATH79_MACH_AP113, /* Atheros AP113 reference board */
|
||||
ATH79_MACH_AP121, /* Atheros AP121 reference board */
|
||||
ATH79_MACH_AP121_MINI, /* Atheros AP121-MINI reference board */
|
||||
ATH79_MACH_AP132, /* Atheros AP132 reference board */
|
||||
|
@ -4,7 +4,6 @@
|
||||
# CONFIG_ATH79_MACH_ALL0258N is not set
|
||||
# CONFIG_ATH79_MACH_ALL0315N is not set
|
||||
# CONFIG_ATH79_MACH_ANTMINER_S1 is not set
|
||||
# CONFIG_ATH79_MACH_AP113 is not set
|
||||
# CONFIG_ATH79_MACH_AP121 is not set
|
||||
# CONFIG_ATH79_MACH_AP132 is not set
|
||||
# CONFIG_ATH79_MACH_AP136 is not set
|
||||
|
@ -3,7 +3,6 @@
|
||||
# CONFIG_ATH79_MACH_ALFA_NX is not set
|
||||
# CONFIG_ATH79_MACH_ALL0258N is not set
|
||||
# CONFIG_ATH79_MACH_ALL0315N is not set
|
||||
# CONFIG_ATH79_MACH_AP113 is not set
|
||||
# CONFIG_ATH79_MACH_AP121 is not set
|
||||
# CONFIG_ATH79_MACH_AP132 is not set
|
||||
# CONFIG_ATH79_MACH_AP136 is not set
|
||||
|
Loading…
Reference in New Issue
Block a user