[OpenWrt-Devel] [PATCH] Added WIZnet WizFi630A Platform based on Ralink RT5350

Tobias Welz tw at wiznet.eu
Mon Aug 17 08:42:47 EDT 2015


Hello Sedat,

thanks for the hints, I had already git installed but i did not know 
about git send-email.
I'll send the reworked patch via git send-email later.
Maybe it would be a good idea to mention git send-email in the wiki 
also: https://dev.openwrt.org/wiki/SubmittingPatches

Kind regards
Tobias

-------- Original Message --------
Subject: Re: [OpenWrt-Devel] [PATCH] Added WIZnet WizFi630A Platform 
based on Ralink RT5350
From: Sedat Dilek <sedat.dilek at gmail.com>
To: John Crispin <blogic at openwrt.org>
Cc: Tobias Welz <tw at wiznet.eu>, openwrt-devel at lists.openwrt.org
Date: 17.8.2015 13:41:21
> On Mon, Aug 17, 2015 at 1:24 PM, John Crispin <blogic at openwrt.org> wrote:
>> Hi Tobias,
>>
>> Thanks for the patch. unfortunately its line mangled and white space
>> broken. also it seems you sent a HTML email. If you take a few minutes
>> to setup git, you can use "git send-email" to avoid these issues.
>>
> On Debian/Ubuntu install "git send-email" or check your distubition's
> docs and help...
>
>     root# apt-get update && apt-get install git-email
>
> Feel free to adapt my local dot-gitconfig...
>
> $ cat ~/.gitconfig
> [user]
>          name   = Sedat Dilek
>          email  = sedat.dilek at gmail.com
>
> [core]
>          abbrev = 12
>
> [format]
>          subjectprefix = PATCH
>          signoff = false
>
> [pretty]
>          fixes = Fixes: %h (\"%s\")
>
> [push]
>          default = matching
>
> [sendemail]
>          smtpserver = smtp.gmail.com
>          smtpserverport = 587
>          smtpencryption = tls
>          smtpuser = sedat.dilek at gmail.com
>
> Hope this helps.
>
> - sed@ -
>
>
>>          John
>>
>>
>> On 15/08/2015 10:08, Tobias Welz wrote:
>>> Hello OpenWrt Developers,
>>>
>>> I added the WIZnet WizFi630A Platform to the trunk. The board is based
>>> on Ralink RT5350 in MiniPci Express Form Factor.
>>>
>>> Kind regards
>>> Tobias Welz
>>>
>>>
>>>
>>>  From bd69bb513e36abda43e86f0eb64caf004260e415 Mon Sep 17 00:00:00 2001
>>> From: Tobias Welz <tw at wiznet.eu>
>>> Date: Sat, 15 Aug 2015 02:30:34 +0200
>>> Subject: [PATCH] Added WIZnet WizFi630A Platform based on Ralink RT5350
>>>
>>>
>>> Signed-off-by: Tobias Welz <tw at wiznet.eu>
>>> ---
>>>   .../linux/ramips/base-files/etc/board.d/02_network |    6 +
>>>   target/linux/ramips/base-files/etc/diag.sh         |    3 +
>>>   target/linux/ramips/base-files/lib/ramips.sh       |    3 +
>>>   .../ramips/base-files/lib/upgrade/platform.sh      |    1 +
>>>   target/linux/ramips/dts/WIZFI630A.dts              |  304
>>> ++++++++++++++++++++
>>>   target/linux/ramips/image/Makefile                 |    3 +
>>>   target/linux/ramips/rt305x/profiles/wizfi630a.mk   |   18 ++
>>>   7 files changed, 338 insertions(+)
>>>   create mode 100644 target/linux/ramips/dts/WIZFI630A.dts
>>>   create mode 100644 target/linux/ramips/rt305x/profiles/wizfi630a.mk
>>>
>>> diff --git a/target/linux/ramips/base-files/etc/board.d/02_network
>>> b/target/linux/ramips/base-files/etc/board.d/02_network
>>> index da1854a..c211ab9 100755
>>> --- a/target/linux/ramips/base-files/etc/board.d/02_network
>>> +++ b/target/linux/ramips/base-files/etc/board.d/02_network
>>> @@ -235,6 +235,7 @@ ramips_setup_interfaces()
>>>           ucidef_add_switch_vlan "switch0" "2" "4 6t"
>>>           ;;
>>>
>>> +    wizfi630a | \
>>>       y1s)
>>>           ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
>>>           ucidef_add_switch "switch0" "1" "1"
>>> @@ -297,6 +298,11 @@ ramips_setup_macs()
>>>           wan_mac=$(mtd_get_mac_binary factory 46)
>>>           ;;
>>>
>>> +    wizfi630a)
>>> +        lan_mac=$(mtd_get_mac_binary factory 4)
>>> +        wan_mac=$(mtd_get_mac_binary factory 40)
>>> +        ;;
>>> +
>>>       w306r-v20)
>>>           lan_mac=$(cat /sys/class/net/eth0/address)
>>>           wan_mac=$(macaddr_add "$lan_mac" 5)
>>> diff --git a/target/linux/ramips/base-files/etc/diag.sh
>>> b/target/linux/ramips/base-files/etc/diag.sh
>>> index e63f0df..3ffcc22 100644
>>> --- a/target/linux/ramips/base-files/etc/diag.sh
>>> +++ b/target/linux/ramips/base-files/etc/diag.sh
>>> @@ -252,6 +252,9 @@ get_status_led() {
>>>       zte-q7)
>>>           status_led="zte:red:status"
>>>           ;;
>>> +    wizfi630a)
>>> +        status_led="wizfi630a::run"
>>> +        ;;
>>>       mzk-dp150n)
>>>           status_led="mzkdp150n:green:power"
>>>           ;;
>>> diff --git a/target/linux/ramips/base-files/lib/ramips.sh
>>> b/target/linux/ramips/base-files/lib/ramips.sh
>>> index 7db6d37..474fdb8 100755
>>> --- a/target/linux/ramips/base-files/lib/ramips.sh
>>> +++ b/target/linux/ramips/base-files/lib/ramips.sh
>>> @@ -430,6 +430,9 @@ ramips_board_detect() {
>>>       *"Planex MZK-DP150N")
>>>           name="mzk-dp150n"
>>>           ;;
>>> +     *"WIZnet WizFi630A")
>>> +                name="wizfi630a"
>>> +                ;;
>>>       *)
>>>           name="generic"
>>>           ;;
>>> diff --git a/target/linux/ramips/base-files/lib/upgrade/platform.sh
>>> b/target/linux/ramips/base-files/lib/upgrade/platform.sh
>>> index 8221997..bdc6be9 100755
>>> --- a/target/linux/ramips/base-files/lib/upgrade/platform.sh
>>> +++ b/target/linux/ramips/base-files/lib/upgrade/platform.sh
>>> @@ -105,6 +105,7 @@ platform_check_image() {
>>>       whr-300hp2 |\
>>>       whr-600d |\
>>>       whr-1166d |\
>>> +    wizfi630a |\
>>>       wsr-600 |\
>>>       wl-330n | \
>>>       wl-330n3g | \
>>> diff --git a/target/linux/ramips/dts/WIZFI630A.dts
>>> b/target/linux/ramips/dts/WIZFI630A.dts
>>> new file mode 100644
>>> index 0000000..b3f655d
>>> --- /dev/null
>>> +++ b/target/linux/ramips/dts/WIZFI630A.dts
>>> @@ -0,0 +1,304 @@
>>> +/dts-v1/;
>>> +
>>> +/include/ "rt5350.dtsi"
>>> +
>>> +/ {
>>> +    compatible = "wizfi630a", "ralink,rt5350-soc";
>>> +    model = "WIZnet WizFi630A";
>>> +
>>> +        chosen {
>>> +                bootargs = "console=ttyS1,115200";
>>> +        };
>>> +
>>> +    palmbus at 10000000 {
>>> +        gpio1: gpio at 660 {
>>> +                        status = "okay";
>>> +                };
>>> +
>>> +        spi at b00 {
>>> +            status = "okay";
>>> +
>>> +            m25p80 at 0 {
>>> +                #address-cells = <1>;
>>> +                #size-cells = <1>;
>>> +                compatible = "w25q128";
>>> +                reg = <0>;
>>> +                linux,modalias = "m25p80", "w25q128";
>>> +                spi-max-frequency = <10000000>;
>>> +
>>> +                partition at 0 {
>>> +                    label = "uboot";
>>> +                    reg = <0x0 0x30000>;
>>> +                    read-only;
>>> +                };
>>> +
>>> +                partition at 30000 {
>>> +                    label = "uboot-env";
>>> +                    reg = <0x30000 0x10000>;
>>> +                    read-only;
>>> +                };
>>> +
>>> +                factory: partition at 40000 {
>>> +                    label = "factory";
>>> +                    reg = <0x40000 0x10000>;
>>> +                    read-only;
>>> +                };
>>> +
>>> +                partition at 50000 {
>>> +                    label = "firmware";
>>> +                    reg = <0x50000 0xfb0000>;
>>> +                };
>>> +            };
>>> +        };
>>> +
>>> +                uart at 500 {
>>> +                        compatible = "ralink,mt7620a-uart",
>>> "ralink,rt2880-uart", "ns16550a";
>>> +                        reg = <0x500 0x100>;
>>> +
>>> +                        resets = <&rstctrl 12>;
>>> +                        reset-names = "uart";
>>> +
>>> +                        interrupt-parent = <&intc>;
>>> +                        interrupts = <5>;
>>> +
>>> +                        reg-shift = <2>;
>>> +
>>> +                        status = "okay";
>>> +                };
>>> +
>>> +
>>> +                uartlite at c00 {
>>> +                        compatible = "ralink,mt7620a-uart",
>>> "ralink,rt2880-uart", "ns16550a";
>>> +                        reg = <0xc00 0x100>;
>>> +
>>> +                        resets = <&rstctrl 19>;
>>> +                        reset-names = "uartl";
>>> +
>>> +                        interrupt-parent = <&intc>;
>>> +                        interrupts = <12>;
>>> +
>>> +                        reg-shift = <2>;
>>> +
>>> +                        pinctrl-names = "default";
>>> +                        pinctrl-0 = <&uartlite_pins>;
>>> +                };
>>> +    };
>>> +
>>> +    pinctrl {
>>> +        state_default: pinctrl0 {
>>> +            gpio {
>>> +                ralink,group = "i2c", "jtag" ;
>>> +                ralink,function = "gpio";
>>> +            };
>>> +        };
>>> +
>>> +                uartf_gpio_pins: uartf_gpio {
>>> +                        uartf_gpio {
>>> +                                ralink,group = "uartf";
>>> +                                //ralink,function = "gpio uartf";
>>> +                                ralink,function = "uartf";
>>> +                        };
>>> +                };
>>> +
>>> +                uartlite_pins: uartlite {
>>> +                        uart {
>>> +                                ralink,group = "uartlite";
>>> +                                ralink,function = "uartlite";
>>> +                        };
>>> +                };
>>> +    };
>>> +
>>> +    ethernet at 10100000 {
>>> +        mtd-mac-address = <&factory 0x4>;
>>> +    };
>>> +
>>> +    esw at 10110000 {
>>> +                ralink,portmap = <0x17>;
>>> +        };
>>> +
>>> +    wmac at 10180000 {
>>> +        ralink,mtd-eeprom = <&factory 0>;
>>> +    };
>>> +
>>> +    ehci at 101c0000 {
>>> +        status = "okay";
>>> +    };
>>> +
>>> +    ohci at 101c1000 {
>>> +        status = "okay";
>>> +    };
>>> +
>>> +
>>> +    gpio-export {
>>> +        compatible = "gpio-export";
>>> +        #size-cells = <0>;
>>> +/*
>>> +        gpio22 {
>>> +            // WAN
>>> +            gpio-export,name = "gpio22";
>>> +            gpio-export,direction_may_change = <1>;
>>> +            gpios = <&gpio1 0 0>; // path lfd dir
>>> +        };
>>> +        gpio23 {
>>> +            // LAN1
>>> +            gpio-export,name = "gpio23";
>>> +            gpio-export,direction_may_change = <1>;
>>> +            gpios = <&gpio1 1 0>;
>>> +        };
>>> +        gpio24 {
>>> +            // LAN2
>>> +            gpio-export,name = "gpio24";
>>> +            gpio-export,direction_may_change = <1>;
>>> +            gpios = <&gpio1 2 0>;
>>> +        };
>>> +
>>> +                // UARTF - UART1
>>> +                gpio7 {
>>> +                        // UARTF_RTS_N - HW Pin 6
>>> +                        gpio-export,name = "gpio7";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 7 0>;
>>> +                };
>>> +                gpio8 {
>>> +                        // UARTF_TXD - HW Pin 10
>>> +                        gpio-export,name = "gpio8";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 8 0>;
>>> +                };
>>> +                gpio9 {
>>> +                        // UARTF_CTS_N - HW Pin 5
>>> +                        gpio-export,name = "gpio9";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 9 0>;
>>> +                };
>>> +                gpio10 {
>>> +                        // UARTF_RXD - HW Pin 9
>>> +                        gpio-export,name = "gpio10";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 10 0>;
>>> +                };
>>> +                gpio11 {
>>> +                        // UARTF_DTR_N - HW Pin 8
>>> +                        gpio-export,name = "gpio11";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 11 0>;
>>> +                };
>>> +                gpio12 {
>>> +                        // UARTF_DCD_N - HW Pin 12
>>> +                        gpio-export,name = "gpio12";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 12 0>;
>>> +                };
>>> +                gpio13 {
>>> +                        // UARTF_DSR_N - HW Pin 11
>>> +                        gpio-export,name = "gpio13";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 13 0>;
>>> +                };
>>> +                gpio14 {
>>> +                        // UARTF_RIN - HW Pin 7
>>> +                        gpio-export,name = "gpio14";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 14 0>;
>>> +                };
>>> +
>>> +        // UARTLITE - UART2
>>> +                gpio15 {
>>> +                        // UART2_TXD  - HW Pin 20
>>> +                        gpio-export,name = "gpio15";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 15 0>;
>>> +                };
>>> +                gpio16 {
>>> +                        // UART2_RXD  - HW Pin 18
>>> +                        gpio-export,name = "gpio16";
>>> +                        gpio-export,direction_may_change = <1>;
>>> +                        gpios = <&gpio0 16 0>;
>>> +                };
>>> +
>>> +*/
>>> +/*
>>> +        // If you want to use this comment out the corrosponding
>>> gpio-keys-polled
>>> +        gpio0 {
>>> +            // wps btn
>>> +            gpio-export,name = "gpio0";
>>> +            gpio-export,direction_may_change = <1>;
>>> +            gpios = <&gpio0 0 1>;
>>> +        };
>>> +*/
>>> +
>>> +        gpio19 {
>>> +            // SCM1
>>> +            gpio-export,name = "gpio19";
>>> +            gpio-export,direction_may_change = <1>;
>>> +            gpios = <&gpio0 19 1>;
>>> +        };
>>> +        gpio2 {
>>> +            // SCM2
>>> +            gpio-export,name = "gpio2";
>>> +            gpio-export,direction_may_change = <1>;
>>> +            gpios = <&gpio0 2 1>;
>>> +        };
>>> +
>>> +    };
>>> +
>>> +
>>> +
>>> +
>>> +
>>> +    gpio-leds {
>>> +        compatible = "gpio-leds";
>>> +        run {
>>> +            label = "wizfi630a::run";
>>> +            gpios = <&gpio0 1 1>;
>>> +        };
>>> +        uart1 {
>>> +            label = "wizfi630a::uart1";
>>> +            gpios = <&gpio0 18 1>;
>>> +        };
>>> +        uart2 {
>>> +            label = "wizfi630a::uart2";
>>> +            gpios = <&gpio0 21 1>;
>>> +        };
>>> +        wps {
>>> +            label = "wizfi630a::wps";
>>> +            gpios = <&gpio0 20 1>;
>>> +        };
>>> +    };
>>> +
>>> +
>>> +        gpio-keys-polled {
>>> +                compatible = "gpio-keys-polled";
>>> +                #address-cells = <1>;
>>> +                #size-cells = <0>;
>>> +                poll-interval = <20>;
>>> +                reset {
>>> +                        label = "reset";
>>> +                        gpios = <&gpio0 17 1>;
>>> +                        linux,code = <0x198>;
>>> +                };
>>> +
>>> +                wps {
>>> +                        label = "wps";
>>> +                        gpios = <&gpio0 0 1>;
>>> +                        linux,code = <0x211>;
>>> +                };
>>> +/*
>>> +        // If you want to use this comment out the corrosponding export
>>> +                scm1 {
>>> +                        label = "SCM1";
>>> +                        gpios = <&gpio0 19 1>;
>>> +                        linux,code = <0x100>;
>>> +                };
>>> +
>>> +                scm2 {
>>> +                        label = "SCM2";
>>> +                        gpios = <&gpio0 2 1>;
>>> +                        linux,code = <0x101>;
>>> +                };
>>> +*/
>>> +
>>> +        };
>>> +
>>> +
>>> +};
>>> diff --git a/target/linux/ramips/image/Makefile
>>> b/target/linux/ramips/image/Makefile
>>> index 409ff26..fbc6775 100644
>>> --- a/target/linux/ramips/image/Makefile
>>> +++ b/target/linux/ramips/image/Makefile
>>> @@ -673,6 +673,8 @@ Image/Build/Profile/WNCE2001=$(call
>>> BuildFirmware/WNCE2001/$(1),$(1),wnce2001,WN
>>>
>>>   Image/Build/Profile/WR512-3GN=$(call
>>> BuildFirmware/DefaultDualSize/$(1),$(1),wr512-3ng,WR512-3GN)
>>>
>>> +Image/Build/Profile/WIZFI630A=$(call
>>> BuildFirmware/Default16M/$(1),$(1),wizfi630a,WIZFI630A)
>>> +
>>>   Image/Build/Profile/WT1520=$(call
>>> BuildFirmware/PorayDualSize/$(1),$(1),wt1520,WT1520)
>>>
>>>   Image/Build/Profile/UR-326N4G=$(call
>>> BuildFirmware/Default4M/$(1),$(1),ur-326n4g,UR-326N4G)
>>> @@ -761,6 +763,7 @@ define Image/Build/Profile/Default
>>>       $(call Image/Build/Profile/W306R_V20,$(1))
>>>       $(call Image/Build/Profile/W502U,$(1))
>>>       $(call Image/Build/Profile/WCR150GN,$(1))
>>> +    $(call Image/Build/Profile/WIZFI630A,$(1))
>>>       $(call Image/Build/Profile/WHRG300N,$(1))
>>>       $(call Image/Build/Profile/WIZARD8800,$(1))
>>>       $(call Image/Build/Profile/WL_330N,$(1))
>>> diff --git a/target/linux/ramips/rt305x/profiles/wizfi630a.mk
>>> b/target/linux/ramips/rt305x/profiles/wizfi630a.mk
>>> new file mode 100644
>>> index 0000000..22136b9
>>> --- /dev/null
>>> +++ b/target/linux/ramips/rt305x/profiles/wizfi630a.mk
>>> @@ -0,0 +1,18 @@
>>> +#
>>> +# Copyright (C) 2014 OpenWrt.org
>>> +#
>>> +# This is free software, licensed under the GNU General Public License v2.
>>> +# See /LICENSE for more information.
>>> +#
>>> +
>>> +define Profile/WIZFI630A
>>> +    NAME:=WIZnet WizFi630A
>>> +    PACKAGES:=\
>>> +        kmod-usb-core kmod-usb-ohci kmod-usb2
>>> +endef
>>> +
>>> +define Profile/WIZFI630A/Description
>>> +    Package set for WIZnet WizFi630A board
>>> +endef
>>> +
>>> +$(eval $(call Profile,WIZFI630A))
>>> --
>>> 1.7.10.4
>>>
>>>
>>>
>>> _______________________________________________
>>> openwrt-devel mailing list
>>> openwrt-devel at lists.openwrt.org
>>> https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
>>>
>> _______________________________________________
>> openwrt-devel mailing list
>> openwrt-devel at lists.openwrt.org
>> https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.infradead.org/pipermail/openwrt-devel/attachments/20150817/a7852921/attachment.htm>


More information about the openwrt-devel mailing list