ETH通信协议 python eth_readphyregister

资讯 2024-06-24 阅读:94 评论:0
为了尽量给甲方降低成本,决定使用较低成本的PHY芯片RTL8201F-VB-CG芯片。移植官网的以太网demo程序,git上下载了一份很好看的rtl8201F的驱动程序,用来替换官方demo的lan8742程序。并没有直接通,于是开始了调试...
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址


为了尽量给甲方降低成本,决定使用较低成本的PHY芯片RTL8201F-VB-CG芯片。移植官网的以太网demo程序,git上下载了一份很好看的rtl8201F的驱动程序,用来替换官方demo的lan8742程序。并没有直接通,于是开始了调试之路。

In order to minimize the cost to A, it was decided to use a lower-cost PHY chip RTL8201F-VB-CG chip. Ethernet demo program, Git downloads a good rtl8201F driver to replace the official demo lan8742 program.

芯片型号:stm32h753
官网例程文件名:STM32Cube_FW_H7_V1.10.0

Chip model: stm32h753
executory file name: STM32Cube_FW_H7_V1.10.0

ETH通信协议 python eth_readphyregister_嵌入式硬件

使用官网lwip的demo,下载RTL8201F-VB-CG驱动程序并替换lan8742驱动芯片程序,使用PC机ping设备ping不通

Download the RTL8201F-VB-CG driver and replace the lan8742 driver chip program using the official web lwip demo, using the PC machine ping device ping

通过函数接口HAL_ETH_ReadPHYRegister和HAL_ETH_WritePHYRegister进行读写。这里我是可以直接正常读写的,所以并没遇到太大阻力。但我还是请教了一下其他朋友,了解到PHY寄存器的读写依靠22,23引脚。22引脚为时钟线,测量波形约2M左右,没记错的话。

I can read and write through the function interface HAL_ETH_ReadPhyRegister and HAL_ETH_WritePhyRegister. Here I can read and write directly, so there is no resistance. But I did ask other friends to learn that PHY's register is read and written on 22, 23 feet. 22 feet is a clock line, measuring wave shapes around 2M, remembering correctly.

主要是HAL_ETH_Init函数,先上代码。

Mainly the HAL_ETH_Init function, first code.

在该代码的这一段发现程序返回了错误。于是查找手册对比这个bit位的作用

This part of the code found that the program returned an error. So looking for the manual to compare this bit

手册上关于这个bit位的描述如下,我的理解是,芯片需要检查所有的时钟,在检测到时钟的情况下,会自动复位完成。

This bit is described in the manual as follows, and it is my understanding that the chip will need to check all clocks, and will be automatically reset in case the clock is detected.

ETH通信协议 python eth_readphyregister_ETH通信协议 python_02

通过向朋友的学习,测量了PHY芯片15引脚的时序,因为使用RMII模式,所以该时钟引脚理论值约为50M。而我的这次调试,问题的根源也在这里
在运行程序时,我测量了PHY芯片15引脚,发现该引脚有时钟输出,我就误认为这里的时钟没问题,后面总结过后,才发现是寄存器配置后,PHY芯片的时钟才开始输出。所以在测量时,最好是打断点进行调试,断点要打在HAL_ETH_Init初始化之前。

By learning from friends, I measured the 15-legged time series of PHY chips, which, because of the RMII model, had a theoretical value of about 50 M. And my debugging, the root of the problem of strung, was here /m>.
In running the program, I measured the 15-leg of the PHY chip, and found that it sometimes came out of the clock, and I misconstrued that the clock was no problem here, and after summing it up, it became clear that the time clock of the PHYs chip began to be produced only after the storage unit configuration. So, in measuring it, it would be better to debugger the break point, which was to strike before the HAL_ETH_Init initialization.

通过查看PHY芯片的芯片手册,关于该芯片12引脚的描述如下,在该引脚拉低或者浮空(芯片内部默认接地)的情况下,15引脚会默认输出时钟信号

By looking at the chip manual for the PHY chip, the 12-legged chip is described below, and in the case of the low or floating foot (the default location within the chip), the 15-leg defaults to export the clock signal

ETH通信协议 python eth_readphyregister_ETH通信协议 python_03

将12引脚的上拉电阻去掉。stm32h7检测到PHY芯片的时钟信号后,以太网驱动的初始化会正常进行。再ping设备,通了!!!

Remove the 12-legged ups and downs. stm32h7 detects the clock signal of the PHYs chip, and the initialization driven by the hypernet will be normal. Again ping device, pass!

关于这个问题,也是请教朋友的过程中,意外学习到,一般来说以太网的时钟信号应该由控制芯片来提供,在这里也就是该由stm32h7芯片来提供时钟。但是我在手册上并没有看到输出时钟的方法(或许我看漏了吧)。所以在初始化流程并没有正常的进行。
而原理图的来源,是我们硬件工程师从一款海思的产品上copy下来的,所以他认为没什么问题。可能Soc芯片都有以太网时钟信号输出的能力吧。
所以不同的平台,驱动方式会略有差异,但问题终归是解决了。

On this subject, and also in the course of our friends, unexpectedly learned that the clock signal from the Tainet should normally be provided by the control chip, and here it should be provided by the stm32h7 chip. But I didn't see the way to export the clock in the manual (perhaps I missed it). So the initialization process did not go well.
and the rationale was that our hardware engineer came down from the capy product of Haes, so he thought there was nothing wrong with it. Maybe the Soc chip has the ability to export the clock from the web.
So different platforms, the driver would be slightly different, but the problem would eventually be solved.


美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 虚拟币GOpay钱包app下载

    虚拟币GOpay钱包app下载
    虚拟币GOpay钱包app下载版能为用户第一时间带来行业内最新的资讯,虚拟币GOpay钱包app下载版中采用了多种先进的隐私保护算法,提供多元完善的认证机制确保所有用户的交易安全性,除了自身的进步和发展之外,还需要承担更多的行业责任,比如推动行业的健康发展、为行业培养更多的优秀人才,以及为行业创造更多可能等。In addition to its own progress and development, the virtual currency GO...
  • 2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别 进入阅读模式

    2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别                进入阅读模式
    宿迁三支一扶QQ交流群:427100650 丨 微信公众号:宿迁中公教育 丨 在线咨询 关于货币的定义有很多,但是我们在考试中主要参照的是马克思主义货币学说。马克思货币学说是马克思关于货币的起源和本质、货币职能及其...
  • 区块链存证-核验操作指南

    区块链存证-核验操作指南
    第一步:登录后台-表单数据汇总,点击查看证书;Step one: login backstage - form data summary, click on the certificate; 第二步:保存存证证书,下载【存证源文件】,复制【存证哈希】,;Step 2: save the certificate of record, download the [source file], copy the [Hashi file], 第三步:登录蚂蚁区块链存证核验中心...
  • 比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?

    比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?
    你还在等什么?现在升级新浪财经Level-2一年只要88元!˂a href="https://finance.sina.com.cn/app/jumptosfl2.shtml" target="_blank" What are you waiting for? 逃不出我掌心!尾盘掘金助你...
  • 【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享

    【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享
    您需要 登錄 才可以下載或查看,沒有賬號?註冊 You need record to download or view without account? ˂a href=https://www.hd.club.tw/member.php?mod=register'title= "Registration account" x 本文章最後由 racha33 於 2014-5-6 23:29 編輯 固件分享品牌:海美迪芯片方案:RTD1186固件简介:基於 1...
标签列表