diff options
author | Dan Murphy <dmurphy@ti.com> | 2016-05-02 20:45:56 (GMT) |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2016-05-24 16:42:04 (GMT) |
commit | cb3862277b73b57ade3774b8fa684d3d7c324ba3 (patch) | |
tree | bbf9dfb62df781903146ff3984e9520efc2f750e /include/cpsw.h | |
parent | 641b936fa5ba4f07d8400bd3bc0540f4ad64eeb7 (diff) | |
download | u-boot-fsl-qoriq-cb3862277b73b57ade3774b8fa684d3d7c324ba3.tar.xz |
drivers: net: cpsw: Add reading of DT phy-handle node
Add the ability to read the phy-handle node of the
cpsw slave. Upon reading this handle the phy-id
can be stored based on the reg node in the DT.
The phy-handle also needs to be stored and passed
to the phy to access any phy data that is available.
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Tested-by: Mugunthan V N <mugunthanvnm@ti.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'include/cpsw.h')
-rw-r--r-- | include/cpsw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/cpsw.h b/include/cpsw.h index 6255cd8..257d12a 100644 --- a/include/cpsw.h +++ b/include/cpsw.h @@ -21,6 +21,7 @@ struct cpsw_slave_data { u32 sliver_reg_ofs; int phy_addr; int phy_if; + int phy_of_handle; }; enum { |