forked from apache/nuttx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arch/zynq-mpsoc improve the ethernet driver
1. Changes the phyadd to 0xC to speed up the training of phyadd. 2. Set RX DMA buffer size configureable. 3. Create netnsh configs as ethernet boot from QSPI FLASH. 4. Fix some typo in apache#15720 which is nonsynchronous with local code.
- Loading branch information
Showing
6 changed files
with
152 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
105 changes: 105 additions & 0 deletions
105
boards/arm64/zynq-mpsoc/zcu111/configs/netnsh/defconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# | ||
# This file is autogenerated: PLEASE DO NOT EDIT IT. | ||
# | ||
# You can use "make menuconfig" to make any modifications to the installed .config file. | ||
# You can then do "make savedefconfig" to generate a new defconfig file that includes your | ||
# modifications. | ||
# | ||
CONFIG_ARCH="arm64" | ||
CONFIG_ARCH_ARM64=y | ||
CONFIG_ARCH_BOARD="zcu111" | ||
CONFIG_ARCH_BOARD_ZCU111=y | ||
CONFIG_ARCH_CHIP="zynq-mpsoc" | ||
CONFIG_ARCH_CHIP_ZYNQ_MPSOC=y | ||
CONFIG_ARCH_EARLY_PRINT=y | ||
CONFIG_ARCH_INTERRUPTSTACK=4096 | ||
CONFIG_ARM64_DCACHE_DISABLE=y | ||
CONFIG_ARM64_GIC_VERSION=2 | ||
CONFIG_ARM64_ICACHE_DISABLE=y | ||
CONFIG_BOARDCTL_RESET=y | ||
CONFIG_BOARD_LOOPSPERMSEC=116524 | ||
CONFIG_BUILTIN=y | ||
CONFIG_DEBUG_ASSERTIONS=y | ||
CONFIG_DEBUG_FEATURES=y | ||
CONFIG_DEBUG_FULLOPT=y | ||
CONFIG_DEBUG_IRQ=y | ||
CONFIG_DEBUG_IRQ_INFO=y | ||
CONFIG_DEBUG_SCHED=y | ||
CONFIG_DEBUG_SCHED_ERROR=y | ||
CONFIG_DEBUG_SCHED_INFO=y | ||
CONFIG_DEBUG_SCHED_WARN=y | ||
CONFIG_DEBUG_SYMBOLS=y | ||
CONFIG_DEFAULT_TASK_STACKSIZE=8192 | ||
CONFIG_ETC_ROMFS=y | ||
CONFIG_EXAMPLES_HELLO=y | ||
CONFIG_EXAMPLES_LEDS=y | ||
CONFIG_EXPERIMENTAL=y | ||
CONFIG_FRAME_POINTER=y | ||
CONFIG_FS_PROCFS=y | ||
CONFIG_FS_ROMFS=y | ||
CONFIG_HAVE_CXX=y | ||
CONFIG_HAVE_CXXINITIALIZE=y | ||
CONFIG_IDLETHREAD_STACKSIZE=8192 | ||
CONFIG_INIT_ENTRYPOINT="nsh_main" | ||
CONFIG_INIT_STACKSIZE=9192 | ||
CONFIG_NET=y | ||
CONFIG_NETDB_DNSCLIENT=y | ||
CONFIG_NETDB_DNSCLIENT_ENTRIES=4 | ||
CONFIG_NETDB_DNSSERVER_NOADDR=y | ||
CONFIG_NETINIT_DRIPADDR=0xc0a80002 | ||
CONFIG_NETINIT_IPADDR=0xc0a8000f | ||
CONFIG_NETINIT_NOMAC=y | ||
CONFIG_NETUTILS_CODECS=y | ||
CONFIG_NETUTILS_IPERF=y | ||
CONFIG_NETUTILS_TELNETD=y | ||
CONFIG_NETUTILS_TFTPC=y | ||
CONFIG_NETUTILS_WEBCLIENT=y | ||
CONFIG_NET_BROADCAST=y | ||
CONFIG_NET_ETH_PKTSIZE=1500 | ||
CONFIG_NET_ICMP_SOCKET=y | ||
CONFIG_NET_LL_GUARDSIZE=32 | ||
CONFIG_NET_MAX_LISTENPORTS=8 | ||
CONFIG_NET_RECV_BUFSIZE=32768 | ||
CONFIG_NET_SENDFILE=y | ||
CONFIG_NET_SOLINGER=y | ||
CONFIG_NET_STATISTICS=y | ||
CONFIG_NET_TCP=y | ||
CONFIG_NET_TCPBACKLOG=y | ||
CONFIG_NET_TCP_DELAYED_ACK=y | ||
CONFIG_NET_TCP_KEEPALIVE=y | ||
CONFIG_NET_TCP_WRITE_BUFFERS=y | ||
CONFIG_NET_UDP=y | ||
CONFIG_NET_UDP_WRITE_BUFFERS=y | ||
CONFIG_NSH_ARCHINIT=y | ||
CONFIG_NSH_BUILTIN_APPS=y | ||
CONFIG_NSH_FILEIOSIZE=512 | ||
CONFIG_NSH_READLINE=y | ||
CONFIG_PREALLOC_TIMERS=4 | ||
CONFIG_PTHREAD_STACK_MIN=8192 | ||
CONFIG_RAMLOG=y | ||
CONFIG_RAM_SIZE=2145386496 | ||
CONFIG_RAM_START=0x00100000 | ||
CONFIG_RAW_BINARY=y | ||
CONFIG_READLINE_CMD_HISTORY=y | ||
CONFIG_RR_INTERVAL=200 | ||
CONFIG_SCHED_BACKTRACE=y | ||
CONFIG_SCHED_HPWORK=y | ||
CONFIG_SCHED_HPWORKPRIORITY=192 | ||
CONFIG_SPINLOCK=y | ||
CONFIG_STACK_COLORATION=y | ||
CONFIG_START_MONTH=11 | ||
CONFIG_START_YEAR=2022 | ||
CONFIG_SYMTAB_ORDEREDBYNAME=y | ||
CONFIG_SYSTEM_NSH=y | ||
CONFIG_SYSTEM_SYSTEM=y | ||
CONFIG_SYSTEM_TIME64=y | ||
CONFIG_TESTING_GETPRIME=y | ||
CONFIG_TESTING_OSTEST=y | ||
CONFIG_UART0_SERIAL_CONSOLE=y | ||
CONFIG_USEC_PER_TICK=1000 | ||
CONFIG_USERLED=y | ||
CONFIG_USERLED_LOWER=y | ||
CONFIG_ZYNQ_ENET=y | ||
CONFIG_ZYNQ_GMAC_NRXBUFFERS=256 | ||
CONFIG_ZYNQ_GMAC_NTXBUFFERS=256 | ||
CONFIG_ZYNQ_GMAC_PHYADDR=12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters