instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_netdev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #ifndef _FBNIC_NETDEV_H_ #define _FBNIC_NETDEV_H_ #include <linux/phylink.h> #include <linux/types.h> #include "fbnic_csr.h" #include "fbnic_rpc.h" #include "fbnic_txrx.h" #define FBNIC_MAX_NAPI_VECTORS 128u #defin...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_hw_stats' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #ifndef _FBNIC_HW_STATS_H_ #define _FBNIC_HW_STATS_H_ #include <linux/ethtool.h> #include <linux/spinlock.h> #include "fbnic_csr.h" struct fbnic_stat_counter { u64 value; union { u32 old_reg_value_32; u64 old_...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_txrx' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #ifndef _FBNIC_TXRX_H_ #define _FBNIC_TXRX_H_ #include <linux/netdevice.h> #include <linux/skbuff.h> #include <linux/types.h> #include <linux/u64_stats_sync.h> #include <net/xdp.h> struct fbnic_net; /* Guarantee we ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_drvinfo' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #define DRV_NAME "fbnic" #define DRV_SUMMARY "Meta(R) Host Network Interface Driver" ```
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_mdio' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/mdio.h> #include <linux/pcs/pcs-xpcs.h> #include "fbnic.h" #include "fbnic_netdev.h" #define DW_VENDOR BIT(15) #define FBNIC_PCS_VENDOR BIT(9) #define FBNIC_PCS_ZERO_MASK (DW_VENDOR - FBNIC_PCS_VENDOR) ...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_mac' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/bitfield.h> #include <net/tcp.h> #include "fbnic.h" #include "fbnic_mac.h" #include "fbnic_netdev.h" static void fbnic_init_readrq(struct fbnic_dev *fbd, unsigned int offset, unsigned int cls, u...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_tlv' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #ifndef _FBNIC_TLV_H_ #define _FBNIC_TLV_H_ #include <asm/byteorder.h> #include <linux/bits.h> #include <linux/const.h> #include <linux/types.h> struct fbnic_dev; #define FBNIC_TLV_MSG_ALIGN(len) ALIGN(len, sizeof(u...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_tlv' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/gfp.h> #include <linux/mm.h> #include <linux/once.h> #include <linux/random.h> #include <linux/string.h> #include <uapi/linux/if_ether.h> #include "fbnic_tlv.h" /** * fbnic_tlv_msg_alloc - Allocate page...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_fw_log' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/spinlock.h> #include <linux/vmalloc.h> #include "fbnic.h" #include "fbnic_fw.h" #include "fbnic_fw_log.h" void fbnic_fw_log_enable(struct fbnic_dev *fbd, bool send_hist) { int err; if (!fbnic_fw_log_r...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_hwmon' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/hwmon.h> #include "fbnic.h" #include "fbnic_mac.h" static int fbnic_hwmon_sensor_id(enum hwmon_sensor_types type) { if (type == hwmon_temp) return FBNIC_SENSOR_TEMP; if (type == hwmon_in) return FB...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_csr' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include "fbnic.h" #define FBNIC_BOUNDS(section) { \ .start = FBNIC_CSR_START_##section, \ .end = FBNIC_CSR_END_##section + 1, \ } struct fbnic_csr_bounds { u32 start; u32 end; }; static const struct fbnic_csr_boun...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_csr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #ifndef _FBNIC_CSR_H_ #define _FBNIC_CSR_H_ #include <linux/bitops.h> struct fbnic_dev; #define CSR_BIT(nr) (1u << (nr)) #define CSR_GENMASK(h, l) GENMASK(h, l) #define DESC_BIT(nr) BIT_ULL(nr) #define DESC_GENMA...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_ethtool' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/ethtool.h> #include <linux/ethtool_netlink.h> #include <linux/netdevice.h> #include <linux/pci.h> #include <net/ipv6.h> #include "fbnic.h" #include "fbnic_netdev.h" #include "fbnic_tlv.h" struct fbnic_st...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_txrx' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/bitfield.h> #include <linux/bpf.h> #include <linux/bpf_trace.h> #include <linux/iopoll.h> #include <linux/pci.h> #include <net/netdev_queues.h> #include <net/page_pool/helpers.h> #include <net/tcp.h> #incl...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_mac' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #ifndef _FBNIC_MAC_H_ #define _FBNIC_MAC_H_ #include <linux/types.h> struct fbnic_dev; /* The RXB clock runs at 600 MHZ in the ASIC and the PAUSE_STORM_UNIT_WR * is 10us granularity, so set the clock to 6000 (0x177...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_hw_stats' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/rtnetlink.h> #include "fbnic.h" static void fbnic_hw_stat_rst32(struct fbnic_dev *fbd, u32 reg, struct fbnic_stat_counter *stat) { /* We do not touch the "value" field here. * It gets zeroed out o...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_rpc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/etherdevice.h> #include <linux/ethtool.h> #include <net/ipv6.h> #include "fbnic.h" #include "fbnic_fw.h" #include "fbnic_netdev.h" #include "fbnic_rpc.h" void fbnic_reset_indir_tbl(struct fbnic_net *fbn)...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_netdev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/etherdevice.h> #include <linux/ipv6.h> #include <linux/types.h> #include <net/netdev_queues.h> #include "fbnic.h" #include "fbnic_netdev.h" #include "fbnic_txrx.h" int __fbnic_open(struct fbnic_net *fbn)...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/meta/fbnic/fbnic_fw' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #ifndef _FBNIC_FW_H_ #define _FBNIC_FW_H_ #include <linux/completion.h> #include <linux/if_ether.h> #include <linux/types.h> struct fbnic_dev; struct fbnic_tlv_msg; struct fbnic_fw_mbx { u8 ready, head, tail; stru...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_irq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/pci.h> #include <linux/types.h> #include "fbnic.h" #include "fbnic_netdev.h" #include "fbnic_txrx.h" static irqreturn_t fbnic_fw_msix_intr(int __always_unused irq, void *data) { struct fbnic_dev *fbd = ...
Linux kernel'inin 'drivers/net/ethernet/meta/fbnic/fbnic_fw' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) Meta Platforms, Inc. and affiliates. */ #include <linux/bitfield.h> #include <linux/etherdevice.h> #include <linux/delay.h> #include <linux/dev_printk.h> #include <linux/dma-mapping.h> #include <linux/gfp.h> #include <linux/types.h> #include "fbnic.h" #include...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic_rq' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only * Copyright 2024 Cisco Systems, Inc. All rights reserved. */ unsigned int enic_rq_cq_service(struct enic *enic, unsigned int cq_index, unsigned int work_to_do); int enic_rq_alloc_buf(struct vnic_rq *rq); void enic_free_rq_buf(struct vnic_rq *rq, struct vnic_rq_buf *...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_DEV_H_ #define _VNIC_DEV_H_ #include "vnic_resource.h" #include "vnic_devcmd.h" #ifndef VNIC_PADDR_TARGET #define VNIC_PAD...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_rss' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_RSS_H_ #define _VNIC_RSS_H_ /* RSS key array */ #define ENIC_RSS_BYTES_PER_KEY 10 #define ENIC_RSS_KEYS 4 #define ENIC_RS...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_intr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_INTR_H_ #define _VNIC_INTR_H_ #include <linux/pci.h> #include "vnic_dev.h" #define VNIC_INTR_TIMER_TYPE_ABS 0 #define VNI...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/vnic_vic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright 2010 Cisco Systems, Inc. All rights reserved. #include <linux/kernel.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/slab.h> #include "vnic_vic.h" struct vic_provinfo *vic_provinfo_alloc(gfp_t flags, const u8 *oui, const u8 type) { st...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic_clsf' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ENIC_CLSF_H_ #define _ENIC_CLSF_H_ #include "vnic_dev.h" #include "enic.h" #define ENIC_CLSF_EXPIRE_COUNT 128 int enic_addfltr_5t(struct enic *enic, struct flow_keys *keys, u16 rq); int enic_delfltr(struct enic *enic, u16 filter_id); void enic_rfs_flw_tbl_init(str...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/vnic_cq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/pci.h> #include "vnic_dev.h" #include "vnic_cq.h...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_pp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright 2011 Cisco Systems, Inc. All rights reserved. #include <linux/kernel.h> #include <linux/string.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/netdevice.h> #include <linux/etherdevice.h> #include <linux/rtnetlink.h> #include <net/ip.h> #...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_enet' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_ENIC_H_ #define _VNIC_ENIC_H_ /* Device-specific region: enet configuration */ struct vnic_enet_config { u32 flags; u32 w...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_devcmd' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_DEVCMD_H_ #define _VNIC_DEVCMD_H_ #define _CMD_NBITS 14 #define _CMD_VTYPEBITS 10 #define _CMD_FLAGSBITS 6 #define _C...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_main' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. * * This program is free software; you may redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/vnic_wq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/pci.h> #include <linux/delay.h> #include <linux/s...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_rq' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_RQ_H_ #define _VNIC_RQ_H_ #include <linux/pci.h> #include <linux/netdevice.h> #include "vnic_dev.h" #include "vnic_cq.h" ...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_api' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright 2013 Cisco Systems, Inc. All rights reserved. #include <linux/netdevice.h> #include <linux/spinlock.h> #include "vnic_dev.h" #include "vnic_devcmd.h" #include "enic_res.h" #include "enic.h" #include "enic_api.h" int enic_api_devcmd_proxy_by_index(struct ne...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic_pp' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright 2011 Cisco Systems, Inc. All rights reserved. */ #ifndef _ENIC_PP_H_ #define _ENIC_PP_H_ #define ENIC_PP_BY_INDEX(enic, vf, pp, err) \ do { \ if (enic_is_valid_pp_vf(enic, vf, err)) \ pp = (vf == PORT_SELF_VF) ? enic->pp : enic->pp + vf; \ else \ ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_wq' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_WQ_H_ #define _VNIC_WQ_H_ #include <linux/pci.h> #include "vnic_dev.h" #include "vnic_cq.h" /* Work queue control */ stru...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/rq_enet_desc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _RQ_ENET_DESC_H_ #define _RQ_ENET_DESC_H_ /* Ethernet receive queue descriptor: 16B */ struct rq_enet_desc { __le64 address; __...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic_wq' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only * Copyright 2025 Cisco Systems, Inc. All rights reserved. */ void enic_free_wq_buf(struct vnic_wq *wq, struct vnic_wq_buf *buf); unsigned int enic_wq_cq_service(struct enic *enic, unsigned int cq_index, unsigned int work_to_do); ```
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_rq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright 2024 Cisco Systems, Inc. All rights reserved. #include <linux/skbuff.h> #include <linux/if_vlan.h> #include <net/busy_poll.h> #include "enic.h" #include "enic_res.h" #include "enic_rq.h" #include "vnic_rq.h" #include "cq_enet_desc.h" #define ENIC_LARGE_PKT_T...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_nic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_NIC_H_ #define _VNIC_NIC_H_ #define NIC_CFG_RSS_DEFAULT_CPU_MASK_FIELD 0xffUL #define NIC_CFG_RSS_DEFAULT_CPU_SHIFT 0 #def...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic_dev' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright 2011 Cisco Systems, Inc. All rights reserved. */ #ifndef _ENIC_DEV_H_ #define _ENIC_DEV_H_ #include "vnic_dev.h" #include "vnic_vic.h" /* * Calls the devcmd function given by argument vnicdevcmdfn. * If vf argument is valid, it proxies the devcmd */ #...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_cq' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_CQ_H_ #define _VNIC_CQ_H_ #include "cq_desc.h" #include "vnic_dev.h" /* Completion queue control */ struct vnic_cq_ctrl { ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _ENIC_H_ #define _ENIC_H_ #include "vnic_enet.h" #include "vnic_dev.h" #include "vnic_wq.h" #include "vnic_rq.h" #include "vnic_c...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/vnic_dev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/pci.h> #include <linux/delay.h> #include <linux/i...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_dev' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright 2011 Cisco Systems, Inc. All rights reserved. #include <linux/pci.h> #include <linux/etherdevice.h> #include "vnic_dev.h" #include "vnic_vic.h" #include "enic_res.h" #include "enic.h" #include "enic_dev.h" int enic_dev_fw_info(struct enic *enic, struct vnic...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_ethtool' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright 2013 Cisco Systems, Inc. All rights reserved. #include <linux/netdevice.h> #include <linux/ethtool.h> #include <linux/net_tstamp.h> #include "enic_res.h" #include "enic.h" #include "enic_dev.h" #include "enic_clsf.h" #include "vnic_rss.h" #include "vnic_stat...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_res' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/pci.h> #include <linux/netdevice.h> #include "wq...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/vnic_intr' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/pci.h> #include <linux/delay.h> #include "vnic_d...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_clsf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/if.h> #include <linux/if_ether.h> #include <linux/if_link.h> #include <linux/netdevice.h> #include <linux/in.h> #include <linux/types.h> #include <linux/skbuff.h> #include <net/flow_dissector.h> #include "enic_res.h" #include "enic_clsf.h" /* enic_addfltr_5t - A...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_vic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright 2010 Cisco Systems, Inc. All rights reserved. */ #ifndef _VNIC_VIC_H_ #define _VNIC_VIC_H_ /* Note: All integer fields in NETWORK byte order */ /* Note: String field lengths include null char */ #define VIC_PROVINFO_CISCO_OUI { 0x00, 0x00, 0x0c } #defi...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/cq_desc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _CQ_DESC_H_ #define _CQ_DESC_H_ /* * Completion queue descriptor types */ enum cq_desc_types { CQ_DESC_TYPE_WQ_ENET = 0, CQ_D...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/wq_enet_desc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _WQ_ENET_DESC_H_ #define _WQ_ENET_DESC_H_ /* Ethernet work queue descriptor: 16B */ struct wq_enet_desc { __le64 address; __le1...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/cq_enet_desc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _CQ_ENET_DESC_H_ #define _CQ_ENET_DESC_H_ #include "cq_desc.h" /* Ethernet completion queue descriptor: 16B */ struct cq_enet_wq...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic_api' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright 2013 Cisco Systems, Inc. All rights reserved. */ #ifndef __ENIC_API_H__ #define __ENIC_API_H__ #include <linux/netdevice.h> #include "vnic_dev.h" #include "vnic_devcmd.h" int enic_api_devcmd_proxy_by_index(struct net_device *netdev, int vf, enum vnic_d...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/enic_wq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only // Copyright 2025 Cisco Systems, Inc. All rights reserved. #include <net/netdev_queues.h> #include "enic_res.h" #include "enic.h" #include "enic_wq.h" #define ENET_CQ_DESC_COMP_NDX_BITS 14 #define ENET_CQ_DESC_COMP_NDX_MASK GENMASK(ENET_CQ_DESC_COMP_NDX_BITS - 1, 0) sta...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_stats' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_STATS_H_ #define _VNIC_STATS_H_ /* Tx statistics */ struct vnic_tx_stats { u64 tx_frames_ok; u64 tx_unicast_frames_ok; u...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/enic_res' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _ENIC_RES_H_ #define _ENIC_RES_H_ #include "wq_enet_desc.h" #include "rq_enet_desc.h" #include "vnic_wq.h" #include "vnic_rq.h" ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/cisco/enic/vnic_resource' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #ifndef _VNIC_RESOURCE_H_ #define _VNIC_RESOURCE_H_ #define VNIC_RES_MAGIC 0x766E6963L /* 'vnic' */ #define VNIC_RES_VERSION 0x00000000L...
Linux kernel'inin 'drivers/net/ethernet/cisco/enic/vnic_rq' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. */ #include <linux/kernel.h> #include <linux/errno.h> #include <linux/types.h> #include <linux/pci.h> #include <linux/delay.h> #include <linux/s...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-lpc18xx' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * DWMAC glue for NXP LPC18xx/LPC43xx Ethernet * * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #includ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/descs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /******************************************************************************* Header File to describe the DMA descriptors and related definitions. This is for DWMAC100 and 1000 cores. Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> ************************...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-thead' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * T-HEAD DWMAC platform driver * * Copyright (C) 2021 Alibaba Group Holding Limited. * Copyright (C) 2023 Jisheng Zhang <jszhang@kernel.org> * */ #include <linux/bitfield.h> #include <linux/module.h> #include <linux/of.h> #include <linux/of_device.h> #include <linux/of...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-motorcomm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * DWMAC glue driver for Motorcomm PCI Ethernet controllers * * Copyright (c) 2025-2026 Yao Zi <me@ziyao.cc> */ #include <linux/bits.h> #include <linux/delay.h> #include <linux/dev_printk.h> #include <linux/io.h> #include <linux/iopoll.h> #include <linux/module.h> #i...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-s32' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * NXP S32G/R GMAC glue layer * * Copyright 2019-2026 NXP * */ #include <linux/clk.h> #include <linux/clk-provider.h> #include <linux/device.h> #include <linux/ethtool.h> #include <linux/io.h> #include <linux/mfd/syscon.h> #include <linux/module.h> #include <linux/of_mdi...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0 OR MIT) /* * Copyright (c) 2018 Synopsys, Inc. and/or its affiliates. * stmmac XGMAC support. */ #include <linux/bitrev.h> #include <linux/crc32.h> #include <linux/iopoll.h> #include "stmmac.h" #include "stmmac_fpe.h" #include "stmmac_ptp.h" #include "stmmac_vlan.h" #includ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/dwmac5' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ // Copyright (c) 2017 Synopsys, Inc. and/or its affiliates. // stmmac Support for 5.xx Ethernet QoS cores #ifndef __DWMAC5_H__ #define __DWMAC5_H__ #define MAC_DPP_FSM_INT_STATUS 0x00000140 #define MAC_AXI_SLV_DPE_ADDR_STATUS 0x00000144 #define MAC_FSM_CONTROL 0...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/stmmac_est' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2023, Intel Corporation * stmmac EST(802.3 Qbv) handling */ #include <linux/iopoll.h> #include <linux/types.h> #include "stmmac.h" #include "stmmac_est.h" static int est_write(void __iomem *est_addr, u32 reg, u32 val, bool gcl) { u32 ctrl; writel(v...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-meson8b' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Amlogic Meson8b, Meson8m2 and GXBB DWMAC glue layer * * Copyright (C) 2016 Martin Blumenstingl <martin.blumenstingl@googlemail.com> */ #include <linux/bitfield.h> #include <linux/clk.h> #include <linux/clk-provider.h> #include <linux/device.h> #include <linux/etht...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/stmmac_platform' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /******************************************************************************* Copyright (C) 2007-2009 STMicroelectronics Ltd Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> *******************************************************************************/ #i...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-stm32' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * dwmac-stm32.c - DWMAC Specific Glue layer for STM32 MCU * * Copyright (C) STMicroelectronics SA 2017 * Author: Alexandre Torgue <alexandre.torgue@st.com> for STMicroelectronics. */ #include <linux/clk.h> #include <linux/kernel.h> #include <linux/mfd/syscon.h> #i...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/stmmac_pci' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /******************************************************************************* This contains the functions to handle the pci driver. Copyright (C) 2011-2012 Vayavya Labs Pvt Ltd Author: Rayagond Kokatanur <rayagond@vayavyalabs.com> Author: Giuseppe Cavallaro <...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac_lib' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /******************************************************************************* Copyright (C) 2007-2009 STMicroelectronics Ltd Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> *******************************************************************************/ #incl...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /******************************************************************************* This is the driver for the GMAC on-chip Ethernet controller for ST SoCs. DWC Ether MAC 10/100/1000 Universal version 3.41a has been used for developing this code. This contains the fu...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac4_dma' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * This is the driver for the GMAC on-chip Ethernet controller for ST SoCs. * DWC Ether MAC version 4.xx has been used for developing this code. * * This contains the functions to handle the dma. * * Copyright (C) 2015 STMicroelectronics Ltd * * Author: Alexand...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/dwxgmac2' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ /* * Copyright (c) 2018 Synopsys, Inc. and/or its affiliates. * stmmac XGMAC definitions. */ #ifndef __STMMAC_DWXGMAC2_H__ #define __STMMAC_DWXGMAC2_H__ #include "common.h" /* Misc */ #define XGMAC_JUMBO_LEN 16368 /* MAC Registers */ #define XGMAC_TX_CONFIG ...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/norm_desc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /******************************************************************************* This contains the functions to handle the normal descriptors. Copyright (C) 2007-2009 STMicroelectronics Ltd Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> **********************...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/stmmac_vlan' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2025, Altera Corporation * stmmac VLAN(802.1Q) handling */ #ifndef __STMMAC_VLAN_H__ #define __STMMAC_VLAN_H__ #include <linux/bitfield.h> #include "dwxgmac2.h" #define VLAN_TAG 0x00000050 #define VLAN_TAG_DATA 0x00000054 #define VLAN_HASH_TA...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/ring_mode' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /******************************************************************************* Specialised functions for managing Ring mode Copyright(C) 2011 STMicroelectronics Ltd It defines all the functions used to handle the normal/enhanced descriptors in case of the DMA i...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/descs_com' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /******************************************************************************* Header File to describe Normal/enhanced descriptor functions used for RING and CHAINED modes. Copyright(C) 2011 STMicroelectronics Ltd It defines all the functions used to handle ...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac5' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0 OR MIT) // Copyright (c) 2017 Synopsys, Inc. and/or its affiliates. // stmmac Support for 5.xx Ethernet QoS cores #include <linux/bitops.h> #include <linux/iopoll.h> #include "common.h" #include "dwmac4.h" #include "dwmac5.h" #include "stmmac.h" #include "stmmac_ptp.h" struct...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-rzn1' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2024 Schneider-Electric * * Clément Léger <clement.leger@bootlin.com> */ #include <linux/of.h> #include <linux/pcs-rzn1-miic.h> #include <linux/phylink.h> #include <linux/platform_device.h> #include "stmmac_platform.h" #include "stmmac.h" stati...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-generic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * Generic DWMAC platform driver * * Copyright (C) 2007-2011 STMicroelectronics Ltd * Copyright (C) 2015 Joachim Eastwood <manabian@gmail.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whe...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0 OR MIT) /* * Copyright (c) 2018 Synopsys, Inc. and/or its affiliates. * stmmac XGMAC support. */ #include <linux/iopoll.h> #include "stmmac.h" #include "dwxgmac2.h" static int dwxgmac2_dma_reset(void __iomem *ioaddr) { u32 value = readl(ioaddr + XGMAC_DMA_MODE); /* DMA ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/stmmac_ptp' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /****************************************************************************** PTP Header file Copyright (C) 2013 Vayavya Labs Pvt Ltd Author: Rayagond Kokatanur <rayagond@vayavyalabs.com> ***********************************************************************...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * dwmac-renesas-gbeth.c - DWMAC Specific Glue layer for Renesas GBETH * * The Rx and Tx clocks are supplied as follows for the GBETH IP. * * Rx / Tx * -------+------------- on / off ------- * | * | Rx-180 / Tx-18...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/dwmac_dma' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /******************************************************************************* DWMAC DMA Header file. Copyright (C) 2007-2009 STMicroelectronics Ltd Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> **********************************************************...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/hwif' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0 OR MIT) /* * Copyright (c) 2018 Synopsys, Inc. and/or its affiliates. * stmmac HW Interface Handling */ #include "common.h" #include "stmmac.h" #include "stmmac_fpe.h" #include "stmmac_ptp.h" #include "stmmac_est.h" #include "stmmac_vlan.h" #include "dwmac4_descs.h" #includ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/dwmac100' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /******************************************************************************* MAC 10/100 Header File Copyright (C) 2007-2009 STMicroelectronics Ltd Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> **********************************************************...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-ingenic' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * dwmac-ingenic.c - Ingenic SoCs DWMAC specific glue layer * * Copyright (c) 2021 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com> */ #include <linux/bitfield.h> #include <linux/clk.h> #include <linux/kernel.h> #include <linux/mfd/syscon.h> #include <linux/module.h> #includ...
Linux işletim sistemi çekirdeği için 'drivers/net/ethernet/stmicro/stmmac/dwmac4' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * DWMAC4 Header file. * * Copyright (C) 2015 STMicroelectronics Ltd * * Author: Alexandre Torgue <alexandre.torgue@st.com> */ #ifndef __DWMAC4_H__ #define __DWMAC4_H__ #include "common.h" /* MAC registers */ #define GMAC_CONFIG 0x00000000 #define GMAC_EXT...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-eic7700' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Eswin DWC Ethernet linux driver * * Copyright 2025, Beijing ESWIN Computing Technology Co., Ltd. * * Authors: * Zhi Li <lizhi2@eswincomputing.com> * Shuang Liang <liangshuang@eswincomputing.com> * Shangjuan Wei <weishangjuan@eswincomputing.com> */ #include <...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac4_core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * This is the driver for the GMAC on-chip Ethernet controller for ST SoCs. * DWC Ether MAC version 4.00 has been used for developing this code. * * This only implements the mac core functions for this chip. * * Copyright (C) 2015 STMicroelectronics Ltd * * Auth...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/stmmac_libpci' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * PCI bus helpers for STMMAC driver * Copyright (C) 2025 Yao Zi <ziyao@disroot.org> */ #include <linux/device.h> #include <linux/pci.h> #include "stmmac_libpci.h" int stmmac_pci_plat_suspend(struct device *dev, void *bsp_priv) { struct pci_dev *pdev = to_pci_dev(d...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac1000_core' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /******************************************************************************* This is the driver for the GMAC on-chip Ethernet controller for ST SoCs. DWC Ether MAC 10/100/1000 Universal version 3.41a has been used for developing this code. This only implements...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-nuvoton' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Nuvoton DWMAC specific glue layer * * Copyright (C) 2025 Nuvoton Technology Corp. * * Author: Joey Lu <a0987203069@gmail.com> */ #include <linux/mfd/syscon.h> #include <linux/mod_devicetable.h> #include <linux/of.h> #include <linux/of_net.h> #include <linux/plat...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /******************************************************************************* Copyright (C) 2013 Vayavya Labs Pvt Ltd This implements all the API for managing HW timestamp & PTP. Author: Rayagond Kokatanur <rayagond@vayavyalabs.com> Author: Giuseppe Cavallaro...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac4_descs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * This contains the functions to handle the descriptors for DesignWare databook * 4.xx. * * Copyright (C) 2015 STMicroelectronics Ltd * * Author: Alexandre Torgue <alexandre.torgue@st.com> */ #include <linux/stmmac.h> #include "common.h" #include "dwmac4.h" #inc...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/stmmac_xdp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2021, Intel Corporation. */ #include <net/xdp_sock_drv.h> #include "stmmac.h" #include "stmmac_xdp.h" static int stmmac_xdp_enable_pool(struct stmmac_priv *priv, struct xsk_buff_pool *pool, u16 queue) { struct stmmac_channel *ch = &priv->channel[queue]...
Linux kernel'inin 'drivers/net/ethernet/stmicro/stmmac/dwmac-starfive' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0+ /* * StarFive DWMAC platform driver * * Copyright (C) 2021 Emil Renner Berthing <kernel@esmil.dk> * Copyright (C) 2022 StarFive Technology Co., Ltd. * */ #include <linux/mod_devicetable.h> #include <linux/platform_device.h> #include <linux/property.h> #include <linux/mfd...