add Phicomm K2T support

This commit is contained in:
coolsnowwolf 2018-06-08 11:41:48 +08:00
parent ef299a8ec1
commit 91f28ecb47
12 changed files with 226 additions and 0 deletions

View File

@ -413,6 +413,11 @@ hornet-ub-x2)
ucidef_set_led_wlan "wlan" "WLAN" "alfa:blue:wlan" "phy0tpt"
ucidef_set_led_usbdev "usb" "USB" "alfa:blue:usb" "1-1"
;;
k2t)
ucidef_set_led_switch "blue" "WAN(blue)" "$board:blue:lan" "switch0" "0x10"
ucidef_set_led_default "yellow" "STATUS(yellow)" "$board:yellow:lan" "1"
ucidef_set_led_default "red" "RUNNING(red)" "$board:red:lan" "0"
;;
lan-turtle)
ucidef_set_led_netdev "wan" "WAN" "$board:orange:system" "eth1"
;;

View File

@ -197,6 +197,10 @@ ar71xx_setup_interfaces()
ucidef_add_switch "switch0" \
"0@eth0" "1:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "2:wan"
;;
k2t)
ucidef_add_switch "switch0" \
"0@eth0" "3:lan:1" "5:lan:2" "4:wan"
;;
ap132|\
ap136|\
ap152|\

View File

@ -259,6 +259,9 @@ get_status_led() {
jwap230)
status_led="$board:green:led1"
;;
k2t)
status_led="$board:red:lan"
;;
lan-turtle)
status_led="$board:orange:system"
;;

View File

@ -160,6 +160,12 @@ case "$FIRMWARE" in
;;
"ath10k/pre-cal-pci-0000:00:00.0.bin")
case $board in
k2t)
ath10kcal_extract "art" 20480 12064
ath10kcal_patch_mac $(macaddr_add $(cat /dev/mtd1 | grep -o wan_mac.* | cut -d\" -f3) +2)
ln -sf /lib/firmware/ath10k/pre-cal-pci-0000\:00\:00.0.bin \
/lib/firmware/ath10k/QCA9888/hw2.0/board.bin
;;
archer-c58-v1|\
archer-c59-v1|\
archer-c60-v1|\

View File

@ -461,6 +461,9 @@ ar71xx_board_detect() {
*"AP152 reference board")
name="ap152"
;;
*"Phicomm K2T")
name="k2t"
;;
*"AP531B0")
name="ap531b0"
;;

View File

@ -323,6 +323,14 @@ platform_check_image() {
return 1
}
return 0
;;
k2t)
[ "$magic_long" != "27051956" ] && {
echo "Invalid image type."
return 1
}
return 0
;;
alfa-ap96|\

View File

@ -131,6 +131,7 @@ CONFIG_ATH79=y
# CONFIG_ATH79_MACH_JA76PF is not set
# CONFIG_ATH79_MACH_JWAP003 is not set
# CONFIG_ATH79_MACH_JWAP230 is not set
# CONFIG_ATH79_MACH_K2T is not set
# CONFIG_ATH79_MACH_LAN_TURTLE is not set
# CONFIG_ATH79_MACH_LIMA is not set
# CONFIG_ATH79_MACH_MC_MAC1200R is not set

View File

@ -2357,3 +2357,14 @@ config ATH79_MACH_FRITZ300E
select ATH79_DEV_GPIO_BUTTONS
select ATH79_DEV_LEDS_GPIO
select ATH79_DEV_M25P80
config ATH79_MACH_K2T
bool "Phicomm K2T support"
select SOC_QCA956X
select ATH79_DEV_AP9X_PCI if PCI
select ATH79_DEV_ETH
select ATH79_DEV_GPIO_BUTTONS
select ATH79_DEV_LEDS_GPIO
select ATH79_DEV_M25P80
select ATH79_DEV_WMAC
select ATH79_DEV_USB

View File

@ -141,6 +141,7 @@ obj-$(CONFIG_ATH79_MACH_HORNET_UB) += mach-hornet-ub.o
obj-$(CONFIG_ATH79_MACH_JA76PF) += mach-ja76pf.o
obj-$(CONFIG_ATH79_MACH_JWAP003) += mach-jwap003.o
obj-$(CONFIG_ATH79_MACH_JWAP230) += mach-jwap230.o
obj-$(CONFIG_ATH79_MACH_K2T) += mach-k2t.o
obj-$(CONFIG_ATH79_MACH_LAN_TURTLE) += mach-lan-turtle.o
obj-$(CONFIG_ATH79_MACH_LIMA) += mach-lima.o
obj-$(CONFIG_ATH79_MACH_MC_MAC1200R) += mach-mc-mac1200r.o

View File

@ -0,0 +1,169 @@
/*
* Phicomm k2t support
*
* Copyright (c) 2012 Qualcomm Atheros
* Copyright (c) 2012-2013 Gabor Juhos <juhosg@openwrt.org>
* Copyright (c) 2018 wheretoteardown <yhk23665@gmail.com>
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/platform_device.h>
#include <linux/ath9k_platform.h>
#include <asm/mach-ath79/ath79.h>
#include <asm/mach-ath79/irq.h>
#include <asm/mach-ath79/ar71xx_regs.h>
#include <linux/ar8216_platform.h>
#include "common.h"
#include "pci.h"
#include "dev-ap9x-pci.h"
#include "dev-eth.h"
#include "dev-gpio-buttons.h"
#include "dev-leds-gpio.h"
#include "dev-m25p80.h"
#include "dev-wmac.h"
#include "dev-usb.h"
#include "machtypes.h"
#include "nvram.h"
#define K2T_GPIO_LED_BLUE 6
#define K2T_GPIO_LED_RED 7
#define K2T_GPIO_LED_YELLOW 8
#define K2T_GPIO_BTN_RESET 2
#define K2T_KEYS_POLL_INTERVAL 20 /* msecs */
#define K2T_KEYS_DEBOUNCE_INTERVAL (3 * K2T_KEYS_POLL_INTERVAL)
#define K2T_MAC0_OFFSET 0
#define K2T_MAC1_OFFSET 6
#define K2T_WMAC_OFFSET 12
#define K2T_WMAC_CALDATA_OFFSET 0x1000
#define K2T_PCIE_CALDATA_OFFSET 0x5000
static struct gpio_led k2t_leds_gpio[] __initdata = {
{
.name = "k2t:blue",
.gpio = K2T_GPIO_LED_BLUE,
.active_low = 1,
},
{
.name = "k2t:red",
.gpio = K2T_GPIO_LED_RED,
.active_low = 1,
},
{
.name = "k2t:yellow",
.gpio = K2T_GPIO_LED_YELLOW,
.active_low = 1,
},
};
static struct gpio_keys_button K2T_GPIO_keys[] __initdata = {
{
.desc = "Reset button",
.type = EV_KEY,
.code = KEY_RESTART,
.debounce_interval = K2T_KEYS_DEBOUNCE_INTERVAL,
.gpio = K2T_GPIO_BTN_RESET,
.active_low = 1,
}
};
static struct ar8327_pad_cfg k2t_qca8337_pad0_cfg = {
.mode = AR8327_PAD_MAC_SGMII,
.txclk_delay_en = true,
.rxclk_delay_en = true,
.txclk_delay_sel = AR8327_CLK_DELAY_SEL1,
.rxclk_delay_sel = AR8327_CLK_DELAY_SEL2,
};
static struct ar8327_platform_data k2t_qca8337_data = {
.pad0_cfg = &k2t_qca8337_pad0_cfg,
.pad6_cfg = &k2t_qca8337_pad6_cfg,
.port0_cfg = {
.force_link = 1,
.speed = AR8327_PORT_SPEED_1000,
.duplex = 1,
.txpause = 1,
.rxpause = 1,
},
.port6_cfg = {
.force_link = 1,
.speed = AR8327_PORT_SPEED_1000,
.duplex = 1,
.txpause = 1,
.rxpause = 1,
},
};
static struct mdio_board_info k2t_mdio0_info[] = {
{
.bus_id = "ag71xx-mdio.0",
.phy_addr = 0,
.platform_data = &k2t_qca8337_data,
},
};
static void __init k2t_setup(void)
{
u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
ath79_register_m25p80(NULL);
ath79_register_leds_gpio(-1, ARRAY_SIZE(k2t_leds_gpio),
k2t_leds_gpio);
ath79_register_gpio_keys_polled(-1, K2T_KEYS_POLL_INTERVAL,
ARRAY_SIZE(K2T_GPIO_keys),
K2T_GPIO_keys);
ath79_register_usb();
ath79_register_pci();
ath79_register_wmac(art + K2T_WMAC_CALDATA_OFFSET, art + K2T_WMAC_OFFSET);
ath79_setup_qca956x_eth_cfg(QCA956X_ETH_CFG_RGMII_EN);
ath79_register_mdio(0, 0x0);
ath79_init_mac(ath79_eth0_data.mac_addr, art + K2T_MAC0_OFFSET, 0);
ath79_init_mac(ath79_eth1_data.mac_addr, art + K2T_MAC1_OFFSET, 0);
mdiobus_register_board_info(k2t_mdio0_info,
ARRAY_SIZE(k2t_mdio0_info));
/* GMAC0 is connected to the RMGII interface */
ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_SGMII;
ath79_eth0_data.phy_mask = BIT(0);
ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
ath79_eth0_pll_data.pll_1000 = 0x56000000;
ath79_register_eth(0);
/* GMAC1 is connected tot eh SGMII interface */
ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
ath79_eth1_data.speed = SPEED_1000;
ath79_eth1_data.duplex = DUPLEX_FULL;
ath79_eth1_pll_data.pll_1000 = 0x03000101;
ath79_register_eth(1);
}
MIPS_MACHINE(ATH79_MACH_K2T, "K2T", "Phicomm K2T", k2t_setup);

View File

@ -139,6 +139,7 @@ enum ath79_mach_type {
ATH79_MACH_JA76PF2, /* jjPlus JA76PF2 */
ATH79_MACH_JWAP003, /* jjPlus JWAP003 */
ATH79_MACH_JWAP230, /* jjPlus JWAP230 */
ATH79_MACH_K2T, /* Phicomm K2T */
ATH79_MACH_LAN_TURTLE, /* Hak5 LAN Turtle */
ATH79_MACH_LIMA, /* 8devices Lima */
ATH79_MACH_MC_MAC1200R, /* MERCURY MAC1200R */

View File

@ -1295,3 +1295,17 @@ define Device/fritz300e
append-rootfs | pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE)
endef
TARGET_DEVICES += fritz300e
define Device/k2t
DEVICE_TITLE := Phicomm K2T
DEVICE_PACKAGES := kmod-usb-core kmod-usb2 kmod-usb-storage \
kmod-ath9k kmod-ath10k ath10k-firmware-qca9888
BOARDNAME := K2T
SUPPORTED_DEVICES := k2t
DEVICE_PROFILE := K2T
IMAGES := sysupgrade.bin
IMAGE_SIZE := 15744k
CONSOLE := ttyATH0,115200
MTDPARTS := spi0.0:192k(u-boot)ro,64k(config)ro,320k(permanent),15744k(firmware),64k(art)ro
endef
TARGET_DEVICES += k2t