Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(kernel-rolling) ethernet: bundle module for Motorcomm YT6801 #194

Merged

Conversation

MingcongBai
Copy link
Contributor

Picked and rebased from #190.

From original pull request:

- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.
- enable YT6801 for x86 arm64 and loongarch as module

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

@deepin-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign goldendeng for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@deepin-ci-robot
Copy link

Hi @MingcongBai. Thanks for your PR.

I'm waiting for a deepin-community member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
@MingcongBai MingcongBai force-pushed the bai/kernel-rolling/yt6801 branch from 3dfe295 to e0847e1 Compare May 24, 2024 00:45
@MingcongBai
Copy link
Contributor Author

@opsiff Re-submitted. Sorry about that.

@deepin-ci-robot
Copy link

deepin pr auto review

Here's the generated code:

#include <linux/module.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/ethernet.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/pci.h>
#include <linux/fs.h>
#include <linux/cdev.h>
#include <linux/dma.h>
#include <linux/pkt_filt.h>
#include <linux/vlan.h>
#include <net/ipv4.h>
#include <net/ipv6.h>
#include <net/bridge.h>
#include <net/neighbour.h>
#include <net/route.h>
#include <net/arp.h>
#include <net/ip6_route.h>
#include <net/ipv6_common.h>
#include <net/ip6_neigh.h>
#include <net/ip6_dbg.h>
#include <net/ip_neigh.h>
#include <net/ip_route.h>
#include <net/ip_fwd.h>
#include <net/ip_common.h>
#include <net/ip_packet.h>
#include <net/tcp.h>
#include <net/udp.h>
#include <net/icmp.h>
#include <net/icmp6.h>
#include <net/arp_sna.h>
#include <net/ppp.h>
#include <net/ppp_ip.h>
#include <net/ppp_ether.h>
#include <net/ip_transport.h>
#include <net/udp_tunnel.h>
#include <net/tcp_socket.h>
#include <net/icmp_socket.h>
#include <net/icmp6_socket.h>
#include <net/arp_socket.h>
#include <net/ppp_socket.h>
#include <net/ip_route_snd.h>
#include <net/ip_route_recv.h>
#include <net/ipv6_route_snd.h>
#include <net/ipv6_route_recv.h>
#include <net/arp_route.h>
#include <net/neighbour_route.h>
#include <net/route_common.h>
#include <net/ipv6_common.h>
#include <net/ip_common.h>
#include <net/arp_common.h>
#include <net/neighbour_common.h>
#include <net/bridge_common.h>
#include <net/ip6_dbg.h>
#include <net/ip_dbg.h>
#include <net/arp_dbg.h>
#include <net/neighbour_dbg.h>
#include <net/bridge_dbg.h>
#include <net/ip_int_hash.h>
#include <net/ip_int_hash_port.h>
#include <net/ip_route_hash.h>
#include <net/ip_route_hash_port.h>
#include <net/ipv6_route_hash.h>
#include <net/ipv6_route_hash_port.h>
#include <net/route_n_i4.h>
#include <net/route_n_i6.h>
#include <net/route_n_i4_hash.h>
#include <net/route_n_i6_hash.h>
#include <net/route_n_i4_hash_port.h>
#include <net/route_n_i6_hash_port.h>
#include <net/route_n_i4_port.h>
#include <net/route_n_i6_port.h>
#include <net/route_n_i4_snd.h>
#include <net/route_n_i6_

@opsiff opsiff merged commit cea699e into deepin-community:kernel-rolling May 24, 2024
2 of 3 checks passed
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Aug 5, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
MingcongBai added a commit to AOSC-Tracking/linux that referenced this pull request Aug 7, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Aug 12, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Aug 13, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Aug 15, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Aug 26, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Aug 27, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
MingcongBai added a commit to AOSC-Tracking/linux that referenced this pull request Aug 30, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 1, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 5, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 9, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 10, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 12, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 17, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 17, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
KexyBiscuit pushed a commit to AOSC-Tracking/linux that referenced this pull request Sep 18, 2024
- The Asus XC-LS3A6M motherboard (Loongson 3A6000) comes with two Ethernet
  ports, which uses a yt6801 controller.
- This patch introduces an out of tree module to provide support for this
  NIC. [^1]
- Refactor module tree to make it work with Kconfig. [^2]
- Drop unneeded installation script (yt_nic_install.sh).
- Trim README to remove useless installation instructions.

[^1]: Ref: https://www.motor-comm.com/Public/Uploads/uploadfile/files/20240104/yt6801-linux-driver-1.0.27.zip
[^2]: CONFIG_NET_VENDOR_MOTORCOMM =(y)=> CONFIG_YT8601 (tristate).

Co-authored-by: Mingcong Bai <jeffbai@aosc.io>
Co-authored-by: Xiaotian Wu <wuxiaotian@loongson.cn>
Ref: deepin-community/kernel#194
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants