-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
drivers: ethernet: sam_gmac: rework pin config #24870
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything is OK for SAME70/SAMV7x, tests are OK with SAMV71.
I was wondering if below files will be update here for SAM4E SoC once this will remove soc/arm/atmel_sam/sam4e/soc_pinmap.h file.
dts/arm/atmel/sam4e-pinctrl.dtsi
dts/arm/atmel/sam4e.dtsi
a92eadf
to
2ea6e35
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is missing gtx3 pin and I need rename GCRSDV to GRXDV to be consistent with pin out.
fix_gmac_sam4e_dtsi.txt
With this we can move forward.
Reworked sam_gmac driver to get pin ctrl/mux configuration information from the device tree instead of via Kconfig and defines in soc_pinmap.h We remove defines from soc_pinmap.h that are no longer needed due to getting all that information from devicetree. Signed-off-by: Kumar Gala <[email protected]>
Thanks. Fixed. |
Reworked sam_gmac driver to get pin ctrl/mux configuration information
from the device tree instead of via Kconfig and defines in soc_pinmap.h
We remove defines from soc_pinmap.h that are no longer needed due to
getting all that information from devicetree.
Signed-off-by: Kumar Gala [email protected]