openwrt/target/linux/ath79/dts
Martin Kennedy af9dee336d ath79: add support for Meraki MR16
Port device support for Meraki MR16 from the ar71xx target to ath79.

Specifications:

  * AR7161 CPU, 16 MiB Flash, 64 MiB RAM
  * One PoE-capable Gigabit Ethernet Port
  * AR9220 / AR9223 (2x2 11an / 11n) WLAN

Installation:

  * Requires TFTP server at 192.168.1.101, w/ initramfs & sysupgrade .bins
  * Open shell case and connect a USB to TTL cable to upper serial headers
  * Power on the router; connect to U-boot over 115200-baud connection
  * Interrupt U-boot process to boot Openwrt by running:
       setenv bootcmd bootm 0xbf0a0000; saveenv;
       tftpboot 0c00000 <filename-of-initramfs-kernel>.bin;
       bootm 0c00000;
  * Copy sysupgrade image to /tmp on MR16
  * sysupgrade /tmp/<filename-of-sysupgrade>.bin

Notes:

  - There are two separate ARTs in the partition (offset 0x1000/0x5000 and
    0x11000/0x15000) in the OEM device. I suspect this is an OEM artifact;
    possibly used to configure the radios for different regions,
    circumstances or RF frontends. Since the ar71xx target uses the
    second offsets, use that second set (0x11000 and 0x15000) for the ART.

  - kmod-owl-loader is still required to load the ART partition into the
    driver.

  - The manner of storing MAC addresses is updated from ar71xx; it is
    at 0x66 of the 'config' partition, where it was discovered that the
    OEM firmware stores it. This is set as read-only. If you are
    migrating from ar71xx and used the method mentioned above to
    upgrade, use kmod-mtd-rw or UCI to add the MAC back in. One more
    method for doing this is described below.

  - Migrating directly from ar71xx has not been thoroughly tested, but
    one method has been used a couple of times with good success,
    migrating 18.06.2 to a full image produced as of this commit. Please
    note that these instructions are only for experienced users, and/or
    those still able to open their device up to flash it via the serial
    headers should anything go wrong.

    1) Install kmod-mtd-rw and uboot-envtools
    2) Run `insmod mtd-rw.ko i_want_a_brick=1`
    3) Modify /etc/fw_env.config to point to the u-boot-env partition.
       The file /etc/fw_env.config should contain:

       # MTD device   env offset  env size    sector size
       /dev/mtd1      0x00000     0x10000     0x10000

       See https://openwrt.org/docs/techref/bootloader/uboot.config
       for more details.

    4) Run `fw_printenv` to verify everything is correct, as per the
       link above.
    5) Run `fw_setenv bootcmd bootm 0xbf0a0000` to set a new boot address.
    6) Manually modify /lib/upgrade/common.sh's get_image function:
       Change ...

       cat "$from" 2>/dev/null | $cmd

       ... into ...

       (
         dd if=/dev/zero bs=1 count=$((0x66)) ; # Pad the first 102 bytes
         echo -ne '\x00\x18\x0a\x12\x34\x56'  ; # Add in MAC address
         dd if=/dev/zero bs=1 count=$((0x20000-0x66-0x6)) ; # Pad the rest
         cat "$from" 2>/dev/null | $cmd
       )

       ... which, during the upgrade process, will pad the image by
       128K of zeroes-plus-MAC-address, in order for the ar71xx's
       firmware partition -- which starts at 0xbf080000 -- to be
       instead aligned with the ath79 firmware partition, which
       starts 128K later at 0xbf0a0000.

    7) Copy the sysupgrade image into /tmp, as above
    8) Run `sysupgrade -F /tmp/<sysupgrade>.bin`, then wait

    Again, this may BRICK YOUR DEVICE, so make *sure* to have your
    serial cable handy.

Addenda:

  - The MR12 should be able to be migrated in a nearly identical manner as
    it shares much of its hardware with the MR16.

  - Thank-you Chris B for copious help with this port.

Signed-off-by: Martin Kennedy <hurricos@gmail.com>
[fix typo in compat message, drop art DT label,
move 05_fix-compat-version to subtarget]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2020-08-31 17:41:21 +02:00
..
ar724x.dtsi ath79: add QCA9550 reset sequence 2020-04-17 13:23:06 +02:00
ar724x_ubnt_xm.dtsi ath79: generalize ubnt_xm dtsi for ar7240 and ar7241 2020-03-18 13:45:57 +01:00
ar724x_ubnt_xm_outdoor.dtsi ath79: generalize ubnt_xm dtsi for ar7240 and ar7241 2020-03-18 13:45:57 +01:00
ar934x.dtsi ath79: rearrange nand node by register address 2020-07-02 21:34:37 +02:00
ar1022_iodata_wn-ag300dgr.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar1022_sitecom_wlr-7100.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar7100.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
ar7100_mikrotik_routerboard-4xx.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
ar7161_adtran_bsap1800-v2.dts ath79: add support for Bluesocket BSAP1880 board 2019-07-17 22:59:29 +02:00
ar7161_adtran_bsap1840.dts ath79: add support for Bluesocket BSAP1880 board 2019-07-17 22:59:29 +02:00
ar7161_adtran_bsap1880.dtsi treewide: remove dts-v1 identifier from DTSI files 2019-12-08 16:44:06 +01:00
ar7161_aruba_ap-105.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar7161_buffalo_wzr-hp-ag300h.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
ar7161_dlink_dir-825-b1.dts ath79: cosmetic fixes for partition node of D-Link DIR-825 B1 2020-07-30 21:43:56 +02:00
ar7161_jjplus_ja76pf2.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar7161_meraki_mr16.dts ath79: add support for Meraki MR16 2020-08-31 17:41:21 +02:00
ar7161_mikrotik_routerboard-493g.dts ath79: add support for MikroTik RouterBOARD 493G (rb4xx series) 2020-06-15 21:16:18 +02:00
ar7161_netgear_wndr.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
ar7161_netgear_wndr3700-v2.dts ath79: rename DTSI for Netgear WNDR devices based on ar7161 2020-06-11 01:44:13 +02:00
ar7161_netgear_wndr3700.dts ath79: rename DTSI for Netgear WNDR devices based on ar7161 2020-06-11 01:44:13 +02:00
ar7161_netgear_wndr3800.dts ath79: rename DTSI for Netgear WNDR devices based on ar7161 2020-06-11 01:44:13 +02:00
ar7161_netgear_wndr3800ch.dts ath79: rename DTSI for Netgear WNDR devices based on ar7161 2020-06-11 01:44:13 +02:00
ar7161_netgear_wndrmac-v1.dts ath79: add support for the Netgear WNDRMAC v1 2020-06-11 01:44:13 +02:00
ar7161_netgear_wndrmac-v2.dts ath79: add support for the Netgear WNDRMAC v2 2020-06-11 01:44:13 +02:00
ar7161_siemens_ws-ap3610.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
ar7161_ubnt_routerstation-pro.dts ath79: add syscon compatible property to ar7100 ethernet nodes 2018-09-06 21:35:53 +02:00
ar7161_ubnt_routerstation.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7161_ubnt_routerstation.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
ar7240.dtsi ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7240_buffalo_whr-g301n.dts ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7240_dlink_dir-615-e4.dts ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7240_netgear_wnr612-v2.dts ath79: WNR612v2: improve device support 2019-10-21 13:15:05 +02:00
ar7240_netgear_wnr612-v2.dtsi ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7240_netgear_wnr1000-v2.dts ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7240_on_n150r.dts ath79: WNR612v2: improve device support 2019-10-21 13:15:05 +02:00
ar7240_tplink.dtsi ath79: reorganize DTSI for ar7240 TP-Link devices 2020-02-11 14:30:58 +01:00
ar7240_tplink_tl-wa.dtsi ath79: fix syntax error in ar7240_tplink_tl-wa.dtsi 2020-08-17 18:26:55 +02:00
ar7240_tplink_tl-wa701nd-v1.dts ath79: add support for TP-Link TL-WA701ND/730RE/801ND/901ND v1 2020-02-21 13:55:33 +01:00
ar7240_tplink_tl-wa730re-v1.dts ath79: add support for TP-Link TL-WA701ND/730RE/801ND/901ND v1 2020-02-21 13:55:33 +01:00
ar7240_tplink_tl-wa801nd-v1.dts ath79: add support for TP-Link TL-WA701ND/730RE/801ND/901ND v1 2020-02-21 13:55:33 +01:00
ar7240_tplink_tl-wa830re-v1.dts ath79: add support for TP-Link TL-WA830RE v1 2020-02-11 14:31:05 +01:00
ar7240_tplink_tl-wa901nd-v1.dts ath79: add support for TP-Link TL-WA701ND/730RE/801ND/901ND v1 2020-02-21 13:55:33 +01:00
ar7240_tplink_tl-wr.dtsi ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7240_tplink_tl-wr740n-v1.dts ath79: reorganize DTSI for ar7240 TP-Link devices 2020-02-11 14:30:58 +01:00
ar7240_tplink_tl-wr740n-v3.dts ath79: reorganize DTSI for ar7240 TP-Link devices 2020-02-11 14:30:58 +01:00
ar7240_tplink_tl-wr741-v1.dts ath79: reorganize DTSI for ar7240 TP-Link devices 2020-02-11 14:30:58 +01:00
ar7240_tplink_tl-wr743nd-v1.dts ath79: reorganize DTSI for ar7240 TP-Link devices 2020-02-11 14:30:58 +01:00
ar7240_tplink_tl-wr841-v5.dts ath79: reorganize DTSI for ar7240 TP-Link devices 2020-02-11 14:30:58 +01:00
ar7240_tplink_tl-wr941-v4.dts ath79: reorganize DTSI for ar7240 TP-Link devices 2020-02-11 14:30:58 +01:00
ar7240_ubnt_bullet-m-ar7240.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241.dtsi ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7241_netgear_wnr2000-v3.dts ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7241_netgear_wnr2200-8m.dts ath79: add support for Netgear WNR2200 2019-11-01 21:14:55 +01:00
ar7241_netgear_wnr2200-16m.dts ath79: add support for Netgear WNR2200 2019-11-01 21:14:55 +01:00
ar7241_netgear_wnr2200.dtsi ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7241_tplink.dtsi ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7241_tplink_tl-mr3x20.dtsi ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar7241_tplink_tl-mr3220-v1.dts treewide: dts: Remove default-state=off property from all gpio LED nodes 2018-12-17 08:16:28 +01:00
ar7241_tplink_tl-mr3420-v1.dts treewide: dts: Remove default-state=off property from all gpio LED nodes 2018-12-17 08:16:28 +01:00
ar7241_tplink_tl-wr841-v7.dts ath79: rename TP-LINK to TP-Link 2019-02-14 16:56:14 +01:00
ar7241_tplink_tl-wr842n-v1.dts ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7241_ubnt_airrouter.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_bullet-m-ar7241.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_nanobridge-m.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_nanostation-loco-m.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_nanostation-m.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_picostation-m.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_powerbridge-m.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_rocket-m.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
ar7241_ubnt_unifi.dts ath79: ar724x: make sure builtin-switch is enabled in DT 2020-08-17 15:19:03 +02:00
ar7242.dtsi ath79: dts: drop "simple-mfd" for gmacs in SoC dtsi 2019-06-05 10:12:31 +02:00
ar7242_avm_fritz300e.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar7242_buffalo_bhr-4grv.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar7242_buffalo_wzr-bhr.dtsi treewide: remove dts-v1 identifier from DTSI files 2019-12-08 16:44:06 +01:00
ar7242_buffalo_wzr-hp-g302h-a1a0.dts ath79: replace generic button node names 2019-11-07 17:13:18 +01:00
ar7242_buffalo_wzr-hp-g450h.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar7242_tplink_tl-wr2543-v1.dts ath79: replace tab after DT label by space 2020-05-28 00:48:39 +02:00
ar7242_ubnt_edgeswitch-5xp.dts ath79: add support for Ubiquiti EdgeSwitch/ToughSwitch 5XP 2020-01-14 09:38:32 +01:00
ar7242_ubnt_edgeswitch-8xp.dts ath79: add generic dtsi for Ubiquiti SW boards 2020-01-14 09:38:32 +01:00
ar7242_ubnt_sw.dtsi ath79: add generic dtsi for Ubiquiti SW boards 2020-01-14 09:38:32 +01:00
ar9132.dtsi ath79: ag71xx: apply interface mode to MII0/1_CTRL on ar71xx/ar913x 2018-08-28 11:26:53 +02:00
ar9132_tplink_tl-wa901nd-v2.dts ath79: fix TP-Link TL-WA901ND v2 PHY stuck in reset 2020-02-23 16:17:59 +01:00
ar9132_tplink_tl-wr941-v2.dts ath79: fix dsa binding for TP-Link TL-WR941ND v2 2020-07-12 16:17:28 +08:00
ar9132_tplink_tl-wr1043nd-v1.dts ath79: enable m25p,fast-read for tplink,tl-wr1043-v1 2020-04-14 10:47:23 +08:00
ar9330.dtsi ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9330_dlink_dir-505.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9330_glinet_gl-ar150.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9330_pqi_air-pen.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331.dtsi ath79: add tl-mr3020-v1 support 2018-06-08 12:19:49 +02:00
ar9331_8dev_carambola2.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_alfa-network_ap121f.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_arduino_yun.dts ath79: add support for Arduino Yun 2020-07-08 23:22:30 +02:00
ar9331_embeddedwireless_dorin.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_etactica_eg200.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_glinet_64xx.dtsi ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_glinet_6408.dts ath79: add support for GL.iNet 6408/6416 (GL.iNet V1) 2020-01-29 18:56:04 +01:00
ar9331_glinet_6416.dts ath79: add support for GL.iNet 6408/6416 (GL.iNet V1) 2020-01-29 18:56:04 +01:00
ar9331_glinet_gl-mifi.dts ath79: add support for GL.iNet GL-MiFi 2020-07-03 20:48:05 +02:00
ar9331_pisen_ts-d084.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_pisen_wmm003n.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_tplink_tl-mr10u.dts ath79: rename dts/image using manufacturer_board scheme 2018-08-06 07:31:54 +02:00
ar9331_tplink_tl-mr3020-v1.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_tplink_tl-mr3040-v2.dts ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_tplink_tl-wr703n.dts ath79: rename dts/image using manufacturer_board scheme 2018-08-06 07:31:54 +02:00
ar9331_tplink_tl-wr703n_tl-mr10u.dtsi ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9331_tplink_tl-wr710n-8m.dtsi ath79: add support for TP-Link TL-WR710N v2.1 2020-08-21 11:34:55 +02:00
ar9331_tplink_tl-wr710n-v1.dts ath79: add support for TP-Link TL-WR710N v2.1 2020-08-21 11:34:55 +02:00
ar9331_tplink_tl-wr710n-v2.1.dts ath79: add support for TP-Link TL-WR710N v2.1 2020-08-21 11:34:55 +02:00
ar9331_tplink_tl-wr710n.dtsi ath79: add support for TP-Link TL-WR710N v2.1 2020-08-21 11:34:55 +02:00
ar9331_tplink_tl-wr740n-v4.dts ath79: rename TL-WR740ND-v4 to TL-WR740N-v4 2019-02-14 16:56:14 +01:00
ar9331_tplink_tl-wr740n-v5.dts ath79: add support for TP-Link TL-WR740N v5 2020-03-13 13:53:12 +01:00
ar9331_tplink_tl-wr741nd-v4.dts ath79: add SoC or family compatible 2018-12-06 13:28:22 +01:00
ar9331_tplink_tl-wr741nd-v4.dtsi ath79: enable gpio on ar933x by default 2020-07-03 17:37:02 +02:00
ar9341.dtsi ath79: do not set inherited phy-mode/status properties again 2020-01-31 13:42:12 +01:00
ar9341_pcs_cr3000.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9341_pisen_wmb001n.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9341_tplink.dtsi ath79: correctly define WiFi switch for TL-WR841ND v8 2020-07-21 12:02:35 +02:00
ar9341_tplink_tl-mr3420-v2.dts ath79: correctly define WiFi switch for TL-WR841ND v8 2020-07-21 12:02:35 +02:00
ar9341_tplink_tl-wa.dtsi ath79: add support for TP-Link TL-WA850RE v1 2020-01-22 17:18:55 +01:00
ar9341_tplink_tl-wa850re-v1.dts ath79: add support for TP-Link TL-WA850RE v1 2020-01-22 17:18:55 +01:00
ar9341_tplink_tl-wa860re-v1.dts ath79: add support for TP-Link TL-WA860RE v1 2020-03-26 19:14:15 +01:00
ar9341_tplink_tl-wa901nd-v3.dts ath79: add support for TP-Link TL-WA901ND v3 2020-08-08 20:40:48 +02:00
ar9341_tplink_tl-wr841-v8.dts ath79: correctly define WiFi switch for TL-WR841ND v8 2020-07-21 12:02:35 +02:00
ar9341_tplink_tl-wr842n-v2.dts ath79: correctly define WiFi switch for TL-WR841ND v8 2020-07-21 12:02:35 +02:00
ar9342_iodata_etg3-r.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar9342_ubnt_bullet-m-xw.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
ar9342_ubnt_lap-120.dts ath79: use rgmii-id instead of rgmii in ubnt,lap-120 2020-07-13 23:35:51 +02:00
ar9342_ubnt_litebeam-ac-gen2.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
ar9342_ubnt_nanobeam-ac.dts ath79: indicate boot/failsafe/upgrade for NanoBeam/Nanostation AC 2020-04-27 23:28:51 +02:00
ar9342_ubnt_nanostation-ac-loco.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
ar9342_ubnt_nanostation-ac.dts ath79: indicate boot/failsafe/upgrade for NanoBeam/Nanostation AC 2020-04-27 23:28:51 +02:00
ar9342_ubnt_nanostation-loco-m-xw.dts ath79: add missing reset-gpios for NanoStation Loco M (XW) 2020-02-24 20:42:19 +01:00
ar9342_ubnt_nanostation-m-xw.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
ar9342_ubnt_powerbeam-5ac-gen2.dts ath79: add support for Ubiquiti PowerBeam 5AC Gen2 2020-04-27 23:17:30 +02:00
ar9342_ubnt_wa.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9342_ubnt_xw.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9344.dtsi ath79: add QCA9550 reset sequence 2020-04-17 13:23:06 +02:00
ar9344_aerohive_hiveap-121.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9344_comfast_cf-e120a-v3.dts ath79: use rssihigh LED instead of WAN LED for status indication 2020-01-18 19:39:05 +01:00
ar9344_compex_wpj344-16m.dts treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
ar9344_devolo_magic-2-wifi.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9344_dlink_dir-8x5.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
ar9344_dlink_dir-825-c1.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar9344_dlink_dir-835-a1.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar9344_enterasys_ws-ap3705i.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9344_mikrotik_routerboard-sxt-5n.dtsi ath79: add support for MikroTik SXT 5nD r2 (SXT Lite5) 2020-08-12 14:03:17 +02:00
ar9344_mikrotik_routerboard-sxt-5nd-r2.dts ath79: add support for MikroTik SXT 5nD r2 (SXT Lite5) 2020-08-12 14:03:17 +02:00
ar9344_netgear_wndr.dtsi ath79/nand: add support for Netgear WNDR4300TN 2020-08-06 16:56:07 +02:00
ar9344_netgear_wndr3700-v4.dts ath79/nand: add support for Netgear WNDR4300TN 2020-08-06 16:56:07 +02:00
ar9344_netgear_wndr4300.dts ath79/nand: add support for Netgear WNDR4300TN 2020-08-06 16:56:07 +02:00
ar9344_netgear_wndr4300sw.dts ath79/nand: add support for Netgear WNDR4300TN 2020-08-06 16:56:07 +02:00
ar9344_netgear_wndr4300tn.dts ath79/nand: add support for Netgear WNDR4300TN 2020-08-06 16:56:07 +02:00
ar9344_netgear_wndr_usb.dtsi ath79/nand: add support for Netgear WNDR4300TN 2020-08-06 16:56:07 +02:00
ar9344_netgear_wndr_wan.dtsi ath79/nand: add support for Netgear WNDR4300TN 2020-08-06 16:56:07 +02:00
ar9344_ocedo_raccoon.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9344_pcs_cap324.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9344_pcs_cr5000.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ar9344_qihoo_c301.dts ath79: qihoo,c301: use phy-supply for usb vbus 2020-07-12 15:39:18 +08:00
ar9344_teltonika_rut9xx.dtsi ath79: split Teltonika RUT955 to support other RUT9xx models 2020-04-29 21:32:35 +01:00
ar9344_teltonika_rut955-h7v3c0.dts ath79: fix dts of Teltonika RUT9xx devices 2020-04-29 22:59:23 +01:00
ar9344_teltonika_rut955.dts ath79: fix dts of Teltonika RUT9xx devices 2020-04-29 22:59:23 +01:00
ar9344_tplink_cpe.dtsi ath79: increase kernel partition for ar9344 TP-Link CPE/WBS 2020-08-30 22:20:37 +02:00
ar9344_tplink_cpe210-v1.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_tplink_cpe220-v2.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_tplink_cpe510-v1.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_tplink_cpe510-v2.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_tplink_cpe510-v3.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_tplink_cpe610-v1.dts ath79: set &eth1 status for TP-Link CPE devices in parent DTSI 2020-06-18 22:34:09 +02:00
ar9344_tplink_cpe610-v2.dts ath79: add support for TP-Link CPE610 v2 2020-06-20 13:03:39 +02:00
ar9344_tplink_cpe_1port.dtsi ath79: set &eth1 status for TP-Link CPE devices in parent DTSI 2020-06-18 22:34:09 +02:00
ar9344_tplink_cpe_2port.dtsi ath79: set &eth1 status for TP-Link CPE devices in parent DTSI 2020-06-18 22:34:09 +02:00
ar9344_tplink_tl-wdr3500-v1.dts ath79: provide label MAC address 2019-09-19 23:43:27 +02:00
ar9344_tplink_tl-wdr3600-v1.dts ath79: Use -v1 suffix for TP-Link WDR3600/4300 2019-07-03 07:45:00 +02:00
ar9344_tplink_tl-wdr4300-v1-il.dts ath79: add support for TP-Link TL-WDR4300 v1 (IL) 2019-12-12 14:42:05 +01:00
ar9344_tplink_tl-wdr4300-v1.dts ath79: Use -v1 suffix for TP-Link WDR3600/4300 2019-07-03 07:45:00 +02:00
ar9344_tplink_tl-wdr4300.dtsi treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
ar9344_tplink_tl-wdr4310-v1.dts ath79: add support for TP-Link TL-WDR4310 v1 2020-03-26 15:05:49 +01:00
ar9344_tplink_tl-wdrxxxx.dtsi ath79: increase spi frequency on TL-WDR3500/3600/4300/4310 2020-08-10 12:43:37 +02:00
ar9344_tplink_wbs210-v1.dts ath79: add support for the TP-Link WBS210 v1 2020-06-16 14:42:15 +02:00
ar9344_tplink_wbs210-v2.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_tplink_wbs510-v1.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_tplink_wbs510-v2.dts ath79: improve TP-Link CPE DTSI names for ar9344 SOC 2019-11-23 12:03:49 +01:00
ar9344_wd_mynet-n750.dts treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
ar9344_wd_mynet-wifi-rangeextender.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
ar9344_winchannel_wb2000.dts ath79: convert devices to interrupt-driven gpio-keys 2019-09-22 18:28:11 +02:00
ar9344_zbtlink_zbt-wd323.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
ath79.dtsi ath79: Make upstream ag71xx driver work 2020-02-28 17:50:46 +01:00
qca953x.dtsi ath79: fix QCA953x DDR and GPIO compatible bindings 2020-04-24 20:03:18 +02:00
qca953x_tplink_tl-wr810n.dtsi ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca955x.dtsi ath79: rearrange nand node by register address 2020-07-02 21:34:37 +02:00
qca955x_ubnt_xc.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca955x_zyxel_nbg6x16.dtsi ath79: add support for ZyXEL NBG6616 2020-08-10 18:37:43 +02:00
qca956x.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9531_8dev_lima.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_comfast_cf-e5.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_comfast_cf-e130n-v2.dts ath79: fix ethernet setup for some qca953x devices 2020-08-25 20:54:24 +02:00
qca9531_comfast_cf-e313ac.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_comfast_cf-e314n-v2.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_comfast_cf-e560ac.dts ath79: add support for COMFAST CF-E560AC 2020-02-03 16:18:08 +01:00
qca9531_comfast_cf-ew72.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_comfast_cf-wr752ac-v1.dts ath79: add support for Comfast CF-WR752AC v1 2020-04-09 01:06:37 +02:00
qca9531_compex_wpj531-16m.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_dlink_dch-g020-a1.dts ath79: add support for D-Link DCH-G020 Rev. A1 2020-07-08 22:54:34 +02:00
qca9531_engenius_ews511ap.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_glinet_gl-ar300m-lite.dts ath79: fix firmware partition attributes for GL-AR300M16 and -Lite 2019-11-16 02:41:13 +01:00
qca9531_glinet_gl-ar300m-nand.dts ath79: GL-AR300M: provide NAND support; increase to 4 MB kernel 2019-11-14 14:38:58 +08:00
qca9531_glinet_gl-ar300m-nor.dts ath79: GL-AR300M: provide NAND support; increase to 4 MB kernel 2019-11-14 14:38:58 +08:00
qca9531_glinet_gl-ar300m.dtsi ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_glinet_gl-ar300m16.dts ath79: fix firmware partition attributes for GL-AR300M16 and -Lite 2019-11-16 02:41:13 +01:00
qca9531_glinet_gl-ar750.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_glinet_gl-e750.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_glinet_gl-x750.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_telco_t1.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_tplink_archer-d50-v1.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_tplink_tl-mr3420-v3.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9531_tplink_tl-mr6400-v1.dts ath79: add support for TP-Link TL-MR6400 2020-01-21 14:15:48 +01:00
qca9531_tplink_tl-wr810n-v1.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9531_tplink_tl-wr902ac-v1.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9531_yuncore_a770.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_comfast_cf-e110n-v2.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_dlink_dap-13xx.dtsi ath79: add support for D-Link DAP-1330/DAP-1365 A1 2020-07-09 10:28:40 +02:00
qca9533_dlink_dap-1330-a1.dts ath79: add support for D-Link DAP-1330/DAP-1365 A1 2020-07-09 10:28:40 +02:00
qca9533_dlink_dap-1365-a1.dts ath79: add support for D-Link DAP-1330/DAP-1365 A1 2020-07-09 10:28:40 +02:00
qca9533_mikrotik_routerboard-16m.dtsi ath79: add support for MikroTik RouterBOARD LHG 2nD 2020-08-12 14:03:17 +02:00
qca9533_mikrotik_routerboard-lhg-2nd.dts ath79: add support for MikroTik RouterBOARD LHG 2nD 2020-08-12 14:03:17 +02:00
qca9533_mikrotik_routerboard-lhg-hb.dtsi ath79: fix ethernet setup for some qca953x devices 2020-08-25 20:54:24 +02:00
qca9533_tplink_cpe210-v2.dts ath79: fix vendor capitalization of TP-Link 2019-08-07 18:04:03 +02:00
qca9533_tplink_cpe210-v3.dts ath79: fix vendor capitalization of TP-Link 2019-08-07 18:04:03 +02:00
qca9533_tplink_cpe210.dtsi treewide: remove dts-v1 identifier from DTSI files 2019-12-08 16:44:06 +01:00
qca9533_tplink_cpe220-v3.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_tplink_cpexxx.dtsi ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_tplink_tl-wa801nd-v3.dts ath79: add support for TP-Link TL-WA801ND v3/v4 2020-06-19 15:50:29 +02:00
qca9533_tplink_tl-wa801nd-v4.dts ath79: add support for TP-Link TL-WA801ND v3/v4 2020-06-19 15:50:29 +02:00
qca9533_tplink_tl-wa801nd.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9533_tplink_tl-wa850re-v2.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_tplink_tl-wr802n-v1.dts ath79: add support for TP-Link TL-WR802N V1 and V2 2020-05-31 15:44:05 +02:00
qca9533_tplink_tl-wr802n-v2.dts ath79: add support for TP-Link TL-WR802N V1 and V2 2020-05-31 15:44:05 +02:00
qca9533_tplink_tl-wr802n.dtsi ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_tplink_tl-wr810n-v2.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9533_tplink_tl-wr841-v9.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9533_tplink_tl-wr841-v10.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9533_tplink_tl-wr841-v11.dts ath79: add support for TP-Link TL-WR841N/ND v12 2019-08-05 10:54:11 +02:00
qca9533_tplink_tl-wr841-v11.dtsi treewide: remove dts-v1 identifier from DTSI files 2019-12-08 16:44:06 +01:00
qca9533_tplink_tl-wr841-v12.dts ath79: add support for TP-Link TL-WR841N/ND v12 2019-08-05 10:54:11 +02:00
qca9533_tplink_tl-wr841.dtsi ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_tplink_tl-wr842n-v3.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9533_ubnt_acb-isp.dts ath79: harmonize appearance of ethX nodes in qca953x DTSes 2020-08-12 14:44:07 +02:00
qca9556_avm_fritz-repeater.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9556_avm_fritz450e.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9556_avm_fritz1750e.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9556_avm_fritzdvbc.dts ath79: add support for AVM FRITZ!WLAN Repeater DVB-C 2020-06-25 02:35:35 +02:00
qca9556_mikrotik_routerboard-wap-g-5hact2hnd.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9557_8dev_rambutan.dts ath79: add support for 8devices Rambutan board 2020-07-07 19:47:24 +02:00
qca9557_buffalo_bhr-4grv2.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9557_iodata_wn-ac-dgr.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9557_iodata_wn-ac1167dgr.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
qca9557_iodata_wn-ac1600dgr.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
qca9557_iodata_wn-ac1600dgr2.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
qca9557_zyxel_nbg6616.dts ath79: add support for ZyXEL NBG6616 2020-08-10 18:37:43 +02:00
qca9558_allnet_all-wap02860ac.dts ath79: add support for ALLNET ALL-WAP02860AC 2020-08-15 15:58:39 +02:00
qca9558_comfast_cf-wr650ac-v1.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
qca9558_comfast_cf-wr650ac-v2.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
qca9558_comfast_cf-wr650ac.dtsi treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9558_devolo_dvl1xxx.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9558_devolo_dvl1200e.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_devolo_dvl1200i.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_devolo_dvl1750c.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_devolo_dvl1750e.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_devolo_dvl1750i.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_devolo_dvl1750x.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9558_dlink_dap-2695-a1.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_domywifi_dw33d.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_engenius_ecb1750.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_engenius_epg5000.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_librerouter_librerouter-v1.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9558_mikrotik_routerboard-92x.dtsi ath79: routerboard-92x: ensure explicit bios size in DTSI 2020-08-12 16:49:34 +02:00
qca9558_mikrotik_routerboard-921gs-5hpacd-15s.dts ath79: add support for MikroTik RouterBOARD 921GS-5HPacD-15s 2020-08-12 14:03:17 +02:00
qca9558_mikrotik_routerboard-922uags-5hpacd.dts ath79: add support for MikroTik RouterBOARD 921GS-5HPacD-15s 2020-08-12 14:03:17 +02:00
qca9558_netgear_ex6400.dts ath79: add support for Netgear EX6400 and EX7300 2019-04-09 11:09:26 +02:00
qca9558_netgear_ex7300.dts ath79: add support for Netgear EX6400 and EX7300 2019-04-09 11:09:26 +02:00
qca9558_netgear_ex7300.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_ocedo_koala.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_ocedo_ursus.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_openmesh_om5p-ac-v2.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_sitecom_wlr-8100.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_tplink_archer-c.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9558_tplink_archer-c5-v1.dts ath79: improve common DTSI name for TP-Link Archer C5, C7 v1/v2 2019-11-14 23:12:48 +01:00
qca9558_tplink_archer-c7-v1.dts ath79: improve common DTSI name for TP-Link Archer C5, C7 v1/v2 2019-11-14 23:12:48 +01:00
qca9558_tplink_archer-c7-v2.dts ath79: improve common DTSI name for TP-Link Archer C5, C7 v1/v2 2019-11-14 23:12:48 +01:00
qca9558_tplink_archer-d7-v1.dts ath79: add support for TP-Link Archer D7/D7b v1 2020-03-18 14:25:38 +01:00
qca9558_tplink_archer-d7.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_tplink_archer-d7b-v1.dts ath79: add support for TP-Link Archer D7/D7b v1 2020-03-18 14:25:38 +01:00
qca9558_tplink_re350k-v1.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_tplink_re355-v1.dts ath79: add support for TP-Link RE355 v1 and RE450 v1 2019-07-17 23:14:23 +02:00
qca9558_tplink_re450-v1.dts ath79: add support for TP-Link RE355 v1 and RE450 v1 2019-07-17 23:14:23 +02:00
qca9558_tplink_rex5x.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9558_tplink_tl-wdr4900-v2.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_tplink_tl-wr941n-v7-cn.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9558_tplink_tl-wr1043nd-v2.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_tplink_tl-wr1043nd-v3.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_tplink_tl-wr1043nd.dtsi treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9558_tplink_tl-wr1045nd-v2.dts ath79: correct QCA9550 machine compatible binding 2020-04-24 20:03:00 +02:00
qca9558_trendnet_tew-823dru.dts treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9558_ubnt_powerbeam-5ac-500.dts ath79: add support for Ubiquiti PowerBeam 5AC 500 2020-05-17 21:03:30 +02:00
qca9558_zyxel_nbg6716.dts ath79: add support for ZyXEL NBG6616 2020-08-10 18:37:43 +02:00
qca9561_avm_fritz4020.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9561_tplink_archer-c5x.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9561_tplink_archer-c6x.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9561_tplink_archer-c25-v1.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9561_tplink_archer-c58-v1.dts ath79: move common definitions from Archer C58/C59 to common DTSI 2019-09-16 21:40:06 +02:00
qca9561_tplink_archer-c59-v1.dts ath79: move common definitions from Archer C58/C59 to common DTSI 2019-09-16 21:40:06 +02:00
qca9561_tplink_archer-c59-v2.dts ath79: add support for TP-Link Archer C59v2 2019-09-16 21:40:06 +02:00
qca9561_tplink_archer-c60-v1.dts ath79: add support for TP-Link Archer C60 v3 2020-03-18 13:49:06 +01:00
qca9561_tplink_archer-c60-v2.dts ath79: add support for TP-Link Archer C60 v3 2020-03-18 13:49:06 +01:00
qca9561_tplink_archer-c60-v3.dts ath79: add support for TP-Link Archer C60 v3 2020-03-18 13:49:06 +01:00
qca9561_xiaomi_mi-router-4q.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_compex_wpj563.dts ath79: add support for Compex WPJ563 2020-07-26 02:14:45 +02:00
qca9563_dlink_dir-842-c.dtsi treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9563_dlink_dir-842-c1.dts ath79: fix LEDs for D-Link DIR-842 2020-05-26 22:49:18 +02:00
qca9563_dlink_dir-842-c2.dts ath79: fix LEDs for D-Link DIR-842 2020-05-26 22:49:18 +02:00
qca9563_dlink_dir-842-c3.dts ath79: fix LEDs for D-Link DIR-842 2020-05-26 22:49:18 +02:00
qca9563_dlink_dir-859-a1.dts treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9563_elecom_wrc-300ghbk2-i.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
qca9563_elecom_wrc-1750ghbk2-i.dts ath79: remove redundant includes in DTS files 2020-02-22 19:17:51 +01:00
qca9563_elecom_wrc-ghbk2-i.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9563_glinet_gl-ar750s-nor-nand.dts ath79: re-enable image generation for GL-AR750S 2020-07-22 17:18:55 +02:00
qca9563_glinet_gl-ar750s-nor.dts ath79: re-enable image generation for GL-AR750S 2020-07-22 17:18:55 +02:00
qca9563_glinet_gl-ar750s.dtsi ath79: re-enable image generation for GL-AR750S 2020-07-22 17:18:55 +02:00
qca9563_nec_wg800hp.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9563_nec_wg1200cr.dts ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00
qca9563_netgear_wndr.dtsi treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9563_netgear_wndr4300-v2.dts ath79: add support for Netgear WNDR4300 v2 2020-01-15 20:55:56 +01:00
qca9563_netgear_wndr4500-v3.dts ath79: add support for Netgear WNDR4500 v3 2020-01-15 20:56:05 +01:00
qca9563_phicomm_k2t.dts treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9563_rosinson_wr818.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_tplink_archer-a7-v5.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9563_tplink_archer-c2-v3.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_tplink_archer-c6-v2-us.dts ath79: add support for TP-Link Archer C6 v2 (US) and A6 (US/TW) 2019-11-27 22:54:36 +01:00
qca9563_tplink_archer-c6-v2.dts ath79: add support for TP-Link Archer C6 v2 (US) and A6 (US/TW) 2019-11-27 22:54:36 +01:00
qca9563_tplink_archer-c7-v4.dts ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_tplink_archer-c7-v5.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9563_tplink_archer-x6-v2.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_tplink_archer-x7-v5.dtsi treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
qca9563_tplink_re450-v2.dts ath79: add support for TP-Link RE450 v3 2020-05-31 15:44:05 +02:00
qca9563_tplink_re450-v3.dts ath79: add support for TP-Link RE450 v3 2020-05-31 15:44:05 +02:00
qca9563_tplink_re450.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_tplink_tl-wpa8630-v1.dts ath79: change WPS to Wifi button on TL-WPA8630P v2 2020-08-17 15:25:51 +02:00
qca9563_tplink_tl-wpa8630.dtsi ath79: fix/improve LED control for TL-WPA8630 v1/v2 2020-08-22 15:13:15 +02:00
qca9563_tplink_tl-wpa8630p-v2-eu.dts ath79: add support for TP-Link TL-WPA8630P v2 2020-08-10 11:48:08 +02:00
qca9563_tplink_tl-wpa8630p-v2-int.dts ath79: add support for TP-Link TL-WPA8630P v2 2020-08-10 11:48:08 +02:00
qca9563_tplink_tl-wpa8630p-v2.dtsi ath79: fix/improve LED control for TL-WPA8630 v1/v2 2020-08-22 15:13:15 +02:00
qca9563_tplink_tl-wr1043n-v5.dts ath79: Consistently label art partition with lower case 2019-06-10 11:25:41 +02:00
qca9563_tplink_tl-wr1043n.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_tplink_tl-wr1043nd-v4.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
qca9563_ubnt_unifiac-lite.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
qca9563_ubnt_unifiac-lite.dtsi ath79: add correct phy-mode for QCA9563 boards 2020-03-15 00:08:14 +01:00
qca9563_ubnt_unifiac-lr.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
qca9563_ubnt_unifiac-mesh-pro.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
qca9563_ubnt_unifiac-mesh.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
qca9563_ubnt_unifiac-pro.dts ath79: harmonize model names for Ubiquiti devices 2020-07-15 18:41:57 +02:00
qca9563_ubnt_unifiac-pro.dtsi ath79: rename EEPROM to art 2019-11-27 22:54:36 +01:00
qca9563_ubnt_unifiac.dtsi ath79: drop redundant status for gpio target-wide 2020-07-03 17:37:02 +02:00
qca9563_yuncore_a782.dts ath79: add support for YunCore XD4200 and A782 2019-11-25 17:32:46 +01:00
qca9563_yuncore_xd4200.dts ath79: add support for YunCore XD4200 and A782 2019-11-25 17:32:46 +01:00
qca9563_yuncore_xd4200.dtsi treewide: rename POWER_ON_STRIP register 2020-07-25 21:50:50 +02:00
tp9343_tplink_tl-wa901nd-v4.dts ath79: add support for TP-Link TL-WA901ND v4 and v5 2020-05-18 13:35:38 +02:00
tp9343_tplink_tl-wa901nd-v5.dts ath79: add support for TP-Link TL-WA901ND v4 and v5 2020-05-18 13:35:38 +02:00
tp9343_tplink_tl-wa901nd.dtsi ath79: add support for TP-Link TL-WA901ND v4 and v5 2020-05-18 13:35:38 +02:00
tp9343_tplink_tl-wr94x.dtsi ath79: add support for TP-Link TL-WA901ND v4 and v5 2020-05-18 13:35:38 +02:00
tp9343_tplink_tl-wr940n-v3.dts ath79: add support for TP9343-based TP-Link TL-WR94x devices 2019-08-05 21:50:15 +02:00
tp9343_tplink_tl-wr940n-v3.dtsi treewide: remove dts-v1 identifier from DTSI files 2019-12-08 16:44:06 +01:00
tp9343_tplink_tl-wr940n-v4.dts ath79: DTS file style update and harmonization 2019-11-06 00:27:55 +01:00
tp9343_tplink_tl-wr940n-v6.dts ath79: add support for TP-Link TL-WR940N v6 2020-02-13 17:33:20 +01:00
tp9343_tplink_tl-wr941nd-v6.dts ath79: add support for TP9343-based TP-Link TL-WR94x devices 2019-08-05 21:50:15 +02:00
tp9343_tplink_tl-wx.dtsi ath79: drop and consolidate redundant chosen/bootargs 2020-06-25 23:09:05 +02:00